From c1c898849875774b5475611b6df81355a179cc3c Mon Sep 17 00:00:00 2001 From: Dave Earley Date: Mon, 1 Jun 2026 11:02:33 +0100 Subject: [PATCH] Feature: Embedded Widget Rewrite --- .../CheckoutSessionManagementService.php | 2 +- .../CheckoutSessionManagementServiceTest.php | 1 + frontend/public/widget-test.html | 10 +- frontend/public/widget.js | 441 ++++- frontend/server.js | 14 + frontend/src/api/order.client.ts | 6 +- frontend/src/api/public-client.ts | 10 + .../forms/StripeCheckoutForm/index.tsx | 48 +- .../src/components/layouts/Checkout/index.tsx | 126 +- .../layouts/ProductWidget/index.tsx | 5 + .../CollectInformation/index.tsx | 7 +- .../product-widget/SelectProducts/index.tsx | 119 +- frontend/src/embed/widget.js | 437 ++++- frontend/src/locales/de.js | 2 +- frontend/src/locales/de.po | 1421 ++++++++-------- frontend/src/locales/en.js | 2 +- frontend/src/locales/en.po | 1425 +++++++++-------- frontend/src/locales/es.js | 2 +- frontend/src/locales/es.po | 1421 ++++++++-------- frontend/src/locales/fr.js | 2 +- frontend/src/locales/fr.po | 1421 ++++++++-------- frontend/src/locales/hu.js | 2 +- frontend/src/locales/hu.po | 1421 ++++++++-------- frontend/src/locales/it.js | 2 +- frontend/src/locales/it.po | 1421 ++++++++-------- frontend/src/locales/nl.js | 2 +- frontend/src/locales/nl.po | 1421 ++++++++-------- frontend/src/locales/pl.js | 2 +- frontend/src/locales/pl.po | 1421 ++++++++-------- frontend/src/locales/pt-br.js | 2 +- frontend/src/locales/pt-br.po | 1421 ++++++++-------- frontend/src/locales/pt.js | 2 +- frontend/src/locales/pt.po | 1421 ++++++++-------- frontend/src/locales/ru.js | 2 +- frontend/src/locales/ru.po | 1421 ++++++++-------- frontend/src/locales/se.js | 2 +- frontend/src/locales/se.po | 1421 ++++++++-------- frontend/src/locales/tr.js | 2 +- frontend/src/locales/tr.po | 1421 ++++++++-------- frontend/src/locales/vi.js | 2 +- frontend/src/locales/vi.po | 1421 ++++++++-------- frontend/src/locales/zh-cn.js | 2 +- frontend/src/locales/zh-cn.po | 1421 ++++++++-------- frontend/src/locales/zh-hk.js | 2 +- frontend/src/locales/zh-hk.po | 1421 ++++++++-------- frontend/src/queries/useGetOrderPublic.ts | 20 +- frontend/src/utilites/checkoutSession.ts | 26 + frontend/src/utilites/dates.ts | 4 + frontend/src/utilites/helpers.ts | 45 + frontend/src/utilites/iframeResize.ts | 60 + 50 files changed, 13301 insertions(+), 10852 deletions(-) create mode 100644 frontend/src/utilites/checkoutSession.ts create mode 100644 frontend/src/utilites/iframeResize.ts diff --git a/backend/app/Services/Infrastructure/Session/CheckoutSessionManagementService.php b/backend/app/Services/Infrastructure/Session/CheckoutSessionManagementService.php index d7552ac842..184c937856 100644 --- a/backend/app/Services/Infrastructure/Session/CheckoutSessionManagementService.php +++ b/backend/app/Services/Infrastructure/Session/CheckoutSessionManagementService.php @@ -50,7 +50,7 @@ public function getSessionCookie(): SymfonyCookie domain: $this->config->get('session.domain') ?? '.' . $this->request->getHost(), secure: true, sameSite: 'None', - ); + )->withPartitioned(true); } private function createSessionId(): string diff --git a/backend/tests/Unit/Services/Infrastructure/Session/CheckoutSessionManagementServiceTest.php b/backend/tests/Unit/Services/Infrastructure/Session/CheckoutSessionManagementServiceTest.php index a9db4d0572..176d36d6ee 100644 --- a/backend/tests/Unit/Services/Infrastructure/Session/CheckoutSessionManagementServiceTest.php +++ b/backend/tests/Unit/Services/Infrastructure/Session/CheckoutSessionManagementServiceTest.php @@ -66,5 +66,6 @@ public function testGetSessionCookie(): void $this->assertEquals('existingSessionId', $cookie->getValue()); $this->assertTrue($cookie->isSecure()); $this->assertEquals('none', $cookie->getSameSite()); + $this->assertTrue($cookie->isPartitioned()); } } diff --git a/frontend/public/widget-test.html b/frontend/public/widget-test.html index 081c51ce65..7c2ae9b718 100644 --- a/frontend/public/widget-test.html +++ b/frontend/public/widget-test.html @@ -4,6 +4,9 @@ Title + + + @@ -11,8 +14,12 @@ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium, alias asperiores atque autem cumque

+

+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium, alias asperiores atque autem cumque +

+
-
diff --git a/frontend/public/widget.js b/frontend/public/widget.js index cb545aec3b..9b3642d2fa 100644 --- a/frontend/public/widget.js +++ b/frontend/public/widget.js @@ -1,19 +1,351 @@ /* eslint-disable lingui/no-unlocalized-strings */ -(function (scriptElement) { +(function(scriptElement) { const isScriptLoaded = () => !!window.hiEventWidgetLoaded; - const loadWidget = () => { + const logError = (e) => { + try { console.error('HiEvent widget error:', e); } catch (ignored) { /* noop */ } + }; + + const safe = (fn) => function () { + try { + return fn.apply(this, arguments); + } catch (e) { + logError(e); + } + }; + + const loadWidget = safe(() => { window.hiEventWidgetLoaded = true; let scriptOrigin; try { - const scriptURL = scriptElement.src; - scriptOrigin = new URL(scriptURL).origin; + scriptOrigin = new URL(scriptElement.src).origin; } catch (e) { console.error('HiEvent widget error: Invalid script URL'); return; } + const SANDBOX = [ + 'allow-forms', 'allow-scripts', 'allow-same-origin', 'allow-popups', + 'allow-popups-to-escape-sandbox', 'allow-top-navigation', + 'allow-top-navigation-by-user-activation', 'allow-downloads', 'allow-modals', + 'allow-orientation-lock', 'allow-pointer-lock', 'allow-presentation' + ].join(' '); + const ALLOW = `payment ${scriptOrigin}; publickey-credentials-get ${scriptOrigin}`; + const MOBILE_BREAKPOINT = 640; + const MODAL_WIDTH = 760; + + const topParams = new URLSearchParams(window.location.search); + const returnEventId = topParams.get('hievents_event'); + const returnOrderId = topParams.get('hievents_order'); + const returnSession = topParams.get('hievents_session'); + const isPaymentReturn = !!(returnEventId && returnOrderId); + + const stripParams = (keys) => { + try { + const url = new URL(window.location.href); + keys.forEach((key) => url.searchParams.delete(key)); + return url.toString(); + } catch (e) { + return window.location.href; + } + }; + + const OWNED_PARAMS = ['hievents_event', 'hievents_order', 'hievents_session']; + const STRIPE_RETURN_PARAMS = ['payment_intent', 'payment_intent_client_secret', 'redirect_status']; + const parentBaseUrl = stripParams(OWNED_PARAMS.concat(STRIPE_RETURN_PARAMS)); + + const resizableIframes = new Set(); + let modal = null; + + const RESUME_KEY = 'hievents.checkout.resume'; + const topStorage = () => { + try { return window.sessionStorage; } catch (e) { return null; } + }; + const saveResume = (data) => { + const store = topStorage(); + if (store) { + try { store.setItem(RESUME_KEY, JSON.stringify(data)); } catch (e) { /* noop */ } + } + }; + const clearResume = () => { + const store = topStorage(); + if (store) { + try { store.removeItem(RESUME_KEY); } catch (e) { /* noop */ } + } + }; + const readResume = () => { + const store = topStorage(); + if (!store) return null; + try { return JSON.parse(store.getItem(RESUME_KEY) || 'null'); } catch (e) { return null; } + }; + + const setFullScreenFixed = (el) => { + el.style.position = 'fixed'; + el.style.top = '0'; + el.style.left = '0'; + el.style.right = '0'; + el.style.bottom = '0'; + }; + + const openCheckoutModal = (path) => { + if (modal || typeof path !== 'string' || !path.startsWith('/checkout/')) { + return; + } + + const separator = path.indexOf('?') > -1 ? '&' : '?'; + const src = scriptOrigin + path + separator + + 'embed=modal&parentUrl=' + encodeURIComponent(parentBaseUrl); + + const abort = new AbortController(); + const prevFocus = document.activeElement; + const scrollY = window.scrollY || window.pageYOffset || 0; + const originalBody = { + position: document.body.style.position, + top: document.body.style.top, + width: document.body.style.width, + overflow: document.body.style.overflow, + }; + + const inerted = []; + + const host = document.createElement('div'); + host.id = 'hievents-checkout-modal'; + setFullScreenFixed(host); + host.style.zIndex = '2147483647'; + const shadow = host.attachShadow({ mode: 'open' }); + + const backdrop = document.createElement('div'); + const bs = backdrop.style; + setFullScreenFixed(backdrop); + bs.background = 'rgba(0, 0, 0, 0.6)'; + bs.display = 'flex'; + bs.flexDirection = 'column'; + bs.boxSizing = 'border-box'; + + const dialog = document.createElement('div'); + dialog.setAttribute('role', 'dialog'); + dialog.setAttribute('aria-modal', 'true'); + dialog.setAttribute('aria-label', 'Checkout'); + const ds = dialog.style; + ds.position = 'relative'; + ds.background = '#ffffff'; + ds.overflow = 'hidden'; + ds.boxSizing = 'border-box'; + ds.display = 'flex'; + ds.flexDirection = 'column'; + ds.flex = '0 0 auto'; + ds.boxShadow = '0 10px 40px rgba(0, 0, 0, 0.3)'; + + const closeBtn = document.createElement('button'); + closeBtn.type = 'button'; + closeBtn.setAttribute('aria-label', 'Close checkout'); + closeBtn.textContent = '×'; + const cs = closeBtn.style; + cs.position = 'absolute'; + cs.top = '10px'; + cs.right = '10px'; + cs.zIndex = '2'; + cs.width = '34px'; + cs.height = '34px'; + cs.padding = '0'; + cs.border = 'none'; + cs.borderRadius = '50%'; + cs.cursor = 'pointer'; + cs.background = 'rgba(0, 0, 0, 0.06)'; + cs.color = '#111111'; + cs.fontSize = '22px'; + cs.lineHeight = '34px'; + cs.textAlign = 'center'; + + const spinner = document.createElement('div'); + const sp = spinner.style; + setFullScreenFixed(spinner); + sp.position = 'absolute'; + sp.display = 'flex'; + sp.alignItems = 'center'; + sp.justifyContent = 'center'; + sp.color = '#888888'; + sp.fontFamily = 'sans-serif'; + sp.fontSize = '14px'; + spinner.textContent = 'Loading…'; + + const iframe = document.createElement('iframe'); + iframe.setAttribute('sandbox', SANDBOX); + iframe.setAttribute('allow', ALLOW); + iframe.setAttribute('title', 'Hi.Events Checkout'); + const ifs = iframe.style; + ifs.border = 'none'; + ifs.width = '100%'; + ifs.flex = '1 1 auto'; + ifs.background = '#ffffff'; + iframe.src = src; + + const applySizing = () => { + const vw = window.innerWidth; + const vh = (window.visualViewport && window.visualViewport.height) || window.innerHeight; + + if (vw <= MOBILE_BREAKPOINT) { + bs.alignItems = 'stretch'; + bs.justifyContent = 'flex-start'; + bs.padding = '0'; + ds.width = '100%'; + ds.maxWidth = 'none'; + ds.borderRadius = '0'; + ds.height = `${vh}px`; + } else { + bs.alignItems = 'center'; + bs.justifyContent = 'center'; + bs.padding = '16px'; + ds.width = `${MODAL_WIDTH}px`; + ds.maxWidth = '96vw'; + ds.borderRadius = '12px'; + ds.height = `${Math.round(vh * 0.92)}px`; + } + }; + + const requestClose = () => { + if (!modal) return; + try { + iframe.contentWindow.postMessage({ type: 'hievents:request-close' }, scriptOrigin); + } catch (e) { + closeCheckoutModal(); + return; + } + if (modal.ackTimer) clearTimeout(modal.ackTimer); + modal.ackTimer = setTimeout(safe(closeCheckoutModal), 4000); + }; + + backdrop.addEventListener('click', safe((e) => { + if (e.target === backdrop) requestClose(); + }), { signal: abort.signal }); + closeBtn.addEventListener('click', safe(requestClose), { signal: abort.signal }); + document.addEventListener('keydown', safe((e) => { + if (e.key === 'Escape') requestClose(); + }), { signal: abort.signal }); + window.addEventListener('resize', safe(applySizing), { signal: abort.signal }); + window.addEventListener('orientationchange', safe(applySizing), { signal: abort.signal }); + if (window.visualViewport) { + window.visualViewport.addEventListener('resize', safe(applySizing), { signal: abort.signal }); + } + iframe.addEventListener('load', safe(() => { + spinner.style.display = 'none'; + }), { signal: abort.signal }); + + dialog.appendChild(closeBtn); + dialog.appendChild(spinner); + dialog.appendChild(iframe); + backdrop.appendChild(dialog); + shadow.appendChild(backdrop); + + try { + Array.from(document.body.children).forEach((el) => { + if (el.nodeType === 1 && !el.hasAttribute('inert')) { + el.setAttribute('inert', ''); + inerted.push(el); + } + }); + document.body.style.top = `-${scrollY}px`; + document.body.style.position = 'fixed'; + document.body.style.width = '100%'; + document.body.style.overflow = 'hidden'; + document.body.appendChild(host); + } catch (e) { + console.error('HiEvent widget error: failed to open checkout modal'); + inerted.forEach((el) => { + try { el.removeAttribute('inert'); } catch (err) { /* noop */ } + }); + document.body.style.position = originalBody.position; + document.body.style.top = originalBody.top; + document.body.style.width = originalBody.width; + document.body.style.overflow = originalBody.overflow; + try { abort.abort(); } catch (err) { /* noop */ } + try { host.remove(); } catch (err) { /* noop */ } + return; + } + + applySizing(); + try { + closeBtn.focus(); + } catch (e) { + /* noop */ + } + + modal = { host, abort, prevFocus, scrollY, originalBody, inerted, ackTimer: null, requestClose }; + }; + + const closeCheckoutModal = () => { + if (!modal) return; + const current = modal; + modal = null; + + try { current.abort.abort(); } catch (e) { /* noop */ } + if (current.ackTimer) clearTimeout(current.ackTimer); + try { current.host.remove(); } catch (e) { /* noop */ } + current.inerted.forEach((el) => { + try { el.removeAttribute('inert'); } catch (e) { /* noop */ } + }); + + document.body.style.position = current.originalBody.position; + document.body.style.top = current.originalBody.top; + document.body.style.width = current.originalBody.width; + document.body.style.overflow = current.originalBody.overflow; + window.scrollTo(0, current.scrollY); + + try { + if (current.prevFocus && current.prevFocus.focus) current.prevFocus.focus(); + } catch (e) { + /* noop */ + } + + clearResume(); + }; + + window.addEventListener('message', safe((event) => { + if (event.origin !== scriptOrigin) { + return; + } + const data = event.data || {}; + switch (data.type) { + case 'resize': { + const height = Number(data.height); + if (Number.isFinite(height) && data.iframeId && resizableIframes.has(data.iframeId)) { + const clamped = Math.max(0, Math.min(height, 20000)); + const targetIframe = document.getElementById(data.iframeId); + if (targetIframe) targetIframe.style.height = `${clamped}px`; + } + break; + } + case 'hievents:open-checkout': + openCheckoutModal(data.path); + break; + case 'hievents:close-checkout': + closeCheckoutModal(); + break; + case 'hievents:close-pending': + if (modal && modal.ackTimer) { + clearTimeout(modal.ackTimer); + modal.ackTimer = null; + } + break; + case 'hievents:checkout-progress': + if (data.eventId && data.orderShortId) { + saveResume({ + eventId: data.eventId, + orderShortId: data.orderShortId, + sessionId: data.sessionId || null, + step: data.step || 'details', + reservedUntil: data.reservedUntil || null, + }); + } + break; + case 'hievents:checkout-cleared': + clearResume(); + break; + } + })); + + const widgetInstanceId = Math.random().toString(36).slice(2); const widgets = document.querySelectorAll('.hievents-widget'); widgets.forEach((widget, index) => { const eventId = widget.getAttribute('data-hievents-id'); @@ -23,32 +355,20 @@ } const iframe = document.createElement('iframe'); - iframe.setAttribute('sandbox', '' + - 'allow-forms' + - ' allow-scripts' + - ' allow-same-origin' + - ' allow-popups' + - ' allow-popups-to-escape-sandbox' + - ' allow-top-navigation' + - ' allow-top-navigation-by-user-activation' + - ' allow-downloads' + - ' allow-modals' + - ' allow-orientation-lock' + - ' allow-pointer-lock' + - ' allow-popups-to-escape-sandbox' + - ' allow-presentation' - ); - - iframe.setAttribute('title', 'Event Widget'); + iframe.setAttribute('sandbox', SANDBOX); + iframe.setAttribute('allow', ALLOW); + iframe.setAttribute('title', 'Hi.Events Widget'); iframe.style.border = 'none'; iframe.style.width = '100%'; - const iframeId = `hievents-iframe-${index}`; + const iframeId = `hievents-iframe-${widgetInstanceId}-${index}`; iframe.id = iframeId; - let src = `${scriptOrigin}/widget/${encodeURIComponent(eventId)}?iframeId=${iframeId}&`; + const parentUrlParam = `parentUrl=${encodeURIComponent(parentBaseUrl)}`; + const src = `${scriptOrigin}/widget/${encodeURIComponent(eventId)}?iframeId=${iframeId}&${parentUrlParam}&`; + const params = []; - Array.from(widget.attributes).forEach(attr => { + Array.from(widget.attributes).forEach((attr) => { if (attr.name.startsWith('data-hievents-') && attr.name !== 'data-hievents-id') { const paramName = attr.name.substring(13).replace(/-([a-z])/g, (g) => g[1].toUpperCase()); params.push(`${paramName}=${encodeURIComponent(attr.value)}`); @@ -56,34 +376,65 @@ }); iframe.src = src + params.join('&'); - widget.appendChild(iframe); - const autoResize = widget.getAttribute('data-hievents-autoresize') !== 'false'; + if (widget.getAttribute('data-hievents-autoresize') !== 'false') { + resizableIframes.add(iframeId); + } + }); - if (autoResize) { - window.addEventListener('message', (event) => { - if (event.origin !== scriptOrigin) { - return; - } + if (isPaymentReturn) { + const resumed = readResume(); + const recoveredSession = (resumed && String(resumed.orderShortId) === String(returnOrderId)) + ? resumed.sessionId + : null; + const sessionForReturn = returnSession || recoveredSession; - const { type, height, iframeId: messageIframeId } = event.data; - if (type === 'resize' && height && messageIframeId === iframeId) { - const targetIframe = document.getElementById(messageIframeId); - if (targetIframe) { - targetIframe.style.height = `${height}px`; - } - } - }); + const returnParams = new URLSearchParams(); + if (sessionForReturn) { + returnParams.set('session_identifier', sessionForReturn); } - }); - }; + STRIPE_RETURN_PARAMS.forEach((key) => { + const value = topParams.get(key); + if (value) { + returnParams.set(key, value); + } + }); + + const query = returnParams.toString(); + const path = `/checkout/${encodeURIComponent(returnEventId)}/${encodeURIComponent(returnOrderId)}/payment_return` + + (query ? `?${query}` : ''); + openCheckoutModal(path); + + try { + window.history.replaceState({}, document.title, parentBaseUrl); + } catch (e) { + console.error('HiEvent widget error: Unable to clean return URL'); + } + } else { + const resume = readResume(); + const stillReserved = resume && typeof resume.reservedUntil === 'number' + && resume.reservedUntil > Date.now(); + + if (stillReserved) { + let path = `/checkout/${encodeURIComponent(resume.eventId)}/${encodeURIComponent(resume.orderShortId)}/${encodeURIComponent(resume.step || 'details')}`; + if (resume.sessionId) { + path += `?session_identifier=${encodeURIComponent(resume.sessionId)}`; + } + openCheckoutModal(path); + } else if (resume) { + clearResume(); + } + } + }); - if (document.readyState === 'loading') { - document.addEventListener('DOMContentLoaded', loadWidget); - } else { - if (!isScriptLoaded()) { + try { + if (document.readyState === 'loading') { + document.addEventListener('DOMContentLoaded', loadWidget); + } else if (!isScriptLoaded()) { loadWidget(); } + } catch (e) { + logError(e); } })(document.currentScript); diff --git a/frontend/server.js b/frontend/server.js index 14649760cb..73c20ee76c 100644 --- a/frontend/server.js +++ b/frontend/server.js @@ -37,6 +37,20 @@ async function main() { app.use('/.well-known', express.static(path.join(__dirname, 'public/.well-known'))); + app.get('/widget.js', async (req, res) => { + try { + const widgetPath = isProduction + ? path.join(__dirname, './dist/client/widget.js') + : path.join(__dirname, './public/widget.js'); + const widgetJs = await fs.readFile(widgetPath, 'utf-8'); + res.setHeader('Content-Type', 'application/javascript; charset=utf-8'); + res.setHeader('Cache-Control', 'no-cache'); + return res.status(200).send(widgetJs); + } catch (error) { + return res.status(404).send(''); + } + }); + let vite; if (!isProduction) { diff --git a/frontend/src/api/order.client.ts b/frontend/src/api/order.client.ts index d56d575a95..b2e6739968 100644 --- a/frontend/src/api/order.client.ts +++ b/frontend/src/api/order.client.ts @@ -124,16 +124,12 @@ export const orderClientPublic = { findByShortId: async ( eventId: number, orderShortId: string, - includes: string[] = [], - sessionIdentifier?: string + includes: string[] = [] ) => { const query = new URLSearchParams(); if (includes.length > 0) { query.append("include", includes.join(",")); } - if (sessionIdentifier) { - query.append("session_identifier", sessionIdentifier); - } const response = await publicApi.get>( `events/${eventId}/order/${orderShortId}?${query.toString()}` diff --git a/frontend/src/api/public-client.ts b/frontend/src/api/public-client.ts index 05c44fed04..e8751aa1a6 100644 --- a/frontend/src/api/public-client.ts +++ b/frontend/src/api/public-client.ts @@ -1,6 +1,7 @@ import axios from "axios"; import {isSsr} from "../utilites/helpers"; import {getConfig} from "../utilites/config"; +import {getCheckoutSessionIdentifier} from "../utilites/checkoutSession"; export const publicApi = axios.create({ withCredentials: true, @@ -12,6 +13,15 @@ publicApi.interceptors.request.use((config) => { : getConfig('VITE_API_URL_CLIENT'); config.baseURL = `${baseUrl}/public`; + + const orderShortId = config.url?.match(/\/order\/([^/?#]+)/)?.[1]; + if (orderShortId && !config.url?.includes('session_identifier=')) { + const token = getCheckoutSessionIdentifier(orderShortId); + if (token) { + config.params = {...config.params, session_identifier: token}; + } + } + return config; }, (error) => { return Promise.reject(error); diff --git a/frontend/src/components/forms/StripeCheckoutForm/index.tsx b/frontend/src/components/forms/StripeCheckoutForm/index.tsx index 35bb02b4f0..7b55be7f31 100644 --- a/frontend/src/components/forms/StripeCheckoutForm/index.tsx +++ b/frontend/src/components/forms/StripeCheckoutForm/index.tsx @@ -1,6 +1,6 @@ import {useEffect, useState} from "react"; import {PaymentElement, useElements, useStripe} from "@stripe/react-stripe-js"; -import {useParams} from "react-router"; +import {useNavigate, useParams} from "react-router"; import * as stripeJs from "@stripe/stripe-js"; import {Alert, Skeleton} from "@mantine/core"; import {t} from "@lingui/macro"; @@ -11,6 +11,32 @@ import {CheckoutContent} from "../../layouts/Checkout/CheckoutContent"; import {HomepageInfoMessage} from "../../common/HomepageInfoMessage"; import {eventCheckoutPath, eventHomepagePath} from "../../../utilites/urlHelper.ts"; import {Event} from "../../../types.ts"; +import {getEmbedParentUrl} from "../../../utilites/iframeResize.ts"; +import {getCheckoutSessionIdentifier} from "../../../utilites/checkoutSession.ts"; + +const buildReturnUrl = (eventId: string, orderShortId: string, sessionId: string | null): string => { + const parentUrl = getEmbedParentUrl(); + + if (parentUrl) { + try { + const url = new URL(parentUrl); + if (url.protocol === 'https:' || url.protocol === 'http:') { + url.searchParams.set('hievents_event', eventId); + url.searchParams.set('hievents_order', orderShortId); + if (sessionId) { + url.searchParams.set('hievents_session', sessionId); + } + return url.toString(); + } + } catch (e) { + return window.location.origin + `/checkout/${eventId}/${orderShortId}/payment_return` + + (sessionId ? `?session_identifier=${sessionId}` : ''); + } + } + + const fallback = window.location.origin + `/checkout/${eventId}/${orderShortId}/payment_return`; + return sessionId ? `${fallback}?session_identifier=${sessionId}` : fallback; +}; export default function StripeCheckoutForm({setSubmitHandler}: { setSubmitHandler: (submitHandler: () => () => Promise) => void @@ -18,6 +44,7 @@ export default function StripeCheckoutForm({setSubmitHandler}: { const {eventId, orderShortId} = useParams(); const stripe = useStripe(); const elements = useElements(); + const navigate = useNavigate(); const [message, setMessage] = useState(''); const {data: order, isFetched: isOrderFetched} = useGetOrderPublic(eventId, orderShortId, ['event']); const event = order?.event; @@ -27,18 +54,27 @@ export default function StripeCheckoutForm({setSubmitHandler}: { return; } + const sessionId = getCheckoutSessionIdentifier(String(orderShortId)); + const {error} = await stripe.confirmPayment({ elements, confirmParams: { - return_url: window?.location.origin + `/checkout/${eventId}/${orderShortId}/payment_return` + return_url: buildReturnUrl(String(eventId), String(orderShortId), sessionId) }, + redirect: 'if_required', }); - if (error?.type === "card_error" || error?.type === "validation_error") { - setMessage(error.message); - } else { - setMessage(t`An unexpected error occurred.`); + if (error) { + if (error.type === "card_error" || error.type === "validation_error") { + setMessage(error.message); + } else { + setMessage(t`An unexpected error occurred.`); + } + return; } + + navigate(eventCheckoutPath(eventId, orderShortId, 'payment_return') + + (sessionId ? `?session_identifier=${sessionId}` : '')); }; useEffect(() => { diff --git a/frontend/src/components/layouts/Checkout/index.tsx b/frontend/src/components/layouts/Checkout/index.tsx index 9ad56df715..02944315ee 100644 --- a/frontend/src/components/layouts/Checkout/index.tsx +++ b/frontend/src/components/layouts/Checkout/index.tsx @@ -1,4 +1,4 @@ -import {Outlet, useBlocker, useLocation, useNavigate, useParams} from "react-router"; +import {Outlet, useBlocker, useLocation, useNavigate, useParams, useSearchParams} from "react-router"; import classes from './Checkout.module.scss'; import {useGetOrderPublic} from "../../../queries/useGetOrderPublic.ts"; import {t} from "@lingui/macro"; @@ -10,14 +10,17 @@ import {ShareComponent} from "../../common/ShareIcon"; import {AddToEventCalendarButton} from "../../common/AddEventToCalendarButton"; import {ProgressStepper} from "../../common/ProgressStepper"; import {useMediaQuery} from "@mantine/hooks"; -import React, {useEffect, useState} from "react"; +import React, {useCallback, useEffect, useMemo, useState} from "react"; +import {getEmbedMode, getParentOrigin} from "../../../utilites/iframeResize.ts"; import {Invoice} from "../../../types.ts"; import {orderClientPublic} from "../../../api/order.client.ts"; import {downloadBinary} from "../../../utilites/download.ts"; import {withLoadingNotification} from "../../../utilites/withLoadingNotification.tsx"; import {useAbandonOrderPublic} from "../../../mutations/useAbandonOrderPublic.ts"; import {showError, showInfo} from "../../../utilites/notifications.tsx"; -import {isDateInFuture} from "../../../utilites/dates.ts"; +import {isDateInFuture, utcDateToEpochMs} from "../../../utilites/dates.ts"; +import {getCheckoutSessionIdentifier} from "../../../utilites/checkoutSession.ts"; +import {PoweredByFooter} from "../../common/PoweredByFooter"; import {detectMode} from "../../../utilites/themeUtils.ts"; import {CheckoutThemeProvider} from "./CheckoutThemeProvider.tsx"; import {useOrganizerTrackingPixels} from "../../../hooks/useOrganizerTrackingPixels"; @@ -29,7 +32,7 @@ const DEFAULT_ACCENT = '#8b5cf6'; const Checkout = () => { const {eventId, orderShortId} = useParams(); - const {data: order} = useGetOrderPublic(eventId, orderShortId, ['event']); + const {data: order, isError: isOrderError} = useGetOrderPublic(eventId, orderShortId, ['event']); const event = order?.event; // Derive a single occurrence id from order items only when they all agree — // a multi-occurrence order falls back to the event-wide view so the cache @@ -41,6 +44,12 @@ const Checkout = () => { const {data: publicEvent} = useGetEventPublic(eventId, !!eventId, false, null, orderOccurrenceId); const navigate = useNavigate(); const location = useLocation(); + const [searchParams] = useSearchParams(); + const isModal = useMemo(() => { + const fromUrl = searchParams.get('embed') === 'modal'; + const cached = getEmbedMode() === 'modal'; + return fromUrl || cached; + }, [searchParams]); const orderIsCompleted = order?.status === 'COMPLETED'; const orderIsReserved = order?.status === 'RESERVED'; const orderIsAwaitingOfflinePayment = order?.status === 'AWAITING_OFFLINE_PAYMENT'; @@ -50,8 +59,20 @@ const Checkout = () => { const [showAbandonDialog, setShowAbandonDialog] = useState(false); const [pendingNavigation, setPendingNavigation] = useState(null); const [isAbandoning, setIsAbandoning] = useState(false); + const [pendingClose, setPendingClose] = useState(false); const abandonOrderMutation = useAbandonOrderPublic(); + const postToParent = useCallback((type: string, data?: Record) => { + if (typeof window === 'undefined') return; + try { + window.parent.postMessage({type, ...(data ?? {})}, getParentOrigin() || '*'); + } catch (e) { + /* noop */ + } + }, []); + + const closeModal = useCallback(() => postToParent('hievents:close-checkout'), [postToParent]); + const getCurrentStep = (): 'details' | 'payment' | 'summary' => { const pathname = location.pathname; if (pathname.includes('/payment')) return 'payment'; @@ -80,9 +101,75 @@ const Checkout = () => { }; const handleReturn = () => { + if (isModal) { + closeModal(); + return; + } navigate(`/event/${event?.id}/${event?.slug}`); }; + const handleRequestClose = useCallback(() => { + postToParent('hievents:close-pending'); + if (isOrderReservedAndNotExpired) { + setPendingClose(true); + setShowAbandonDialog(true); + } else { + closeModal(); + } + }, [postToParent, closeModal, isOrderReservedAndNotExpired]); + + useEffect(() => { + if (!isModal) return; + const parentOrigin = getParentOrigin(); + const onMessage = (event: MessageEvent) => { + if (parentOrigin && event.origin !== parentOrigin) return; + if (event.data?.type === 'hievents:request-close') { + handleRequestClose(); + } + }; + window.addEventListener('message', onMessage); + return () => window.removeEventListener('message', onMessage); + }, [isModal, handleRequestClose]); + + useEffect(() => { + if (isModal && isOrderError) { + postToParent('hievents:checkout-cleared'); + closeModal(); + } + }, [isModal, isOrderError, postToParent, closeModal]); + + useEffect(() => { + if (!isModal) return; + if (isOrderReservedAndNotExpired) { + postToParent('hievents:checkout-progress', { + eventId, + orderShortId, + sessionId: getCheckoutSessionIdentifier(String(orderShortId)), + step: currentStep, + reservedUntil: order?.reserved_until ? utcDateToEpochMs(order.reserved_until) : null, + }); + } else if (orderIsCompleted || orderIsAwaitingOfflinePayment) { + postToParent('hievents:checkout-cleared'); + } + }, [isModal, isOrderReservedAndNotExpired, orderIsCompleted, orderIsAwaitingOfflinePayment, order?.reserved_until, currentStep, eventId, orderShortId, postToParent]); + + useEffect(() => { + if (!isModal) return; + const onKeydown = (event: KeyboardEvent) => { + if (event.key === 'Escape' && !showAbandonDialog && !isExpired) { + handleRequestClose(); + } + }; + window.addEventListener('keydown', onKeydown); + return () => window.removeEventListener('keydown', onKeydown); + }, [isModal, showAbandonDialog, isExpired, handleRequestClose]); + + useEffect(() => { + if (isModal && order?.is_expired) { + setIsExpired(true); + } + }, [isModal, order?.is_expired]); + const handleInvoiceDownload = async (invoice: Invoice) => { await withLoadingNotification( async () => { @@ -119,7 +206,10 @@ const Checkout = () => { setShowAbandonDialog(false); showInfo(t`Your order has been cancelled.`); - if (blocker.state === 'blocked') { + if (pendingClose) { + setPendingClose(false); + closeModal(); + } else if (blocker.state === 'blocked') { blocker.proceed(); } else if (pendingNavigation) { navigate(pendingNavigation); @@ -136,6 +226,7 @@ const Checkout = () => { } setShowAbandonDialog(false); setPendingNavigation(null); + setPendingClose(false); }; const handleEventHomepageClick = (e: React.MouseEvent) => { @@ -201,16 +292,20 @@ const Checkout = () => {
{(event) && ( -
+
- + {isModal ? ( + + ) : ( + + )} {orderIsReserved && ( { )}
+ {isModal && currentStep !== 'summary' && ( + + )}
diff --git a/frontend/src/components/layouts/ProductWidget/index.tsx b/frontend/src/components/layouts/ProductWidget/index.tsx index 2b69b03327..ada0cb79ee 100644 --- a/frontend/src/components/layouts/ProductWidget/index.tsx +++ b/frontend/src/components/layouts/ProductWidget/index.tsx @@ -20,6 +20,10 @@ const ProductWidget = () => { return Number.isFinite(parsed) && parsed > 0 ? parsed : null; }, [location.search]); + const checkoutMode = useMemo(() => { + return new URLSearchParams(location.search).get('Checkout') === 'new-tab' ? 'new-tab' : 'modal'; + }, [location.search]); + const eventQuery = useGetEventPublic(eventId, true, false, null, eventOccurrenceId); const settings = useMemo(() => { @@ -57,6 +61,7 @@ const ProductWidget = () => {
{ const attendeeProductIds = new Set( products .filter(product => product && product.product_type === 'TICKET') - .map(product => product.id) + .map(product => product!.id) ); return form.values.products @@ -233,7 +234,7 @@ export const CollectInformation = () => { }); // if it's a 409, we need to redirect to the event page as the order is no longer valid - if (error.response.status === 409) { + if (error.response.status === 409 && getEmbedMode() !== 'modal') { navigate(eventHomepagePath(event as Event)); } } @@ -315,7 +316,7 @@ export const CollectInformation = () => { }, [isEventFetched, isOrderFetched, isQuestionsFetched]); useEffect(() => { - if ((order && event) && order?.is_expired) { + if ((order && event) && order?.is_expired && getEmbedMode() !== 'modal') { showInfo(t`This order has expired. Please start again.`); navigate(`/event/${eventId}/${event.slug}`); } diff --git a/frontend/src/components/routes/product-widget/SelectProducts/index.tsx b/frontend/src/components/routes/product-widget/SelectProducts/index.tsx index 72535fb104..fda0829158 100644 --- a/frontend/src/components/routes/product-widget/SelectProducts/index.tsx +++ b/frontend/src/components/routes/product-widget/SelectProducts/index.tsx @@ -24,7 +24,14 @@ import {useForm} from "@mantine/form"; import {range, useInputState, useResizeObserver} from "@mantine/hooks"; import React, {useEffect, useMemo, useRef, useState} from "react"; import {showError, showInfo, showSuccess} from "../../../../utilites/notifications.tsx"; -import {addQueryStringToUrl, isObjectEmpty, removeQueryStringFromUrl} from "../../../../utilites/helpers.ts"; +import { + addQueryStringToUrl, + isObjectEmpty, + removeQueryStringFromUrl, + safeLocalStorageGet, + safeLocalStorageRemove, + safeLocalStorageSet +} from "../../../../utilites/helpers.ts"; import {TieredPricing} from "./Prices/Tiered"; import classNames from 'classnames'; import '../../../../styles/widget/default.scss'; @@ -35,6 +42,8 @@ import {eventsClientPublic} from "../../../../api/event.client.ts"; import {promoCodeClientPublic} from "../../../../api/promo-code.client.ts"; import {IconCalendar, IconChevronRight, IconX} from "@tabler/icons-react" import {getSessionIdentifier} from "../../../../utilites/sessionIdentifier.ts"; +import {setCheckoutSessionIdentifier} from "../../../../utilites/checkoutSession.ts"; +import {getEmbedParentUrl, getParentOrigin, sendHeightToParent} from "../../../../utilites/iframeResize.ts"; import {Constants} from "../../../../constants.ts"; import {clearWaitlistJoinedForEvent} from "../../../../hooks/useWaitlistJoined.ts"; import {OccurrenceSelector} from "../OccurrenceSelector"; @@ -42,23 +51,26 @@ import {formatDateWithLocale} from "../../../../utilites/dates.ts"; const AFFILIATE_EXPIRY_DAYS = 30; +const buildCheckoutPath = ( + eventId: string | undefined, + orderShortId: string | undefined, + sessionId?: string | null, + extraParams: Record = {} +) => { + const params = new URLSearchParams(); + if (sessionId) { + params.set('session_identifier', sessionId); + } + Object.entries(extraParams).forEach(([key, value]) => params.set(key, value)); + const query = params.toString(); + + return `/checkout/${eventId}/${orderShortId}/details${query ? `?${query}` : ''}`; +}; + const sendHeightToIframeWidgets = () => { const height = document.documentElement.scrollHeight; const widgetHeight = document.querySelector('.hi-product-widget-container')?.getBoundingClientRect().height || 0; - const urlParams = new URLSearchParams(window.location.search); - const iframeId = urlParams.get('iframeId'); - - const finalHeight = Math.max(height, widgetHeight); - - if (!iframeId) { - return; - } - - window.parent.postMessage({ - type: 'resize', - height: finalHeight, - iframeId: iframeId - }, '*'); + sendHeightToParent(Math.max(height, widgetHeight)); }; interface SelectProductsProps { @@ -77,6 +89,7 @@ interface SelectProductsProps { padding?: string; continueButtonText?: string; widgetMode?: 'preview' | 'normal' | 'embedded'; + checkoutMode?: 'modal' | 'new-tab'; showPoweredBy?: boolean; initialOccurrenceId?: number | null; } @@ -104,12 +117,12 @@ const SelectProducts = (props: SelectProductsProps) => { if (affiliateCodeFromUrl) { const data = {code: affiliateCodeFromUrl, timestamp: now}; - localStorage.setItem(storageKey, JSON.stringify(data)); + safeLocalStorageSet(storageKey, JSON.stringify(data)); setAffiliateCode(affiliateCodeFromUrl); return; } - const storedData = localStorage.getItem(storageKey); + const storedData = safeLocalStorageGet(storageKey); if (storedData) { try { const parsed = JSON.parse(storedData); @@ -117,10 +130,10 @@ const SelectProducts = (props: SelectProductsProps) => { if (ageInDays <= AFFILIATE_EXPIRY_DAYS) { setAffiliateCode(parsed.code); } else { - localStorage.removeItem(storageKey); + safeLocalStorageRemove(storageKey); } } catch { - localStorage.removeItem(storageKey); + safeLocalStorageRemove(storageKey); } } }, []); @@ -157,31 +170,61 @@ const SelectProducts = (props: SelectProductsProps) => { }, [event?.occurrences]); const needsOccurrenceSelection = isRecurring && activeOccurrences.length >= 1; const occurrenceSelected = !!selectedOccurrenceId; + const eventHasEnded = useMemo(() => { + const occurrences = event?.occurrences ?? []; + return occurrences.length > 0 && !occurrences.some(occ => !occ.is_past); + }, [event?.occurrences]); const productMutation = useMutation({ mutationFn: (orderData: ProductFormPayload) => orderClientPublic.create(Number(eventId), orderData), onSuccess: (data) => queryClient.invalidateQueries() .then(() => { - const url = '/checkout/' + eventId + '/' + data.data.short_id + '/details'; + const sessionId = data.data.session_identifier; + const pathWithSession = buildCheckoutPath(eventId, data.data.short_id, sessionId); + + if (sessionId) { + setCheckoutSessionIdentifier(String(data.data.short_id), sessionId); + } + if (props.widgetMode === 'embedded') { - window.open( - url + '?session_identifier=' + data.data.session_identifier + '&utm_source=embedded_widget', - '_blank' + const parentSupportsModal = props.checkoutMode !== 'new-tab' && !!getEmbedParentUrl(); + + if (!parentSupportsModal) { + window.open( + buildCheckoutPath(eventId, data.data.short_id, sessionId, {utm_source: 'embedded_widget'}), + '_blank', + 'noopener,noreferrer' + ); + setOrderInProcessOverlayVisible(true); + return; + } + + window.parent.postMessage( + {type: 'hievents:open-checkout', path: pathWithSession}, + getParentOrigin() || '*' ); - setOrderInProcessOverlayVisible(true); return; } - return navigate(url); + return navigate(pathWithSession); }), onError: (error: any) => { - if (error?.response?.data?.errors) { - form.setErrors(error.response.data.errors); + const errors = error?.response?.data?.errors; + if (errors) { + form.setErrors(errors); } - showError(error.response.data.errors?.products[0] || t`Unable to create product. Please check your details`); + const firstError = errors + ? Object.values(errors).flat().find((message) => typeof message === 'string') + : undefined; + + showError( + (firstError as string) + || error?.response?.data?.message + || t`Unable to create product. Please check your details` + ); } }); @@ -396,7 +439,7 @@ const SelectProducts = (props: SelectProductsProps) => { '--widget-secondary-text-color': props.colors?.secondaryText, '--widget-padding': props?.padding, } as React.CSSProperties}> - {!productAreAvailable && ( + {!productAreAvailable && !eventHasEnded && (

{t`There are no products available for this event`} @@ -410,6 +453,13 @@ const SelectProducts = (props: SelectProductsProps) => {

)} + {eventHasEnded && ( +
+

+ {t`Ticket sales have ended for this event`} +

+
+ )} {orderInProcessOverlayVisible && ( {
)} - {(event && productAreAvailable && !(isRecurring && activeOccurrences.length === 0)) && ( + {(event && productAreAvailable && !eventHasEnded && !(isRecurring && activeOccurrences.length === 0)) && (
@@ -711,7 +766,7 @@ const SelectProducts = (props: SelectProductsProps) => {
)}
!!window.hiEventWidgetLoaded; - const loadWidget = () => { + const logError = (e) => { + try { console.error('HiEvent widget error:', e); } catch (ignored) { /* noop */ } + }; + + const safe = (fn) => function () { + try { + return fn.apply(this, arguments); + } catch (e) { + logError(e); + } + }; + + const loadWidget = safe(() => { window.hiEventWidgetLoaded = true; let scriptOrigin; try { - const scriptURL = scriptElement.src; - scriptOrigin = new URL(scriptURL).origin; + scriptOrigin = new URL(scriptElement.src).origin; } catch (e) { console.error('HiEvent widget error: Invalid script URL'); return; } + const SANDBOX = [ + 'allow-forms', 'allow-scripts', 'allow-same-origin', 'allow-popups', + 'allow-popups-to-escape-sandbox', 'allow-top-navigation', + 'allow-top-navigation-by-user-activation', 'allow-downloads', 'allow-modals', + 'allow-orientation-lock', 'allow-pointer-lock', 'allow-presentation' + ].join(' '); + const ALLOW = `payment ${scriptOrigin}; publickey-credentials-get ${scriptOrigin}`; + const MOBILE_BREAKPOINT = 640; + const MODAL_WIDTH = 760; + + const topParams = new URLSearchParams(window.location.search); + const returnEventId = topParams.get('hievents_event'); + const returnOrderId = topParams.get('hievents_order'); + const returnSession = topParams.get('hievents_session'); + const isPaymentReturn = !!(returnEventId && returnOrderId); + + const stripParams = (keys) => { + try { + const url = new URL(window.location.href); + keys.forEach((key) => url.searchParams.delete(key)); + return url.toString(); + } catch (e) { + return window.location.href; + } + }; + + const OWNED_PARAMS = ['hievents_event', 'hievents_order', 'hievents_session']; + const STRIPE_RETURN_PARAMS = ['payment_intent', 'payment_intent_client_secret', 'redirect_status']; + const parentBaseUrl = stripParams(OWNED_PARAMS.concat(STRIPE_RETURN_PARAMS)); + + const resizableIframes = new Set(); + let modal = null; + + const RESUME_KEY = 'hievents.checkout.resume'; + const topStorage = () => { + try { return window.sessionStorage; } catch (e) { return null; } + }; + const saveResume = (data) => { + const store = topStorage(); + if (store) { + try { store.setItem(RESUME_KEY, JSON.stringify(data)); } catch (e) { /* noop */ } + } + }; + const clearResume = () => { + const store = topStorage(); + if (store) { + try { store.removeItem(RESUME_KEY); } catch (e) { /* noop */ } + } + }; + const readResume = () => { + const store = topStorage(); + if (!store) return null; + try { return JSON.parse(store.getItem(RESUME_KEY) || 'null'); } catch (e) { return null; } + }; + + const setFullScreenFixed = (el) => { + el.style.position = 'fixed'; + el.style.top = '0'; + el.style.left = '0'; + el.style.right = '0'; + el.style.bottom = '0'; + }; + + const openCheckoutModal = (path) => { + if (modal || typeof path !== 'string' || !path.startsWith('/checkout/')) { + return; + } + + const separator = path.indexOf('?') > -1 ? '&' : '?'; + const src = scriptOrigin + path + separator + + 'embed=modal&parentUrl=' + encodeURIComponent(parentBaseUrl); + + const abort = new AbortController(); + const prevFocus = document.activeElement; + const scrollY = window.scrollY || window.pageYOffset || 0; + const originalBody = { + position: document.body.style.position, + top: document.body.style.top, + width: document.body.style.width, + overflow: document.body.style.overflow, + }; + + const inerted = []; + + const host = document.createElement('div'); + host.id = 'hievents-checkout-modal'; + setFullScreenFixed(host); + host.style.zIndex = '2147483647'; + const shadow = host.attachShadow({ mode: 'open' }); + + const backdrop = document.createElement('div'); + const bs = backdrop.style; + setFullScreenFixed(backdrop); + bs.background = 'rgba(0, 0, 0, 0.6)'; + bs.display = 'flex'; + bs.flexDirection = 'column'; + bs.boxSizing = 'border-box'; + + const dialog = document.createElement('div'); + dialog.setAttribute('role', 'dialog'); + dialog.setAttribute('aria-modal', 'true'); + dialog.setAttribute('aria-label', 'Checkout'); + const ds = dialog.style; + ds.position = 'relative'; + ds.background = '#ffffff'; + ds.overflow = 'hidden'; + ds.boxSizing = 'border-box'; + ds.display = 'flex'; + ds.flexDirection = 'column'; + ds.flex = '0 0 auto'; + ds.boxShadow = '0 10px 40px rgba(0, 0, 0, 0.3)'; + + const closeBtn = document.createElement('button'); + closeBtn.type = 'button'; + closeBtn.setAttribute('aria-label', 'Close checkout'); + closeBtn.textContent = '×'; + const cs = closeBtn.style; + cs.position = 'absolute'; + cs.top = '10px'; + cs.right = '10px'; + cs.zIndex = '2'; + cs.width = '34px'; + cs.height = '34px'; + cs.padding = '0'; + cs.border = 'none'; + cs.borderRadius = '50%'; + cs.cursor = 'pointer'; + cs.background = 'rgba(0, 0, 0, 0.06)'; + cs.color = '#111111'; + cs.fontSize = '22px'; + cs.lineHeight = '34px'; + cs.textAlign = 'center'; + + const spinner = document.createElement('div'); + const sp = spinner.style; + setFullScreenFixed(spinner); + sp.position = 'absolute'; + sp.display = 'flex'; + sp.alignItems = 'center'; + sp.justifyContent = 'center'; + sp.color = '#888888'; + sp.fontFamily = 'sans-serif'; + sp.fontSize = '14px'; + spinner.textContent = 'Loading…'; + + const iframe = document.createElement('iframe'); + iframe.setAttribute('sandbox', SANDBOX); + iframe.setAttribute('allow', ALLOW); + iframe.setAttribute('title', 'Hi.Events Checkout'); + const ifs = iframe.style; + ifs.border = 'none'; + ifs.width = '100%'; + ifs.flex = '1 1 auto'; + ifs.background = '#ffffff'; + iframe.src = src; + + const applySizing = () => { + const vw = window.innerWidth; + const vh = (window.visualViewport && window.visualViewport.height) || window.innerHeight; + + if (vw <= MOBILE_BREAKPOINT) { + bs.alignItems = 'stretch'; + bs.justifyContent = 'flex-start'; + bs.padding = '0'; + ds.width = '100%'; + ds.maxWidth = 'none'; + ds.borderRadius = '0'; + ds.height = `${vh}px`; + } else { + bs.alignItems = 'center'; + bs.justifyContent = 'center'; + bs.padding = '16px'; + ds.width = `${MODAL_WIDTH}px`; + ds.maxWidth = '96vw'; + ds.borderRadius = '12px'; + ds.height = `${Math.round(vh * 0.92)}px`; + } + }; + + const requestClose = () => { + if (!modal) return; + try { + iframe.contentWindow.postMessage({ type: 'hievents:request-close' }, scriptOrigin); + } catch (e) { + closeCheckoutModal(); + return; + } + if (modal.ackTimer) clearTimeout(modal.ackTimer); + modal.ackTimer = setTimeout(safe(closeCheckoutModal), 4000); + }; + + backdrop.addEventListener('click', safe((e) => { + if (e.target === backdrop) requestClose(); + }), { signal: abort.signal }); + closeBtn.addEventListener('click', safe(requestClose), { signal: abort.signal }); + document.addEventListener('keydown', safe((e) => { + if (e.key === 'Escape') requestClose(); + }), { signal: abort.signal }); + window.addEventListener('resize', safe(applySizing), { signal: abort.signal }); + window.addEventListener('orientationchange', safe(applySizing), { signal: abort.signal }); + if (window.visualViewport) { + window.visualViewport.addEventListener('resize', safe(applySizing), { signal: abort.signal }); + } + iframe.addEventListener('load', safe(() => { + spinner.style.display = 'none'; + }), { signal: abort.signal }); + + dialog.appendChild(closeBtn); + dialog.appendChild(spinner); + dialog.appendChild(iframe); + backdrop.appendChild(dialog); + shadow.appendChild(backdrop); + + try { + Array.from(document.body.children).forEach((el) => { + if (el.nodeType === 1 && !el.hasAttribute('inert')) { + el.setAttribute('inert', ''); + inerted.push(el); + } + }); + document.body.style.top = `-${scrollY}px`; + document.body.style.position = 'fixed'; + document.body.style.width = '100%'; + document.body.style.overflow = 'hidden'; + document.body.appendChild(host); + } catch (e) { + console.error('HiEvent widget error: failed to open checkout modal'); + inerted.forEach((el) => { + try { el.removeAttribute('inert'); } catch (err) { /* noop */ } + }); + document.body.style.position = originalBody.position; + document.body.style.top = originalBody.top; + document.body.style.width = originalBody.width; + document.body.style.overflow = originalBody.overflow; + try { abort.abort(); } catch (err) { /* noop */ } + try { host.remove(); } catch (err) { /* noop */ } + return; + } + + applySizing(); + try { + closeBtn.focus(); + } catch (e) { + /* noop */ + } + + modal = { host, abort, prevFocus, scrollY, originalBody, inerted, ackTimer: null, requestClose }; + }; + + const closeCheckoutModal = () => { + if (!modal) return; + const current = modal; + modal = null; + + try { current.abort.abort(); } catch (e) { /* noop */ } + if (current.ackTimer) clearTimeout(current.ackTimer); + try { current.host.remove(); } catch (e) { /* noop */ } + current.inerted.forEach((el) => { + try { el.removeAttribute('inert'); } catch (e) { /* noop */ } + }); + + document.body.style.position = current.originalBody.position; + document.body.style.top = current.originalBody.top; + document.body.style.width = current.originalBody.width; + document.body.style.overflow = current.originalBody.overflow; + window.scrollTo(0, current.scrollY); + + try { + if (current.prevFocus && current.prevFocus.focus) current.prevFocus.focus(); + } catch (e) { + /* noop */ + } + + clearResume(); + }; + + window.addEventListener('message', safe((event) => { + if (event.origin !== scriptOrigin) { + return; + } + const data = event.data || {}; + switch (data.type) { + case 'resize': { + const height = Number(data.height); + if (Number.isFinite(height) && data.iframeId && resizableIframes.has(data.iframeId)) { + const clamped = Math.max(0, Math.min(height, 20000)); + const targetIframe = document.getElementById(data.iframeId); + if (targetIframe) targetIframe.style.height = `${clamped}px`; + } + break; + } + case 'hievents:open-checkout': + openCheckoutModal(data.path); + break; + case 'hievents:close-checkout': + closeCheckoutModal(); + break; + case 'hievents:close-pending': + if (modal && modal.ackTimer) { + clearTimeout(modal.ackTimer); + modal.ackTimer = null; + } + break; + case 'hievents:checkout-progress': + if (data.eventId && data.orderShortId) { + saveResume({ + eventId: data.eventId, + orderShortId: data.orderShortId, + sessionId: data.sessionId || null, + step: data.step || 'details', + reservedUntil: data.reservedUntil || null, + }); + } + break; + case 'hievents:checkout-cleared': + clearResume(); + break; + } + })); + + const widgetInstanceId = Math.random().toString(36).slice(2); const widgets = document.querySelectorAll('.hievents-widget'); widgets.forEach((widget, index) => { const eventId = widget.getAttribute('data-hievents-id'); @@ -23,32 +355,20 @@ } const iframe = document.createElement('iframe'); - iframe.setAttribute('sandbox', '' + - 'allow-forms' + - ' allow-scripts' + - ' allow-same-origin' + - ' allow-popups' + - ' allow-popups-to-escape-sandbox' + - ' allow-top-navigation' + - ' allow-top-navigation-by-user-activation' + - ' allow-downloads' + - ' allow-modals' + - ' allow-orientation-lock' + - ' allow-pointer-lock' + - ' allow-popups-to-escape-sandbox' + - ' allow-presentation' - ); - + iframe.setAttribute('sandbox', SANDBOX); + iframe.setAttribute('allow', ALLOW); iframe.setAttribute('title', 'Hi.Events Widget'); iframe.style.border = 'none'; iframe.style.width = '100%'; - const iframeId = `hievents-iframe-${index}`; + const iframeId = `hievents-iframe-${widgetInstanceId}-${index}`; iframe.id = iframeId; - let src = `${scriptOrigin}/widget/${encodeURIComponent(eventId)}?iframeId=${iframeId}&`; + const parentUrlParam = `parentUrl=${encodeURIComponent(parentBaseUrl)}`; + const src = `${scriptOrigin}/widget/${encodeURIComponent(eventId)}?iframeId=${iframeId}&${parentUrlParam}&`; + const params = []; - Array.from(widget.attributes).forEach(attr => { + Array.from(widget.attributes).forEach((attr) => { if (attr.name.startsWith('data-hievents-') && attr.name !== 'data-hievents-id') { const paramName = attr.name.substring(13).replace(/-([a-z])/g, (g) => g[1].toUpperCase()); params.push(`${paramName}=${encodeURIComponent(attr.value)}`); @@ -56,34 +376,65 @@ }); iframe.src = src + params.join('&'); - widget.appendChild(iframe); - const autoResize = widget.getAttribute('data-hievents-autoresize') !== 'false'; + if (widget.getAttribute('data-hievents-autoresize') !== 'false') { + resizableIframes.add(iframeId); + } + }); - if (autoResize) { - window.addEventListener('message', (event) => { - if (event.origin !== scriptOrigin) { - return; - } + if (isPaymentReturn) { + const resumed = readResume(); + const recoveredSession = (resumed && String(resumed.orderShortId) === String(returnOrderId)) + ? resumed.sessionId + : null; + const sessionForReturn = returnSession || recoveredSession; - const { type, height, iframeId: messageIframeId } = event.data; - if (type === 'resize' && height && messageIframeId === iframeId) { - const targetIframe = document.getElementById(messageIframeId); - if (targetIframe) { - targetIframe.style.height = `${height}px`; - } - } - }); + const returnParams = new URLSearchParams(); + if (sessionForReturn) { + returnParams.set('session_identifier', sessionForReturn); } - }); - }; + STRIPE_RETURN_PARAMS.forEach((key) => { + const value = topParams.get(key); + if (value) { + returnParams.set(key, value); + } + }); + + const query = returnParams.toString(); + const path = `/checkout/${encodeURIComponent(returnEventId)}/${encodeURIComponent(returnOrderId)}/payment_return` + + (query ? `?${query}` : ''); + openCheckoutModal(path); + + try { + window.history.replaceState({}, document.title, parentBaseUrl); + } catch (e) { + console.error('HiEvent widget error: Unable to clean return URL'); + } + } else { + const resume = readResume(); + const stillReserved = resume && typeof resume.reservedUntil === 'number' + && resume.reservedUntil > Date.now(); + + if (stillReserved) { + let path = `/checkout/${encodeURIComponent(resume.eventId)}/${encodeURIComponent(resume.orderShortId)}/${encodeURIComponent(resume.step || 'details')}`; + if (resume.sessionId) { + path += `?session_identifier=${encodeURIComponent(resume.sessionId)}`; + } + openCheckoutModal(path); + } else if (resume) { + clearResume(); + } + } + }); - if (document.readyState === 'loading') { - document.addEventListener('DOMContentLoaded', loadWidget); - } else { - if (!isScriptLoaded()) { + try { + if (document.readyState === 'loading') { + document.addEventListener('DOMContentLoaded', loadWidget); + } else if (!isScriptLoaded()) { loadWidget(); } + } catch (e) { + logError(e); } })(document.currentScript); diff --git a/frontend/src/locales/de.js b/frontend/src/locales/de.js index c3ea4b1e36..c595caacb7 100644 --- a/frontend/src/locales/de.js +++ b/frontend/src/locales/de.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Hier gibt es noch nichts zu zeigen'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>erfolgreich ausgecheckt\"],\"KMgp2+\":[[\"0\"],\" verfügbar\"],\"Pmr5xp\":[[\"0\"],\" erfolgreich erstellt\"],\"FImCSc\":[[\"0\"],\" erfolgreich aktualisiert\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" Tage, \",[\"hours\"],\" Stunden, \",[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"f3RdEk\":[[\"hours\"],\" Stunden, \",[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"NlQ0cx\":[\"Erste Veranstaltung von \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://Ihre-website.com\",\"qnSLLW\":\"<0>Bitte geben Sie den Preis ohne Steuern und Gebühren ein.<1>Steuern und Gebühren können unten hinzugefügt werden.\",\"ZjMs6e\":\"<0>Die Anzahl der für dieses Produkt verfügbaren Produkte<1>Dieser Wert kann überschrieben werden, wenn mit diesem Produkt <2>Kapazitätsgrenzen verbunden sind.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 Minuten und 0 Sekunden\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Hauptstraße 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Ein Datumseingabefeld. Perfekt, um nach einem Geburtsdatum o.ä. zu fragen.\",\"6euFZ/\":[\"Ein standardmäßiger \",[\"type\"],\" wird automatisch auf alle neuen Produkte angewendet. Sie können dies für jedes Produkt einzeln überschreiben.\"],\"SMUbbQ\":\"Eine Dropdown-Eingabe erlaubt nur eine Auswahl\",\"qv4bfj\":\"Eine Gebühr, beispielsweise eine Buchungsgebühr oder eine Servicegebühr\",\"POT0K/\":\"Ein fester Betrag pro Produkt. Z.B., 0,50 $ pro Produkt\",\"f4vJgj\":\"Eine mehrzeilige Texteingabe\",\"OIPtI5\":\"Ein Prozentsatz des Produktpreises. Z.B., 3,5 % des Produktpreises\",\"ZthcdI\":\"Ein Promo-Code ohne Rabatt kann verwendet werden, um versteckte Produkte anzuzeigen.\",\"AG/qmQ\":\"Eine Radiooption hat mehrere Optionen, aber nur eine kann ausgewählt werden.\",\"h179TP\":\"Eine kurze Beschreibung der Veranstaltung, die in Suchmaschinenergebnissen und beim Teilen in sozialen Medien angezeigt wird. Standardmäßig wird die Veranstaltungsbeschreibung verwendet\",\"WKMnh4\":\"Eine einzeilige Texteingabe\",\"BHZbFy\":\"Eine einzelne Frage pro Bestellung. Z.B., Wie lautet Ihre Lieferadresse?\",\"Fuh+dI\":\"Eine einzelne Frage pro Produkt. Z.B., Welche T-Shirt-Größe haben Sie?\",\"RlJmQg\":\"Eine Standardsteuer wie Mehrwertsteuer oder GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Akzeptieren Sie Banküberweisungen, Schecks oder andere Offline-Zahlungsmethoden\",\"hrvLf4\":\"Akzeptieren Sie Kreditkartenzahlungen über Stripe\",\"bfXQ+N\":\"Einladung annehmen\",\"AeXO77\":\"Konto\",\"lkNdiH\":\"Kontoname\",\"Puv7+X\":\"Account Einstellungen\",\"OmylXO\":\"Konto erfolgreich aktualisiert\",\"7L01XJ\":\"Aktionen\",\"FQBaXG\":\"Aktivieren\",\"5T2HxQ\":\"Aktivierungsdatum\",\"F6pfE9\":\"Aktiv\",\"/PN1DA\":\"Fügen Sie eine Beschreibung für diese Eincheckliste hinzu\",\"0/vPdA\":\"Fügen Sie Anmerkungen über den Teilnehmer hinzu. Diese sind für den Teilnehmer nicht sichtbar.\",\"Or1CPR\":\"Fügen Sie Anmerkungen über den Teilnehmer hinzu...\",\"l3sZO1\":\"Fügen Sie Notizen zur Bestellung hinzu. Diese sind für den Kunden nicht sichtbar.\",\"xMekgu\":\"Fügen Sie Notizen zur Bestellung hinzu...\",\"PGPGsL\":\"Beschreibung hinzufügen\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Fügen Sie Anweisungen für Offline-Zahlungen hinzu (z. B. Überweisungsdetails, wo Schecks hingeschickt werden sollen, Zahlungsfristen)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Neue hinzufügen\",\"TZxnm8\":\"Option hinzufügen\",\"24l4x6\":\"Produkt hinzufügen\",\"8q0EdE\":\"Produkt zur Kategorie hinzufügen\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Steuern oder Gebühren hinzufügen\",\"goOKRY\":\"Ebene hinzufügen\",\"oZW/gT\":\"Zum Kalender hinzufügen\",\"pn5qSs\":\"Zusätzliche Informationen\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adresse\",\"NY/x1b\":\"Anschrift Zeile 1\",\"POdIrN\":\"Anschrift Zeile 1\",\"cormHa\":\"Adresszeile 2\",\"gwk5gg\":\"Adresszeile 2\",\"U3pytU\":\"Administrator\",\"HLDaLi\":\"Administratorbenutzer haben vollständigen Zugriff auf Ereignisse und Kontoeinstellungen.\",\"W7AfhC\":\"Alle Teilnehmer dieser Veranstaltung\",\"cde2hc\":\"Alle Produkte\",\"5CQ+r0\":\"Erlauben Sie Teilnehmern, die mit unbezahlten Bestellungen verbunden sind, einzuchecken\",\"ipYKgM\":\"Suchmaschinenindizierung zulassen\",\"LRbt6D\":\"Suchmaschinen erlauben, dieses Ereignis zu indizieren\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Erstaunlich, Ereignis, Schlüsselwörter...\",\"hehnjM\":\"Betrag\",\"R2O9Rg\":[\"Bezahlter Betrag (\",[\"0\"],\")\"],\"V7MwOy\":\"Beim Laden der Seite ist ein Fehler aufgetreten\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Ein unerwarteter Fehler ist aufgetreten.\",\"byKna+\":\"Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut.\",\"ubdMGz\":\"Alle Anfragen von Produktinhabern werden an diese E-Mail-Adresse gesendet. Diese wird auch als „Antwort-an“-Adresse für alle von dieser Veranstaltung gesendeten E-Mails verwendet.\",\"aAIQg2\":\"Erscheinungsbild\",\"Ym1gnK\":\"angewandt\",\"sy6fss\":[\"Gilt für \",[\"0\"],\" Produkte\"],\"kadJKg\":\"Gilt für 1 Produkt\",\"DB8zMK\":\"Anwenden\",\"GctSSm\":\"Promo-Code anwenden\",\"ARBThj\":[\"Diesen \",[\"type\"],\" auf alle neuen Produkte anwenden\"],\"S0ctOE\":\"Veranstaltung archivieren\",\"TdfEV7\":\"Archiviert\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Möchten Sie diesen Teilnehmer wirklich aktivieren?\",\"TvkW9+\":\"Sind Sie sicher, dass Sie diese Veranstaltung archivieren möchten?\",\"/CV2x+\":\"Möchten Sie diesen Teilnehmer wirklich stornieren? Dadurch wird sein Ticket ungültig.\",\"YgRSEE\":\"Möchten Sie diesen Aktionscode wirklich löschen?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Möchten Sie diese Veranstaltung wirklich als Entwurf speichern? Dadurch wird die Veranstaltung für die Öffentlichkeit unsichtbar.\",\"mEHQ8I\":\"Möchten Sie diese Veranstaltung wirklich öffentlich machen? Dadurch wird die Veranstaltung für die Öffentlichkeit sichtbar\",\"s4JozW\":\"Sind Sie sicher, dass Sie diese Veranstaltung wiederherstellen möchten? Es wird als Entwurf wiederhergestellt.\",\"vJuISq\":\"Sind Sie sicher, dass Sie diese Kapazitätszuweisung löschen möchten?\",\"baHeCz\":\"Möchten Sie diese Eincheckliste wirklich löschen?\",\"LBLOqH\":\"Einmal pro Bestellung anfragen\",\"wu98dY\":\"Einmal pro Produkt fragen\",\"ss9PbX\":\"Teilnehmer\",\"m0CFV2\":\"Teilnehmerdetails\",\"QKim6l\":\"Teilnehmer nicht gefunden\",\"R5IT/I\":\"Teilnehmernotizen\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Teilnehmer-Ticket\",\"9SZT4E\":\"Teilnehmer\",\"iPBfZP\":\"Registrierte Teilnehmer\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatische Größenanpassung\",\"vZ5qKF\":\"Passen Sie die Widget-Höhe automatisch an den Inhalt an. Bei Deaktivierung füllt das Widget die Höhe des Containers aus.\",\"4lVaWA\":\"Warten auf Offline-Zahlung\",\"2rHwhl\":\"Warten auf Offline-Zahlung\",\"3wF4Q/\":\"Zahlung ausstehend\",\"ioG+xt\":\"Zahlung steht aus\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Zurück zur Veranstaltungsseite\",\"VCoEm+\":\"Zurück zur Anmeldung\",\"k1bLf+\":\"Hintergrundfarbe\",\"I7xjqg\":\"Hintergrundtyp\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Rechnungsadresse\",\"/xC/im\":\"Rechnungseinstellungen\",\"rp/zaT\":\"Brasilianisches Portugiesisch\",\"whqocw\":\"Mit der Registrierung stimmen Sie unseren <0>Servicebedingungen und <1>Datenschutzrichtlinie zu.\",\"bcCn6r\":\"Berechnungstyp\",\"+8bmSu\":\"Kalifornien\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Abbrechen\",\"Gjt/py\":\"E-Mail-Änderung abbrechen\",\"tVJk4q\":\"Bestellung stornieren\",\"Os6n2a\":\"Bestellung stornieren\",\"Mz7Ygx\":[\"Bestellung stornieren \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Abgesagt\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Kapazität\",\"V6Q5RZ\":\"Kapazitätszuweisung erfolgreich erstellt\",\"k5p8dz\":\"Kapazitätszuweisung erfolgreich gelöscht\",\"nDBs04\":\"Kapazitätsverwaltung\",\"ddha3c\":\"Kategorien ermöglichen es Ihnen, Produkte zusammenzufassen. Zum Beispiel könnten Sie eine Kategorie für \\\"Tickets\\\" und eine andere für \\\"Merchandise\\\" haben.\",\"iS0wAT\":\"Kategorien helfen Ihnen, Ihre Produkte zu organisieren. Dieser Titel wird auf der öffentlichen Veranstaltungsseite angezeigt.\",\"eorM7z\":\"Kategorien erfolgreich neu geordnet.\",\"3EXqwa\":\"Kategorie erfolgreich erstellt\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Kennwort ändern\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Check-in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Einchecken und Bestellung als bezahlt markieren\",\"QYLpB4\":\"Nur einchecken\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Schau dir dieses Event an!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Eincheckliste erfolgreich gelöscht\",\"+hBhWk\":\"Die Eincheckliste ist abgelaufen\",\"mBsBHq\":\"Die Eincheckliste ist nicht aktiv\",\"vPqpQG\":\"Eincheckliste nicht gefunden\",\"tejfAy\":\"Einchecklisten\",\"hD1ocH\":\"Eincheck-URL in die Zwischenablage kopiert\",\"CNafaC\":\"Kontrollkästchenoptionen ermöglichen Mehrfachauswahl\",\"SpabVf\":\"Kontrollkästchen\",\"CRu4lK\":\"Eingecheckt\",\"znIg+z\":\"Zur Kasse\",\"1WnhCL\":\"Checkout-Einstellungen\",\"6imsQS\":\"Vereinfachtes Chinesisch\",\"JjkX4+\":\"Wählen Sie eine Farbe für Ihren Hintergrund\",\"/Jizh9\":\"Wähle einen Account\",\"3wV73y\":\"Stadt\",\"FG98gC\":\"Suchtext löschen\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Zum Kopieren klicken\",\"yz7wBu\":\"Schließen\",\"62Ciis\":\"Sidebar schließen\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Der Code muss zwischen 3 und 50 Zeichen lang sein\",\"oqr9HB\":\"Dieses Produkt einklappen, wenn die Veranstaltungsseite initial geladen wird\",\"jZlrte\":\"Farbe\",\"Vd+LC3\":\"Die Farbe muss ein gültiger Hex-Farbcode sein. Beispiel: #ffffff\",\"1HfW/F\":\"Farben\",\"VZeG/A\":\"Demnächst\",\"yPI7n9\":\"Durch Kommas getrennte Schlüsselwörter, die das Ereignis beschreiben. Diese werden von Suchmaschinen verwendet, um das Ereignis zu kategorisieren und zu indizieren.\",\"NPZqBL\":\"Bestellung abschließen\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Jetzt bezahlen\",\"qqWcBV\":\"Vollendet\",\"6HK5Ct\":\"Abgeschlossene Bestellungen\",\"NWVRtl\":\"Abgeschlossene Bestellungen\",\"DwF9eH\":\"Komponentencode\",\"Tf55h7\":\"Konfigurierter Rabatt\",\"7VpPHA\":\"Bestätigen\",\"ZaEJZM\":\"E-Mail-Änderung bestätigen\",\"yjkELF\":\"Bestätige neues Passwort\",\"xnWESi\":\"Bestätige das Passwort\",\"p2/GCq\":\"Bestätige das Passwort\",\"wnDgGj\":\"E-Mail-Adresse wird bestätigt …\",\"pbAk7a\":\"Stripe verbinden\",\"UMGQOh\":\"Mit Stripe verbinden\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Verbindungsdetails\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Weitermachen\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Text für Weiter-Schaltfläche\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Kopiert\",\"T5rdis\":\"in die Zwischenablage kopiert\",\"he3ygx\":\"Kopieren\",\"r2B2P8\":\"Eincheck-URL kopieren\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Link kopieren\",\"E6nRW7\":\"URL kopieren\",\"JNCzPW\":\"Land\",\"IF7RiR\":\"Abdeckung\",\"hYgDIe\":\"Erstellen\",\"b9XOHo\":[\"Erstellen Sie \",[\"0\"]],\"k9RiLi\":\"Ein Produkt erstellen\",\"6kdXbW\":\"Einen Promo-Code erstellen\",\"n5pRtF\":\"Ticket erstellen\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"einen Organizer erstellen\",\"ipP6Ue\":\"Teilnehmer erstellen\",\"VwdqVy\":\"Kapazitätszuweisung erstellen\",\"EwoMtl\":\"Kategorie erstellen\",\"XletzW\":\"Kategorie erstellen\",\"WVbTwK\":\"Eincheckliste erstellen\",\"uN355O\":\"Ereignis erstellen\",\"BOqY23\":\"Neu erstellen\",\"kpJAeS\":\"Organizer erstellen\",\"a0EjD+\":\"Produkt erstellen\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Promo-Code erstellen\",\"B3Mkdt\":\"Frage erstellen\",\"UKfi21\":\"Steuer oder Gebühr erstellen\",\"d+F6q9\":\"Erstellt\",\"Q2lUR2\":\"Währung\",\"DCKkhU\":\"Aktuelles Passwort\",\"uIElGP\":\"Benutzerdefinierte Karten-URL\",\"UEqXyt\":\"Benutzerdefinierter Bereich\",\"876pfE\":\"Kunde\",\"QOg2Sf\":\"Passen Sie die E-Mail- und Benachrichtigungseinstellungen für dieses Ereignis an\",\"Y9Z/vP\":\"Passen Sie die Startseite der Veranstaltung und die Nachrichten an der Kasse an\",\"2E2O5H\":\"Passen Sie die sonstigen Einstellungen für dieses Ereignis an\",\"iJhSxe\":\"Passen Sie die SEO-Einstellungen für dieses Event an\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Gefahrenzone\",\"ZQKLI1\":\"Gefahrenzone\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Datum\",\"JvUngl\":\"Datum & Zeit\",\"JJhRbH\":\"Kapazität am ersten Tag\",\"cnGeoo\":\"Löschen\",\"jRJZxD\":\"Kapazität löschen\",\"VskHIx\":\"Kategorie löschen\",\"Qrc8RZ\":\"Eincheckliste löschen\",\"WHf154\":\"Code löschen\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Beschreibung\",\"YC3oXa\":\"Beschreibung für das Eincheckpersonal\",\"URmyfc\":\"Einzelheiten\",\"1lRT3t\":\"Das Deaktivieren dieser Kapazität wird Verkäufe verfolgen, aber nicht stoppen, wenn das Limit erreicht ist\",\"H6Ma8Z\":\"Rabatt\",\"ypJ62C\":\"Rabatt %\",\"3LtiBI\":[\"Rabatt in \",[\"0\"]],\"C8JLas\":\"Rabattart\",\"1QfxQT\":\"Schließen\",\"DZlSLn\":\"Dokumentenbeschriftung\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Spende / Produkt mit freier Preiswahl\",\"OvNbls\":\".ics herunterladen\",\"kodV18\":\"CSV herunterladen\",\"CELKku\":\"Rechnung herunterladen\",\"LQrXcu\":\"Rechnung herunterladen\",\"QIodqd\":\"QR-Code herunterladen\",\"yhjU+j\":\"Rechnung wird heruntergeladen\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Dropdown-Auswahl\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Ereignis duplizieren\",\"3ogkAk\":\"Ereignis duplizieren\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Optionen duplizieren\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Früher Vogel\",\"ePK91l\":\"Bearbeiten\",\"N6j2JH\":[\"Bearbeiten \",[\"0\"]],\"kBkYSa\":\"Kapazität bearbeiten\",\"oHE9JT\":\"Kapazitätszuweisung bearbeiten\",\"j1Jl7s\":\"Kategorie bearbeiten\",\"FU1gvP\":\"Eincheckliste bearbeiten\",\"iFgaVN\":\"Code bearbeiten\",\"jrBSO1\":\"Organisator bearbeiten\",\"tdD/QN\":\"Produkt bearbeiten\",\"n143Tq\":\"Produktkategorie bearbeiten\",\"9BdS63\":\"Aktionscode bearbeiten\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Frage bearbeiten\",\"poTr35\":\"Benutzer bearbeiten\",\"GTOcxw\":\"Benutzer bearbeiten\",\"pqFrv2\":\"z.B. 2,50 für 2,50 $\",\"3yiej1\":\"z.B. 23,5 für 23,5 %\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"E-Mail- und Benachrichtigungseinstellungen\",\"ATGYL1\":\"E-Mail-Adresse\",\"hzKQCy\":\"E-Mail-Adresse\",\"HqP6Qf\":\"E-Mail-Änderung erfolgreich abgebrochen\",\"mISwW1\":\"E-Mail-Änderung ausstehend\",\"APuxIE\":\"E-Mail-Bestätigung erneut gesendet\",\"YaCgdO\":\"E-Mail-Bestätigung erfolgreich erneut gesendet\",\"jyt+cx\":\"E-Mail-Fußzeilennachricht\",\"I6F3cp\":\"E-Mail nicht verifiziert\",\"NTZ/NX\":\"Einbettungscode\",\"4rnJq4\":\"Einbettungsskript\",\"8oPbg1\":\"Rechnungsstellung aktivieren\",\"j6w7d/\":\"Aktivieren Sie diese Kapazität, um den Produktverkauf zu stoppen, wenn das Limit erreicht ist\",\"VFv2ZC\":\"Enddatum\",\"237hSL\":\"Beendet\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Englisch\",\"MhVoma\":\"Geben Sie einen Betrag ohne Steuern und Gebühren ein.\",\"SlfejT\":\"Fehler\",\"3Z223G\":\"Fehler beim Bestätigen der E-Mail-Adresse\",\"a6gga1\":\"Fehler beim Bestätigen der E-Mail-Änderung\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Ereignis\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Veranstaltungsdatum\",\"0Zptey\":\"Ereignisstandards\",\"QcCPs8\":\"Veranstaltungsdetails\",\"6fuA9p\":\"Ereignis erfolgreich dupliziert\",\"AEuj2m\":\"Veranstaltungsstartseite\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Veranstaltungsort & Details zum Veranstaltungsort\",\"OopDbA\":\"Event page\",\"4/If97\":\"Die Aktualisierung des Ereignisstatus ist fehlgeschlagen. Bitte versuchen Sie es später erneut\",\"btxLWj\":\"Veranstaltungsstatus aktualisiert\",\"nMU2d3\":\"Veranstaltungs-URL\",\"tst44n\":\"Veranstaltungen\",\"sZg7s1\":\"Ablaufdatum\",\"KnN1Tu\":\"Läuft ab\",\"uaSvqt\":\"Verfallsdatum\",\"GS+Mus\":\"Export\",\"9xAp/j\":\"Teilnehmer konnte nicht abgesagt werden\",\"ZpieFv\":\"Stornierung der Bestellung fehlgeschlagen\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Rechnung konnte nicht heruntergeladen werden. Bitte versuchen Sie es erneut.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Laden der Eincheckliste fehlgeschlagen\",\"ZQ15eN\":\"Ticket-E-Mail konnte nicht erneut gesendet werden\",\"ejXy+D\":\"Produkte konnten nicht sortiert werden\",\"PLUB/s\":\"Gebühr\",\"/mfICu\":\"Gebühren\",\"LyFC7X\":\"Bestellungen filtern\",\"cSev+j\":\"Filter\",\"CVw2MU\":[\"Filter (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Erste Rechnungsnummer\",\"V1EGGU\":\"Vorname\",\"kODvZJ\":\"Vorname\",\"S+tm06\":\"Der Vorname muss zwischen 1 und 50 Zeichen lang sein\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Erstmals verwendet\",\"TpqW74\":\"Fest\",\"irpUxR\":\"Fester Betrag\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Passwort vergessen?\",\"2POOFK\":\"Frei\",\"P/OAYJ\":\"Kostenloses Produkt\",\"vAbVy9\":\"Kostenloses Produkt, keine Zahlungsinformationen erforderlich\",\"nLC6tu\":\"Französisch\",\"Weq9zb\":\"Allgemein\",\"DDcvSo\":\"Deutsch\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Zurück zum Profil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Kalender\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Bruttoumsatz\",\"yRg26W\":\"Bruttoverkäufe\",\"R4r4XO\":\"Gäste\",\"26pGvx\":\"Haben Sie einen Promo-Code?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Hier ist ein Beispiel, wie Sie die Komponente in Ihrer Anwendung verwenden können.\",\"Y1SSqh\":\"Hier ist die React-Komponente, die Sie verwenden können, um das Widget in Ihre Anwendung einzubetten.\",\"QuhVpV\":[\"Hallo \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Vor der Öffentlichkeit verborgen\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Versteckte Fragen sind nur für den Veranstalter und nicht für den Kunden sichtbar.\",\"vLyv1R\":\"Verstecken\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Produkt nach Verkaufsenddatum ausblenden\",\"06s3w3\":\"Produkt vor Verkaufsstartdatum ausblenden\",\"axVMjA\":\"Produkt ausblenden, es sei denn, der Benutzer hat einen gültigen Promo-Code\",\"ySQGHV\":\"Produkt bei Ausverkauf ausblenden\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Dieses Produkt vor Kunden verbergen\",\"Da29Y6\":\"Diese Frage verbergen\",\"fvDQhr\":\"Diese Ebene vor Benutzern verbergen\",\"lNipG+\":\"Das Ausblenden eines Produkts verhindert, dass Benutzer es auf der Veranstaltungsseite sehen.\",\"ZOBwQn\":\"Homepage-Design\",\"PRuBTd\":\"Homepage-Designer\",\"YjVNGZ\":\"Homepage-Vorschau\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Wie viele Minuten hat der Kunde Zeit, um seine Bestellung abzuschließen. Wir empfehlen mindestens 15 Minuten\",\"ySxKZe\":\"Wie oft kann dieser Code verwendet werden?\",\"dZsDbK\":[\"HTML-Zeichenlimit überschritten: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Ich stimme den <0>Allgemeinen Geschäftsbedingungen zu\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Wenn aktiviert, kann das Check-in-Personal Teilnehmer entweder als eingecheckt markieren oder die Bestellung als bezahlt markieren und die Teilnehmer einchecken. Wenn deaktiviert, können Teilnehmer mit unbezahlten Bestellungen nicht eingecheckt werden.\",\"muXhGi\":\"Wenn aktiviert, erhält der Veranstalter eine E-Mail-Benachrichtigung, wenn eine neue Bestellung aufgegeben wird\",\"6fLyj/\":\"Sollten Sie diese Änderung nicht veranlasst haben, ändern Sie bitte umgehend Ihr Passwort.\",\"n/ZDCz\":\"Bild erfolgreich gelöscht\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Bild erfolgreich hochgeladen\",\"VyUuZb\":\"Bild-URL\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inaktiv\",\"T0K0yl\":\"Inaktive Benutzer können sich nicht anmelden.\",\"kO44sp\":\"Fügen Sie Verbindungsdetails für Ihr Online-Event hinzu. Diese Details werden auf der Bestellübersichtsseite und der Teilnehmer-Ticketseite angezeigt.\",\"FlQKnG\":\"Steuern und Gebühren im Preis einbeziehen\",\"Vi+BiW\":[\"Beinhaltet \",[\"0\"],\" Produkte\"],\"lpm0+y\":\"Beinhaltet 1 Produkt\",\"UiAk5P\":\"Bild einfügen\",\"OyLdaz\":\"Einladung erneut verschickt!\",\"HE6KcK\":\"Einladung widerrufen!\",\"SQKPvQ\":\"Benutzer einladen\",\"bKOYkd\":\"Rechnung erfolgreich heruntergeladen\",\"alD1+n\":\"Rechnungsnotizen\",\"kOtCs2\":\"Rechnungsnummerierung\",\"UZ2GSZ\":\"Rechnungseinstellungen\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Artikel\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etikett\",\"vXIe7J\":\"Sprache\",\"2LMsOq\":\"Letzte 12 Monate\",\"vfe90m\":\"Letzte 14 Tage\",\"aK4uBd\":\"Letzte 24 Stunden\",\"uq2BmQ\":\"Letzte 30 Tage\",\"bB6Ram\":\"Letzte 48 Stunden\",\"VlnB7s\":\"Letzte 6 Monate\",\"ct2SYD\":\"Letzte 7 Tage\",\"XgOuA7\":\"Letzte 90 Tage\",\"I3yitW\":\"Letzte Anmeldung\",\"1ZaQUH\":\"Nachname\",\"UXBCwc\":\"Nachname\",\"tKCBU0\":\"Zuletzt verwendet\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Leer lassen, um das Standardwort \\\"Rechnung\\\" zu verwenden\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Wird geladen...\",\"wJijgU\":\"Standort\",\"sQia9P\":\"Anmelden\",\"zUDyah\":\"Einloggen\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Ausloggen\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Rechnungsadresse beim Checkout erforderlich machen\",\"MU3ijv\":\"Machen Sie diese Frage obligatorisch\",\"wckWOP\":\"Verwalten\",\"onpJrA\":\"Teilnehmer verwalten\",\"n4SpU5\":\"Veranstaltung verwalten\",\"WVgSTy\":\"Bestellung verwalten\",\"1MAvUY\":\"Zahlungs- und Rechnungseinstellungen für diese Veranstaltung verwalten.\",\"cQrNR3\":\"Profil verwalten\",\"AtXtSw\":\"Verwalten Sie Steuern und Gebühren, die auf Ihre Produkte angewendet werden können\",\"ophZVW\":\"Tickets verwalten\",\"DdHfeW\":\"Verwalten Sie Ihre Kontodetails und Standardeinstellungen\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Verwalten Sie Ihre Benutzer und deren Berechtigungen\",\"1m+YT2\":\"Bevor der Kunde zur Kasse gehen kann, müssen obligatorische Fragen beantwortet werden.\",\"Dim4LO\":\"Einen Teilnehmer manuell hinzufügen\",\"e4KdjJ\":\"Teilnehmer manuell hinzufügen\",\"vFjEnF\":\"Als bezahlt markieren\",\"g9dPPQ\":\"Maximal pro Bestellung\",\"l5OcwO\":\"Nachricht an Teilnehmer\",\"Gv5AMu\":\"Nachrichten an Teilnehmer senden\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Nachricht an den Käufer\",\"tNZzFb\":\"Nachrichteninhalt\",\"lYDV/s\":\"Nachrichten an einzelne Teilnehmer senden\",\"V7DYWd\":\"Nachricht gesendet\",\"t7TeQU\":\"Mitteilungen\",\"xFRMlO\":\"Mindestbestellwert\",\"QYcUEf\":\"Minimaler Preis\",\"RDie0n\":\"Sonstiges\",\"mYLhkl\":\"Verschiedene Einstellungen\",\"KYveV8\":\"Mehrzeiliges Textfeld\",\"VD0iA7\":\"Mehrere Preisoptionen. Perfekt für Frühbucherprodukte usw.\",\"/bhMdO\":\"Meine tolle Eventbeschreibung...\",\"vX8/tc\":\"Mein toller Veranstaltungstitel …\",\"hKtWk2\":\"Mein Profil\",\"fj5byd\":\"N/V\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigieren Sie zu Teilnehmer\",\"qqeAJM\":\"Niemals\",\"7vhWI8\":\"Neues Kennwort\",\"1UzENP\":\"Nein\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Keine archivierten Veranstaltungen anzuzeigen.\",\"q2LEDV\":\"Für diese Bestellung wurden keine Teilnehmer gefunden.\",\"zlHa5R\":\"Zu dieser Bestellung wurden keine Teilnehmer hinzugefügt.\",\"Wjz5KP\":\"Keine Teilnehmer zum Anzeigen\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Keine Kapazitätszuweisungen\",\"a/gMx2\":\"Keine Einchecklisten\",\"tMFDem\":\"Keine Daten verfügbar\",\"6Z/F61\":\"Keine Daten verfügbar. Bitte wählen Sie einen Datumsbereich aus.\",\"fFeCKc\":\"Kein Rabatt\",\"HFucK5\":\"Keine beendeten Veranstaltungen anzuzeigen.\",\"yAlJXG\":\"Keine Ereignisse zum Anzeigen\",\"GqvPcv\":\"Keine Filter verfügbar\",\"KPWxKD\":\"Keine Nachrichten zum Anzeigen\",\"J2LkP8\":\"Keine Bestellungen anzuzeigen\",\"RBXXtB\":\"Derzeit sind keine Zahlungsmethoden verfügbar. Bitte wenden Sie sich an den Veranstalter, um Unterstützung zu erhalten.\",\"ZWEfBE\":\"Keine Zahlung erforderlich\",\"ZPoHOn\":\"Kein Produkt mit diesem Teilnehmer verknüpft.\",\"Ya1JhR\":\"Keine Produkte in dieser Kategorie verfügbar.\",\"FTfObB\":\"Noch keine Produkte\",\"+Y976X\":\"Keine Promo-Codes anzuzeigen\",\"MAavyl\":\"Dieser Teilnehmer hat keine Fragen beantwortet.\",\"SnlQeq\":\"Für diese Bestellung wurden keine Fragen gestellt.\",\"Ev2r9A\":\"Keine Ergebnisse\",\"gk5uwN\":\"Keine Suchergebnisse\",\"RHyZUL\":\"Keine Suchergebnisse.\",\"RY2eP1\":\"Es wurden keine Steuern oder Gebühren hinzugefügt.\",\"EdQY6l\":\"Keine\",\"OJx3wK\":\"Nicht verfügbar\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notizen\",\"jtrY3S\":\"Noch nichts zu zeigen\",\"hFwWnI\":\"Benachrichtigungseinstellungen\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Veranstalter über neue Bestellungen benachrichtigen\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Anzahl der für die Zahlung zulässigen Tage (leer lassen, um Zahlungsbedingungen auf Rechnungen wegzulassen)\",\"n86jmj\":\"Nummernpräfix\",\"mwe+2z\":\"Offline-Bestellungen werden in der Veranstaltungsstatistik erst berücksichtigt, wenn die Bestellung als bezahlt markiert wurde.\",\"dWBrJX\":\"Offline-Zahlung fehlgeschlagen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Veranstalter.\",\"fcnqjw\":\"Offline-Zahlungsanweisungen\",\"+eZ7dp\":\"Offline-Zahlungen\",\"ojDQlR\":\"Informationen zu Offline-Zahlungen\",\"u5oO/W\":\"Einstellungen für Offline-Zahlungen\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"Im Angebot\",\"Ug4SfW\":\"Sobald Sie ein Ereignis erstellt haben, wird es hier angezeigt.\",\"ZxnK5C\":\"Sobald Sie Daten sammeln, werden sie hier angezeigt.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Laufend\",\"z+nuVJ\":\"Online-Veranstaltung\",\"WKHW0N\":\"Details zur Online-Veranstaltung\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Check-In-Seite öffnen\",\"OdnLE4\":\"Seitenleiste öffnen\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"oPknTP\":\"Optionale zusätzliche Informationen, die auf allen Rechnungen erscheinen (z. B. Zahlungsbedingungen, Gebühren für verspätete Zahlungen, Rückgaberichtlinien)\",\"OrXJBY\":\"Optionales Präfix für Rechnungsnummern (z. B. INV-)\",\"0zpgxV\":\"Optionen\",\"BzEFor\":\"oder\",\"UYUgdb\":\"Befehl\",\"mm+eaX\":\"Bestellung #\",\"B3gPuX\":\"Bestellung storniert\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Auftragsdatum\",\"Tol4BF\":\"Bestelldetails\",\"WbImlQ\":\"Die Bestellung wurde storniert und der Bestellinhaber wurde benachrichtigt.\",\"nAn4Oe\":\"Bestellung als bezahlt markiert\",\"uzEfRz\":\"Bestellnotizen\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Bestellnummer\",\"acIJ41\":\"Bestellstatus\",\"GX6dZv\":\"Bestellübersicht\",\"tDTq0D\":\"Bestell-Timeout\",\"1h+RBg\":\"Aufträge\",\"3y+V4p\":\"Organisationsadresse\",\"GVcaW6\":\"Organisationsdetails\",\"nfnm9D\":\"Organisationsname\",\"G5RhpL\":\"Veranstalter\",\"mYygCM\":\"Veranstalter ist erforderlich\",\"Pa6G7v\":\"Name des Organisators\",\"l894xP\":\"Organisatoren können nur Veranstaltungen und Produkte verwalten. Sie können keine Benutzer, Kontoeinstellungen oder Abrechnungsinformationen verwalten.\",\"fdjq4c\":\"Innenabstand\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Seite nicht gefunden\",\"QbrUIo\":\"Seitenaufrufe\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"bezahlt\",\"HVW65c\":\"Bezahltes Produkt\",\"ZfxaB4\":\"Teilweise erstattet\",\"8ZsakT\":\"Passwort\",\"TUJAyx\":\"Das Passwort muss mindestens 8 Zeichen lang sein\",\"vwGkYB\":\"Das Passwort muss mindestens 8 Zeichen lang sein\",\"BLTZ42\":\"Passwort erfolgreich zurückgesetzt. Bitte melden Sie sich mit Ihrem neuen Passwort an.\",\"f7SUun\":\"Passwörter sind nicht gleich\",\"aEDp5C\":\"Fügen Sie dies dort ein, wo das Widget erscheinen soll.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Zahlung\",\"Lg+ewC\":\"Zahlung & Rechnungsstellung\",\"DZjk8u\":\"Einstellungen für Zahlung & Rechnungsstellung\",\"lflimf\":\"Zahlungsfrist\",\"JhtZAK\":\"Bezahlung fehlgeschlagen\",\"JEdsvQ\":\"Zahlungsanweisungen\",\"bLB3MJ\":\"Zahlungsmethoden\",\"QzmQBG\":\"Zahlungsanbieter\",\"lsxOPC\":\"Zahlung erhalten\",\"wJTzyi\":\"Zahlungsstatus\",\"xgav5v\":\"Zahlung erfolgreich abgeschlossen!\",\"R29lO5\":\"Zahlungsbedingungen\",\"/roQKz\":\"Prozentsatz\",\"vPJ1FI\":\"Prozentualer Betrag\",\"xdA9ud\":\"Platzieren Sie dies im Ihrer Website.\",\"blK94r\":\"Bitte fügen Sie mindestens eine Option hinzu\",\"FJ9Yat\":\"Bitte überprüfen Sie, ob die angegebenen Informationen korrekt sind\",\"TkQVup\":\"Bitte überprüfen Sie Ihre E-Mail und Ihr Passwort und versuchen Sie es erneut\",\"sMiGXD\":\"Bitte überprüfen Sie, ob Ihre E-Mail gültig ist\",\"Ajavq0\":\"Bitte überprüfen Sie Ihre E-Mail, um Ihre E-Mail-Adresse zu bestätigen\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Bitte fahren Sie im neuen Tab fort\",\"hcX103\":\"Bitte erstellen Sie ein Produkt\",\"cdR8d6\":\"Bitte erstellen Sie ein Ticket\",\"x2mjl4\":\"Bitte geben Sie eine gültige Bild-URL ein, die auf ein Bild verweist.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Bitte beachten Sie\",\"C63rRe\":\"Bitte kehre zur Veranstaltungsseite zurück, um neu zu beginnen.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Bitte wählen Sie mindestens ein Produkt aus\",\"igBrCH\":\"Bitte bestätigen Sie Ihre E-Mail-Adresse, um auf alle Funktionen zugreifen zu können\",\"/IzmnP\":\"Bitte warten Sie, während wir Ihre Rechnung vorbereiten...\",\"MOERNx\":\"Portugiesisch\",\"qCJyMx\":\"Checkout-Nachricht veröffentlichen\",\"g2UNkE\":\"Powered by\",\"Rs7IQv\":\"Nachricht vor dem Checkout\",\"rdUucN\":\"Vorschau\",\"a7u1N9\":\"Preis\",\"CmoB9j\":\"Preisanzeigemodus\",\"BI7D9d\":\"Preis nicht festgelegt\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Preistyp\",\"6RmHKN\":\"Primärfarbe\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primäre Textfarbe\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Alle Tickets ausdrucken\",\"DKwDdj\":\"Tickets drucken\",\"K47k8R\":\"Produkt\",\"1JwlHk\":\"Produktkategorie\",\"U61sAj\":\"Produktkategorie erfolgreich aktualisiert.\",\"1USFWA\":\"Produkt erfolgreich gelöscht\",\"4Y2FZT\":\"Produktpreistyp\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Produktverkäufe\",\"U/R4Ng\":\"Produktebene\",\"sJsr1h\":\"Produkttyp\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produkt(e)\",\"N0qXpE\":\"Produkte\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Verkaufte Produkte\",\"/u4DIx\":\"Verkaufte Produkte\",\"DJQEZc\":\"Produkte erfolgreich sortiert\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil erfolgreich aktualisiert\",\"cl5WYc\":[\"Aktionscode \",[\"promo_code\"],\" angewendet\"],\"P5sgAk\":\"Aktionscode\",\"yKWfjC\":\"Aktionscode-Seite\",\"RVb8Fo\":\"Promo-Codes\",\"BZ9GWa\":\"Mit Promo-Codes können Sie Rabatte oder Vorverkaufszugang anbieten oder Sonderzugang zu Ihrer Veranstaltung gewähren.\",\"OP094m\":\"Bericht zu Aktionscodes\",\"4kyDD5\":\"Geben Sie zusätzlichen Kontext oder Anweisungen zu dieser Frage an. Verwenden Sie dieses Feld, um Geschäftsbedingungen,\\nRichtlinien oder wichtige Informationen hinzuzufügen, die Teilnehmer vor der Beantwortung kennen müssen.\",\"toutGW\":\"QR-Code\",\"LkMOWF\":\"Verfügbare Menge\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Frage gelöscht\",\"avf0gk\":\"Fragebeschreibung\",\"oQvMPn\":\"Fragentitel\",\"enzGAL\":\"Fragen\",\"ROv2ZT\":\"Fragen & Antworten\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio-Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Empfänger\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Rückerstattung fehlgeschlagen\",\"n10yGu\":\"Rückerstattungsauftrag\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Rückerstattung ausstehend\",\"xHpVRl\":\"Rückerstattungsstatus\",\"/BI0y9\":\"Rückerstattung\",\"fgLNSM\":\"Registrieren\",\"9+8Vez\":\"Verbleibende Verwendungen\",\"tasfos\":\"entfernen\",\"t/YqKh\":\"Entfernen\",\"t9yxlZ\":\"Berichte\",\"prZGMe\":\"Rechnungsadresse erforderlich\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"E-Mail-Bestätigung erneut senden\",\"wIa8Qe\":\"Einladung erneut versenden\",\"VeKsnD\":\"Bestell-E-Mail erneut senden\",\"dFuEhO\":\"Ticket-E-Mail erneut senden\",\"o6+Y6d\":\"Erneut senden...\",\"OfhWJH\":\"Zurücksetzen\",\"RfwZxd\":\"Passwort zurücksetzen\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Veranstaltung wiederherstellen\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Zur Veranstaltungsseite zurückkehren\",\"8YBH95\":\"Einnahmen\",\"PO/sOY\":\"Einladung widerrufen\",\"GDvlUT\":\"Rolle\",\"ELa4O9\":\"Verkaufsende\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Verkaufsstartdatum\",\"hBsw5C\":\"Verkauf beendet\",\"kpAzPe\":\"Verkaufsstart\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Speichern\",\"IUwGEM\":\"Änderungen speichern\",\"U65fiW\":\"Organizer speichern\",\"UGT5vp\":\"Einstellungen speichern\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Suche nach Teilnehmername, E-Mail oder Bestellnummer ...\",\"+pr/FY\":\"Suche nach Veranstaltungsnamen...\",\"3zRbWw\":\"Suchen Sie nach Namen, E-Mail oder Bestellnummer ...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Suche mit Name...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Kapazitätszuweisungen suchen...\",\"r9M1hc\":\"Einchecklisten durchsuchen...\",\"+0Yy2U\":\"Produkte suchen\",\"YIix5Y\":\"Suchen...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Sekundärfarbe\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Sekundäre Textfarbe\",\"02ePaq\":[[\"0\"],\" auswählen\"],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Kategorie auswählen...\",\"kWI/37\":\"Veranstalter auswählen\",\"ixIx1f\":\"Produkt auswählen\",\"3oSV95\":\"Produktebene auswählen\",\"C4Y1hA\":\"Produkte auswählen\",\"hAjDQy\":\"Status auswählen\",\"QYARw/\":\"Ticket auswählen\",\"OMX4tH\":\"Tickets auswählen\",\"DrwwNd\":\"Zeitraum auswählen\",\"O/7I0o\":\"Wählen...\",\"JlFcis\":\"Schicken\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Eine Nachricht schicken\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Nachricht Senden\",\"D7ZemV\":\"Bestellbestätigung und Ticket-E-Mail senden\",\"v1rRtW\":\"Test senden\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO-Beschreibung\",\"/SIY6o\":\"SEO-Schlüsselwörter\",\"GfWoKv\":\"SEO-Einstellungen\",\"rXngLf\":\"SEO-Titel\",\"/jZOZa\":\"Servicegebühr\",\"Bj/QGQ\":\"Legen Sie einen Mindestpreis fest und lassen Sie die Nutzer mehr zahlen, wenn sie wollen.\",\"L0pJmz\":\"Legen Sie die Startnummer für die Rechnungsnummerierung fest. Dies kann nicht geändert werden, sobald Rechnungen generiert wurden.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Einstellungen\",\"Z8lGw6\":\"Teilen\",\"B2V3cA\":\"Veranstaltung teilen\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Verfügbare Produktmenge anzeigen\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Zeig mehr\",\"izwOOD\":\"Steuern und Gebühren separat ausweisen\",\"1SbbH8\":\"Wird dem Kunden nach dem Checkout auf der Bestellübersichtsseite angezeigt.\",\"YfHZv0\":\"Wird dem Kunden vor dem Bezahlvorgang angezeigt\",\"CBBcly\":\"Zeigt allgemeine Adressfelder an, einschließlich Land\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Einzeiliges Textfeld\",\"+P0Cn2\":\"Überspringe diesen Schritt\",\"YSEnLE\":\"Schmied\",\"lgFfeO\":\"Ausverkauft\",\"Mi1rVn\":\"Ausverkauft\",\"nwtY4N\":\"Etwas ist schiefgelaufen\",\"GRChTw\":\"Beim Löschen der Steuer oder Gebühr ist ein Fehler aufgetreten\",\"YHFrbe\":\"Etwas ist schief gelaufen. Bitte versuche es erneut\",\"kf83Ld\":\"Etwas ist schief gelaufen.\",\"fWsBTs\":\"Etwas ist schief gelaufen. Bitte versuche es erneut.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Dieser Aktionscode wird leider nicht erkannt\",\"65A04M\":\"Spanisch\",\"mFuBqb\":\"Standardprodukt mit festem Preis\",\"D3iCkb\":\"Startdatum\",\"/2by1f\":\"Staat oder Region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe-Zahlungen sind für diese Veranstaltung nicht aktiviert.\",\"UJmAAK\":\"Thema\",\"X2rrlw\":\"Zwischensumme\",\"zzDlyQ\":\"Erfolg\",\"b0HJ45\":[\"Erfolgreich! \",[\"0\"],\" erhält in Kürze eine E-Mail.\"],\"BJIEiF\":[\"Erfolgreich \",[\"0\"],\" Teilnehmer\"],\"OtgNFx\":\"E-Mail-Adresse erfolgreich bestätigt\",\"IKwyaF\":\"E-Mail-Änderung erfolgreich bestätigt\",\"zLmvhE\":\"Teilnehmer erfolgreich erstellt\",\"gP22tw\":\"Produkt erfolgreich erstellt\",\"9mZEgt\":\"Promo-Code erfolgreich erstellt\",\"aIA9C4\":\"Frage erfolgreich erstellt\",\"J3RJSZ\":\"Teilnehmer erfolgreich aktualisiert\",\"3suLF0\":\"Kapazitätszuweisung erfolgreich aktualisiert\",\"Z+rnth\":\"Eincheckliste erfolgreich aktualisiert\",\"vzJenu\":\"E-Mail-Einstellungen erfolgreich aktualisiert\",\"7kOMfV\":\"Ereignis erfolgreich aktualisiert\",\"G0KW+e\":\"Erfolgreich aktualisiertes Homepage-Design\",\"k9m6/E\":\"Homepage-Einstellungen erfolgreich aktualisiert\",\"y/NR6s\":\"Standort erfolgreich aktualisiert\",\"73nxDO\":\"Verschiedene Einstellungen erfolgreich aktualisiert\",\"4H80qv\":\"Bestellung erfolgreich aktualisiert\",\"6xCBVN\":\"Einstellungen für Zahlung & Rechnungsstellung erfolgreich aktualisiert\",\"1Ycaad\":\"Produkt erfolgreich aktualisiert\",\"70dYC8\":\"Promo-Code erfolgreich aktualisiert\",\"F+pJnL\":\"SEO-Einstellungen erfolgreich aktualisiert\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support-E-Mail\",\"uRfugr\":\"T-Shirt\",\"JpohL9\":\"Steuer\",\"geUFpZ\":\"Steuern & Gebühren\",\"dFHcIn\":\"Steuerdetails\",\"wQzCPX\":\"Steuerinformationen, die unten auf allen Rechnungen erscheinen sollen (z. B. USt-Nummer, Steuerregistrierung)\",\"0RXCDo\":\"Steuer oder Gebühr erfolgreich gelöscht\",\"ZowkxF\":\"Steuern\",\"qu6/03\":\"Steuern und Gebühren\",\"gypigA\":\"Dieser Aktionscode ist ungültig\",\"5ShqeM\":\"Die gesuchte Eincheckliste existiert nicht.\",\"QXlz+n\":\"Die Standardwährung für Ihre Ereignisse.\",\"mnafgQ\":\"Die Standardzeitzone für Ihre Ereignisse.\",\"o7s5FA\":\"Die Sprache, in der der Teilnehmer die E-Mails erhalten soll.\",\"NlfnUd\":\"Der Link, auf den Sie geklickt haben, ist ungültig.\",\"HsFnrk\":[\"Die maximale Anzahl an Produkten für \",[\"0\"],\" ist \",[\"1\"]],\"TSAiPM\":\"Die gesuchte Seite existiert nicht\",\"MSmKHn\":\"Der dem Kunden angezeigte Preis versteht sich inklusive Steuern und Gebühren.\",\"6zQOg1\":\"Der dem Kunden angezeigte Preis enthält keine Steuern und Gebühren. Diese werden separat ausgewiesen\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Der Titel der Veranstaltung, der in Suchmaschinenergebnissen und beim Teilen in sozialen Medien angezeigt wird. Standardmäßig wird der Veranstaltungstitel verwendet\",\"wDx3FF\":\"Für diese Veranstaltung sind keine Produkte verfügbar\",\"pNgdBv\":\"In dieser Kategorie sind keine Produkte verfügbar\",\"rMcHYt\":\"Eine Rückerstattung steht aus. Bitte warten Sie, bis der Vorgang abgeschlossen ist, bevor Sie eine weitere Rückerstattung anfordern.\",\"F89D36\":\"Beim Markieren der Bestellung als bezahlt ist ein Fehler aufgetreten\",\"68Axnm\":\"Bei der Bearbeitung Ihrer Anfrage ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\",\"mVKOW6\":\"Beim Senden Ihrer Nachricht ist ein Fehler aufgetreten\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Dieser Teilnehmer hat eine unbezahlte Bestellung.\",\"mf3FrP\":\"Diese Kategorie hat noch keine Produkte.\",\"8QH2Il\":\"Diese Kategorie ist vor der öffentlichen Ansicht verborgen\",\"xxv3BZ\":\"Diese Eincheckliste ist abgelaufen\",\"Sa7w7S\":\"Diese Eincheckliste ist abgelaufen und steht nicht mehr für Eincheckungen zur Verfügung.\",\"Uicx2U\":\"Diese Eincheckliste ist aktiv\",\"1k0Mp4\":\"Diese Eincheckliste ist noch nicht aktiv\",\"K6fmBI\":\"Diese Eincheckliste ist noch nicht aktiv und steht nicht für Eincheckungen zur Verfügung.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Diese Informationen werden auf der Zahlungsseite, der Bestellübersichtsseite und in der Bestellbestätigungs-E-Mail angezeigt.\",\"XAHqAg\":\"Dies ist ein allgemeines Produkt, wie ein T-Shirt oder eine Tasse. Es wird kein Ticket ausgestellt\",\"CNk/ro\":\"Dies ist eine Online-Veranstaltung\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Diese Nachricht wird in die Fußzeile aller E-Mails aufgenommen, die von dieser Veranstaltung gesendet werden.\",\"55i7Fa\":\"Diese Nachricht wird nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wurde. Bestellungen, die auf Zahlung warten, zeigen diese Nachricht nicht an.\",\"RjwlZt\":\"Diese Bestellung wurde bereits bezahlt.\",\"5K8REg\":\"Diese Bestellung wurde bereits zurückerstattet.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Diese Bestellung wurde storniert.\",\"Q0zd4P\":\"Diese Bestellung ist abgelaufen. Bitte erneut beginnen.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Diese Bestellung ist abgeschlossen.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Diese Bestellseite ist nicht mehr verfügbar.\",\"i0TtkR\":\"Dies überschreibt alle Sichtbarkeitseinstellungen und verbirgt das Produkt vor allen Kunden.\",\"cRRc+F\":\"Dieses Produkt kann nicht gelöscht werden, da es mit einer Bestellung verknüpft ist. Sie können es stattdessen ausblenden.\",\"3Kzsk7\":\"Dieses Produkt ist ein Ticket. Käufer erhalten nach dem Kauf ein Ticket\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Dieser Link zum Zurücksetzen des Passworts ist ungültig oder abgelaufen.\",\"IV9xTT\":\"Dieser Benutzer ist nicht aktiv, da er die Einladung nicht angenommen hat.\",\"5AnPaO\":\"Ticket\",\"kjAL4v\":\"Ticket\",\"dtGC3q\":\"Die Ticket-E-Mail wurde erneut an den Teilnehmer gesendet.\",\"54q0zp\":\"Tickets für\",\"xN9AhL\":[\"Stufe \",[\"0\"]],\"jZj9y9\":\"Gestuftes Produkt\",\"8wITQA\":\"Gestufte Produkte ermöglichen es Ihnen, mehrere Preisoptionen für dasselbe Produkt anzubieten. Dies ist ideal für Frühbucherprodukte oder um unterschiedliche Preisoptionen für verschiedene Personengruppen anzubieten.\\\" # de\",\"nn3mSR\":\"Verbleibende Zeit:\",\"s/0RpH\":\"Nutzungshäufigkeit\",\"y55eMd\":\"Anzahl der Verwendungen\",\"40Gx0U\":\"Zeitzone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Werkzeuge\",\"72c5Qo\":\"Gesamt\",\"YXx+fG\":\"Gesamt vor Rabatten\",\"NRWNfv\":\"Gesamtrabattbetrag\",\"BxsfMK\":\"Gesamtkosten\",\"2bR+8v\":\"Gesamtumsatz brutto\",\"mpB/d9\":\"Gesamtbestellwert\",\"m3FM1g\":\"Gesamtbetrag zurückerstattet\",\"jEbkcB\":\"Insgesamt erstattet\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Gesamtsteuer\",\"+zy2Nq\":\"Typ\",\"FMdMfZ\":\"Teilnehmer konnte nicht eingecheckt werden\",\"bPWBLL\":\"Teilnehmer konnte nicht ausgecheckt werden\",\"9+P7zk\":\"Produkt konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"WLxtFC\":\"Produkt konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"/cSMqv\":\"Frage konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"MH/lj8\":\"Frage kann nicht aktualisiert werden. Bitte überprüfen Sie Ihre Angaben\",\"nnfSdK\":\"Einzigartige Kunden\",\"Mqy/Zy\":\"Vereinigte Staaten\",\"NIuIk1\":\"Unbegrenzt\",\"/p9Fhq\":\"Unbegrenzt verfügbar\",\"E0q9qH\":\"Unbegrenzte Nutzung erlaubt\",\"h10Wm5\":\"Unbezahlte Bestellung\",\"ia8YsC\":\"Bevorstehende\",\"TlEeFv\":\"Bevorstehende Veranstaltungen\",\"L/gNNk\":[\"Aktualisierung \",[\"0\"]],\"+qqX74\":\"Aktualisieren Sie den Namen, die Beschreibung und die Daten der Veranstaltung\",\"vXPSuB\":\"Profil aktualisieren\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL in die Zwischenablage kopiert\",\"e5lF64\":\"Verwendungsbeispiel\",\"fiV0xj\":\"Verwendungslimit\",\"sGEOe4\":\"Verwenden Sie eine unscharfe Version des Titelbilds als Hintergrund\",\"OadMRm\":\"Titelbild verwenden\",\"7PzzBU\":\"Benutzer\",\"yDOdwQ\":\"Benutzerverwaltung\",\"Sxm8rQ\":\"Benutzer\",\"VEsDvU\":\"Benutzer können ihre E-Mail in den <0>Profileinstellungen ändern.\",\"vgwVkd\":\"koordinierte Weltzeit\",\"khBZkl\":\"Umsatzsteuer\",\"E/9LUk\":\"Veranstaltungsort Namen\",\"jpctdh\":\"Ansehen\",\"Pte1Hv\":\"Teilnehmerdetails anzeigen\",\"/5PEQz\":\"Zur Veranstaltungsseite\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Auf Google Maps anzeigen\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP-Eincheckliste\",\"tF+VVr\":\"VIP-Ticket\",\"2q/Q7x\":\"Sichtweite\",\"vmOFL/\":\"Wir konnten Ihre Zahlung nicht verarbeiten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\",\"45Srzt\":\"Die Kategorie konnte nicht gelöscht werden. Bitte versuchen Sie es erneut.\",\"/DNy62\":[\"Wir konnten keine Tickets finden, die mit \",[\"0\"],\" übereinstimmen\"],\"1E0vyy\":\"Wir konnten die Daten nicht laden. Bitte versuchen Sie es erneut.\",\"NmpGKr\":\"Wir konnten die Kategorien nicht neu ordnen. Bitte versuchen Sie es erneut.\",\"BJtMTd\":\"Wir empfehlen Abmessungen von 2160 x 1080 Pixel und eine maximale Dateigröße von 5 MB.\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Wir konnten Ihre Zahlung nicht bestätigen. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\",\"Gspam9\":\"Wir bearbeiten Ihre Bestellung. Bitte warten...\",\"LuY52w\":\"Willkommen an Bord! Bitte melden Sie sich an, um fortzufahren.\",\"dVxpp5\":[\"Willkommen zurück\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Was sind gestufte Produkte?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Was ist eine Kategorie?\",\"gxeWAU\":\"Für welche Produkte gilt dieser Code?\",\"hFHnxR\":\"Für welche Produkte gilt dieser Code? (Standardmäßig gilt er für alle)\",\"AeejQi\":\"Für welche Produkte soll diese Kapazität gelten?\",\"Rb0XUE\":\"Um wie viel Uhr werden Sie ankommen?\",\"5N4wLD\":\"Um welche Art von Frage handelt es sich?\",\"gyLUYU\":\"Wenn aktiviert, werden Rechnungen für Ticketbestellungen erstellt. Rechnungen werden zusammen mit der Bestellbestätigungs-E-Mail gesendet. Teilnehmer können ihre Rechnungen auch von der Bestellbestätigungsseite herunterladen.\",\"D3opg4\":\"Wenn Offline-Zahlungen aktiviert sind, können Benutzer ihre Bestellungen abschließen und ihre Tickets erhalten. Ihre Tickets werden klar anzeigen, dass die Bestellung nicht bezahlt ist, und das Check-in-Tool wird das Check-in-Personal benachrichtigen, wenn eine Bestellung eine Zahlung erfordert.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Welche Tickets sollen mit dieser Eincheckliste verknüpft werden?\",\"S+OdxP\":\"Wer organisiert diese Veranstaltung?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Wem sollte diese Frage gestellt werden?\",\"VxFvXQ\":\"Widget einbetten\",\"v1P7Gm\":\"Widget-Einstellungen\",\"b4itZn\":\"Arbeiten\",\"hqmXmc\":\"Arbeiten...\",\"+G/XiQ\":\"Seit Jahresbeginn\",\"l75CjT\":\"Ja\",\"QcwyCh\":\"Ja, entfernen\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Sie ändern Ihre E-Mail zu <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Sie sind offline\",\"sdB7+6\":\"Sie können einen Promo-Code erstellen, der sich auf dieses Produkt richtet auf der\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Sie können den Produkttyp nicht ändern, da Teilnehmer mit diesem Produkt verknüpft sind.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Sie können Teilnehmer mit unbezahlten Bestellungen nicht einchecken. Diese Einstellung kann in den Veranstaltungsdetails geändert werden.\",\"c9Evkd\":\"Sie können die letzte Kategorie nicht löschen.\",\"6uwAvx\":\"Sie können diese Preiskategorie nicht löschen, da für diese Kategorie bereits Produkte verkauft wurden. Sie können sie stattdessen ausblenden.\",\"tFbRKJ\":\"Sie können die Rolle oder den Status des Kontoinhabers nicht bearbeiten.\",\"fHfiEo\":\"Sie können eine manuell erstellte Bestellung nicht zurückerstatten.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Sie haben Zugriff auf mehrere Konten. Bitte wählen Sie eines aus, um fortzufahren.\",\"Z6q0Vl\":\"Sie haben diese Einladung bereits angenommen. Bitte melden Sie sich an, um fortzufahren.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Sie haben keine ausstehende E-Mail-Änderung.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Die Zeit für die Bestellung ist abgelaufen.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Sie müssen bestätigen, dass diese E-Mail keinen Werbezweck hat\",\"3ZI8IL\":\"Sie müssen den Allgemeinen Geschäftsbedingungen zustimmen\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Sie müssen ein Ticket erstellen, bevor Sie einen Teilnehmer manuell hinzufügen können.\",\"jE4Z8R\":\"Sie müssen mindestens eine Preisstufe haben\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Sie müssen eine Bestellung manuell als bezahlt markieren. Dies kann auf der Bestellverwaltungsseite erfolgen.\",\"L/+xOk\":\"Sie benötigen ein Ticket, bevor Sie eine Eincheckliste erstellen können.\",\"Djl45M\":\"Sie benötigen ein Produkt, bevor Sie eine Kapazitätszuweisung erstellen können.\",\"y3qNri\":\"Sie benötigen mindestens ein Produkt, um loszulegen. Kostenlos, bezahlt oder lassen Sie den Benutzer entscheiden, was er zahlen möchte.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Ihr Kontoname wird auf Veranstaltungsseiten und in E-Mails verwendet.\",\"veessc\":\"Ihre Teilnehmer werden hier angezeigt, sobald sie sich für Ihre Veranstaltung registriert haben. Sie können Teilnehmer auch manuell hinzufügen.\",\"Eh5Wrd\":\"Ihre tolle Website 🎉\",\"lkMK2r\":\"Deine Details\",\"3ENYTQ\":[\"Ihre E-Mail-Anfrage zur Änderung auf <0>\",[\"0\"],\" steht noch aus. Bitte überprüfen Sie Ihre E-Mail, um sie zu bestätigen\"],\"yZfBoy\":\"Ihre Nachricht wurde gesendet\",\"KSQ8An\":\"Deine Bestellung\",\"Jwiilf\":\"Deine Bestellung wurde storniert\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Sobald Ihre Bestellungen eintreffen, werden sie hier angezeigt.\",\"9TO8nT\":\"Ihr Passwort\",\"P8hBau\":\"Ihre Zahlung wird verarbeitet.\",\"UdY1lL\":\"Ihre Zahlung war nicht erfolgreich, bitte versuchen Sie es erneut.\",\"fzuM26\":\"Ihre Zahlung war nicht erfolgreich. Bitte versuchen Sie es erneut.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Ihre Rückerstattung wird bearbeitet.\",\"IFHV2p\":\"Ihr Ticket für\",\"x1PPdr\":\"Postleitzahl\",\"BM/KQm\":\"Postleitzahl\",\"+LtVBt\":\"Postleitzahl\",\"25QDJ1\":\"- Zum Veröffentlichen klicken\",\"WOyJmc\":\"- Zum Rückgängigmachen der Veröffentlichung klicken\",\"ncwQad\":\"(leer)\",\"B/gRsg\":\"(keine)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ist bereits eingecheckt\"],\"3beCx0\":[[\"0\"],\" <0>eingecheckt\"],\"S4PqS9\":[[\"0\"],\" aktive Webhooks\"],\"6MIiOI\":[[\"0\"],\" übrig\"],\"COnw8D\":[[\"0\"],\" Logo\"],\"xG9N0H\":[[\"0\"],\" von \",[\"1\"],\" Plätzen sind belegt.\"],\"B7pZfX\":[[\"0\"],\" Veranstalter\"],\"rZTf6P\":[\"Noch \",[\"0\"],\" Plätze frei\"],\"/HkCs4\":[[\"0\"],\" Tickets\"],\"dtXkP9\":[[\"0\"],\" bevorstehende Termine\"],\"30bTiU\":[[\"activeCount\"],\" aktiv\"],\"jTs4am\":[[\"appName\"],\"-Logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" Teilnehmer sind für diese Session angemeldet.\"],\"TjbIUI\":[[\"availableCount\"],\" von \",[\"totalCount\"],\" verfügbar\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" eingecheckt\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"vor \",[\"diffHr\"],\" Std.\"],\"NRSLBe\":[\"vor \",[\"diffMin\"],\" Min.\"],\"iYfwJE\":[\"vor \",[\"diffSec\"],\" Sek.\"],\"OJnhhX\":[[\"eventCount\"],\" Ereignisse\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" Teilnehmer sind für die betroffenen Sessions angemeldet.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" Ticketarten\"],\"0cLzoF\":[[\"totalOccurrences\"],\" Termine\"],\"AEGc4t\":[[\"totalOccurrences\"],\" Sessions an \",[\"0\"],\" Tagen (\",[\"1\",\"plural\",{\"one\":[\"#\",\" Session\"],\"other\":[\"#\",\" Sessions\"]}],\" pro Tag)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Steuern/Gebühren\",\"B1St2O\":\"<0>Check-in-Listen helfen Ihnen, den Veranstaltungseinlass nach Tag, Bereich oder Tickettyp zu verwalten. Sie können Tickets mit bestimmten Listen wie VIP-Bereichen oder Tag-1-Pässen verknüpfen und einen sicheren Check-in-Link mit dem Personal teilen. Es ist kein Konto erforderlich. Check-in funktioniert auf Mobilgeräten, Desktop oder Tablet mit einer Gerätekamera oder einem HID-USB-Scanner. \",\"v9VSIS\":\"<0>Legen Sie ein einziges Gesamtlimit für die Teilnehmerzahl fest, das gleichzeitig für mehrere Ticketarten gilt.<1>Wenn Sie beispielsweise ein <2>Tagesticket und ein <3>Wochenendticket verknüpfen, ziehen beide aus demselben Platzpool. Sobald das Limit erreicht ist, werden alle verknüpften Tickets automatisch nicht mehr verkauft.\",\"vKXqag\":\"<0>Dies ist die Standardmenge für alle Termine. Die Kapazität jedes Termins kann die Verfügbarkeit auf der <1>Terminplan-Seite zusätzlich begrenzen.\",\"ZnVt5v\":\"<0>Webhooks benachrichtigen externe Dienste sofort, wenn Ereignisse eintreten, z. B. wenn ein neuer Teilnehmer zu deinem CRM oder deiner Mailingliste hinzugefügt wird, um eine nahtlose Automatisierung zu gewährleisten.<1>Nutze Drittanbieterdienste wie <2>Zapier, <3>IFTTT oder <4>Make, um benutzerdefinierte Workflows zu erstellen und Aufgaben zu automatisieren.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" zum aktuellen Kurs\"],\"M2DyLc\":\"1 aktiver Webhook\",\"6hIk/x\":\"1 Teilnehmer ist für die betroffenen Sessions angemeldet.\",\"qOyE2U\":\"1 Teilnehmer ist für diese Session angemeldet.\",\"943BwI\":\"1 Tag nach dem Enddatum\",\"yj3N+g\":\"1 Tag nach dem Startdatum\",\"Z3etYG\":\"1 Tag vor der Veranstaltung\",\"szSnlj\":\"1 Stunde vor der Veranstaltung\",\"yTsaLw\":\"1 Ticket\",\"nz96Ue\":\"1 Ticketart\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 Woche vor der Veranstaltung\",\"09VFYl\":\"12 Tickets angeboten\",\"HR/cvw\":\"Musterstraße 123\",\"dgKxZ5\":\"135+ Währungen & 40+ Zahlungsmethoden\",\"kMU5aM\":\"Eine Stornierungsbenachrichtigung wurde gesendet an\",\"o++0qa\":\"eine Änderung der Dauer\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Ein neuer Bestätigungscode wurde an Ihre E-Mail gesendet\",\"sr2Je0\":\"eine Verschiebung der Start-/Endzeiten\",\"/z/bH1\":\"Eine kurze Beschreibung Ihres Veranstalters, die Ihren Nutzern angezeigt wird.\",\"aS0jtz\":\"Abgebrochen\",\"uyJsf6\":\"Über\",\"JvuLls\":\"Gebühr übernehmen\",\"lk74+I\":\"Gebühr übernehmen\",\"1uJlG9\":\"Akzentfarbe\",\"g3UF2V\":\"Akzeptieren\",\"K5+3xg\":\"Einladung annehmen\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Konto · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Kontoinformationen\",\"EHNORh\":\"Konto nicht gefunden\",\"bPwFdf\":\"Konten\",\"AhwTa1\":\"Handlung erforderlich: Umsatzsteuerinformationen benötigt\",\"APyAR/\":\"Aktive Events\",\"kCl6ja\":\"Aktive Zahlungsmethoden\",\"XJOV1Y\":\"Aktivität\",\"0YEoxS\":\"Termin hinzufügen\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Einzelnen Termin hinzufügen\",\"CjvTPJ\":\"Weitere Uhrzeit hinzufügen\",\"0XCduh\":\"Mindestens eine Uhrzeit hinzufügen\",\"/chGpa\":\"Verbindungsdetails für die Online-Veranstaltung hinzufügen.\",\"UWWRyd\":\"Fügen Sie benutzerdefinierte Fragen hinzu, um während des Bezahlvorgangs zusätzliche Informationen zu erfassen\",\"Z/dcxc\":\"Termin hinzufügen\",\"Q219NT\":\"Termine hinzufügen\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Standort hinzufügen\",\"VX6WUv\":\"Standort hinzufügen\",\"GCQlV2\":\"Fügen Sie mehrere Uhrzeiten hinzu, wenn Sie mehrere Sessions pro Tag durchführen.\",\"7JF9w9\":\"Frage hinzufügen\",\"NLbIb6\":\"Teilnehmer trotzdem hinzufügen (Kapazität überschreiben)\",\"6PNlRV\":\"Fügen Sie dieses Event zu Ihrem Kalender hinzu\",\"BGD9Yt\":\"Tickets hinzufügen\",\"uIv4Op\":\"Fügen Sie Tracking-Pixel zu Ihren öffentlichen Veranstaltungsseiten und der Veranstalter-Startseite hinzu. Besuchern wird ein Cookie-Einwilligungsbanner angezeigt, wenn Tracking aktiv ist.\",\"QN2F+7\":\"Webhook hinzufügen\",\"NsWqSP\":\"Fügen Sie Ihre Social-Media-Konten und die Website-URL hinzu. Diese werden auf Ihrer öffentlichen Veranstalterseite angezeigt.\",\"bVjDs9\":\"Zusätzliche Gebühren\",\"MKqSg4\":\"Administratorzugriff erforderlich\",\"0Zypnp\":\"Admin Dashboard\",\"YAV57v\":\"Partner\",\"I+utEq\":\"Partnercode kann nicht geändert werden\",\"/jHBj5\":\"Partner erfolgreich erstellt\",\"uCFbG2\":\"Partner erfolgreich gelöscht\",\"ld8I+f\":\"Partnerprogramm\",\"a41PKA\":\"Partnerverkäufe werden verfolgt\",\"mJJh2s\":\"Partnerverkäufe werden nicht verfolgt. Dies deaktiviert den Partner.\",\"jabmnm\":\"Partner erfolgreich aktualisiert\",\"CPXP5Z\":\"Partner\",\"9Wh+ug\":\"Partner exportiert\",\"3cqmut\":\"Partner helfen Ihnen, Verkäufe von Partnern und Influencern zu verfolgen. Erstellen Sie Partnercodes und teilen Sie diese, um die Leistung zu überwachen.\",\"z7GAMJ\":\"alle\",\"N40H+G\":\"Alle\",\"7rLTkE\":\"Alle archivierten Veranstaltungen\",\"gKq1fa\":\"Alle Teilnehmer\",\"63gRoO\":\"Alle Teilnehmer der ausgewählten Sessions\",\"uWxIoH\":\"Alle Teilnehmer dieses Termins\",\"pMLul+\":\"Alle Währungen\",\"sgUdRZ\":\"Alle Termine\",\"e4q4uO\":\"Alle Termine\",\"ZS/D7f\":\"Alle beendeten Veranstaltungen\",\"QsYjci\":\"Alle Veranstaltungen\",\"31KB8w\":\"Alle fehlgeschlagenen Jobs gelöscht\",\"D2g7C7\":\"Alle Jobs zur Wiederholung eingereiht\",\"B4RFBk\":\"Alle passenden Termine\",\"F1/VgK\":\"Alle Termine\",\"OpWjMq\":\"Alle Termine\",\"Sxm1lO\":\"Alle Status\",\"dr7CWq\":\"Alle bevorstehenden Veranstaltungen\",\"GpT6Uf\":\"Erlauben Sie Teilnehmern, ihre Ticketinformationen (Name, E-Mail) über einen sicheren Link zu aktualisieren, der mit ihrer Bestellbestätigung gesendet wird.\",\"F3mW5G\":\"Kunden erlauben, sich auf eine Warteliste zu setzen, wenn dieses Produkt ausverkauft ist\",\"c4uJfc\":\"Fast geschafft! Wir warten nur noch auf die Verarbeitung Ihrer Zahlung. Das sollte nur wenige Sekunden dauern.\",\"ocS8eq\":[\"Haben Sie bereits ein Konto? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Bereits da\",\"/H326L\":\"Bereits erstattet\",\"USEpOK\":\"Verwendest du Stripe bereits bei einem anderen Veranstalter? Verbindung wiederverwenden.\",\"RtxQTF\":\"Diese Bestellung auch stornieren\",\"jkNgQR\":\"Diese Bestellung auch erstatten\",\"xYqsHg\":\"Immer verfügbar\",\"Wvrz79\":\"Gezahlter Betrag\",\"Zkymb9\":\"Eine E-Mail-Adresse für diesen Partner. Der Partner wird nicht benachrichtigt.\",\"vRznIT\":\"Ein Fehler ist aufgetreten beim Überprüfen des Exportstatus.\",\"eusccx\":\"Eine optionale Nachricht, die beim hervorgehobenen Produkt angezeigt wird, z.B. \\\"Verkauft sich schnell 🔥\\\" oder \\\"Bester Wert\\\"\",\"5GJuNp\":[\"und \",[\"0\"],\" weitere...\"],\"QNrkms\":\"Antwort erfolgreich aktualisiert.\",\"+qygei\":\"Antworten\",\"GK7Lnt\":\"Antworten beim Checkout (z. B. Speisenwahl)\",\"lE8PgT\":\"Manuell angepasste Termine bleiben erhalten.\",\"vP3Nzg\":[\"Gilt für \",[\"0\"],\" nicht stornierte Termine, die aktuell auf dieser Seite geladen sind.\"],\"kkVyZZ\":\"Gilt für alle, die den Check-in-Link ohne Anmeldung öffnen. Angemeldete Teammitglieder sehen immer alles.\",\"je4muG\":[\"Gilt für jeden nicht stornierten \",[\"0\"],\"-Termin dieser Veranstaltung — auch für aktuell nicht geladene Termine.\"],\"YIIQtt\":\"Änderungen anwenden\",\"NzWX1Y\":\"Anwenden auf\",\"Ps5oDT\":\"Auf alle Tickets anwenden\",\"261RBr\":\"Nachricht genehmigen\",\"naCW6Z\":\"April\",\"B495Gs\":\"Archivieren\",\"5sNliy\":\"Veranstaltung archivieren\",\"BrwnrJ\":\"Veranstalter archivieren\",\"E5eghW\":\"Archivieren Sie diese Veranstaltung, um sie vor der Öffentlichkeit zu verbergen. Sie können sie später wiederherstellen.\",\"eqFkeI\":\"Archivieren Sie diesen Veranstalter. Dadurch werden auch alle Veranstaltungen dieses Veranstalters archiviert.\",\"BzcxWv\":\"Archivierte Veranstalter\",\"9cQBd6\":\"Sind Sie sicher, dass Sie diese Veranstaltung archivieren möchten? Sie wird nicht mehr öffentlich sichtbar sein.\",\"Trnl3E\":\"Sind Sie sicher, dass Sie diesen Veranstalter archivieren möchten? Dadurch werden auch alle Veranstaltungen dieses Veranstalters archiviert.\",\"wOvn+e\":[\"Sind Sie sicher, dass Sie \",[\"count\"],\" Termin(e) absagen möchten? Betroffene Teilnehmer werden per E-Mail benachrichtigt.\"],\"GTxE0U\":\"Sind Sie sicher, dass Sie diesen Termin absagen möchten? Betroffene Teilnehmer werden per E-Mail benachrichtigt.\",\"VkSk/i\":\"Sind Sie sicher, dass Sie diese geplante Nachricht abbrechen möchten?\",\"0aVEBY\":\"Sind Sie sicher, dass Sie alle fehlgeschlagenen Jobs löschen möchten?\",\"LchiNd\":\"Sind Sie sicher, dass Sie diesen Partner löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\",\"vPeW/6\":\"Sind Sie sicher, dass Sie diese Konfiguration löschen möchten? Dies kann sich auf Konten auswirken, die sie verwenden.\",\"h42Hc/\":\"Sind Sie sicher, dass Sie diesen Termin löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\",\"JmVITJ\":\"Sind Sie sicher, dass Sie diese Vorlage löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden und E-Mails werden auf die Standardvorlage zurückgreifen.\",\"aLS+A6\":\"Sind Sie sicher, dass Sie diese Vorlage löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden und E-Mails werden auf die Veranstalter- oder Standardvorlage zurückgreifen.\",\"5H3Z78\":\"Bist du sicher, dass du diesen Webhook löschen möchtest?\",\"147G4h\":\"Möchten Sie wirklich gehen?\",\"VDWChT\":\"Sind Sie sicher, dass Sie diesen Veranstalter auf Entwurf setzen möchten? Dadurch wird die Veranstalterseite für die Öffentlichkeit unsichtbar.\",\"pWtQJM\":\"Sind Sie sicher, dass Sie diesen Veranstalter veröffentlichen möchten? Dadurch wird die Veranstalterseite für die Öffentlichkeit sichtbar.\",\"EOqL/A\":\"Sind Sie sicher, dass Sie dieser Person einen Platz anbieten möchten? Sie wird eine E-Mail-Benachrichtigung erhalten.\",\"yAXqWW\":\"Sind Sie sicher, dass Sie diesen Termin endgültig löschen möchten? Dies kann nicht rückgängig gemacht werden.\",\"WFHOlF\":\"Sind Sie sicher, dass Sie diese Veranstaltung veröffentlichen möchten? Nach der Veröffentlichung ist sie öffentlich sichtbar.\",\"4TNVdy\":\"Sind Sie sicher, dass Sie dieses Veranstalterprofil veröffentlichen möchten? Nach der Veröffentlichung ist es öffentlich sichtbar.\",\"8x0pUg\":\"Sind Sie sicher, dass Sie diesen Eintrag von der Warteliste entfernen möchten?\",\"cDtoWq\":[\"Sind Sie sicher, dass Sie die Bestellbestätigung erneut an \",[\"0\"],\" senden möchten?\"],\"xeIaKw\":[\"Sind Sie sicher, dass Sie das Ticket erneut an \",[\"0\"],\" senden möchten?\"],\"BjbocR\":\"Sind Sie sicher, dass Sie diese Veranstaltung wiederherstellen möchten?\",\"7MjfcR\":\"Sind Sie sicher, dass Sie diesen Veranstalter wiederherstellen möchten?\",\"ExDt3P\":\"Sind Sie sicher, dass Sie diese Veranstaltung zurückziehen möchten? Sie wird nicht mehr öffentlich sichtbar sein.\",\"5Qmxo/\":\"Sind Sie sicher, dass Sie dieses Veranstalterprofil zurückziehen möchten? Es wird nicht mehr öffentlich sichtbar sein.\",\"Uqefyd\":\"Sind Sie in der EU umsatzsteuerregistriert?\",\"+QARA4\":\"Kunst\",\"tLf3yJ\":\"Da Ihr Unternehmen in Irland ansässig ist, wird automatisch die irische Umsatzsteuer von 23% auf alle Plattformgebühren angewendet.\",\"tMeVa/\":\"Name und E-Mail für jedes gekaufte Ticket erfragen\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Plan zuweisen\",\"xdiER7\":\"Zugewiesene Stufe\",\"F2rX0R\":\"Mindestens ein Ereignistyp muss ausgewählt werden\",\"BCmibk\":\"Versuche\",\"6PecK3\":\"Anwesenheit und Check-in-Raten für alle Veranstaltungen\",\"K2tp3v\":\"Teilnehmer\",\"AJ4rvK\":\"Teilnehmer storniert\",\"qvylEK\":\"Teilnehmer erstellt\",\"Aspq3b\":\"Erfassung von Teilnehmerdetails\",\"fpb0rX\":\"Teilnehmerdetails aus Bestellung kopiert\",\"0R3Y+9\":\"Teilnehmer-E-Mail\",\"94aQMU\":\"Teilnehmerinformationen\",\"KkrBiR\":\"Erfassung von Teilnehmerinformationen\",\"av+gjP\":\"Teilnehmername\",\"sjPjOg\":\"Teilnehmernotizen\",\"cosfD8\":\"Teilnehmerstatus\",\"D2qlBU\":\"Teilnehmer aktualisiert\",\"22BOve\":\"Teilnehmer erfolgreich aktualisiert\",\"x8Vnvf\":\"Ticket des Teilnehmers nicht in dieser Liste enthalten\",\"/Ywywr\":\"Teilnehmer\",\"zLRobu\":\"Teilnehmer eingecheckt\",\"k3Tngl\":\"Teilnehmer exportiert\",\"UoIRW8\":\"Registrierte Teilnehmer\",\"5UbY+B\":\"Teilnehmer mit einem bestimmten Ticket\",\"4HVzhV\":\"Teilnehmer:\",\"HVkhy2\":\"Attributionsanalyse\",\"dMMjeD\":\"Attributionsaufschlüsselung\",\"1oPDuj\":\"Attributionswert\",\"DBHTm/\":\"August\",\"JgREph\":\"Auto-Angebot ist aktiviert\",\"V7Tejz\":\"Warteliste automatisch verarbeiten\",\"PZ7FTW\":\"Wird automatisch basierend auf der Hintergrundfarbe erkannt, kann aber überschrieben werden\",\"zlnTuI\":\"Bieten Sie Tickets automatisch der nächsten Person an, sobald Kapazität verfügbar wird. Wenn deaktiviert, können Sie die Warteliste manuell über die Wartelistenseite bearbeiten.\",\"csDS2L\":\"Verfügbar\",\"clF06r\":\"Zur Erstattung verfügbar\",\"NB5+UG\":\"Verfügbare Token\",\"L+wGOG\":\"Ausstehend\",\"qcw2OD\":\"Zahlung offen\",\"kNmmvE\":\"Awesome Events GmbH\",\"iH8pgl\":\"Zurück\",\"TeSaQO\":\"Zurück zu Konten\",\"X7Q/iM\":\"Zurück zum Kalender\",\"kYqM1A\":\"Zurück zum Event\",\"s5QRF3\":\"Zurück zu Nachrichten\",\"td/bh+\":\"Zurück zu Berichten\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Grundpreis\",\"hviJef\":\"Basierend auf dem globalen Verkaufszeitraum oben, nicht pro Termin\",\"jIPNJG\":\"Grundinformationen\",\"UabgBd\":\"Inhalt ist erforderlich\",\"HWXuQK\":\"Setzen Sie ein Lesezeichen für diese Seite, um Ihre Bestellung jederzeit zu verwalten.\",\"CUKVDt\":\"Gestalten Sie Ihre Tickets mit einem individuellen Logo, Farben und einer Fußzeilennachricht.\",\"4BZj5p\":\"Integrierter Betrugsschutz\",\"cr7kGH\":\"Massenbearbeitung\",\"1Fbd6n\":\"Termine in Massen bearbeiten\",\"Eq6Tu9\":\"Massenaktualisierung fehlgeschlagen.\",\"9N+p+g\":\"Geschäftlich\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Firmenname\",\"bv6RXK\":\"Schaltflächenbeschriftung\",\"ChDLlO\":\"Schaltflächentext\",\"BUe8Wj\":\"Käufer zahlt\",\"qF1qbA\":\"Käufer sehen einen klaren Preis. Die Plattformgebühr wird von Ihrer Auszahlung abgezogen.\",\"dg05rc\":\"Mit dem Hinzufügen von Tracking-Pixeln erkennen Sie an, dass Sie und diese Plattform gemeinsame Verantwortliche für die erhobenen Daten sind. Sie sind dafür verantwortlich, eine Rechtsgrundlage für diese Verarbeitung nach den geltenden Datenschutzgesetzen (DSGVO, CCPA usw.) sicherzustellen.\",\"DFqasq\":[\"Durch Fortfahren stimmen Sie den <0>\",[\"0\"],\" Nutzungsbedingungen zu\"],\"wVSa+U\":\"Nach Tag des Monats\",\"0MnNgi\":\"Nach Wochentag\",\"CetOZE\":\"Nach Tickettyp\",\"lFdbRS\":\"Anwendungsgebühren umgehen\",\"AjVXBS\":\"Kalender\",\"alkXJ5\":\"Kalenderansicht\",\"2VLZwd\":\"Aktionsschaltfläche\",\"rT2cV+\":\"Kamera\",\"7hYa9y\":\"Kamerazugriff wurde verweigert. <0>Berechtigung erneut anfordern oder den Kamerazugriff in den Browsereinstellungen erlauben.\",\"D02dD9\":\"Kampagne\",\"RRPA79\":\"Kein Check-in möglich\",\"OcVwAd\":[[\"count\"],\" Termin(e) absagen\"],\"H4nE+E\":\"Alle Produkte stornieren und in den Pool zurückgeben\",\"Py78q9\":\"Termin absagen\",\"tOXAdc\":\"Das Stornieren wird alle mit dieser Bestellung verbundenen Teilnehmer stornieren und die Tickets in den verfügbaren Pool zurückgeben.\",\"vev1Jl\":\"Stornierung\",\"Ha17hq\":[[\"0\"],\" Termin(e) abgesagt\"],\"01sEfm\":\"Die Standardkonfiguration des Systems kann nicht gelöscht werden\",\"VsM1HH\":\"Kapazitätszuweisungen\",\"9bIMVF\":\"Kapazitätsverwaltung\",\"H7K8og\":\"Kapazität muss 0 oder größer sein\",\"nzao08\":\"Kapazitätsänderungen\",\"4cp9NP\":\"Belegte Kapazität\",\"K7tIrx\":\"Kategorie\",\"o+XJ9D\":\"Ändern\",\"kJkjoB\":\"Dauer ändern\",\"J0KExZ\":\"Teilnehmerlimit ändern\",\"CIHJJf\":\"Wartelisten-Einstellungen ändern\",\"B5icLR\":[\"Dauer für \",[\"count\"],\" Termin(e) geändert\"],\"Kb+0BT\":\"Zahlungen\",\"2tbLdK\":\"Wohltätigkeit\",\"BPWGKn\":\"Einchecken\",\"6uFFoY\":\"Auschecken\",\"FjAlwK\":[\"Schau dir diese Veranstaltung an: \",[\"0\"]],\"v4fiSg\":\"Überprüfen Sie Ihre E-Mail\",\"51AsAN\":\"Überprüfen Sie Ihren Posteingang! Wenn Tickets mit dieser E-Mail verknüpft sind, erhalten Sie einen Link, um sie anzuzeigen.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Check-in erstellt\",\"F4SRy3\":\"Check-in gelöscht\",\"as6XfO\":[\"Check-in für \",[\"0\"],\" wurde rückgängig gemacht\"],\"9s/wrQ\":\"Check-in-Verlauf\",\"Wwztk4\":\"Check-in-Liste\",\"9gPPUY\":\"Check-In-Liste erstellt!\",\"dwjiJt\":\"Check-in-Liste Info\",\"7od0PV\":\"Check-in-Listen\",\"f2vU9t\":\"Check-in-Listen\",\"XprdTn\":\"Check-in-Navigation\",\"5tV1in\":\"Check-in-Fortschritt\",\"SHJwyq\":\"Check-in-Rate\",\"qCqdg6\":\"Check-In-Status\",\"cKj6OE\":\"Check-in-Übersicht\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Eingecheckt\",\"DM4gBB\":\"Chinesisch (Traditionell)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Andere Aktion auswählen\",\"fkb+y3\":\"Wählen Sie einen gespeicherten Standort zum Anwenden.\",\"Zok1Gx\":\"Veranstalter auswählen\",\"pkk46Q\":\"Wählen Sie einen Veranstalter\",\"Crr3pG\":\"Kalender auswählen\",\"LAW8Vb\":\"Wählen Sie die Standardeinstellung für neue Veranstaltungen. Dies kann für einzelne Veranstaltungen überschrieben werden.\",\"pjp2n5\":\"Wählen Sie, wer die Plattformgebühr zahlt. Dies hat keine Auswirkungen auf zusätzliche Gebühren, die Sie in Ihren Kontoeinstellungen konfiguriert haben.\",\"xCJdfg\":\"Zurücksetzen\",\"QyOWu9\":\"Standort zurücksetzen — auf den Veranstaltungsstandard zurückfallen\",\"V8yTm6\":\"Suche zurücksetzen\",\"kmnKnX\":\"Beim Zurücksetzen werden alle terminbezogenen Überschreibungen entfernt. Betroffene Termine fallen auf den Standardstandort der Veranstaltung zurück.\",\"/o+aQX\":\"Zum Abbrechen klicken\",\"gD7WGV\":\"Klicken, um für neue Verkäufe wieder zu öffnen\",\"CySr+W\":\"Klicken, um Notizen anzuzeigen\",\"RG3szS\":\"schließen\",\"RWw9Lg\":\"Modal schließen\",\"XwdMMg\":\"Code darf nur Buchstaben, Zahlen, Bindestriche und Unterstriche enthalten\",\"+yMJb7\":\"Code ist erforderlich\",\"m9SD3V\":\"Code muss mindestens 3 Zeichen lang sein\",\"V1krgP\":\"Code darf maximal 20 Zeichen lang sein\",\"psqIm5\":\"Arbeiten Sie mit Ihrem Team zusammen, um gemeinsam großartige Veranstaltungen zu gestalten.\",\"4bUH9i\":\"Erfassen Sie Teilnehmerdetails für jedes gekaufte Ticket.\",\"TkfG8v\":\"Details pro Bestellung erfassen\",\"96ryID\":\"Details pro Ticket erfassen\",\"FpsvqB\":\"Farbmodus\",\"jEu4bB\":\"Spalten\",\"CWk59I\":\"Comedy\",\"rPA+Gc\":\"Kommunikationseinstellungen\",\"zFT5rr\":\"abgeschlossen\",\"bUQMpb\":\"Stripe-Einrichtung abschließen\",\"744BMm\":\"Vervollständigen Sie Ihre Bestellung, um Ihre Tickets zu sichern. Dieses Angebot ist zeitlich begrenzt, warten Sie also nicht zu lange.\",\"5YrKW7\":\"Schließen Sie Ihre Zahlung ab, um Ihre Tickets zu sichern.\",\"xGU92i\":\"Vervollständigen Sie Ihr Profil, um dem Team beizutreten.\",\"QOhkyl\":\"Verfassen\",\"ih35UP\":\"Konferenzzentrum\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Konfiguration zugewiesen\",\"X1zdE7\":\"Konfiguration erfolgreich erstellt\",\"mLBUMQ\":\"Konfiguration erfolgreich gelöscht\",\"UIENhw\":\"Konfigurationsnamen sind für Endbenutzer sichtbar. Feste Gebühren werden zum aktuellen Wechselkurs in die Bestellwährung umgerechnet.\",\"eeZdaB\":\"Konfiguration erfolgreich aktualisiert\",\"3cKoxx\":\"Konfigurationen\",\"8v2LRU\":\"Konfigurieren Sie Veranstaltungsdetails, Standort, Bezahloptionen und E-Mail-Benachrichtigungen.\",\"raw09+\":\"Konfigurieren Sie, wie Teilnehmerdetails während des Bezahlvorgangs erfasst werden\",\"FI60XC\":\"Steuern & Gebühren konfigurieren\",\"av6ukY\":\"Legen Sie fest, welche Produkte für diesen Termin verfügbar sind, und passen Sie optional die Preise an.\",\"NGXKG/\":\"E-Mail-Adresse bestätigen\",\"JRQitQ\":\"Neues Passwort bestätigen\",\"Auz0Mz\":\"Bestätigen Sie Ihre E-Mail-Adresse, um alle Funktionen zu nutzen.\",\"7+grte\":\"Bestätigungs-E-Mail gesendet! Bitte überprüfen Sie Ihren Posteingang.\",\"n/7+7Q\":\"Bestätigung gesendet an\",\"x3wVFc\":\"Herzlichen Glückwunsch! Ihre Veranstaltung ist jetzt öffentlich sichtbar.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Verbinden Sie Stripe, um die Bearbeitung von E-Mail-Vorlagen zu ermöglichen\",\"LmvZ+E\":\"Stripe verbinden, um Nachrichten zu aktivieren\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakt \",[\"0\"]],\"41BQ3k\":\"Kontakt-E-Mail\",\"KcXRN+\":\"Kontakt-E-Mail für Support\",\"m8WD6t\":\"Einrichtung fortsetzen\",\"0GwUT4\":\"Weiter zur Kasse\",\"sBV87H\":\"Weiter zur Veranstaltungserstellung\",\"nKtyYu\":\"Weiter zum nächsten Schritt\",\"F3/nus\":\"Weiter zur Zahlung\",\"p2FRHj\":\"Steuern Sie, wie Plattformgebühren für diese Veranstaltung gehandhabt werden\",\"NqfabH\":\"Kontrollieren, wer für diesen Termin reinkommt\",\"fmYxZx\":\"Wer wann reinkommt\",\"1JnTgU\":\"Von oben kopiert\",\"FxVG/l\":\"In die Zwischenablage kopiert\",\"PiH3UR\":\"Kopiert!\",\"4i7smN\":\"Konto-ID kopieren\",\"uUPbPg\":\"Partnerlink kopieren\",\"iVm46+\":\"Code kopieren\",\"cF2ICc\":\"Kundenlink kopieren\",\"+2ZJ7N\":\"Details zum ersten Teilnehmer kopieren\",\"ZN1WLO\":\"E-Mail Kopieren\",\"y1eoq1\":\"Link kopieren\",\"tUGbi8\":\"Meine Daten kopieren an:\",\"y22tv0\":\"Kopieren Sie diesen Link, um ihn überall zu teilen\",\"/4gGIX\":\"In die Zwischenablage kopieren\",\"e0f4yB\":\"Standort konnte nicht gelöscht werden\",\"vkiDx2\":\"Massenaktualisierung konnte nicht vorbereitet werden.\",\"KOavaU\":\"Adressdetails konnten nicht abgerufen werden\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Termin konnte nicht gespeichert werden\",\"eeLExK\":\"Standort konnte nicht gespeichert werden\",\"P0rbCt\":\"Titelbild\",\"60u+dQ\":\"Das Titelbild wird oben auf Ihrer Veranstaltungsseite angezeigt\",\"2NLjA6\":\"Das Titelbild wird oben auf Ihrer Veranstalterseite angezeigt\",\"GkrqoY\":\"Gilt für alle Tickets\",\"zg4oSu\":[[\"0\"],\"-Vorlage erstellen\"],\"RKKhnW\":\"Erstellen Sie ein individuelles Widget, um Tickets auf Ihrer Website zu verkaufen.\",\"6sk7PP\":\"Feste Anzahl erstellen\",\"PhioFp\":\"Erstellen Sie eine neue Check-in-Liste für eine aktive Session oder kontaktieren Sie den Veranstalter, wenn Sie glauben, dass dies ein Fehler ist.\",\"yIRev4\":\"Passwort erstellen\",\"j7xZ7J\":\"Erstellen Sie weitere Veranstalter, um separate Marken, Abteilungen oder Veranstaltungsreihen unter einem Konto zu verwalten. Jeder Veranstalter hat eigene Veranstaltungen, Einstellungen und eine öffentliche Seite.\",\"xfKgwv\":\"Partner erstellen\",\"tudG8q\":\"Erstellen und konfigurieren Sie Tickets und Merchandise zum Verkauf.\",\"YAl9Hg\":\"Konfiguration erstellen\",\"BTne9e\":\"Erstellen Sie benutzerdefinierte E-Mail-Vorlagen für diese Veranstaltung, die die Veranstalter-Standards überschreiben\",\"YIDzi/\":\"Benutzerdefinierte Vorlage erstellen\",\"tsGqx5\":\"Termin erstellen\",\"Nc3l/D\":\"Erstellen Sie Rabatte, Zugangscodes für versteckte Tickets und Sonderangebote.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Für diesen Termin erstellen\",\"eWEV9G\":\"Neues Passwort erstellen\",\"wl2iai\":\"Terminplan erstellen\",\"8AiKIu\":\"Ticket oder Produkt erstellen\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Erstellen Sie verfolgbare Links, um Partner zu belohnen, die Ihre Veranstaltung bewerben.\",\"dkAPxi\":\"Webhook erstellen\",\"5slqwZ\":\"Erstellen Sie Ihre Veranstaltung\",\"JQNMrj\":\"Erstellen Sie Ihre erste Veranstaltung\",\"ZCSSd+\":\"Erstellen Sie Ihre eigene Veranstaltung\",\"67NsZP\":\"Veranstaltung wird erstellt...\",\"H34qcM\":\"Veranstalter wird erstellt...\",\"1YMS+X\":\"Ihre Veranstaltung wird erstellt, bitte warten\",\"yiy8Jt\":\"Ihr Veranstalterprofil wird erstellt, bitte warten\",\"lfLHNz\":\"CTA-Beschriftung ist erforderlich\",\"0xLR6W\":\"Aktuell zugewiesen\",\"iTvh6I\":\"Derzeit zum Kauf verfügbar\",\"A42Dqn\":\"Individuelles Branding\",\"Guo0lU\":\"Benutzerdefiniertes Datum und Uhrzeit\",\"mimF6c\":\"Benutzerdefinierte Nachricht nach dem Checkout\",\"WDMdn8\":\"Benutzerdefinierte Fragen\",\"O6mra8\":\"Benutzerdefinierte Fragen\",\"axv/Mi\":\"Benutzerdefinierte Vorlage\",\"2YeVGY\":\"Kundenlink in die Zwischenablage kopiert\",\"QMHSMS\":\"Der Kunde erhält eine E-Mail zur Bestätigung der Erstattung\",\"L/Qc+w\":\"E-Mail-Adresse des Kunden\",\"wpfWhJ\":\"Vorname des Kunden\",\"GIoqtA\":\"Nachname des Kunden\",\"NihQNk\":\"Kunden\",\"7gsjkI\":\"Passen Sie die an Ihre Kunden gesendeten E-Mails mit Liquid-Vorlagen an. Diese Vorlagen werden als Standards für alle Veranstaltungen in Ihrer Organisation verwendet.\",\"xJaTUK\":\"Passen Sie Layout, Farben und Branding Ihrer Veranstaltungs-Homepage an.\",\"MXZfGN\":\"Passen Sie die Fragen während des Bezahlvorgangs an, um wichtige Informationen von Ihren Teilnehmern zu sammeln.\",\"iX6SLo\":\"Passen Sie den Text auf dem Weiter-Button an\",\"pxNIxa\":\"Passen Sie Ihre E-Mail-Vorlage mit Liquid-Vorlagen an\",\"3trPKm\":\"Passen Sie das Erscheinungsbild Ihrer Veranstalterseite an\",\"U0sC6H\":\"Täglich\",\"/gWrVZ\":\"Tägliche Einnahmen, Steuern, Gebühren und Rückerstattungen für alle Veranstaltungen\",\"zgCHnE\":\"Täglicher Verkaufsbericht\",\"nHm0AI\":\"Aufschlüsselung der täglichen Verkäufe, Steuern und Gebühren\",\"1aPnDT\":\"Tanz\",\"pvnfJD\":\"Dunkel\",\"MaB9wW\":\"Terminabsage\",\"e6cAxJ\":\"Termin abgesagt\",\"81jBnC\":\"Termin erfolgreich abgesagt\",\"a/C/6R\":\"Termin erfolgreich erstellt\",\"IW7Q+u\":\"Termin gelöscht\",\"rngCAz\":\"Termin erfolgreich gelöscht\",\"lnYE59\":\"Datum der Veranstaltung\",\"gnBreG\":\"Datum der Bestellaufgabe\",\"vHbfoQ\":\"Termin reaktiviert\",\"hvah+S\":\"Datum für neue Verkäufe wieder geöffnet\",\"Ez0YsD\":\"Termin erfolgreich aktualisiert\",\"VTsZuy\":\"Termine und Uhrzeiten werden verwaltet auf der\",\"/ITcnz\":\"Tag\",\"H7OUPr\":\"Tag\",\"JtHrX9\":\"Tag des Monats\",\"J/Upwb\":\"Tage\",\"vDVA2I\":\"Tage des Monats\",\"rDLvlL\":\"Wochentage\",\"r6zgGo\":\"Dezember\",\"jbq7j2\":\"Ablehnen\",\"ovBPCi\":\"Standard\",\"JtI4vj\":\"Standard-Erfassung von Teilnehmerinformationen\",\"ULjv90\":\"Standardkapazität pro Termin\",\"3R/Tu2\":\"Standard-Gebührenbehandlung\",\"1bZAZA\":\"Standardvorlage wird verwendet\",\"HNlEFZ\":\"löschen\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[[\"count\"],\" ausgewählte(n) Termin(e) löschen? Termine mit Bestellungen werden übersprungen. Dies kann nicht rückgängig gemacht werden.\"],\"vu7gDm\":\"Partner löschen\",\"KZN4Lc\":\"Alle löschen\",\"6EkaOO\":\"Termin löschen\",\"io0G93\":\"Veranstaltung löschen\",\"+jw/c1\":\"Bild löschen\",\"hdyeZ0\":\"Job löschen\",\"xxjZeP\":\"Standort löschen\",\"sY3tIw\":\"Veranstalter löschen\",\"UBv8UK\":\"Endgültig löschen\",\"dPyJ15\":\"Vorlage löschen\",\"mxsm1o\":\"Diese Frage löschen? Dies kann nicht rückgängig gemacht werden.\",\"snMaH4\":\"Webhook löschen\",\"LIZZLY\":[[\"0\"],\" Termin(e) gelöscht\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Alle abwählen\",\"NvuEhl\":\"Designelemente\",\"H8kMHT\":\"Code nicht erhalten?\",\"G8KNgd\":\"Anderer Standort\",\"E/QGRL\":\"Deaktiviert\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Diese Nachricht schließen\",\"BREO0S\":\"Zeigen Sie ein Kontrollkästchen an, mit dem Kunden dem Erhalt von Marketing-Mitteilungen von diesem Veranstalter zustimmen können.\",\"pfa8F0\":\"Anzeigename\",\"Kdpf90\":\"Nicht vergessen!\",\"352VU2\":\"Haben Sie noch kein Konto? <0>Registrieren\",\"AXXqG+\":\"Spende\",\"DPfwMq\":\"Fertig\",\"JoPiZ2\":\"Anweisungen für Türpersonal\",\"2+O9st\":\"Laden Sie Verkaufs-, Teilnehmer- und Finanzberichte für alle abgeschlossenen Bestellungen herunter.\",\"eneWvv\":\"Entwurf\",\"Ts8hhq\":\"Aufgrund des hohen Spam-Risikos müssen Sie ein Stripe-Konto verbinden, bevor Sie E-Mail-Vorlagen ändern können. Dies dient dazu sicherzustellen, dass alle Veranstalter verifiziert und rechenschaftspflichtig sind.\",\"TnzbL+\":\"Aufgrund des hohen Spam-Risikos müssen Sie ein Stripe-Konto verbinden, bevor Sie Nachrichten an Teilnehmer senden können.\\nDies dient dazu sicherzustellen, dass alle Veranstalter verifiziert und rechenschaftspflichtig sind.\",\"euc6Ns\":\"Duplizieren\",\"YueC+F\":\"Termin duplizieren\",\"KRmTkx\":\"Produkt duplizieren\",\"Jd3ymG\":\"Dauer muss mindestens 1 Minute betragen.\",\"KIjvtr\":\"Niederländisch\",\"22xieU\":\"z.B. 180 (3 Stunden)\",\"/zajIE\":\"z. B. Morgensession\",\"SPKbfM\":\"z.\u202FB. Tickets kaufen, Jetzt registrieren\",\"fc7wGW\":\"z.B. Wichtiges Update zu Ihren Tickets\",\"54MPqC\":\"z.B. Standard, Premium, Enterprise\",\"3RQ81z\":\"Jede Person erhält eine E-Mail mit einem reservierten Platz, um den Kauf abzuschließen.\",\"5oD9f/\":\"Früher\",\"LTzmgK\":[[\"0\"],\"-Vorlage bearbeiten\"],\"v4+lcZ\":\"Partner bearbeiten\",\"2iZEz7\":\"Antwort bearbeiten\",\"t2bbp8\":\"Teilnehmer bearbeiten\",\"etaWtB\":\"Teilnehmerdetails bearbeiten\",\"+guao5\":\"Konfiguration bearbeiten\",\"1Mp/A4\":\"Termin bearbeiten\",\"m0ZqOT\":\"Standort bearbeiten\",\"8oivFT\":\"Standort bearbeiten\",\"vRWOrM\":\"Bestelldetails bearbeiten\",\"fW5sSv\":\"Webhook bearbeiten\",\"nP7CdQ\":\"Webhook bearbeiten\",\"MRZxAn\":\"Bearbeitet\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Bildung\",\"iiWXDL\":\"Berechtigungsfehler\",\"zPiC+q\":\"Berechtigte Check-In-Listen\",\"SiVstt\":\"E-Mail & geplante Nachrichten\",\"V2sk3H\":\"E-Mail & Vorlagen\",\"hbwCKE\":\"E-Mail-Adresse in Zwischenablage kopiert\",\"dSyJj6\":\"E-Mail-Adressen stimmen nicht überein\",\"elW7Tn\":\"E-Mail-Inhalt\",\"ZsZeV2\":\"E-Mail ist erforderlich\",\"Be4gD+\":\"E-Mail-Vorschau\",\"6IwNUc\":\"E-Mail-Vorlagen\",\"H/UMUG\":\"E-Mail-Verifizierung erforderlich\",\"L86zy2\":\"E-Mail erfolgreich verifiziert!\",\"FSN4TS\":\"Widget einbetten\",\"z9NkYY\":\"Einbettbares Widget\",\"Qj0GKe\":\"Teilnehmer-Selbstbedienung aktivieren\",\"hEtQsg\":\"Teilnehmer-Selbstbedienung standardmäßig aktivieren\",\"Upeg/u\":\"Diese Vorlage für das Senden von E-Mails aktivieren\",\"7dSOhU\":\"Warteliste aktivieren\",\"RxzN1M\":\"Aktiviert\",\"xDr/ct\":\"Ende\",\"sGjBEq\":\"Enddatum & -zeit (optional)\",\"PKXt9R\":\"Das Enddatum muss nach dem Startdatum liegen\",\"UmzbPa\":\"Enddatum des Termins\",\"ZayGC7\":\"An einem Datum enden\",\"48Y16Q\":\"Endzeit (optional)\",\"jpNdOC\":\"Endzeit des Termins\",\"TbaYrr\":[\"Beendet \",[\"0\"]],\"CFgwiw\":[\"Endet \",[\"0\"]],\"SqOIQU\":\"Geben Sie einen Kapazitätswert ein oder wählen Sie unbegrenzt.\",\"h37gRz\":\"Geben Sie eine Bezeichnung ein oder wählen Sie, sie zu entfernen.\",\"7YZofi\":\"Geben Sie einen Betreff und Inhalt ein, um die Vorschau zu sehen\",\"khyScF\":\"Geben Sie eine Zeit ein, um zu verschieben.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Partner-E-Mail eingeben (optional)\",\"ARkzso\":\"Partnername eingeben\",\"ej4L8b\":\"Kapazität eingeben\",\"6KnyG0\":\"E-Mail eingeben\",\"INDKM9\":\"E-Mail-Betreff eingeben...\",\"xUgUTh\":\"Vornamen eingeben\",\"9/1YKL\":\"Nachnamen eingeben\",\"VpwcSk\":\"Neues Passwort eingeben\",\"kWg31j\":\"Eindeutigen Partnercode eingeben\",\"C3nD/1\":\"Geben Sie Ihre E-Mail-Adresse ein\",\"VmXiz4\":\"Geben Sie Ihre E-Mail-Adresse ein und wir senden Ihnen Anweisungen zum Zurücksetzen Ihres Passworts.\",\"n9V+ps\":\"Geben Sie Ihren Namen ein\",\"IdULhL\":\"Geben Sie Ihre Umsatzsteuer-Identifikationsnummer mit Ländercode ohne Leerzeichen ein (z.B. IE1234567A, DE123456789)\",\"o21Y+P\":\"Einträge\",\"X88/6w\":\"Einträge erscheinen hier, wenn Kunden sich auf die Warteliste für ausverkaufte Produkte setzen.\",\"LslKhj\":\"Fehler beim Laden der Protokolle\",\"VCNHvW\":\"Veranstaltung archiviert\",\"ZD0XSb\":\"Veranstaltung erfolgreich archiviert\",\"WgD6rb\":\"Veranstaltungskategorie\",\"b46pt5\":\"Veranstaltungs-Titelbild\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Veranstaltung erstellt\",\"1Hzev4\":\"Event-benutzerdefinierte Vorlage\",\"7u9/DO\":\"Veranstaltung erfolgreich gelöscht\",\"imgKgl\":\"Veranstaltungsbeschreibung\",\"kJDmsI\":\"Veranstaltungsdetails\",\"m/N7Zq\":\"Vollständige Veranstaltungsadresse\",\"Nl1ZtM\":\"Veranstaltungsort\",\"PYs3rP\":\"Veranstaltungsname\",\"HhwcTQ\":\"Veranstaltungsname\",\"WZZzB6\":\"Veranstaltungsname ist erforderlich\",\"Wd5CDM\":\"Der Veranstaltungsname sollte weniger als 150 Zeichen lang sein\",\"4JzCvP\":\"Veranstaltung nicht verfügbar\",\"Gh9Oqb\":\"Name des Veranstalters\",\"mImacG\":\"Veranstaltungsseite\",\"Hk9Ki/\":\"Veranstaltung erfolgreich wiederhergestellt\",\"JyD0LH\":\"Veranstaltungseinstellungen\",\"cOePZk\":\"Veranstaltungszeit\",\"e8WNln\":\"Veranstaltungszeitzone\",\"GeqWgj\":\"Veranstaltungszeitzone\",\"XVLu2v\":\"Veranstaltungstitel\",\"OfmsI9\":\"Event zu neu\",\"4SILkp\":\"Veranstaltungsgesamtwerte\",\"YDVUVl\":\"Ereignistypen\",\"+HeiVx\":\"Veranstaltung aktualisiert\",\"4K2OjV\":\"Veranstaltungsort\",\"19j6uh\":\"Veranstaltungsleistung\",\"PC3/fk\":\"Veranstaltungen, die in den nächsten 24 Stunden beginnen\",\"nwiZdc\":[\"Alle \",[\"0\"]],\"2LJU4o\":[\"Alle \",[\"0\"],\" Tage\"],\"yLiYx+\":[\"Alle \",[\"0\"],\" Monate\"],\"nn9ice\":[\"Alle \",[\"0\"],\" Wochen\"],\"Cdr8f9\":[\"Alle \",[\"0\"],\" Wochen am \",[\"1\"]],\"GVEHRk\":[\"Alle \",[\"0\"],\" Jahre\"],\"fTFfOK\":\"Jede E-Mail-Vorlage muss eine Aktionsschaltfläche enthalten, die zur entsprechenden Seite verlinkt\",\"BVinvJ\":\"Beispiele: \\\"Wie haben Sie von uns erfahren?\\\", \\\"Firmenname für Rechnung\\\"\",\"2hGPQG\":\"Beispiele: \\\"T-Shirt-Größe\\\", \\\"Essenspräferenz\\\", \\\"Berufsbezeichnung\\\"\",\"qNuTh3\":\"Ausnahme\",\"M1RnFv\":\"Abgelaufen\",\"kF8HQ7\":\"Antworten exportieren\",\"2KAI4N\":\"CSV exportieren\",\"JKfSAv\":\"Export fehlgeschlagen. Bitte versuchen Sie es erneut.\",\"SVOEsu\":\"Export gestartet. Datei wird vorbereitet...\",\"wuyaZh\":\"Export erfolgreich\",\"9bpUSo\":\"Partner werden exportiert\",\"jtrqH9\":\"Teilnehmer werden exportiert\",\"R4Oqr8\":\"Export abgeschlossen. Datei wird heruntergeladen...\",\"UlAK8E\":\"Bestellungen werden exportiert\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Fehlgeschlagen\",\"8uOlgz\":\"Fehlgeschlagen am\",\"tKcbYd\":\"Fehlgeschlagene Jobs\",\"SsI9v/\":\"Bestellung konnte nicht abgebrochen werden. Bitte versuchen Sie es erneut.\",\"LdPKPR\":\"Konfiguration konnte nicht zugewiesen werden\",\"PO0cfn\":\"Termin konnte nicht abgesagt werden\",\"YUX+f+\":\"Termine konnten nicht abgesagt werden\",\"SIHgVQ\":\"Nachricht konnte nicht abgebrochen werden\",\"cEFg3R\":\"Partner konnte nicht erstellt werden\",\"dVgNF1\":\"Konfiguration konnte nicht erstellt werden\",\"fAoRRJ\":\"Terminplan konnte nicht erstellt werden\",\"U66oUa\":\"Vorlage konnte nicht erstellt werden\",\"aFk48v\":\"Konfiguration konnte nicht gelöscht werden\",\"n1CYMH\":\"Termin konnte nicht gelöscht werden\",\"KXv+Qn\":\"Termin konnte nicht gelöscht werden. Möglicherweise gibt es bereits Bestellungen.\",\"JJ0uRo\":\"Termine konnten nicht gelöscht werden\",\"rgoBnv\":\"Fehler beim Löschen der Veranstaltung\",\"Zw6LWb\":\"Job konnte nicht gelöscht werden\",\"tq0abZ\":\"Jobs konnten nicht gelöscht werden\",\"2mkc3c\":\"Fehler beim Löschen des Veranstalters\",\"vKMKnu\":\"Frage konnte nicht gelöscht werden\",\"xFj7Yj\":\"Vorlage konnte nicht gelöscht werden\",\"jo3Gm6\":\"Partner konnten nicht exportiert werden\",\"Jjw03p\":\"Fehler beim Export der Teilnehmer\",\"ZPwFnN\":\"Fehler beim Export der Bestellungen\",\"zGE3CH\":\"Export des Berichts fehlgeschlagen. Bitte versuchen Sie es erneut.\",\"lS9/aZ\":\"Empfänger konnten nicht geladen werden\",\"X4o0MX\":\"Webhook konnte nicht geladen werden\",\"ETcU7q\":\"Platz konnte nicht angeboten werden\",\"5670b9\":\"Tickets konnten nicht angeboten werden\",\"e5KIbI\":\"Termin konnte nicht reaktiviert werden\",\"7zyx8a\":\"Konnte nicht von der Warteliste entfernt werden\",\"A/P7PX\":\"Überschreibung konnte nicht entfernt werden\",\"ogWc1z\":\"Datum konnte nicht wieder geöffnet werden\",\"0+iwE5\":\"Fragen konnten nicht neu sortiert werden\",\"EJPAcd\":\"Bestellbestätigung konnte nicht erneut gesendet werden\",\"DjSbj3\":\"Ticket konnte nicht erneut gesendet werden\",\"YQ3QSS\":\"Bestätigungscode konnte nicht erneut gesendet werden\",\"wDioLj\":\"Job konnte nicht wiederholt werden\",\"DKYTWG\":\"Jobs konnten nicht wiederholt werden\",\"WRREqF\":\"Überschreibung konnte nicht gespeichert werden\",\"sj/eZA\":\"Preisüberschreibung konnte nicht gespeichert werden\",\"780n8A\":\"Produkteinstellungen konnten nicht gespeichert werden\",\"zTkTF3\":\"Vorlage konnte nicht gespeichert werden\",\"l6acRV\":\"Fehler beim Speichern der Umsatzsteuereinstellungen. Bitte versuchen Sie es erneut.\",\"T6B2gk\":\"Nachricht konnte nicht gesendet werden. Bitte versuchen Sie es erneut.\",\"lKh069\":\"Exportauftrag konnte nicht gestartet werden\",\"t/KVOk\":\"Fehler beim Starten der Identitätswechsel. Bitte versuchen Sie es erneut.\",\"QXgjH0\":\"Fehler beim Beenden der Identitätswechsel. Bitte versuchen Sie es erneut.\",\"i0QKrm\":\"Partner konnte nicht aktualisiert werden\",\"NNc33d\":\"Fehler beim Aktualisieren der Antwort.\",\"E9jY+o\":\"Teilnehmer konnte nicht aktualisiert werden\",\"uQynyf\":\"Konfiguration konnte nicht aktualisiert werden\",\"i2PFQJ\":\"Fehler beim Aktualisieren des Veranstaltungsstatus\",\"EhlbcI\":\"Aktualisierung der Messaging-Stufe fehlgeschlagen\",\"rpGMzC\":\"Bestellung konnte nicht aktualisiert werden\",\"T2aCOV\":\"Fehler beim Aktualisieren des Veranstalterstatus\",\"Eeo/Gy\":\"Einstellung konnte nicht aktualisiert werden\",\"kqA9lY\":\"Umsatzsteuereinstellungen konnten nicht aktualisiert werden\",\"7/9RFs\":\"Bild-Upload fehlgeschlagen.\",\"nkNfWu\":\"Fehler beim Hochladen des Bildes. Bitte versuchen Sie es erneut.\",\"rxy0tG\":\"E-Mail konnte nicht verifiziert werden\",\"QRUpCk\":\"Familie\",\"5LO38w\":\"Schnelle Auszahlungen auf dein Bankkonto\",\"4lgLew\":\"Februar\",\"9bHCo2\":\"Gebührungswährung\",\"/sV91a\":\"Gebührenbehandlung\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Gebühren umgangen\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Datei ist zu groß. Maximale Größe beträgt 5MB.\",\"VejKUM\":\"Füllen Sie zuerst Ihre Daten oben aus\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Teilnehmer filtern\",\"8OvVZZ\":\"Teilnehmer filtern\",\"N/H3++\":\"Nach Termin filtern\",\"mvrlBO\":\"Nach Veranstaltung filtern\",\"g+xRXP\":\"Stripe-Einrichtung beenden\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"Erster\",\"1vBhpG\":\"Ersten Teilnehmer\",\"4pwejF\":\"Vorname ist erforderlich\",\"3lkYdQ\":\"Festgebühr\",\"6bBh3/\":\"Feste Gebühr\",\"zWqUyJ\":\"Feste Gebühr pro Transaktion\",\"LWL3Bs\":\"Feste Gebühr muss 0 oder größer sein\",\"0RI8m4\":\"Blitz aus\",\"q0923e\":\"Blitz an\",\"lWxAUo\":\"Essen & Trinken\",\"nFm+5u\":\"Fußzeilentext\",\"a8nooQ\":\"Vierter\",\"mob/am\":\"Fr\",\"wtuVU4\":\"Häufigkeit\",\"xVhQZV\":\"Fr\",\"39y5bn\":\"Freitag\",\"f5UbZ0\":\"Volle Datenhoheit\",\"MY2SVM\":\"Vollständige Erstattung\",\"UsIfa8\":\"Vollständige aufgelöste Adresse\",\"PGQLdy\":\"zukünftige\",\"8N/j1s\":\"Nur zukünftige Termine\",\"yRx/6K\":\"Zukünftige Termine werden kopiert, wobei die Kapazität auf null zurückgesetzt wird\",\"T02gNN\":\"Allgemeiner Eintritt\",\"3ep0Gx\":\"Allgemeine Informationen über Ihren Veranstalter\",\"ziAjHi\":\"Generieren\",\"exy8uo\":\"Code generieren\",\"4CETZY\":\"Wegbeschreibung\",\"pjkEcB\":\"Bezahlung erhalten\",\"lGYzP6\":\"Bezahlt werden mit Stripe\",\"ZDIydz\":\"Erste Schritte\",\"u6FPxT\":\"Tickets erhalten\",\"8KDgYV\":\"Bereiten Sie Ihre Veranstaltung vor\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Zurück\",\"oNL5vN\":\"Zur Eventseite\",\"gHSuV/\":\"Zur Startseite gehen\",\"8+Cj55\":\"Zum Terminplan\",\"6nDzTl\":\"Gute Lesbarkeit\",\"76gPWk\":\"Verstanden\",\"aGWZUr\":\"Bruttoeinnahmen\",\"n8IUs7\":\"Bruttoeinnahmen\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gästeverwaltung\",\"NUsTc4\":\"Findet gerade statt\",\"kTSQej\":[\"Hallo \",[\"0\"],\", verwalten Sie Ihre Plattform von hier aus.\"],\"dORAcs\":\"Hier sind alle Tickets, die mit Ihrer E-Mail-Adresse verknüpft sind.\",\"g+2103\":\"Hier ist Ihr Partnerlink\",\"bVsnqU\":\"Hallo,\",\"/iE8xx\":\"Hi.Events Gebühr\",\"zppscQ\":\"Hi.Events Plattformgebühren und MwSt.-Aufschlüsselung nach Transaktion\",\"D+zLDD\":\"Verborgen\",\"DRErHC\":\"Vor Teilnehmern verborgen - nur für Veranstalter sichtbar\",\"NNnsM0\":\"Erweiterte Optionen ausblenden\",\"P+5Pbo\":\"Antworten ausblenden\",\"VMlRqi\":\"Details ausblenden\",\"FmogyU\":\"Optionen ausblenden\",\"gtEbeW\":\"Hervorheben\",\"NF8sdv\":\"Hervorhebungsnachricht\",\"MXSqmS\":\"Dieses Produkt hervorheben\",\"7ER2sc\":\"Hervorgehoben\",\"sq7vjE\":\"Hervorgehobene Produkte haben eine andere Hintergrundfarbe, um sie auf der Event-Seite hervorzuheben.\",\"1+WSY1\":\"Hobbys\",\"yY8wAv\":\"Stunden\",\"sy9anN\":\"Wie lange ein Kunde nach Erhalt eines Angebots Zeit hat, den Kauf abzuschließen. Leer lassen für kein Zeitlimit.\",\"n2ilNh\":\"Wie lange läuft der Terminplan?\",\"DMr2XN\":\"Wie oft?\",\"AVpmAa\":\"Wie man offline zahlt\",\"cceMns\":\"Wie die Umsatzsteuer auf die von uns berechneten Plattformgebühren angewendet wird.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Ungarisch\",\"8Wgd41\":\"Ich erkenne meine Verantwortung als Datenverantwortlicher an\",\"O8m7VA\":\"Ich stimme dem Erhalt von E-Mail-Benachrichtigungen zu dieser Veranstaltung zu\",\"YLgdk5\":\"Ich bestätige, dass dies eine Transaktionsnachricht im Zusammenhang mit dieser Veranstaltung ist\",\"4/kP5a\":\"Wenn sich kein neues Tab automatisch geöffnet hat, klicke bitte unten auf die Schaltfläche, um mit dem Checkout fortzufahren.\",\"W/eN+G\":\"Wenn leer, wird die Adresse verwendet, um einen Google Maps-Link zu erstellen\",\"iIEaNB\":\"Wenn Sie ein Konto bei uns haben, erhalten Sie eine E-Mail mit Anweisungen zum Zurücksetzen Ihres Passworts.\",\"an5hVd\":\"Bilder\",\"tSVr6t\":\"Identität annehmen\",\"TWXU0c\":\"Benutzer verkörpern\",\"5LAZwq\":\"Identitätswechsel gestartet\",\"IMwcdR\":\"Identitätswechsel beendet\",\"0I0Hac\":\"Wichtiger Hinweis\",\"yD3avI\":\"Wichtig: Wenn Sie Ihre E-Mail-Adresse ändern, wird der Link für den Zugriff auf diese Bestellung aktualisiert. Nach dem Speichern werden Sie zum neuen Bestelllink weitergeleitet.\",\"jT142F\":[\"In \",[\"diffHours\"],\" Stunden\"],\"OoSyqO\":[\"In \",[\"diffMinutes\"],\" Minuten\"],\"PdMhEx\":[\"in den letzten \",[\"0\"],\" Min.\"],\"u7r0G5\":\"Vor Ort — Veranstaltungsort festlegen\",\"Ip0hl5\":\"in_person, online, unset oder mixed\",\"F1Xp97\":\"Einzelne Teilnehmer\",\"85e6zs\":\"Liquid-Token einfügen\",\"38KFY0\":\"Variable einfügen\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Sofortige Stripe-Auszahlungen\",\"nbfdhU\":\"Integrationen\",\"I8eJ6/\":\"Interne Notizen auf dem Ticket des Teilnehmers\",\"B2Tpo0\":\"Ungültige E-Mail\",\"5tT0+u\":\"Ungültiges E-Mail-Format\",\"f9WRpE\":\"Ungültiger Dateityp. Bitte laden Sie ein Bild hoch.\",\"tnL+GP\":\"Ungültige Liquid-Syntax. Bitte korrigieren Sie sie und versuchen Sie es erneut.\",\"N9JsFT\":\"Ungültiges Format der Umsatzsteuer-Identifikationsnummer\",\"g+lLS9\":\"Teammitglied einladen\",\"1z26sk\":\"Teammitglied einladen\",\"KR0679\":\"Teammitglieder einladen\",\"aH6ZIb\":\"Laden Sie Ihr Team ein\",\"IuMGvq\":\"Rechnung\",\"Lj7sBL\":\"Italienisch\",\"F5/CBH\":\"Artikel\",\"BzfzPK\":\"Artikel\",\"rjyWPb\":\"Januar\",\"KmWyx0\":\"Job\",\"o5r6b2\":\"Job gelöscht\",\"cd0jIM\":\"Job-Details\",\"ruJO57\":\"Job-Name\",\"YZi+Hu\":\"Job zur Wiederholung eingereiht\",\"nCywLA\":\"Von überall teilnehmen\",\"SNzppu\":\"Warteliste beitreten\",\"dLouFI\":[\"Auf die Warteliste für \",[\"productDisplayName\"],\" setzen\"],\"2gMuHR\":\"Beigetreten\",\"u4ex5r\":\"Juli\",\"zeEQd/\":\"Juni\",\"MxjCqk\":\"Suchen Sie nur nach Ihren Tickets?\",\"xOTzt5\":\"gerade eben\",\"0RihU9\":\"Soeben beendet\",\"lB2hSG\":[\"Halte mich über Neuigkeiten und Veranstaltungen von \",[\"0\"],\" auf dem Laufenden\"],\"ioFA9i\":\"Behalten Sie den Gewinn.\",\"4Sffp7\":\"Bezeichnung für den Termin\",\"o66QSP\":\"Bezeichnungsänderungen\",\"RtKKbA\":\"Letzter\",\"DruLRc\":\"Letzte 14 Tage\",\"ve9JTU\":\"Nachname ist erforderlich\",\"h0Q9Iw\":\"Letzte Antwort\",\"gw3Ur5\":\"Zuletzt ausgelöst\",\"FIq1Ba\":\"Später\",\"xvnLMP\":\"Letzte Check-ins\",\"pzAivY\":\"Breitengrad des aufgelösten Standorts\",\"N5TErv\":\"Leer lassen für unbegrenzt\",\"L/hDDD\":\"Leer lassen, um diese Check-in-Liste auf alle Termine anzuwenden\",\"9Pf3wk\":\"Aktiviert lassen, um alle Tickets der Veranstaltung abzudecken. Deaktivieren, um bestimmte Tickets auszuwählen.\",\"Hq2BzX\":\"Informieren Sie sie über die Änderung\",\"+uexiy\":\"Informieren Sie sie über die Änderungen\",\"exYcTF\":\"Bibliothek\",\"1njn7W\":\"Hell\",\"1qY5Ue\":\"Link abgelaufen oder ungültig\",\"+zSD/o\":\"Link zur Veranstaltungs-Startseite\",\"psosdY\":\"Link zu Bestelldetails\",\"6JzK4N\":\"Link zum Ticket\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links erlaubt\",\"2BBAbc\":\"Liste\",\"5NZpX8\":\"Listenansicht\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live-Veranstaltungen\",\"C33p4q\":\"Geladene Termine\",\"WdmJIX\":\"Vorschau wird geladen...\",\"IoDI2o\":\"Token werden geladen...\",\"G3Ge9Z\":\"Webhook-Protokolle werden geladen...\",\"NFxlHW\":\"Webhooks werden geladen\",\"E0DoRM\":\"Standort gelöscht\",\"NtLHT3\":\"Standort - formatierte Adresse\",\"h4vxDc\":\"Standort - Breitengrad\",\"f2TMhR\":\"Standort - Längengrad\",\"lnCo2f\":\"Standortmodus\",\"8pmGFk\":\"Standortname\",\"7w8lJU\":\"Standort gespeichert\",\"YsRXDD\":\"Standort aktualisiert\",\"A/kIva\":\"Standortänderungen\",\"VppBoU\":\"Standorte\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Titelbild\",\"gddQe0\":\"Logo und Titelbild für Ihren Veranstalter\",\"TBEnp1\":\"Logo wird in der Kopfzeile angezeigt\",\"Jzu30R\":\"Logo wird auf dem Ticket angezeigt\",\"zKTMTg\":\"Längengrad des aufgelösten Standorts\",\"PSRm6/\":\"Meine Tickets nachschlagen\",\"yJFu/X\":\"Hauptbüro\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[[\"0\"],\" verwalten\"],\"wZJfA8\":\"Verwalten Sie Termine und Uhrzeiten Ihrer wiederkehrenden Veranstaltung\",\"RlzPUE\":\"Auf Stripe verwalten\",\"6NXJRK\":\"Terminplan verwalten\",\"zXuaxY\":\"Verwalten Sie die Warteliste Ihrer Veranstaltung, sehen Sie Statistiken ein und bieten Sie Teilnehmern Tickets an.\",\"BWTzAb\":\"Manuell\",\"g2npA5\":\"Manuelles Angebot\",\"hg6l4j\":\"März\",\"pqRBOz\":\"Als validiert markieren (Admin-Überschreibung)\",\"2L3vle\":\"Max. Nachrichten / 24h\",\"Qp4HWD\":\"Max. Empfänger / Nachricht\",\"3JzsDb\":\"Mai\",\"agPptk\":\"Medium\",\"xDAtGP\":\"Nachricht\",\"bECJqy\":\"Nachricht erfolgreich genehmigt\",\"1jRD0v\":\"Teilnehmer mit bestimmten Tickets benachrichtigen\",\"uQLXbS\":\"Nachricht abgebrochen\",\"48rf3i\":\"Nachricht darf 5000 Zeichen nicht überschreiten\",\"ZPj0Q8\":\"Nachrichtendetails\",\"Vjat/X\":\"Nachricht ist erforderlich\",\"0/yJtP\":\"Nachricht an Bestelleigentümer mit bestimmten Produkten senden\",\"saG4At\":\"Nachricht geplant\",\"mFdA+i\":\"Messaging-Stufe\",\"v7xKtM\":\"Messaging-Stufe erfolgreich aktualisiert\",\"H9HlDe\":\"Minuten\",\"agRWc1\":\"Minuten\",\"YYzBv9\":\"Mo\",\"zz/Wd/\":\"Modus\",\"fpMgHS\":\"Mo\",\"hty0d5\":\"Montag\",\"JbIgPz\":\"Geldbeträge sind ungefähre Summen über alle Währungen\",\"qvF+MT\":\"Überwachen und verwalten Sie fehlgeschlagene Hintergrundprozesse\",\"kY2ll9\":\"Monat\",\"HajiZl\":\"Monat\",\"+8Nek/\":\"Monatlich\",\"1LkxnU\":\"Monatliches Muster\",\"6jefe3\":\"Monate\",\"f8jrkd\":\"mehr\",\"JcD7qf\":\"Weitere Aktionen\",\"w36OkR\":\"Meistgesehene Events (Letzte 14 Tage)\",\"+Y/na7\":\"Alle Termine nach vorne oder hinten verschieben\",\"3DIpY0\":\"Mehrere Standorte\",\"g9cQCP\":\"Mehrere Tickettypen\",\"GfaxEk\":\"Musik\",\"oVGCGh\":\"Meine Tickets\",\"8/brI5\":\"Name ist erforderlich\",\"sFFArG\":\"Name muss weniger als 255 Zeichen haben\",\"sCV5Yc\":\"Name der Veranstaltung\",\"xxU3NX\":\"Nettoeinnahmen\",\"7I8LlL\":\"Neue Kapazität\",\"n1GRql\":\"Neue Bezeichnung\",\"y0Fcpd\":\"Neuer Standort\",\"ArHT/C\":\"Neue Anmeldungen\",\"uK7xWf\":\"Neue Uhrzeit:\",\"veT5Br\":\"Nächster Termin\",\"WXtl5X\":[\"Nächster: \",[\"nextFormatted\"]],\"eWRECP\":\"Nachtleben\",\"HSw5l3\":\"Nein - Ich bin eine Privatperson oder ein nicht umsatzsteuerregistriertes Unternehmen\",\"VHfLAW\":\"Keine Konten\",\"+jIeoh\":\"Keine Konten gefunden\",\"074+X8\":\"Keine aktiven Webhooks\",\"zxnup4\":\"Keine Partner vorhanden\",\"Dwf4dR\":\"Noch keine Teilnehmerfragen\",\"th7rdT\":\"Keine Teilnehmer\",\"PKySlW\":\"Für diesen Termin sind noch keine Teilnehmer vorhanden.\",\"/UC6qk\":\"Keine Attributionsdaten gefunden\",\"E2vYsO\":\"Stripe hat noch keine Funktionen gemeldet.\",\"amMkpL\":\"Keine Kapazität\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Keine Check-In-Listen für diese Veranstaltung verfügbar.\",\"wG+knX\":\"Noch keine Check-ins\",\"+dAKxg\":\"Keine Konfigurationen gefunden\",\"LiLk8u\":\"Keine Verbindungen verfügbar\",\"eb47T5\":\"Keine Daten für die ausgewählten Filter gefunden. Versuchen Sie, den Datumsbereich oder die Währung anzupassen.\",\"lFVUyx\":\"Keine terminspezifische Check-in-Liste\",\"I8mtzP\":\"Keine Termine in diesem Monat verfügbar. Versuchen Sie, zu einem anderen Monat zu navigieren.\",\"yDukIL\":\"Keine Termine entsprechen den aktuellen Filtern.\",\"B7phdj\":\"Keine Termine entsprechen Ihren Filtern\",\"/ZB4Um\":\"Keine Termine entsprechen Ihrer Suche\",\"gEdNe8\":\"Noch keine Termine geplant\",\"27GYXJ\":\"Keine Termine geplant.\",\"pZNOT9\":\"Kein Enddatum\",\"dW40Uz\":\"Keine Events gefunden\",\"8pQ3NJ\":\"Keine Veranstaltungen, die in den nächsten 24 Stunden beginnen\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Keine fehlgeschlagenen Jobs\",\"EpvBAp\":\"Keine Rechnung\",\"XZkeaI\":\"Keine Protokolle gefunden\",\"nrSs2u\":\"Keine Nachrichten gefunden\",\"Rj99yx\":\"Keine Termine verfügbar\",\"IFU1IG\":\"Keine Termine an diesem Datum\",\"OVFwlg\":\"Noch keine Bestellfragen\",\"EJ7bVz\":\"Keine Bestellungen gefunden\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Für diesen Termin liegen noch keine Bestellungen vor.\",\"wUv5xQ\":\"Keine Veranstalteraktivität in den letzten 14 Tagen\",\"vLd1tV\":\"Kein Veranstalterkontext verfügbar.\",\"B7w4KY\":\"Keine weiteren Veranstalter verfügbar\",\"PChXMe\":\"Keine bezahlten Bestellungen\",\"6jYQGG\":\"Keine vergangenen Veranstaltungen\",\"CHzaTD\":\"Keine beliebten Events in den letzten 14 Tagen\",\"zK/+ef\":\"Keine Produkte zur Auswahl verfügbar\",\"M1/lXs\":\"Keine Produkte für diese Veranstaltung konfiguriert.\",\"kY7XDn\":\"Keine Produkte haben Wartelisteneinträge\",\"wYiAtV\":\"Keine neuen Kontoanmeldungen\",\"UW90md\":\"Keine Empfänger gefunden\",\"QoAi8D\":\"Keine Antwort\",\"JeO7SI\":\"Keine Antwort\",\"EK/G11\":\"Noch keine Antworten\",\"7J5OKy\":\"Noch keine gespeicherten Standorte\",\"wpCjcf\":\"Noch keine gespeicherten Standorte. Sie erscheinen hier, sobald Sie Veranstaltungen mit Adressen erstellen.\",\"mPdY6W\":\"Keine Vorschläge\",\"3sRuiW\":\"Keine Tickets gefunden\",\"k2C0ZR\":\"Keine bevorstehenden Termine\",\"yM5c0q\":\"Keine bevorstehenden Veranstaltungen\",\"qpC74J\":\"Keine Benutzer gefunden\",\"8wgkoi\":\"Keine angesehenen Events in den letzten 14 Tagen\",\"Arzxc1\":\"Keine Wartelisteneinträge\",\"n5vdm2\":\"Für diesen Endpunkt wurden noch keine Webhook-Ereignisse aufgezeichnet. Ereignisse werden hier angezeigt, sobald sie ausgelöst werden.\",\"4GhX3c\":\"Keine Webhooks\",\"4+am6b\":\"Nein, hier bleiben\",\"4JVMUi\":\"nicht bearbeitet\",\"Itw24Q\":\"Nicht eingecheckt\",\"x5+Lcz\":\"Nicht Eingecheckt\",\"8n10sz\":\"Nicht Berechtigt\",\"kLvU3F\":\"Teilnehmer benachrichtigen und Verkauf stoppen\",\"t9QlBd\":\"November\",\"kAREMN\":\"Anzahl der zu erstellenden Termine\",\"6u1B3O\":\"Termin\",\"mmoE62\":\"Termin abgesagt\",\"UYWXdN\":\"Endtermin des Termins\",\"k7dZT5\":\"Endzeit des Termins\",\"Opinaj\":\"Terminbezeichnung\",\"V9flmL\":\"Terminplan\",\"NUTUUs\":\"Terminplan-Seite\",\"AT8UKD\":\"Startdatum des Termins\",\"Um8bvD\":\"Startzeit des Termins\",\"Kh3WO8\":\"Terminübersicht\",\"byXCTu\":\"Termine\",\"KATw3p\":\"Termine (nur zukünftige)\",\"85rTR2\":\"Termine können nach der Erstellung konfiguriert werden\",\"dzQfDY\":\"Oktober\",\"BwJKBw\":\"von\",\"9h7RDh\":\"Anbieten\",\"EfK2O6\":\"Platz anbieten\",\"3sVRey\":\"Tickets anbieten\",\"2O7Ybb\":\"Angebots-Zeitlimit\",\"1jUg5D\":\"Angeboten\",\"l+/HS6\":[\"Angebote verfallen nach \",[\"timeoutHours\"],\" Stunden.\"],\"lQgMLn\":\"Name des Büros oder Veranstaltungsorts\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offline-Zahlung\",\"nO3VbP\":[\"Im Angebot \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — Verbindungsdetails angeben\",\"LuZBbx\":\"Online & vor Ort\",\"IXuOqt\":\"Online & vor Ort — siehe Terminplan\",\"w3DG44\":\"Online-Verbindungsdetails\",\"WjSpu5\":\"Online-Veranstaltung\",\"TP6jss\":\"Verbindungsdetails für Online-Veranstaltung\",\"NdOxqr\":\"Nur Kontoadministratoren können Veranstaltungen löschen oder archivieren. Wenden Sie sich an Ihren Kontoadministrator.\",\"rnoDMF\":\"Nur Kontoadministratoren können Veranstalter löschen oder archivieren. Wenden Sie sich an Ihren Kontoadministrator.\",\"bU7oUm\":\"Nur an Bestellungen mit diesen Status senden\",\"M2w1ni\":\"Nur mit Promo-Code sichtbar\",\"y8Bm7C\":\"Check-in öffnen\",\"RLz7P+\":\"Termin öffnen\",\"cDSdPb\":\"Optionaler Spitzname, der in Auswahllisten angezeigt wird, z. B. \\\"HQ-Konferenzraum\\\"\",\"HXMJxH\":\"Optionaler Text für Haftungsausschlüsse, Kontaktinformationen oder Dankesnachrichten (nur einzeilig)\",\"L565X2\":\"Optionen\",\"8m9emP\":\"oder einen einzelnen Termin hinzufügen\",\"dSeVIm\":\"Bestellung\",\"c/TIyD\":\"Bestellung & Ticket\",\"H5qWhm\":\"Bestellung storniert\",\"b6+Y+n\":\"Bestellung abgeschlossen\",\"x4MLWE\":\"Bestellbestätigung\",\"CsTTH0\":\"Bestellbestätigung erfolgreich erneut gesendet\",\"ppuQR4\":\"Bestellung erstellt\",\"0UZTSq\":\"Bestellwährung\",\"xtQzag\":\"Bestelldetails\",\"HdmwrI\":\"Bestell-E-Mail\",\"bwBlJv\":\"Vorname der Bestellung\",\"vrSW9M\":\"Die Bestellung wurde storniert und erstattet. Der Bestellinhaber wurde benachrichtigt.\",\"rzw+wS\":\"Bestellinhaber\",\"oI/hGR\":\"Bestellnummer\",\"Pc729f\":\"Bestellung wartet auf Offline-Zahlung\",\"F4NXOl\":\"Nachname der Bestellung\",\"RQCXz6\":\"Bestelllimits\",\"SO9AEF\":\"Bestelllimits festgelegt\",\"5RDEEn\":\"Bestellsprache\",\"vu6Arl\":\"Bestellung als bezahlt markiert\",\"sLbJQz\":\"Bestellung nicht gefunden\",\"kvYpYu\":\"Bestellung nicht gefunden\",\"i8VBuv\":\"Bestellnummer\",\"eJ8SvM\":\"Bestellnummer, Kaufdatum, E-Mail des Käufers\",\"FaPYw+\":\"Bestelleigentümer\",\"eB5vce\":\"Bestelleigentümer mit einem bestimmten Produkt\",\"CxLoxM\":\"Bestelleigentümer mit Produkten\",\"DoH3fD\":\"Bestellzahlung ausstehend\",\"UkHo4c\":\"Bestellref.\",\"EZy55F\":\"Bestellung erstattet\",\"6eSHqs\":\"Bestellstatus\",\"oW5877\":\"Bestellsumme\",\"e7eZuA\":\"Bestellung aktualisiert\",\"1SQRYo\":\"Bestellung erfolgreich aktualisiert\",\"KndP6g\":\"Bestell-URL\",\"3NT0Ck\":\"Bestellung wurde storniert\",\"V5khLm\":\"Bestellungen\",\"sd5IMt\":\"Abgeschlossene Bestellungen\",\"5It1cQ\":\"Bestellungen exportiert\",\"tlKX/S\":\"Bestellungen, die mehrere Termine umfassen, werden zur manuellen Überprüfung markiert.\",\"UQ0ACV\":\"Bestellungen Gesamt\",\"B/EBQv\":\"Bestellungen:\",\"qtGTNu\":\"Organische Konten\",\"ucgZ0o\":\"Organisation\",\"P/JHA4\":\"Veranstalter erfolgreich archiviert\",\"S3CZ5M\":\"Veranstalter-Dashboard\",\"GzjTd0\":\"Veranstalter erfolgreich gelöscht\",\"Uu0hZq\":\"Veranstalter-E-Mail\",\"Gy7BA3\":\"E-Mail-Adresse des Veranstalters\",\"SQqJd8\":\"Veranstalter nicht gefunden\",\"HF8Bxa\":\"Veranstalter erfolgreich wiederhergestellt\",\"wpj63n\":\"Veranstaltereinstellungen\",\"o1my93\":\"Aktualisierung des Veranstalterstatus fehlgeschlagen. Bitte versuchen Sie es später erneut.\",\"rLHma1\":\"Veranstalterstatus aktualisiert\",\"LqBITi\":\"Veranstalter-/Standardvorlage wird verwendet\",\"q4zH+l\":\"Veranstalter\",\"/IX/7x\":\"Sonstiges\",\"RsiDDQ\":\"Andere Listen (Ticket Nicht Enthalten)\",\"aDfajK\":\"Outdoor\",\"qMASRF\":\"Ausgehende Nachrichten\",\"iCOVQO\":\"Überschreiben\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Preis überschreiben\",\"cnVIpl\":\"Überschreibung entfernt\",\"6/dCYd\":\"Übersicht\",\"6WdDG7\":\"Seite\",\"8uqsE5\":\"Seite nicht mehr verfügbar\",\"QkLf4H\":\"Seiten-URL\",\"sF+Xp9\":\"Seitenaufrufe\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Bezahlte Konten\",\"5F7SYw\":\"Teilerstattung\",\"fFYotW\":[\"Teilweise erstattet: \",[\"0\"]],\"i8day5\":\"Gebühr an Käufer weitergeben\",\"k4FLBQ\":\"An Käufer weitergeben\",\"Ff0Dor\":\"Vergangenheit\",\"BFjW8X\":\"Überfällig\",\"xTPjSy\":\"Vergangene Veranstaltungen\",\"/l/ckQ\":\"URL einfügen\",\"URAE3q\":\"Pausiert\",\"4fL/V7\":\"Bezahlen\",\"OZK07J\":\"Zahlen zum Freischalten\",\"c2/9VE\":\"Nutzlast\",\"5cxUwd\":\"Zahlungsdatum\",\"ENEPLY\":\"Zahlungsmethode\",\"8Lx2X7\":\"Zahlung erhalten\",\"fx8BTd\":\"Zahlungen nicht verfügbar\",\"C+ylwF\":\"Auszahlungen\",\"UbRKMZ\":\"Ausstehend\",\"UkM20g\":\"Überprüfung ausstehend\",\"dPYu1F\":\"Pro Teilnehmer\",\"mQV/nJ\":\"pro Min.\",\"VlXNyK\":\"Pro Bestellung\",\"hauDFf\":\"Pro Ticket\",\"mnF83a\":\"Prozentuale Gebühr\",\"TNLuRD\":\"Prozentuale Gebühr (%)\",\"MixU2P\":\"Prozentsatz muss zwischen 0 und 100 liegen\",\"MkuVAZ\":\"Prozentsatz des Transaktionsbetrags\",\"/Bh+7r\":\"Leistung\",\"fIp56F\":\"Diese Veranstaltung und alle zugehörigen Daten dauerhaft löschen.\",\"nJeeX7\":\"Diesen Veranstalter und alle seine Veranstaltungen dauerhaft löschen.\",\"wfCTgK\":\"Diesen Termin endgültig entfernen\",\"6kPk3+\":\"Persönliche Daten\",\"zmwvG2\":\"Telefon\",\"SdM+Q1\":\"Standort auswählen\",\"tSR/oe\":\"Enddatum auswählen\",\"e8kzpp\":\"Mindestens einen Tag des Monats auswählen\",\"35C8QZ\":\"Mindestens einen Wochentag auswählen\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Aufgegeben\",\"wBJR8i\":\"Eine Veranstaltung planen?\",\"J3lhKT\":\"Plattformgebühr\",\"RD51+P\":[\"Plattformgebühr von \",[\"0\"],\" wird von Ihrer Auszahlung abgezogen\"],\"br3Y/y\":\"Plattformgebühren\",\"3buiaw\":\"Plattformgebühren-Bericht\",\"kv9dM4\":\"Plattformumsatz\",\"PJ3Ykr\":\"Bitte überprüfen Sie Ihr Ticket auf die aktualisierte Uhrzeit. Ihre Tickets sind weiterhin gültig — es ist keine Aktion erforderlich, es sei denn, die neuen Zeiten passen Ihnen nicht. Antworten Sie auf diese E-Mail, falls Sie Fragen haben.\",\"OtjenF\":\"Bitte geben Sie eine gültige E-Mail-Adresse ein\",\"jEw0Mr\":\"Bitte geben Sie eine gültige URL ein\",\"n8+Ng/\":\"Bitte geben Sie den 5-stelligen Code ein\",\"r+lQXT\":\"Bitte geben Sie Ihre Umsatzsteuer-ID ein\",\"Dvq0wf\":\"Bitte ein Bild angeben.\",\"2cUopP\":\"Bitte starten Sie den Bestellvorgang neu.\",\"GoXxOA\":\"Bitte wählen Sie ein Datum und eine Uhrzeit aus\",\"8KmsFa\":\"Bitte wählen Sie einen Datumsbereich aus\",\"EFq6EG\":\"Bitte ein Bild auswählen.\",\"fuwKpE\":\"Bitte versuchen Sie es erneut.\",\"klWBeI\":\"Bitte warten Sie, bevor Sie einen neuen Code anfordern\",\"hfHhaa\":\"Bitte warten Sie, während wir Ihre Partner für den Export vorbereiten...\",\"o+tJN/\":\"Bitte warten Sie, während wir Ihre Teilnehmer für den Export vorbereiten...\",\"+5Mlle\":\"Bitte warten Sie, während wir Ihre Bestellungen für den Export vorbereiten...\",\"trnWaw\":\"Polnisch\",\"luHAJY\":\"Beliebte Events (Letzte 14 Tage)\",\"p/78dY\":\"Position\",\"TjX7xL\":\"Nach-Checkout-Nachricht\",\"OESu7I\":\"Verhindern Sie Überverkäufe durch gemeinsame Nutzung des Bestands über mehrere Tickettypen.\",\"NgVUL2\":\"Vorschau des Bestellformulars\",\"cs5muu\":\"Vorschau der Veranstaltungsseite\",\"+4yRWM\":\"Preis des Tickets\",\"Jm2AC3\":\"Preisstufe\",\"a5jvSX\":\"Preisstufen\",\"ReihZ7\":\"Druckvorschau\",\"JnuPvH\":\"Ticket drucken\",\"tYF4Zq\":\"Als PDF drucken\",\"LcET2C\":\"Datenschutzerklärung\",\"8z6Y5D\":\"Erstattung verarbeiten\",\"JcejNJ\":\"Bestellung wird verarbeitet\",\"EWCLpZ\":\"Produkt erstellt\",\"XkFYVB\":\"Produkt gelöscht\",\"YMwcbR\":\"Produktverkäufe, Einnahmen und Steueraufschlüsselung\",\"ls0mTC\":\"Produkteinstellungen können für abgesagte Termine nicht bearbeitet werden.\",\"2339ej\":\"Produkteinstellungen erfolgreich gespeichert\",\"ldVIlB\":\"Produkt aktualisiert\",\"CP3D8G\":\"Fortschritt\",\"JoKGiJ\":\"Gutscheincode\",\"k3wH7i\":\"Nutzung von Rabattcodes und Rabattaufschlüsselung\",\"tZqL0q\":\"Promo-Codes\",\"oCHiz3\":\"Promo-Codes\",\"uEhdRh\":\"Nur mit Promo-Code\",\"dLm8V5\":\"Werbe-E-Mails können zur Kontosperrung führen\",\"XoEWtl\":\"Geben Sie mindestens ein Adressfeld für den neuen Standort an.\",\"2W/7Gz\":\"Reiche die folgenden Informationen vor der nächsten Stripe-Prüfung ein, damit Auszahlungen weiter laufen.\",\"aemBRq\":\"Anbieter\",\"EEYbdt\":\"Veröffentlichen\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Gekauft\",\"JunetL\":\"Käufer\",\"phmeUH\":\"Käufer-E-Mail\",\"ywR4ZL\":\"QR-Code-Check-in\",\"oWXNE5\":\"Anz.\",\"biEyJ4\":\"Antworten auf Fragen\",\"k/bJj0\":\"Fragen neu sortiert\",\"b24kPi\":\"Warteschlange\",\"lTPqpM\":\"Tipp\",\"fqDzSu\":\"Rate\",\"mnUGVC\":\"Ratenlimit überschritten. Bitte versuchen Sie es später erneut.\",\"t41hVI\":\"Platz erneut anbieten\",\"TNclgc\":\"Diesen Termin reaktivieren? Er wird für zukünftige Verkäufe wieder geöffnet.\",\"uqoRbb\":\"Echtzeit-Analysen\",\"xzRvs4\":[\"Produktupdates von \",[\"0\"],\" erhalten.\"],\"pLXbi8\":\"Letzte Kontoanmeldungen\",\"3kJ0gv\":\"Letzte Teilnehmer\",\"qhfiwV\":\"Letzte Check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Neueste Bestellungen\",\"7hPBBn\":\"Empfänger\",\"jp5bq8\":\"Empfänger\",\"yPrbsy\":\"Empfänger\",\"E1F5Ji\":\"Empfänger sind verfügbar, nachdem die Nachricht gesendet wurde\",\"wuhHPE\":\"Wiederkehrend\",\"asLqwt\":\"Wiederkehrende Veranstaltung\",\"D0tAMe\":\"Wiederkehrende Veranstaltungen\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Weiterleitung zu Stripe...\",\"pnoTN5\":\"Empfehlungskonten\",\"ACKu03\":\"Vorschau aktualisieren\",\"vuFYA6\":\"Alle Bestellungen für diese Termine erstatten\",\"4cRUK3\":\"Alle Bestellungen für diesen Termin erstatten\",\"fKn/k6\":\"Erstattungsbetrag\",\"qY4rpA\":\"Erstattung fehlgeschlagen\",\"TspTcZ\":\"Erstattung ausgestellt\",\"FaK/8G\":[\"Bestellung \",[\"0\"],\" erstatten\"],\"MGbi9P\":\"Erstattung ausstehend\",\"BDSRuX\":[\"Erstattet: \",[\"0\"]],\"bU4bS1\":\"Rückerstattungen\",\"rYXfOA\":\"Regionale Einstellungen\",\"5tl0Bp\":\"Registrierungsfragen\",\"ZNo5k1\":\"Verbleibend\",\"EMnuA4\":\"Erinnerung geplant\",\"Bjh87R\":\"Bezeichnung von allen Terminen entfernen\",\"KkJtVK\":\"Für neue Verkäufe wieder öffnen\",\"XJwWJp\":\"Dieses Datum für neue Verkäufe wieder öffnen? Zuvor stornierte Tickets werden nicht wiederhergestellt — betroffene Teilnehmer bleiben storniert und bereits erstattete Beträge werden nicht zurückgebucht.\",\"bAwDQs\":\"Wiederholen alle\",\"CQeZT8\":\"Bericht nicht gefunden\",\"JEPMXN\":\"Neuen Link anfordern\",\"TMLAx2\":\"Erforderlich\",\"mdeIOH\":\"Code erneut senden\",\"sQxe68\":\"Bestätigung erneut senden\",\"bxoWpz\":\"Bestätigungs-E-Mail erneut senden\",\"G42SNI\":\"E-Mail erneut senden\",\"TTpXL3\":[\"Erneut senden in \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Ticket erneut senden\",\"Uwsg2F\":\"Reserviert\",\"8wUjGl\":\"Reserviert bis\",\"a5z8mb\":\"Auf Grundpreis zurücksetzen\",\"kCn6wb\":\"Wird zurückgesetzt...\",\"404zLK\":\"Aufgelöster Standort oder Veranstaltungsortname\",\"ZlCDf+\":\"Antwort\",\"bsydMp\":\"Antwortdetails\",\"yKu/3Y\":\"Wiederherstellen\",\"RokrZf\":\"Veranstaltung wiederherstellen\",\"/JyMGh\":\"Veranstalter wiederherstellen\",\"HFvFRb\":\"Stellen Sie diese Veranstaltung wieder her, um sie wieder sichtbar zu machen.\",\"DDIcqy\":\"Stellen Sie diesen Veranstalter wieder her und machen Sie ihn wieder aktiv.\",\"mO8KLE\":\"Ergebnisse\",\"6gRgw8\":\"Wiederholen\",\"1BG8ga\":\"Alle wiederholen\",\"rDC+T6\":\"Job wiederholen\",\"CbnrWb\":\"Zurück zum Event\",\"mdQ0zb\":\"Wiederverwendbare Veranstaltungsorte für Ihre Veranstaltungen. Standorte, die aus der Autovervollständigung erstellt werden, werden hier automatisch gespeichert.\",\"XFOPle\":\"Wiederverwenden\",\"1Zehp4\":\"Verwende eine Stripe-Verbindung von einem anderen Veranstalter in diesem Konto.\",\"Oo/PLb\":\"Umsatzübersicht\",\"O/8Ceg\":\"Umsatz heute\",\"CfuueU\":\"Angebot widerrufen\",\"RIgKv+\":\"Bis zu einem bestimmten Datum laufen\",\"JYRqp5\":\"Sa\",\"dFFW9L\":[\"Verkauf endete \",[\"0\"]],\"loCKGB\":[\"Verkauf endet \",[\"0\"]],\"wlfBad\":\"Verkaufszeitraum\",\"qi81Jg\":\"Verkaufszeiträume gelten für alle Termine in Ihrem Terminplan. Um Preise und Verfügbarkeit für einzelne Termine zu steuern, verwenden Sie die Überschreibungen auf der <0>Terminplan-Seite.\",\"5CDM6r\":\"Verkaufszeitraum festgelegt\",\"ftzaMf\":\"Verkaufszeitraum, Bestelllimits, Sichtbarkeit\",\"zpekWp\":[\"Verkauf beginnt \",[\"0\"]],\"mUv9U4\":\"Verkauf\",\"9KnRdL\":\"Verkauf pausiert\",\"JC3J0k\":\"Aufschlüsselung von Verkäufen, Anwesenheit und Check-ins pro Termin\",\"3VnlS9\":\"Verkäufe, Bestellungen und Leistungskennzahlen für alle Veranstaltungen\",\"3Q1AWe\":\"Verkäufe:\",\"LeuERW\":\"Wie Veranstaltung\",\"B4nE3N\":\"Beispiel-Ticketpreis\",\"8BRPoH\":\"Beispielort\",\"PiK6Ld\":\"Sa\",\"+5kO8P\":\"Samstag\",\"zJiuDn\":\"Gebührenüberschreibung speichern\",\"NB8Uxt\":\"Terminplan speichern\",\"KZrfYJ\":\"Social-Media-Links speichern\",\"9Y3hAT\":\"Vorlage speichern\",\"C8ne4X\":\"Ticketdesign speichern\",\"cTI8IK\":\"Umsatzsteuereinstellungen speichern\",\"6/TNCd\":\"Umsatzsteuereinstellungen speichern\",\"4RvD9q\":\"Gespeicherter Standort\",\"cgw0cL\":\"Gespeicherte Standorte\",\"lvSrsT\":\"Gespeicherte Standorte\",\"Fbqm/I\":\"Das Speichern einer Überschreibung erstellt eine eigene Konfiguration für diesen Veranstalter, wenn er aktuell auf der Systemstandard-Einstellung ist.\",\"I+FvbD\":\"Scannen\",\"0zd6Nm\":\"Ticket scannen, um einen Teilnehmer einzuchecken\",\"bQG7Qk\":\"Gescannte Tickets erscheinen hier\",\"WDYSLJ\":\"Scanner-Modus\",\"gmB6oO\":\"Terminplan\",\"j6NnBq\":\"Terminplan erfolgreich erstellt\",\"YP7frt\":\"Terminplan endet am\",\"QS1Nla\":\"Für später planen\",\"NAzVVw\":\"Nachricht planen\",\"Fz09JP\":\"Zeitplan beginnt am\",\"4ba0NE\":\"Geplant\",\"qcP/8K\":\"Geplante Zeit\",\"A1taO8\":\"Suchen\",\"ftNXma\":\"Partner suchen...\",\"VMU+zM\":\"Teilnehmer suchen\",\"VY+Bdn\":\"Nach Kontoname oder E-Mail suchen...\",\"VX+B3I\":\"Suche nach Veranstaltungstitel oder Veranstalter...\",\"R0wEyA\":\"Nach Jobname oder Ausnahme suchen...\",\"VT+urE\":\"Nach Name oder E-Mail suchen...\",\"GHdjuo\":\"Nach Name, E-Mail oder Konto suchen...\",\"4mBFO7\":\"Nach Name, Bestell-Nr., Ticket-Nr. oder E-Mail suchen\",\"20ce0U\":\"Nach Bestellnummer, Kundenname oder E-Mail suchen...\",\"4DSz7Z\":\"Nach Betreff, Veranstaltung oder Konto suchen...\",\"nQC7Z9\":\"Termine suchen...\",\"iRtEpV\":\"Termine suchen…\",\"JRM7ao\":\"Adresse suchen\",\"BWF1kC\":\"Nachrichten suchen...\",\"3aD3GF\":\"Saisonal\",\"ku//5b\":\"Zweiter\",\"Mck5ht\":\"Sichere Kasse\",\"s7tXqF\":\"Terminplan ansehen\",\"JFap6u\":\"Anzeigen, was Stripe noch benötigt\",\"p7xUrt\":\"Kategorie auswählen\",\"hTKQwS\":\"Datum & Uhrzeit auswählen\",\"e4L7bF\":\"Wählen Sie eine Nachricht aus, um ihren Inhalt anzuzeigen\",\"zPRPMf\":\"Stufe auswählen\",\"uqpVri\":\"Uhrzeit auswählen\",\"BFRSTT\":\"Konto auswählen\",\"wgNoIs\":\"Alle auswählen\",\"mCB6Je\":\"Alle auswählen\",\"aCEysm\":[\"Alle am \",[\"0\"],\" auswählen\"],\"a6+167\":\"Veranstaltung auswählen\",\"CFbaPk\":\"Teilnehmergruppe auswählen\",\"88a49s\":\"Kamera wählen\",\"tVW/yo\":\"Währung auswählen\",\"SJQM1I\":\"Termin auswählen\",\"n9ZhRa\":\"Enddatum und -zeit auswählen\",\"gTN6Ws\":\"Endzeit auswählen\",\"0U6E9W\":\"Veranstaltungskategorie auswählen\",\"j9cPeF\":\"Ereignistypen auswählen\",\"ypTjHL\":\"Termin auswählen\",\"KizCK7\":\"Startdatum und -zeit auswählen\",\"dJZTv2\":\"Startzeit auswählen\",\"x8XMsJ\":\"Wählen Sie die Messaging-Stufe für dieses Konto. Dies steuert Nachrichtenlimits und Link-Berechtigungen.\",\"aT3jZX\":\"Zeitzone auswählen\",\"TxfvH2\":\"Wählen Sie aus, welche Teilnehmer diese Nachricht erhalten sollen\",\"Ropvj0\":\"Wählen Sie aus, welche Ereignisse diesen Webhook auslösen\",\"+6YAwo\":\"ausgewählt\",\"ylXj1N\":\"Ausgewählt\",\"uq3CXQ\":\"Verkaufen Sie Ihre Veranstaltung aus.\",\"j9b/iy\":\"Schnell verkauft 🔥\",\"73qYgo\":\"Als Test senden\",\"HMAqFK\":\"E-Mails an Teilnehmer, Ticketinhaber oder Bestellinhaber senden. Nachrichten können sofort gesendet oder für später geplant werden.\",\"22Itl6\":\"Senden Sie mir eine Kopie\",\"NpEm3p\":\"Jetzt senden\",\"nOBvex\":\"Senden Sie Echtzeit-Bestell- und Teilnehmerdaten an Ihre externen Systeme.\",\"1lNPhX\":\"Erstattungsbenachrichtigungs-E-Mail senden\",\"eaUTwS\":\"Link zum Zurücksetzen senden\",\"5cV4PY\":\"An alle Termine senden oder einen bestimmten auswählen\",\"QEQlnV\":\"Senden Sie Ihre erste Nachricht\",\"3nMAVT\":\"Versand in 2T 4Std\",\"IoAuJG\":\"Wird gesendet...\",\"h69WC6\":\"Gesendet\",\"BVu2Hz\":\"Gesendet von\",\"ZFa8wv\":\"Wird an Teilnehmer gesendet, wenn ein geplanter Termin abgesagt wird\",\"SPdzrs\":\"An Kunden gesendet, wenn sie eine Bestellung aufgeben\",\"LxSN5F\":\"An jeden Teilnehmer mit seinen Ticketdetails gesendet\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session abgesagt\",\"89xaFU\":\"Legen Sie die Standard-Plattformgebühreneinstellungen für neue Veranstaltungen dieses Veranstalters fest.\",\"eXssj5\":\"Legen Sie Standardeinstellungen für neue Veranstaltungen fest, die unter diesem Veranstalter erstellt werden.\",\"uPe5p8\":\"Legen Sie fest, wie lange jeder Termin dauert\",\"xNsRxU\":\"Anzahl Termine festlegen\",\"ODuUEi\":\"Terminbezeichnung setzen oder entfernen\",\"buHACR\":\"Legen Sie die Endzeit jedes Termins so fest, dass sie diese Dauer nach der Startzeit liegt.\",\"TaeFgl\":\"Auf unbegrenzt setzen (Limit entfernen)\",\"pd6SSe\":\"Richten Sie einen wiederkehrenden Terminplan ein, um Termine automatisch zu erstellen, oder fügen Sie sie einzeln hinzu.\",\"s0FkEx\":\"Richten Sie Check-in-Listen für verschiedene Eingänge, Sitzungen oder Tage ein.\",\"TaWVGe\":\"Auszahlungen einrichten\",\"gzXY7l\":\"Terminplan einrichten\",\"xMO+Ao\":\"Richten Sie Ihre Organisation ein\",\"h/9JiC\":\"Richten Sie Ihren Terminplan ein\",\"ETC76A\":\"Standort oder Online-Details des Termins festlegen, ändern oder entfernen\",\"C3htzi\":\"Einstellung aktualisiert\",\"Ohn74G\":\"Einrichtung & Design\",\"1W5XyZ\":\"Die Einrichtung dauert nur wenige Minuten — du brauchst kein bestehendes Stripe-Konto. Stripe übernimmt Karten, Wallets, regionale Zahlungsmethoden und Betrugsschutz, damit du dich auf deine Veranstaltung konzentrieren kannst.\",\"GG7qDw\":\"Partnerlink teilen\",\"hL7sDJ\":\"Veranstalterseite teilen\",\"jy6QDF\":\"Gemeinsame Kapazitätsverwaltung\",\"jDNHW4\":\"Zeiten verschieben\",\"tPfIaW\":[\"Zeiten für \",[\"count\"],\" Termin(e) verschoben\"],\"WwlM8F\":\"Erweiterte Optionen anzeigen\",\"cMW+gm\":[\"Alle Plattformen anzeigen (\",[\"0\"],\" weitere mit Werten)\"],\"wXi9pZ\":\"Teilnehmernotizen für nicht angemeldetes Personal anzeigen\",\"UVPI5D\":\"Weniger Plattformen anzeigen\",\"Eu/N/d\":\"Marketing-Opt-in-Kontrollkästchen anzeigen\",\"SXzpzO\":\"Marketing-Opt-in-Kontrollkästchen standardmäßig anzeigen\",\"57tTk5\":\"Mehr Termine anzeigen\",\"b33PL9\":\"Mehr Plattformen anzeigen\",\"Eut7p9\":\"Bestelldetails für nicht angemeldetes Personal anzeigen\",\"+RoWKN\":\"Antworten für nicht angemeldetes Personal anzeigen\",\"t1LIQW\":[\"Zeige \",[\"0\"],\" von \",[\"totalRows\"],\" Einträgen\"],\"E717U9\":[[\"0\"],\"–\",[\"1\"],\" von \",[\"2\"],\" werden angezeigt\"],\"5rzhBQ\":[[\"MAX_VISIBLE\"],\" von \",[\"totalAvailable\"],\" Terminen werden angezeigt. Tippen Sie zum Suchen.\"],\"WSt3op\":[\"Die ersten \",[\"0\"],\" werden angezeigt — die verbleibenden \",[\"1\"],\" Session(s) werden beim Senden der Nachricht ebenfalls berücksichtigt.\"],\"OJLTEL\":\"Wird dem Personal beim ersten Öffnen der Check-in-Seite angezeigt.\",\"jVRHeq\":\"Angemeldet\",\"5C7J+P\":\"Einzelveranstaltung\",\"E//btK\":\"Manuell bearbeitete Termine überspringen\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Soziales\",\"d0rUsW\":\"Social-Media-Links\",\"j/TOB3\":\"Social-Media-Links & Website\",\"s9KGXU\":\"Verkauft\",\"iACSrw\":\"Einige Details sind für öffentlichen Zugriff ausgeblendet. Melden Sie sich an, um alles zu sehen.\",\"KTxc6k\":\"Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support, falls das Problem weiterhin besteht.\",\"lkE00/\":\"Etwas ist schiefgelaufen. Bitte versuchen Sie es später erneut.\",\"wdxz7K\":\"Quelle\",\"fDG2by\":\"Spiritualität\",\"oPaRES\":\"Teilen Sie Check-ins nach Tagen, Bereichen oder Tickettypen auf. Link mit dem Personal teilen — kein Konto nötig.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Personalanweisungen\",\"tXkhj/\":\"Start\",\"JcQp9p\":\"Startdatum & -zeit\",\"0m/ekX\":\"Startdatum & -zeit\",\"izRfYP\":\"Startdatum ist erforderlich\",\"tuO4fV\":\"Startdatum des Termins\",\"2R1+Rv\":\"Startzeit der Veranstaltung\",\"2Olov3\":\"Startzeit des Termins\",\"n9ZrDo\":\"Beginnen Sie, einen Veranstaltungsort oder eine Adresse einzugeben...\",\"qeFVhN\":[\"Beginnt in \",[\"diffDays\"],\" Tagen\"],\"AOqtxN\":[\"Beginnt in \",[\"diffMinutes\"],\" Min.\"],\"Otg8Oh\":[\"Beginnt in \",[\"h\"],\"Std \",[\"m\"],\"Min\"],\"Lo49in\":[\"Beginnt in \",[\"seconds\"],\"s\"],\"NqChgF\":\"Beginnt morgen\",\"2NbyY/\":\"Statistiken\",\"GVUxAX\":\"Statistiken basieren auf dem Erstellungsdatum des Kontos\",\"29Hx9U\":\"Statistik\",\"5ia+r6\":\"Noch erforderlich\",\"wuV0bK\":\"Identitätswechsel beenden\",\"s/KaDb\":\"Stripe verbunden\",\"Bk06QI\":\"Stripe verbunden\",\"akZMv8\":[\"Stripe-Verbindung von \",[\"0\"],\" kopiert.\"],\"v0aRY1\":\"Stripe hat keinen Einrichtungs-Link zurückgegeben. Bitte versuche es erneut.\",\"aKtF0O\":\"Stripe nicht verbunden\",\"9i0++A\":\"Stripe Zahlungs-ID\",\"R1lIMV\":\"Stripe wird bald weitere Angaben benötigen\",\"FzcCHA\":\"Stripe führt dich durch ein paar kurze Fragen, um die Einrichtung abzuschließen.\",\"eYbd7b\":\"So\",\"ii0qn/\":\"Betreff ist erforderlich\",\"M7Uapz\":\"Betreff wird hier angezeigt\",\"6aXq+t\":\"Betreff:\",\"JwTmB6\":\"Produkt erfolgreich dupliziert\",\"WUOCgI\":\"Platz erfolgreich angeboten\",\"IvxA4G\":[\"Tickets erfolgreich an \",[\"count\"],\" Personen angeboten\"],\"kKpkzy\":\"Tickets erfolgreich an 1 Person angeboten\",\"Zi3Sbw\":\"Erfolgreich von der Warteliste entfernt\",\"RuaKfn\":\"Adresse erfolgreich aktualisiert\",\"kzx0uD\":\"Veranstaltungsstandards erfolgreich aktualisiert\",\"5n+Wwp\":\"Veranstalter erfolgreich aktualisiert\",\"DMCX/I\":\"Plattformgebühren-Standards erfolgreich aktualisiert\",\"URUYHc\":\"Plattformgebühren-Einstellungen erfolgreich aktualisiert\",\"0Dk/l8\":\"SEO-Einstellungen erfolgreich aktualisiert\",\"S8Tua9\":\"Einstellungen erfolgreich aktualisiert\",\"MhOoLQ\":\"Social-Media-Links erfolgreich aktualisiert\",\"CNSSfp\":\"Tracking-Einstellungen erfolgreich aktualisiert\",\"kj7zYe\":\"Webhook erfolgreich aktualisiert\",\"dXoieq\":\"Zusammenfassung\",\"/RfJXt\":[\"Sommermusikfestival \",[\"0\"]],\"CWOPIK\":\"Sommer Musik Festival 2025\",\"D89zck\":\"So\",\"DBC3t5\":\"Sonntag\",\"UaISq3\":\"Schwedisch\",\"JZTQI0\":\"Veranstalter wechseln\",\"9YHrNC\":\"Systemstandard\",\"lruQkA\":\"Bildschirm berühren, um fortzufahren\",\"TJUrME\":[\"Es werden Teilnehmer aus \",[\"0\"],\" ausgewählten Sessions adressiert.\"],\"yT6dQ8\":\"Erhobene Steuern gruppiert nach Steuerart und Veranstaltung\",\"Ye321X\":\"Steuername\",\"WyCBRt\":\"Steuerübersicht\",\"GkH0Pq\":\"Steuern & Gebühren angewendet\",\"Rwiyt2\":\"Steuern konfiguriert\",\"iQZff7\":\"Steuern, Gebühren, Sichtbarkeit, Verkaufszeitraum, Produkthervorhebung & Bestelllimits\",\"SXvRWU\":\"Team-Zusammenarbeit\",\"vlf/In\":\"Technologie\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Erzählen Sie den Leuten, was sie bei Ihrer Veranstaltung erwartet\",\"NiIUyb\":\"Erzählen Sie uns von Ihrer Veranstaltung\",\"DovcfC\":\"Erzählen Sie uns von Ihrer Organisation. Diese Informationen werden auf Ihren Veranstaltungsseiten angezeigt.\",\"69GWRq\":\"Sagen Sie uns, wie oft sich Ihre Veranstaltung wiederholt, und wir erstellen alle Termine für Sie.\",\"mXPbwY\":\"Teile uns deinen Umsatzsteuer-Registrierungsstatus mit, damit wir die richtige Mehrwertsteuer auf Plattformgebühren anwenden können.\",\"7wtpH5\":\"Vorlage aktiv\",\"QHhZeE\":\"Vorlage erfolgreich erstellt\",\"xrWdPR\":\"Vorlage erfolgreich gelöscht\",\"G04Zjt\":\"Vorlage erfolgreich gespeichert\",\"xowcRf\":\"Nutzungsbedingungen\",\"6K0GjX\":\"Text könnte schwer lesbar sein\",\"u0F1Ey\":\"Do\",\"nm3Iz/\":\"Danke für Ihre Teilnahme!\",\"pYwj0k\":\"Vielen Dank,\",\"k3IitN\":\"Das war's\",\"KfmPRW\":\"Die Hintergrundfarbe der Seite. Bei Verwendung eines Titelbilds wird dies als Overlay angewendet.\",\"MDNyJz\":\"Der Code läuft in 10 Minuten ab. Überprüfen Sie Ihren Spam-Ordner, falls Sie die E-Mail nicht sehen.\",\"AIF7J2\":\"Die Währung, in der die feste Gebühr definiert ist. Sie wird beim Bezahlen in die Bestellwährung umgerechnet.\",\"MJm4Tq\":\"Die Währung der Bestellung\",\"cDHM1d\":\"Die E-Mail-Adresse wurde geändert. Der Teilnehmer erhält ein neues Ticket an der aktualisierten E-Mail-Adresse.\",\"I/NNtI\":\"Der Veranstaltungsort\",\"tXadb0\":\"Die gesuchte Veranstaltung ist derzeit nicht verfügbar. Sie wurde möglicherweise entfernt, ist abgelaufen oder die URL ist falsch.\",\"5fPdZe\":\"Das erste Datum, ab dem dieser Zeitplan generiert wird.\",\"EBzPwC\":\"Die vollständige Veranstaltungsadresse\",\"sxKqBm\":\"Der volle Bestellbetrag wird auf die ursprüngliche Zahlungsmethode des Kunden erstattet.\",\"KgDp6G\":\"Der Link, auf den Sie zugreifen möchten, ist abgelaufen oder nicht mehr gültig. Bitte überprüfen Sie Ihre E-Mail auf einen aktualisierten Link zur Verwaltung Ihrer Bestellung.\",\"5OmEal\":\"Die Sprache des Kunden\",\"Np4eLs\":[\"Das Maximum sind \",[\"MAX_PREVIEW\"],\" Sessions. Bitte reduzieren Sie den Datumsbereich, die Häufigkeit oder die Anzahl der Sessions pro Tag.\"],\"sYLeDq\":\"Der gesuchte Veranstalter konnte nicht gefunden werden. Die Seite wurde möglicherweise verschoben oder gelöscht, oder die URL ist falsch.\",\"PCr4zw\":\"Die Überschreibung wird im Audit-Log der Bestellung aufgezeichnet.\",\"C4nQe5\":\"Die Plattformgebühr wird zum Ticketpreis hinzugefügt. Käufer zahlen mehr, aber Sie erhalten den vollen Ticketpreis.\",\"HxxXZO\":\"Die primäre Markenfarbe, die für Schaltflächen und Hervorhebungen verwendet wird\",\"z0KrIG\":\"Die geplante Zeit ist erforderlich\",\"EWErQh\":\"Die geplante Zeit muss in der Zukunft liegen\",\"UNd0OU\":[\"Die Session für \\\"\",[\"title\"],\"\\\", ursprünglich geplant für \",[\"0\"],\", wurde verschoben.\"],\"DEcpfp\":\"Der Vorlagenkörper enthält ungültige Liquid-Syntax. Bitte korrigieren Sie sie und versuchen Sie es erneut.\",\"injXD7\":\"Die Umsatzsteuer-Identifikationsnummer konnte nicht validiert werden. Bitte überprüfen Sie die Nummer und versuchen Sie es erneut.\",\"A4UmDy\":\"Theater\",\"tDwYhx\":\"Thema & Farben\",\"O7g4eR\":\"Es gibt keine bevorstehenden Termine für diese Veranstaltung\",\"HrIl0p\":[\"Es gibt keine Check-in-Liste, die auf diesen Termin beschränkt ist. Die Liste \\\"\",[\"0\"],\"\\\" checkt Teilnehmer für alle Termine ein — Personal, das ein Ticket für einen anderen Termin scannt, ist trotzdem erfolgreich.\"],\"dt3TwA\":\"Dies sind die Standardpreise und -mengen für alle Termine. Verkaufszeiträume in Preisstufen gelten global. Sie können Preise und Mengen für einzelne Termine auf der <0>Terminplan-Seite überschreiben.\",\"062KsE\":\"Diese Details werden nur auf dem Ticket des Teilnehmers und der Bestellübersicht für diesen Termin angezeigt.\",\"5Eu+tn\":\"Diese Details werden nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wird.\",\"jQjwR+\":\"Diese Angaben ersetzen jeden bestehenden Standort an den betroffenen Terminen und werden auf den Teilnehmer-Tickets angezeigt.\",\"QP3gP+\":\"Diese Einstellungen gelten nur für kopierten Einbettungscode und werden nicht gespeichert.\",\"HirZe8\":\"Diese Vorlagen werden als Standards für alle Veranstaltungen in Ihrer Organisation verwendet. Einzelne Veranstaltungen können diese Vorlagen mit ihren eigenen benutzerdefinierten Versionen überschreiben.\",\"lzAaG5\":\"Diese Vorlagen überschreiben die Veranstalter-Standards nur für diese Veranstaltung. Wenn hier keine benutzerdefinierte Vorlage festgelegt ist, wird stattdessen die Veranstaltervorlage verwendet.\",\"UlykKR\":\"Dritter\",\"wkP5FM\":\"Dies gilt für jeden passenden Termin der Veranstaltung, einschließlich derzeit nicht sichtbarer Termine. Teilnehmer, die für einen dieser Termine angemeldet sind, können nach Abschluss der Aktualisierung über den Nachrichten-Editor erreicht werden.\",\"SOmGDa\":\"Diese Check-in-Liste ist auf eine Session beschränkt, die abgesagt wurde, und kann daher nicht mehr für Check-ins verwendet werden.\",\"XBNC3E\":\"Dieser Code wird zur Verfolgung von Verkäufen verwendet. Nur Buchstaben, Zahlen, Bindestriche und Unterstriche erlaubt.\",\"AaP0M+\":\"Diese Farbkombination könnte für einige Benutzer schwer lesbar sein\",\"o1phK/\":[\"Dieser Termin hat \",[\"orderCount\"],\" Bestellung(en), die betroffen sind.\"],\"F/UtGt\":\"Dieser Termin wurde abgesagt. Sie können ihn dennoch löschen, um ihn endgültig zu entfernen.\",\"BLZ7pX\":\"Dieser Termin liegt in der Vergangenheit. Er wird erstellt, ist aber für Teilnehmer nicht unter den bevorstehenden Terminen sichtbar.\",\"7IIY0z\":\"Dieser Termin ist als ausverkauft markiert.\",\"bddWMP\":\"Dieser Termin ist nicht mehr verfügbar. Bitte wählen Sie einen anderen Termin.\",\"RzEvf5\":\"Diese Veranstaltung ist beendet\",\"YClrdK\":\"Diese Veranstaltung ist noch nicht veröffentlicht\",\"dFJnia\":\"Dies ist der Name Ihres Veranstalters, der Ihren Nutzern angezeigt wird.\",\"vt7jiq\":\"Dies ist das einzige Mal, dass das Signaturgeheimnis angezeigt wird. Bitte kopieren Sie es jetzt und bewahren Sie es sicher auf.\",\"L7dIM7\":\"Dieser Link ist ungültig oder abgelaufen.\",\"MR5ygV\":\"Dieser Link ist nicht mehr gültig\",\"9LEqK0\":\"Dieser Name ist für Endbenutzer sichtbar\",\"QdUMM9\":\"Dieser Termin ist ausgebucht\",\"j5FdeA\":\"Diese Bestellung wird verarbeitet.\",\"sjNPMw\":\"Diese Bestellung wurde abgebrochen. Sie können jederzeit eine neue Bestellung aufgeben.\",\"OhCesD\":\"Diese Bestellung wurde storniert. Sie können jederzeit eine neue Bestellung aufgeben.\",\"lyD7rQ\":\"Dieses Veranstalterprofil ist noch nicht veröffentlicht\",\"9b5956\":\"Diese Vorschau zeigt, wie Ihre E-Mail mit Beispieldaten aussehen wird. Tatsächliche E-Mails verwenden echte Werte.\",\"uM9Alj\":\"Dieses Produkt wird auf der Veranstaltungsseite hervorgehoben\",\"RqSKdX\":\"Dieses Produkt ist ausverkauft\",\"W12OdJ\":\"Dieser Bericht dient nur zu Informationszwecken. Konsultieren Sie immer einen Steuerberater, bevor Sie diese Daten für Buchhaltungs- oder Steuerzwecke verwenden. Bitte gleichen Sie mit Ihrem Stripe-Dashboard ab, da Hi.Events möglicherweise historische Daten fehlen.\",\"0Ew0uk\":\"Dieses Ticket wurde gerade gescannt. Bitte warten Sie, bevor Sie erneut scannen.\",\"FYXq7k\":[\"Dies wirkt sich auf \",[\"loadedAffectedCount\"],\" Termin(e) aus.\"],\"kvpxIU\":\"Dies wird für Benachrichtigungen und die Kommunikation mit Ihren Nutzern verwendet.\",\"rhsath\":\"Dies ist für Kunden nicht sichtbar, hilft Ihnen aber, den Partner zu identifizieren.\",\"hV6FeJ\":\"Durchsatz\",\"+FjWgX\":\"Do\",\"kkDQ8m\":\"Donnerstag\",\"0GSPnc\":\"Ticketdesign\",\"EZC/Cu\":\"Ticketdesign erfolgreich gespeichert\",\"bbslmb\":\"Ticket-Designer\",\"1BPctx\":\"Ticket für\",\"bgqf+K\":\"E-Mail des Ticketinhabers\",\"oR7zL3\":\"Name des Ticketinhabers\",\"HGuXjF\":\"Ticketinhaber\",\"CMUt3Y\":\"Ticketinhaber\",\"awHmAT\":\"Ticket-ID\",\"6czJik\":\"Ticket-Logo\",\"OkRZ4Z\":\"Ticketname\",\"t79rDv\":\"Ticket nicht gefunden\",\"6tmWch\":\"Ticket oder Produkt\",\"1tfWrD\":\"Ticket-Vorschau für\",\"KnjoUA\":\"Ticketpreis\",\"tGCY6d\":\"Ticketpreis\",\"pGZOcL\":\"Ticket erfolgreich erneut gesendet\",\"8jLPgH\":\"Tickettyp\",\"X26cQf\":\"Ticket-URL\",\"8qsbZ5\":\"Ticketing & Verkauf\",\"zNECqg\":\"Tickets\",\"6GQNLE\":\"Tickets\",\"NRhrIB\":\"Tickets & Produkte\",\"OrWHoZ\":\"Tickets werden automatisch an Kunden auf der Warteliste angeboten, sobald Kapazitäten frei werden.\",\"EUnesn\":\"Tickets verfügbar\",\"AGRilS\":\"Verkaufte Tickets\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Uhrzeit\",\"dMtLDE\":\"bis\",\"/jQctM\":\"An\",\"tiI71C\":\"Um Ihre Limits zu erhöhen, kontaktieren Sie uns unter\",\"ecUA8p\":\"Heute\",\"W428WC\":\"Spalten umschalten\",\"BRMXj0\":\"Morgen\",\"UBSG1X\":\"Top Veranstalter (Letzte 14 Tage)\",\"3sZ0xx\":\"Gesamtkonten\",\"EaAPbv\":\"Gezahlter Gesamtbetrag\",\"SMDzqJ\":\"Teilnehmer gesamt\",\"orBECM\":\"Insgesamt eingesammelt\",\"k5CU8c\":\"Einträge gesamt\",\"4B7oCp\":\"Gesamtgebühr\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Gesamtbenutzer\",\"oJjplO\":\"Aufrufe Gesamt\",\"rBZ9pz\":\"Touren\",\"orluER\":\"Verfolgen Sie das Kontowachstum und die Leistung nach Attributionsquelle\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Wahr bei Offline-Zahlung\",\"9GsDR2\":\"Wahr bei ausstehender Zahlung\",\"GUA0Jy\":\"Andere Suche oder Filter versuchen\",\"2P/OWN\":\"Versuchen Sie, Ihre Filter anzupassen, um mehr Termine zu sehen.\",\"ouM5IM\":\"Andere E-Mail versuchen\",\"3DZvE7\":\"Hi.Events kostenlos testen\",\"7P/9OY\":\"Di\",\"vq2WxD\":\"Di\",\"G3myU+\":\"Dienstag\",\"Kz91g/\":\"Türkisch\",\"GdOhw6\":\"Ton ausschalten\",\"KUOhTy\":\"Ton einschalten\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Geben Sie \\\"löschen\\\" ein, um zu bestätigen\",\"XxecLm\":\"Art des Tickets\",\"IrVSu+\":\"Produkt konnte nicht dupliziert werden. Bitte überprüfen Sie Ihre Angaben\",\"Vx2J6x\":\"Teilnehmer konnte nicht abgerufen werden\",\"h0dx5e\":\"Warteliste konnte nicht beigetreten werden\",\"DaE0Hg\":\"Teilnehmerdetails können nicht geladen werden.\",\"GlnD5Y\":\"Produkte für diesen Termin konnten nicht geladen werden. Bitte versuchen Sie es erneut.\",\"17VbmV\":\"Check-in kann nicht rückgängig gemacht werden\",\"n57zCW\":\"Nicht zugeordnete Konten\",\"9uI/rE\":\"Rückgängig\",\"b9SN9q\":\"Eindeutige Bestellreferenz\",\"Ef7StM\":\"Unbekannt\",\"ZBAScj\":\"Unbekannter Teilnehmer\",\"MEIAzV\":\"Unbenannt\",\"K6L5Mx\":\"Unbenannter Standort\",\"X13xGn\":\"Nicht vertrauenswürdig\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Partner aktualisieren\",\"59qHrb\":\"Kapazität aktualisieren\",\"Gaem9v\":\"Veranstaltungsname und Beschreibung aktualisieren\",\"7EhE4k\":\"Bezeichnung aktualisieren\",\"NPQWj8\":\"Standort aktualisieren\",\"75+lpR\":[\"Update: \",[\"subjectTitle\"],\" — Terminplanänderungen\"],\"UOGHdA\":[\"Update: \",[\"subjectTitle\"],\" — Sessionzeit geändert\"],\"ogoTrw\":[[\"count\"],\" Termin(e) aktualisiert\"],\"dDuona\":[\"Kapazität für \",[\"count\"],\" Termin(e) aktualisiert\"],\"FT3LSc\":[\"Bezeichnung für \",[\"count\"],\" Termin(e) aktualisiert\"],\"8EcY1g\":[\"Standort für \",[\"count\"],\" Termin(e) aktualisiert\"],\"gJQsLv\":\"Laden Sie ein Titelbild für Ihren Veranstalter hoch\",\"4kEGqW\":\"Laden Sie ein Logo für Ihren Veranstalter hoch\",\"lnCMdg\":\"Bild hochladen\",\"29w7p6\":\"Bild wird hochgeladen...\",\"HtrFfw\":\"URL ist erforderlich\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB-Scanner aktiv\",\"dyTklH\":\"USB-Scanner pausiert\",\"OHJXlK\":\"Verwenden Sie <0>Liquid-Templating, um Ihre E-Mails zu personalisieren\",\"g0WJMu\":\"Liste für alle Termine verwenden\",\"0k4cdb\":\"Verwenden Sie Bestelldetails für alle Teilnehmer. Teilnehmernamen und E-Mails entsprechen den Informationen des Käufers.\",\"MKK5oI\":\"Liste für alle Termine verwenden oder eine Liste für diesen Termin erstellen?\",\"bA31T4\":\"Verwenden Sie die Käuferdaten für alle Teilnehmer\",\"rnoQsz\":\"Verwendet für Rahmen, Hervorhebungen und QR-Code-Styling\",\"BV4L/Q\":\"UTM-Analyse\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Ihre Umsatzsteuer-Identifikationsnummer wird validiert...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"USt-IdNr.\",\"pnVh83\":\"Umsatzsteuer-ID\",\"CabI04\":\"Umsatzsteuer-Identifikationsnummer darf keine Leerzeichen enthalten\",\"PMhxAR\":\"Umsatzsteuer-Identifikationsnummer muss mit einem zweistelligen Ländercode beginnen, gefolgt von 8-15 alphanumerischen Zeichen (z.B. DE123456789)\",\"gPgdNV\":\"Umsatzsteuer-Identifikationsnummer erfolgreich validiert\",\"RUMiLy\":\"Validierung der Umsatzsteuer-Identifikationsnummer fehlgeschlagen\",\"vqji3Y\":\"Validierung der Umsatzsteuer-Identifikationsnummer fehlgeschlagen. Bitte überprüfen Sie Ihre Umsatzsteuer-Identifikationsnummer.\",\"8dENF9\":\"MwSt. auf Gebühr\",\"ZutOKU\":\"MwSt.-Satz\",\"+KJZt3\":\"Umsatzsteuerpflichtig\",\"Nfbg76\":\"Umsatzsteuereinstellungen erfolgreich gespeichert\",\"UvYql/\":\"Umsatzsteuer-Einstellungen gespeichert. Wir validieren Ihre Umsatzsteuer-Identifikationsnummer im Hintergrund.\",\"bXn1Jz\":\"Umsatzsteuereinstellungen aktualisiert\",\"tJylUv\":\"Umsatzsteuerbehandlung für Plattformgebühren\",\"FlGprQ\":\"Umsatzsteuerbehandlung für Plattformgebühren: EU-umsatzsteuerregistrierte Unternehmen können die Umkehrung der Steuerschuldnerschaft nutzen (0% - Artikel 196 der MwSt-Richtlinie 2006/112/EG). Nicht umsatzsteuerregistrierte Unternehmen wird die irische Umsatzsteuer von 23% berechnet.\",\"516oLj\":\"Umsatzsteuer-Validierungsdienst vorübergehend nicht verfügbar\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"USt: nicht registriert\",\"AdWhjZ\":\"Bestätigungscode\",\"QDEWii\":\"Verifiziert\",\"wCKkSr\":\"E-Mail verifizieren\",\"/IBv6X\":\"Bestätigen Sie Ihre E-Mail-Adresse\",\"e/cvV1\":\"Wird verifiziert...\",\"fROFIL\":\"Vietnamesisch\",\"p5nYkr\":\"Alle anzeigen\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Alle Funktionen anzeigen\",\"RnvnDc\":\"Alle plattformweit gesendeten Nachrichten anzeigen\",\"+WFMis\":\"Berichte für alle Ihre Veranstaltungen anzeigen und herunterladen. Nur abgeschlossene Bestellungen sind enthalten.\",\"c7VN/A\":\"Antworten anzeigen\",\"SZw9tS\":\"Details anzeigen\",\"9+84uW\":[\"Details für \",[\"0\"],\" \",[\"1\"],\" ansehen\"],\"FCVmuU\":\"Veranstaltung ansehen\",\"c6SXHN\":\"Veranstaltungsseite anzeigen\",\"n6EaWL\":\"Protokolle anzeigen\",\"OaKTzt\":\"Karte ansehen\",\"zNZNMs\":\"Nachricht anzeigen\",\"67OJ7t\":\"Bestellung anzeigen\",\"tKKZn0\":\"Bestelldetails anzeigen\",\"KeCXJu\":\"Sehen Sie Bestelldetails ein, erstatten Sie Rückzahlungen und senden Sie Bestätigungen erneut.\",\"9jnAcN\":\"Veranstalter-Startseite anzeigen\",\"1J/AWD\":\"Ticket anzeigen\",\"N9FyyW\":\"Sehen, bearbeiten und exportieren Sie Ihre registrierten Teilnehmer.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Wartend\",\"quR8Qp\":\"Warten auf Zahlung\",\"KrurBH\":\"Warte auf Scan…\",\"u0n+wz\":\"Warteliste\",\"3RXFtE\":\"Warteliste aktiviert\",\"TwnTPy\":\"Wartelistenangebot abgelaufen\",\"NzIvKm\":\"Warteliste ausgelöst\",\"aUi/Dz\":\"Warnung: Dies ist die Systemstandardkonfiguration. Änderungen wirken sich auf alle Konten aus, denen keine spezifische Konfiguration zugewiesen ist.\",\"qeygIa\":\"Mi\",\"aT/44s\":\"Wir konnten diese Stripe-Verbindung nicht kopieren. Bitte versuche es erneut.\",\"RRZDED\":\"Wir konnten keine Bestellungen finden, die mit dieser E-Mail-Adresse verknüpft sind.\",\"2RZK9x\":\"Wir konnten die gesuchte Bestellung nicht finden. Der Link ist möglicherweise abgelaufen oder die Bestelldetails haben sich geändert.\",\"nefMIK\":\"Wir konnten das gesuchte Ticket nicht finden. Der Link ist möglicherweise abgelaufen oder die Ticketdetails haben sich geändert.\",\"miysJh\":\"Wir konnten diese Bestellung nicht finden. Möglicherweise wurde sie entfernt.\",\"ADsQ23\":\"Wir konnten Stripe gerade nicht erreichen. Bitte versuche es gleich erneut.\",\"HJKdzP\":\"Beim Laden dieser Seite ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\",\"jegrvW\":\"Wir arbeiten mit Stripe zusammen, um Auszahlungen direkt auf dein Bankkonto zu senden.\",\"IfN2Qo\":\"Wir empfehlen ein quadratisches Logo mit mindestens 200x200px\",\"wJzo/w\":\"Wir empfehlen Abmessungen von 400 × 400 Pixeln und eine maximale Dateigröße von 5 MB\",\"KRCDqH\":\"Wir verwenden Cookies, um zu verstehen, wie die Website genutzt wird, und um Ihre Erfahrung zu verbessern.\",\"x8rEDQ\":\"Wir konnten Ihre Umsatzsteuer-Identifikationsnummer nach mehreren Versuchen nicht validieren. Wir versuchen es weiterhin im Hintergrund. Bitte schauen Sie später wieder vorbei.\",\"iy+M+c\":[\"Wir benachrichtigen Sie per E-Mail, wenn ein Platz für \",[\"productDisplayName\"],\" verfügbar wird.\"],\"McuGND\":\"Nach dem Speichern öffnen wir einen Nachrichten-Editor mit einer vorgefertigten Vorlage. Sie prüfen und senden sie — nichts wird automatisch verschickt.\",\"q1BizZ\":\"Wir senden Ihre Tickets an diese E-Mail\",\"ZOmUYW\":\"Wir validieren Ihre Umsatzsteuer-Identifikationsnummer im Hintergrund. Falls es Probleme gibt, werden wir Sie informieren.\",\"LKjHr4\":[\"Wir haben Änderungen am Terminplan für \\\"\",[\"title\"],\"\\\" vorgenommen — \",[\"description\"],\", betrifft \",[\"affectedCount\"],\" Session(s).\"],\"Fq/Nx7\":\"Wir haben einen 5-stelligen Bestätigungscode gesendet an:\",\"GdWB+V\":\"Webhook erfolgreich erstellt\",\"2X4ecw\":\"Webhook erfolgreich gelöscht\",\"ndBv0v\":\"Webhook-Integrationen\",\"CThMKa\":\"Webhook-Protokolle\",\"I0adYQ\":\"Webhook-Signaturgeheimnis\",\"nuh/Wq\":\"Webhook-URL\",\"8BMPMe\":\"Webhook sendet keine Benachrichtigungen\",\"FSaY52\":\"Webhook sendet Benachrichtigungen\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Mi\",\"VAcXNz\":\"Mittwoch\",\"64X6l4\":\"Woche\",\"4XSc4l\":\"Wöchentlich\",\"IAUiSh\":\"Wochen\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Willkommen zurück\",\"QDWsl9\":[\"Willkommen bei \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Willkommen bei \",[\"0\"],\", hier ist eine Übersicht all Ihrer Veranstaltungen\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"Um wie viel Uhr?\",\"FaSXqR\":\"Welche Art von Veranstaltung?\",\"0WyYF4\":\"Was nicht angemeldetes Personal sieht\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Wenn ein Check-in gelöscht wird\",\"RPe6bE\":\"Wenn ein Termin einer wiederkehrenden Veranstaltung abgesagt wird\",\"Gmd0hv\":\"Wenn ein neuer Teilnehmer erstellt wird\",\"zyIyPe\":\"Wenn eine neue Veranstaltung erstellt wird\",\"Lc18qn\":\"Wenn eine neue Bestellung erstellt wird\",\"dfkQIO\":\"Wenn ein neues Produkt erstellt wird\",\"8OhzyY\":\"Wenn ein Produkt gelöscht wird\",\"tRXdQ9\":\"Wenn ein Produkt aktualisiert wird\",\"9L9/28\":\"Wenn ein Produkt ausverkauft ist, können Kunden einer Warteliste beitreten, um benachrichtigt zu werden, sobald Plätze verfügbar werden.\",\"Q7CWxp\":\"Wenn ein Teilnehmer storniert wird\",\"IuUoyV\":\"Wenn ein Teilnehmer eingecheckt wird\",\"nBVOd7\":\"Wenn ein Teilnehmer aktualisiert wird\",\"t7cuMp\":\"Wenn eine Veranstaltung archiviert wird\",\"gtoSzE\":\"Wenn eine Veranstaltung aktualisiert wird\",\"ny2r8d\":\"Wenn eine Bestellung storniert wird\",\"c9RYbv\":\"Wenn eine Bestellung als bezahlt markiert wird\",\"ejMDw1\":\"Wenn eine Bestellung erstattet wird\",\"fVPt0F\":\"Wenn eine Bestellung aktualisiert wird\",\"bcYlvb\":\"Wann Check-In schließt\",\"XIG669\":\"Wann Check-In öffnet\",\"403wpZ\":\"Wenn aktiviert, ermöglichen neue Veranstaltungen Teilnehmern, ihre eigenen Ticketdetails über einen sicheren Link zu verwalten. Dies kann pro Veranstaltung überschrieben werden.\",\"blXLKj\":\"Wenn aktiviert, zeigen neue Veranstaltungen beim Checkout ein Marketing-Opt-in-Kontrollkästchen an. Dies kann pro Veranstaltung überschrieben werden.\",\"Kj0Txn\":\"Wenn aktiviert, werden bei Stripe Connect-Transaktionen keine Anwendungsgebühren berechnet. Verwenden Sie dies für Länder, in denen Anwendungsgebühren nicht unterstützt werden.\",\"tMqezN\":\"Ob Erstattungen verarbeitet werden\",\"uchB0M\":\"Widget-Vorschau\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Schreiben Sie Ihre Nachricht hier...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"Jahr\",\"zkWmBh\":\"Jährlich\",\"+BGee5\":\"Jahre\",\"X/azM1\":\"Ja - Ich habe eine gültige EU-Umsatzsteuer-ID\",\"Tz5oXG\":\"Ja, Bestellung stornieren\",\"QlSZU0\":[\"Sie geben sich als <0>\",[\"0\"],\" (\",[\"1\"],\") aus\"],\"s14PLh\":[\"Sie geben eine Teilerstattung aus. Dem Kunden werden \",[\"0\"],\" \",[\"1\"],\" erstattet.\"],\"o7LgX6\":\"Sie können zusätzliche Servicegebühren und Steuern in Ihren Kontoeinstellungen konfigurieren.\",\"rj3A7+\":\"Sie können dies später für einzelne Termine überschreiben.\",\"paWwQ0\":\"Sie können Tickets bei Bedarf weiterhin manuell anbieten.\",\"jTDzpA\":\"Sie können den letzten aktiven Veranstalter Ihres Kontos nicht archivieren.\",\"5VGIlq\":\"Sie haben Ihr Nachrichtenlimit erreicht.\",\"casL1O\":\"Sie haben Steuern und Gebühren zu einem kostenlosen Produkt hinzugefügt. Möchten Sie diese entfernen?\",\"9jJNZY\":\"Sie müssen Ihre Verantwortung bestätigen, bevor Sie speichern können\",\"pCLes8\":\"Sie müssen dem Erhalt von Nachrichten zustimmen\",\"FVTVBy\":\"Sie müssen Ihre E-Mail-Adresse bestätigen, bevor Sie den Veranstalterstatus aktualisieren können.\",\"ze4bi/\":\"Sie müssen mindestens einen Termin erstellen, bevor Sie Teilnehmer zu dieser wiederkehrenden Veranstaltung hinzufügen können.\",\"w65ZgF\":\"Sie müssen Ihre Konto-E-Mail-Adresse verifizieren, bevor Sie E-Mail-Vorlagen ändern können.\",\"FRl8Jv\":\"Sie müssen Ihre Konto-E-Mail-Adresse verifizieren, bevor Sie Nachrichten senden können.\",\"88cUW+\":\"Sie erhalten\",\"O6/3cu\":\"Im nächsten Schritt können Sie Termine, Zeitpläne und Wiederholungsregeln einrichten.\",\"zKAheG\":\"Sie ändern Sessionzeiten\",\"MNFIxz\":[\"Sie gehen zu \",[\"0\"],\"!\"],\"qGZz0m\":\"Sie stehen auf der Warteliste!\",\"/5HL6k\":\"Ihnen wurde ein Platz angeboten!\",\"gbjFFH\":\"Sie haben die Sessionzeit geändert\",\"p/Sa0j\":\"Ihr Konto hat Messaging-Limits. Um Ihre Limits zu erhöhen, kontaktieren Sie uns unter\",\"x/xjzn\":\"Ihre Partner wurden erfolgreich exportiert.\",\"TF37u6\":\"Deine Teilnehmer wurden erfolgreich exportiert.\",\"79lXGw\":\"Ihre Check-In-Liste wurde erfolgreich erstellt. Teilen Sie den unten stehenden Link mit Ihrem Check-In-Personal.\",\"BnlG9U\":\"Ihre aktuelle Bestellung geht verloren.\",\"nBqgQb\":\"Ihre E-Mail\",\"GG1fRP\":\"Ihre Veranstaltung ist live!\",\"ifRqmm\":\"Ihre Nachricht wurde erfolgreich gesendet!\",\"0/+Nn9\":\"Ihre Nachrichten werden hier angezeigt\",\"/Rj5P4\":\"Ihr Name\",\"PFjJxY\":\"Ihr neues Passwort muss mindestens 8 Zeichen lang sein.\",\"gzrCuN\":\"Ihre Bestelldetails wurden aktualisiert. Eine Bestätigungs-E-Mail wurde an die neue E-Mail-Adresse gesendet.\",\"naQW82\":\"Ihre Bestellung wurde storniert.\",\"bhlHm/\":\"Ihre Bestellung wartet auf Zahlung\",\"XeNum6\":\"Deine Bestellungen wurden erfolgreich exportiert.\",\"Xd1R1a\":\"Adresse Ihres Veranstalters\",\"WWYHKD\":\"Ihre Zahlung ist mit Verschlüsselung auf Bankniveau geschützt\",\"5b3QLi\":\"Ihr Tarif\",\"N4Zkqc\":\"Ihr gespeicherter Terminfilter ist nicht mehr verfügbar — alle Termine werden angezeigt.\",\"FNO5uZ\":\"Ihr Ticket ist weiterhin gültig — es ist keine Aktion erforderlich, es sei denn, die neue Uhrzeit passt Ihnen nicht. Bitte antworten Sie auf diese E-Mail, falls Sie Fragen haben.\",\"CnZ3Ou\":\"Ihre Tickets wurden bestätigt.\",\"EmFsMZ\":\"Ihre Umsatzsteuer-Identifikationsnummer ist zur Validierung in der Warteschlange\",\"QBlhh4\":\"Ihre Umsatzsteuer-Identifikationsnummer wird beim Speichern validiert\",\"fT9VLt\":\"Ihr Wartelistenangebot ist abgelaufen und wir konnten Ihre Bestellung nicht abschließen. Bitte treten Sie der Warteliste erneut bei, um benachrichtigt zu werden, sobald weitere Plätze verfügbar werden.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Hier gibt es noch nichts zu zeigen'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>erfolgreich ausgecheckt\"],\"KMgp2+\":[[\"0\"],\" verfügbar\"],\"Pmr5xp\":[[\"0\"],\" erfolgreich erstellt\"],\"FImCSc\":[[\"0\"],\" erfolgreich aktualisiert\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" Tage, \",[\"hours\"],\" Stunden, \",[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"f3RdEk\":[[\"hours\"],\" Stunden, \",[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"NlQ0cx\":[\"Erste Veranstaltung von \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://Ihre-website.com\",\"qnSLLW\":\"<0>Bitte geben Sie den Preis ohne Steuern und Gebühren ein.<1>Steuern und Gebühren können unten hinzugefügt werden.\",\"ZjMs6e\":\"<0>Die Anzahl der für dieses Produkt verfügbaren Produkte<1>Dieser Wert kann überschrieben werden, wenn mit diesem Produkt <2>Kapazitätsgrenzen verbunden sind.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 Minuten und 0 Sekunden\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Hauptstraße 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Ein Datumseingabefeld. Perfekt, um nach einem Geburtsdatum o.ä. zu fragen.\",\"6euFZ/\":[\"Ein standardmäßiger \",[\"type\"],\" wird automatisch auf alle neuen Produkte angewendet. Sie können dies für jedes Produkt einzeln überschreiben.\"],\"SMUbbQ\":\"Eine Dropdown-Eingabe erlaubt nur eine Auswahl\",\"qv4bfj\":\"Eine Gebühr, beispielsweise eine Buchungsgebühr oder eine Servicegebühr\",\"POT0K/\":\"Ein fester Betrag pro Produkt. Z.B., 0,50 $ pro Produkt\",\"f4vJgj\":\"Eine mehrzeilige Texteingabe\",\"OIPtI5\":\"Ein Prozentsatz des Produktpreises. Z.B., 3,5 % des Produktpreises\",\"ZthcdI\":\"Ein Promo-Code ohne Rabatt kann verwendet werden, um versteckte Produkte anzuzeigen.\",\"AG/qmQ\":\"Eine Radiooption hat mehrere Optionen, aber nur eine kann ausgewählt werden.\",\"h179TP\":\"Eine kurze Beschreibung der Veranstaltung, die in Suchmaschinenergebnissen und beim Teilen in sozialen Medien angezeigt wird. Standardmäßig wird die Veranstaltungsbeschreibung verwendet\",\"WKMnh4\":\"Eine einzeilige Texteingabe\",\"BHZbFy\":\"Eine einzelne Frage pro Bestellung. Z.B., Wie lautet Ihre Lieferadresse?\",\"Fuh+dI\":\"Eine einzelne Frage pro Produkt. Z.B., Welche T-Shirt-Größe haben Sie?\",\"RlJmQg\":\"Eine Standardsteuer wie Mehrwertsteuer oder GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Akzeptieren Sie Banküberweisungen, Schecks oder andere Offline-Zahlungsmethoden\",\"hrvLf4\":\"Akzeptieren Sie Kreditkartenzahlungen über Stripe\",\"bfXQ+N\":\"Einladung annehmen\",\"AeXO77\":\"Konto\",\"lkNdiH\":\"Kontoname\",\"Puv7+X\":\"Account Einstellungen\",\"OmylXO\":\"Konto erfolgreich aktualisiert\",\"7L01XJ\":\"Aktionen\",\"FQBaXG\":\"Aktivieren\",\"5T2HxQ\":\"Aktivierungsdatum\",\"F6pfE9\":\"Aktiv\",\"/PN1DA\":\"Fügen Sie eine Beschreibung für diese Eincheckliste hinzu\",\"0/vPdA\":\"Fügen Sie Anmerkungen über den Teilnehmer hinzu. Diese sind für den Teilnehmer nicht sichtbar.\",\"Or1CPR\":\"Fügen Sie Anmerkungen über den Teilnehmer hinzu...\",\"l3sZO1\":\"Fügen Sie Notizen zur Bestellung hinzu. Diese sind für den Kunden nicht sichtbar.\",\"xMekgu\":\"Fügen Sie Notizen zur Bestellung hinzu...\",\"PGPGsL\":\"Beschreibung hinzufügen\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Fügen Sie Anweisungen für Offline-Zahlungen hinzu (z. B. Überweisungsdetails, wo Schecks hingeschickt werden sollen, Zahlungsfristen)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Neue hinzufügen\",\"TZxnm8\":\"Option hinzufügen\",\"24l4x6\":\"Produkt hinzufügen\",\"8q0EdE\":\"Produkt zur Kategorie hinzufügen\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Steuern oder Gebühren hinzufügen\",\"goOKRY\":\"Ebene hinzufügen\",\"oZW/gT\":\"Zum Kalender hinzufügen\",\"pn5qSs\":\"Zusätzliche Informationen\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adresse\",\"NY/x1b\":\"Anschrift Zeile 1\",\"POdIrN\":\"Anschrift Zeile 1\",\"cormHa\":\"Adresszeile 2\",\"gwk5gg\":\"Adresszeile 2\",\"U3pytU\":\"Administrator\",\"HLDaLi\":\"Administratorbenutzer haben vollständigen Zugriff auf Ereignisse und Kontoeinstellungen.\",\"W7AfhC\":\"Alle Teilnehmer dieser Veranstaltung\",\"cde2hc\":\"Alle Produkte\",\"5CQ+r0\":\"Erlauben Sie Teilnehmern, die mit unbezahlten Bestellungen verbunden sind, einzuchecken\",\"ipYKgM\":\"Suchmaschinenindizierung zulassen\",\"LRbt6D\":\"Suchmaschinen erlauben, dieses Ereignis zu indizieren\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Erstaunlich, Ereignis, Schlüsselwörter...\",\"hehnjM\":\"Betrag\",\"R2O9Rg\":[\"Bezahlter Betrag (\",[\"0\"],\")\"],\"V7MwOy\":\"Beim Laden der Seite ist ein Fehler aufgetreten\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Ein unerwarteter Fehler ist aufgetreten.\",\"byKna+\":\"Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut.\",\"ubdMGz\":\"Alle Anfragen von Produktinhabern werden an diese E-Mail-Adresse gesendet. Diese wird auch als „Antwort-an“-Adresse für alle von dieser Veranstaltung gesendeten E-Mails verwendet.\",\"aAIQg2\":\"Erscheinungsbild\",\"Ym1gnK\":\"angewandt\",\"sy6fss\":[\"Gilt für \",[\"0\"],\" Produkte\"],\"kadJKg\":\"Gilt für 1 Produkt\",\"DB8zMK\":\"Anwenden\",\"GctSSm\":\"Promo-Code anwenden\",\"ARBThj\":[\"Diesen \",[\"type\"],\" auf alle neuen Produkte anwenden\"],\"S0ctOE\":\"Veranstaltung archivieren\",\"TdfEV7\":\"Archiviert\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Möchten Sie diesen Teilnehmer wirklich aktivieren?\",\"TvkW9+\":\"Sind Sie sicher, dass Sie diese Veranstaltung archivieren möchten?\",\"/CV2x+\":\"Möchten Sie diesen Teilnehmer wirklich stornieren? Dadurch wird sein Ticket ungültig.\",\"YgRSEE\":\"Möchten Sie diesen Aktionscode wirklich löschen?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Möchten Sie diese Veranstaltung wirklich als Entwurf speichern? Dadurch wird die Veranstaltung für die Öffentlichkeit unsichtbar.\",\"mEHQ8I\":\"Möchten Sie diese Veranstaltung wirklich öffentlich machen? Dadurch wird die Veranstaltung für die Öffentlichkeit sichtbar\",\"s4JozW\":\"Sind Sie sicher, dass Sie diese Veranstaltung wiederherstellen möchten? Es wird als Entwurf wiederhergestellt.\",\"vJuISq\":\"Sind Sie sicher, dass Sie diese Kapazitätszuweisung löschen möchten?\",\"baHeCz\":\"Möchten Sie diese Eincheckliste wirklich löschen?\",\"LBLOqH\":\"Einmal pro Bestellung anfragen\",\"wu98dY\":\"Einmal pro Produkt fragen\",\"ss9PbX\":\"Teilnehmer\",\"m0CFV2\":\"Teilnehmerdetails\",\"QKim6l\":\"Teilnehmer nicht gefunden\",\"R5IT/I\":\"Teilnehmernotizen\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Teilnehmer-Ticket\",\"9SZT4E\":\"Teilnehmer\",\"iPBfZP\":\"Registrierte Teilnehmer\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatische Größenanpassung\",\"vZ5qKF\":\"Passen Sie die Widget-Höhe automatisch an den Inhalt an. Bei Deaktivierung füllt das Widget die Höhe des Containers aus.\",\"4lVaWA\":\"Warten auf Offline-Zahlung\",\"2rHwhl\":\"Warten auf Offline-Zahlung\",\"3wF4Q/\":\"Zahlung ausstehend\",\"ioG+xt\":\"Zahlung steht aus\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Zurück zur Veranstaltungsseite\",\"VCoEm+\":\"Zurück zur Anmeldung\",\"k1bLf+\":\"Hintergrundfarbe\",\"I7xjqg\":\"Hintergrundtyp\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Rechnungsadresse\",\"/xC/im\":\"Rechnungseinstellungen\",\"rp/zaT\":\"Brasilianisches Portugiesisch\",\"whqocw\":\"Mit der Registrierung stimmen Sie unseren <0>Servicebedingungen und <1>Datenschutzrichtlinie zu.\",\"bcCn6r\":\"Berechnungstyp\",\"+8bmSu\":\"Kalifornien\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Abbrechen\",\"Gjt/py\":\"E-Mail-Änderung abbrechen\",\"tVJk4q\":\"Bestellung stornieren\",\"Os6n2a\":\"Bestellung stornieren\",\"Mz7Ygx\":[\"Bestellung stornieren \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Abgesagt\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Kapazität\",\"V6Q5RZ\":\"Kapazitätszuweisung erfolgreich erstellt\",\"k5p8dz\":\"Kapazitätszuweisung erfolgreich gelöscht\",\"nDBs04\":\"Kapazitätsverwaltung\",\"ddha3c\":\"Kategorien ermöglichen es Ihnen, Produkte zusammenzufassen. Zum Beispiel könnten Sie eine Kategorie für \\\"Tickets\\\" und eine andere für \\\"Merchandise\\\" haben.\",\"iS0wAT\":\"Kategorien helfen Ihnen, Ihre Produkte zu organisieren. Dieser Titel wird auf der öffentlichen Veranstaltungsseite angezeigt.\",\"eorM7z\":\"Kategorien erfolgreich neu geordnet.\",\"3EXqwa\":\"Kategorie erfolgreich erstellt\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Kennwort ändern\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Check-in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Einchecken und Bestellung als bezahlt markieren\",\"QYLpB4\":\"Nur einchecken\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Schau dir dieses Event an!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Eincheckliste erfolgreich gelöscht\",\"+hBhWk\":\"Die Eincheckliste ist abgelaufen\",\"mBsBHq\":\"Die Eincheckliste ist nicht aktiv\",\"vPqpQG\":\"Eincheckliste nicht gefunden\",\"tejfAy\":\"Einchecklisten\",\"hD1ocH\":\"Eincheck-URL in die Zwischenablage kopiert\",\"CNafaC\":\"Kontrollkästchenoptionen ermöglichen Mehrfachauswahl\",\"SpabVf\":\"Kontrollkästchen\",\"CRu4lK\":\"Eingecheckt\",\"znIg+z\":\"Zur Kasse\",\"1WnhCL\":\"Checkout-Einstellungen\",\"6imsQS\":\"Vereinfachtes Chinesisch\",\"JjkX4+\":\"Wählen Sie eine Farbe für Ihren Hintergrund\",\"/Jizh9\":\"Wähle einen Account\",\"3wV73y\":\"Stadt\",\"FG98gC\":\"Suchtext löschen\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Zum Kopieren klicken\",\"yz7wBu\":\"Schließen\",\"62Ciis\":\"Sidebar schließen\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Der Code muss zwischen 3 und 50 Zeichen lang sein\",\"oqr9HB\":\"Dieses Produkt einklappen, wenn die Veranstaltungsseite initial geladen wird\",\"jZlrte\":\"Farbe\",\"Vd+LC3\":\"Die Farbe muss ein gültiger Hex-Farbcode sein. Beispiel: #ffffff\",\"1HfW/F\":\"Farben\",\"VZeG/A\":\"Demnächst\",\"yPI7n9\":\"Durch Kommas getrennte Schlüsselwörter, die das Ereignis beschreiben. Diese werden von Suchmaschinen verwendet, um das Ereignis zu kategorisieren und zu indizieren.\",\"NPZqBL\":\"Bestellung abschließen\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Jetzt bezahlen\",\"qqWcBV\":\"Vollendet\",\"6HK5Ct\":\"Abgeschlossene Bestellungen\",\"NWVRtl\":\"Abgeschlossene Bestellungen\",\"DwF9eH\":\"Komponentencode\",\"Tf55h7\":\"Konfigurierter Rabatt\",\"7VpPHA\":\"Bestätigen\",\"ZaEJZM\":\"E-Mail-Änderung bestätigen\",\"yjkELF\":\"Bestätige neues Passwort\",\"xnWESi\":\"Bestätige das Passwort\",\"p2/GCq\":\"Bestätige das Passwort\",\"wnDgGj\":\"E-Mail-Adresse wird bestätigt …\",\"pbAk7a\":\"Stripe verbinden\",\"UMGQOh\":\"Mit Stripe verbinden\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Verbindungsdetails\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Weitermachen\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Text für Weiter-Schaltfläche\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Kopiert\",\"T5rdis\":\"in die Zwischenablage kopiert\",\"he3ygx\":\"Kopieren\",\"r2B2P8\":\"Eincheck-URL kopieren\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Link kopieren\",\"E6nRW7\":\"URL kopieren\",\"JNCzPW\":\"Land\",\"IF7RiR\":\"Abdeckung\",\"hYgDIe\":\"Erstellen\",\"b9XOHo\":[\"Erstellen Sie \",[\"0\"]],\"k9RiLi\":\"Ein Produkt erstellen\",\"6kdXbW\":\"Einen Promo-Code erstellen\",\"n5pRtF\":\"Ticket erstellen\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"einen Organizer erstellen\",\"ipP6Ue\":\"Teilnehmer erstellen\",\"VwdqVy\":\"Kapazitätszuweisung erstellen\",\"EwoMtl\":\"Kategorie erstellen\",\"XletzW\":\"Kategorie erstellen\",\"WVbTwK\":\"Eincheckliste erstellen\",\"uN355O\":\"Ereignis erstellen\",\"BOqY23\":\"Neu erstellen\",\"kpJAeS\":\"Organizer erstellen\",\"a0EjD+\":\"Produkt erstellen\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Promo-Code erstellen\",\"B3Mkdt\":\"Frage erstellen\",\"UKfi21\":\"Steuer oder Gebühr erstellen\",\"d+F6q9\":\"Erstellt\",\"Q2lUR2\":\"Währung\",\"DCKkhU\":\"Aktuelles Passwort\",\"uIElGP\":\"Benutzerdefinierte Karten-URL\",\"UEqXyt\":\"Benutzerdefinierter Bereich\",\"876pfE\":\"Kunde\",\"QOg2Sf\":\"Passen Sie die E-Mail- und Benachrichtigungseinstellungen für dieses Ereignis an\",\"Y9Z/vP\":\"Passen Sie die Startseite der Veranstaltung und die Nachrichten an der Kasse an\",\"2E2O5H\":\"Passen Sie die sonstigen Einstellungen für dieses Ereignis an\",\"iJhSxe\":\"Passen Sie die SEO-Einstellungen für dieses Event an\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Gefahrenzone\",\"ZQKLI1\":\"Gefahrenzone\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Datum\",\"JvUngl\":\"Datum & Zeit\",\"JJhRbH\":\"Kapazität am ersten Tag\",\"cnGeoo\":\"Löschen\",\"jRJZxD\":\"Kapazität löschen\",\"VskHIx\":\"Kategorie löschen\",\"Qrc8RZ\":\"Eincheckliste löschen\",\"WHf154\":\"Code löschen\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Beschreibung\",\"YC3oXa\":\"Beschreibung für das Eincheckpersonal\",\"URmyfc\":\"Einzelheiten\",\"1lRT3t\":\"Das Deaktivieren dieser Kapazität wird Verkäufe verfolgen, aber nicht stoppen, wenn das Limit erreicht ist\",\"H6Ma8Z\":\"Rabatt\",\"ypJ62C\":\"Rabatt %\",\"3LtiBI\":[\"Rabatt in \",[\"0\"]],\"C8JLas\":\"Rabattart\",\"1QfxQT\":\"Schließen\",\"DZlSLn\":\"Dokumentenbeschriftung\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Spende / Produkt mit freier Preiswahl\",\"OvNbls\":\".ics herunterladen\",\"kodV18\":\"CSV herunterladen\",\"CELKku\":\"Rechnung herunterladen\",\"LQrXcu\":\"Rechnung herunterladen\",\"QIodqd\":\"QR-Code herunterladen\",\"yhjU+j\":\"Rechnung wird heruntergeladen\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Dropdown-Auswahl\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Ereignis duplizieren\",\"3ogkAk\":\"Ereignis duplizieren\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Optionen duplizieren\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Früher Vogel\",\"ePK91l\":\"Bearbeiten\",\"N6j2JH\":[\"Bearbeiten \",[\"0\"]],\"kBkYSa\":\"Kapazität bearbeiten\",\"oHE9JT\":\"Kapazitätszuweisung bearbeiten\",\"j1Jl7s\":\"Kategorie bearbeiten\",\"FU1gvP\":\"Eincheckliste bearbeiten\",\"iFgaVN\":\"Code bearbeiten\",\"jrBSO1\":\"Organisator bearbeiten\",\"tdD/QN\":\"Produkt bearbeiten\",\"n143Tq\":\"Produktkategorie bearbeiten\",\"9BdS63\":\"Aktionscode bearbeiten\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Frage bearbeiten\",\"poTr35\":\"Benutzer bearbeiten\",\"GTOcxw\":\"Benutzer bearbeiten\",\"pqFrv2\":\"z.B. 2,50 für 2,50 $\",\"3yiej1\":\"z.B. 23,5 für 23,5 %\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"E-Mail- und Benachrichtigungseinstellungen\",\"ATGYL1\":\"E-Mail-Adresse\",\"hzKQCy\":\"E-Mail-Adresse\",\"HqP6Qf\":\"E-Mail-Änderung erfolgreich abgebrochen\",\"mISwW1\":\"E-Mail-Änderung ausstehend\",\"APuxIE\":\"E-Mail-Bestätigung erneut gesendet\",\"YaCgdO\":\"E-Mail-Bestätigung erfolgreich erneut gesendet\",\"jyt+cx\":\"E-Mail-Fußzeilennachricht\",\"I6F3cp\":\"E-Mail nicht verifiziert\",\"NTZ/NX\":\"Einbettungscode\",\"4rnJq4\":\"Einbettungsskript\",\"8oPbg1\":\"Rechnungsstellung aktivieren\",\"j6w7d/\":\"Aktivieren Sie diese Kapazität, um den Produktverkauf zu stoppen, wenn das Limit erreicht ist\",\"VFv2ZC\":\"Enddatum\",\"237hSL\":\"Beendet\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Englisch\",\"MhVoma\":\"Geben Sie einen Betrag ohne Steuern und Gebühren ein.\",\"SlfejT\":\"Fehler\",\"3Z223G\":\"Fehler beim Bestätigen der E-Mail-Adresse\",\"a6gga1\":\"Fehler beim Bestätigen der E-Mail-Änderung\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Ereignis\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Veranstaltungsdatum\",\"0Zptey\":\"Ereignisstandards\",\"QcCPs8\":\"Veranstaltungsdetails\",\"6fuA9p\":\"Ereignis erfolgreich dupliziert\",\"AEuj2m\":\"Veranstaltungsstartseite\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Veranstaltungsort & Details zum Veranstaltungsort\",\"OopDbA\":\"Event page\",\"4/If97\":\"Die Aktualisierung des Ereignisstatus ist fehlgeschlagen. Bitte versuchen Sie es später erneut\",\"btxLWj\":\"Veranstaltungsstatus aktualisiert\",\"nMU2d3\":\"Veranstaltungs-URL\",\"tst44n\":\"Veranstaltungen\",\"sZg7s1\":\"Ablaufdatum\",\"KnN1Tu\":\"Läuft ab\",\"uaSvqt\":\"Verfallsdatum\",\"GS+Mus\":\"Export\",\"9xAp/j\":\"Teilnehmer konnte nicht abgesagt werden\",\"ZpieFv\":\"Stornierung der Bestellung fehlgeschlagen\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Rechnung konnte nicht heruntergeladen werden. Bitte versuchen Sie es erneut.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Laden der Eincheckliste fehlgeschlagen\",\"ZQ15eN\":\"Ticket-E-Mail konnte nicht erneut gesendet werden\",\"ejXy+D\":\"Produkte konnten nicht sortiert werden\",\"PLUB/s\":\"Gebühr\",\"/mfICu\":\"Gebühren\",\"LyFC7X\":\"Bestellungen filtern\",\"cSev+j\":\"Filter\",\"CVw2MU\":[\"Filter (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Erste Rechnungsnummer\",\"V1EGGU\":\"Vorname\",\"kODvZJ\":\"Vorname\",\"S+tm06\":\"Der Vorname muss zwischen 1 und 50 Zeichen lang sein\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Erstmals verwendet\",\"TpqW74\":\"Fest\",\"irpUxR\":\"Fester Betrag\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Passwort vergessen?\",\"2POOFK\":\"Frei\",\"P/OAYJ\":\"Kostenloses Produkt\",\"vAbVy9\":\"Kostenloses Produkt, keine Zahlungsinformationen erforderlich\",\"nLC6tu\":\"Französisch\",\"Weq9zb\":\"Allgemein\",\"DDcvSo\":\"Deutsch\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Zurück zum Profil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Kalender\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Bruttoumsatz\",\"yRg26W\":\"Bruttoverkäufe\",\"R4r4XO\":\"Gäste\",\"26pGvx\":\"Haben Sie einen Promo-Code?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Hier ist ein Beispiel, wie Sie die Komponente in Ihrer Anwendung verwenden können.\",\"Y1SSqh\":\"Hier ist die React-Komponente, die Sie verwenden können, um das Widget in Ihre Anwendung einzubetten.\",\"QuhVpV\":[\"Hallo \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Vor der Öffentlichkeit verborgen\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Versteckte Fragen sind nur für den Veranstalter und nicht für den Kunden sichtbar.\",\"vLyv1R\":\"Verstecken\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Produkt nach Verkaufsenddatum ausblenden\",\"06s3w3\":\"Produkt vor Verkaufsstartdatum ausblenden\",\"axVMjA\":\"Produkt ausblenden, es sei denn, der Benutzer hat einen gültigen Promo-Code\",\"ySQGHV\":\"Produkt bei Ausverkauf ausblenden\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Dieses Produkt vor Kunden verbergen\",\"Da29Y6\":\"Diese Frage verbergen\",\"fvDQhr\":\"Diese Ebene vor Benutzern verbergen\",\"lNipG+\":\"Das Ausblenden eines Produkts verhindert, dass Benutzer es auf der Veranstaltungsseite sehen.\",\"ZOBwQn\":\"Homepage-Design\",\"PRuBTd\":\"Homepage-Designer\",\"YjVNGZ\":\"Homepage-Vorschau\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Wie viele Minuten hat der Kunde Zeit, um seine Bestellung abzuschließen. Wir empfehlen mindestens 15 Minuten\",\"ySxKZe\":\"Wie oft kann dieser Code verwendet werden?\",\"dZsDbK\":[\"HTML-Zeichenlimit überschritten: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Ich stimme den <0>Allgemeinen Geschäftsbedingungen zu\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Wenn aktiviert, kann das Check-in-Personal Teilnehmer entweder als eingecheckt markieren oder die Bestellung als bezahlt markieren und die Teilnehmer einchecken. Wenn deaktiviert, können Teilnehmer mit unbezahlten Bestellungen nicht eingecheckt werden.\",\"muXhGi\":\"Wenn aktiviert, erhält der Veranstalter eine E-Mail-Benachrichtigung, wenn eine neue Bestellung aufgegeben wird\",\"6fLyj/\":\"Sollten Sie diese Änderung nicht veranlasst haben, ändern Sie bitte umgehend Ihr Passwort.\",\"n/ZDCz\":\"Bild erfolgreich gelöscht\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Bild erfolgreich hochgeladen\",\"VyUuZb\":\"Bild-URL\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inaktiv\",\"T0K0yl\":\"Inaktive Benutzer können sich nicht anmelden.\",\"kO44sp\":\"Fügen Sie Verbindungsdetails für Ihr Online-Event hinzu. Diese Details werden auf der Bestellübersichtsseite und der Teilnehmer-Ticketseite angezeigt.\",\"FlQKnG\":\"Steuern und Gebühren im Preis einbeziehen\",\"Vi+BiW\":[\"Beinhaltet \",[\"0\"],\" Produkte\"],\"lpm0+y\":\"Beinhaltet 1 Produkt\",\"UiAk5P\":\"Bild einfügen\",\"OyLdaz\":\"Einladung erneut verschickt!\",\"HE6KcK\":\"Einladung widerrufen!\",\"SQKPvQ\":\"Benutzer einladen\",\"bKOYkd\":\"Rechnung erfolgreich heruntergeladen\",\"alD1+n\":\"Rechnungsnotizen\",\"kOtCs2\":\"Rechnungsnummerierung\",\"UZ2GSZ\":\"Rechnungseinstellungen\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Artikel\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etikett\",\"vXIe7J\":\"Sprache\",\"2LMsOq\":\"Letzte 12 Monate\",\"vfe90m\":\"Letzte 14 Tage\",\"aK4uBd\":\"Letzte 24 Stunden\",\"uq2BmQ\":\"Letzte 30 Tage\",\"bB6Ram\":\"Letzte 48 Stunden\",\"VlnB7s\":\"Letzte 6 Monate\",\"ct2SYD\":\"Letzte 7 Tage\",\"XgOuA7\":\"Letzte 90 Tage\",\"I3yitW\":\"Letzte Anmeldung\",\"1ZaQUH\":\"Nachname\",\"UXBCwc\":\"Nachname\",\"tKCBU0\":\"Zuletzt verwendet\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Leer lassen, um das Standardwort \\\"Rechnung\\\" zu verwenden\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Wird geladen...\",\"wJijgU\":\"Standort\",\"sQia9P\":\"Anmelden\",\"zUDyah\":\"Einloggen\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Ausloggen\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Rechnungsadresse beim Checkout erforderlich machen\",\"MU3ijv\":\"Machen Sie diese Frage obligatorisch\",\"wckWOP\":\"Verwalten\",\"onpJrA\":\"Teilnehmer verwalten\",\"n4SpU5\":\"Veranstaltung verwalten\",\"WVgSTy\":\"Bestellung verwalten\",\"1MAvUY\":\"Zahlungs- und Rechnungseinstellungen für diese Veranstaltung verwalten.\",\"cQrNR3\":\"Profil verwalten\",\"AtXtSw\":\"Verwalten Sie Steuern und Gebühren, die auf Ihre Produkte angewendet werden können\",\"ophZVW\":\"Tickets verwalten\",\"DdHfeW\":\"Verwalten Sie Ihre Kontodetails und Standardeinstellungen\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Verwalten Sie Ihre Benutzer und deren Berechtigungen\",\"1m+YT2\":\"Bevor der Kunde zur Kasse gehen kann, müssen obligatorische Fragen beantwortet werden.\",\"Dim4LO\":\"Einen Teilnehmer manuell hinzufügen\",\"e4KdjJ\":\"Teilnehmer manuell hinzufügen\",\"vFjEnF\":\"Als bezahlt markieren\",\"g9dPPQ\":\"Maximal pro Bestellung\",\"l5OcwO\":\"Nachricht an Teilnehmer\",\"Gv5AMu\":\"Nachrichten an Teilnehmer senden\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Nachricht an den Käufer\",\"tNZzFb\":\"Nachrichteninhalt\",\"lYDV/s\":\"Nachrichten an einzelne Teilnehmer senden\",\"V7DYWd\":\"Nachricht gesendet\",\"t7TeQU\":\"Mitteilungen\",\"xFRMlO\":\"Mindestbestellwert\",\"QYcUEf\":\"Minimaler Preis\",\"RDie0n\":\"Sonstiges\",\"mYLhkl\":\"Verschiedene Einstellungen\",\"KYveV8\":\"Mehrzeiliges Textfeld\",\"VD0iA7\":\"Mehrere Preisoptionen. Perfekt für Frühbucherprodukte usw.\",\"/bhMdO\":\"Meine tolle Eventbeschreibung...\",\"vX8/tc\":\"Mein toller Veranstaltungstitel …\",\"hKtWk2\":\"Mein Profil\",\"fj5byd\":\"N/V\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigieren Sie zu Teilnehmer\",\"qqeAJM\":\"Niemals\",\"7vhWI8\":\"Neues Kennwort\",\"1UzENP\":\"Nein\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Keine archivierten Veranstaltungen anzuzeigen.\",\"q2LEDV\":\"Für diese Bestellung wurden keine Teilnehmer gefunden.\",\"zlHa5R\":\"Zu dieser Bestellung wurden keine Teilnehmer hinzugefügt.\",\"Wjz5KP\":\"Keine Teilnehmer zum Anzeigen\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Keine Kapazitätszuweisungen\",\"a/gMx2\":\"Keine Einchecklisten\",\"tMFDem\":\"Keine Daten verfügbar\",\"6Z/F61\":\"Keine Daten verfügbar. Bitte wählen Sie einen Datumsbereich aus.\",\"fFeCKc\":\"Kein Rabatt\",\"HFucK5\":\"Keine beendeten Veranstaltungen anzuzeigen.\",\"yAlJXG\":\"Keine Ereignisse zum Anzeigen\",\"GqvPcv\":\"Keine Filter verfügbar\",\"KPWxKD\":\"Keine Nachrichten zum Anzeigen\",\"J2LkP8\":\"Keine Bestellungen anzuzeigen\",\"RBXXtB\":\"Derzeit sind keine Zahlungsmethoden verfügbar. Bitte wenden Sie sich an den Veranstalter, um Unterstützung zu erhalten.\",\"ZWEfBE\":\"Keine Zahlung erforderlich\",\"ZPoHOn\":\"Kein Produkt mit diesem Teilnehmer verknüpft.\",\"Ya1JhR\":\"Keine Produkte in dieser Kategorie verfügbar.\",\"FTfObB\":\"Noch keine Produkte\",\"+Y976X\":\"Keine Promo-Codes anzuzeigen\",\"MAavyl\":\"Dieser Teilnehmer hat keine Fragen beantwortet.\",\"SnlQeq\":\"Für diese Bestellung wurden keine Fragen gestellt.\",\"Ev2r9A\":\"Keine Ergebnisse\",\"gk5uwN\":\"Keine Suchergebnisse\",\"RHyZUL\":\"Keine Suchergebnisse.\",\"RY2eP1\":\"Es wurden keine Steuern oder Gebühren hinzugefügt.\",\"EdQY6l\":\"Keine\",\"OJx3wK\":\"Nicht verfügbar\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notizen\",\"jtrY3S\":\"Noch nichts zu zeigen\",\"hFwWnI\":\"Benachrichtigungseinstellungen\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Veranstalter über neue Bestellungen benachrichtigen\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Anzahl der für die Zahlung zulässigen Tage (leer lassen, um Zahlungsbedingungen auf Rechnungen wegzulassen)\",\"n86jmj\":\"Nummernpräfix\",\"mwe+2z\":\"Offline-Bestellungen werden in der Veranstaltungsstatistik erst berücksichtigt, wenn die Bestellung als bezahlt markiert wurde.\",\"dWBrJX\":\"Offline-Zahlung fehlgeschlagen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Veranstalter.\",\"fcnqjw\":\"Offline-Zahlungsanweisungen\",\"+eZ7dp\":\"Offline-Zahlungen\",\"ojDQlR\":\"Informationen zu Offline-Zahlungen\",\"u5oO/W\":\"Einstellungen für Offline-Zahlungen\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"Im Angebot\",\"Ug4SfW\":\"Sobald Sie ein Ereignis erstellt haben, wird es hier angezeigt.\",\"ZxnK5C\":\"Sobald Sie Daten sammeln, werden sie hier angezeigt.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Laufend\",\"z+nuVJ\":\"Online-Veranstaltung\",\"WKHW0N\":\"Details zur Online-Veranstaltung\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Check-In-Seite öffnen\",\"OdnLE4\":\"Seitenleiste öffnen\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"oPknTP\":\"Optionale zusätzliche Informationen, die auf allen Rechnungen erscheinen (z. B. Zahlungsbedingungen, Gebühren für verspätete Zahlungen, Rückgaberichtlinien)\",\"OrXJBY\":\"Optionales Präfix für Rechnungsnummern (z. B. INV-)\",\"0zpgxV\":\"Optionen\",\"BzEFor\":\"oder\",\"UYUgdb\":\"Befehl\",\"mm+eaX\":\"Bestellung #\",\"B3gPuX\":\"Bestellung storniert\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Auftragsdatum\",\"Tol4BF\":\"Bestelldetails\",\"WbImlQ\":\"Die Bestellung wurde storniert und der Bestellinhaber wurde benachrichtigt.\",\"nAn4Oe\":\"Bestellung als bezahlt markiert\",\"uzEfRz\":\"Bestellnotizen\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Bestellnummer\",\"acIJ41\":\"Bestellstatus\",\"GX6dZv\":\"Bestellübersicht\",\"tDTq0D\":\"Bestell-Timeout\",\"1h+RBg\":\"Aufträge\",\"3y+V4p\":\"Organisationsadresse\",\"GVcaW6\":\"Organisationsdetails\",\"nfnm9D\":\"Organisationsname\",\"G5RhpL\":\"Veranstalter\",\"mYygCM\":\"Veranstalter ist erforderlich\",\"Pa6G7v\":\"Name des Organisators\",\"l894xP\":\"Organisatoren können nur Veranstaltungen und Produkte verwalten. Sie können keine Benutzer, Kontoeinstellungen oder Abrechnungsinformationen verwalten.\",\"fdjq4c\":\"Innenabstand\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Seite nicht gefunden\",\"QbrUIo\":\"Seitenaufrufe\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"bezahlt\",\"HVW65c\":\"Bezahltes Produkt\",\"ZfxaB4\":\"Teilweise erstattet\",\"8ZsakT\":\"Passwort\",\"TUJAyx\":\"Das Passwort muss mindestens 8 Zeichen lang sein\",\"vwGkYB\":\"Das Passwort muss mindestens 8 Zeichen lang sein\",\"BLTZ42\":\"Passwort erfolgreich zurückgesetzt. Bitte melden Sie sich mit Ihrem neuen Passwort an.\",\"f7SUun\":\"Passwörter sind nicht gleich\",\"aEDp5C\":\"Fügen Sie dies dort ein, wo das Widget erscheinen soll.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Zahlung\",\"Lg+ewC\":\"Zahlung & Rechnungsstellung\",\"DZjk8u\":\"Einstellungen für Zahlung & Rechnungsstellung\",\"lflimf\":\"Zahlungsfrist\",\"JhtZAK\":\"Bezahlung fehlgeschlagen\",\"JEdsvQ\":\"Zahlungsanweisungen\",\"bLB3MJ\":\"Zahlungsmethoden\",\"QzmQBG\":\"Zahlungsanbieter\",\"lsxOPC\":\"Zahlung erhalten\",\"wJTzyi\":\"Zahlungsstatus\",\"xgav5v\":\"Zahlung erfolgreich abgeschlossen!\",\"R29lO5\":\"Zahlungsbedingungen\",\"/roQKz\":\"Prozentsatz\",\"vPJ1FI\":\"Prozentualer Betrag\",\"xdA9ud\":\"Platzieren Sie dies im Ihrer Website.\",\"blK94r\":\"Bitte fügen Sie mindestens eine Option hinzu\",\"FJ9Yat\":\"Bitte überprüfen Sie, ob die angegebenen Informationen korrekt sind\",\"TkQVup\":\"Bitte überprüfen Sie Ihre E-Mail und Ihr Passwort und versuchen Sie es erneut\",\"sMiGXD\":\"Bitte überprüfen Sie, ob Ihre E-Mail gültig ist\",\"Ajavq0\":\"Bitte überprüfen Sie Ihre E-Mail, um Ihre E-Mail-Adresse zu bestätigen\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Bitte fahren Sie im neuen Tab fort\",\"hcX103\":\"Bitte erstellen Sie ein Produkt\",\"cdR8d6\":\"Bitte erstellen Sie ein Ticket\",\"x2mjl4\":\"Bitte geben Sie eine gültige Bild-URL ein, die auf ein Bild verweist.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Bitte beachten Sie\",\"C63rRe\":\"Bitte kehre zur Veranstaltungsseite zurück, um neu zu beginnen.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Bitte wählen Sie mindestens ein Produkt aus\",\"igBrCH\":\"Bitte bestätigen Sie Ihre E-Mail-Adresse, um auf alle Funktionen zugreifen zu können\",\"/IzmnP\":\"Bitte warten Sie, während wir Ihre Rechnung vorbereiten...\",\"MOERNx\":\"Portugiesisch\",\"qCJyMx\":\"Checkout-Nachricht veröffentlichen\",\"g2UNkE\":\"Powered by\",\"Rs7IQv\":\"Nachricht vor dem Checkout\",\"rdUucN\":\"Vorschau\",\"a7u1N9\":\"Preis\",\"CmoB9j\":\"Preisanzeigemodus\",\"BI7D9d\":\"Preis nicht festgelegt\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Preistyp\",\"6RmHKN\":\"Primärfarbe\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primäre Textfarbe\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Alle Tickets ausdrucken\",\"DKwDdj\":\"Tickets drucken\",\"K47k8R\":\"Produkt\",\"1JwlHk\":\"Produktkategorie\",\"U61sAj\":\"Produktkategorie erfolgreich aktualisiert.\",\"1USFWA\":\"Produkt erfolgreich gelöscht\",\"4Y2FZT\":\"Produktpreistyp\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Produktverkäufe\",\"U/R4Ng\":\"Produktebene\",\"sJsr1h\":\"Produkttyp\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produkt(e)\",\"N0qXpE\":\"Produkte\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Verkaufte Produkte\",\"/u4DIx\":\"Verkaufte Produkte\",\"DJQEZc\":\"Produkte erfolgreich sortiert\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil erfolgreich aktualisiert\",\"cl5WYc\":[\"Aktionscode \",[\"promo_code\"],\" angewendet\"],\"P5sgAk\":\"Aktionscode\",\"yKWfjC\":\"Aktionscode-Seite\",\"RVb8Fo\":\"Promo-Codes\",\"BZ9GWa\":\"Mit Promo-Codes können Sie Rabatte oder Vorverkaufszugang anbieten oder Sonderzugang zu Ihrer Veranstaltung gewähren.\",\"OP094m\":\"Bericht zu Aktionscodes\",\"4kyDD5\":\"Geben Sie zusätzlichen Kontext oder Anweisungen zu dieser Frage an. Verwenden Sie dieses Feld, um Geschäftsbedingungen,\\nRichtlinien oder wichtige Informationen hinzuzufügen, die Teilnehmer vor der Beantwortung kennen müssen.\",\"toutGW\":\"QR-Code\",\"LkMOWF\":\"Verfügbare Menge\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Frage gelöscht\",\"avf0gk\":\"Fragebeschreibung\",\"oQvMPn\":\"Fragentitel\",\"enzGAL\":\"Fragen\",\"ROv2ZT\":\"Fragen & Antworten\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio-Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Empfänger\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Rückerstattung fehlgeschlagen\",\"n10yGu\":\"Rückerstattungsauftrag\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Rückerstattung ausstehend\",\"xHpVRl\":\"Rückerstattungsstatus\",\"/BI0y9\":\"Rückerstattung\",\"fgLNSM\":\"Registrieren\",\"9+8Vez\":\"Verbleibende Verwendungen\",\"tasfos\":\"entfernen\",\"t/YqKh\":\"Entfernen\",\"t9yxlZ\":\"Berichte\",\"prZGMe\":\"Rechnungsadresse erforderlich\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"E-Mail-Bestätigung erneut senden\",\"wIa8Qe\":\"Einladung erneut versenden\",\"VeKsnD\":\"Bestell-E-Mail erneut senden\",\"dFuEhO\":\"Ticket-E-Mail erneut senden\",\"o6+Y6d\":\"Erneut senden...\",\"OfhWJH\":\"Zurücksetzen\",\"RfwZxd\":\"Passwort zurücksetzen\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Veranstaltung wiederherstellen\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Zur Veranstaltungsseite zurückkehren\",\"8YBH95\":\"Einnahmen\",\"PO/sOY\":\"Einladung widerrufen\",\"GDvlUT\":\"Rolle\",\"ELa4O9\":\"Verkaufsende\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Verkaufsstartdatum\",\"hBsw5C\":\"Verkauf beendet\",\"kpAzPe\":\"Verkaufsstart\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Speichern\",\"IUwGEM\":\"Änderungen speichern\",\"U65fiW\":\"Organizer speichern\",\"UGT5vp\":\"Einstellungen speichern\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Suche nach Teilnehmername, E-Mail oder Bestellnummer ...\",\"+pr/FY\":\"Suche nach Veranstaltungsnamen...\",\"3zRbWw\":\"Suchen Sie nach Namen, E-Mail oder Bestellnummer ...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Suche mit Name...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Kapazitätszuweisungen suchen...\",\"r9M1hc\":\"Einchecklisten durchsuchen...\",\"+0Yy2U\":\"Produkte suchen\",\"YIix5Y\":\"Suchen...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Sekundärfarbe\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Sekundäre Textfarbe\",\"02ePaq\":[[\"0\"],\" auswählen\"],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Kategorie auswählen...\",\"kWI/37\":\"Veranstalter auswählen\",\"ixIx1f\":\"Produkt auswählen\",\"3oSV95\":\"Produktebene auswählen\",\"C4Y1hA\":\"Produkte auswählen\",\"hAjDQy\":\"Status auswählen\",\"QYARw/\":\"Ticket auswählen\",\"OMX4tH\":\"Tickets auswählen\",\"DrwwNd\":\"Zeitraum auswählen\",\"O/7I0o\":\"Wählen...\",\"JlFcis\":\"Schicken\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Eine Nachricht schicken\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Nachricht Senden\",\"D7ZemV\":\"Bestellbestätigung und Ticket-E-Mail senden\",\"v1rRtW\":\"Test senden\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO-Beschreibung\",\"/SIY6o\":\"SEO-Schlüsselwörter\",\"GfWoKv\":\"SEO-Einstellungen\",\"rXngLf\":\"SEO-Titel\",\"/jZOZa\":\"Servicegebühr\",\"Bj/QGQ\":\"Legen Sie einen Mindestpreis fest und lassen Sie die Nutzer mehr zahlen, wenn sie wollen.\",\"L0pJmz\":\"Legen Sie die Startnummer für die Rechnungsnummerierung fest. Dies kann nicht geändert werden, sobald Rechnungen generiert wurden.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Einstellungen\",\"Z8lGw6\":\"Teilen\",\"B2V3cA\":\"Veranstaltung teilen\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Verfügbare Produktmenge anzeigen\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Zeig mehr\",\"izwOOD\":\"Steuern und Gebühren separat ausweisen\",\"1SbbH8\":\"Wird dem Kunden nach dem Checkout auf der Bestellübersichtsseite angezeigt.\",\"YfHZv0\":\"Wird dem Kunden vor dem Bezahlvorgang angezeigt\",\"CBBcly\":\"Zeigt allgemeine Adressfelder an, einschließlich Land\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Einzeiliges Textfeld\",\"+P0Cn2\":\"Überspringe diesen Schritt\",\"YSEnLE\":\"Schmied\",\"lgFfeO\":\"Ausverkauft\",\"Mi1rVn\":\"Ausverkauft\",\"nwtY4N\":\"Etwas ist schiefgelaufen\",\"GRChTw\":\"Beim Löschen der Steuer oder Gebühr ist ein Fehler aufgetreten\",\"YHFrbe\":\"Etwas ist schief gelaufen. Bitte versuche es erneut\",\"kf83Ld\":\"Etwas ist schief gelaufen.\",\"fWsBTs\":\"Etwas ist schief gelaufen. Bitte versuche es erneut.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Dieser Aktionscode wird leider nicht erkannt\",\"65A04M\":\"Spanisch\",\"mFuBqb\":\"Standardprodukt mit festem Preis\",\"D3iCkb\":\"Startdatum\",\"/2by1f\":\"Staat oder Region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe-Zahlungen sind für diese Veranstaltung nicht aktiviert.\",\"UJmAAK\":\"Thema\",\"X2rrlw\":\"Zwischensumme\",\"zzDlyQ\":\"Erfolg\",\"b0HJ45\":[\"Erfolgreich! \",[\"0\"],\" erhält in Kürze eine E-Mail.\"],\"BJIEiF\":[\"Erfolgreich \",[\"0\"],\" Teilnehmer\"],\"OtgNFx\":\"E-Mail-Adresse erfolgreich bestätigt\",\"IKwyaF\":\"E-Mail-Änderung erfolgreich bestätigt\",\"zLmvhE\":\"Teilnehmer erfolgreich erstellt\",\"gP22tw\":\"Produkt erfolgreich erstellt\",\"9mZEgt\":\"Promo-Code erfolgreich erstellt\",\"aIA9C4\":\"Frage erfolgreich erstellt\",\"J3RJSZ\":\"Teilnehmer erfolgreich aktualisiert\",\"3suLF0\":\"Kapazitätszuweisung erfolgreich aktualisiert\",\"Z+rnth\":\"Eincheckliste erfolgreich aktualisiert\",\"vzJenu\":\"E-Mail-Einstellungen erfolgreich aktualisiert\",\"7kOMfV\":\"Ereignis erfolgreich aktualisiert\",\"G0KW+e\":\"Erfolgreich aktualisiertes Homepage-Design\",\"k9m6/E\":\"Homepage-Einstellungen erfolgreich aktualisiert\",\"y/NR6s\":\"Standort erfolgreich aktualisiert\",\"73nxDO\":\"Verschiedene Einstellungen erfolgreich aktualisiert\",\"4H80qv\":\"Bestellung erfolgreich aktualisiert\",\"6xCBVN\":\"Einstellungen für Zahlung & Rechnungsstellung erfolgreich aktualisiert\",\"1Ycaad\":\"Produkt erfolgreich aktualisiert\",\"70dYC8\":\"Promo-Code erfolgreich aktualisiert\",\"F+pJnL\":\"SEO-Einstellungen erfolgreich aktualisiert\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support-E-Mail\",\"uRfugr\":\"T-Shirt\",\"JpohL9\":\"Steuer\",\"geUFpZ\":\"Steuern & Gebühren\",\"dFHcIn\":\"Steuerdetails\",\"wQzCPX\":\"Steuerinformationen, die unten auf allen Rechnungen erscheinen sollen (z. B. USt-Nummer, Steuerregistrierung)\",\"0RXCDo\":\"Steuer oder Gebühr erfolgreich gelöscht\",\"ZowkxF\":\"Steuern\",\"qu6/03\":\"Steuern und Gebühren\",\"gypigA\":\"Dieser Aktionscode ist ungültig\",\"5ShqeM\":\"Die gesuchte Eincheckliste existiert nicht.\",\"QXlz+n\":\"Die Standardwährung für Ihre Ereignisse.\",\"mnafgQ\":\"Die Standardzeitzone für Ihre Ereignisse.\",\"o7s5FA\":\"Die Sprache, in der der Teilnehmer die E-Mails erhalten soll.\",\"NlfnUd\":\"Der Link, auf den Sie geklickt haben, ist ungültig.\",\"HsFnrk\":[\"Die maximale Anzahl an Produkten für \",[\"0\"],\" ist \",[\"1\"]],\"TSAiPM\":\"Die gesuchte Seite existiert nicht\",\"MSmKHn\":\"Der dem Kunden angezeigte Preis versteht sich inklusive Steuern und Gebühren.\",\"6zQOg1\":\"Der dem Kunden angezeigte Preis enthält keine Steuern und Gebühren. Diese werden separat ausgewiesen\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Der Titel der Veranstaltung, der in Suchmaschinenergebnissen und beim Teilen in sozialen Medien angezeigt wird. Standardmäßig wird der Veranstaltungstitel verwendet\",\"wDx3FF\":\"Für diese Veranstaltung sind keine Produkte verfügbar\",\"pNgdBv\":\"In dieser Kategorie sind keine Produkte verfügbar\",\"rMcHYt\":\"Eine Rückerstattung steht aus. Bitte warten Sie, bis der Vorgang abgeschlossen ist, bevor Sie eine weitere Rückerstattung anfordern.\",\"F89D36\":\"Beim Markieren der Bestellung als bezahlt ist ein Fehler aufgetreten\",\"68Axnm\":\"Bei der Bearbeitung Ihrer Anfrage ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\",\"mVKOW6\":\"Beim Senden Ihrer Nachricht ist ein Fehler aufgetreten\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Dieser Teilnehmer hat eine unbezahlte Bestellung.\",\"mf3FrP\":\"Diese Kategorie hat noch keine Produkte.\",\"8QH2Il\":\"Diese Kategorie ist vor der öffentlichen Ansicht verborgen\",\"xxv3BZ\":\"Diese Eincheckliste ist abgelaufen\",\"Sa7w7S\":\"Diese Eincheckliste ist abgelaufen und steht nicht mehr für Eincheckungen zur Verfügung.\",\"Uicx2U\":\"Diese Eincheckliste ist aktiv\",\"1k0Mp4\":\"Diese Eincheckliste ist noch nicht aktiv\",\"K6fmBI\":\"Diese Eincheckliste ist noch nicht aktiv und steht nicht für Eincheckungen zur Verfügung.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Diese Informationen werden auf der Zahlungsseite, der Bestellübersichtsseite und in der Bestellbestätigungs-E-Mail angezeigt.\",\"XAHqAg\":\"Dies ist ein allgemeines Produkt, wie ein T-Shirt oder eine Tasse. Es wird kein Ticket ausgestellt\",\"CNk/ro\":\"Dies ist eine Online-Veranstaltung\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Diese Nachricht wird in die Fußzeile aller E-Mails aufgenommen, die von dieser Veranstaltung gesendet werden.\",\"55i7Fa\":\"Diese Nachricht wird nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wurde. Bestellungen, die auf Zahlung warten, zeigen diese Nachricht nicht an.\",\"RjwlZt\":\"Diese Bestellung wurde bereits bezahlt.\",\"5K8REg\":\"Diese Bestellung wurde bereits zurückerstattet.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Diese Bestellung wurde storniert.\",\"Q0zd4P\":\"Diese Bestellung ist abgelaufen. Bitte erneut beginnen.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Diese Bestellung ist abgeschlossen.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Diese Bestellseite ist nicht mehr verfügbar.\",\"i0TtkR\":\"Dies überschreibt alle Sichtbarkeitseinstellungen und verbirgt das Produkt vor allen Kunden.\",\"cRRc+F\":\"Dieses Produkt kann nicht gelöscht werden, da es mit einer Bestellung verknüpft ist. Sie können es stattdessen ausblenden.\",\"3Kzsk7\":\"Dieses Produkt ist ein Ticket. Käufer erhalten nach dem Kauf ein Ticket\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Dieser Link zum Zurücksetzen des Passworts ist ungültig oder abgelaufen.\",\"IV9xTT\":\"Dieser Benutzer ist nicht aktiv, da er die Einladung nicht angenommen hat.\",\"5AnPaO\":\"Ticket\",\"kjAL4v\":\"Ticket\",\"dtGC3q\":\"Die Ticket-E-Mail wurde erneut an den Teilnehmer gesendet.\",\"54q0zp\":\"Tickets für\",\"xN9AhL\":[\"Stufe \",[\"0\"]],\"jZj9y9\":\"Gestuftes Produkt\",\"8wITQA\":\"Gestufte Produkte ermöglichen es Ihnen, mehrere Preisoptionen für dasselbe Produkt anzubieten. Dies ist ideal für Frühbucherprodukte oder um unterschiedliche Preisoptionen für verschiedene Personengruppen anzubieten.\\\" # de\",\"nn3mSR\":\"Verbleibende Zeit:\",\"s/0RpH\":\"Nutzungshäufigkeit\",\"y55eMd\":\"Anzahl der Verwendungen\",\"40Gx0U\":\"Zeitzone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Werkzeuge\",\"72c5Qo\":\"Gesamt\",\"YXx+fG\":\"Gesamt vor Rabatten\",\"NRWNfv\":\"Gesamtrabattbetrag\",\"BxsfMK\":\"Gesamtkosten\",\"2bR+8v\":\"Gesamtumsatz brutto\",\"mpB/d9\":\"Gesamtbestellwert\",\"m3FM1g\":\"Gesamtbetrag zurückerstattet\",\"jEbkcB\":\"Insgesamt erstattet\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Gesamtsteuer\",\"+zy2Nq\":\"Typ\",\"FMdMfZ\":\"Teilnehmer konnte nicht eingecheckt werden\",\"bPWBLL\":\"Teilnehmer konnte nicht ausgecheckt werden\",\"9+P7zk\":\"Produkt konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"WLxtFC\":\"Produkt konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"/cSMqv\":\"Frage konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"MH/lj8\":\"Frage kann nicht aktualisiert werden. Bitte überprüfen Sie Ihre Angaben\",\"nnfSdK\":\"Einzigartige Kunden\",\"Mqy/Zy\":\"Vereinigte Staaten\",\"NIuIk1\":\"Unbegrenzt\",\"/p9Fhq\":\"Unbegrenzt verfügbar\",\"E0q9qH\":\"Unbegrenzte Nutzung erlaubt\",\"h10Wm5\":\"Unbezahlte Bestellung\",\"ia8YsC\":\"Bevorstehende\",\"TlEeFv\":\"Bevorstehende Veranstaltungen\",\"L/gNNk\":[\"Aktualisierung \",[\"0\"]],\"+qqX74\":\"Aktualisieren Sie den Namen, die Beschreibung und die Daten der Veranstaltung\",\"vXPSuB\":\"Profil aktualisieren\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL in die Zwischenablage kopiert\",\"e5lF64\":\"Verwendungsbeispiel\",\"fiV0xj\":\"Verwendungslimit\",\"sGEOe4\":\"Verwenden Sie eine unscharfe Version des Titelbilds als Hintergrund\",\"OadMRm\":\"Titelbild verwenden\",\"7PzzBU\":\"Benutzer\",\"yDOdwQ\":\"Benutzerverwaltung\",\"Sxm8rQ\":\"Benutzer\",\"VEsDvU\":\"Benutzer können ihre E-Mail in den <0>Profileinstellungen ändern.\",\"vgwVkd\":\"koordinierte Weltzeit\",\"khBZkl\":\"Umsatzsteuer\",\"E/9LUk\":\"Veranstaltungsort Namen\",\"jpctdh\":\"Ansehen\",\"Pte1Hv\":\"Teilnehmerdetails anzeigen\",\"/5PEQz\":\"Zur Veranstaltungsseite\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Auf Google Maps anzeigen\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP-Eincheckliste\",\"tF+VVr\":\"VIP-Ticket\",\"2q/Q7x\":\"Sichtweite\",\"vmOFL/\":\"Wir konnten Ihre Zahlung nicht verarbeiten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\",\"45Srzt\":\"Die Kategorie konnte nicht gelöscht werden. Bitte versuchen Sie es erneut.\",\"/DNy62\":[\"Wir konnten keine Tickets finden, die mit \",[\"0\"],\" übereinstimmen\"],\"1E0vyy\":\"Wir konnten die Daten nicht laden. Bitte versuchen Sie es erneut.\",\"NmpGKr\":\"Wir konnten die Kategorien nicht neu ordnen. Bitte versuchen Sie es erneut.\",\"BJtMTd\":\"Wir empfehlen Abmessungen von 2160 x 1080 Pixel und eine maximale Dateigröße von 5 MB.\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Wir konnten Ihre Zahlung nicht bestätigen. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\",\"Gspam9\":\"Wir bearbeiten Ihre Bestellung. Bitte warten...\",\"LuY52w\":\"Willkommen an Bord! Bitte melden Sie sich an, um fortzufahren.\",\"dVxpp5\":[\"Willkommen zurück\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Was sind gestufte Produkte?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Was ist eine Kategorie?\",\"gxeWAU\":\"Für welche Produkte gilt dieser Code?\",\"hFHnxR\":\"Für welche Produkte gilt dieser Code? (Standardmäßig gilt er für alle)\",\"AeejQi\":\"Für welche Produkte soll diese Kapazität gelten?\",\"Rb0XUE\":\"Um wie viel Uhr werden Sie ankommen?\",\"5N4wLD\":\"Um welche Art von Frage handelt es sich?\",\"gyLUYU\":\"Wenn aktiviert, werden Rechnungen für Ticketbestellungen erstellt. Rechnungen werden zusammen mit der Bestellbestätigungs-E-Mail gesendet. Teilnehmer können ihre Rechnungen auch von der Bestellbestätigungsseite herunterladen.\",\"D3opg4\":\"Wenn Offline-Zahlungen aktiviert sind, können Benutzer ihre Bestellungen abschließen und ihre Tickets erhalten. Ihre Tickets werden klar anzeigen, dass die Bestellung nicht bezahlt ist, und das Check-in-Tool wird das Check-in-Personal benachrichtigen, wenn eine Bestellung eine Zahlung erfordert.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Welche Tickets sollen mit dieser Eincheckliste verknüpft werden?\",\"S+OdxP\":\"Wer organisiert diese Veranstaltung?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Wem sollte diese Frage gestellt werden?\",\"VxFvXQ\":\"Widget einbetten\",\"v1P7Gm\":\"Widget-Einstellungen\",\"b4itZn\":\"Arbeiten\",\"hqmXmc\":\"Arbeiten...\",\"+G/XiQ\":\"Seit Jahresbeginn\",\"l75CjT\":\"Ja\",\"QcwyCh\":\"Ja, entfernen\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Sie ändern Ihre E-Mail zu <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Sie sind offline\",\"sdB7+6\":\"Sie können einen Promo-Code erstellen, der sich auf dieses Produkt richtet auf der\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Sie können den Produkttyp nicht ändern, da Teilnehmer mit diesem Produkt verknüpft sind.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Sie können Teilnehmer mit unbezahlten Bestellungen nicht einchecken. Diese Einstellung kann in den Veranstaltungsdetails geändert werden.\",\"c9Evkd\":\"Sie können die letzte Kategorie nicht löschen.\",\"6uwAvx\":\"Sie können diese Preiskategorie nicht löschen, da für diese Kategorie bereits Produkte verkauft wurden. Sie können sie stattdessen ausblenden.\",\"tFbRKJ\":\"Sie können die Rolle oder den Status des Kontoinhabers nicht bearbeiten.\",\"fHfiEo\":\"Sie können eine manuell erstellte Bestellung nicht zurückerstatten.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Sie haben Zugriff auf mehrere Konten. Bitte wählen Sie eines aus, um fortzufahren.\",\"Z6q0Vl\":\"Sie haben diese Einladung bereits angenommen. Bitte melden Sie sich an, um fortzufahren.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Sie haben keine ausstehende E-Mail-Änderung.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Die Zeit für die Bestellung ist abgelaufen.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Sie müssen bestätigen, dass diese E-Mail keinen Werbezweck hat\",\"3ZI8IL\":\"Sie müssen den Allgemeinen Geschäftsbedingungen zustimmen\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Sie müssen ein Ticket erstellen, bevor Sie einen Teilnehmer manuell hinzufügen können.\",\"jE4Z8R\":\"Sie müssen mindestens eine Preisstufe haben\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Sie müssen eine Bestellung manuell als bezahlt markieren. Dies kann auf der Bestellverwaltungsseite erfolgen.\",\"L/+xOk\":\"Sie benötigen ein Ticket, bevor Sie eine Eincheckliste erstellen können.\",\"Djl45M\":\"Sie benötigen ein Produkt, bevor Sie eine Kapazitätszuweisung erstellen können.\",\"y3qNri\":\"Sie benötigen mindestens ein Produkt, um loszulegen. Kostenlos, bezahlt oder lassen Sie den Benutzer entscheiden, was er zahlen möchte.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Ihr Kontoname wird auf Veranstaltungsseiten und in E-Mails verwendet.\",\"veessc\":\"Ihre Teilnehmer werden hier angezeigt, sobald sie sich für Ihre Veranstaltung registriert haben. Sie können Teilnehmer auch manuell hinzufügen.\",\"Eh5Wrd\":\"Ihre tolle Website 🎉\",\"lkMK2r\":\"Deine Details\",\"3ENYTQ\":[\"Ihre E-Mail-Anfrage zur Änderung auf <0>\",[\"0\"],\" steht noch aus. Bitte überprüfen Sie Ihre E-Mail, um sie zu bestätigen\"],\"yZfBoy\":\"Ihre Nachricht wurde gesendet\",\"KSQ8An\":\"Deine Bestellung\",\"Jwiilf\":\"Deine Bestellung wurde storniert\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Sobald Ihre Bestellungen eintreffen, werden sie hier angezeigt.\",\"9TO8nT\":\"Ihr Passwort\",\"P8hBau\":\"Ihre Zahlung wird verarbeitet.\",\"UdY1lL\":\"Ihre Zahlung war nicht erfolgreich, bitte versuchen Sie es erneut.\",\"fzuM26\":\"Ihre Zahlung war nicht erfolgreich. Bitte versuchen Sie es erneut.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Ihre Rückerstattung wird bearbeitet.\",\"IFHV2p\":\"Ihr Ticket für\",\"x1PPdr\":\"Postleitzahl\",\"BM/KQm\":\"Postleitzahl\",\"+LtVBt\":\"Postleitzahl\",\"25QDJ1\":\"- Zum Veröffentlichen klicken\",\"WOyJmc\":\"- Zum Rückgängigmachen der Veröffentlichung klicken\",\"ncwQad\":\"(leer)\",\"B/gRsg\":\"(keine)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ist bereits eingecheckt\"],\"3beCx0\":[[\"0\"],\" <0>eingecheckt\"],\"S4PqS9\":[[\"0\"],\" aktive Webhooks\"],\"6MIiOI\":[[\"0\"],\" übrig\"],\"COnw8D\":[[\"0\"],\" Logo\"],\"xG9N0H\":[[\"0\"],\" von \",[\"1\"],\" Plätzen sind belegt.\"],\"B7pZfX\":[[\"0\"],\" Veranstalter\"],\"rZTf6P\":[\"Noch \",[\"0\"],\" Plätze frei\"],\"/HkCs4\":[[\"0\"],\" Tickets\"],\"dtXkP9\":[[\"0\"],\" bevorstehende Termine\"],\"30bTiU\":[[\"activeCount\"],\" aktiv\"],\"jTs4am\":[[\"appName\"],\"-Logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" Teilnehmer sind für diese Session angemeldet.\"],\"TjbIUI\":[[\"availableCount\"],\" von \",[\"totalCount\"],\" verfügbar\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" eingecheckt\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"vor \",[\"diffHr\"],\" Std.\"],\"NRSLBe\":[\"vor \",[\"diffMin\"],\" Min.\"],\"iYfwJE\":[\"vor \",[\"diffSec\"],\" Sek.\"],\"OJnhhX\":[[\"eventCount\"],\" Ereignisse\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" Teilnehmer sind für die betroffenen Sessions angemeldet.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" Ticketarten\"],\"0cLzoF\":[[\"totalOccurrences\"],\" Termine\"],\"AEGc4t\":[[\"totalOccurrences\"],\" Sessions an \",[\"0\"],\" Tagen (\",[\"1\",\"plural\",{\"one\":[\"#\",\" Session\"],\"other\":[\"#\",\" Sessions\"]}],\" pro Tag)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Steuern/Gebühren\",\"B1St2O\":\"<0>Check-in-Listen helfen Ihnen, den Veranstaltungseinlass nach Tag, Bereich oder Tickettyp zu verwalten. Sie können Tickets mit bestimmten Listen wie VIP-Bereichen oder Tag-1-Pässen verknüpfen und einen sicheren Check-in-Link mit dem Personal teilen. Es ist kein Konto erforderlich. Check-in funktioniert auf Mobilgeräten, Desktop oder Tablet mit einer Gerätekamera oder einem HID-USB-Scanner. \",\"v9VSIS\":\"<0>Legen Sie ein einziges Gesamtlimit für die Teilnehmerzahl fest, das gleichzeitig für mehrere Ticketarten gilt.<1>Wenn Sie beispielsweise ein <2>Tagesticket und ein <3>Wochenendticket verknüpfen, ziehen beide aus demselben Platzpool. Sobald das Limit erreicht ist, werden alle verknüpften Tickets automatisch nicht mehr verkauft.\",\"vKXqag\":\"<0>Dies ist die Standardmenge für alle Termine. Die Kapazität jedes Termins kann die Verfügbarkeit auf der <1>Terminplan-Seite zusätzlich begrenzen.\",\"ZnVt5v\":\"<0>Webhooks benachrichtigen externe Dienste sofort, wenn Ereignisse eintreten, z. B. wenn ein neuer Teilnehmer zu deinem CRM oder deiner Mailingliste hinzugefügt wird, um eine nahtlose Automatisierung zu gewährleisten.<1>Nutze Drittanbieterdienste wie <2>Zapier, <3>IFTTT oder <4>Make, um benutzerdefinierte Workflows zu erstellen und Aufgaben zu automatisieren.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" zum aktuellen Kurs\"],\"M2DyLc\":\"1 aktiver Webhook\",\"6hIk/x\":\"1 Teilnehmer ist für die betroffenen Sessions angemeldet.\",\"qOyE2U\":\"1 Teilnehmer ist für diese Session angemeldet.\",\"943BwI\":\"1 Tag nach dem Enddatum\",\"yj3N+g\":\"1 Tag nach dem Startdatum\",\"Z3etYG\":\"1 Tag vor der Veranstaltung\",\"szSnlj\":\"1 Stunde vor der Veranstaltung\",\"yTsaLw\":\"1 Ticket\",\"nz96Ue\":\"1 Ticketart\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 Woche vor der Veranstaltung\",\"09VFYl\":\"12 Tickets angeboten\",\"HR/cvw\":\"Musterstraße 123\",\"dgKxZ5\":\"135+ Währungen & 40+ Zahlungsmethoden\",\"kMU5aM\":\"Eine Stornierungsbenachrichtigung wurde gesendet an\",\"o++0qa\":\"eine Änderung der Dauer\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Ein neuer Bestätigungscode wurde an Ihre E-Mail gesendet\",\"sr2Je0\":\"eine Verschiebung der Start-/Endzeiten\",\"/z/bH1\":\"Eine kurze Beschreibung Ihres Veranstalters, die Ihren Nutzern angezeigt wird.\",\"aS0jtz\":\"Abgebrochen\",\"uyJsf6\":\"Über\",\"JvuLls\":\"Gebühr übernehmen\",\"lk74+I\":\"Gebühr übernehmen\",\"1uJlG9\":\"Akzentfarbe\",\"g3UF2V\":\"Akzeptieren\",\"K5+3xg\":\"Einladung annehmen\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Konto · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Kontoinformationen\",\"EHNORh\":\"Konto nicht gefunden\",\"bPwFdf\":\"Konten\",\"AhwTa1\":\"Handlung erforderlich: Umsatzsteuerinformationen benötigt\",\"APyAR/\":\"Aktive Events\",\"kCl6ja\":\"Aktive Zahlungsmethoden\",\"XJOV1Y\":\"Aktivität\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Termin hinzufügen\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Einzelnen Termin hinzufügen\",\"CjvTPJ\":\"Weitere Uhrzeit hinzufügen\",\"0XCduh\":\"Mindestens eine Uhrzeit hinzufügen\",\"/chGpa\":\"Verbindungsdetails für die Online-Veranstaltung hinzufügen.\",\"UWWRyd\":\"Fügen Sie benutzerdefinierte Fragen hinzu, um während des Bezahlvorgangs zusätzliche Informationen zu erfassen\",\"Z/dcxc\":\"Termin hinzufügen\",\"Q219NT\":\"Termine hinzufügen\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Standort hinzufügen\",\"VX6WUv\":\"Standort hinzufügen\",\"GCQlV2\":\"Fügen Sie mehrere Uhrzeiten hinzu, wenn Sie mehrere Sessions pro Tag durchführen.\",\"7JF9w9\":\"Frage hinzufügen\",\"NLbIb6\":\"Teilnehmer trotzdem hinzufügen (Kapazität überschreiben)\",\"6PNlRV\":\"Fügen Sie dieses Event zu Ihrem Kalender hinzu\",\"BGD9Yt\":\"Tickets hinzufügen\",\"uIv4Op\":\"Fügen Sie Tracking-Pixel zu Ihren öffentlichen Veranstaltungsseiten und der Veranstalter-Startseite hinzu. Besuchern wird ein Cookie-Einwilligungsbanner angezeigt, wenn Tracking aktiv ist.\",\"QN2F+7\":\"Webhook hinzufügen\",\"NsWqSP\":\"Fügen Sie Ihre Social-Media-Konten und die Website-URL hinzu. Diese werden auf Ihrer öffentlichen Veranstalterseite angezeigt.\",\"bVjDs9\":\"Zusätzliche Gebühren\",\"MKqSg4\":\"Administratorzugriff erforderlich\",\"0Zypnp\":\"Admin Dashboard\",\"YAV57v\":\"Partner\",\"I+utEq\":\"Partnercode kann nicht geändert werden\",\"/jHBj5\":\"Partner erfolgreich erstellt\",\"uCFbG2\":\"Partner erfolgreich gelöscht\",\"ld8I+f\":\"Partnerprogramm\",\"a41PKA\":\"Partnerverkäufe werden verfolgt\",\"mJJh2s\":\"Partnerverkäufe werden nicht verfolgt. Dies deaktiviert den Partner.\",\"jabmnm\":\"Partner erfolgreich aktualisiert\",\"CPXP5Z\":\"Partner\",\"9Wh+ug\":\"Partner exportiert\",\"3cqmut\":\"Partner helfen Ihnen, Verkäufe von Partnern und Influencern zu verfolgen. Erstellen Sie Partnercodes und teilen Sie diese, um die Leistung zu überwachen.\",\"z7GAMJ\":\"alle\",\"N40H+G\":\"Alle\",\"7rLTkE\":\"Alle archivierten Veranstaltungen\",\"gKq1fa\":\"Alle Teilnehmer\",\"63gRoO\":\"Alle Teilnehmer der ausgewählten Sessions\",\"uWxIoH\":\"Alle Teilnehmer dieses Termins\",\"pMLul+\":\"Alle Währungen\",\"sgUdRZ\":\"Alle Termine\",\"e4q4uO\":\"Alle Termine\",\"ZS/D7f\":\"Alle beendeten Veranstaltungen\",\"QsYjci\":\"Alle Veranstaltungen\",\"31KB8w\":\"Alle fehlgeschlagenen Jobs gelöscht\",\"D2g7C7\":\"Alle Jobs zur Wiederholung eingereiht\",\"B4RFBk\":\"Alle passenden Termine\",\"F1/VgK\":\"Alle Termine\",\"OpWjMq\":\"Alle Termine\",\"Sxm1lO\":\"Alle Status\",\"dr7CWq\":\"Alle bevorstehenden Veranstaltungen\",\"GpT6Uf\":\"Erlauben Sie Teilnehmern, ihre Ticketinformationen (Name, E-Mail) über einen sicheren Link zu aktualisieren, der mit ihrer Bestellbestätigung gesendet wird.\",\"F3mW5G\":\"Kunden erlauben, sich auf eine Warteliste zu setzen, wenn dieses Produkt ausverkauft ist\",\"c4uJfc\":\"Fast geschafft! Wir warten nur noch auf die Verarbeitung Ihrer Zahlung. Das sollte nur wenige Sekunden dauern.\",\"ocS8eq\":[\"Haben Sie bereits ein Konto? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Bereits da\",\"/H326L\":\"Bereits erstattet\",\"USEpOK\":\"Verwendest du Stripe bereits bei einem anderen Veranstalter? Verbindung wiederverwenden.\",\"RtxQTF\":\"Diese Bestellung auch stornieren\",\"jkNgQR\":\"Diese Bestellung auch erstatten\",\"xYqsHg\":\"Immer verfügbar\",\"Wvrz79\":\"Gezahlter Betrag\",\"Zkymb9\":\"Eine E-Mail-Adresse für diesen Partner. Der Partner wird nicht benachrichtigt.\",\"vRznIT\":\"Ein Fehler ist aufgetreten beim Überprüfen des Exportstatus.\",\"eusccx\":\"Eine optionale Nachricht, die beim hervorgehobenen Produkt angezeigt wird, z.B. \\\"Verkauft sich schnell 🔥\\\" oder \\\"Bester Wert\\\"\",\"5GJuNp\":[\"und \",[\"0\"],\" weitere...\"],\"QNrkms\":\"Antwort erfolgreich aktualisiert.\",\"+qygei\":\"Antworten\",\"GK7Lnt\":\"Antworten beim Checkout (z. B. Speisenwahl)\",\"lE8PgT\":\"Manuell angepasste Termine bleiben erhalten.\",\"vP3Nzg\":[\"Gilt für \",[\"0\"],\" nicht stornierte Termine, die aktuell auf dieser Seite geladen sind.\"],\"kkVyZZ\":\"Gilt für alle, die den Check-in-Link ohne Anmeldung öffnen. Angemeldete Teammitglieder sehen immer alles.\",\"je4muG\":[\"Gilt für jeden nicht stornierten \",[\"0\"],\"-Termin dieser Veranstaltung — auch für aktuell nicht geladene Termine.\"],\"YIIQtt\":\"Änderungen anwenden\",\"NzWX1Y\":\"Anwenden auf\",\"Ps5oDT\":\"Auf alle Tickets anwenden\",\"261RBr\":\"Nachricht genehmigen\",\"naCW6Z\":\"April\",\"B495Gs\":\"Archivieren\",\"5sNliy\":\"Veranstaltung archivieren\",\"BrwnrJ\":\"Veranstalter archivieren\",\"E5eghW\":\"Archivieren Sie diese Veranstaltung, um sie vor der Öffentlichkeit zu verbergen. Sie können sie später wiederherstellen.\",\"eqFkeI\":\"Archivieren Sie diesen Veranstalter. Dadurch werden auch alle Veranstaltungen dieses Veranstalters archiviert.\",\"BzcxWv\":\"Archivierte Veranstalter\",\"9cQBd6\":\"Sind Sie sicher, dass Sie diese Veranstaltung archivieren möchten? Sie wird nicht mehr öffentlich sichtbar sein.\",\"Trnl3E\":\"Sind Sie sicher, dass Sie diesen Veranstalter archivieren möchten? Dadurch werden auch alle Veranstaltungen dieses Veranstalters archiviert.\",\"wOvn+e\":[\"Sind Sie sicher, dass Sie \",[\"count\"],\" Termin(e) absagen möchten? Betroffene Teilnehmer werden per E-Mail benachrichtigt.\"],\"GTxE0U\":\"Sind Sie sicher, dass Sie diesen Termin absagen möchten? Betroffene Teilnehmer werden per E-Mail benachrichtigt.\",\"VkSk/i\":\"Sind Sie sicher, dass Sie diese geplante Nachricht abbrechen möchten?\",\"0aVEBY\":\"Sind Sie sicher, dass Sie alle fehlgeschlagenen Jobs löschen möchten?\",\"LchiNd\":\"Sind Sie sicher, dass Sie diesen Partner löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\",\"vPeW/6\":\"Sind Sie sicher, dass Sie diese Konfiguration löschen möchten? Dies kann sich auf Konten auswirken, die sie verwenden.\",\"h42Hc/\":\"Sind Sie sicher, dass Sie diesen Termin löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\",\"JmVITJ\":\"Sind Sie sicher, dass Sie diese Vorlage löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden und E-Mails werden auf die Standardvorlage zurückgreifen.\",\"aLS+A6\":\"Sind Sie sicher, dass Sie diese Vorlage löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden und E-Mails werden auf die Veranstalter- oder Standardvorlage zurückgreifen.\",\"5H3Z78\":\"Bist du sicher, dass du diesen Webhook löschen möchtest?\",\"147G4h\":\"Möchten Sie wirklich gehen?\",\"VDWChT\":\"Sind Sie sicher, dass Sie diesen Veranstalter auf Entwurf setzen möchten? Dadurch wird die Veranstalterseite für die Öffentlichkeit unsichtbar.\",\"pWtQJM\":\"Sind Sie sicher, dass Sie diesen Veranstalter veröffentlichen möchten? Dadurch wird die Veranstalterseite für die Öffentlichkeit sichtbar.\",\"EOqL/A\":\"Sind Sie sicher, dass Sie dieser Person einen Platz anbieten möchten? Sie wird eine E-Mail-Benachrichtigung erhalten.\",\"yAXqWW\":\"Sind Sie sicher, dass Sie diesen Termin endgültig löschen möchten? Dies kann nicht rückgängig gemacht werden.\",\"WFHOlF\":\"Sind Sie sicher, dass Sie diese Veranstaltung veröffentlichen möchten? Nach der Veröffentlichung ist sie öffentlich sichtbar.\",\"4TNVdy\":\"Sind Sie sicher, dass Sie dieses Veranstalterprofil veröffentlichen möchten? Nach der Veröffentlichung ist es öffentlich sichtbar.\",\"8x0pUg\":\"Sind Sie sicher, dass Sie diesen Eintrag von der Warteliste entfernen möchten?\",\"cDtoWq\":[\"Sind Sie sicher, dass Sie die Bestellbestätigung erneut an \",[\"0\"],\" senden möchten?\"],\"xeIaKw\":[\"Sind Sie sicher, dass Sie das Ticket erneut an \",[\"0\"],\" senden möchten?\"],\"BjbocR\":\"Sind Sie sicher, dass Sie diese Veranstaltung wiederherstellen möchten?\",\"7MjfcR\":\"Sind Sie sicher, dass Sie diesen Veranstalter wiederherstellen möchten?\",\"ExDt3P\":\"Sind Sie sicher, dass Sie diese Veranstaltung zurückziehen möchten? Sie wird nicht mehr öffentlich sichtbar sein.\",\"5Qmxo/\":\"Sind Sie sicher, dass Sie dieses Veranstalterprofil zurückziehen möchten? Es wird nicht mehr öffentlich sichtbar sein.\",\"Uqefyd\":\"Sind Sie in der EU umsatzsteuerregistriert?\",\"+QARA4\":\"Kunst\",\"tLf3yJ\":\"Da Ihr Unternehmen in Irland ansässig ist, wird automatisch die irische Umsatzsteuer von 23% auf alle Plattformgebühren angewendet.\",\"tMeVa/\":\"Name und E-Mail für jedes gekaufte Ticket erfragen\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Plan zuweisen\",\"xdiER7\":\"Zugewiesene Stufe\",\"F2rX0R\":\"Mindestens ein Ereignistyp muss ausgewählt werden\",\"BCmibk\":\"Versuche\",\"6PecK3\":\"Anwesenheit und Check-in-Raten für alle Veranstaltungen\",\"K2tp3v\":\"Teilnehmer\",\"AJ4rvK\":\"Teilnehmer storniert\",\"qvylEK\":\"Teilnehmer erstellt\",\"Aspq3b\":\"Erfassung von Teilnehmerdetails\",\"fpb0rX\":\"Teilnehmerdetails aus Bestellung kopiert\",\"0R3Y+9\":\"Teilnehmer-E-Mail\",\"94aQMU\":\"Teilnehmerinformationen\",\"KkrBiR\":\"Erfassung von Teilnehmerinformationen\",\"av+gjP\":\"Teilnehmername\",\"sjPjOg\":\"Teilnehmernotizen\",\"cosfD8\":\"Teilnehmerstatus\",\"D2qlBU\":\"Teilnehmer aktualisiert\",\"22BOve\":\"Teilnehmer erfolgreich aktualisiert\",\"x8Vnvf\":\"Ticket des Teilnehmers nicht in dieser Liste enthalten\",\"/Ywywr\":\"Teilnehmer\",\"zLRobu\":\"Teilnehmer eingecheckt\",\"k3Tngl\":\"Teilnehmer exportiert\",\"UoIRW8\":\"Registrierte Teilnehmer\",\"5UbY+B\":\"Teilnehmer mit einem bestimmten Ticket\",\"4HVzhV\":\"Teilnehmer:\",\"HVkhy2\":\"Attributionsanalyse\",\"dMMjeD\":\"Attributionsaufschlüsselung\",\"1oPDuj\":\"Attributionswert\",\"DBHTm/\":\"August\",\"JgREph\":\"Auto-Angebot ist aktiviert\",\"V7Tejz\":\"Warteliste automatisch verarbeiten\",\"PZ7FTW\":\"Wird automatisch basierend auf der Hintergrundfarbe erkannt, kann aber überschrieben werden\",\"zlnTuI\":\"Bieten Sie Tickets automatisch der nächsten Person an, sobald Kapazität verfügbar wird. Wenn deaktiviert, können Sie die Warteliste manuell über die Wartelistenseite bearbeiten.\",\"csDS2L\":\"Verfügbar\",\"clF06r\":\"Zur Erstattung verfügbar\",\"NB5+UG\":\"Verfügbare Token\",\"L+wGOG\":\"Ausstehend\",\"qcw2OD\":\"Zahlung offen\",\"kNmmvE\":\"Awesome Events GmbH\",\"iH8pgl\":\"Zurück\",\"TeSaQO\":\"Zurück zu Konten\",\"X7Q/iM\":\"Zurück zum Kalender\",\"kYqM1A\":\"Zurück zum Event\",\"s5QRF3\":\"Zurück zu Nachrichten\",\"td/bh+\":\"Zurück zu Berichten\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Grundpreis\",\"hviJef\":\"Basierend auf dem globalen Verkaufszeitraum oben, nicht pro Termin\",\"jIPNJG\":\"Grundinformationen\",\"UabgBd\":\"Inhalt ist erforderlich\",\"HWXuQK\":\"Setzen Sie ein Lesezeichen für diese Seite, um Ihre Bestellung jederzeit zu verwalten.\",\"CUKVDt\":\"Gestalten Sie Ihre Tickets mit einem individuellen Logo, Farben und einer Fußzeilennachricht.\",\"4BZj5p\":\"Integrierter Betrugsschutz\",\"cr7kGH\":\"Massenbearbeitung\",\"1Fbd6n\":\"Termine in Massen bearbeiten\",\"Eq6Tu9\":\"Massenaktualisierung fehlgeschlagen.\",\"9N+p+g\":\"Geschäftlich\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Firmenname\",\"bv6RXK\":\"Schaltflächenbeschriftung\",\"ChDLlO\":\"Schaltflächentext\",\"BUe8Wj\":\"Käufer zahlt\",\"qF1qbA\":\"Käufer sehen einen klaren Preis. Die Plattformgebühr wird von Ihrer Auszahlung abgezogen.\",\"dg05rc\":\"Mit dem Hinzufügen von Tracking-Pixeln erkennen Sie an, dass Sie und diese Plattform gemeinsame Verantwortliche für die erhobenen Daten sind. Sie sind dafür verantwortlich, eine Rechtsgrundlage für diese Verarbeitung nach den geltenden Datenschutzgesetzen (DSGVO, CCPA usw.) sicherzustellen.\",\"DFqasq\":[\"Durch Fortfahren stimmen Sie den <0>\",[\"0\"],\" Nutzungsbedingungen zu\"],\"wVSa+U\":\"Nach Tag des Monats\",\"0MnNgi\":\"Nach Wochentag\",\"CetOZE\":\"Nach Tickettyp\",\"lFdbRS\":\"Anwendungsgebühren umgehen\",\"AjVXBS\":\"Kalender\",\"alkXJ5\":\"Kalenderansicht\",\"2VLZwd\":\"Aktionsschaltfläche\",\"rT2cV+\":\"Kamera\",\"7hYa9y\":\"Kamerazugriff wurde verweigert. <0>Berechtigung erneut anfordern oder den Kamerazugriff in den Browsereinstellungen erlauben.\",\"D02dD9\":\"Kampagne\",\"RRPA79\":\"Kein Check-in möglich\",\"OcVwAd\":[[\"count\"],\" Termin(e) absagen\"],\"H4nE+E\":\"Alle Produkte stornieren und in den Pool zurückgeben\",\"Py78q9\":\"Termin absagen\",\"tOXAdc\":\"Das Stornieren wird alle mit dieser Bestellung verbundenen Teilnehmer stornieren und die Tickets in den verfügbaren Pool zurückgeben.\",\"vev1Jl\":\"Stornierung\",\"Ha17hq\":[[\"0\"],\" Termin(e) abgesagt\"],\"01sEfm\":\"Die Standardkonfiguration des Systems kann nicht gelöscht werden\",\"VsM1HH\":\"Kapazitätszuweisungen\",\"9bIMVF\":\"Kapazitätsverwaltung\",\"H7K8og\":\"Kapazität muss 0 oder größer sein\",\"nzao08\":\"Kapazitätsänderungen\",\"4cp9NP\":\"Belegte Kapazität\",\"K7tIrx\":\"Kategorie\",\"o+XJ9D\":\"Ändern\",\"kJkjoB\":\"Dauer ändern\",\"J0KExZ\":\"Teilnehmerlimit ändern\",\"CIHJJf\":\"Wartelisten-Einstellungen ändern\",\"B5icLR\":[\"Dauer für \",[\"count\"],\" Termin(e) geändert\"],\"Kb+0BT\":\"Zahlungen\",\"2tbLdK\":\"Wohltätigkeit\",\"BPWGKn\":\"Einchecken\",\"6uFFoY\":\"Auschecken\",\"FjAlwK\":[\"Schau dir diese Veranstaltung an: \",[\"0\"]],\"v4fiSg\":\"Überprüfen Sie Ihre E-Mail\",\"51AsAN\":\"Überprüfen Sie Ihren Posteingang! Wenn Tickets mit dieser E-Mail verknüpft sind, erhalten Sie einen Link, um sie anzuzeigen.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Check-in erstellt\",\"F4SRy3\":\"Check-in gelöscht\",\"as6XfO\":[\"Check-in für \",[\"0\"],\" wurde rückgängig gemacht\"],\"9s/wrQ\":\"Check-in-Verlauf\",\"Wwztk4\":\"Check-in-Liste\",\"9gPPUY\":\"Check-In-Liste erstellt!\",\"dwjiJt\":\"Check-in-Liste Info\",\"7od0PV\":\"Check-in-Listen\",\"f2vU9t\":\"Check-in-Listen\",\"XprdTn\":\"Check-in-Navigation\",\"5tV1in\":\"Check-in-Fortschritt\",\"SHJwyq\":\"Check-in-Rate\",\"qCqdg6\":\"Check-In-Status\",\"cKj6OE\":\"Check-in-Übersicht\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Eingecheckt\",\"DM4gBB\":\"Chinesisch (Traditionell)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Andere Aktion auswählen\",\"fkb+y3\":\"Wählen Sie einen gespeicherten Standort zum Anwenden.\",\"Zok1Gx\":\"Veranstalter auswählen\",\"pkk46Q\":\"Wählen Sie einen Veranstalter\",\"Crr3pG\":\"Kalender auswählen\",\"LAW8Vb\":\"Wählen Sie die Standardeinstellung für neue Veranstaltungen. Dies kann für einzelne Veranstaltungen überschrieben werden.\",\"pjp2n5\":\"Wählen Sie, wer die Plattformgebühr zahlt. Dies hat keine Auswirkungen auf zusätzliche Gebühren, die Sie in Ihren Kontoeinstellungen konfiguriert haben.\",\"xCJdfg\":\"Zurücksetzen\",\"QyOWu9\":\"Standort zurücksetzen — auf den Veranstaltungsstandard zurückfallen\",\"V8yTm6\":\"Suche zurücksetzen\",\"kmnKnX\":\"Beim Zurücksetzen werden alle terminbezogenen Überschreibungen entfernt. Betroffene Termine fallen auf den Standardstandort der Veranstaltung zurück.\",\"/o+aQX\":\"Zum Abbrechen klicken\",\"gD7WGV\":\"Klicken, um für neue Verkäufe wieder zu öffnen\",\"CySr+W\":\"Klicken, um Notizen anzuzeigen\",\"RG3szS\":\"schließen\",\"RWw9Lg\":\"Modal schließen\",\"XwdMMg\":\"Code darf nur Buchstaben, Zahlen, Bindestriche und Unterstriche enthalten\",\"+yMJb7\":\"Code ist erforderlich\",\"m9SD3V\":\"Code muss mindestens 3 Zeichen lang sein\",\"V1krgP\":\"Code darf maximal 20 Zeichen lang sein\",\"psqIm5\":\"Arbeiten Sie mit Ihrem Team zusammen, um gemeinsam großartige Veranstaltungen zu gestalten.\",\"4bUH9i\":\"Erfassen Sie Teilnehmerdetails für jedes gekaufte Ticket.\",\"TkfG8v\":\"Details pro Bestellung erfassen\",\"96ryID\":\"Details pro Ticket erfassen\",\"FpsvqB\":\"Farbmodus\",\"jEu4bB\":\"Spalten\",\"CWk59I\":\"Comedy\",\"rPA+Gc\":\"Kommunikationseinstellungen\",\"zFT5rr\":\"abgeschlossen\",\"bUQMpb\":\"Stripe-Einrichtung abschließen\",\"744BMm\":\"Vervollständigen Sie Ihre Bestellung, um Ihre Tickets zu sichern. Dieses Angebot ist zeitlich begrenzt, warten Sie also nicht zu lange.\",\"5YrKW7\":\"Schließen Sie Ihre Zahlung ab, um Ihre Tickets zu sichern.\",\"xGU92i\":\"Vervollständigen Sie Ihr Profil, um dem Team beizutreten.\",\"QOhkyl\":\"Verfassen\",\"ih35UP\":\"Konferenzzentrum\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Konfiguration zugewiesen\",\"X1zdE7\":\"Konfiguration erfolgreich erstellt\",\"mLBUMQ\":\"Konfiguration erfolgreich gelöscht\",\"UIENhw\":\"Konfigurationsnamen sind für Endbenutzer sichtbar. Feste Gebühren werden zum aktuellen Wechselkurs in die Bestellwährung umgerechnet.\",\"eeZdaB\":\"Konfiguration erfolgreich aktualisiert\",\"3cKoxx\":\"Konfigurationen\",\"8v2LRU\":\"Konfigurieren Sie Veranstaltungsdetails, Standort, Bezahloptionen und E-Mail-Benachrichtigungen.\",\"raw09+\":\"Konfigurieren Sie, wie Teilnehmerdetails während des Bezahlvorgangs erfasst werden\",\"FI60XC\":\"Steuern & Gebühren konfigurieren\",\"av6ukY\":\"Legen Sie fest, welche Produkte für diesen Termin verfügbar sind, und passen Sie optional die Preise an.\",\"NGXKG/\":\"E-Mail-Adresse bestätigen\",\"JRQitQ\":\"Neues Passwort bestätigen\",\"Auz0Mz\":\"Bestätigen Sie Ihre E-Mail-Adresse, um alle Funktionen zu nutzen.\",\"7+grte\":\"Bestätigungs-E-Mail gesendet! Bitte überprüfen Sie Ihren Posteingang.\",\"n/7+7Q\":\"Bestätigung gesendet an\",\"x3wVFc\":\"Herzlichen Glückwunsch! Ihre Veranstaltung ist jetzt öffentlich sichtbar.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Verbinden Sie Stripe, um die Bearbeitung von E-Mail-Vorlagen zu ermöglichen\",\"LmvZ+E\":\"Stripe verbinden, um Nachrichten zu aktivieren\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakt \",[\"0\"]],\"41BQ3k\":\"Kontakt-E-Mail\",\"KcXRN+\":\"Kontakt-E-Mail für Support\",\"m8WD6t\":\"Einrichtung fortsetzen\",\"0GwUT4\":\"Weiter zur Kasse\",\"sBV87H\":\"Weiter zur Veranstaltungserstellung\",\"nKtyYu\":\"Weiter zum nächsten Schritt\",\"F3/nus\":\"Weiter zur Zahlung\",\"p2FRHj\":\"Steuern Sie, wie Plattformgebühren für diese Veranstaltung gehandhabt werden\",\"NqfabH\":\"Kontrollieren, wer für diesen Termin reinkommt\",\"fmYxZx\":\"Wer wann reinkommt\",\"1JnTgU\":\"Von oben kopiert\",\"FxVG/l\":\"In die Zwischenablage kopiert\",\"PiH3UR\":\"Kopiert!\",\"4i7smN\":\"Konto-ID kopieren\",\"uUPbPg\":\"Partnerlink kopieren\",\"iVm46+\":\"Code kopieren\",\"cF2ICc\":\"Kundenlink kopieren\",\"+2ZJ7N\":\"Details zum ersten Teilnehmer kopieren\",\"ZN1WLO\":\"E-Mail Kopieren\",\"y1eoq1\":\"Link kopieren\",\"tUGbi8\":\"Meine Daten kopieren an:\",\"y22tv0\":\"Kopieren Sie diesen Link, um ihn überall zu teilen\",\"/4gGIX\":\"In die Zwischenablage kopieren\",\"e0f4yB\":\"Standort konnte nicht gelöscht werden\",\"vkiDx2\":\"Massenaktualisierung konnte nicht vorbereitet werden.\",\"KOavaU\":\"Adressdetails konnten nicht abgerufen werden\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Termin konnte nicht gespeichert werden\",\"eeLExK\":\"Standort konnte nicht gespeichert werden\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Titelbild\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Das Titelbild wird oben auf Ihrer Veranstaltungsseite angezeigt\",\"2NLjA6\":\"Das Titelbild wird oben auf Ihrer Veranstalterseite angezeigt\",\"GkrqoY\":\"Gilt für alle Tickets\",\"zg4oSu\":[[\"0\"],\"-Vorlage erstellen\"],\"RKKhnW\":\"Erstellen Sie ein individuelles Widget, um Tickets auf Ihrer Website zu verkaufen.\",\"6sk7PP\":\"Feste Anzahl erstellen\",\"PhioFp\":\"Erstellen Sie eine neue Check-in-Liste für eine aktive Session oder kontaktieren Sie den Veranstalter, wenn Sie glauben, dass dies ein Fehler ist.\",\"yIRev4\":\"Passwort erstellen\",\"j7xZ7J\":\"Erstellen Sie weitere Veranstalter, um separate Marken, Abteilungen oder Veranstaltungsreihen unter einem Konto zu verwalten. Jeder Veranstalter hat eigene Veranstaltungen, Einstellungen und eine öffentliche Seite.\",\"xfKgwv\":\"Partner erstellen\",\"tudG8q\":\"Erstellen und konfigurieren Sie Tickets und Merchandise zum Verkauf.\",\"YAl9Hg\":\"Konfiguration erstellen\",\"BTne9e\":\"Erstellen Sie benutzerdefinierte E-Mail-Vorlagen für diese Veranstaltung, die die Veranstalter-Standards überschreiben\",\"YIDzi/\":\"Benutzerdefinierte Vorlage erstellen\",\"tsGqx5\":\"Termin erstellen\",\"Nc3l/D\":\"Erstellen Sie Rabatte, Zugangscodes für versteckte Tickets und Sonderangebote.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Für diesen Termin erstellen\",\"eWEV9G\":\"Neues Passwort erstellen\",\"wl2iai\":\"Terminplan erstellen\",\"8AiKIu\":\"Ticket oder Produkt erstellen\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Erstellen Sie verfolgbare Links, um Partner zu belohnen, die Ihre Veranstaltung bewerben.\",\"dkAPxi\":\"Webhook erstellen\",\"5slqwZ\":\"Erstellen Sie Ihre Veranstaltung\",\"JQNMrj\":\"Erstellen Sie Ihre erste Veranstaltung\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Erstellen Sie Ihre eigene Veranstaltung\",\"67NsZP\":\"Veranstaltung wird erstellt...\",\"H34qcM\":\"Veranstalter wird erstellt...\",\"1YMS+X\":\"Ihre Veranstaltung wird erstellt, bitte warten\",\"yiy8Jt\":\"Ihr Veranstalterprofil wird erstellt, bitte warten\",\"lfLHNz\":\"CTA-Beschriftung ist erforderlich\",\"0xLR6W\":\"Aktuell zugewiesen\",\"iTvh6I\":\"Derzeit zum Kauf verfügbar\",\"A42Dqn\":\"Individuelles Branding\",\"Guo0lU\":\"Benutzerdefiniertes Datum und Uhrzeit\",\"mimF6c\":\"Benutzerdefinierte Nachricht nach dem Checkout\",\"WDMdn8\":\"Benutzerdefinierte Fragen\",\"O6mra8\":\"Benutzerdefinierte Fragen\",\"axv/Mi\":\"Benutzerdefinierte Vorlage\",\"2YeVGY\":\"Kundenlink in die Zwischenablage kopiert\",\"QMHSMS\":\"Der Kunde erhält eine E-Mail zur Bestätigung der Erstattung\",\"L/Qc+w\":\"E-Mail-Adresse des Kunden\",\"wpfWhJ\":\"Vorname des Kunden\",\"GIoqtA\":\"Nachname des Kunden\",\"NihQNk\":\"Kunden\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Passen Sie die an Ihre Kunden gesendeten E-Mails mit Liquid-Vorlagen an. Diese Vorlagen werden als Standards für alle Veranstaltungen in Ihrer Organisation verwendet.\",\"xJaTUK\":\"Passen Sie Layout, Farben und Branding Ihrer Veranstaltungs-Homepage an.\",\"MXZfGN\":\"Passen Sie die Fragen während des Bezahlvorgangs an, um wichtige Informationen von Ihren Teilnehmern zu sammeln.\",\"iX6SLo\":\"Passen Sie den Text auf dem Weiter-Button an\",\"pxNIxa\":\"Passen Sie Ihre E-Mail-Vorlage mit Liquid-Vorlagen an\",\"3trPKm\":\"Passen Sie das Erscheinungsbild Ihrer Veranstalterseite an\",\"U0sC6H\":\"Täglich\",\"/gWrVZ\":\"Tägliche Einnahmen, Steuern, Gebühren und Rückerstattungen für alle Veranstaltungen\",\"zgCHnE\":\"Täglicher Verkaufsbericht\",\"nHm0AI\":\"Aufschlüsselung der täglichen Verkäufe, Steuern und Gebühren\",\"1aPnDT\":\"Tanz\",\"pvnfJD\":\"Dunkel\",\"MaB9wW\":\"Terminabsage\",\"e6cAxJ\":\"Termin abgesagt\",\"81jBnC\":\"Termin erfolgreich abgesagt\",\"a/C/6R\":\"Termin erfolgreich erstellt\",\"IW7Q+u\":\"Termin gelöscht\",\"rngCAz\":\"Termin erfolgreich gelöscht\",\"lnYE59\":\"Datum der Veranstaltung\",\"gnBreG\":\"Datum der Bestellaufgabe\",\"vHbfoQ\":\"Termin reaktiviert\",\"hvah+S\":\"Datum für neue Verkäufe wieder geöffnet\",\"Ez0YsD\":\"Termin erfolgreich aktualisiert\",\"VTsZuy\":\"Termine und Uhrzeiten werden verwaltet auf der\",\"/ITcnz\":\"Tag\",\"H7OUPr\":\"Tag\",\"JtHrX9\":\"Tag des Monats\",\"J/Upwb\":\"Tage\",\"vDVA2I\":\"Tage des Monats\",\"rDLvlL\":\"Wochentage\",\"r6zgGo\":\"Dezember\",\"jbq7j2\":\"Ablehnen\",\"ovBPCi\":\"Standard\",\"JtI4vj\":\"Standard-Erfassung von Teilnehmerinformationen\",\"ULjv90\":\"Standardkapazität pro Termin\",\"3R/Tu2\":\"Standard-Gebührenbehandlung\",\"1bZAZA\":\"Standardvorlage wird verwendet\",\"HNlEFZ\":\"löschen\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[[\"count\"],\" ausgewählte(n) Termin(e) löschen? Termine mit Bestellungen werden übersprungen. Dies kann nicht rückgängig gemacht werden.\"],\"vu7gDm\":\"Partner löschen\",\"KZN4Lc\":\"Alle löschen\",\"6EkaOO\":\"Termin löschen\",\"io0G93\":\"Veranstaltung löschen\",\"+jw/c1\":\"Bild löschen\",\"hdyeZ0\":\"Job löschen\",\"xxjZeP\":\"Standort löschen\",\"sY3tIw\":\"Veranstalter löschen\",\"UBv8UK\":\"Endgültig löschen\",\"dPyJ15\":\"Vorlage löschen\",\"mxsm1o\":\"Diese Frage löschen? Dies kann nicht rückgängig gemacht werden.\",\"snMaH4\":\"Webhook löschen\",\"LIZZLY\":[[\"0\"],\" Termin(e) gelöscht\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Alle abwählen\",\"NvuEhl\":\"Designelemente\",\"H8kMHT\":\"Code nicht erhalten?\",\"G8KNgd\":\"Anderer Standort\",\"E/QGRL\":\"Deaktiviert\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Diese Nachricht schließen\",\"BREO0S\":\"Zeigen Sie ein Kontrollkästchen an, mit dem Kunden dem Erhalt von Marketing-Mitteilungen von diesem Veranstalter zustimmen können.\",\"pfa8F0\":\"Anzeigename\",\"Kdpf90\":\"Nicht vergessen!\",\"352VU2\":\"Haben Sie noch kein Konto? <0>Registrieren\",\"AXXqG+\":\"Spende\",\"DPfwMq\":\"Fertig\",\"JoPiZ2\":\"Anweisungen für Türpersonal\",\"2+O9st\":\"Laden Sie Verkaufs-, Teilnehmer- und Finanzberichte für alle abgeschlossenen Bestellungen herunter.\",\"eneWvv\":\"Entwurf\",\"Ts8hhq\":\"Aufgrund des hohen Spam-Risikos müssen Sie ein Stripe-Konto verbinden, bevor Sie E-Mail-Vorlagen ändern können. Dies dient dazu sicherzustellen, dass alle Veranstalter verifiziert und rechenschaftspflichtig sind.\",\"TnzbL+\":\"Aufgrund des hohen Spam-Risikos müssen Sie ein Stripe-Konto verbinden, bevor Sie Nachrichten an Teilnehmer senden können.\\nDies dient dazu sicherzustellen, dass alle Veranstalter verifiziert und rechenschaftspflichtig sind.\",\"euc6Ns\":\"Duplizieren\",\"YueC+F\":\"Termin duplizieren\",\"KRmTkx\":\"Produkt duplizieren\",\"Jd3ymG\":\"Dauer muss mindestens 1 Minute betragen.\",\"KIjvtr\":\"Niederländisch\",\"22xieU\":\"z.B. 180 (3 Stunden)\",\"/zajIE\":\"z. B. Morgensession\",\"SPKbfM\":\"z.\u202FB. Tickets kaufen, Jetzt registrieren\",\"fc7wGW\":\"z.B. Wichtiges Update zu Ihren Tickets\",\"54MPqC\":\"z.B. Standard, Premium, Enterprise\",\"3RQ81z\":\"Jede Person erhält eine E-Mail mit einem reservierten Platz, um den Kauf abzuschließen.\",\"5oD9f/\":\"Früher\",\"LTzmgK\":[[\"0\"],\"-Vorlage bearbeiten\"],\"v4+lcZ\":\"Partner bearbeiten\",\"2iZEz7\":\"Antwort bearbeiten\",\"t2bbp8\":\"Teilnehmer bearbeiten\",\"etaWtB\":\"Teilnehmerdetails bearbeiten\",\"+guao5\":\"Konfiguration bearbeiten\",\"1Mp/A4\":\"Termin bearbeiten\",\"m0ZqOT\":\"Standort bearbeiten\",\"8oivFT\":\"Standort bearbeiten\",\"vRWOrM\":\"Bestelldetails bearbeiten\",\"fW5sSv\":\"Webhook bearbeiten\",\"nP7CdQ\":\"Webhook bearbeiten\",\"MRZxAn\":\"Bearbeitet\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Bildung\",\"iiWXDL\":\"Berechtigungsfehler\",\"zPiC+q\":\"Berechtigte Check-In-Listen\",\"SiVstt\":\"E-Mail & geplante Nachrichten\",\"V2sk3H\":\"E-Mail & Vorlagen\",\"hbwCKE\":\"E-Mail-Adresse in Zwischenablage kopiert\",\"dSyJj6\":\"E-Mail-Adressen stimmen nicht überein\",\"elW7Tn\":\"E-Mail-Inhalt\",\"ZsZeV2\":\"E-Mail ist erforderlich\",\"Be4gD+\":\"E-Mail-Vorschau\",\"6IwNUc\":\"E-Mail-Vorlagen\",\"H/UMUG\":\"E-Mail-Verifizierung erforderlich\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"E-Mail erfolgreich verifiziert!\",\"FSN4TS\":\"Widget einbetten\",\"z9NkYY\":\"Einbettbares Widget\",\"Qj0GKe\":\"Teilnehmer-Selbstbedienung aktivieren\",\"hEtQsg\":\"Teilnehmer-Selbstbedienung standardmäßig aktivieren\",\"Upeg/u\":\"Diese Vorlage für das Senden von E-Mails aktivieren\",\"7dSOhU\":\"Warteliste aktivieren\",\"RxzN1M\":\"Aktiviert\",\"xDr/ct\":\"Ende\",\"sGjBEq\":\"Enddatum & -zeit (optional)\",\"PKXt9R\":\"Das Enddatum muss nach dem Startdatum liegen\",\"UmzbPa\":\"Enddatum des Termins\",\"ZayGC7\":\"An einem Datum enden\",\"48Y16Q\":\"Endzeit (optional)\",\"jpNdOC\":\"Endzeit des Termins\",\"TbaYrr\":[\"Beendet \",[\"0\"]],\"CFgwiw\":[\"Endet \",[\"0\"]],\"SqOIQU\":\"Geben Sie einen Kapazitätswert ein oder wählen Sie unbegrenzt.\",\"h37gRz\":\"Geben Sie eine Bezeichnung ein oder wählen Sie, sie zu entfernen.\",\"7YZofi\":\"Geben Sie einen Betreff und Inhalt ein, um die Vorschau zu sehen\",\"khyScF\":\"Geben Sie eine Zeit ein, um zu verschieben.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Partner-E-Mail eingeben (optional)\",\"ARkzso\":\"Partnername eingeben\",\"ej4L8b\":\"Kapazität eingeben\",\"6KnyG0\":\"E-Mail eingeben\",\"INDKM9\":\"E-Mail-Betreff eingeben...\",\"xUgUTh\":\"Vornamen eingeben\",\"9/1YKL\":\"Nachnamen eingeben\",\"VpwcSk\":\"Neues Passwort eingeben\",\"kWg31j\":\"Eindeutigen Partnercode eingeben\",\"C3nD/1\":\"Geben Sie Ihre E-Mail-Adresse ein\",\"VmXiz4\":\"Geben Sie Ihre E-Mail-Adresse ein und wir senden Ihnen Anweisungen zum Zurücksetzen Ihres Passworts.\",\"n9V+ps\":\"Geben Sie Ihren Namen ein\",\"IdULhL\":\"Geben Sie Ihre Umsatzsteuer-Identifikationsnummer mit Ländercode ohne Leerzeichen ein (z.B. IE1234567A, DE123456789)\",\"o21Y+P\":\"Einträge\",\"X88/6w\":\"Einträge erscheinen hier, wenn Kunden sich auf die Warteliste für ausverkaufte Produkte setzen.\",\"LslKhj\":\"Fehler beim Laden der Protokolle\",\"VCNHvW\":\"Veranstaltung archiviert\",\"ZD0XSb\":\"Veranstaltung erfolgreich archiviert\",\"WgD6rb\":\"Veranstaltungskategorie\",\"b46pt5\":\"Veranstaltungs-Titelbild\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Veranstaltung erstellt\",\"1Hzev4\":\"Event-benutzerdefinierte Vorlage\",\"7u9/DO\":\"Veranstaltung erfolgreich gelöscht\",\"imgKgl\":\"Veranstaltungsbeschreibung\",\"kJDmsI\":\"Veranstaltungsdetails\",\"m/N7Zq\":\"Vollständige Veranstaltungsadresse\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Veranstaltungsort\",\"PYs3rP\":\"Veranstaltungsname\",\"HhwcTQ\":\"Veranstaltungsname\",\"WZZzB6\":\"Veranstaltungsname ist erforderlich\",\"Wd5CDM\":\"Der Veranstaltungsname sollte weniger als 150 Zeichen lang sein\",\"4JzCvP\":\"Veranstaltung nicht verfügbar\",\"Gh9Oqb\":\"Name des Veranstalters\",\"mImacG\":\"Veranstaltungsseite\",\"Hk9Ki/\":\"Veranstaltung erfolgreich wiederhergestellt\",\"JyD0LH\":\"Veranstaltungseinstellungen\",\"cOePZk\":\"Veranstaltungszeit\",\"e8WNln\":\"Veranstaltungszeitzone\",\"GeqWgj\":\"Veranstaltungszeitzone\",\"XVLu2v\":\"Veranstaltungstitel\",\"OfmsI9\":\"Event zu neu\",\"4SILkp\":\"Veranstaltungsgesamtwerte\",\"YDVUVl\":\"Ereignistypen\",\"+HeiVx\":\"Veranstaltung aktualisiert\",\"4K2OjV\":\"Veranstaltungsort\",\"19j6uh\":\"Veranstaltungsleistung\",\"PC3/fk\":\"Veranstaltungen, die in den nächsten 24 Stunden beginnen\",\"nwiZdc\":[\"Alle \",[\"0\"]],\"2LJU4o\":[\"Alle \",[\"0\"],\" Tage\"],\"yLiYx+\":[\"Alle \",[\"0\"],\" Monate\"],\"nn9ice\":[\"Alle \",[\"0\"],\" Wochen\"],\"Cdr8f9\":[\"Alle \",[\"0\"],\" Wochen am \",[\"1\"]],\"GVEHRk\":[\"Alle \",[\"0\"],\" Jahre\"],\"fTFfOK\":\"Jede E-Mail-Vorlage muss eine Aktionsschaltfläche enthalten, die zur entsprechenden Seite verlinkt\",\"BVinvJ\":\"Beispiele: \\\"Wie haben Sie von uns erfahren?\\\", \\\"Firmenname für Rechnung\\\"\",\"2hGPQG\":\"Beispiele: \\\"T-Shirt-Größe\\\", \\\"Essenspräferenz\\\", \\\"Berufsbezeichnung\\\"\",\"qNuTh3\":\"Ausnahme\",\"M1RnFv\":\"Abgelaufen\",\"kF8HQ7\":\"Antworten exportieren\",\"2KAI4N\":\"CSV exportieren\",\"JKfSAv\":\"Export fehlgeschlagen. Bitte versuchen Sie es erneut.\",\"SVOEsu\":\"Export gestartet. Datei wird vorbereitet...\",\"wuyaZh\":\"Export erfolgreich\",\"9bpUSo\":\"Partner werden exportiert\",\"jtrqH9\":\"Teilnehmer werden exportiert\",\"R4Oqr8\":\"Export abgeschlossen. Datei wird heruntergeladen...\",\"UlAK8E\":\"Bestellungen werden exportiert\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Fehlgeschlagen\",\"8uOlgz\":\"Fehlgeschlagen am\",\"tKcbYd\":\"Fehlgeschlagene Jobs\",\"SsI9v/\":\"Bestellung konnte nicht abgebrochen werden. Bitte versuchen Sie es erneut.\",\"LdPKPR\":\"Konfiguration konnte nicht zugewiesen werden\",\"PO0cfn\":\"Termin konnte nicht abgesagt werden\",\"YUX+f+\":\"Termine konnten nicht abgesagt werden\",\"SIHgVQ\":\"Nachricht konnte nicht abgebrochen werden\",\"cEFg3R\":\"Partner konnte nicht erstellt werden\",\"dVgNF1\":\"Konfiguration konnte nicht erstellt werden\",\"fAoRRJ\":\"Terminplan konnte nicht erstellt werden\",\"U66oUa\":\"Vorlage konnte nicht erstellt werden\",\"aFk48v\":\"Konfiguration konnte nicht gelöscht werden\",\"n1CYMH\":\"Termin konnte nicht gelöscht werden\",\"KXv+Qn\":\"Termin konnte nicht gelöscht werden. Möglicherweise gibt es bereits Bestellungen.\",\"JJ0uRo\":\"Termine konnten nicht gelöscht werden\",\"rgoBnv\":\"Fehler beim Löschen der Veranstaltung\",\"Zw6LWb\":\"Job konnte nicht gelöscht werden\",\"tq0abZ\":\"Jobs konnten nicht gelöscht werden\",\"2mkc3c\":\"Fehler beim Löschen des Veranstalters\",\"vKMKnu\":\"Frage konnte nicht gelöscht werden\",\"xFj7Yj\":\"Vorlage konnte nicht gelöscht werden\",\"jo3Gm6\":\"Partner konnten nicht exportiert werden\",\"Jjw03p\":\"Fehler beim Export der Teilnehmer\",\"ZPwFnN\":\"Fehler beim Export der Bestellungen\",\"zGE3CH\":\"Export des Berichts fehlgeschlagen. Bitte versuchen Sie es erneut.\",\"lS9/aZ\":\"Empfänger konnten nicht geladen werden\",\"X4o0MX\":\"Webhook konnte nicht geladen werden\",\"ETcU7q\":\"Platz konnte nicht angeboten werden\",\"5670b9\":\"Tickets konnten nicht angeboten werden\",\"e5KIbI\":\"Termin konnte nicht reaktiviert werden\",\"7zyx8a\":\"Konnte nicht von der Warteliste entfernt werden\",\"A/P7PX\":\"Überschreibung konnte nicht entfernt werden\",\"ogWc1z\":\"Datum konnte nicht wieder geöffnet werden\",\"0+iwE5\":\"Fragen konnten nicht neu sortiert werden\",\"EJPAcd\":\"Bestellbestätigung konnte nicht erneut gesendet werden\",\"DjSbj3\":\"Ticket konnte nicht erneut gesendet werden\",\"YQ3QSS\":\"Bestätigungscode konnte nicht erneut gesendet werden\",\"wDioLj\":\"Job konnte nicht wiederholt werden\",\"DKYTWG\":\"Jobs konnten nicht wiederholt werden\",\"WRREqF\":\"Überschreibung konnte nicht gespeichert werden\",\"sj/eZA\":\"Preisüberschreibung konnte nicht gespeichert werden\",\"780n8A\":\"Produkteinstellungen konnten nicht gespeichert werden\",\"zTkTF3\":\"Vorlage konnte nicht gespeichert werden\",\"l6acRV\":\"Fehler beim Speichern der Umsatzsteuereinstellungen. Bitte versuchen Sie es erneut.\",\"T6B2gk\":\"Nachricht konnte nicht gesendet werden. Bitte versuchen Sie es erneut.\",\"lKh069\":\"Exportauftrag konnte nicht gestartet werden\",\"t/KVOk\":\"Fehler beim Starten der Identitätswechsel. Bitte versuchen Sie es erneut.\",\"QXgjH0\":\"Fehler beim Beenden der Identitätswechsel. Bitte versuchen Sie es erneut.\",\"i0QKrm\":\"Partner konnte nicht aktualisiert werden\",\"NNc33d\":\"Fehler beim Aktualisieren der Antwort.\",\"E9jY+o\":\"Teilnehmer konnte nicht aktualisiert werden\",\"uQynyf\":\"Konfiguration konnte nicht aktualisiert werden\",\"i2PFQJ\":\"Fehler beim Aktualisieren des Veranstaltungsstatus\",\"EhlbcI\":\"Aktualisierung der Messaging-Stufe fehlgeschlagen\",\"rpGMzC\":\"Bestellung konnte nicht aktualisiert werden\",\"T2aCOV\":\"Fehler beim Aktualisieren des Veranstalterstatus\",\"Eeo/Gy\":\"Einstellung konnte nicht aktualisiert werden\",\"kqA9lY\":\"Umsatzsteuereinstellungen konnten nicht aktualisiert werden\",\"7/9RFs\":\"Bild-Upload fehlgeschlagen.\",\"nkNfWu\":\"Fehler beim Hochladen des Bildes. Bitte versuchen Sie es erneut.\",\"rxy0tG\":\"E-Mail konnte nicht verifiziert werden\",\"QRUpCk\":\"Familie\",\"5LO38w\":\"Schnelle Auszahlungen auf dein Bankkonto\",\"4lgLew\":\"Februar\",\"9bHCo2\":\"Gebührungswährung\",\"/sV91a\":\"Gebührenbehandlung\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Gebühren umgangen\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Datei ist zu groß. Maximale Größe beträgt 5MB.\",\"VejKUM\":\"Füllen Sie zuerst Ihre Daten oben aus\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Teilnehmer filtern\",\"8OvVZZ\":\"Teilnehmer filtern\",\"N/H3++\":\"Nach Termin filtern\",\"mvrlBO\":\"Nach Veranstaltung filtern\",\"g+xRXP\":\"Stripe-Einrichtung beenden\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"Erster\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Ersten Teilnehmer\",\"4pwejF\":\"Vorname ist erforderlich\",\"3lkYdQ\":\"Festgebühr\",\"6bBh3/\":\"Feste Gebühr\",\"zWqUyJ\":\"Feste Gebühr pro Transaktion\",\"LWL3Bs\":\"Feste Gebühr muss 0 oder größer sein\",\"0RI8m4\":\"Blitz aus\",\"q0923e\":\"Blitz an\",\"lWxAUo\":\"Essen & Trinken\",\"nFm+5u\":\"Fußzeilentext\",\"a8nooQ\":\"Vierter\",\"mob/am\":\"Fr\",\"wtuVU4\":\"Häufigkeit\",\"xVhQZV\":\"Fr\",\"39y5bn\":\"Freitag\",\"f5UbZ0\":\"Volle Datenhoheit\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Vollständige Erstattung\",\"UsIfa8\":\"Vollständige aufgelöste Adresse\",\"PGQLdy\":\"zukünftige\",\"8N/j1s\":\"Nur zukünftige Termine\",\"yRx/6K\":\"Zukünftige Termine werden kopiert, wobei die Kapazität auf null zurückgesetzt wird\",\"T02gNN\":\"Allgemeiner Eintritt\",\"3ep0Gx\":\"Allgemeine Informationen über Ihren Veranstalter\",\"ziAjHi\":\"Generieren\",\"exy8uo\":\"Code generieren\",\"4CETZY\":\"Wegbeschreibung\",\"pjkEcB\":\"Bezahlung erhalten\",\"lGYzP6\":\"Bezahlt werden mit Stripe\",\"ZDIydz\":\"Erste Schritte\",\"u6FPxT\":\"Tickets erhalten\",\"8KDgYV\":\"Bereiten Sie Ihre Veranstaltung vor\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Zurück\",\"oNL5vN\":\"Zur Eventseite\",\"gHSuV/\":\"Zur Startseite gehen\",\"8+Cj55\":\"Zum Terminplan\",\"6nDzTl\":\"Gute Lesbarkeit\",\"76gPWk\":\"Verstanden\",\"aGWZUr\":\"Bruttoeinnahmen\",\"n8IUs7\":\"Bruttoeinnahmen\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gästeverwaltung\",\"NUsTc4\":\"Findet gerade statt\",\"kTSQej\":[\"Hallo \",[\"0\"],\", verwalten Sie Ihre Plattform von hier aus.\"],\"dORAcs\":\"Hier sind alle Tickets, die mit Ihrer E-Mail-Adresse verknüpft sind.\",\"g+2103\":\"Hier ist Ihr Partnerlink\",\"bVsnqU\":\"Hallo,\",\"/iE8xx\":\"Hi.Events Gebühr\",\"zppscQ\":\"Hi.Events Plattformgebühren und MwSt.-Aufschlüsselung nach Transaktion\",\"D+zLDD\":\"Verborgen\",\"DRErHC\":\"Vor Teilnehmern verborgen - nur für Veranstalter sichtbar\",\"NNnsM0\":\"Erweiterte Optionen ausblenden\",\"P+5Pbo\":\"Antworten ausblenden\",\"VMlRqi\":\"Details ausblenden\",\"FmogyU\":\"Optionen ausblenden\",\"gtEbeW\":\"Hervorheben\",\"NF8sdv\":\"Hervorhebungsnachricht\",\"MXSqmS\":\"Dieses Produkt hervorheben\",\"7ER2sc\":\"Hervorgehoben\",\"sq7vjE\":\"Hervorgehobene Produkte haben eine andere Hintergrundfarbe, um sie auf der Event-Seite hervorzuheben.\",\"1+WSY1\":\"Hobbys\",\"yY8wAv\":\"Stunden\",\"sy9anN\":\"Wie lange ein Kunde nach Erhalt eines Angebots Zeit hat, den Kauf abzuschließen. Leer lassen für kein Zeitlimit.\",\"n2ilNh\":\"Wie lange läuft der Terminplan?\",\"DMr2XN\":\"Wie oft?\",\"AVpmAa\":\"Wie man offline zahlt\",\"cceMns\":\"Wie die Umsatzsteuer auf die von uns berechneten Plattformgebühren angewendet wird.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Ungarisch\",\"8Wgd41\":\"Ich erkenne meine Verantwortung als Datenverantwortlicher an\",\"O8m7VA\":\"Ich stimme dem Erhalt von E-Mail-Benachrichtigungen zu dieser Veranstaltung zu\",\"YLgdk5\":\"Ich bestätige, dass dies eine Transaktionsnachricht im Zusammenhang mit dieser Veranstaltung ist\",\"4/kP5a\":\"Wenn sich kein neues Tab automatisch geöffnet hat, klicke bitte unten auf die Schaltfläche, um mit dem Checkout fortzufahren.\",\"W/eN+G\":\"Wenn leer, wird die Adresse verwendet, um einen Google Maps-Link zu erstellen\",\"iIEaNB\":\"Wenn Sie ein Konto bei uns haben, erhalten Sie eine E-Mail mit Anweisungen zum Zurücksetzen Ihres Passworts.\",\"an5hVd\":\"Bilder\",\"tSVr6t\":\"Identität annehmen\",\"TWXU0c\":\"Benutzer verkörpern\",\"5LAZwq\":\"Identitätswechsel gestartet\",\"IMwcdR\":\"Identitätswechsel beendet\",\"0I0Hac\":\"Wichtiger Hinweis\",\"yD3avI\":\"Wichtig: Wenn Sie Ihre E-Mail-Adresse ändern, wird der Link für den Zugriff auf diese Bestellung aktualisiert. Nach dem Speichern werden Sie zum neuen Bestelllink weitergeleitet.\",\"jT142F\":[\"In \",[\"diffHours\"],\" Stunden\"],\"OoSyqO\":[\"In \",[\"diffMinutes\"],\" Minuten\"],\"PdMhEx\":[\"in den letzten \",[\"0\"],\" Min.\"],\"u7r0G5\":\"Vor Ort — Veranstaltungsort festlegen\",\"Ip0hl5\":\"in_person, online, unset oder mixed\",\"F1Xp97\":\"Einzelne Teilnehmer\",\"85e6zs\":\"Liquid-Token einfügen\",\"38KFY0\":\"Variable einfügen\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Sofortige Stripe-Auszahlungen\",\"nbfdhU\":\"Integrationen\",\"I8eJ6/\":\"Interne Notizen auf dem Ticket des Teilnehmers\",\"B2Tpo0\":\"Ungültige E-Mail\",\"5tT0+u\":\"Ungültiges E-Mail-Format\",\"f9WRpE\":\"Ungültiger Dateityp. Bitte laden Sie ein Bild hoch.\",\"tnL+GP\":\"Ungültige Liquid-Syntax. Bitte korrigieren Sie sie und versuchen Sie es erneut.\",\"N9JsFT\":\"Ungültiges Format der Umsatzsteuer-Identifikationsnummer\",\"g+lLS9\":\"Teammitglied einladen\",\"1z26sk\":\"Teammitglied einladen\",\"KR0679\":\"Teammitglieder einladen\",\"aH6ZIb\":\"Laden Sie Ihr Team ein\",\"IuMGvq\":\"Rechnung\",\"Lj7sBL\":\"Italienisch\",\"F5/CBH\":\"Artikel\",\"BzfzPK\":\"Artikel\",\"rjyWPb\":\"Januar\",\"KmWyx0\":\"Job\",\"o5r6b2\":\"Job gelöscht\",\"cd0jIM\":\"Job-Details\",\"ruJO57\":\"Job-Name\",\"YZi+Hu\":\"Job zur Wiederholung eingereiht\",\"nCywLA\":\"Von überall teilnehmen\",\"SNzppu\":\"Warteliste beitreten\",\"dLouFI\":[\"Auf die Warteliste für \",[\"productDisplayName\"],\" setzen\"],\"2gMuHR\":\"Beigetreten\",\"u4ex5r\":\"Juli\",\"zeEQd/\":\"Juni\",\"MxjCqk\":\"Suchen Sie nur nach Ihren Tickets?\",\"xOTzt5\":\"gerade eben\",\"0RihU9\":\"Soeben beendet\",\"lB2hSG\":[\"Halte mich über Neuigkeiten und Veranstaltungen von \",[\"0\"],\" auf dem Laufenden\"],\"ioFA9i\":\"Behalten Sie den Gewinn.\",\"4Sffp7\":\"Bezeichnung für den Termin\",\"o66QSP\":\"Bezeichnungsänderungen\",\"RtKKbA\":\"Letzter\",\"DruLRc\":\"Letzte 14 Tage\",\"ve9JTU\":\"Nachname ist erforderlich\",\"h0Q9Iw\":\"Letzte Antwort\",\"gw3Ur5\":\"Zuletzt ausgelöst\",\"FIq1Ba\":\"Später\",\"xvnLMP\":\"Letzte Check-ins\",\"pzAivY\":\"Breitengrad des aufgelösten Standorts\",\"N5TErv\":\"Leer lassen für unbegrenzt\",\"L/hDDD\":\"Leer lassen, um diese Check-in-Liste auf alle Termine anzuwenden\",\"9Pf3wk\":\"Aktiviert lassen, um alle Tickets der Veranstaltung abzudecken. Deaktivieren, um bestimmte Tickets auszuwählen.\",\"Hq2BzX\":\"Informieren Sie sie über die Änderung\",\"+uexiy\":\"Informieren Sie sie über die Änderungen\",\"exYcTF\":\"Bibliothek\",\"1njn7W\":\"Hell\",\"1qY5Ue\":\"Link abgelaufen oder ungültig\",\"+zSD/o\":\"Link zur Veranstaltungs-Startseite\",\"psosdY\":\"Link zu Bestelldetails\",\"6JzK4N\":\"Link zum Ticket\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links erlaubt\",\"2BBAbc\":\"Liste\",\"5NZpX8\":\"Listenansicht\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live-Veranstaltungen\",\"C33p4q\":\"Geladene Termine\",\"WdmJIX\":\"Vorschau wird geladen...\",\"IoDI2o\":\"Token werden geladen...\",\"G3Ge9Z\":\"Webhook-Protokolle werden geladen...\",\"NFxlHW\":\"Webhooks werden geladen\",\"E0DoRM\":\"Standort gelöscht\",\"NtLHT3\":\"Standort - formatierte Adresse\",\"h4vxDc\":\"Standort - Breitengrad\",\"f2TMhR\":\"Standort - Längengrad\",\"lnCo2f\":\"Standortmodus\",\"8pmGFk\":\"Standortname\",\"7w8lJU\":\"Standort gespeichert\",\"YsRXDD\":\"Standort aktualisiert\",\"A/kIva\":\"Standortänderungen\",\"VppBoU\":\"Standorte\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Titelbild\",\"gddQe0\":\"Logo und Titelbild für Ihren Veranstalter\",\"TBEnp1\":\"Logo wird in der Kopfzeile angezeigt\",\"Jzu30R\":\"Logo wird auf dem Ticket angezeigt\",\"zKTMTg\":\"Längengrad des aufgelösten Standorts\",\"PSRm6/\":\"Meine Tickets nachschlagen\",\"yJFu/X\":\"Hauptbüro\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[[\"0\"],\" verwalten\"],\"wZJfA8\":\"Verwalten Sie Termine und Uhrzeiten Ihrer wiederkehrenden Veranstaltung\",\"RlzPUE\":\"Auf Stripe verwalten\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Terminplan verwalten\",\"zXuaxY\":\"Verwalten Sie die Warteliste Ihrer Veranstaltung, sehen Sie Statistiken ein und bieten Sie Teilnehmern Tickets an.\",\"BWTzAb\":\"Manuell\",\"g2npA5\":\"Manuelles Angebot\",\"hg6l4j\":\"März\",\"pqRBOz\":\"Als validiert markieren (Admin-Überschreibung)\",\"2L3vle\":\"Max. Nachrichten / 24h\",\"Qp4HWD\":\"Max. Empfänger / Nachricht\",\"3JzsDb\":\"Mai\",\"agPptk\":\"Medium\",\"xDAtGP\":\"Nachricht\",\"bECJqy\":\"Nachricht erfolgreich genehmigt\",\"1jRD0v\":\"Teilnehmer mit bestimmten Tickets benachrichtigen\",\"uQLXbS\":\"Nachricht abgebrochen\",\"48rf3i\":\"Nachricht darf 5000 Zeichen nicht überschreiten\",\"ZPj0Q8\":\"Nachrichtendetails\",\"Vjat/X\":\"Nachricht ist erforderlich\",\"0/yJtP\":\"Nachricht an Bestelleigentümer mit bestimmten Produkten senden\",\"saG4At\":\"Nachricht geplant\",\"mFdA+i\":\"Messaging-Stufe\",\"v7xKtM\":\"Messaging-Stufe erfolgreich aktualisiert\",\"H9HlDe\":\"Minuten\",\"agRWc1\":\"Minuten\",\"YYzBv9\":\"Mo\",\"zz/Wd/\":\"Modus\",\"fpMgHS\":\"Mo\",\"hty0d5\":\"Montag\",\"JbIgPz\":\"Geldbeträge sind ungefähre Summen über alle Währungen\",\"qvF+MT\":\"Überwachen und verwalten Sie fehlgeschlagene Hintergrundprozesse\",\"kY2ll9\":\"Monat\",\"HajiZl\":\"Monat\",\"+8Nek/\":\"Monatlich\",\"1LkxnU\":\"Monatliches Muster\",\"6jefe3\":\"Monate\",\"f8jrkd\":\"mehr\",\"JcD7qf\":\"Weitere Aktionen\",\"w36OkR\":\"Meistgesehene Events (Letzte 14 Tage)\",\"+Y/na7\":\"Alle Termine nach vorne oder hinten verschieben\",\"3DIpY0\":\"Mehrere Standorte\",\"g9cQCP\":\"Mehrere Tickettypen\",\"GfaxEk\":\"Musik\",\"oVGCGh\":\"Meine Tickets\",\"8/brI5\":\"Name ist erforderlich\",\"sFFArG\":\"Name muss weniger als 255 Zeichen haben\",\"sCV5Yc\":\"Name der Veranstaltung\",\"xxU3NX\":\"Nettoeinnahmen\",\"7I8LlL\":\"Neue Kapazität\",\"n1GRql\":\"Neue Bezeichnung\",\"y0Fcpd\":\"Neuer Standort\",\"ArHT/C\":\"Neue Anmeldungen\",\"uK7xWf\":\"Neue Uhrzeit:\",\"veT5Br\":\"Nächster Termin\",\"WXtl5X\":[\"Nächster: \",[\"nextFormatted\"]],\"eWRECP\":\"Nachtleben\",\"HSw5l3\":\"Nein - Ich bin eine Privatperson oder ein nicht umsatzsteuerregistriertes Unternehmen\",\"VHfLAW\":\"Keine Konten\",\"+jIeoh\":\"Keine Konten gefunden\",\"074+X8\":\"Keine aktiven Webhooks\",\"zxnup4\":\"Keine Partner vorhanden\",\"Dwf4dR\":\"Noch keine Teilnehmerfragen\",\"th7rdT\":\"Keine Teilnehmer\",\"PKySlW\":\"Für diesen Termin sind noch keine Teilnehmer vorhanden.\",\"/UC6qk\":\"Keine Attributionsdaten gefunden\",\"E2vYsO\":\"Stripe hat noch keine Funktionen gemeldet.\",\"amMkpL\":\"Keine Kapazität\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Keine Check-In-Listen für diese Veranstaltung verfügbar.\",\"wG+knX\":\"Noch keine Check-ins\",\"+dAKxg\":\"Keine Konfigurationen gefunden\",\"LiLk8u\":\"Keine Verbindungen verfügbar\",\"eb47T5\":\"Keine Daten für die ausgewählten Filter gefunden. Versuchen Sie, den Datumsbereich oder die Währung anzupassen.\",\"lFVUyx\":\"Keine terminspezifische Check-in-Liste\",\"I8mtzP\":\"Keine Termine in diesem Monat verfügbar. Versuchen Sie, zu einem anderen Monat zu navigieren.\",\"yDukIL\":\"Keine Termine entsprechen den aktuellen Filtern.\",\"B7phdj\":\"Keine Termine entsprechen Ihren Filtern\",\"/ZB4Um\":\"Keine Termine entsprechen Ihrer Suche\",\"gEdNe8\":\"Noch keine Termine geplant\",\"27GYXJ\":\"Keine Termine geplant.\",\"pZNOT9\":\"Kein Enddatum\",\"dW40Uz\":\"Keine Events gefunden\",\"8pQ3NJ\":\"Keine Veranstaltungen, die in den nächsten 24 Stunden beginnen\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Keine fehlgeschlagenen Jobs\",\"EpvBAp\":\"Keine Rechnung\",\"XZkeaI\":\"Keine Protokolle gefunden\",\"nrSs2u\":\"Keine Nachrichten gefunden\",\"Rj99yx\":\"Keine Termine verfügbar\",\"IFU1IG\":\"Keine Termine an diesem Datum\",\"OVFwlg\":\"Noch keine Bestellfragen\",\"EJ7bVz\":\"Keine Bestellungen gefunden\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Für diesen Termin liegen noch keine Bestellungen vor.\",\"wUv5xQ\":\"Keine Veranstalteraktivität in den letzten 14 Tagen\",\"vLd1tV\":\"Kein Veranstalterkontext verfügbar.\",\"B7w4KY\":\"Keine weiteren Veranstalter verfügbar\",\"PChXMe\":\"Keine bezahlten Bestellungen\",\"6jYQGG\":\"Keine vergangenen Veranstaltungen\",\"CHzaTD\":\"Keine beliebten Events in den letzten 14 Tagen\",\"zK/+ef\":\"Keine Produkte zur Auswahl verfügbar\",\"M1/lXs\":\"Keine Produkte für diese Veranstaltung konfiguriert.\",\"kY7XDn\":\"Keine Produkte haben Wartelisteneinträge\",\"wYiAtV\":\"Keine neuen Kontoanmeldungen\",\"UW90md\":\"Keine Empfänger gefunden\",\"QoAi8D\":\"Keine Antwort\",\"JeO7SI\":\"Keine Antwort\",\"EK/G11\":\"Noch keine Antworten\",\"7J5OKy\":\"Noch keine gespeicherten Standorte\",\"wpCjcf\":\"Noch keine gespeicherten Standorte. Sie erscheinen hier, sobald Sie Veranstaltungen mit Adressen erstellen.\",\"mPdY6W\":\"Keine Vorschläge\",\"3sRuiW\":\"Keine Tickets gefunden\",\"k2C0ZR\":\"Keine bevorstehenden Termine\",\"yM5c0q\":\"Keine bevorstehenden Veranstaltungen\",\"qpC74J\":\"Keine Benutzer gefunden\",\"8wgkoi\":\"Keine angesehenen Events in den letzten 14 Tagen\",\"Arzxc1\":\"Keine Wartelisteneinträge\",\"n5vdm2\":\"Für diesen Endpunkt wurden noch keine Webhook-Ereignisse aufgezeichnet. Ereignisse werden hier angezeigt, sobald sie ausgelöst werden.\",\"4GhX3c\":\"Keine Webhooks\",\"4+am6b\":\"Nein, hier bleiben\",\"4JVMUi\":\"nicht bearbeitet\",\"Itw24Q\":\"Nicht eingecheckt\",\"x5+Lcz\":\"Nicht Eingecheckt\",\"8n10sz\":\"Nicht Berechtigt\",\"kLvU3F\":\"Teilnehmer benachrichtigen und Verkauf stoppen\",\"t9QlBd\":\"November\",\"kAREMN\":\"Anzahl der zu erstellenden Termine\",\"6u1B3O\":\"Termin\",\"mmoE62\":\"Termin abgesagt\",\"UYWXdN\":\"Endtermin des Termins\",\"k7dZT5\":\"Endzeit des Termins\",\"Opinaj\":\"Terminbezeichnung\",\"V9flmL\":\"Terminplan\",\"NUTUUs\":\"Terminplan-Seite\",\"AT8UKD\":\"Startdatum des Termins\",\"Um8bvD\":\"Startzeit des Termins\",\"Kh3WO8\":\"Terminübersicht\",\"byXCTu\":\"Termine\",\"KATw3p\":\"Termine (nur zukünftige)\",\"85rTR2\":\"Termine können nach der Erstellung konfiguriert werden\",\"dzQfDY\":\"Oktober\",\"BwJKBw\":\"von\",\"9h7RDh\":\"Anbieten\",\"EfK2O6\":\"Platz anbieten\",\"3sVRey\":\"Tickets anbieten\",\"2O7Ybb\":\"Angebots-Zeitlimit\",\"1jUg5D\":\"Angeboten\",\"l+/HS6\":[\"Angebote verfallen nach \",[\"timeoutHours\"],\" Stunden.\"],\"lQgMLn\":\"Name des Büros oder Veranstaltungsorts\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offline-Zahlung\",\"nO3VbP\":[\"Im Angebot \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — Verbindungsdetails angeben\",\"LuZBbx\":\"Online & vor Ort\",\"IXuOqt\":\"Online & vor Ort — siehe Terminplan\",\"w3DG44\":\"Online-Verbindungsdetails\",\"WjSpu5\":\"Online-Veranstaltung\",\"TP6jss\":\"Verbindungsdetails für Online-Veranstaltung\",\"NdOxqr\":\"Nur Kontoadministratoren können Veranstaltungen löschen oder archivieren. Wenden Sie sich an Ihren Kontoadministrator.\",\"rnoDMF\":\"Nur Kontoadministratoren können Veranstalter löschen oder archivieren. Wenden Sie sich an Ihren Kontoadministrator.\",\"bU7oUm\":\"Nur an Bestellungen mit diesen Status senden\",\"M2w1ni\":\"Nur mit Promo-Code sichtbar\",\"y8Bm7C\":\"Check-in öffnen\",\"RLz7P+\":\"Termin öffnen\",\"cDSdPb\":\"Optionaler Spitzname, der in Auswahllisten angezeigt wird, z. B. \\\"HQ-Konferenzraum\\\"\",\"HXMJxH\":\"Optionaler Text für Haftungsausschlüsse, Kontaktinformationen oder Dankesnachrichten (nur einzeilig)\",\"L565X2\":\"Optionen\",\"8m9emP\":\"oder einen einzelnen Termin hinzufügen\",\"dSeVIm\":\"Bestellung\",\"c/TIyD\":\"Bestellung & Ticket\",\"H5qWhm\":\"Bestellung storniert\",\"b6+Y+n\":\"Bestellung abgeschlossen\",\"x4MLWE\":\"Bestellbestätigung\",\"CsTTH0\":\"Bestellbestätigung erfolgreich erneut gesendet\",\"ppuQR4\":\"Bestellung erstellt\",\"0UZTSq\":\"Bestellwährung\",\"xtQzag\":\"Bestelldetails\",\"HdmwrI\":\"Bestell-E-Mail\",\"bwBlJv\":\"Vorname der Bestellung\",\"vrSW9M\":\"Die Bestellung wurde storniert und erstattet. Der Bestellinhaber wurde benachrichtigt.\",\"rzw+wS\":\"Bestellinhaber\",\"oI/hGR\":\"Bestellnummer\",\"Pc729f\":\"Bestellung wartet auf Offline-Zahlung\",\"F4NXOl\":\"Nachname der Bestellung\",\"RQCXz6\":\"Bestelllimits\",\"SO9AEF\":\"Bestelllimits festgelegt\",\"5RDEEn\":\"Bestellsprache\",\"vu6Arl\":\"Bestellung als bezahlt markiert\",\"sLbJQz\":\"Bestellung nicht gefunden\",\"kvYpYu\":\"Bestellung nicht gefunden\",\"i8VBuv\":\"Bestellnummer\",\"eJ8SvM\":\"Bestellnummer, Kaufdatum, E-Mail des Käufers\",\"FaPYw+\":\"Bestelleigentümer\",\"eB5vce\":\"Bestelleigentümer mit einem bestimmten Produkt\",\"CxLoxM\":\"Bestelleigentümer mit Produkten\",\"DoH3fD\":\"Bestellzahlung ausstehend\",\"UkHo4c\":\"Bestellref.\",\"EZy55F\":\"Bestellung erstattet\",\"6eSHqs\":\"Bestellstatus\",\"oW5877\":\"Bestellsumme\",\"e7eZuA\":\"Bestellung aktualisiert\",\"1SQRYo\":\"Bestellung erfolgreich aktualisiert\",\"KndP6g\":\"Bestell-URL\",\"3NT0Ck\":\"Bestellung wurde storniert\",\"V5khLm\":\"Bestellungen\",\"sd5IMt\":\"Abgeschlossene Bestellungen\",\"5It1cQ\":\"Bestellungen exportiert\",\"tlKX/S\":\"Bestellungen, die mehrere Termine umfassen, werden zur manuellen Überprüfung markiert.\",\"UQ0ACV\":\"Bestellungen Gesamt\",\"B/EBQv\":\"Bestellungen:\",\"qtGTNu\":\"Organische Konten\",\"ucgZ0o\":\"Organisation\",\"P/JHA4\":\"Veranstalter erfolgreich archiviert\",\"S3CZ5M\":\"Veranstalter-Dashboard\",\"GzjTd0\":\"Veranstalter erfolgreich gelöscht\",\"Uu0hZq\":\"Veranstalter-E-Mail\",\"Gy7BA3\":\"E-Mail-Adresse des Veranstalters\",\"SQqJd8\":\"Veranstalter nicht gefunden\",\"HF8Bxa\":\"Veranstalter erfolgreich wiederhergestellt\",\"wpj63n\":\"Veranstaltereinstellungen\",\"o1my93\":\"Aktualisierung des Veranstalterstatus fehlgeschlagen. Bitte versuchen Sie es später erneut.\",\"rLHma1\":\"Veranstalterstatus aktualisiert\",\"LqBITi\":\"Veranstalter-/Standardvorlage wird verwendet\",\"q4zH+l\":\"Veranstalter\",\"/IX/7x\":\"Sonstiges\",\"RsiDDQ\":\"Andere Listen (Ticket Nicht Enthalten)\",\"aDfajK\":\"Outdoor\",\"qMASRF\":\"Ausgehende Nachrichten\",\"iCOVQO\":\"Überschreiben\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Preis überschreiben\",\"cnVIpl\":\"Überschreibung entfernt\",\"6/dCYd\":\"Übersicht\",\"6WdDG7\":\"Seite\",\"8uqsE5\":\"Seite nicht mehr verfügbar\",\"QkLf4H\":\"Seiten-URL\",\"sF+Xp9\":\"Seitenaufrufe\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Bezahlte Konten\",\"5F7SYw\":\"Teilerstattung\",\"fFYotW\":[\"Teilweise erstattet: \",[\"0\"]],\"i8day5\":\"Gebühr an Käufer weitergeben\",\"k4FLBQ\":\"An Käufer weitergeben\",\"Ff0Dor\":\"Vergangenheit\",\"BFjW8X\":\"Überfällig\",\"xTPjSy\":\"Vergangene Veranstaltungen\",\"/l/ckQ\":\"URL einfügen\",\"URAE3q\":\"Pausiert\",\"4fL/V7\":\"Bezahlen\",\"OZK07J\":\"Zahlen zum Freischalten\",\"c2/9VE\":\"Nutzlast\",\"5cxUwd\":\"Zahlungsdatum\",\"ENEPLY\":\"Zahlungsmethode\",\"8Lx2X7\":\"Zahlung erhalten\",\"fx8BTd\":\"Zahlungen nicht verfügbar\",\"C+ylwF\":\"Auszahlungen\",\"UbRKMZ\":\"Ausstehend\",\"UkM20g\":\"Überprüfung ausstehend\",\"dPYu1F\":\"Pro Teilnehmer\",\"mQV/nJ\":\"pro Min.\",\"VlXNyK\":\"Pro Bestellung\",\"hauDFf\":\"Pro Ticket\",\"mnF83a\":\"Prozentuale Gebühr\",\"TNLuRD\":\"Prozentuale Gebühr (%)\",\"MixU2P\":\"Prozentsatz muss zwischen 0 und 100 liegen\",\"MkuVAZ\":\"Prozentsatz des Transaktionsbetrags\",\"/Bh+7r\":\"Leistung\",\"fIp56F\":\"Diese Veranstaltung und alle zugehörigen Daten dauerhaft löschen.\",\"nJeeX7\":\"Diesen Veranstalter und alle seine Veranstaltungen dauerhaft löschen.\",\"wfCTgK\":\"Diesen Termin endgültig entfernen\",\"6kPk3+\":\"Persönliche Daten\",\"zmwvG2\":\"Telefon\",\"SdM+Q1\":\"Standort auswählen\",\"tSR/oe\":\"Enddatum auswählen\",\"e8kzpp\":\"Mindestens einen Tag des Monats auswählen\",\"35C8QZ\":\"Mindestens einen Wochentag auswählen\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Aufgegeben\",\"wBJR8i\":\"Eine Veranstaltung planen?\",\"J3lhKT\":\"Plattformgebühr\",\"RD51+P\":[\"Plattformgebühr von \",[\"0\"],\" wird von Ihrer Auszahlung abgezogen\"],\"br3Y/y\":\"Plattformgebühren\",\"3buiaw\":\"Plattformgebühren-Bericht\",\"kv9dM4\":\"Plattformumsatz\",\"PJ3Ykr\":\"Bitte überprüfen Sie Ihr Ticket auf die aktualisierte Uhrzeit. Ihre Tickets sind weiterhin gültig — es ist keine Aktion erforderlich, es sei denn, die neuen Zeiten passen Ihnen nicht. Antworten Sie auf diese E-Mail, falls Sie Fragen haben.\",\"OtjenF\":\"Bitte geben Sie eine gültige E-Mail-Adresse ein\",\"jEw0Mr\":\"Bitte geben Sie eine gültige URL ein\",\"n8+Ng/\":\"Bitte geben Sie den 5-stelligen Code ein\",\"r+lQXT\":\"Bitte geben Sie Ihre Umsatzsteuer-ID ein\",\"Dvq0wf\":\"Bitte ein Bild angeben.\",\"2cUopP\":\"Bitte starten Sie den Bestellvorgang neu.\",\"GoXxOA\":\"Bitte wählen Sie ein Datum und eine Uhrzeit aus\",\"8KmsFa\":\"Bitte wählen Sie einen Datumsbereich aus\",\"EFq6EG\":\"Bitte ein Bild auswählen.\",\"fuwKpE\":\"Bitte versuchen Sie es erneut.\",\"klWBeI\":\"Bitte warten Sie, bevor Sie einen neuen Code anfordern\",\"hfHhaa\":\"Bitte warten Sie, während wir Ihre Partner für den Export vorbereiten...\",\"o+tJN/\":\"Bitte warten Sie, während wir Ihre Teilnehmer für den Export vorbereiten...\",\"+5Mlle\":\"Bitte warten Sie, während wir Ihre Bestellungen für den Export vorbereiten...\",\"trnWaw\":\"Polnisch\",\"luHAJY\":\"Beliebte Events (Letzte 14 Tage)\",\"p/78dY\":\"Position\",\"TjX7xL\":\"Nach-Checkout-Nachricht\",\"OESu7I\":\"Verhindern Sie Überverkäufe durch gemeinsame Nutzung des Bestands über mehrere Tickettypen.\",\"NgVUL2\":\"Vorschau des Bestellformulars\",\"cs5muu\":\"Vorschau der Veranstaltungsseite\",\"+4yRWM\":\"Preis des Tickets\",\"Jm2AC3\":\"Preisstufe\",\"a5jvSX\":\"Preisstufen\",\"ReihZ7\":\"Druckvorschau\",\"JnuPvH\":\"Ticket drucken\",\"tYF4Zq\":\"Als PDF drucken\",\"LcET2C\":\"Datenschutzerklärung\",\"8z6Y5D\":\"Erstattung verarbeiten\",\"JcejNJ\":\"Bestellung wird verarbeitet\",\"EWCLpZ\":\"Produkt erstellt\",\"XkFYVB\":\"Produkt gelöscht\",\"YMwcbR\":\"Produktverkäufe, Einnahmen und Steueraufschlüsselung\",\"ls0mTC\":\"Produkteinstellungen können für abgesagte Termine nicht bearbeitet werden.\",\"2339ej\":\"Produkteinstellungen erfolgreich gespeichert\",\"ldVIlB\":\"Produkt aktualisiert\",\"CP3D8G\":\"Fortschritt\",\"JoKGiJ\":\"Gutscheincode\",\"k3wH7i\":\"Nutzung von Rabattcodes und Rabattaufschlüsselung\",\"tZqL0q\":\"Promo-Codes\",\"oCHiz3\":\"Promo-Codes\",\"uEhdRh\":\"Nur mit Promo-Code\",\"dLm8V5\":\"Werbe-E-Mails können zur Kontosperrung führen\",\"XoEWtl\":\"Geben Sie mindestens ein Adressfeld für den neuen Standort an.\",\"2W/7Gz\":\"Reiche die folgenden Informationen vor der nächsten Stripe-Prüfung ein, damit Auszahlungen weiter laufen.\",\"aemBRq\":\"Anbieter\",\"EEYbdt\":\"Veröffentlichen\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Gekauft\",\"JunetL\":\"Käufer\",\"phmeUH\":\"Käufer-E-Mail\",\"ywR4ZL\":\"QR-Code-Check-in\",\"oWXNE5\":\"Anz.\",\"biEyJ4\":\"Antworten auf Fragen\",\"k/bJj0\":\"Fragen neu sortiert\",\"b24kPi\":\"Warteschlange\",\"lTPqpM\":\"Tipp\",\"fqDzSu\":\"Rate\",\"mnUGVC\":\"Ratenlimit überschritten. Bitte versuchen Sie es später erneut.\",\"t41hVI\":\"Platz erneut anbieten\",\"TNclgc\":\"Diesen Termin reaktivieren? Er wird für zukünftige Verkäufe wieder geöffnet.\",\"uqoRbb\":\"Echtzeit-Analysen\",\"xzRvs4\":[\"Produktupdates von \",[\"0\"],\" erhalten.\"],\"pLXbi8\":\"Letzte Kontoanmeldungen\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Letzte Teilnehmer\",\"qhfiwV\":\"Letzte Check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Neueste Bestellungen\",\"7hPBBn\":\"Empfänger\",\"jp5bq8\":\"Empfänger\",\"yPrbsy\":\"Empfänger\",\"E1F5Ji\":\"Empfänger sind verfügbar, nachdem die Nachricht gesendet wurde\",\"wuhHPE\":\"Wiederkehrend\",\"asLqwt\":\"Wiederkehrende Veranstaltung\",\"D0tAMe\":\"Wiederkehrende Veranstaltungen\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Weiterleitung zu Stripe...\",\"pnoTN5\":\"Empfehlungskonten\",\"ACKu03\":\"Vorschau aktualisieren\",\"vuFYA6\":\"Alle Bestellungen für diese Termine erstatten\",\"4cRUK3\":\"Alle Bestellungen für diesen Termin erstatten\",\"fKn/k6\":\"Erstattungsbetrag\",\"qY4rpA\":\"Erstattung fehlgeschlagen\",\"TspTcZ\":\"Erstattung ausgestellt\",\"FaK/8G\":[\"Bestellung \",[\"0\"],\" erstatten\"],\"MGbi9P\":\"Erstattung ausstehend\",\"BDSRuX\":[\"Erstattet: \",[\"0\"]],\"bU4bS1\":\"Rückerstattungen\",\"rYXfOA\":\"Regionale Einstellungen\",\"5tl0Bp\":\"Registrierungsfragen\",\"ZNo5k1\":\"Verbleibend\",\"EMnuA4\":\"Erinnerung geplant\",\"Bjh87R\":\"Bezeichnung von allen Terminen entfernen\",\"KkJtVK\":\"Für neue Verkäufe wieder öffnen\",\"XJwWJp\":\"Dieses Datum für neue Verkäufe wieder öffnen? Zuvor stornierte Tickets werden nicht wiederhergestellt — betroffene Teilnehmer bleiben storniert und bereits erstattete Beträge werden nicht zurückgebucht.\",\"bAwDQs\":\"Wiederholen alle\",\"CQeZT8\":\"Bericht nicht gefunden\",\"JEPMXN\":\"Neuen Link anfordern\",\"TMLAx2\":\"Erforderlich\",\"mdeIOH\":\"Code erneut senden\",\"sQxe68\":\"Bestätigung erneut senden\",\"bxoWpz\":\"Bestätigungs-E-Mail erneut senden\",\"G42SNI\":\"E-Mail erneut senden\",\"TTpXL3\":[\"Erneut senden in \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Ticket erneut senden\",\"Uwsg2F\":\"Reserviert\",\"8wUjGl\":\"Reserviert bis\",\"a5z8mb\":\"Auf Grundpreis zurücksetzen\",\"kCn6wb\":\"Wird zurückgesetzt...\",\"404zLK\":\"Aufgelöster Standort oder Veranstaltungsortname\",\"ZlCDf+\":\"Antwort\",\"bsydMp\":\"Antwortdetails\",\"yKu/3Y\":\"Wiederherstellen\",\"RokrZf\":\"Veranstaltung wiederherstellen\",\"/JyMGh\":\"Veranstalter wiederherstellen\",\"HFvFRb\":\"Stellen Sie diese Veranstaltung wieder her, um sie wieder sichtbar zu machen.\",\"DDIcqy\":\"Stellen Sie diesen Veranstalter wieder her und machen Sie ihn wieder aktiv.\",\"mO8KLE\":\"Ergebnisse\",\"6gRgw8\":\"Wiederholen\",\"1BG8ga\":\"Alle wiederholen\",\"rDC+T6\":\"Job wiederholen\",\"CbnrWb\":\"Zurück zum Event\",\"mdQ0zb\":\"Wiederverwendbare Veranstaltungsorte für Ihre Veranstaltungen. Standorte, die aus der Autovervollständigung erstellt werden, werden hier automatisch gespeichert.\",\"XFOPle\":\"Wiederverwenden\",\"1Zehp4\":\"Verwende eine Stripe-Verbindung von einem anderen Veranstalter in diesem Konto.\",\"Oo/PLb\":\"Umsatzübersicht\",\"O/8Ceg\":\"Umsatz heute\",\"CfuueU\":\"Angebot widerrufen\",\"RIgKv+\":\"Bis zu einem bestimmten Datum laufen\",\"JYRqp5\":\"Sa\",\"dFFW9L\":[\"Verkauf endete \",[\"0\"]],\"loCKGB\":[\"Verkauf endet \",[\"0\"]],\"wlfBad\":\"Verkaufszeitraum\",\"qi81Jg\":\"Verkaufszeiträume gelten für alle Termine in Ihrem Terminplan. Um Preise und Verfügbarkeit für einzelne Termine zu steuern, verwenden Sie die Überschreibungen auf der <0>Terminplan-Seite.\",\"5CDM6r\":\"Verkaufszeitraum festgelegt\",\"ftzaMf\":\"Verkaufszeitraum, Bestelllimits, Sichtbarkeit\",\"zpekWp\":[\"Verkauf beginnt \",[\"0\"]],\"mUv9U4\":\"Verkauf\",\"9KnRdL\":\"Verkauf pausiert\",\"JC3J0k\":\"Aufschlüsselung von Verkäufen, Anwesenheit und Check-ins pro Termin\",\"3VnlS9\":\"Verkäufe, Bestellungen und Leistungskennzahlen für alle Veranstaltungen\",\"3Q1AWe\":\"Verkäufe:\",\"LeuERW\":\"Wie Veranstaltung\",\"B4nE3N\":\"Beispiel-Ticketpreis\",\"8BRPoH\":\"Beispielort\",\"PiK6Ld\":\"Sa\",\"+5kO8P\":\"Samstag\",\"zJiuDn\":\"Gebührenüberschreibung speichern\",\"NB8Uxt\":\"Terminplan speichern\",\"KZrfYJ\":\"Social-Media-Links speichern\",\"9Y3hAT\":\"Vorlage speichern\",\"C8ne4X\":\"Ticketdesign speichern\",\"cTI8IK\":\"Umsatzsteuereinstellungen speichern\",\"6/TNCd\":\"Umsatzsteuereinstellungen speichern\",\"4RvD9q\":\"Gespeicherter Standort\",\"cgw0cL\":\"Gespeicherte Standorte\",\"lvSrsT\":\"Gespeicherte Standorte\",\"Fbqm/I\":\"Das Speichern einer Überschreibung erstellt eine eigene Konfiguration für diesen Veranstalter, wenn er aktuell auf der Systemstandard-Einstellung ist.\",\"I+FvbD\":\"Scannen\",\"0zd6Nm\":\"Ticket scannen, um einen Teilnehmer einzuchecken\",\"bQG7Qk\":\"Gescannte Tickets erscheinen hier\",\"WDYSLJ\":\"Scanner-Modus\",\"gmB6oO\":\"Terminplan\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Terminplan erfolgreich erstellt\",\"YP7frt\":\"Terminplan endet am\",\"QS1Nla\":\"Für später planen\",\"NAzVVw\":\"Nachricht planen\",\"Fz09JP\":\"Zeitplan beginnt am\",\"4ba0NE\":\"Geplant\",\"qcP/8K\":\"Geplante Zeit\",\"A1taO8\":\"Suchen\",\"ftNXma\":\"Partner suchen...\",\"VMU+zM\":\"Teilnehmer suchen\",\"VY+Bdn\":\"Nach Kontoname oder E-Mail suchen...\",\"VX+B3I\":\"Suche nach Veranstaltungstitel oder Veranstalter...\",\"R0wEyA\":\"Nach Jobname oder Ausnahme suchen...\",\"VT+urE\":\"Nach Name oder E-Mail suchen...\",\"GHdjuo\":\"Nach Name, E-Mail oder Konto suchen...\",\"4mBFO7\":\"Nach Name, Bestell-Nr., Ticket-Nr. oder E-Mail suchen\",\"20ce0U\":\"Nach Bestellnummer, Kundenname oder E-Mail suchen...\",\"4DSz7Z\":\"Nach Betreff, Veranstaltung oder Konto suchen...\",\"nQC7Z9\":\"Termine suchen...\",\"iRtEpV\":\"Termine suchen…\",\"JRM7ao\":\"Adresse suchen\",\"BWF1kC\":\"Nachrichten suchen...\",\"3aD3GF\":\"Saisonal\",\"ku//5b\":\"Zweiter\",\"Mck5ht\":\"Sichere Kasse\",\"s7tXqF\":\"Terminplan ansehen\",\"JFap6u\":\"Anzeigen, was Stripe noch benötigt\",\"p7xUrt\":\"Kategorie auswählen\",\"hTKQwS\":\"Datum & Uhrzeit auswählen\",\"e4L7bF\":\"Wählen Sie eine Nachricht aus, um ihren Inhalt anzuzeigen\",\"zPRPMf\":\"Stufe auswählen\",\"uqpVri\":\"Uhrzeit auswählen\",\"BFRSTT\":\"Konto auswählen\",\"wgNoIs\":\"Alle auswählen\",\"mCB6Je\":\"Alle auswählen\",\"aCEysm\":[\"Alle am \",[\"0\"],\" auswählen\"],\"a6+167\":\"Veranstaltung auswählen\",\"CFbaPk\":\"Teilnehmergruppe auswählen\",\"88a49s\":\"Kamera wählen\",\"tVW/yo\":\"Währung auswählen\",\"SJQM1I\":\"Termin auswählen\",\"n9ZhRa\":\"Enddatum und -zeit auswählen\",\"gTN6Ws\":\"Endzeit auswählen\",\"0U6E9W\":\"Veranstaltungskategorie auswählen\",\"j9cPeF\":\"Ereignistypen auswählen\",\"ypTjHL\":\"Termin auswählen\",\"KizCK7\":\"Startdatum und -zeit auswählen\",\"dJZTv2\":\"Startzeit auswählen\",\"x8XMsJ\":\"Wählen Sie die Messaging-Stufe für dieses Konto. Dies steuert Nachrichtenlimits und Link-Berechtigungen.\",\"aT3jZX\":\"Zeitzone auswählen\",\"TxfvH2\":\"Wählen Sie aus, welche Teilnehmer diese Nachricht erhalten sollen\",\"Ropvj0\":\"Wählen Sie aus, welche Ereignisse diesen Webhook auslösen\",\"+6YAwo\":\"ausgewählt\",\"ylXj1N\":\"Ausgewählt\",\"uq3CXQ\":\"Verkaufen Sie Ihre Veranstaltung aus.\",\"j9b/iy\":\"Schnell verkauft 🔥\",\"73qYgo\":\"Als Test senden\",\"HMAqFK\":\"E-Mails an Teilnehmer, Ticketinhaber oder Bestellinhaber senden. Nachrichten können sofort gesendet oder für später geplant werden.\",\"22Itl6\":\"Senden Sie mir eine Kopie\",\"NpEm3p\":\"Jetzt senden\",\"nOBvex\":\"Senden Sie Echtzeit-Bestell- und Teilnehmerdaten an Ihre externen Systeme.\",\"1lNPhX\":\"Erstattungsbenachrichtigungs-E-Mail senden\",\"eaUTwS\":\"Link zum Zurücksetzen senden\",\"5cV4PY\":\"An alle Termine senden oder einen bestimmten auswählen\",\"QEQlnV\":\"Senden Sie Ihre erste Nachricht\",\"3nMAVT\":\"Versand in 2T 4Std\",\"IoAuJG\":\"Wird gesendet...\",\"h69WC6\":\"Gesendet\",\"BVu2Hz\":\"Gesendet von\",\"ZFa8wv\":\"Wird an Teilnehmer gesendet, wenn ein geplanter Termin abgesagt wird\",\"SPdzrs\":\"An Kunden gesendet, wenn sie eine Bestellung aufgeben\",\"LxSN5F\":\"An jeden Teilnehmer mit seinen Ticketdetails gesendet\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session abgesagt\",\"89xaFU\":\"Legen Sie die Standard-Plattformgebühreneinstellungen für neue Veranstaltungen dieses Veranstalters fest.\",\"eXssj5\":\"Legen Sie Standardeinstellungen für neue Veranstaltungen fest, die unter diesem Veranstalter erstellt werden.\",\"uPe5p8\":\"Legen Sie fest, wie lange jeder Termin dauert\",\"xNsRxU\":\"Anzahl Termine festlegen\",\"ODuUEi\":\"Terminbezeichnung setzen oder entfernen\",\"buHACR\":\"Legen Sie die Endzeit jedes Termins so fest, dass sie diese Dauer nach der Startzeit liegt.\",\"TaeFgl\":\"Auf unbegrenzt setzen (Limit entfernen)\",\"pd6SSe\":\"Richten Sie einen wiederkehrenden Terminplan ein, um Termine automatisch zu erstellen, oder fügen Sie sie einzeln hinzu.\",\"s0FkEx\":\"Richten Sie Check-in-Listen für verschiedene Eingänge, Sitzungen oder Tage ein.\",\"TaWVGe\":\"Auszahlungen einrichten\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Terminplan einrichten\",\"xMO+Ao\":\"Richten Sie Ihre Organisation ein\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Richten Sie Ihren Terminplan ein\",\"ETC76A\":\"Standort oder Online-Details des Termins festlegen, ändern oder entfernen\",\"C3htzi\":\"Einstellung aktualisiert\",\"Ohn74G\":\"Einrichtung & Design\",\"1W5XyZ\":\"Die Einrichtung dauert nur wenige Minuten — du brauchst kein bestehendes Stripe-Konto. Stripe übernimmt Karten, Wallets, regionale Zahlungsmethoden und Betrugsschutz, damit du dich auf deine Veranstaltung konzentrieren kannst.\",\"GG7qDw\":\"Partnerlink teilen\",\"hL7sDJ\":\"Veranstalterseite teilen\",\"jy6QDF\":\"Gemeinsame Kapazitätsverwaltung\",\"jDNHW4\":\"Zeiten verschieben\",\"tPfIaW\":[\"Zeiten für \",[\"count\"],\" Termin(e) verschoben\"],\"WwlM8F\":\"Erweiterte Optionen anzeigen\",\"cMW+gm\":[\"Alle Plattformen anzeigen (\",[\"0\"],\" weitere mit Werten)\"],\"wXi9pZ\":\"Teilnehmernotizen für nicht angemeldetes Personal anzeigen\",\"UVPI5D\":\"Weniger Plattformen anzeigen\",\"Eu/N/d\":\"Marketing-Opt-in-Kontrollkästchen anzeigen\",\"SXzpzO\":\"Marketing-Opt-in-Kontrollkästchen standardmäßig anzeigen\",\"57tTk5\":\"Mehr Termine anzeigen\",\"b33PL9\":\"Mehr Plattformen anzeigen\",\"Eut7p9\":\"Bestelldetails für nicht angemeldetes Personal anzeigen\",\"+RoWKN\":\"Antworten für nicht angemeldetes Personal anzeigen\",\"t1LIQW\":[\"Zeige \",[\"0\"],\" von \",[\"totalRows\"],\" Einträgen\"],\"E717U9\":[[\"0\"],\"–\",[\"1\"],\" von \",[\"2\"],\" werden angezeigt\"],\"5rzhBQ\":[[\"MAX_VISIBLE\"],\" von \",[\"totalAvailable\"],\" Terminen werden angezeigt. Tippen Sie zum Suchen.\"],\"WSt3op\":[\"Die ersten \",[\"0\"],\" werden angezeigt — die verbleibenden \",[\"1\"],\" Session(s) werden beim Senden der Nachricht ebenfalls berücksichtigt.\"],\"OJLTEL\":\"Wird dem Personal beim ersten Öffnen der Check-in-Seite angezeigt.\",\"jVRHeq\":\"Angemeldet\",\"5C7J+P\":\"Einzelveranstaltung\",\"E//btK\":\"Manuell bearbeitete Termine überspringen\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Soziales\",\"d0rUsW\":\"Social-Media-Links\",\"j/TOB3\":\"Social-Media-Links & Website\",\"s9KGXU\":\"Verkauft\",\"iACSrw\":\"Einige Details sind für öffentlichen Zugriff ausgeblendet. Melden Sie sich an, um alles zu sehen.\",\"KTxc6k\":\"Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support, falls das Problem weiterhin besteht.\",\"lkE00/\":\"Etwas ist schiefgelaufen. Bitte versuchen Sie es später erneut.\",\"wdxz7K\":\"Quelle\",\"fDG2by\":\"Spiritualität\",\"oPaRES\":\"Teilen Sie Check-ins nach Tagen, Bereichen oder Tickettypen auf. Link mit dem Personal teilen — kein Konto nötig.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Personalanweisungen\",\"tXkhj/\":\"Start\",\"JcQp9p\":\"Startdatum & -zeit\",\"0m/ekX\":\"Startdatum & -zeit\",\"izRfYP\":\"Startdatum ist erforderlich\",\"tuO4fV\":\"Startdatum des Termins\",\"2R1+Rv\":\"Startzeit der Veranstaltung\",\"2Olov3\":\"Startzeit des Termins\",\"n9ZrDo\":\"Beginnen Sie, einen Veranstaltungsort oder eine Adresse einzugeben...\",\"qeFVhN\":[\"Beginnt in \",[\"diffDays\"],\" Tagen\"],\"AOqtxN\":[\"Beginnt in \",[\"diffMinutes\"],\" Min.\"],\"Otg8Oh\":[\"Beginnt in \",[\"h\"],\"Std \",[\"m\"],\"Min\"],\"Lo49in\":[\"Beginnt in \",[\"seconds\"],\"s\"],\"NqChgF\":\"Beginnt morgen\",\"2NbyY/\":\"Statistiken\",\"GVUxAX\":\"Statistiken basieren auf dem Erstellungsdatum des Kontos\",\"29Hx9U\":\"Statistik\",\"5ia+r6\":\"Noch erforderlich\",\"wuV0bK\":\"Identitätswechsel beenden\",\"s/KaDb\":\"Stripe verbunden\",\"Bk06QI\":\"Stripe verbunden\",\"akZMv8\":[\"Stripe-Verbindung von \",[\"0\"],\" kopiert.\"],\"v0aRY1\":\"Stripe hat keinen Einrichtungs-Link zurückgegeben. Bitte versuche es erneut.\",\"aKtF0O\":\"Stripe nicht verbunden\",\"9i0++A\":\"Stripe Zahlungs-ID\",\"R1lIMV\":\"Stripe wird bald weitere Angaben benötigen\",\"FzcCHA\":\"Stripe führt dich durch ein paar kurze Fragen, um die Einrichtung abzuschließen.\",\"eYbd7b\":\"So\",\"ii0qn/\":\"Betreff ist erforderlich\",\"M7Uapz\":\"Betreff wird hier angezeigt\",\"6aXq+t\":\"Betreff:\",\"JwTmB6\":\"Produkt erfolgreich dupliziert\",\"WUOCgI\":\"Platz erfolgreich angeboten\",\"IvxA4G\":[\"Tickets erfolgreich an \",[\"count\"],\" Personen angeboten\"],\"kKpkzy\":\"Tickets erfolgreich an 1 Person angeboten\",\"Zi3Sbw\":\"Erfolgreich von der Warteliste entfernt\",\"RuaKfn\":\"Adresse erfolgreich aktualisiert\",\"kzx0uD\":\"Veranstaltungsstandards erfolgreich aktualisiert\",\"5n+Wwp\":\"Veranstalter erfolgreich aktualisiert\",\"DMCX/I\":\"Plattformgebühren-Standards erfolgreich aktualisiert\",\"URUYHc\":\"Plattformgebühren-Einstellungen erfolgreich aktualisiert\",\"0Dk/l8\":\"SEO-Einstellungen erfolgreich aktualisiert\",\"S8Tua9\":\"Einstellungen erfolgreich aktualisiert\",\"MhOoLQ\":\"Social-Media-Links erfolgreich aktualisiert\",\"CNSSfp\":\"Tracking-Einstellungen erfolgreich aktualisiert\",\"kj7zYe\":\"Webhook erfolgreich aktualisiert\",\"dXoieq\":\"Zusammenfassung\",\"/RfJXt\":[\"Sommermusikfestival \",[\"0\"]],\"CWOPIK\":\"Sommer Musik Festival 2025\",\"D89zck\":\"So\",\"DBC3t5\":\"Sonntag\",\"UaISq3\":\"Schwedisch\",\"JZTQI0\":\"Veranstalter wechseln\",\"9YHrNC\":\"Systemstandard\",\"lruQkA\":\"Bildschirm berühren, um fortzufahren\",\"TJUrME\":[\"Es werden Teilnehmer aus \",[\"0\"],\" ausgewählten Sessions adressiert.\"],\"yT6dQ8\":\"Erhobene Steuern gruppiert nach Steuerart und Veranstaltung\",\"Ye321X\":\"Steuername\",\"WyCBRt\":\"Steuerübersicht\",\"GkH0Pq\":\"Steuern & Gebühren angewendet\",\"Rwiyt2\":\"Steuern konfiguriert\",\"iQZff7\":\"Steuern, Gebühren, Sichtbarkeit, Verkaufszeitraum, Produkthervorhebung & Bestelllimits\",\"SXvRWU\":\"Team-Zusammenarbeit\",\"vlf/In\":\"Technologie\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Erzählen Sie den Leuten, was sie bei Ihrer Veranstaltung erwartet\",\"NiIUyb\":\"Erzählen Sie uns von Ihrer Veranstaltung\",\"DovcfC\":\"Erzählen Sie uns von Ihrer Organisation. Diese Informationen werden auf Ihren Veranstaltungsseiten angezeigt.\",\"69GWRq\":\"Sagen Sie uns, wie oft sich Ihre Veranstaltung wiederholt, und wir erstellen alle Termine für Sie.\",\"mXPbwY\":\"Teile uns deinen Umsatzsteuer-Registrierungsstatus mit, damit wir die richtige Mehrwertsteuer auf Plattformgebühren anwenden können.\",\"7wtpH5\":\"Vorlage aktiv\",\"QHhZeE\":\"Vorlage erfolgreich erstellt\",\"xrWdPR\":\"Vorlage erfolgreich gelöscht\",\"G04Zjt\":\"Vorlage erfolgreich gespeichert\",\"xowcRf\":\"Nutzungsbedingungen\",\"6K0GjX\":\"Text könnte schwer lesbar sein\",\"u0F1Ey\":\"Do\",\"nm3Iz/\":\"Danke für Ihre Teilnahme!\",\"pYwj0k\":\"Vielen Dank,\",\"k3IitN\":\"Das war's\",\"KfmPRW\":\"Die Hintergrundfarbe der Seite. Bei Verwendung eines Titelbilds wird dies als Overlay angewendet.\",\"MDNyJz\":\"Der Code läuft in 10 Minuten ab. Überprüfen Sie Ihren Spam-Ordner, falls Sie die E-Mail nicht sehen.\",\"AIF7J2\":\"Die Währung, in der die feste Gebühr definiert ist. Sie wird beim Bezahlen in die Bestellwährung umgerechnet.\",\"MJm4Tq\":\"Die Währung der Bestellung\",\"cDHM1d\":\"Die E-Mail-Adresse wurde geändert. Der Teilnehmer erhält ein neues Ticket an der aktualisierten E-Mail-Adresse.\",\"I/NNtI\":\"Der Veranstaltungsort\",\"tXadb0\":\"Die gesuchte Veranstaltung ist derzeit nicht verfügbar. Sie wurde möglicherweise entfernt, ist abgelaufen oder die URL ist falsch.\",\"5fPdZe\":\"Das erste Datum, ab dem dieser Zeitplan generiert wird.\",\"EBzPwC\":\"Die vollständige Veranstaltungsadresse\",\"sxKqBm\":\"Der volle Bestellbetrag wird auf die ursprüngliche Zahlungsmethode des Kunden erstattet.\",\"KgDp6G\":\"Der Link, auf den Sie zugreifen möchten, ist abgelaufen oder nicht mehr gültig. Bitte überprüfen Sie Ihre E-Mail auf einen aktualisierten Link zur Verwaltung Ihrer Bestellung.\",\"5OmEal\":\"Die Sprache des Kunden\",\"Np4eLs\":[\"Das Maximum sind \",[\"MAX_PREVIEW\"],\" Sessions. Bitte reduzieren Sie den Datumsbereich, die Häufigkeit oder die Anzahl der Sessions pro Tag.\"],\"sYLeDq\":\"Der gesuchte Veranstalter konnte nicht gefunden werden. Die Seite wurde möglicherweise verschoben oder gelöscht, oder die URL ist falsch.\",\"PCr4zw\":\"Die Überschreibung wird im Audit-Log der Bestellung aufgezeichnet.\",\"C4nQe5\":\"Die Plattformgebühr wird zum Ticketpreis hinzugefügt. Käufer zahlen mehr, aber Sie erhalten den vollen Ticketpreis.\",\"HxxXZO\":\"Die primäre Markenfarbe, die für Schaltflächen und Hervorhebungen verwendet wird\",\"z0KrIG\":\"Die geplante Zeit ist erforderlich\",\"EWErQh\":\"Die geplante Zeit muss in der Zukunft liegen\",\"UNd0OU\":[\"Die Session für \\\"\",[\"title\"],\"\\\", ursprünglich geplant für \",[\"0\"],\", wurde verschoben.\"],\"DEcpfp\":\"Der Vorlagenkörper enthält ungültige Liquid-Syntax. Bitte korrigieren Sie sie und versuchen Sie es erneut.\",\"injXD7\":\"Die Umsatzsteuer-Identifikationsnummer konnte nicht validiert werden. Bitte überprüfen Sie die Nummer und versuchen Sie es erneut.\",\"A4UmDy\":\"Theater\",\"tDwYhx\":\"Thema & Farben\",\"O7g4eR\":\"Es gibt keine bevorstehenden Termine für diese Veranstaltung\",\"HrIl0p\":[\"Es gibt keine Check-in-Liste, die auf diesen Termin beschränkt ist. Die Liste \\\"\",[\"0\"],\"\\\" checkt Teilnehmer für alle Termine ein — Personal, das ein Ticket für einen anderen Termin scannt, ist trotzdem erfolgreich.\"],\"dt3TwA\":\"Dies sind die Standardpreise und -mengen für alle Termine. Verkaufszeiträume in Preisstufen gelten global. Sie können Preise und Mengen für einzelne Termine auf der <0>Terminplan-Seite überschreiben.\",\"062KsE\":\"Diese Details werden nur auf dem Ticket des Teilnehmers und der Bestellübersicht für diesen Termin angezeigt.\",\"5Eu+tn\":\"Diese Details werden nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wird.\",\"jQjwR+\":\"Diese Angaben ersetzen jeden bestehenden Standort an den betroffenen Terminen und werden auf den Teilnehmer-Tickets angezeigt.\",\"QP3gP+\":\"Diese Einstellungen gelten nur für kopierten Einbettungscode und werden nicht gespeichert.\",\"HirZe8\":\"Diese Vorlagen werden als Standards für alle Veranstaltungen in Ihrer Organisation verwendet. Einzelne Veranstaltungen können diese Vorlagen mit ihren eigenen benutzerdefinierten Versionen überschreiben.\",\"lzAaG5\":\"Diese Vorlagen überschreiben die Veranstalter-Standards nur für diese Veranstaltung. Wenn hier keine benutzerdefinierte Vorlage festgelegt ist, wird stattdessen die Veranstaltervorlage verwendet.\",\"UlykKR\":\"Dritter\",\"wkP5FM\":\"Dies gilt für jeden passenden Termin der Veranstaltung, einschließlich derzeit nicht sichtbarer Termine. Teilnehmer, die für einen dieser Termine angemeldet sind, können nach Abschluss der Aktualisierung über den Nachrichten-Editor erreicht werden.\",\"SOmGDa\":\"Diese Check-in-Liste ist auf eine Session beschränkt, die abgesagt wurde, und kann daher nicht mehr für Check-ins verwendet werden.\",\"XBNC3E\":\"Dieser Code wird zur Verfolgung von Verkäufen verwendet. Nur Buchstaben, Zahlen, Bindestriche und Unterstriche erlaubt.\",\"AaP0M+\":\"Diese Farbkombination könnte für einige Benutzer schwer lesbar sein\",\"o1phK/\":[\"Dieser Termin hat \",[\"orderCount\"],\" Bestellung(en), die betroffen sind.\"],\"F/UtGt\":\"Dieser Termin wurde abgesagt. Sie können ihn dennoch löschen, um ihn endgültig zu entfernen.\",\"BLZ7pX\":\"Dieser Termin liegt in der Vergangenheit. Er wird erstellt, ist aber für Teilnehmer nicht unter den bevorstehenden Terminen sichtbar.\",\"7IIY0z\":\"Dieser Termin ist als ausverkauft markiert.\",\"bddWMP\":\"Dieser Termin ist nicht mehr verfügbar. Bitte wählen Sie einen anderen Termin.\",\"RzEvf5\":\"Diese Veranstaltung ist beendet\",\"YClrdK\":\"Diese Veranstaltung ist noch nicht veröffentlicht\",\"dFJnia\":\"Dies ist der Name Ihres Veranstalters, der Ihren Nutzern angezeigt wird.\",\"vt7jiq\":\"Dies ist das einzige Mal, dass das Signaturgeheimnis angezeigt wird. Bitte kopieren Sie es jetzt und bewahren Sie es sicher auf.\",\"L7dIM7\":\"Dieser Link ist ungültig oder abgelaufen.\",\"MR5ygV\":\"Dieser Link ist nicht mehr gültig\",\"9LEqK0\":\"Dieser Name ist für Endbenutzer sichtbar\",\"QdUMM9\":\"Dieser Termin ist ausgebucht\",\"j5FdeA\":\"Diese Bestellung wird verarbeitet.\",\"sjNPMw\":\"Diese Bestellung wurde abgebrochen. Sie können jederzeit eine neue Bestellung aufgeben.\",\"OhCesD\":\"Diese Bestellung wurde storniert. Sie können jederzeit eine neue Bestellung aufgeben.\",\"lyD7rQ\":\"Dieses Veranstalterprofil ist noch nicht veröffentlicht\",\"9b5956\":\"Diese Vorschau zeigt, wie Ihre E-Mail mit Beispieldaten aussehen wird. Tatsächliche E-Mails verwenden echte Werte.\",\"uM9Alj\":\"Dieses Produkt wird auf der Veranstaltungsseite hervorgehoben\",\"RqSKdX\":\"Dieses Produkt ist ausverkauft\",\"W12OdJ\":\"Dieser Bericht dient nur zu Informationszwecken. Konsultieren Sie immer einen Steuerberater, bevor Sie diese Daten für Buchhaltungs- oder Steuerzwecke verwenden. Bitte gleichen Sie mit Ihrem Stripe-Dashboard ab, da Hi.Events möglicherweise historische Daten fehlen.\",\"0Ew0uk\":\"Dieses Ticket wurde gerade gescannt. Bitte warten Sie, bevor Sie erneut scannen.\",\"FYXq7k\":[\"Dies wirkt sich auf \",[\"loadedAffectedCount\"],\" Termin(e) aus.\"],\"kvpxIU\":\"Dies wird für Benachrichtigungen und die Kommunikation mit Ihren Nutzern verwendet.\",\"rhsath\":\"Dies ist für Kunden nicht sichtbar, hilft Ihnen aber, den Partner zu identifizieren.\",\"hV6FeJ\":\"Durchsatz\",\"+FjWgX\":\"Do\",\"kkDQ8m\":\"Donnerstag\",\"0GSPnc\":\"Ticketdesign\",\"EZC/Cu\":\"Ticketdesign erfolgreich gespeichert\",\"bbslmb\":\"Ticket-Designer\",\"1BPctx\":\"Ticket für\",\"bgqf+K\":\"E-Mail des Ticketinhabers\",\"oR7zL3\":\"Name des Ticketinhabers\",\"HGuXjF\":\"Ticketinhaber\",\"CMUt3Y\":\"Ticketinhaber\",\"awHmAT\":\"Ticket-ID\",\"6czJik\":\"Ticket-Logo\",\"OkRZ4Z\":\"Ticketname\",\"t79rDv\":\"Ticket nicht gefunden\",\"6tmWch\":\"Ticket oder Produkt\",\"1tfWrD\":\"Ticket-Vorschau für\",\"KnjoUA\":\"Ticketpreis\",\"tGCY6d\":\"Ticketpreis\",\"pGZOcL\":\"Ticket erfolgreich erneut gesendet\",\"o02GZM\":\"Der Ticketverkauf für diese Veranstaltung ist beendet\",\"8jLPgH\":\"Tickettyp\",\"X26cQf\":\"Ticket-URL\",\"8qsbZ5\":\"Ticketing & Verkauf\",\"zNECqg\":\"Tickets\",\"6GQNLE\":\"Tickets\",\"NRhrIB\":\"Tickets & Produkte\",\"OrWHoZ\":\"Tickets werden automatisch an Kunden auf der Warteliste angeboten, sobald Kapazitäten frei werden.\",\"EUnesn\":\"Tickets verfügbar\",\"AGRilS\":\"Verkaufte Tickets\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Uhrzeit\",\"dMtLDE\":\"bis\",\"/jQctM\":\"An\",\"tiI71C\":\"Um Ihre Limits zu erhöhen, kontaktieren Sie uns unter\",\"ecUA8p\":\"Heute\",\"W428WC\":\"Spalten umschalten\",\"BRMXj0\":\"Morgen\",\"UBSG1X\":\"Top Veranstalter (Letzte 14 Tage)\",\"3sZ0xx\":\"Gesamtkonten\",\"EaAPbv\":\"Gezahlter Gesamtbetrag\",\"SMDzqJ\":\"Teilnehmer gesamt\",\"orBECM\":\"Insgesamt eingesammelt\",\"k5CU8c\":\"Einträge gesamt\",\"4B7oCp\":\"Gesamtgebühr\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Gesamtbenutzer\",\"oJjplO\":\"Aufrufe Gesamt\",\"rBZ9pz\":\"Touren\",\"orluER\":\"Verfolgen Sie das Kontowachstum und die Leistung nach Attributionsquelle\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Wahr bei Offline-Zahlung\",\"9GsDR2\":\"Wahr bei ausstehender Zahlung\",\"GUA0Jy\":\"Andere Suche oder Filter versuchen\",\"2P/OWN\":\"Versuchen Sie, Ihre Filter anzupassen, um mehr Termine zu sehen.\",\"ouM5IM\":\"Andere E-Mail versuchen\",\"3DZvE7\":\"Hi.Events kostenlos testen\",\"7P/9OY\":\"Di\",\"vq2WxD\":\"Di\",\"G3myU+\":\"Dienstag\",\"Kz91g/\":\"Türkisch\",\"GdOhw6\":\"Ton ausschalten\",\"KUOhTy\":\"Ton einschalten\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Geben Sie \\\"löschen\\\" ein, um zu bestätigen\",\"XxecLm\":\"Art des Tickets\",\"IrVSu+\":\"Produkt konnte nicht dupliziert werden. Bitte überprüfen Sie Ihre Angaben\",\"Vx2J6x\":\"Teilnehmer konnte nicht abgerufen werden\",\"h0dx5e\":\"Warteliste konnte nicht beigetreten werden\",\"DaE0Hg\":\"Teilnehmerdetails können nicht geladen werden.\",\"GlnD5Y\":\"Produkte für diesen Termin konnten nicht geladen werden. Bitte versuchen Sie es erneut.\",\"17VbmV\":\"Check-in kann nicht rückgängig gemacht werden\",\"n57zCW\":\"Nicht zugeordnete Konten\",\"9uI/rE\":\"Rückgängig\",\"b9SN9q\":\"Eindeutige Bestellreferenz\",\"Ef7StM\":\"Unbekannt\",\"ZBAScj\":\"Unbekannter Teilnehmer\",\"MEIAzV\":\"Unbenannt\",\"K6L5Mx\":\"Unbenannter Standort\",\"X13xGn\":\"Nicht vertrauenswürdig\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Partner aktualisieren\",\"59qHrb\":\"Kapazität aktualisieren\",\"Gaem9v\":\"Veranstaltungsname und Beschreibung aktualisieren\",\"7EhE4k\":\"Bezeichnung aktualisieren\",\"NPQWj8\":\"Standort aktualisieren\",\"75+lpR\":[\"Update: \",[\"subjectTitle\"],\" — Terminplanänderungen\"],\"UOGHdA\":[\"Update: \",[\"subjectTitle\"],\" — Sessionzeit geändert\"],\"ogoTrw\":[[\"count\"],\" Termin(e) aktualisiert\"],\"dDuona\":[\"Kapazität für \",[\"count\"],\" Termin(e) aktualisiert\"],\"FT3LSc\":[\"Bezeichnung für \",[\"count\"],\" Termin(e) aktualisiert\"],\"8EcY1g\":[\"Standort für \",[\"count\"],\" Termin(e) aktualisiert\"],\"gJQsLv\":\"Laden Sie ein Titelbild für Ihren Veranstalter hoch\",\"4kEGqW\":\"Laden Sie ein Logo für Ihren Veranstalter hoch\",\"lnCMdg\":\"Bild hochladen\",\"29w7p6\":\"Bild wird hochgeladen...\",\"HtrFfw\":\"URL ist erforderlich\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB-Scanner aktiv\",\"dyTklH\":\"USB-Scanner pausiert\",\"OHJXlK\":\"Verwenden Sie <0>Liquid-Templating, um Ihre E-Mails zu personalisieren\",\"g0WJMu\":\"Liste für alle Termine verwenden\",\"0k4cdb\":\"Verwenden Sie Bestelldetails für alle Teilnehmer. Teilnehmernamen und E-Mails entsprechen den Informationen des Käufers.\",\"MKK5oI\":\"Liste für alle Termine verwenden oder eine Liste für diesen Termin erstellen?\",\"bA31T4\":\"Verwenden Sie die Käuferdaten für alle Teilnehmer\",\"rnoQsz\":\"Verwendet für Rahmen, Hervorhebungen und QR-Code-Styling\",\"BV4L/Q\":\"UTM-Analyse\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Ihre Umsatzsteuer-Identifikationsnummer wird validiert...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"USt-IdNr.\",\"pnVh83\":\"Umsatzsteuer-ID\",\"CabI04\":\"Umsatzsteuer-Identifikationsnummer darf keine Leerzeichen enthalten\",\"PMhxAR\":\"Umsatzsteuer-Identifikationsnummer muss mit einem zweistelligen Ländercode beginnen, gefolgt von 8-15 alphanumerischen Zeichen (z.B. DE123456789)\",\"gPgdNV\":\"Umsatzsteuer-Identifikationsnummer erfolgreich validiert\",\"RUMiLy\":\"Validierung der Umsatzsteuer-Identifikationsnummer fehlgeschlagen\",\"vqji3Y\":\"Validierung der Umsatzsteuer-Identifikationsnummer fehlgeschlagen. Bitte überprüfen Sie Ihre Umsatzsteuer-Identifikationsnummer.\",\"8dENF9\":\"MwSt. auf Gebühr\",\"ZutOKU\":\"MwSt.-Satz\",\"+KJZt3\":\"Umsatzsteuerpflichtig\",\"Nfbg76\":\"Umsatzsteuereinstellungen erfolgreich gespeichert\",\"UvYql/\":\"Umsatzsteuer-Einstellungen gespeichert. Wir validieren Ihre Umsatzsteuer-Identifikationsnummer im Hintergrund.\",\"bXn1Jz\":\"Umsatzsteuereinstellungen aktualisiert\",\"tJylUv\":\"Umsatzsteuerbehandlung für Plattformgebühren\",\"FlGprQ\":\"Umsatzsteuerbehandlung für Plattformgebühren: EU-umsatzsteuerregistrierte Unternehmen können die Umkehrung der Steuerschuldnerschaft nutzen (0% - Artikel 196 der MwSt-Richtlinie 2006/112/EG). Nicht umsatzsteuerregistrierte Unternehmen wird die irische Umsatzsteuer von 23% berechnet.\",\"516oLj\":\"Umsatzsteuer-Validierungsdienst vorübergehend nicht verfügbar\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"USt: nicht registriert\",\"AdWhjZ\":\"Bestätigungscode\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Verifiziert\",\"wCKkSr\":\"E-Mail verifizieren\",\"/IBv6X\":\"Bestätigen Sie Ihre E-Mail-Adresse\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Wird verifiziert...\",\"fROFIL\":\"Vietnamesisch\",\"p5nYkr\":\"Alle anzeigen\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Alle Funktionen anzeigen\",\"RnvnDc\":\"Alle plattformweit gesendeten Nachrichten anzeigen\",\"+WFMis\":\"Berichte für alle Ihre Veranstaltungen anzeigen und herunterladen. Nur abgeschlossene Bestellungen sind enthalten.\",\"c7VN/A\":\"Antworten anzeigen\",\"SZw9tS\":\"Details anzeigen\",\"9+84uW\":[\"Details für \",[\"0\"],\" \",[\"1\"],\" ansehen\"],\"FCVmuU\":\"Veranstaltung ansehen\",\"c6SXHN\":\"Veranstaltungsseite anzeigen\",\"n6EaWL\":\"Protokolle anzeigen\",\"OaKTzt\":\"Karte ansehen\",\"zNZNMs\":\"Nachricht anzeigen\",\"67OJ7t\":\"Bestellung anzeigen\",\"tKKZn0\":\"Bestelldetails anzeigen\",\"KeCXJu\":\"Sehen Sie Bestelldetails ein, erstatten Sie Rückzahlungen und senden Sie Bestätigungen erneut.\",\"9jnAcN\":\"Veranstalter-Startseite anzeigen\",\"1J/AWD\":\"Ticket anzeigen\",\"N9FyyW\":\"Sehen, bearbeiten und exportieren Sie Ihre registrierten Teilnehmer.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Wartend\",\"quR8Qp\":\"Warten auf Zahlung\",\"KrurBH\":\"Warte auf Scan…\",\"u0n+wz\":\"Warteliste\",\"3RXFtE\":\"Warteliste aktiviert\",\"TwnTPy\":\"Wartelistenangebot abgelaufen\",\"NzIvKm\":\"Warteliste ausgelöst\",\"aUi/Dz\":\"Warnung: Dies ist die Systemstandardkonfiguration. Änderungen wirken sich auf alle Konten aus, denen keine spezifische Konfiguration zugewiesen ist.\",\"qeygIa\":\"Mi\",\"aT/44s\":\"Wir konnten diese Stripe-Verbindung nicht kopieren. Bitte versuche es erneut.\",\"RRZDED\":\"Wir konnten keine Bestellungen finden, die mit dieser E-Mail-Adresse verknüpft sind.\",\"2RZK9x\":\"Wir konnten die gesuchte Bestellung nicht finden. Der Link ist möglicherweise abgelaufen oder die Bestelldetails haben sich geändert.\",\"nefMIK\":\"Wir konnten das gesuchte Ticket nicht finden. Der Link ist möglicherweise abgelaufen oder die Ticketdetails haben sich geändert.\",\"miysJh\":\"Wir konnten diese Bestellung nicht finden. Möglicherweise wurde sie entfernt.\",\"ADsQ23\":\"Wir konnten Stripe gerade nicht erreichen. Bitte versuche es gleich erneut.\",\"HJKdzP\":\"Beim Laden dieser Seite ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\",\"jegrvW\":\"Wir arbeiten mit Stripe zusammen, um Auszahlungen direkt auf dein Bankkonto zu senden.\",\"IfN2Qo\":\"Wir empfehlen ein quadratisches Logo mit mindestens 200x200px\",\"wJzo/w\":\"Wir empfehlen Abmessungen von 400 × 400 Pixeln und eine maximale Dateigröße von 5 MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Wir verwenden Cookies, um zu verstehen, wie die Website genutzt wird, und um Ihre Erfahrung zu verbessern.\",\"x8rEDQ\":\"Wir konnten Ihre Umsatzsteuer-Identifikationsnummer nach mehreren Versuchen nicht validieren. Wir versuchen es weiterhin im Hintergrund. Bitte schauen Sie später wieder vorbei.\",\"iy+M+c\":[\"Wir benachrichtigen Sie per E-Mail, wenn ein Platz für \",[\"productDisplayName\"],\" verfügbar wird.\"],\"McuGND\":\"Nach dem Speichern öffnen wir einen Nachrichten-Editor mit einer vorgefertigten Vorlage. Sie prüfen und senden sie — nichts wird automatisch verschickt.\",\"q1BizZ\":\"Wir senden Ihre Tickets an diese E-Mail\",\"ZOmUYW\":\"Wir validieren Ihre Umsatzsteuer-Identifikationsnummer im Hintergrund. Falls es Probleme gibt, werden wir Sie informieren.\",\"LKjHr4\":[\"Wir haben Änderungen am Terminplan für \\\"\",[\"title\"],\"\\\" vorgenommen — \",[\"description\"],\", betrifft \",[\"affectedCount\"],\" Session(s).\"],\"Fq/Nx7\":\"Wir haben einen 5-stelligen Bestätigungscode gesendet an:\",\"GdWB+V\":\"Webhook erfolgreich erstellt\",\"2X4ecw\":\"Webhook erfolgreich gelöscht\",\"ndBv0v\":\"Webhook-Integrationen\",\"CThMKa\":\"Webhook-Protokolle\",\"I0adYQ\":\"Webhook-Signaturgeheimnis\",\"nuh/Wq\":\"Webhook-URL\",\"8BMPMe\":\"Webhook sendet keine Benachrichtigungen\",\"FSaY52\":\"Webhook sendet Benachrichtigungen\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Mi\",\"VAcXNz\":\"Mittwoch\",\"64X6l4\":\"Woche\",\"4XSc4l\":\"Wöchentlich\",\"IAUiSh\":\"Wochen\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Willkommen zurück\",\"QDWsl9\":[\"Willkommen bei \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Willkommen bei \",[\"0\"],\", hier ist eine Übersicht all Ihrer Veranstaltungen\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"Um wie viel Uhr?\",\"FaSXqR\":\"Welche Art von Veranstaltung?\",\"0WyYF4\":\"Was nicht angemeldetes Personal sieht\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Wenn ein Check-in gelöscht wird\",\"RPe6bE\":\"Wenn ein Termin einer wiederkehrenden Veranstaltung abgesagt wird\",\"Gmd0hv\":\"Wenn ein neuer Teilnehmer erstellt wird\",\"zyIyPe\":\"Wenn eine neue Veranstaltung erstellt wird\",\"Lc18qn\":\"Wenn eine neue Bestellung erstellt wird\",\"dfkQIO\":\"Wenn ein neues Produkt erstellt wird\",\"8OhzyY\":\"Wenn ein Produkt gelöscht wird\",\"tRXdQ9\":\"Wenn ein Produkt aktualisiert wird\",\"9L9/28\":\"Wenn ein Produkt ausverkauft ist, können Kunden einer Warteliste beitreten, um benachrichtigt zu werden, sobald Plätze verfügbar werden.\",\"Q7CWxp\":\"Wenn ein Teilnehmer storniert wird\",\"IuUoyV\":\"Wenn ein Teilnehmer eingecheckt wird\",\"nBVOd7\":\"Wenn ein Teilnehmer aktualisiert wird\",\"t7cuMp\":\"Wenn eine Veranstaltung archiviert wird\",\"gtoSzE\":\"Wenn eine Veranstaltung aktualisiert wird\",\"ny2r8d\":\"Wenn eine Bestellung storniert wird\",\"c9RYbv\":\"Wenn eine Bestellung als bezahlt markiert wird\",\"ejMDw1\":\"Wenn eine Bestellung erstattet wird\",\"fVPt0F\":\"Wenn eine Bestellung aktualisiert wird\",\"bcYlvb\":\"Wann Check-In schließt\",\"XIG669\":\"Wann Check-In öffnet\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"Wenn aktiviert, ermöglichen neue Veranstaltungen Teilnehmern, ihre eigenen Ticketdetails über einen sicheren Link zu verwalten. Dies kann pro Veranstaltung überschrieben werden.\",\"blXLKj\":\"Wenn aktiviert, zeigen neue Veranstaltungen beim Checkout ein Marketing-Opt-in-Kontrollkästchen an. Dies kann pro Veranstaltung überschrieben werden.\",\"Kj0Txn\":\"Wenn aktiviert, werden bei Stripe Connect-Transaktionen keine Anwendungsgebühren berechnet. Verwenden Sie dies für Länder, in denen Anwendungsgebühren nicht unterstützt werden.\",\"tMqezN\":\"Ob Erstattungen verarbeitet werden\",\"uchB0M\":\"Widget-Vorschau\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Schreiben Sie Ihre Nachricht hier...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"Jahr\",\"zkWmBh\":\"Jährlich\",\"+BGee5\":\"Jahre\",\"X/azM1\":\"Ja - Ich habe eine gültige EU-Umsatzsteuer-ID\",\"Tz5oXG\":\"Ja, Bestellung stornieren\",\"QlSZU0\":[\"Sie geben sich als <0>\",[\"0\"],\" (\",[\"1\"],\") aus\"],\"s14PLh\":[\"Sie geben eine Teilerstattung aus. Dem Kunden werden \",[\"0\"],\" \",[\"1\"],\" erstattet.\"],\"o7LgX6\":\"Sie können zusätzliche Servicegebühren und Steuern in Ihren Kontoeinstellungen konfigurieren.\",\"rj3A7+\":\"Sie können dies später für einzelne Termine überschreiben.\",\"paWwQ0\":\"Sie können Tickets bei Bedarf weiterhin manuell anbieten.\",\"jTDzpA\":\"Sie können den letzten aktiven Veranstalter Ihres Kontos nicht archivieren.\",\"5VGIlq\":\"Sie haben Ihr Nachrichtenlimit erreicht.\",\"casL1O\":\"Sie haben Steuern und Gebühren zu einem kostenlosen Produkt hinzugefügt. Möchten Sie diese entfernen?\",\"9jJNZY\":\"Sie müssen Ihre Verantwortung bestätigen, bevor Sie speichern können\",\"pCLes8\":\"Sie müssen dem Erhalt von Nachrichten zustimmen\",\"FVTVBy\":\"Sie müssen Ihre E-Mail-Adresse bestätigen, bevor Sie den Veranstalterstatus aktualisieren können.\",\"ze4bi/\":\"Sie müssen mindestens einen Termin erstellen, bevor Sie Teilnehmer zu dieser wiederkehrenden Veranstaltung hinzufügen können.\",\"w65ZgF\":\"Sie müssen Ihre Konto-E-Mail-Adresse verifizieren, bevor Sie E-Mail-Vorlagen ändern können.\",\"FRl8Jv\":\"Sie müssen Ihre Konto-E-Mail-Adresse verifizieren, bevor Sie Nachrichten senden können.\",\"88cUW+\":\"Sie erhalten\",\"O6/3cu\":\"Im nächsten Schritt können Sie Termine, Zeitpläne und Wiederholungsregeln einrichten.\",\"zKAheG\":\"Sie ändern Sessionzeiten\",\"MNFIxz\":[\"Sie gehen zu \",[\"0\"],\"!\"],\"qGZz0m\":\"Sie stehen auf der Warteliste!\",\"/5HL6k\":\"Ihnen wurde ein Platz angeboten!\",\"gbjFFH\":\"Sie haben die Sessionzeit geändert\",\"p/Sa0j\":\"Ihr Konto hat Messaging-Limits. Um Ihre Limits zu erhöhen, kontaktieren Sie uns unter\",\"x/xjzn\":\"Ihre Partner wurden erfolgreich exportiert.\",\"TF37u6\":\"Deine Teilnehmer wurden erfolgreich exportiert.\",\"79lXGw\":\"Ihre Check-In-Liste wurde erfolgreich erstellt. Teilen Sie den unten stehenden Link mit Ihrem Check-In-Personal.\",\"BnlG9U\":\"Ihre aktuelle Bestellung geht verloren.\",\"nBqgQb\":\"Ihre E-Mail\",\"GG1fRP\":\"Ihre Veranstaltung ist live!\",\"ifRqmm\":\"Ihre Nachricht wurde erfolgreich gesendet!\",\"0/+Nn9\":\"Ihre Nachrichten werden hier angezeigt\",\"/Rj5P4\":\"Ihr Name\",\"PFjJxY\":\"Ihr neues Passwort muss mindestens 8 Zeichen lang sein.\",\"gzrCuN\":\"Ihre Bestelldetails wurden aktualisiert. Eine Bestätigungs-E-Mail wurde an die neue E-Mail-Adresse gesendet.\",\"naQW82\":\"Ihre Bestellung wurde storniert.\",\"bhlHm/\":\"Ihre Bestellung wartet auf Zahlung\",\"XeNum6\":\"Deine Bestellungen wurden erfolgreich exportiert.\",\"Xd1R1a\":\"Adresse Ihres Veranstalters\",\"WWYHKD\":\"Ihre Zahlung ist mit Verschlüsselung auf Bankniveau geschützt\",\"5b3QLi\":\"Ihr Tarif\",\"N4Zkqc\":\"Ihr gespeicherter Terminfilter ist nicht mehr verfügbar — alle Termine werden angezeigt.\",\"FNO5uZ\":\"Ihr Ticket ist weiterhin gültig — es ist keine Aktion erforderlich, es sei denn, die neue Uhrzeit passt Ihnen nicht. Bitte antworten Sie auf diese E-Mail, falls Sie Fragen haben.\",\"CnZ3Ou\":\"Ihre Tickets wurden bestätigt.\",\"EmFsMZ\":\"Ihre Umsatzsteuer-Identifikationsnummer ist zur Validierung in der Warteschlange\",\"QBlhh4\":\"Ihre Umsatzsteuer-Identifikationsnummer wird beim Speichern validiert\",\"fT9VLt\":\"Ihr Wartelistenangebot ist abgelaufen und wir konnten Ihre Bestellung nicht abschließen. Bitte treten Sie der Warteliste erneut bei, um benachrichtigt zu werden, sobald weitere Plätze verfügbar werden.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/de.po b/frontend/src/locales/de.po index 01f41744a0..c8aadb763e 100644 --- a/frontend/src/locales/de.po +++ b/frontend/src/locales/de.po @@ -60,7 +60,7 @@ msgstr "{0} <0>erfolgreich ausgecheckt" msgid "{0} Active Webhooks" msgstr "{0} aktive Webhooks" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} verfügbar" @@ -78,7 +78,7 @@ msgstr "{0} übrig" msgid "{0} logo" msgstr "{0} Logo" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{0} von {1} Plätzen sind belegt." @@ -90,7 +90,7 @@ msgstr "{0} Veranstalter" msgid "{0} spots left" msgstr "Noch {0} Plätze frei" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} Tickets" @@ -114,7 +114,7 @@ msgstr "{appName}-Logo" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} Teilnehmer sind für diese Session angemeldet." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} von {totalCount} verfügbar" @@ -122,7 +122,7 @@ msgstr "{availableCount} von {totalCount} verfügbar" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} eingecheckt" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} Ereignisse" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} Stunden, {minutes} Minuten und {seconds} Sekunden" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "{loadedAffectedAttendees} Teilnehmer sind für die betroffenen Sessions angemeldet." @@ -163,11 +163,11 @@ msgstr "{minutes} Minuten und {seconds} Sekunden" msgid "{organizerName}'s first event" msgstr "Erste Veranstaltung von {organizerName}" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} Ticketarten" @@ -230,7 +230,7 @@ msgstr "0 Minuten und 0 Sekunden" msgid "1 Active Webhook" msgstr "1 aktiver Webhook" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "1 Teilnehmer ist für die betroffenen Sessions angemeldet." @@ -238,35 +238,35 @@ msgstr "1 Teilnehmer ist für die betroffenen Sessions angemeldet." msgid "1 attendee is registered for this session." msgstr "1 Teilnehmer ist für diese Session angemeldet." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 Tag nach dem Enddatum" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 Tag nach dem Startdatum" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 Tag vor der Veranstaltung" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 Stunde vor der Veranstaltung" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 Ticket" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 Ticketart" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 Woche vor der Veranstaltung" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "Eine Stornierungsbenachrichtigung wurde gesendet an" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "eine Änderung der Dauer" @@ -321,7 +321,7 @@ msgstr "Eine Dropdown-Eingabe erlaubt nur eine Auswahl" msgid "A fee, like a booking fee or a service fee" msgstr "Eine Gebühr, beispielsweise eine Buchungsgebühr oder eine Servicegebühr" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "Ein Promo-Code ohne Rabatt kann verwendet werden, um versteckte Produkte msgid "A Radio option has multiple options but only one can be selected." msgstr "Eine Radiooption hat mehrere Optionen, aber nur eine kann ausgewählt werden." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "eine Verschiebung der Start-/Endzeiten" @@ -465,7 +465,7 @@ msgstr "Konto erfolgreich aktualisiert" msgid "Accounts" msgstr "Konten" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Handlung erforderlich: Umsatzsteuerinformationen benötigt" @@ -493,10 +493,10 @@ msgstr "Aktivierungsdatum" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Aktive Zahlungsmethoden" msgid "Activity" msgstr "Aktivität" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Termin hinzufügen" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "Fügen Sie Notizen zur Bestellung hinzu..." msgid "Add at least one time" msgstr "Mindestens eine Uhrzeit hinzufügen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Verbindungsdetails für die Online-Veranstaltung hinzufügen." @@ -572,15 +576,19 @@ msgstr "Termin hinzufügen" msgid "Add Dates" msgstr "Termine hinzufügen" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Beschreibung hinzufügen" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "Frage hinzufügen" msgid "Add Tax or Fee" msgstr "Steuern oder Gebühren hinzufügen" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Teilnehmer trotzdem hinzufügen (Kapazität überschreiben)" @@ -634,8 +642,8 @@ msgstr "Teilnehmer trotzdem hinzufügen (Kapazität überschreiben)" msgid "Add this event to your calendar" msgstr "Fügen Sie dieses Event zu Ihrem Kalender hinzu" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Tickets hinzufügen" @@ -649,7 +657,7 @@ msgstr "Ebene hinzufügen" msgid "Add to Calendar" msgstr "Zum Kalender hinzufügen" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Fügen Sie Tracking-Pixel zu Ihren öffentlichen Veranstaltungsseiten und der Veranstalter-Startseite hinzu. Besuchern wird ein Cookie-Einwilligungsbanner angezeigt, wenn Tracking aktiv ist." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Anschrift Zeile 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Anschrift Zeile 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Adresszeile 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Adresszeile 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Administrator" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Administratorzugriff erforderlich" @@ -725,7 +733,7 @@ msgstr "Administratorzugriff erforderlich" msgid "Admin Dashboard" msgstr "Admin Dashboard" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Administratorbenutzer haben vollständigen Zugriff auf Ereignisse und Kontoeinstellungen." @@ -776,7 +784,7 @@ msgstr "Partner exportiert" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Partner helfen Ihnen, Verkäufe von Partnern und Influencern zu verfolgen. Erstellen Sie Partnercodes und teilen Sie diese, um die Leistung zu überwachen." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "alle" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "Alle archivierten Veranstaltungen" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Alle Teilnehmer" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "Alle Teilnehmer der ausgewählten Sessions" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Alle Teilnehmer dieser Veranstaltung" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Alle Teilnehmer dieses Termins" @@ -838,12 +846,12 @@ msgstr "Alle fehlgeschlagenen Jobs gelöscht" msgid "All jobs queued for retry" msgstr "Alle Jobs zur Wiederholung eingereiht" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Alle passenden Termine" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Alle Termine" @@ -897,7 +905,7 @@ msgstr "Haben Sie bereits ein Konto? <0>{0}" msgid "Already in" msgstr "Bereits da" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Bereits erstattet" @@ -905,11 +913,11 @@ msgstr "Bereits erstattet" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Verwendest du Stripe bereits bei einem anderen Veranstalter? Verbindung wiederverwenden." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Diese Bestellung auch stornieren" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Diese Bestellung auch erstatten" @@ -932,7 +940,7 @@ msgstr "Betrag" msgid "Amount Paid" msgstr "Gezahlter Betrag" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Bezahlter Betrag ({0})" @@ -952,7 +960,7 @@ msgstr "Beim Laden der Seite ist ein Fehler aufgetreten" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Eine optionale Nachricht, die beim hervorgehobenen Produkt angezeigt wird, z.B. \"Verkauft sich schnell 🔥\" oder \"Bester Wert\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Ein unerwarteter Fehler ist aufgetreten." @@ -988,7 +996,7 @@ msgstr "Alle Anfragen von Produktinhabern werden an diese E-Mail-Adresse gesende msgid "Appearance" msgstr "Erscheinungsbild" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "angewandt" @@ -996,7 +1004,7 @@ msgstr "angewandt" msgid "Applies to {0} products" msgstr "Gilt für {0} Produkte" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Gilt für {0} nicht stornierte Termine, die aktuell auf dieser Seite geladen sind." @@ -1008,7 +1016,7 @@ msgstr "Gilt für 1 Produkt" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Gilt für alle, die den Check-in-Link ohne Anmeldung öffnen. Angemeldete Teammitglieder sehen immer alles." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Gilt für jeden nicht stornierten {0}-Termin dieser Veranstaltung — auch für aktuell nicht geladene Termine." @@ -1016,11 +1024,11 @@ msgstr "Gilt für jeden nicht stornierten {0}-Termin dieser Veranstaltung — au msgid "Apply" msgstr "Anwenden" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Änderungen anwenden" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Promo-Code anwenden" @@ -1028,7 +1036,7 @@ msgstr "Promo-Code anwenden" msgid "Apply this {type} to all new products" msgstr "Diesen {type} auf alle neuen Produkte anwenden" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Anwenden auf" @@ -1044,36 +1052,35 @@ msgstr "Nachricht genehmigen" msgid "April" msgstr "April" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Archivieren" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Veranstaltung archivieren" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Veranstaltung archivieren" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Veranstalter archivieren" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Archivieren Sie diese Veranstaltung, um sie vor der Öffentlichkeit zu verbergen. Sie können sie später wiederherstellen." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Archivieren Sie diesen Veranstalter. Dadurch werden auch alle Veranstaltungen dieses Veranstalters archiviert." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Archiviert" @@ -1085,15 +1092,15 @@ msgstr "Archivierte Veranstalter" msgid "Are you sure you want to activate this attendee?" msgstr "Möchten Sie diesen Teilnehmer wirklich aktivieren?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Sind Sie sicher, dass Sie diese Veranstaltung archivieren möchten?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Sind Sie sicher, dass Sie diese Veranstaltung archivieren möchten? Sie wird nicht mehr öffentlich sichtbar sein." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Sind Sie sicher, dass Sie diesen Veranstalter archivieren möchten? Dadurch werden auch alle Veranstaltungen dieses Veranstalters archiviert." @@ -1123,7 +1130,7 @@ msgstr "Sind Sie sicher, dass Sie alle fehlgeschlagenen Jobs löschen möchten?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Sind Sie sicher, dass Sie diesen Partner löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Sind Sie sicher, dass Sie diese Konfiguration löschen möchten? Dies kann sich auf Konten auswirken, die sie verwenden." @@ -1137,11 +1144,11 @@ msgstr "Sind Sie sicher, dass Sie diesen Termin löschen möchten? Diese Aktion msgid "Are you sure you want to delete this promo code?" msgstr "Möchten Sie diesen Aktionscode wirklich löschen?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Sind Sie sicher, dass Sie diese Vorlage löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden und E-Mails werden auf die Standardvorlage zurückgreifen." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Sind Sie sicher, dass Sie diese Vorlage löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden und E-Mails werden auf die Veranstalter- oder Standardvorlage zurückgreifen." @@ -1150,17 +1157,17 @@ msgstr "Sind Sie sicher, dass Sie diese Vorlage löschen möchten? Diese Aktion msgid "Are you sure you want to delete this webhook?" msgstr "Bist du sicher, dass du diesen Webhook löschen möchtest?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Möchten Sie wirklich gehen?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Möchten Sie diese Veranstaltung wirklich als Entwurf speichern? Dadurch wird die Veranstaltung für die Öffentlichkeit unsichtbar." #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Möchten Sie diese Veranstaltung wirklich öffentlich machen? Dadurch wird die Veranstaltung für die Öffentlichkeit sichtbar" @@ -1200,15 +1207,15 @@ msgstr "Sind Sie sicher, dass Sie die Bestellbestätigung erneut an {0} senden m msgid "Are you sure you want to resend the ticket to {0}?" msgstr "Sind Sie sicher, dass Sie das Ticket erneut an {0} senden möchten?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Sind Sie sicher, dass Sie diese Veranstaltung wiederherstellen möchten?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Sind Sie sicher, dass Sie diese Veranstaltung wiederherstellen möchten? Es wird als Entwurf wiederhergestellt." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Sind Sie sicher, dass Sie diesen Veranstalter wiederherstellen möchten?" @@ -1229,7 +1236,7 @@ msgstr "Sind Sie sicher, dass Sie diese Kapazitätszuweisung löschen möchten?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "Möchten Sie diese Eincheckliste wirklich löschen?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "Sind Sie in der EU umsatzsteuerregistriert?" @@ -1237,7 +1244,7 @@ msgstr "Sind Sie in der EU umsatzsteuerregistriert?" msgid "Art" msgstr "Kunst" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "Da Ihr Unternehmen in Irland ansässig ist, wird automatisch die irische Umsatzsteuer von 23% auf alle Plattformgebühren angewendet." @@ -1270,7 +1277,7 @@ msgstr "Zugewiesene Stufe" msgid "At least one event type must be selected" msgstr "Mindestens ein Ereignistyp muss ausgewählt werden" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Versuche" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Anwesenheit und Check-in-Raten für alle Veranstaltungen" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "Teilnehmer" @@ -1287,7 +1293,7 @@ msgstr "Teilnehmer" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Teilnehmer" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Teilnehmerstatus" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Teilnehmer-Ticket" @@ -1364,13 +1370,13 @@ msgstr "Ticket des Teilnehmers nicht in dieser Liste enthalten" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "Teilnehmer" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "Teilnehmer" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Teilnehmer" @@ -1393,16 +1399,16 @@ msgstr "Teilnehmer eingecheckt" msgid "Attendees Exported" msgstr "Teilnehmer exportiert" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Registrierte Teilnehmer" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Registrierte Teilnehmer" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Teilnehmer mit einem bestimmten Ticket" @@ -1454,7 +1460,7 @@ msgstr "Passen Sie die Widget-Höhe automatisch an den Inhalt an. Bei Deaktivier msgid "Available" msgstr "Verfügbar" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Zur Erstattung verfügbar" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "Ausstehend" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "Warten auf Offline-Zahlung" @@ -1482,7 +1488,7 @@ msgstr "Zahlung offen" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "Zahlung ausstehend" @@ -1513,14 +1519,14 @@ msgstr "Zurück zu Konten" msgid "Back to calendar" msgstr "Zurück zum Kalender" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Zurück zum Event" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Zurück zur Veranstaltungsseite" @@ -1548,7 +1554,7 @@ msgstr "Hintergrundfarbe" msgid "Background Type" msgstr "Hintergrundtyp" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "Basierend auf dem globalen Verkaufszeitraum oben, nicht pro Termin" msgid "Basic Information" msgstr "Grundinformationen" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Rechnungsadresse" @@ -1599,11 +1605,11 @@ msgstr "Integrierter Betrugsschutz" msgid "Bulk Edit" msgstr "Massenbearbeitung" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Termine in Massen bearbeiten" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "Massenaktualisierung fehlgeschlagen." @@ -1635,11 +1641,11 @@ msgstr "Käufer zahlt" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Käufer sehen einen klaren Preis. Die Plattformgebühr wird von Ihrer Auszahlung abgezogen." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "Mit dem Hinzufügen von Tracking-Pixeln erkennen Sie an, dass Sie und diese Plattform gemeinsame Verantwortliche für die erhobenen Daten sind. Sie sind dafür verantwortlich, eine Rechtsgrundlage für diese Verarbeitung nach den geltenden Datenschutzgesetzen (DSGVO, CCPA usw.) sicherzustellen." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Durch Fortfahren stimmen Sie den <0>{0} Nutzungsbedingungen zu" @@ -1660,7 +1666,7 @@ msgstr "Mit der Registrierung stimmen Sie unseren <0>Servicebedingungen und msgid "By ticket type" msgstr "Nach Tickettyp" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Anwendungsgebühren umgehen" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "Kein Check-in möglich" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Abbrechen" @@ -1729,7 +1735,7 @@ msgstr "Abbrechen" msgid "Cancel {count} date(s)" msgstr "{count} Termin(e) absagen" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Alle Produkte stornieren und in den Pool zurückgeben" @@ -1743,7 +1749,7 @@ msgstr "Alle Produkte stornieren und in den Pool zurückgeben" msgid "Cancel Date" msgstr "Termin absagen" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "E-Mail-Änderung abbrechen" @@ -1751,7 +1757,7 @@ msgstr "E-Mail-Änderung abbrechen" msgid "Cancel order" msgstr "Bestellung stornieren" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Bestellung stornieren" @@ -1759,7 +1765,7 @@ msgstr "Bestellung stornieren" msgid "Cancel Order {0}" msgstr "Bestellung stornieren {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "Das Stornieren wird alle mit dieser Bestellung verbundenen Teilnehmer stornieren und die Tickets in den verfügbaren Pool zurückgeben." @@ -1781,7 +1787,7 @@ msgstr "Stornierung" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "Abgesagt" msgid "Cancelled {0} date(s)" msgstr "{0} Termin(e) abgesagt" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "Die Standardkonfiguration des Systems kann nicht gelöscht werden" @@ -1825,7 +1831,7 @@ msgstr "Kapazitätsverwaltung" msgid "Capacity must be 0 or greater" msgstr "Kapazität muss 0 oder größer sein" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "Kapazitätsänderungen" @@ -1833,7 +1839,7 @@ msgstr "Kapazitätsänderungen" msgid "Capacity Used" msgstr "Belegte Kapazität" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "Kategorien ermöglichen es Ihnen, Produkte zusammenzufassen. Zum Beispiel könnten Sie eine Kategorie für \"Tickets\" und eine andere für \"Merchandise\" haben." @@ -1854,19 +1860,19 @@ msgstr "Kategorie" msgid "Category Created Successfully" msgstr "Kategorie erfolgreich erstellt" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Ändern" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Dauer ändern" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Kennwort ändern" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Teilnehmerlimit ändern" @@ -1874,7 +1880,7 @@ msgstr "Teilnehmerlimit ändern" msgid "Change waitlist settings" msgstr "Wartelisten-Einstellungen ändern" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "Dauer für {count} Termin(e) geändert" @@ -1891,15 +1897,15 @@ msgstr "Wohltätigkeit" msgid "Check in" msgstr "Einchecken" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Check-in {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Einchecken und Bestellung als bezahlt markieren" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Nur einchecken" @@ -1913,7 +1919,7 @@ msgstr "Auschecken" msgid "Check out this event: {0}" msgstr "Schau dir diese Veranstaltung an: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Schau dir dieses Event an!" @@ -1994,7 +2000,7 @@ msgstr "Check-in-Listen" msgid "Check-In Lists" msgstr "Einchecklisten" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Check-in-Navigation" @@ -2074,11 +2080,11 @@ msgstr "Wählen Sie eine Farbe für Ihren Hintergrund" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Andere Aktion auswählen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Wählen Sie einen gespeicherten Standort zum Anwenden." @@ -2108,12 +2114,12 @@ msgstr "Wählen Sie, wer die Plattformgebühr zahlt. Dies hat keine Auswirkungen #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Stadt" @@ -2122,7 +2128,7 @@ msgstr "Stadt" msgid "Clear" msgstr "Zurücksetzen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Standort zurücksetzen — auf den Veranstaltungsstandard zurückfallen" @@ -2134,7 +2140,7 @@ msgstr "Suche zurücksetzen" msgid "Clear Search Text" msgstr "Suchtext löschen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "Beim Zurücksetzen werden alle terminbezogenen Überschreibungen entfernt. Betroffene Termine fallen auf den Standardstandort der Veranstaltung zurück." @@ -2154,7 +2160,7 @@ msgstr "Klicken, um für neue Verkäufe wieder zu öffnen" msgid "Click to view notes" msgstr "Klicken, um Notizen anzuzeigen" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "schließen" @@ -2162,8 +2168,8 @@ msgstr "schließen" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Schließen" @@ -2259,7 +2265,7 @@ msgstr "Demnächst" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Durch Kommas getrennte Schlüsselwörter, die das Ereignis beschreiben. Diese werden von Suchmaschinen verwendet, um das Ereignis zu kategorisieren und zu indizieren." -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Kommunikationseinstellungen" @@ -2267,11 +2273,11 @@ msgstr "Kommunikationseinstellungen" msgid "complete" msgstr "abgeschlossen" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Bestellung abschließen" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Jetzt bezahlen" @@ -2280,11 +2286,11 @@ msgstr "Jetzt bezahlen" msgid "Complete Stripe setup" msgstr "Stripe-Einrichtung abschließen" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Vervollständigen Sie Ihre Bestellung, um Ihre Tickets zu sichern. Dieses Angebot ist zeitlich begrenzt, warten Sie also nicht zu lange." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Schließen Sie Ihre Zahlung ab, um Ihre Tickets zu sichern." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Vervollständigen Sie Ihr Profil, um dem Team beizutreten." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Vollendet" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Abgeschlossene Bestellungen" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Abgeschlossene Bestellungen" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Verfassen" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Konfiguration zugewiesen" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Konfiguration erfolgreich erstellt" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Konfiguration erfolgreich gelöscht" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "Konfigurationsnamen sind für Endbenutzer sichtbar. Feste Gebühren werden zum aktuellen Wechselkurs in die Bestellwährung umgerechnet." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Konfiguration erfolgreich aktualisiert" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Konfigurationen" @@ -2377,10 +2383,10 @@ msgstr "Konfigurierter Rabatt" msgid "Confirm" msgstr "Bestätigen" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "E-Mail-Adresse bestätigen" @@ -2393,7 +2399,7 @@ msgstr "E-Mail-Änderung bestätigen" msgid "Confirm new password" msgstr "Neues Passwort bestätigen" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Bestätige neues Passwort" @@ -2428,16 +2434,16 @@ msgstr "E-Mail-Adresse wird bestätigt …" msgid "Congratulations! Your event is now visible to the public." msgstr "Herzlichen Glückwunsch! Ihre Veranstaltung ist jetzt öffentlich sichtbar." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Stripe verbinden" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Verbinden Sie Stripe, um die Bearbeitung von E-Mail-Vorlagen zu ermöglichen" @@ -2445,7 +2451,7 @@ msgstr "Verbinden Sie Stripe, um die Bearbeitung von E-Mail-Vorlagen zu ermögli msgid "Connect Stripe to enable messaging" msgstr "Stripe verbinden, um Nachrichten zu aktivieren" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Mit Stripe verbinden" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "Kontakt-E-Mail für Support" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Weitermachen" @@ -2508,7 +2514,7 @@ msgstr "Text für Weiter-Schaltfläche" msgid "Continue Setup" msgstr "Einrichtung fortsetzen" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Weiter zur Kasse" @@ -2520,7 +2526,7 @@ msgstr "Weiter zur Veranstaltungserstellung" msgid "Continue to next step" msgstr "Weiter zum nächsten Schritt" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Weiter zur Zahlung" @@ -2545,7 +2551,7 @@ msgstr "Wer wann reinkommt" msgid "Copied" msgstr "Kopiert" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Von oben kopiert" @@ -2591,7 +2597,7 @@ msgstr "Code kopieren" msgid "Copy customer link" msgstr "Kundenlink kopieren" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Details zum ersten Teilnehmer kopieren" @@ -2609,7 +2615,7 @@ msgstr "Link kopieren" msgid "Copy Link" msgstr "Link kopieren" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Meine Daten kopieren an:" @@ -2630,7 +2636,7 @@ msgstr "URL kopieren" msgid "Could not delete location" msgstr "Standort konnte nicht gelöscht werden" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Massenaktualisierung konnte nicht vorbereitet werden." @@ -2652,13 +2658,17 @@ msgstr "Termin konnte nicht gespeichert werden" msgid "Could not save location" msgstr "Standort konnte nicht gespeichert werden" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "Land" @@ -2671,6 +2681,10 @@ msgstr "Abdeckung" msgid "Cover Image" msgstr "Titelbild" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "Das Titelbild wird oben auf Ihrer Veranstaltungsseite angezeigt" @@ -2743,7 +2757,7 @@ msgstr "einen Organizer erstellen" msgid "Create and configure tickets and merchandise for sale." msgstr "Erstellen und konfigurieren Sie Tickets und Merchandise zum Verkauf." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Teilnehmer erstellen" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Kategorie erstellen" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Kategorie erstellen" @@ -2771,17 +2785,17 @@ msgstr "Kategorie erstellen" msgid "Create Check-In List" msgstr "Eincheckliste erstellen" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Konfiguration erstellen" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Erstellen Sie benutzerdefinierte E-Mail-Vorlagen für diese Veranstaltung, die die Veranstalter-Standards überschreiben" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Benutzerdefinierte Vorlage erstellen" @@ -2793,16 +2807,16 @@ msgstr "Termin erstellen" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Erstellen Sie Rabatte, Zugangscodes für versteckte Tickets und Sonderangebote." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Ereignis erstellen" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Für diesen Termin erstellen" @@ -2849,7 +2863,7 @@ msgstr "Steuer oder Gebühr erstellen" msgid "Create Ticket or Product" msgstr "Ticket oder Produkt erstellen" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "Erstellen Sie Ihre Veranstaltung" msgid "Create your first event" msgstr "Erstellen Sie Ihre erste Veranstaltung" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "CTA-Beschriftung ist erforderlich" msgid "Currency" msgstr "Währung" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Aktuelles Passwort" @@ -2931,7 +2949,7 @@ msgstr "Derzeit zum Kauf verfügbar" msgid "Custom branding" msgstr "Individuelles Branding" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Benutzerdefiniertes Datum und Uhrzeit" @@ -2957,7 +2975,7 @@ msgstr "Benutzerdefinierte Fragen" msgid "Custom Range" msgstr "Benutzerdefinierter Bereich" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Benutzerdefinierte Vorlage" @@ -2970,7 +2988,7 @@ msgstr "Kunde" msgid "Customer link copied to clipboard" msgstr "Kundenlink in die Zwischenablage kopiert" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "Der Kunde erhält eine E-Mail zur Bestätigung der Erstattung" @@ -2990,11 +3008,15 @@ msgstr "Nachname des Kunden" msgid "Customers" msgstr "Kunden" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Passen Sie die E-Mail- und Benachrichtigungseinstellungen für dieses Ereignis an" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Passen Sie die an Ihre Kunden gesendeten E-Mails mit Liquid-Vorlagen an. Diese Vorlagen werden als Standards für alle Veranstaltungen in Ihrer Organisation verwendet." @@ -3027,6 +3049,10 @@ msgstr "Passen Sie den Text auf dem Weiter-Button an" msgid "Customize your email template using Liquid templating" msgstr "Passen Sie Ihre E-Mail-Vorlage mit Liquid-Vorlagen an" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Passen Sie das Erscheinungsbild Ihrer Veranstalterseite an" @@ -3079,7 +3105,7 @@ msgstr "Dunkel" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Dashboard" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Datum & Zeit" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Terminabsage" @@ -3208,12 +3234,12 @@ msgstr "Standardkapazität pro Termin" msgid "Default Fee Handling" msgstr "Standard-Gebührenbehandlung" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Standardvorlage wird verwendet" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "löschen" @@ -3267,8 +3293,8 @@ msgstr "Code löschen" msgid "Delete Date" msgstr "Termin löschen" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Veranstaltung löschen" @@ -3285,8 +3311,8 @@ msgstr "Job löschen" msgid "Delete location" msgstr "Standort löschen" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Veranstalter löschen" @@ -3294,7 +3320,7 @@ msgstr "Veranstalter löschen" msgid "Delete Permanently" msgstr "Endgültig löschen" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Vorlage löschen" @@ -3319,7 +3345,7 @@ msgstr "{0} Termin(e) gelöscht" msgid "Description" msgstr "Beschreibung" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "Rabatt in {0}" msgid "Discount Type" msgstr "Rabattart" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Schließen" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Diese Nachricht schließen" @@ -3441,7 +3467,7 @@ msgstr "CSV herunterladen" msgid "Download invoice" msgstr "Rechnung herunterladen" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Rechnung herunterladen" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Laden Sie Verkaufs-, Teilnehmer- und Finanzberichte für alle abgeschlossenen Bestellungen herunter." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "Rechnung wird heruntergeladen" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Entwurf" @@ -3469,7 +3494,7 @@ msgstr "Entwurf" msgid "Dropdown selection" msgstr "Dropdown-Auswahl" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "Aufgrund des hohen Spam-Risikos müssen Sie ein Stripe-Konto verbinden, bevor Sie E-Mail-Vorlagen ändern können. Dies dient dazu sicherzustellen, dass alle Veranstalter verifiziert und rechenschaftspflichtig sind." @@ -3490,7 +3515,7 @@ msgstr "Duplizieren" msgid "Duplicate Date" msgstr "Termin duplizieren" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Ereignis duplizieren" @@ -3508,7 +3533,7 @@ msgstr "Optionen duplizieren" msgid "Duplicate Product" msgstr "Produkt duplizieren" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "Dauer muss mindestens 1 Minute betragen." @@ -3520,7 +3545,7 @@ msgstr "Niederländisch" msgid "e.g. 180 (3 hours)" msgstr "z.B. 180 (3 Stunden)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "z. B. Morgensession" msgid "e.g., Get Tickets, Register Now" msgstr "z. B. Tickets kaufen, Jetzt registrieren" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "z.B. Wichtiges Update zu Ihren Tickets" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "z.B. Standard, Premium, Enterprise" @@ -3542,7 +3567,7 @@ msgstr "z.B. Standard, Premium, Enterprise" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Jede Person erhält eine E-Mail mit einem reservierten Platz, um den Kauf abzuschließen." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Früher" @@ -3611,7 +3636,7 @@ msgstr "Eincheckliste bearbeiten" msgid "Edit Code" msgstr "Code bearbeiten" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Konfiguration bearbeiten" @@ -3659,8 +3684,8 @@ msgstr "Frage bearbeiten" msgid "Edit user" msgstr "Benutzer bearbeiten" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Benutzer bearbeiten" @@ -3708,7 +3733,7 @@ msgstr "Berechtigte Check-In-Listen" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Berechtigte Check-In-Listen" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "Email" @@ -3743,10 +3768,10 @@ msgstr "E-Mail & Vorlagen" msgid "Email address" msgstr "E-Mail-Adresse" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "E-Mail-Adresse" @@ -3755,8 +3780,8 @@ msgstr "E-Mail-Adresse" msgid "Email address copied to clipboard" msgstr "E-Mail-Adresse in Zwischenablage kopiert" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "E-Mail-Adressen stimmen nicht überein" @@ -3764,21 +3789,21 @@ msgstr "E-Mail-Adressen stimmen nicht überein" msgid "Email Body" msgstr "E-Mail-Inhalt" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "E-Mail-Änderung erfolgreich abgebrochen" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "E-Mail-Änderung ausstehend" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "E-Mail-Bestätigung erneut gesendet" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "E-Mail-Bestätigung erfolgreich erneut gesendet" @@ -3792,7 +3817,7 @@ msgstr "E-Mail-Fußzeilennachricht" msgid "Email is required" msgstr "E-Mail ist erforderlich" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "E-Mail nicht verifiziert" @@ -3800,7 +3825,7 @@ msgstr "E-Mail nicht verifiziert" msgid "Email Preview" msgstr "E-Mail-Vorschau" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "E-Mail-Vorlagen" @@ -3809,6 +3834,10 @@ msgstr "E-Mail-Vorlagen" msgid "Email Verification Required" msgstr "E-Mail-Verifizierung erforderlich" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "E-Mail erfolgreich verifiziert!" @@ -3897,12 +3926,11 @@ msgstr "Endzeit (optional)" msgid "End time of the occurrence" msgstr "Endzeit des Termins" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Beendet" @@ -3920,11 +3948,11 @@ msgstr "Endet {0}" msgid "English" msgstr "Englisch" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Geben Sie einen Kapazitätswert ein oder wählen Sie unbegrenzt." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Geben Sie eine Bezeichnung ein oder wählen Sie, sie zu entfernen." @@ -3932,7 +3960,7 @@ msgstr "Geben Sie eine Bezeichnung ein oder wählen Sie, sie zu entfernen." msgid "Enter a subject and body to see the preview" msgstr "Geben Sie einen Betreff und Inhalt ein, um die Vorschau zu sehen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Geben Sie eine Zeit ein, um zu verschieben." @@ -3949,11 +3977,11 @@ msgstr "Partner-E-Mail eingeben (optional)" msgid "Enter affiliate name" msgstr "Partnername eingeben" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Geben Sie einen Betrag ohne Steuern und Gebühren ein." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Kapazität eingeben" @@ -3998,7 +4026,7 @@ msgstr "Geben Sie Ihre E-Mail-Adresse ein und wir senden Ihnen Anweisungen zum Z msgid "Enter your name" msgstr "Geben Sie Ihren Namen ein" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Geben Sie Ihre Umsatzsteuer-Identifikationsnummer mit Ländercode ohne Leerzeichen ein (z.B. IE1234567A, DE123456789)" @@ -4012,7 +4040,7 @@ msgstr "Einträge erscheinen hier, wenn Kunden sich auf die Warteliste für ausv #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Fehler" @@ -4074,7 +4102,7 @@ msgstr "Ereignis" msgid "Event Archived" msgstr "Veranstaltung archiviert" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Veranstaltung erfolgreich archiviert" @@ -4086,7 +4114,7 @@ msgstr "Veranstaltungskategorie" msgid "Event Cover Image" msgstr "Veranstaltungs-Titelbild" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4094,7 +4122,7 @@ msgstr "" msgid "Event Created" msgstr "Veranstaltung erstellt" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Event-benutzerdefinierte Vorlage" @@ -4113,7 +4141,7 @@ msgstr "Veranstaltungsdatum" msgid "Event Defaults" msgstr "Ereignisstandards" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Veranstaltung erfolgreich gelöscht" @@ -4145,10 +4173,14 @@ msgstr "Ereignis erfolgreich dupliziert" msgid "Event Full Address" msgstr "Vollständige Veranstaltungsadresse" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Veranstaltungsstartseite" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Veranstaltungsort" @@ -4188,7 +4220,7 @@ msgstr "Name des Veranstalters" msgid "Event Page" msgstr "Veranstaltungsseite" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Veranstaltung erfolgreich wiederhergestellt" @@ -4197,17 +4229,17 @@ msgstr "Veranstaltung erfolgreich wiederhergestellt" msgid "Event Settings" msgstr "Veranstaltungseinstellungen" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Die Aktualisierung des Ereignisstatus ist fehlgeschlagen. Bitte versuchen Sie es später erneut" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Veranstaltungsstatus aktualisiert" @@ -4240,7 +4272,7 @@ msgstr "Veranstaltungstitel" msgid "Event Too New" msgstr "Event zu neu" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Veranstaltungsgesamtwerte" @@ -4405,7 +4437,7 @@ msgstr "Fehlgeschlagen am" msgid "Failed Jobs" msgstr "Fehlgeschlagene Jobs" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "Bestellung konnte nicht abgebrochen werden. Bitte versuchen Sie es erneut." @@ -4439,7 +4471,7 @@ msgstr "Stornierung der Bestellung fehlgeschlagen" msgid "Failed to create affiliate" msgstr "Partner konnte nicht erstellt werden" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Konfiguration konnte nicht erstellt werden" @@ -4447,12 +4479,12 @@ msgstr "Konfiguration konnte nicht erstellt werden" msgid "Failed to create schedule" msgstr "Terminplan konnte nicht erstellt werden" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Vorlage konnte nicht erstellt werden" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Konfiguration konnte nicht gelöscht werden" @@ -4470,7 +4502,7 @@ msgstr "Termin konnte nicht gelöscht werden. Möglicherweise gibt es bereits Be msgid "Failed to delete dates" msgstr "Termine konnten nicht gelöscht werden" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Fehler beim Löschen der Veranstaltung" @@ -4482,7 +4514,7 @@ msgstr "Job konnte nicht gelöscht werden" msgid "Failed to delete jobs" msgstr "Jobs konnten nicht gelöscht werden" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Fehler beim Löschen des Veranstalters" @@ -4490,13 +4522,13 @@ msgstr "Fehler beim Löschen des Veranstalters" msgid "Failed to delete question" msgstr "Frage konnte nicht gelöscht werden" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Vorlage konnte nicht gelöscht werden" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Rechnung konnte nicht heruntergeladen werden. Bitte versuchen Sie es erneut." @@ -4594,14 +4626,14 @@ msgstr "Preisüberschreibung konnte nicht gespeichert werden" msgid "Failed to save product settings" msgstr "Produkteinstellungen konnten nicht gespeichert werden" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Vorlage konnte nicht gespeichert werden" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Fehler beim Speichern der Umsatzsteuereinstellungen. Bitte versuchen Sie es erneut." @@ -4639,11 +4671,11 @@ msgstr "Fehler beim Aktualisieren der Antwort." msgid "Failed to update attendee" msgstr "Teilnehmer konnte nicht aktualisiert werden" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Konfiguration konnte nicht aktualisiert werden" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Fehler beim Aktualisieren des Veranstaltungsstatus" @@ -4655,7 +4687,7 @@ msgstr "Aktualisierung der Messaging-Stufe fehlgeschlagen" msgid "Failed to update order" msgstr "Bestellung konnte nicht aktualisiert werden" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Fehler beim Aktualisieren des Veranstalterstatus" @@ -4701,7 +4733,7 @@ msgstr "Februar" msgid "Fee" msgstr "Gebühr" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Gebührungswährung" @@ -4720,7 +4752,7 @@ msgstr "" msgid "Fees" msgstr "Gebühren" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Gebühren umgangen" @@ -4732,8 +4764,8 @@ msgstr "Festival" msgid "File is too large. Maximum size is 5MB." msgstr "Datei ist zu groß. Maximale Größe beträgt 5MB." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Füllen Sie zuerst Ihre Daten oben aus" @@ -4754,7 +4786,7 @@ msgstr "Teilnehmer filtern" msgid "Filter by date" msgstr "Nach Termin filtern" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Nach Veranstaltung filtern" @@ -4775,19 +4807,27 @@ msgstr "Filter ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Stripe-Einrichtung beenden" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "Erster" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "Ersten Teilnehmer" @@ -4798,22 +4838,22 @@ msgstr "Erste Rechnungsnummer" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Vorname" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Vorname" @@ -4843,16 +4883,16 @@ msgstr "Fester Betrag" msgid "Fixed fee" msgstr "Festgebühr" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Feste Gebühr" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Feste Gebühr pro Transaktion" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "Feste Gebühr muss 0 oder größer sein" @@ -4923,7 +4963,11 @@ msgstr "Freitag" msgid "Full data ownership" msgstr "Volle Datenhoheit" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Vollständige Erstattung" @@ -4931,11 +4975,11 @@ msgstr "Vollständige Erstattung" msgid "Full resolved address" msgstr "Vollständige aufgelöste Adresse" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "zukünftige" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Nur zukünftige Termine" @@ -4992,7 +5036,7 @@ msgstr "Erste Schritte" msgid "Get Tickets" msgstr "Tickets erhalten" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Bereiten Sie Ihre Veranstaltung vor" @@ -5013,7 +5057,7 @@ msgstr "Zurück" msgid "Go back to profile" msgstr "Zurück zum Profil" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Zur Eventseite" @@ -5037,7 +5081,7 @@ msgstr "Google Kalender" msgid "Got it" msgstr "Verstanden" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Bruttoeinnahmen" @@ -5045,22 +5089,22 @@ msgstr "Bruttoeinnahmen" msgid "Gross Revenue" msgstr "Bruttoeinnahmen" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Bruttoumsatz" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Bruttoverkäufe" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5077,7 +5121,7 @@ msgstr "Gäste" msgid "Happening now" msgstr "Findet gerade statt" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Haben Sie einen Promo-Code?" @@ -5106,7 +5150,7 @@ msgstr "Hier ist die React-Komponente, die Sie verwenden können, um das Widget msgid "Here is your affiliate link" msgstr "Hier ist Ihr Partnerlink" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Hallo {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Vor der Öffentlichkeit verborgen" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "Versteckte Fragen sind nur für den Veranstalter und nicht für den Kunden sichtbar." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Verstecken" @@ -5239,8 +5283,8 @@ msgstr "Homepage-Vorschau" msgid "Homer" msgstr "Homer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Stunden" @@ -5269,11 +5313,11 @@ msgstr "Wie oft?" msgid "How to pay offline" msgstr "Wie man offline zahlt" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "Wie die Umsatzsteuer auf die von uns berechneten Plattformgebühren angewendet wird." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "HTML-Zeichenlimit überschritten: {htmlLength}/{maxLength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Ungarisch" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Ich erkenne meine Verantwortung als Datenverantwortlicher an" @@ -5305,11 +5349,11 @@ msgstr "Ich stimme dem Erhalt von E-Mail-Benachrichtigungen zu dieser Veranstalt msgid "I agree to the <0>terms and conditions" msgstr "Ich stimme den <0>Allgemeinen Geschäftsbedingungen zu" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Ich bestätige, dass dies eine Transaktionsnachricht im Zusammenhang mit dieser Veranstaltung ist" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Wenn sich kein neues Tab automatisch geöffnet hat, klicke bitte unten auf die Schaltfläche, um mit dem Checkout fortzufahren." @@ -5325,7 +5369,7 @@ msgstr "Wenn aktiviert, kann das Check-in-Personal Teilnehmer entweder als einge msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Wenn aktiviert, erhält der Veranstalter eine E-Mail-Benachrichtigung, wenn eine neue Bestellung aufgegeben wird" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Sollten Sie diese Änderung nicht veranlasst haben, ändern Sie bitte umgehend Ihr Passwort." @@ -5370,11 +5414,11 @@ msgstr "Identitätswechsel gestartet" msgid "Impersonation stopped" msgstr "Identitätswechsel beendet" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Wichtiger Hinweis" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Wichtig: Wenn Sie Ihre E-Mail-Adresse ändern, wird der Link für den Zugriff auf diese Bestellung aktualisiert. Nach dem Speichern werden Sie zum neuen Bestelllink weitergeleitet." @@ -5390,7 +5434,7 @@ msgstr "In {diffMinutes} Minuten" msgid "in last {0} min" msgstr "in den letzten {0} Min." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "Vor Ort — Veranstaltungsort festlegen" @@ -5401,15 +5445,15 @@ msgstr "in_person, online, unset oder mixed" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Inaktiv" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Inaktive Benutzer können sich nicht anmelden." @@ -5483,12 +5527,12 @@ msgstr "Ungültiges E-Mail-Format" msgid "Invalid file type. Please upload an image." msgstr "Ungültiger Dateityp. Bitte laden Sie ein Bild hoch." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Ungültige Liquid-Syntax. Bitte korrigieren Sie sie und versuchen Sie es erneut." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Ungültiges Format der Umsatzsteuer-Identifikationsnummer" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Rechnung" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Rechnung erfolgreich heruntergeladen" @@ -5545,7 +5589,7 @@ msgstr "Rechnungseinstellungen" msgid "Italian" msgstr "Italienisch" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Artikel" @@ -5628,7 +5672,7 @@ msgstr "gerade eben" msgid "Just wrapped" msgstr "Soeben beendet" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Halte mich über Neuigkeiten und Veranstaltungen von {0} auf dem Laufenden" @@ -5647,13 +5691,13 @@ msgstr "Etikett" msgid "Label for the occurrence" msgstr "Bezeichnung für den Termin" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "Bezeichnungsänderungen" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Sprache" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "Letzte 24 Stunden" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "Letzte 30 Tage" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "Letzte 6 Monate" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "Letzte 7 Tage" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "Letzte 90 Tage" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Nachname" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Nachname" @@ -5753,7 +5797,7 @@ msgstr "Zuletzt ausgelöst" msgid "Last Used" msgstr "Zuletzt verwendet" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Später" @@ -5786,7 +5830,7 @@ msgstr "Aktiviert lassen, um alle Tickets der Veranstaltung abzudecken. Deaktivi msgid "Let them know about the change" msgstr "Informieren Sie sie über die Änderung" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Informieren Sie sie über die Änderungen" @@ -5830,12 +5874,11 @@ msgstr "Liste" msgid "List view" msgstr "Listenansicht" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "Live" @@ -5848,7 +5891,7 @@ msgstr "LIVE" msgid "Live Events" msgstr "Live-Veranstaltungen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Geladene Termine" @@ -5872,8 +5915,8 @@ msgstr "Webhooks werden geladen" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Wird geladen..." @@ -5926,7 +5969,7 @@ msgstr "Standort gespeichert" msgid "Location updated" msgstr "Standort aktualisiert" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "Standortänderungen" @@ -5990,7 +6033,7 @@ msgstr "Hauptbüro" msgid "Make billing address mandatory during checkout" msgstr "Rechnungsadresse beim Checkout erforderlich machen" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "Teilnehmer verwalten" msgid "Manage dates and times for your recurring event" msgstr "Verwalten Sie Termine und Uhrzeiten Ihrer wiederkehrenden Veranstaltung" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Veranstaltung verwalten" @@ -6039,10 +6082,14 @@ msgstr "Bestellung verwalten" msgid "Manage payment and invoicing settings for this event." msgstr "Zahlungs- und Rechnungseinstellungen für diese Veranstaltung verwalten." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Profil verwalten" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Terminplan verwalten" @@ -6124,7 +6171,7 @@ msgstr "Medium" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Nachricht" @@ -6141,7 +6188,7 @@ msgstr "Nachricht an Teilnehmer" msgid "Message Attendees" msgstr "Nachrichten an Teilnehmer senden" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Teilnehmer mit bestimmten Tickets benachrichtigen" @@ -6165,7 +6212,7 @@ msgstr "Nachrichteninhalt" msgid "Message Details" msgstr "Nachrichtendetails" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Nachrichten an einzelne Teilnehmer senden" @@ -6173,15 +6220,15 @@ msgstr "Nachrichten an einzelne Teilnehmer senden" msgid "Message is required" msgstr "Nachricht ist erforderlich" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Nachricht an Bestelleigentümer mit bestimmten Produkten senden" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Nachricht geplant" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Nachricht gesendet" @@ -6212,8 +6259,8 @@ msgstr "Minimaler Preis" msgid "minutes" msgstr "Minuten" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Minuten" @@ -6229,7 +6276,7 @@ msgstr "Verschiedene Einstellungen" msgid "Mo" msgstr "Mo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Modus" @@ -6282,7 +6329,7 @@ msgstr "Weitere Aktionen" msgid "Most Viewed Events (Last 14 Days)" msgstr "Meistgesehene Events (Letzte 14 Tage)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Alle Termine nach vorne oder hinten verschieben" @@ -6290,7 +6337,7 @@ msgstr "Alle Termine nach vorne oder hinten verschieben" msgid "Multi line text box" msgstr "Mehrzeiliges Textfeld" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Name" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "Name ist erforderlich" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "Name muss weniger als 255 Zeichen haben" @@ -6384,21 +6431,21 @@ msgstr "Nettoeinnahmen" msgid "Never" msgstr "Niemals" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Neue Kapazität" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Neue Bezeichnung" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Neuer Standort" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "Neues Kennwort" @@ -6426,7 +6473,7 @@ msgstr "Nachtleben" msgid "No" msgstr "Nein" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "Nein - Ich bin eine Privatperson oder ein nicht umsatzsteuerregistriertes Unternehmen" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "Keine Kapazitätszuweisungen" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "Keine Check-In-Listen für diese Veranstaltung verfügbar." msgid "No check-ins yet" msgstr "Noch keine Check-ins" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "Keine Konfigurationen gefunden" @@ -6537,7 +6584,7 @@ msgstr "Keine terminspezifische Check-in-Liste" msgid "No dates available this month. Try navigating to another month." msgstr "Keine Termine in diesem Monat verfügbar. Versuchen Sie, zu einem anderen Monat zu navigieren." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "Keine Termine entsprechen den aktuellen Filtern." @@ -6582,8 +6629,8 @@ msgstr "Keine Veranstaltungen, die in den nächsten 24 Stunden beginnen" msgid "No events to show" msgstr "Keine Ereignisse zum Anzeigen" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "Keine Bestellungen gefunden" msgid "No orders to show" msgstr "Keine Bestellungen anzuzeigen" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "Für diesen Termin liegen noch keine Bestellungen vor." msgid "No organizer activity in the last 14 days" msgstr "Keine Veranstalteraktivität in den letzten 14 Tagen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "Kein Veranstalterkontext verfügbar." @@ -6733,7 +6780,7 @@ msgstr "Noch keine Antworten" msgid "No results" msgstr "Keine Ergebnisse" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Noch keine gespeicherten Standorte" @@ -6793,16 +6840,16 @@ msgstr "Für diesen Endpunkt wurden noch keine Webhook-Ereignisse aufgezeichnet. msgid "No Webhooks" msgstr "Keine Webhooks" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "Nein, hier bleiben" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "nicht bearbeitet" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Keine" @@ -6870,7 +6917,7 @@ msgstr "Nummernpräfix" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Termin" @@ -7005,7 +7052,7 @@ msgstr "Informationen zu Offline-Zahlungen" msgid "Offline Payments Settings" msgstr "Einstellungen für Offline-Zahlungen" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "Sobald Sie Daten sammeln, werden sie hier angezeigt." msgid "Ongoing" msgstr "Laufend" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "Laufend" msgid "Online" msgstr "Online" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "Online — Verbindungsdetails angeben" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Online & vor Ort" @@ -7070,15 +7117,15 @@ msgstr "Verbindungsdetails für Online-Veranstaltung" msgid "Online Event Details" msgstr "Details zur Online-Veranstaltung" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Nur Kontoadministratoren können Veranstaltungen löschen oder archivieren. Wenden Sie sich an Ihren Kontoadministrator." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Nur Kontoadministratoren können Veranstalter löschen oder archivieren. Wenden Sie sich an Ihren Kontoadministrator." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Nur an Bestellungen mit diesen Status senden" @@ -7173,7 +7220,7 @@ msgstr "Bestellung & Ticket" msgid "Order #" msgstr "Bestellung #" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Bestellung storniert" @@ -7182,13 +7229,13 @@ msgstr "Bestellung storniert" msgid "Order Cancelled" msgstr "Bestellung storniert" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Bestellung abgeschlossen" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Bestellbestätigung" @@ -7273,7 +7320,7 @@ msgstr "Bestellung als bezahlt markiert" msgid "Order Marked as Paid" msgstr "Bestellung als bezahlt markiert" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Bestellung nicht gefunden" @@ -7297,7 +7344,7 @@ msgstr "Bestellnummer, Kaufdatum, E-Mail des Käufers" msgid "Order owner" msgstr "Bestelleigentümer" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Bestelleigentümer mit einem bestimmten Produkt" @@ -7327,7 +7374,7 @@ msgstr "Bestellung erstattet" msgid "Order Status" msgstr "Bestellstatus" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Bestellstatus" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Bestell-Timeout" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Bestellsumme" @@ -7357,7 +7404,7 @@ msgstr "Bestellung erfolgreich aktualisiert" msgid "Order URL" msgstr "Bestell-URL" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "Bestellung wurde storniert" @@ -7374,8 +7421,8 @@ msgstr "Bestellungen" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Organisationsname" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Organisationsname" msgid "Organizer" msgstr "Veranstalter" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Veranstalter erfolgreich archiviert" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Veranstalter-Dashboard" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Veranstalter erfolgreich gelöscht" @@ -7486,7 +7533,7 @@ msgstr "Name des Organisators" msgid "Organizer Not Found" msgstr "Veranstalter nicht gefunden" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Veranstalter erfolgreich wiederhergestellt" @@ -7504,7 +7551,7 @@ msgstr "Aktualisierung des Veranstalterstatus fehlgeschlagen. Bitte versuchen Si msgid "Organizer status updated" msgstr "Veranstalterstatus aktualisiert" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Veranstalter-/Standardvorlage wird verwendet" @@ -7512,7 +7559,7 @@ msgstr "Veranstalter-/Standardvorlage wird verwendet" msgid "Organizers" msgstr "Veranstalter" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Organisatoren können nur Veranstaltungen und Produkte verwalten. Sie können keine Benutzer, Kontoeinstellungen oder Abrechnungsinformationen verwalten." @@ -7563,7 +7610,7 @@ msgstr "Innenabstand" msgid "Page" msgstr "Seite" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Seite nicht mehr verfügbar" @@ -7575,7 +7622,7 @@ msgstr "Seite nicht gefunden" msgid "Page URL" msgstr "Seiten-URL" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Seitenaufrufe" @@ -7583,11 +7630,11 @@ msgstr "Seitenaufrufe" msgid "Page Views" msgstr "Seitenaufrufe" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "bezahlt" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "Bezahlte Konten" msgid "Paid Product" msgstr "Bezahltes Produkt" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Teilerstattung" @@ -7623,7 +7670,7 @@ msgstr "An Käufer weitergeben" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Passwort" @@ -7694,7 +7741,7 @@ msgstr "Nutzlast" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Zahlung" @@ -7735,7 +7782,7 @@ msgstr "Zahlungsmethoden" msgid "Payment provider" msgstr "Zahlungsanbieter" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Zahlung erhalten" @@ -7747,7 +7794,7 @@ msgstr "Zahlung erhalten" msgid "Payment Status" msgstr "Zahlungsstatus" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "Zahlung erfolgreich abgeschlossen!" @@ -7761,11 +7808,11 @@ msgstr "Zahlungen nicht verfügbar" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Auszahlungen" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "Ausstehend" @@ -7801,8 +7848,8 @@ msgstr "Prozentsatz" msgid "Percentage Amount" msgstr "Prozentualer Betrag" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Prozentuale Gebühr" @@ -7810,11 +7857,11 @@ msgstr "Prozentuale Gebühr" msgid "Percentage fee (%)" msgstr "Prozentuale Gebühr (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "Prozentsatz muss zwischen 0 und 100 liegen" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Prozentsatz des Transaktionsbetrags" @@ -7822,11 +7869,11 @@ msgstr "Prozentsatz des Transaktionsbetrags" msgid "Performance" msgstr "Leistung" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Diese Veranstaltung und alle zugehörigen Daten dauerhaft löschen." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Diesen Veranstalter und alle seine Veranstaltungen dauerhaft löschen." @@ -7834,7 +7881,7 @@ msgstr "Diesen Veranstalter und alle seine Veranstaltungen dauerhaft löschen." msgid "Permanently remove this date" msgstr "Diesen Termin endgültig entfernen" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Persönliche Daten" @@ -7842,7 +7889,7 @@ msgstr "Persönliche Daten" msgid "Phone" msgstr "Telefon" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Standort auswählen" @@ -7892,7 +7939,7 @@ msgstr "Plattformgebühr von {0} wird von Ihrer Auszahlung abgezogen" msgid "Platform Fees" msgstr "Plattformgebühren" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Plattformgebühren-Bericht" @@ -7918,7 +7965,7 @@ msgstr "Bitte überprüfen Sie Ihre E-Mail und Ihr Passwort und versuchen Sie es msgid "Please check your email is valid" msgstr "Bitte überprüfen Sie, ob Ihre E-Mail gültig ist" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Bitte überprüfen Sie Ihre E-Mail, um Ihre E-Mail-Adresse zu bestätigen" @@ -7926,7 +7973,7 @@ msgstr "Bitte überprüfen Sie Ihre E-Mail, um Ihre E-Mail-Adresse zu bestätige msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Bitte überprüfen Sie Ihr Ticket auf die aktualisierte Uhrzeit. Ihre Tickets sind weiterhin gültig — es ist keine Aktion erforderlich, es sei denn, die neuen Zeiten passen Ihnen nicht. Antworten Sie auf diese E-Mail, falls Sie Fragen haben." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Bitte fahren Sie im neuen Tab fort" @@ -7955,7 +8002,7 @@ msgstr "Bitte geben Sie eine gültige URL ein" msgid "Please enter the 5-digit code" msgstr "Bitte geben Sie den 5-stelligen Code ein" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Bitte geben Sie Ihre Umsatzsteuer-ID ein" @@ -7971,11 +8018,11 @@ msgstr "Bitte ein Bild angeben." msgid "Please restart the checkout process." msgstr "Bitte starten Sie den Bestellvorgang neu." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Bitte kehre zur Veranstaltungsseite zurück, um neu zu beginnen." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Bitte wählen Sie ein Datum und eine Uhrzeit aus" @@ -7987,7 +8034,7 @@ msgstr "Bitte wählen Sie einen Datumsbereich aus" msgid "Please select an image." msgstr "Bitte ein Bild auswählen." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Bitte wählen Sie mindestens ein Produkt aus" @@ -7998,7 +8045,7 @@ msgstr "Bitte wählen Sie mindestens ein Produkt aus" msgid "Please try again." msgstr "Bitte versuchen Sie es erneut." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Bitte bestätigen Sie Ihre E-Mail-Adresse, um auf alle Funktionen zugreifen zu können" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Bitte warten Sie, während wir Ihre Teilnehmer für den Export vorbereiten..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Bitte warten Sie, während wir Ihre Rechnung vorbereiten..." @@ -8124,7 +8171,7 @@ msgstr "Druckvorschau" msgid "Print Ticket" msgstr "Ticket drucken" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Tickets drucken" @@ -8139,7 +8186,7 @@ msgstr "Als PDF drucken" msgid "Privacy Policy" msgstr "Datenschutzerklärung" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Erstattung verarbeiten" @@ -8180,7 +8227,7 @@ msgstr "Produkt erfolgreich gelöscht" msgid "Product Price Type" msgstr "Produktpreistyp" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Produkt(e)" msgid "Products" msgstr "Produkte" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Verkaufte Produkte" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Verkaufte Produkte" msgid "Products sorted successfully" msgstr "Produkte erfolgreich sortiert" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Profil" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Profil erfolgreich aktualisiert" @@ -8251,7 +8298,7 @@ msgstr "Profil erfolgreich aktualisiert" msgid "Progress" msgstr "Fortschritt" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Aktionscode {promo_code} angewendet" @@ -8298,7 +8345,7 @@ msgstr "Bericht zu Aktionscodes" msgid "Promo Only" msgstr "Nur mit Promo-Code" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "Werbe-E-Mails können zur Kontosperrung führen" @@ -8310,11 +8357,11 @@ msgstr "" "Geben Sie zusätzlichen Kontext oder Anweisungen zu dieser Frage an. Verwenden Sie dieses Feld, um Geschäftsbedingungen,\n" "Richtlinien oder wichtige Informationen hinzuzufügen, die Teilnehmer vor der Beantwortung kennen müssen." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Geben Sie mindestens ein Adressfeld für den neuen Standort an." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Reiche die folgenden Informationen vor der nächsten Stripe-Prüfung ein, damit Auszahlungen weiter laufen." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Anbieter" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Veröffentlichen" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "Echtzeit-Analysen" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Produktupdates von {0} erhalten." @@ -8439,6 +8486,10 @@ msgstr "Produktupdates von {0} erhalten." msgid "Recent Account Signups" msgstr "Letzte Kontoanmeldungen" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Letzte Teilnehmer" @@ -8447,7 +8498,7 @@ msgstr "Letzte Teilnehmer" msgid "Recent check-ins" msgstr "Letzte Check-ins" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "Neueste Bestellungen" msgid "recipient" msgstr "Empfänger" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Empfänger" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "Empfänger" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Empfänger" msgid "Recipients are available after the message is sent" msgstr "Empfänger sind verfügbar, nachdem die Nachricht gesendet wurde" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Wiederkehrend" @@ -8517,7 +8569,7 @@ msgstr "Alle Bestellungen für diese Termine erstatten" msgid "Refund all orders for this date" msgstr "Alle Bestellungen für diesen Termin erstatten" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Erstattungsbetrag" @@ -8537,7 +8589,7 @@ msgstr "Erstattung ausgestellt" msgid "Refund order" msgstr "Rückerstattungsauftrag" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Bestellung {0} erstatten" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "Rückerstattungsstatus" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Rückerstattung" @@ -8571,7 +8623,7 @@ msgstr "Erstattet: {0}" msgid "Refunds" msgstr "Rückerstattungen" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Regionale Einstellungen" @@ -8598,18 +8650,18 @@ msgstr "Verbleibende Verwendungen" msgid "Reminder scheduled" msgstr "Erinnerung geplant" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "entfernen" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Entfernen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Bezeichnung von allen Terminen entfernen" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Bestätigungs-E-Mail erneut senden" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "E-Mail erneut senden" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "E-Mail-Bestätigung erneut senden" @@ -8688,7 +8741,7 @@ msgstr "Ticket erneut senden" msgid "Resend ticket email" msgstr "Ticket-E-Mail erneut senden" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Erneut senden..." @@ -8729,30 +8782,30 @@ msgstr "Antwort" msgid "Response Details" msgstr "Antwortdetails" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Wiederherstellen" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Veranstaltung wiederherstellen" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Veranstaltung wiederherstellen" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Veranstalter wiederherstellen" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Stellen Sie diese Veranstaltung wieder her, um sie wieder sichtbar zu machen." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Stellen Sie diesen Veranstalter wieder her und machen Sie ihn wieder aktiv." @@ -8777,7 +8830,7 @@ msgstr "Job wiederholen" msgid "Return to Event" msgstr "Zurück zum Event" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Zur Veranstaltungsseite zurückkehren" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Verwende eine Stripe-Verbindung von einem anderen Veranstalter in diesem Konto." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Einnahmen" @@ -8818,7 +8872,7 @@ msgstr "Einladung widerrufen" msgid "Revoke Offer" msgstr "Angebot widerrufen" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Verkauf beginnt {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Verkauf" @@ -8930,7 +8984,7 @@ msgstr "Samstag" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Samstag" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Speichern" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Ticketdesign speichern" msgid "Save VAT settings" msgstr "Umsatzsteuereinstellungen speichern" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "Umsatzsteuereinstellungen speichern" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Gespeicherter Standort" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Gespeicherte Standorte" @@ -9015,7 +9069,7 @@ msgstr "Gespeicherte Standorte" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "Das Speichern einer Überschreibung erstellt eine eigene Konfiguration für diesen Veranstalter, wenn er aktuell auf der Systemstandard-Einstellung ist." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Scannen" @@ -9035,6 +9089,10 @@ msgstr "Scanner-Modus" msgid "Schedule" msgstr "Terminplan" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Terminplan erfolgreich erstellt" @@ -9043,11 +9101,11 @@ msgstr "Terminplan erfolgreich erstellt" msgid "Schedule ends on" msgstr "Terminplan endet am" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Für später planen" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Nachricht planen" @@ -9061,11 +9119,11 @@ msgstr "Zeitplan beginnt am" msgid "Scheduled" msgstr "Geplant" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Geplante Zeit" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Suchen" @@ -9228,11 +9286,11 @@ msgstr "Alle auswählen" msgid "Select all on {0}" msgstr "Alle am {0} auswählen" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Veranstaltung auswählen" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Teilnehmergruppe auswählen" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Produktebene auswählen" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Produkte auswählen" @@ -9298,7 +9356,7 @@ msgstr "Startdatum und -zeit auswählen" msgid "Select start time" msgstr "Startzeit auswählen" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Status auswählen" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Ticket auswählen" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Tickets auswählen" @@ -9325,7 +9383,7 @@ msgstr "Zeitraum auswählen" msgid "Select timezone" msgstr "Zeitzone auswählen" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Wählen Sie aus, welche Teilnehmer diese Nachricht erhalten sollen" @@ -9359,11 +9417,11 @@ msgstr "Schnell verkauft 🔥" msgid "Send" msgstr "Schicken" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Eine Nachricht schicken" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Als Test senden" @@ -9371,20 +9429,20 @@ msgstr "Als Test senden" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "E-Mails an Teilnehmer, Ticketinhaber oder Bestellinhaber senden. Nachrichten können sofort gesendet oder für später geplant werden." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Senden Sie mir eine Kopie" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Nachricht Senden" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Jetzt senden" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Bestellbestätigung und Ticket-E-Mail senden" @@ -9392,7 +9450,7 @@ msgstr "Bestellbestätigung und Ticket-E-Mail senden" msgid "Send real-time order and attendee data to your external systems." msgstr "Senden Sie Echtzeit-Bestell- und Teilnehmerdaten an Ihre externen Systeme." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Erstattungsbenachrichtigungs-E-Mail senden" @@ -9400,11 +9458,11 @@ msgstr "Erstattungsbenachrichtigungs-E-Mail senden" msgid "Send reset link" msgstr "Link zum Zurücksetzen senden" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Test senden" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "An alle Termine senden oder einen bestimmten auswählen" @@ -9429,15 +9487,15 @@ msgstr "Gesendet" msgid "Sent By" msgstr "Gesendet von" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Wird an Teilnehmer gesendet, wenn ein geplanter Termin abgesagt wird" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "An Kunden gesendet, wenn sie eine Bestellung aufgeben" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "An jeden Teilnehmer mit seinen Ticketdetails gesendet" @@ -9490,7 +9548,7 @@ msgstr "Legen Sie die Standard-Plattformgebühreneinstellungen für neue Veranst msgid "Set default settings for new events created under this organizer." msgstr "Legen Sie Standardeinstellungen für neue Veranstaltungen fest, die unter diesem Veranstalter erstellt werden." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Legen Sie fest, wie lange jeder Termin dauert" @@ -9498,11 +9556,11 @@ msgstr "Legen Sie fest, wie lange jeder Termin dauert" msgid "Set number of dates" msgstr "Anzahl Termine festlegen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Terminbezeichnung setzen oder entfernen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Legen Sie die Endzeit jedes Termins so fest, dass sie diese Dauer nach der Startzeit liegt." @@ -9510,7 +9568,7 @@ msgstr "Legen Sie die Endzeit jedes Termins so fest, dass sie diese Dauer nach d msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Legen Sie die Startnummer für die Rechnungsnummerierung fest. Dies kann nicht geändert werden, sobald Rechnungen generiert wurden." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Auf unbegrenzt setzen (Limit entfernen)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Richten Sie Check-in-Listen für verschiedene Eingänge, Sitzungen oder Tage ein." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Auszahlungen einrichten" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Terminplan einrichten" msgid "Set up your organization" msgstr "Richten Sie Ihre Organisation ein" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Richten Sie Ihren Terminplan ein" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Standort oder Online-Details des Termins festlegen, ändern oder entfernen" @@ -9599,11 +9665,11 @@ msgstr "Veranstalterseite teilen" msgid "Shared Capacity Management" msgstr "Gemeinsame Kapazitätsverwaltung" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Zeiten verschieben" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "Zeiten für {count} Termin(e) verschoben" @@ -9635,8 +9701,8 @@ msgstr "Marketing-Opt-in-Kontrollkästchen anzeigen" msgid "Show marketing opt-in checkbox by default" msgstr "Marketing-Opt-in-Kontrollkästchen standardmäßig anzeigen" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Zeig mehr" @@ -9673,7 +9739,7 @@ msgstr "{0}–{1} von {2} werden angezeigt" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "{MAX_VISIBLE} von {totalAvailable} Terminen werden angezeigt. Tippen Sie zum Suchen." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "Die ersten {0} werden angezeigt — die verbleibenden {1} Session(s) werden beim Senden der Nachricht ebenfalls berücksichtigt." @@ -9710,7 +9776,7 @@ msgstr "Einzelveranstaltung" msgid "Single line text box" msgstr "Einzeiliges Textfeld" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Manuell bearbeitete Termine überspringen" @@ -9745,7 +9811,7 @@ msgstr "Social-Media-Links & Website" msgid "Sold" msgstr "Verkauft" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Einige Details sind für öffentlichen Zugriff ausgeblendet. Melden Sie #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Etwas ist schiefgelaufen" @@ -9784,7 +9850,7 @@ msgstr "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut oder kontaktiere msgid "Something went wrong! Please try again" msgstr "Etwas ist schief gelaufen. Bitte versuche es erneut" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Etwas ist schief gelaufen." @@ -9796,12 +9862,12 @@ msgstr "Etwas ist schiefgelaufen. Bitte versuchen Sie es später erneut." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Etwas ist schief gelaufen. Bitte versuche es erneut." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Dieser Aktionscode wird leider nicht erkannt" @@ -9897,12 +9963,12 @@ msgstr "Beginnt morgen" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "Staat oder Region" @@ -9914,7 +9980,7 @@ msgstr "Statistiken" msgid "Statistics are based on account creation date" msgstr "Statistiken basieren auf dem Erstellungsdatum des Kontos" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Statistik" @@ -9931,7 +9997,7 @@ msgstr "Statistik" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "Stripe Zahlungs-ID" msgid "Stripe payments are not enabled for this event." msgstr "Stripe-Zahlungen sind für diese Veranstaltung nicht aktiviert." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Stripe wird bald weitere Angaben benötigen" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "So" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "Betreff ist erforderlich" msgid "Subject will appear here" msgstr "Betreff wird hier angezeigt" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Betreff:" @@ -10024,11 +10090,11 @@ msgstr "Zwischensumme" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Erfolg" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Erfolgreich! {0} erhält in Kürze eine E-Mail." @@ -10173,7 +10239,7 @@ msgstr "Einstellungen erfolgreich aktualisiert" msgid "Successfully Updated Social Links" msgstr "Social-Media-Links erfolgreich aktualisiert" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Tracking-Einstellungen erfolgreich aktualisiert" @@ -10226,7 +10292,7 @@ msgstr "Schwedisch" msgid "Switch Organizer" msgstr "Veranstalter wechseln" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Systemstandard" @@ -10238,7 +10304,7 @@ msgstr "T-Shirt" msgid "Tap this screen to resume scanning" msgstr "Bildschirm berühren, um fortzufahren" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "Es werden Teilnehmer aus {0} ausgewählten Sessions adressiert." @@ -10336,7 +10402,7 @@ msgstr "Erzählen Sie uns von Ihrer Organisation. Diese Informationen werden auf msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Sagen Sie uns, wie oft sich Ihre Veranstaltung wiederholt, und wir erstellen alle Termine für Sie." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Teile uns deinen Umsatzsteuer-Registrierungsstatus mit, damit wir die richtige Mehrwertsteuer auf Plattformgebühren anwenden können." @@ -10344,15 +10410,15 @@ msgstr "Teile uns deinen Umsatzsteuer-Registrierungsstatus mit, damit wir die ri msgid "Template Active" msgstr "Vorlage aktiv" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Vorlage erfolgreich erstellt" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Vorlage erfolgreich gelöscht" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Vorlage erfolgreich gespeichert" @@ -10378,8 +10444,8 @@ msgstr "Danke für Ihre Teilnahme!" msgid "Thanks," msgstr "Vielen Dank," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Dieser Aktionscode ist ungültig" @@ -10399,7 +10465,7 @@ msgstr "Die gesuchte Eincheckliste existiert nicht." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "Der Code läuft in 10 Minuten ab. Überprüfen Sie Ihren Spam-Ordner, falls Sie die E-Mail nicht sehen." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "Die Währung, in der die feste Gebühr definiert ist. Sie wird beim Bezahlen in die Bestellwährung umgerechnet." @@ -10417,7 +10483,7 @@ msgstr "Die Standardwährung für Ihre Ereignisse." msgid "The default timezone for your events." msgstr "Die Standardzeitzone für Ihre Ereignisse." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "Die E-Mail-Adresse wurde geändert. Der Teilnehmer erhält ein neues Ticket an der aktualisierten E-Mail-Adresse." @@ -10442,7 +10508,7 @@ msgstr "Das erste Datum, ab dem dieser Zeitplan generiert wird." msgid "The full event address" msgstr "Die vollständige Veranstaltungsadresse" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "Der volle Bestellbetrag wird auf die ursprüngliche Zahlungsmethode des Kunden erstattet." @@ -10466,7 +10532,7 @@ msgstr "Die Sprache des Kunden" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "Das Maximum sind {MAX_PREVIEW} Sessions. Bitte reduzieren Sie den Datumsbereich, die Häufigkeit oder die Anzahl der Sessions pro Tag." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "Die maximale Anzahl an Produkten für {0} ist {1}" @@ -10475,7 +10541,7 @@ msgstr "Die maximale Anzahl an Produkten für {0} ist {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "Der gesuchte Veranstalter konnte nicht gefunden werden. Die Seite wurde möglicherweise verschoben oder gelöscht, oder die URL ist falsch." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "Die Überschreibung wird im Audit-Log der Bestellung aufgezeichnet." @@ -10499,11 +10565,11 @@ msgstr "Der dem Kunden angezeigte Preis enthält keine Steuern und Gebühren. Di msgid "The primary brand color used for buttons and highlights" msgstr "Die primäre Markenfarbe, die für Schaltflächen und Hervorhebungen verwendet wird" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "Die geplante Zeit ist erforderlich" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "Die geplante Zeit muss in der Zukunft liegen" @@ -10511,8 +10577,8 @@ msgstr "Die geplante Zeit muss in der Zukunft liegen" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "Die Session für \"{title}\", ursprünglich geplant für {0}, wurde verschoben." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "Der Vorlagenkörper enthält ungültige Liquid-Syntax. Bitte korrigieren Sie sie und versuchen Sie es erneut." @@ -10521,7 +10587,7 @@ msgstr "Der Vorlagenkörper enthält ungültige Liquid-Syntax. Bitte korrigieren msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "Der Titel der Veranstaltung, der in Suchmaschinenergebnissen und beim Teilen in sozialen Medien angezeigt wird. Standardmäßig wird der Veranstaltungstitel verwendet" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "Die Umsatzsteuer-Identifikationsnummer konnte nicht validiert werden. Bitte überprüfen Sie die Nummer und versuchen Sie es erneut." @@ -10534,19 +10600,19 @@ msgstr "Theater" msgid "Theme & Colors" msgstr "Thema & Farben" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "Für diese Veranstaltung sind keine Produkte verfügbar" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "In dieser Kategorie sind keine Produkte verfügbar" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "Es gibt keine bevorstehenden Termine für diese Veranstaltung" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "Eine Rückerstattung steht aus. Bitte warten Sie, bis der Vorgang abgeschlossen ist, bevor Sie eine weitere Rückerstattung anfordern." @@ -10578,7 +10644,7 @@ msgstr "Diese Details werden nur auf dem Ticket des Teilnehmers und der Bestell msgid "These details will only be shown if the order is completed successfully." msgstr "Diese Details werden nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wird." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Diese Angaben ersetzen jeden bestehenden Standort an den betroffenen Terminen und werden auf den Teilnehmer-Tickets angezeigt." @@ -10586,11 +10652,11 @@ msgstr "Diese Angaben ersetzen jeden bestehenden Standort an den betroffenen Ter msgid "These settings apply only to copied embed code and won't be stored." msgstr "Diese Einstellungen gelten nur für kopierten Einbettungscode und werden nicht gespeichert." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Diese Vorlagen werden als Standards für alle Veranstaltungen in Ihrer Organisation verwendet. Einzelne Veranstaltungen können diese Vorlagen mit ihren eigenen benutzerdefinierten Versionen überschreiben." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Diese Vorlagen überschreiben die Veranstalter-Standards nur für diese Veranstaltung. Wenn hier keine benutzerdefinierte Vorlage festgelegt ist, wird stattdessen die Veranstaltervorlage verwendet." @@ -10598,11 +10664,11 @@ msgstr "Diese Vorlagen überschreiben die Veranstalter-Standards nur für diese msgid "Third" msgstr "Dritter" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Dies gilt für jeden passenden Termin der Veranstaltung, einschließlich derzeit nicht sichtbarer Termine. Teilnehmer, die für einen dieser Termine angemeldet sind, können nach Abschluss der Aktualisierung über den Nachrichten-Editor erreicht werden." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Dieser Teilnehmer hat eine unbezahlte Bestellung." @@ -10660,11 +10726,11 @@ msgstr "Dieser Termin wurde abgesagt. Sie können ihn dennoch löschen, um ihn e msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Dieser Termin liegt in der Vergangenheit. Er wird erstellt, ist aber für Teilnehmer nicht unter den bevorstehenden Terminen sichtbar." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Dieser Termin ist als ausverkauft markiert." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Dieser Termin ist nicht mehr verfügbar. Bitte wählen Sie einen anderen Termin." @@ -10713,19 +10779,19 @@ msgstr "Diese Nachricht wird in die Fußzeile aller E-Mails aufgenommen, die von msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Diese Nachricht wird nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wurde. Bestellungen, die auf Zahlung warten, zeigen diese Nachricht nicht an." -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Dieser Name ist für Endbenutzer sichtbar" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Dieser Termin ist ausgebucht" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "Diese Bestellung wurde bereits bezahlt." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "Diese Bestellung wurde bereits zurückerstattet." @@ -10733,7 +10799,7 @@ msgstr "Diese Bestellung wurde bereits zurückerstattet." msgid "This order has been cancelled." msgstr "Diese Bestellung wurde storniert." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "Diese Bestellung ist abgelaufen. Bitte erneut beginnen." @@ -10745,15 +10811,15 @@ msgstr "Diese Bestellung wird verarbeitet." msgid "This order is complete." msgstr "Diese Bestellung ist abgeschlossen." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Diese Bestellseite ist nicht mehr verfügbar." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "Diese Bestellung wurde abgebrochen. Sie können jederzeit eine neue Bestellung aufgeben." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "Diese Bestellung wurde storniert. Sie können jederzeit eine neue Bestellung aufgeben." @@ -10785,7 +10851,7 @@ msgstr "Dieses Produkt wird auf der Veranstaltungsseite hervorgehoben" msgid "This product is sold out" msgstr "Dieses Produkt ist ausverkauft" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Dieser Bericht dient nur zu Informationszwecken. Konsultieren Sie immer einen Steuerberater, bevor Sie diese Daten für Buchhaltungs- oder Steuerzwecke verwenden. Bitte gleichen Sie mit Ihrem Stripe-Dashboard ab, da Hi.Events möglicherweise historische Daten fehlen." @@ -10797,11 +10863,11 @@ msgstr "Dieser Link zum Zurücksetzen des Passworts ist ungültig oder abgelaufe msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Dieses Ticket wurde gerade gescannt. Bitte warten Sie, bevor Sie erneut scannen." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Dieser Benutzer ist nicht aktiv, da er die Einladung nicht angenommen hat." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Dies wirkt sich auf {loadedAffectedCount} Termin(e) aus." @@ -10913,6 +10979,10 @@ msgstr "Ticketpreis" msgid "Ticket resent successfully" msgstr "Ticket erfolgreich erneut gesendet" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "Der Ticketverkauf für diese Veranstaltung ist beendet" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Uhrzeit" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Verbleibende Zeit:" @@ -10994,7 +11064,7 @@ msgstr "Anzahl der Verwendungen" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Zeitzone" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "Um Ihre Limits zu erhöhen, kontaktieren Sie uns unter" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "Top Veranstalter (Letzte 14 Tage)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Gesamt" @@ -11075,11 +11146,11 @@ msgstr "Einträge gesamt" msgid "Total Fee" msgstr "Gesamtgebühr" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Gesamtumsatz brutto" msgid "Total order amount" msgstr "Gesamtbestellwert" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "Gesamtbetrag zurückerstattet" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Insgesamt erstattet" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Verfolgen Sie das Kontowachstum und die Leistung nach Attributionsquelle" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Typ" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Geben Sie \"löschen\" ein, um zu bestätigen" @@ -11222,7 +11293,7 @@ msgstr "Teilnehmer konnte nicht ausgecheckt werden" msgid "Unable to create product. Please check the your details" msgstr "Produkt konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Produkt konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben" @@ -11246,7 +11317,7 @@ msgstr "Warteliste konnte nicht beigetreten werden" msgid "Unable to load attendee details." msgstr "Teilnehmerdetails können nicht geladen werden." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Produkte für diesen Termin konnten nicht geladen werden. Bitte versuchen Sie es erneut." @@ -11284,7 +11355,7 @@ msgstr "Vereinigte Staaten" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Unbekannt" @@ -11304,7 +11375,7 @@ msgstr "Unbekannter Teilnehmer" msgid "Unlimited" msgstr "Unbegrenzt" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Unbegrenzt verfügbar" @@ -11316,12 +11387,12 @@ msgstr "Unbegrenzte Nutzung erlaubt" msgid "Unnamed" msgstr "Unbenannt" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Unbenannter Standort" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Unbezahlte Bestellung" @@ -11337,7 +11408,7 @@ msgstr "Nicht vertrauenswürdig" msgid "Upcoming" msgstr "Bevorstehende" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "Aktualisierung {0}" msgid "Update Affiliate" msgstr "Partner aktualisieren" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Kapazität aktualisieren" @@ -11365,15 +11436,15 @@ msgstr "Veranstaltungsname und Beschreibung aktualisieren" msgid "Update event name, description and dates" msgstr "Aktualisieren Sie den Namen, die Beschreibung und die Daten der Veranstaltung" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Bezeichnung aktualisieren" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Standort aktualisieren" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Profil aktualisieren" @@ -11385,19 +11456,19 @@ msgstr "Update: {subjectTitle} — Terminplanänderungen" msgid "Update: {subjectTitle} — session time changed" msgstr "Update: {subjectTitle} — Sessionzeit geändert" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "{count} Termin(e) aktualisiert" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "Kapazität für {count} Termin(e) aktualisiert" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "Bezeichnung für {count} Termin(e) aktualisiert" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Standort für {count} Termin(e) aktualisiert" @@ -11507,14 +11578,14 @@ msgstr "Benutzerverwaltung" msgid "Users" msgstr "Benutzer" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Benutzer können ihre E-Mail in den <0>Profileinstellungen ändern." #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "koordinierte Weltzeit" @@ -11526,13 +11597,13 @@ msgstr "UTM-Analyse" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "Ihre Umsatzsteuer-Identifikationsnummer wird validiert..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "Umsatzsteuer" @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "USt-IdNr." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "Umsatzsteuer-ID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "Umsatzsteuer-Identifikationsnummer darf keine Leerzeichen enthalten" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "Umsatzsteuer-Identifikationsnummer muss mit einem zweistelligen Ländercode beginnen, gefolgt von 8-15 alphanumerischen Zeichen (z.B. DE123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "Umsatzsteuer-Identifikationsnummer erfolgreich validiert" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "Validierung der Umsatzsteuer-Identifikationsnummer fehlgeschlagen" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "Validierung der Umsatzsteuer-Identifikationsnummer fehlgeschlagen. Bitte überprüfen Sie Ihre Umsatzsteuer-Identifikationsnummer." @@ -11581,12 +11652,12 @@ msgstr "MwSt.-Satz" msgid "VAT registered" msgstr "Umsatzsteuerpflichtig" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "Umsatzsteuereinstellungen erfolgreich gespeichert" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "Umsatzsteuer-Einstellungen gespeichert. Wir validieren Ihre Umsatzsteuer-Identifikationsnummer im Hintergrund." @@ -11594,15 +11665,15 @@ msgstr "Umsatzsteuer-Einstellungen gespeichert. Wir validieren Ihre Umsatzsteuer msgid "VAT settings updated" msgstr "Umsatzsteuereinstellungen aktualisiert" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "Umsatzsteuerbehandlung für Plattformgebühren" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "Umsatzsteuerbehandlung für Plattformgebühren: EU-umsatzsteuerregistrierte Unternehmen können die Umkehrung der Steuerschuldnerschaft nutzen (0% - Artikel 196 der MwSt-Richtlinie 2006/112/EG). Nicht umsatzsteuerregistrierte Unternehmen wird die irische Umsatzsteuer von 23% berechnet." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "Umsatzsteuer-Validierungsdienst vorübergehend nicht verfügbar" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "USt: nicht registriert" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "Veranstaltungsort Namen" msgid "Verification code" msgstr "Bestätigungscode" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "E-Mail verifizieren" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Bestätigen Sie Ihre E-Mail-Adresse" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "Wird verifiziert..." @@ -11655,8 +11735,7 @@ msgstr "Ansehen" msgid "View All" msgstr "Alle anzeigen" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "Details für {0} {1} ansehen" msgid "View Event" msgstr "Veranstaltung ansehen" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Zur Veranstaltungsseite" @@ -11729,8 +11808,8 @@ msgstr "Auf Google Maps anzeigen" msgid "View Order" msgstr "Bestellung anzeigen" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Bestelldetails anzeigen" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "Wartend" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "Warten auf Zahlung" @@ -11800,7 +11879,7 @@ msgstr "Warteliste" msgid "Waitlist Enabled" msgstr "Warteliste aktiviert" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "Wartelistenangebot abgelaufen" @@ -11808,7 +11887,7 @@ msgstr "Wartelistenangebot abgelaufen" msgid "Waitlist triggered" msgstr "Warteliste ausgelöst" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Warnung: Dies ist die Systemstandardkonfiguration. Änderungen wirken sich auf alle Konten aus, denen keine spezifische Konfiguration zugewiesen ist." @@ -11844,7 +11923,7 @@ msgstr "Wir konnten die gesuchte Bestellung nicht finden. Der Link ist mögliche msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "Wir konnten das gesuchte Ticket nicht finden. Der Link ist möglicherweise abgelaufen oder die Ticketdetails haben sich geändert." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "Wir konnten diese Bestellung nicht finden. Möglicherweise wurde sie entfernt." @@ -11860,7 +11939,7 @@ msgstr "Wir konnten Stripe gerade nicht erreichen. Bitte versuche es gleich erne msgid "We couldn't reorder the categories. Please try again." msgstr "Wir konnten die Kategorien nicht neu ordnen. Bitte versuchen Sie es erneut." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Beim Laden dieser Seite ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut." @@ -11881,6 +11960,10 @@ msgstr "Wir empfehlen Abmessungen von 2160 x 1080 Pixel und eine maximale Dateig msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "Wir empfehlen Abmessungen von 400 × 400 Pixeln und eine maximale Dateigröße von 5 MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "Wir verwenden Cookies, um zu verstehen, wie die Website genutzt wird, und um Ihre Erfahrung zu verbessern." @@ -11889,7 +11972,7 @@ msgstr "Wir verwenden Cookies, um zu verstehen, wie die Website genutzt wird, un msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "Wir konnten Ihre Zahlung nicht bestätigen. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "Wir konnten Ihre Umsatzsteuer-Identifikationsnummer nach mehreren Versuchen nicht validieren. Wir versuchen es weiterhin im Hintergrund. Bitte schauen Sie später wieder vorbei." @@ -11897,16 +11980,16 @@ msgstr "Wir konnten Ihre Umsatzsteuer-Identifikationsnummer nach mehreren Versuc msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "Wir benachrichtigen Sie per E-Mail, wenn ein Platz für {productDisplayName} verfügbar wird." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Nach dem Speichern öffnen wir einen Nachrichten-Editor mit einer vorgefertigten Vorlage. Sie prüfen und senden sie — nichts wird automatisch verschickt." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "Wir senden Ihre Tickets an diese E-Mail" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "Wir validieren Ihre Umsatzsteuer-Identifikationsnummer im Hintergrund. Falls es Probleme gibt, werden wir Sie informieren." @@ -12003,7 +12086,7 @@ msgstr "Willkommen an Bord! Bitte melden Sie sich an, um fortzufahren." msgid "Welcome back" msgstr "Willkommen zurück" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Willkommen zurück{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Wellness" msgid "What are Tiered Products?" msgstr "Was sind gestufte Produkte?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "Was ist eine Kategorie?" @@ -12143,6 +12226,10 @@ msgstr "Wann Check-In schließt" msgid "When check-in opens" msgstr "Wann Check-In öffnet" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "Wenn aktiviert, werden Rechnungen für Ticketbestellungen erstellt. Rechnungen werden zusammen mit der Bestellbestätigungs-E-Mail gesendet. Teilnehmer können ihre Rechnungen auch von der Bestellbestätigungsseite herunterladen." @@ -12155,7 +12242,7 @@ msgstr "Wenn aktiviert, ermöglichen neue Veranstaltungen Teilnehmern, ihre eige msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "Wenn aktiviert, zeigen neue Veranstaltungen beim Checkout ein Marketing-Opt-in-Kontrollkästchen an. Dies kann pro Veranstaltung überschrieben werden." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "Wenn aktiviert, werden bei Stripe Connect-Transaktionen keine Anwendungsgebühren berechnet. Verwenden Sie dies für Länder, in denen Anwendungsgebühren nicht unterstützt werden." @@ -12191,11 +12278,11 @@ msgstr "Widget-Vorschau" msgid "Widget Settings" msgstr "Widget-Einstellungen" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "Arbeiten" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "Jahr" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Seit Jahresbeginn" @@ -12247,11 +12334,11 @@ msgstr "Jahre" msgid "Yes" msgstr "Ja" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Ja - Ich habe eine gültige EU-Umsatzsteuer-ID" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Ja, Bestellung stornieren" @@ -12267,7 +12354,7 @@ msgstr "Sie ändern Ihre E-Mail zu <0>{0}." msgid "You are impersonating <0>{0} ({1})" msgstr "Sie geben sich als <0>{0} ({1}) aus" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Sie geben eine Teilerstattung aus. Dem Kunden werden {0} {1} erstattet." @@ -12292,7 +12379,7 @@ msgstr "Sie können dies später für einzelne Termine überschreiben." msgid "You can still manually offer tickets if needed." msgstr "Sie können Tickets bei Bedarf weiterhin manuell anbieten." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "Sie können den letzten aktiven Veranstalter Ihres Kontos nicht archivieren." @@ -12313,11 +12400,11 @@ msgstr "Sie können die letzte Kategorie nicht löschen." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "Sie können diese Preiskategorie nicht löschen, da für diese Kategorie bereits Produkte verkauft wurden. Sie können sie stattdessen ausblenden." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "Sie können die Rolle oder den Status des Kontoinhabers nicht bearbeiten." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "Sie können eine manuell erstellte Bestellung nicht zurückerstatten." @@ -12333,11 +12420,11 @@ msgstr "Sie haben diese Einladung bereits angenommen. Bitte melden Sie sich an, msgid "You have no pending email change." msgstr "Sie haben keine ausstehende E-Mail-Änderung." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "Sie haben Ihr Nachrichtenlimit erreicht." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "Die Zeit für die Bestellung ist abgelaufen." @@ -12345,11 +12432,11 @@ msgstr "Die Zeit für die Bestellung ist abgelaufen." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Sie haben Steuern und Gebühren zu einem kostenlosen Produkt hinzugefügt. Möchten Sie diese entfernen?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "Sie müssen bestätigen, dass diese E-Mail keinen Werbezweck hat" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Sie müssen Ihre Verantwortung bestätigen, bevor Sie speichern können" @@ -12409,7 +12496,7 @@ msgstr "Sie benötigen ein Produkt, bevor Sie eine Kapazitätszuweisung erstelle msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Sie benötigen mindestens ein Produkt, um loszulegen. Kostenlos, bezahlt oder lassen Sie den Benutzer entscheiden, was er zahlen möchte." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Sie ändern Sessionzeiten" @@ -12421,7 +12508,7 @@ msgstr "Sie gehen zu {0}!" msgid "You're on the waitlist!" msgstr "Sie stehen auf der Warteliste!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "Ihnen wurde ein Platz angeboten!" @@ -12429,7 +12516,7 @@ msgstr "Ihnen wurde ein Platz angeboten!" msgid "You've changed the session time" msgstr "Sie haben die Sessionzeit geändert" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Ihr Konto hat Messaging-Limits. Um Ihre Limits zu erhöhen, kontaktieren Sie uns unter" @@ -12457,11 +12544,11 @@ msgstr "Ihre tolle Website 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "Ihre Check-In-Liste wurde erfolgreich erstellt. Teilen Sie den unten stehenden Link mit Ihrem Check-In-Personal." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "Ihre aktuelle Bestellung geht verloren." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Deine Details" @@ -12469,7 +12556,7 @@ msgstr "Deine Details" msgid "Your Email" msgstr "Ihre E-Mail" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "Ihre E-Mail-Anfrage zur Änderung auf <0>{0} steht noch aus. Bitte überprüfen Sie Ihre E-Mail, um sie zu bestätigen" @@ -12497,7 +12584,7 @@ msgstr "Ihr Name" msgid "Your new password must be at least 8 characters long." msgstr "Ihr neues Passwort muss mindestens 8 Zeichen lang sein." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Deine Bestellung" @@ -12509,7 +12596,7 @@ msgstr "Ihre Bestelldetails wurden aktualisiert. Eine Bestätigungs-E-Mail wurde msgid "Your order has been cancelled" msgstr "Deine Bestellung wurde storniert" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "Ihre Bestellung wurde storniert." @@ -12534,7 +12621,7 @@ msgstr "Adresse Ihres Veranstalters" msgid "Your password" msgstr "Ihr Passwort" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Ihre Zahlung wird verarbeitet." @@ -12542,11 +12629,11 @@ msgstr "Ihre Zahlung wird verarbeitet." msgid "Your payment is protected with bank-level encryption" msgstr "Ihre Zahlung ist mit Verschlüsselung auf Bankniveau geschützt" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Ihre Zahlung war nicht erfolgreich, bitte versuchen Sie es erneut." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Ihre Zahlung war nicht erfolgreich. Bitte versuchen Sie es erneut." @@ -12554,7 +12641,7 @@ msgstr "Ihre Zahlung war nicht erfolgreich. Bitte versuchen Sie es erneut." msgid "Your Plan" msgstr "Ihr Tarif" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Ihre Rückerstattung wird bearbeitet." @@ -12570,19 +12657,19 @@ msgstr "Ihr Ticket für" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "Ihr Ticket ist weiterhin gültig — es ist keine Aktion erforderlich, es sei denn, die neue Uhrzeit passt Ihnen nicht. Bitte antworten Sie auf diese E-Mail, falls Sie Fragen haben." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "Ihre Tickets wurden bestätigt." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "Ihre Umsatzsteuer-Identifikationsnummer ist zur Validierung in der Warteschlange" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "Ihre Umsatzsteuer-Identifikationsnummer wird beim Speichern validiert" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "Ihr Wartelistenangebot ist abgelaufen und wir konnten Ihre Bestellung nicht abschließen. Bitte treten Sie der Warteliste erneut bei, um benachrichtigt zu werden, sobald weitere Plätze verfügbar werden." @@ -12590,19 +12677,19 @@ msgstr "Ihr Wartelistenangebot ist abgelaufen und wir konnten Ihre Bestellung ni msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "Postleitzahl" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "Postleitzahl" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "Postleitzahl" diff --git a/frontend/src/locales/en.js b/frontend/src/locales/en.js index 0e52578512..b37386a953 100644 --- a/frontend/src/locales/en.js +++ b/frontend/src/locales/en.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>checked out successfully\"],\"KMgp2+\":[[\"0\"],\" available\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" days, \",[\"hours\"],\" hours, \",[\"minutes\"],\" minutes, and \",[\"seconds\"],\" seconds\"],\"f3RdEk\":[[\"hours\"],\" hours, \",[\"minutes\"],\" minutes, and \",[\"seconds\"],\" seconds\"],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0>Please enter the price excluding taxes and fees.<1>Taxes and fees can be added below.\",\"ZjMs6e\":\"<0>The number of products available for this product<1>This value can be overridden if there are <2>Capacity Limits associated with this product.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"A date input. Perfect for asking for a date of birth etc.\",\"6euFZ/\":[\"A default \",[\"type\"],\" is automaticaly applied to all new products. You can override this on a per product basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"POT0K/\":\"A fixed amount per product. E.g, $0.50 per product\",\"f4vJgj\":\"A multi line text input\",\"OIPtI5\":\"A percentage of the product price. E.g., 3.5% of the product price\",\"ZthcdI\":\"A promo code with no discount can be used to reveal hidden products.\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"h179TP\":\"A short description of the event that will be displayed in search engine results and when sharing on social media. By default, the event description will be used\",\"WKMnh4\":\"A single line text input\",\"BHZbFy\":\"A single question per order. E.g, What is your shipping address?\",\"Fuh+dI\":\"A single question per product. E.g, What is your t-shirt size?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Accept bank transfers, checks, or other offline payment methods\",\"hrvLf4\":\"Accept credit card payments with Stripe\",\"bfXQ+N\":\"Accept Invitation\",\"AeXO77\":\"Account\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"5T2HxQ\":\"Activation date\",\"F6pfE9\":\"Active\",\"/PN1DA\":\"Add a description for this check-in list\",\"0/vPdA\":\"Add any notes about the attendee. These will not be visible to the attendee.\",\"Or1CPR\":\"Add any notes about the attendee...\",\"l3sZO1\":\"Add any notes about the order. These will not be visible to the customer.\",\"xMekgu\":\"Add any notes about the order...\",\"PGPGsL\":\"Add description\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Add instructions for offline payments (e.g., bank transfer details, where to send checks, payment deadlines)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"24l4x6\":\"Add Product\",\"8q0EdE\":\"Add Product to Category\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"goOKRY\":\"Add tier\",\"oZW/gT\":\"Add to Calendar\",\"pn5qSs\":\"Additional Information\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Address\",\"NY/x1b\":\"Address line 1\",\"POdIrN\":\"Address Line 1\",\"cormHa\":\"Address line 2\",\"gwk5gg\":\"Address Line 2\",\"U3pytU\":\"Admin\",\"HLDaLi\":\"Admin users have full access to events and account settings.\",\"W7AfhC\":\"All attendees of this event\",\"cde2hc\":\"All Products\",\"5CQ+r0\":\"Allow attendees associated with unpaid orders to check in\",\"ipYKgM\":\"Allow search engine indexing\",\"LRbt6D\":\"Allow search engines to index this event\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"V7MwOy\":\"An error occurred while loading the page\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"An unexpected error occurred.\",\"byKna+\":\"An unexpected error occurred. Please try again.\",\"ubdMGz\":\"Any queries from product holders will be sent to this email address. This will also be used as the \\\"reply-to\\\" address for all emails sent from this event\",\"aAIQg2\":\"Appearance\",\"Ym1gnK\":\"applied\",\"sy6fss\":[\"Applies to \",[\"0\"],\" products\"],\"kadJKg\":\"Applies to 1 product\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"ARBThj\":[\"Apply this \",[\"type\"],\" to all new products\"],\"S0ctOE\":\"Archive event\",\"TdfEV7\":\"Archived\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"TvkW9+\":\"Are you sure you want to archive this event?\",\"/CV2x+\":\"Are you sure you want to cancel this attendee? This will void their ticket\",\"YgRSEE\":\"Are you sure you want to delete this promo code?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Are you sure you want to make this event draft? This will make the event invisible to the public\",\"mEHQ8I\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"Are you sure you want to restore this event? It will be restored as a draft event.\",\"vJuISq\":\"Are you sure you would like to delete this Capacity Assignment?\",\"baHeCz\":\"Are you sure you would like to delete this Check-In List?\",\"LBLOqH\":\"Ask once per order\",\"wu98dY\":\"Ask once per product\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"QKim6l\":\"Attendee not found\",\"R5IT/I\":\"Attendee Notes\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Attendee Ticket\",\"9SZT4E\":\"Attendees\",\"iPBfZP\":\"Attendees Registered\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"4lVaWA\":\"Awaiting offline payment\",\"2rHwhl\":\"Awaiting Offline Payment\",\"3wF4Q/\":\"Awaiting payment\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Billing Address\",\"/xC/im\":\"Billing Settings\",\"rp/zaT\":\"Brazilian Portuguese\",\"whqocw\":\"By registering you agree to our <0>Terms of Service and <1>Privacy Policy.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacity\",\"V6Q5RZ\":\"Capacity Assignment created successfully\",\"k5p8dz\":\"Capacity Assignment deleted successfully\",\"nDBs04\":\"Capacity Management\",\"ddha3c\":\"Categories allow you to group products together. For example, you might have a category for \\\"Tickets\\\" and another for \\\"Merchandise\\\".\",\"iS0wAT\":\"Categories help you organize your products. This title will be displayed on the public event page.\",\"eorM7z\":\"Categories reordered successfully.\",\"3EXqwa\":\"Category Created Successfully\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Check in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Check in and mark order as paid\",\"QYLpB4\":\"Check in only\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Check out this event!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Check-In List deleted successfully\",\"+hBhWk\":\"Check-in list has expired\",\"mBsBHq\":\"Check-in list is not active\",\"vPqpQG\":\"Check-in list not found\",\"tejfAy\":\"Check-In Lists\",\"hD1ocH\":\"Check-In URL copied to clipboard\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"znIg+z\":\"Checkout\",\"1WnhCL\":\"Checkout Settings\",\"6imsQS\":\"Chinese (Simplified)\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"3wV73y\":\"City\",\"FG98gC\":\"Clear Search Text\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Click to copy\",\"yz7wBu\":\"Close\",\"62Ciis\":\"Close sidebar\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Code must be between 3 and 50 characters long\",\"oqr9HB\":\"Collapse this product when the event page is initially loaded\",\"jZlrte\":\"Color\",\"Vd+LC3\":\"Color must be a valid hex color code. Example: #ffffff\",\"1HfW/F\":\"Colors\",\"VZeG/A\":\"Coming Soon\",\"yPI7n9\":\"Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event\",\"NPZqBL\":\"Complete Order\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Complete Payment\",\"qqWcBV\":\"Completed\",\"6HK5Ct\":\"Completed orders\",\"NWVRtl\":\"Completed Orders\",\"DwF9eH\":\"Component Code\",\"Tf55h7\":\"Configured Discount\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continue\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Continue Button Text\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"r2B2P8\":\"Copy Check-In URL\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"k9RiLi\":\"Create a Product\",\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"VwdqVy\":\"Create Capacity Assignment\",\"EwoMtl\":\"Create category\",\"XletzW\":\"Create Category\",\"WVbTwK\":\"Create Check-In List\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"a0EjD+\":\"Create Product\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Create Promo Code\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"UEqXyt\":\"Custom Range\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Y9Z/vP\":\"Customize the event homepage and checkout messaging\",\"2E2O5H\":\"Customize the miscellaneous settings for this event\",\"iJhSxe\":\"Customize the SEO settings for this event\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Danger zone\",\"ZQKLI1\":\"Danger Zone\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"JJhRbH\":\"Day one capacity\",\"cnGeoo\":\"Delete\",\"jRJZxD\":\"Delete Capacity\",\"VskHIx\":\"Delete category\",\"Qrc8RZ\":\"Delete Check-In List\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Description\",\"YC3oXa\":\"Description for check-in staff\",\"URmyfc\":\"Details\",\"1lRT3t\":\"Disabling this capacity will track sales but not stop them when the limit is reached\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"DZlSLn\":\"Document Label\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donation / Pay what you'd like product\",\"OvNbls\":\"Download .ics\",\"kodV18\":\"Download CSV\",\"CELKku\":\"Download invoice\",\"LQrXcu\":\"Download Invoice\",\"QIodqd\":\"Download QR Code\",\"yhjU+j\":\"Downloading Invoice\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Dropdown selection\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicate event\",\"3ogkAk\":\"Duplicate Event\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Duplicate Options\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kBkYSa\":\"Edit Capacity\",\"oHE9JT\":\"Edit Capacity Assignment\",\"j1Jl7s\":\"Edit category\",\"FU1gvP\":\"Edit Check-In List\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"tdD/QN\":\"Edit Product\",\"n143Tq\":\"Edit Product Category\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"poTr35\":\"Edit user\",\"GTOcxw\":\"Edit User\",\"pqFrv2\":\"eg. 2.50 for $2.50\",\"3yiej1\":\"eg. 23.5 for 23.5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Email & Notification Settings\",\"ATGYL1\":\"Email address\",\"hzKQCy\":\"Email Address\",\"HqP6Qf\":\"Email change cancelled successfully\",\"mISwW1\":\"Email change pending\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"8oPbg1\":\"Enable Invoicing\",\"j6w7d/\":\"Enable this capacity to stop product sales when the limit is reached\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"English\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"SlfejT\":\"Error\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Event Date\",\"0Zptey\":\"Event Defaults\",\"QcCPs8\":\"Event Details\",\"6fuA9p\":\"Event duplicated successfully\",\"AEuj2m\":\"Event Homepage\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"nMU2d3\":\"Event URL\",\"tst44n\":\"Events\",\"sZg7s1\":\"Expiration date\",\"KnN1Tu\":\"Expires\",\"uaSvqt\":\"Expiry Date\",\"GS+Mus\":\"Export\",\"9xAp/j\":\"Failed to cancel attendee\",\"ZpieFv\":\"Failed to cancel order\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Failed to download invoice. Please try again.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Failed to load Check-In List\",\"ZQ15eN\":\"Failed to resend ticket email\",\"ejXy+D\":\"Failed to sort products\",\"PLUB/s\":\"Fee\",\"/mfICu\":\"Fees\",\"LyFC7X\":\"Filter Orders\",\"cSev+j\":\"Filters\",\"CVw2MU\":[\"Filters (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"First Invoice Number\",\"V1EGGU\":\"First name\",\"kODvZJ\":\"First Name\",\"S+tm06\":\"First name must be between 1 and 50 characters\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"First Used\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"P/OAYJ\":\"Free Product\",\"vAbVy9\":\"Free product, no payment information required\",\"nLC6tu\":\"French\",\"Weq9zb\":\"General\",\"DDcvSo\":\"German\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Calendar\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Gross sales\",\"yRg26W\":\"Gross Sales\",\"R4r4XO\":\"Guests\",\"26pGvx\":\"Have a promo code?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Here is an example of how you can use the component in your application.\",\"Y1SSqh\":\"Here is the React component you can use to embed the widget in your application.\",\"QuhVpV\":[\"Hi \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Hide product after sale end date\",\"06s3w3\":\"Hide product before sale start date\",\"axVMjA\":\"Hide product unless user has applicable promo code\",\"ySQGHV\":\"Hide product when sold out\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Hide this product from customers\",\"Da29Y6\":\"Hide this question\",\"fvDQhr\":\"Hide this tier from users\",\"lNipG+\":\"Hiding a product will prevent users from seeing it on the event page.\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"How many minutes the customer has to complete their order. We recommend at least 15 minutes\",\"ySxKZe\":\"How many times can this code be used?\",\"dZsDbK\":[\"HTML character limit exceeded: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"If enabled, check-in staff can either mark attendees as checked in or mark the order as paid and check in the attendees. If disabled, attendees associated with unpaid orders cannot be checked in.\",\"muXhGi\":\"If enabled, the organizer will receive an email notification when a new order is placed\",\"6fLyj/\":\"If you did not request this change, please immediately change your password.\",\"n/ZDCz\":\"Image deleted successfully\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"VyUuZb\":\"Image URL\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"kO44sp\":\"Include connection details for your online event. These details will be shown on the order summary page and attendee ticket page.\",\"FlQKnG\":\"Include tax and fees in the price\",\"Vi+BiW\":[\"Includes \",[\"0\"],\" products\"],\"lpm0+y\":\"Includes 1 product\",\"UiAk5P\":\"Insert Image\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"bKOYkd\":\"Invoice downloaded successfully\",\"alD1+n\":\"Invoice Notes\",\"kOtCs2\":\"Invoice Numbering\",\"UZ2GSZ\":\"Invoice Settings\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Item\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Label\",\"vXIe7J\":\"Language\",\"2LMsOq\":\"Last 12 months\",\"vfe90m\":\"Last 14 days\",\"aK4uBd\":\"Last 24 hours\",\"uq2BmQ\":\"Last 30 days\",\"bB6Ram\":\"Last 48 hours\",\"VlnB7s\":\"Last 6 months\",\"ct2SYD\":\"Last 7 days\",\"XgOuA7\":\"Last 90 days\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"tKCBU0\":\"Last Used\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Leave blank to use the default word \\\"Invoice\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Loading...\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Make billing address mandatory during checkout\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"onpJrA\":\"Manage attendee\",\"n4SpU5\":\"Manage event\",\"WVgSTy\":\"Manage order\",\"1MAvUY\":\"Manage payment and invoicing settings for this event.\",\"cQrNR3\":\"Manage Profile\",\"AtXtSw\":\"Manage taxes and fees which can be applied to your products\",\"ophZVW\":\"Manage tickets\",\"DdHfeW\":\"Manage your account details and default settings\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Manage your users and their permissions\",\"1m+YT2\":\"Mandatory questions must be answered before the customer can checkout.\",\"Dim4LO\":\"Manually add an Attendee\",\"e4KdjJ\":\"Manually Add Attendee\",\"vFjEnF\":\"Mark as paid\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"RDie0n\":\"Miscellaneous\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"VD0iA7\":\"Multiple price options. Perfect for early bird products etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"fj5byd\":\"N/A\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"1UzENP\":\"No\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"No archived events to show.\",\"q2LEDV\":\"No attendees found for this order.\",\"zlHa5R\":\"No attendees have been added to this order.\",\"Wjz5KP\":\"No Attendees to show\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"No Capacity Assignments\",\"a/gMx2\":\"No Check-In Lists\",\"tMFDem\":\"No data available\",\"6Z/F61\":\"No data to show. Please select a date range\",\"fFeCKc\":\"No Discount\",\"HFucK5\":\"No ended events to show.\",\"yAlJXG\":\"No events to show\",\"GqvPcv\":\"No filters available\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"RBXXtB\":\"No payment methods are currently available. Please contact the event organizer for assistance.\",\"ZWEfBE\":\"No Payment Required\",\"ZPoHOn\":\"No product associated with this attendee.\",\"Ya1JhR\":\"No products available in this category.\",\"FTfObB\":\"No Products Yet\",\"+Y976X\":\"No Promo Codes to show\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"Ev2r9A\":\"No results\",\"gk5uwN\":\"No Search Results\",\"RHyZUL\":\"No search results.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notes\",\"jtrY3S\":\"Nothing to show yet\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Number of days allowed for payment (leave blank to omit payment terms from invoices)\",\"n86jmj\":\"Number Prefix\",\"mwe+2z\":\"Offline orders are not reflected in event statistics until the order is marked as paid.\",\"dWBrJX\":\"Offline payment failed. Please try again or contact the event organizer.\",\"fcnqjw\":\"Offline Payment Instructions\",\"+eZ7dp\":\"Offline Payments\",\"ojDQlR\":\"Offline Payments Information\",\"u5oO/W\":\"Offline Payments Settings\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"ZxnK5C\":\"Once you start collecting data, you'll see it here.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Ongoing\",\"z+nuVJ\":\"Online event\",\"WKHW0N\":\"Online Event Details\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Open Check-In Page\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"oPknTP\":\"Optional additional information to appear on all invoices (e.g., payment terms, late payment fees, return policy)\",\"OrXJBY\":\"Optional prefix for invoice numbers (e.g., INV-)\",\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"nAn4Oe\":\"Order marked as paid\",\"uzEfRz\":\"Order Notes\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Order Reference\",\"acIJ41\":\"Order Status\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"3y+V4p\":\"Organization Address\",\"GVcaW6\":\"Organization Details\",\"nfnm9D\":\"Organization Name\",\"G5RhpL\":\"Organizer\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"l894xP\":\"Organizers can only manage events and products. They cannot manage users, account settings or billing information.\",\"fdjq4c\":\"Padding\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Page not found\",\"QbrUIo\":\"Page views\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"paid\",\"HVW65c\":\"Paid Product\",\"ZfxaB4\":\"Partially Refunded\",\"8ZsakT\":\"Password\",\"TUJAyx\":\"Password must be a minimum of 8 characters\",\"vwGkYB\":\"Password must be at least 8 characters\",\"BLTZ42\":\"Password reset successfully. Please login with your new password.\",\"f7SUun\":\"Passwords are not the same\",\"aEDp5C\":\"Paste this where you want the widget to appear.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Payment\",\"Lg+ewC\":\"Payment & Invoicing\",\"DZjk8u\":\"Payment & Invoicing Settings\",\"lflimf\":\"Payment Due Period\",\"JhtZAK\":\"Payment Failed\",\"JEdsvQ\":\"Payment Instructions\",\"bLB3MJ\":\"Payment Methods\",\"QzmQBG\":\"Payment provider\",\"lsxOPC\":\"Payment Received\",\"wJTzyi\":\"Payment Status\",\"xgav5v\":\"Payment succeeded!\",\"R29lO5\":\"Payment Terms\",\"/roQKz\":\"Percentage\",\"vPJ1FI\":\"Percentage Amount\",\"xdA9ud\":\"Place this in the of your website.\",\"blK94r\":\"Please add at least one option\",\"FJ9Yat\":\"Please check the provided information is correct\",\"TkQVup\":\"Please check your email and password and try again\",\"sMiGXD\":\"Please check your email is valid\",\"Ajavq0\":\"Please check your email to confirm your email address\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Please continue in the new tab\",\"hcX103\":\"Please create a product\",\"cdR8d6\":\"Please create a ticket\",\"x2mjl4\":\"Please enter a valid image URL that points to an image.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"C63rRe\":\"Please return to the event page to start over.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Please select at least one product\",\"igBrCH\":\"Please verify your email address to access all features\",\"/IzmnP\":\"Please wait while we prepare your invoice...\",\"MOERNx\":\"Portuguese\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"BI7D9d\":\"Price not set\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Price Type\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"DKwDdj\":\"Print Tickets\",\"K47k8R\":\"Product\",\"1JwlHk\":\"Product Category\",\"U61sAj\":\"Product category updated successfully.\",\"1USFWA\":\"Product deleted successfully\",\"4Y2FZT\":\"Product Price Type\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Product Sales\",\"U/R4Ng\":\"Product Tier\",\"sJsr1h\":\"Product Type\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Product(s)\",\"N0qXpE\":\"Products\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Products sold\",\"/u4DIx\":\"Products Sold\",\"DJQEZc\":\"Products sorted successfully\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"P5sgAk\":\"Promo Code\",\"yKWfjC\":\"Promo Code page\",\"RVb8Fo\":\"Promo Codes\",\"BZ9GWa\":\"Promo codes can be used to offer discounts, presale access, or provide special access to your event.\",\"OP094m\":\"Promo Codes Report\",\"4kyDD5\":\"Provide additional context or instructions for this question. Use this field to add terms\\nand conditions, guidelines, or any important information that attendees need to know before answering.\",\"toutGW\":\"QR Code\",\"LkMOWF\":\"Quantity Available\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Question deleted\",\"avf0gk\":\"Question Description\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"ROv2ZT\":\"Questions & Answers\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Refund Failed\",\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Refund Pending\",\"xHpVRl\":\"Refund Status\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"9+8Vez\":\"Remaining Uses\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"t9yxlZ\":\"Reports\",\"prZGMe\":\"Require Billing Address\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"OfhWJH\":\"Reset\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restore event\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Return to Event Page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hBsw5C\":\"Sales ended\",\"kpAzPe\":\"Sales start\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Save\",\"IUwGEM\":\"Save Changes\",\"U65fiW\":\"Save Organizer\",\"UGT5vp\":\"Save Settings\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"+pr/FY\":\"Search by event name...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Search by name...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Search capacity assignments...\",\"r9M1hc\":\"Search check-in lists...\",\"+0Yy2U\":\"Search products\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"02ePaq\":[\"Select \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Select category...\",\"kWI/37\":\"Select organizer\",\"ixIx1f\":\"Select Product\",\"3oSV95\":\"Select Product Tier\",\"C4Y1hA\":\"Select products\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"OMX4tH\":\"Select tickets\",\"DrwwNd\":\"Select time period\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Send a message\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Send Message\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"L0pJmz\":\"Set the starting number for invoice numbering. This cannot be changed once invoices have been generated.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"B2V3cA\":\"Share Event\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Show available product quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"1SbbH8\":\"Shown to the customer after they checkout, on the order summary page.\",\"YfHZv0\":\"Shown to the customer before they checkout\",\"CBBcly\":\"Shows common address fields, including country\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Single line text box\",\"+P0Cn2\":\"Skip this step\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Sold out\",\"Mi1rVn\":\"Sold Out\",\"nwtY4N\":\"Something went wrong\",\"GRChTw\":\"Something went wrong while deleting the Tax or Fee\",\"YHFrbe\":\"Something went wrong! Please try again\",\"kf83Ld\":\"Something went wrong.\",\"fWsBTs\":\"Something went wrong. Please try again.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"65A04M\":\"Spanish\",\"mFuBqb\":\"Standard product with a fixed price\",\"D3iCkb\":\"Start Date\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe payments are not enabled for this event.\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"zzDlyQ\":\"Success\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"gP22tw\":\"Successfully Created Product\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"J3RJSZ\":\"Successfully updated attendee\",\"3suLF0\":\"Successfully updated Capacity Assignment\",\"Z+rnth\":\"Successfully updated Check-In List\",\"vzJenu\":\"Successfully Updated Email Settings\",\"7kOMfV\":\"Successfully Updated Event\",\"G0KW+e\":\"Successfully Updated Homepage Design\",\"k9m6/E\":\"Successfully Updated Homepage Settings\",\"y/NR6s\":\"Successfully Updated Location\",\"73nxDO\":\"Successfully Updated Misc Settings\",\"4H80qv\":\"Successfully updated order\",\"6xCBVN\":\"Successfully Updated Payment & Invoicing Settings\",\"1Ycaad\":\"Successfully updated product\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"dFHcIn\":\"Tax Details\",\"wQzCPX\":\"Tax information to appear at the bottom of all invoices (e.g., VAT number, tax registration)\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"qu6/03\":\"Taxes and Fees\",\"gypigA\":\"That promo code is invalid\",\"5ShqeM\":\"The check-in list you are looking for does not exist.\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"o7s5FA\":\"The language the attendee will receive emails in.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"HsFnrk\":[\"The maximum number of products for \",[\"0\"],\"is \",[\"1\"]],\"TSAiPM\":\"The page you are looking for does not exist\",\"MSmKHn\":\"The price displayed to the customer will include taxes and fees.\",\"6zQOg1\":\"The price displayed to the customer will not include taxes and fees. They will be shown separately\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used\",\"wDx3FF\":\"There are no products available for this event\",\"pNgdBv\":\"There are no products available in this category\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"F89D36\":\"There was an error marking the order as paid\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"This attendee has an unpaid order.\",\"mf3FrP\":\"This category doesn't have any products yet.\",\"8QH2Il\":\"This category is hidden from public view\",\"xxv3BZ\":\"This check-in list has expired\",\"Sa7w7S\":\"This check-in list has expired and is no longer available for check-ins.\",\"Uicx2U\":\"This check-in list is active\",\"1k0Mp4\":\"This check-in list is not active yet\",\"K6fmBI\":\"This check-in list is not yet active and is not available for check-ins.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"This information will be shown on the payment page, order summary page, and order confirmation email.\",\"XAHqAg\":\"This is a general product, like a t-shirt or a mug. No ticket will be issued\",\"CNk/ro\":\"This is an online event\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"55i7Fa\":\"This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message\",\"RjwlZt\":\"This order has already been paid.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"Q0zd4P\":\"This order has expired. Please start again.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"This order page is no longer available.\",\"i0TtkR\":\"This overrides all visibility settings and will hide the product from all customers.\",\"cRRc+F\":\"This product cannot be deleted because it is associated with an order. You can hide it instead.\",\"3Kzsk7\":\"This product is a ticket. Buyers will be issued a ticket upon purchase\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"54q0zp\":\"Tickets for\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"jZj9y9\":\"Tiered Product\",\"8wITQA\":\"Tiered products allow you to offer multiple price options for the same product. This is perfect for early bird products, or offering different price options for different groups of people.\",\"nn3mSR\":\"Time left:\",\"s/0RpH\":\"Times used\",\"y55eMd\":\"Times Used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total Before Discounts\",\"NRWNfv\":\"Total Discount Amount\",\"BxsfMK\":\"Total Fees\",\"2bR+8v\":\"Total Gross Sales\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"jEbkcB\":\"Total Refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"FMdMfZ\":\"Unable to check in attendee\",\"bPWBLL\":\"Unable to check out attendee\",\"9+P7zk\":\"Unable to create product. Please check the your details\",\"WLxtFC\":\"Unable to create product. Please check your details\",\"/cSMqv\":\"Unable to create question. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"nnfSdK\":\"Unique Customers\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"/p9Fhq\":\"Unlimited available\",\"E0q9qH\":\"Unlimited usages allowed\",\"h10Wm5\":\"Unpaid Order\",\"ia8YsC\":\"Upcoming\",\"TlEeFv\":\"Upcoming Events\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"fiV0xj\":\"Usage Limit\",\"sGEOe4\":\"Use a blurred version of the cover image as the background\",\"OadMRm\":\"Use cover image\",\"7PzzBU\":\"User\",\"yDOdwQ\":\"User Management\",\"Sxm8rQ\":\"Users\",\"VEsDvU\":\"Users can change their email in <0>Profile Settings\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"jpctdh\":\"View\",\"Pte1Hv\":\"View Attendee Details\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP check-in list\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"45Srzt\":\"We couldn't delete the category. Please try again.\",\"/DNy62\":[\"We couldn't find any tickets matching \",[\"0\"]],\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"NmpGKr\":\"We couldn't reorder the categories. Please try again.\",\"BJtMTd\":\"We recommend dimensions of 1950px by 650px, a ratio of 3:1, and a maximum file size of 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"We were unable to confirm your payment. Please try again or contact support.\",\"Gspam9\":\"We're processing your order. Please wait...\",\"LuY52w\":\"Welcome aboard! Please login to continue.\",\"dVxpp5\":[\"Welcome back\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"What are Tiered Products?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"What is a Category?\",\"gxeWAU\":\"What products does this code apply to?\",\"hFHnxR\":\"What products does this code apply to? (Applies to all by default)\",\"AeejQi\":\"What products should this capacity apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"gyLUYU\":\"When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page.\",\"D3opg4\":\"When offline payments are enabled, users will be able to complete their orders and receive their tickets. Their tickets will clearly indicate the order is not paid, and the check-in tool will notify the check-in staff if an order requires payment.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Which tickets should be associated with this check-in list?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"+G/XiQ\":\"Year to date\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\".\"],\"gGhBmF\":\"You are offline\",\"sdB7+6\":\"You can create a promo code which targets this product on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"You cannot change the product type as there are attendees associated with this product.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"You cannot check in attendees with unpaid orders. This setting can be changed in the event settings.\",\"c9Evkd\":\"You cannot delete the last category.\",\"6uwAvx\":\"You cannot delete this price tier because there are already products sold for this tier. You can hide it instead.\",\"tFbRKJ\":\"You cannot edit the role or status of the account owner.\",\"fHfiEo\":\"You cannot refund a manually created order.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"You have access to multiple accounts. Please choose one to continue.\",\"Z6q0Vl\":\"You have already accepted this invitation. Please login to continue.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"You have run out of time to complete your order.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"You must acknowledge that this email is not promotional\",\"3ZI8IL\":\"You must agree to the terms and conditions\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"You must create a ticket before you can manually add an attendee.\",\"jE4Z8R\":\"You must have at least one price tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"You will have to mark an order as paid manually. This can be done on the manage order page.\",\"L/+xOk\":\"You'll need a ticket before you can create a check-in list.\",\"Djl45M\":\"You'll need at a product before you can create a capacity assignment.\",\"y3qNri\":\"You'll need at least one product to get started. Free, paid or let the user decide what to pay.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Your account name is used on event pages and in emails.\",\"veessc\":\"Your attendees will appear here once they have registered for your event. You can also manually add attendees.\",\"Eh5Wrd\":\"Your awesome website 🎉\",\"lkMK2r\":\"Your Details\",\"3ENYTQ\":[\"Your email request change to <0>\",[\"0\"],\" is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"KSQ8An\":\"Your Order\",\"Jwiilf\":\"Your order has been cancelled\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Your orders will appear here once they start rolling in.\",\"9TO8nT\":\"Your password\",\"P8hBau\":\"Your payment is processing.\",\"UdY1lL\":\"Your payment was not successful, please try again.\",\"fzuM26\":\"Your payment was unsuccessful. Please try again.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"x1PPdr\":\"ZIP / Postal Code\",\"BM/KQm\":\"Zip or Postal Code\",\"+LtVBt\":\"ZIP or Postal Code\",\"25QDJ1\":\"- Click to Publish\",\"WOyJmc\":\"- Click to Unpublish\",\"ncwQad\":\"(empty)\",\"B/gRsg\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" is already checked in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Active Webhooks\"],\"6MIiOI\":[[\"0\"],\" left\"],\"COnw8D\":[[\"0\"],\" logo\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizers\"],\"rZTf6P\":[[\"0\"],\" spots left\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"dtXkP9\":[[\"0\"],\" upcoming dates\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" of \",[\"totalCount\"],\" available\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" events\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" ticket types\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Tax/Fees\",\"B1St2O\":\"<0>Check-in lists help you manage event entry by day, area, or ticket type. You can link tickets to specific lists such as VIP zones or Day 1 passes and share a secure check-in link with staff. No account is required. Check-in works on mobile, desktop, or tablet, using a device camera or HID USB scanner. \",\"v9VSIS\":\"<0>Set a single total attendance limit that applies to multiple ticket types at once.<1>For example, if you link a <2>Day Pass and a <3>Full Weekend ticket, they will both draw from the same pool of spots. Once the limit is reached, all linked tickets automatically stop selling.\",\"vKXqag\":\"<0>This is the default quantity across all dates. Each date's capacity can further limit availability on the <1>Occurrence Schedule page.\",\"ZnVt5v\":\"<0>Webhooks instantly notify external services when events happen, like adding a new attendee to your CRM or mailing list upon registration, ensuring seamless automation.<1>Use third-party services like <2>Zapier, <3>IFTTT or <4>Make to create custom workflows and automate tasks.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" at current rate\"],\"M2DyLc\":\"1 Active Webhook\",\"6hIk/x\":\"1 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"943BwI\":\"1 day after end date\",\"yj3N+g\":\"1 day after start date\",\"Z3etYG\":\"1 day before event\",\"szSnlj\":\"1 hour before event\",\"yTsaLw\":\"1 ticket\",\"nz96Ue\":\"1 ticket type\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 week before event\",\"09VFYl\":\"12 tickets offered\",\"HR/cvw\":\"123 Sample Street\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"A cancellation notice has been sent to\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"A new verification code has been sent to your email\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"A short description of your organizer that will be displayed to your users.\",\"aS0jtz\":\"Abandoned\",\"uyJsf6\":\"About\",\"JvuLls\":\"Absorb fee\",\"lk74+I\":\"Absorb Fee\",\"1uJlG9\":\"Accent Color\",\"g3UF2V\":\"Accept\",\"K5+3xg\":\"Accept invitation\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Account Information\",\"EHNORh\":\"Account not found\",\"bPwFdf\":\"Accounts\",\"AhwTa1\":\"Action Required: VAT Information Needed\",\"APyAR/\":\"Active Events\",\"kCl6ja\":\"Active payment methods\",\"XJOV1Y\":\"Activity\",\"0YEoxS\":\"Add a date\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Add a Single Date\",\"CjvTPJ\":\"Add another time\",\"0XCduh\":\"Add at least one time\",\"/chGpa\":\"Add connection details for the online event.\",\"UWWRyd\":\"Add custom questions to collect additional information during checkout\",\"Z/dcxc\":\"Add Date\",\"Q219NT\":\"Add Dates\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Add location\",\"VX6WUv\":\"Add Location\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Add Question\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Add this event to your calendar\",\"BGD9Yt\":\"Add tickets\",\"uIv4Op\":\"Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active.\",\"QN2F+7\":\"Add Webhook\",\"NsWqSP\":\"Add your social media handles and website URL. These will be displayed on your public organizer page.\",\"bVjDs9\":\"Additional Fees\",\"MKqSg4\":\"Admin Access Required\",\"0Zypnp\":\"Admin Dashboard\",\"YAV57v\":\"Affiliate\",\"I+utEq\":\"Affiliate code cannot be changed\",\"/jHBj5\":\"Affiliate created successfully\",\"uCFbG2\":\"Affiliate deleted successfully\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"Affiliate sales will be tracked\",\"mJJh2s\":\"Affiliate sales will not be tracked. This will deactivate the affiliate.\",\"jabmnm\":\"Affiliate updated successfully\",\"CPXP5Z\":\"Affiliates\",\"9Wh+ug\":\"Affiliates Exported\",\"3cqmut\":\"Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"All Archived Events\",\"gKq1fa\":\"All attendees\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"All Currencies\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"All Ended Events\",\"QsYjci\":\"All Events\",\"31KB8w\":\"All failed jobs deleted\",\"D2g7C7\":\"All jobs queued for retry\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"All Statuses\",\"dr7CWq\":\"All Upcoming Events\",\"GpT6Uf\":\"Allow attendees to update their ticket information (name, email) via a secure link sent with their order confirmation.\",\"F3mW5G\":\"Allow customers to join a waitlist when this product is sold out\",\"c4uJfc\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds.\",\"ocS8eq\":[\"Already have an account? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Already Refunded\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"Also cancel this order\",\"jkNgQR\":\"Also refund this order\",\"xYqsHg\":\"Always available\",\"Wvrz79\":\"Amount Paid\",\"Zkymb9\":\"An email to associate with this affiliate. The affiliate will not be notified.\",\"vRznIT\":\"An error occurred while checking export status.\",\"eusccx\":\"An optional message to display on the highlighted product, e.g. \\\"Selling fast 🔥\\\" or \\\"Best value\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Answer updated successfully.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"vP3Nzg\":[\"Applies to \",[\"0\"],\", non-cancelled dates currently loaded on this page.\"],\"kkVyZZ\":\"Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything.\",\"je4muG\":[\"Applies to every \",[\"0\"],\", non-cancelled date in this event — including dates not currently loaded.\"],\"YIIQtt\":\"Apply Changes\",\"NzWX1Y\":\"Apply to\",\"Ps5oDT\":\"Apply to all tickets\",\"261RBr\":\"Approve Message\",\"naCW6Z\":\"April\",\"B495Gs\":\"Archive\",\"5sNliy\":\"Archive Event\",\"BrwnrJ\":\"Archive Organizer\",\"E5eghW\":\"Archive this event to hide it from the public. You can restore it later.\",\"eqFkeI\":\"Archive this organizer. This will also archive all events belonging to this organizer.\",\"BzcxWv\":\"Archived Organizers\",\"9cQBd6\":\"Are you sure you want to archive this event? It will no longer be visible to the public.\",\"Trnl3E\":\"Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer.\",\"wOvn+e\":[\"Are you sure you want to cancel \",[\"count\"],\" date(s)? Affected attendees will be notified by email.\"],\"GTxE0U\":\"Are you sure you want to cancel this date? Affected attendees will be notified by email.\",\"VkSk/i\":\"Are you sure you want to cancel this scheduled message?\",\"0aVEBY\":\"Are you sure you want to delete all failed jobs?\",\"LchiNd\":\"Are you sure you want to delete this affiliate? This action cannot be undone.\",\"vPeW/6\":\"Are you sure you want to delete this configuration? This may affect accounts using it.\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"JmVITJ\":\"Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template.\",\"aLS+A6\":\"Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template.\",\"5H3Z78\":\"Are you sure you want to delete this webhook?\",\"147G4h\":\"Are you sure you want to leave?\",\"VDWChT\":\"Are you sure you want to make this organizer draft? This will make the organizer page invisible to the public\",\"pWtQJM\":\"Are you sure you want to make this organizer public? This will make the organizer page visible to the public\",\"EOqL/A\":\"Are you sure you want to offer a spot to this person? They will receive an email notification.\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"Are you sure you want to publish this event? Once published, it will be visible to the public.\",\"4TNVdy\":\"Are you sure you want to publish this organizer profile? Once published, it will be visible to the public.\",\"8x0pUg\":\"Are you sure you want to remove this entry from the waitlist?\",\"cDtoWq\":[\"Are you sure you want to resend the order confirmation to \",[\"0\"],\"?\"],\"xeIaKw\":[\"Are you sure you want to resend the ticket to \",[\"0\"],\"?\"],\"BjbocR\":\"Are you sure you want to restore this event?\",\"7MjfcR\":\"Are you sure you want to restore this organizer?\",\"ExDt3P\":\"Are you sure you want to unpublish this event? It will no longer be visible to the public.\",\"5Qmxo/\":\"Are you sure you want to unpublish this organizer profile? It will no longer be visible to the public.\",\"Uqefyd\":\"Are you VAT registered in the EU?\",\"+QARA4\":\"Art\",\"tLf3yJ\":\"As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees.\",\"tMeVa/\":\"Ask for name and email for each ticket purchased\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"Assigned Tier\",\"F2rX0R\":\"At least one event type must be selected\",\"BCmibk\":\"Attempts\",\"6PecK3\":\"Attendance and check-in rates across all events\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Attendee Cancelled\",\"qvylEK\":\"Attendee Created\",\"Aspq3b\":\"Attendee details collection\",\"fpb0rX\":\"Attendee details copied from order\",\"0R3Y+9\":\"Attendee Email\",\"94aQMU\":\"Attendee Information\",\"KkrBiR\":\"Attendee information collection\",\"av+gjP\":\"Attendee Name\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Attendee Status\",\"D2qlBU\":\"Attendee Updated\",\"22BOve\":\"Attendee updated successfully\",\"x8Vnvf\":\"Attendee's ticket not included in this list\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Attendees Exported\",\"UoIRW8\":\"Attendees registered\",\"5UbY+B\":\"Attendees with a specific ticket\",\"4HVzhV\":\"Attendees:\",\"HVkhy2\":\"Attribution Analytics\",\"dMMjeD\":\"Attribution Breakdown\",\"1oPDuj\":\"Attribution Value\",\"DBHTm/\":\"August\",\"JgREph\":\"Auto-offer is enabled\",\"V7Tejz\":\"Auto-Process Waitlist\",\"PZ7FTW\":\"Automatically detected based on background color, but can be overridden\",\"zlnTuI\":\"Automatically offer tickets to the next person when capacity becomes available. If disabled, you can manually process the waitlist from the Waitlist page.\",\"csDS2L\":\"Available\",\"clF06r\":\"Available to Refund\",\"NB5+UG\":\"Available Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"iH8pgl\":\"Back\",\"TeSaQO\":\"Back to Accounts\",\"X7Q/iM\":\"Back to calendar\",\"kYqM1A\":\"Back to Event\",\"s5QRF3\":\"Back to messages\",\"td/bh+\":\"Back to Reports\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"Basic Information\",\"UabgBd\":\"Body is required\",\"HWXuQK\":\"Bookmark this page to manage your order anytime.\",\"CUKVDt\":\"Brand your tickets with a custom logo, colors, and footer message.\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Business\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"Button Label\",\"ChDLlO\":\"Button Text\",\"BUe8Wj\":\"Buyer pays\",\"qF1qbA\":\"Buyers see a clean price. The platform fee is deducted from your payout.\",\"dg05rc\":\"By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.).\",\"DFqasq\":[\"By continuing, you agree to the <0>\",[\"0\"],\" Terms of Service\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Bypass Application Fees\",\"AjVXBS\":\"Calendar\",\"alkXJ5\":\"Calendar view\",\"2VLZwd\":\"Call-to-Action Button\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campaign\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Cancel all products and release them back to the pool\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool.\",\"vev1Jl\":\"Cancellation\",\"Ha17hq\":[\"Cancelled \",[\"0\"],\" date(s)\"],\"01sEfm\":\"Cannot delete the system default configuration\",\"VsM1HH\":\"Capacity Assignments\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Category\",\"o+XJ9D\":\"Change\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"CIHJJf\":\"Change waitlist settings\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Charity\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"Check your email\",\"51AsAN\":\"Check your inbox! If tickets are associated with this email, you'll receive a link to view them.\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"Check-in Created\",\"F4SRy3\":\"Check-in Deleted\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Check-In List Created\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Check-in Lists\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Check-in Rate\",\"qCqdg6\":\"Check-In Status\",\"cKj6OE\":\"Check-in Summary\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinese (Traditional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"fkb+y3\":\"Choose a saved location to apply.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Choose an Organizer\",\"Crr3pG\":\"Choose calendar\",\"LAW8Vb\":\"Choose the default setting for new events. This can be overridden for individual events.\",\"pjp2n5\":\"Choose who pays the platform fee. This does not affect additional fees you've configured in your account settings.\",\"xCJdfg\":\"Clear\",\"QyOWu9\":\"Clear location — fall back to the event default\",\"V8yTm6\":\"Clear search\",\"kmnKnX\":\"Clearing removes any per-date override. Affected dates will fall back to the event's default location.\",\"/o+aQX\":\"Click to cancel\",\"gD7WGV\":\"Click to reopen for new sales\",\"CySr+W\":\"Click to view notes\",\"RG3szS\":\"close\",\"RWw9Lg\":\"Close modal\",\"XwdMMg\":\"Code can only contain letters, numbers, hyphens, and underscores\",\"+yMJb7\":\"Code is required\",\"m9SD3V\":\"Code must be at least 3 characters\",\"V1krgP\":\"Code must be no more than 20 characters\",\"psqIm5\":\"Collaborate with your team to create amazing events together.\",\"4bUH9i\":\"Collect attendee details for each ticket purchased.\",\"TkfG8v\":\"Collect details per order\",\"96ryID\":\"Collect details per ticket\",\"FpsvqB\":\"Color Mode\",\"jEu4bB\":\"Columns\",\"CWk59I\":\"Comedy\",\"rPA+Gc\":\"Communication Preferences\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"Complete your order to secure your tickets. This offer is time-limited, so don't wait too long.\",\"5YrKW7\":\"Complete your payment to secure your tickets.\",\"xGU92i\":\"Complete your profile to join the team.\",\"QOhkyl\":\"Compose\",\"ih35UP\":\"Conference Center\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"Configuration created successfully\",\"mLBUMQ\":\"Configuration deleted successfully\",\"UIENhw\":\"Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate.\",\"eeZdaB\":\"Configuration updated successfully\",\"3cKoxx\":\"Configurations\",\"8v2LRU\":\"Configure event details, location, checkout options, and email notifications.\",\"raw09+\":\"Configure how attendee details are collected during checkout\",\"FI60XC\":\"Configure Taxes & Fees\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"Confirm Email Address\",\"JRQitQ\":\"Confirm new password\",\"Auz0Mz\":\"Confirm your email to access all features.\",\"7+grte\":\"Confirmation email sent! Please check your inbox.\",\"n/7+7Q\":\"Confirmation sent to\",\"x3wVFc\":\"Congratulations! Your event is now visible to the public.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Connect Stripe to enable email template editing\",\"LmvZ+E\":\"Connect Stripe to enable messaging\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contact \",[\"0\"]],\"41BQ3k\":\"Contact Email\",\"KcXRN+\":\"Contact email for support\",\"m8WD6t\":\"Continue Setup\",\"0GwUT4\":\"Continue to Checkout\",\"sBV87H\":\"Continue to event creation\",\"nKtyYu\":\"Continue to next step\",\"F3/nus\":\"Continue to Payment\",\"p2FRHj\":\"Control how platform fees are handled for this event\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copied from above\",\"FxVG/l\":\"Copied to clipboard\",\"PiH3UR\":\"Copied!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Copy Affiliate Link\",\"iVm46+\":\"Copy Code\",\"cF2ICc\":\"Copy customer link\",\"+2ZJ7N\":\"Copy details to first attendee\",\"ZN1WLO\":\"Copy Email\",\"y1eoq1\":\"Copy link\",\"tUGbi8\":\"Copy my details to:\",\"y22tv0\":\"Copy this link to share it anywhere\",\"/4gGIX\":\"Copy to clipboard\",\"e0f4yB\":\"Could not delete location\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Could not retrieve address details\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Could not save date\",\"eeLExK\":\"Could not save location\",\"P0rbCt\":\"Cover Image\",\"60u+dQ\":\"Cover image will be displayed at the top of your event page\",\"2NLjA6\":\"Cover image will be displayed at the top of your organizer page\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"Create \",[\"0\"],\" Template\"],\"RKKhnW\":\"Create a custom widget to sell tickets on your site.\",\"6sk7PP\":\"Create a fixed number\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"Create a password\",\"j7xZ7J\":\"Create additional organizers to manage separate brands, departments, or event series under one account. Each organizer has its own events, settings, and public page.\",\"xfKgwv\":\"Create Affiliate\",\"tudG8q\":\"Create and configure tickets and merchandise for sale.\",\"YAl9Hg\":\"Create Configuration\",\"BTne9e\":\"Create custom email templates for this event that override the organizer defaults\",\"YIDzi/\":\"Create Custom Template\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"Create discounts, access codes for hidden tickets, and special offers.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Create for this date\",\"eWEV9G\":\"Create new password\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Create Ticket or Product\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Create trackable links to reward partners who promote your event.\",\"dkAPxi\":\"Create Webhook\",\"5slqwZ\":\"Create Your Event\",\"JQNMrj\":\"Create your first event\",\"ZCSSd+\":\"Create your own event\",\"67NsZP\":\"Creating Event...\",\"H34qcM\":\"Creating Organizer...\",\"1YMS+X\":\"Creating your event, please wait\",\"yiy8Jt\":\"Creating your organizer profile, please wait\",\"lfLHNz\":\"CTA label is required\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"Currently available for purchase\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Custom date and time\",\"mimF6c\":\"Custom message after checkout\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Custom Questions\",\"axv/Mi\":\"Custom template\",\"2YeVGY\":\"Customer link copied to clipboard\",\"QMHSMS\":\"Customer will receive an email confirming the refund\",\"L/Qc+w\":\"Customer's email address\",\"wpfWhJ\":\"Customer's first name\",\"GIoqtA\":\"Customer's last name\",\"NihQNk\":\"Customers\",\"7gsjkI\":\"Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization.\",\"xJaTUK\":\"Customize the layout, colors, and branding of your event homepage.\",\"MXZfGN\":\"Customize the questions asked during checkout to gather important information from your attendees.\",\"iX6SLo\":\"Customize the text shown on the continue button\",\"pxNIxa\":\"Customize your email template using Liquid templating\",\"3trPKm\":\"Customize your organizer page appearance\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"Daily revenue, taxes, fees, and refunds across all events\",\"zgCHnE\":\"Daily Sales Report\",\"nHm0AI\":\"Daily sales, tax, and fee breakdown\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Dark\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"lnYE59\":\"Date of the event\",\"gnBreG\":\"Date order was placed\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"VTsZuy\":\"Dates and times are managed on the\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Decline\",\"ovBPCi\":\"Default\",\"JtI4vj\":\"Default attendee information collection\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Default Fee Handling\",\"1bZAZA\":\"Default template will be used\",\"HNlEFZ\":\"delete\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Delete Affiliate\",\"KZN4Lc\":\"Delete All\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Delete Event\",\"+jw/c1\":\"Delete image\",\"hdyeZ0\":\"Delete Job\",\"xxjZeP\":\"Delete location\",\"sY3tIw\":\"Delete Organizer\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Delete Template\",\"mxsm1o\":\"Delete this question? This cannot be undone.\",\"snMaH4\":\"Delete webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deselect All\",\"NvuEhl\":\"Design Elements\",\"H8kMHT\":\"Didn't receive the code?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Dismiss this message\",\"BREO0S\":\"Display a checkbox allowing customers to opt-in to receive marketing communications from this event organizer.\",\"pfa8F0\":\"Display name\",\"Kdpf90\":\"Don't forget!\",\"352VU2\":\"Don't have an account? <0>Sign up\",\"AXXqG+\":\"Donation\",\"DPfwMq\":\"Done\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"Download sales, attendee, and financial reports for all completed orders.\",\"eneWvv\":\"Draft\",\"Ts8hhq\":\"Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable.\",\"TnzbL+\":\"Due to the high risk of spam, you must connect a Stripe account before you can send messages to attendees.\\nThis is to ensure that all event organizers are verified and accountable.\",\"euc6Ns\":\"Duplicate\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplicate Product\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Dutch\",\"22xieU\":\"e.g. 180 (3 hours)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"e.g., Get Tickets, Register Now\",\"fc7wGW\":\"e.g., Important update about your tickets\",\"54MPqC\":\"e.g., Standard, Premium, Enterprise\",\"3RQ81z\":\"Each person will receive an email with a reserved spot to complete their purchase.\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Edit \",[\"0\"],\" Template\"],\"v4+lcZ\":\"Edit Affiliate\",\"2iZEz7\":\"Edit Answer\",\"t2bbp8\":\"Edit Attendee\",\"etaWtB\":\"Edit Attendee Details\",\"+guao5\":\"Edit Configuration\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Edit location\",\"8oivFT\":\"Edit Location\",\"vRWOrM\":\"Edit Order Details\",\"fW5sSv\":\"Edit webhook\",\"nP7CdQ\":\"Edit Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Education\",\"iiWXDL\":\"Eligibility Failures\",\"zPiC+q\":\"Eligible Check-In Lists\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"Email & Templates\",\"hbwCKE\":\"Email address copied to clipboard\",\"dSyJj6\":\"Email addresses do not match\",\"elW7Tn\":\"Email Body\",\"ZsZeV2\":\"Email is required\",\"Be4gD+\":\"Email Preview\",\"6IwNUc\":\"Email Templates\",\"H/UMUG\":\"Email Verification Required\",\"L86zy2\":\"Email verified successfully!\",\"FSN4TS\":\"Embed Widget\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"Enable attendee self-service\",\"hEtQsg\":\"Enable attendee self-service by default\",\"Upeg/u\":\"Enable this template for sending emails\",\"7dSOhU\":\"Enable Waitlist\",\"RxzN1M\":\"Enabled\",\"xDr/ct\":\"End\",\"sGjBEq\":\"End Date & Time (optional)\",\"PKXt9R\":\"End date must be after start date\",\"UmzbPa\":\"End date of the occurrence\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"End time (optional)\",\"jpNdOC\":\"End time of the occurrence\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Enter a subject and body to see the preview\",\"khyScF\":\"Enter a time to shift by.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Enter affiliate email (optional)\",\"ARkzso\":\"Enter affiliate name\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"Enter email\",\"INDKM9\":\"Enter email subject...\",\"xUgUTh\":\"Enter first name\",\"9/1YKL\":\"Enter last name\",\"VpwcSk\":\"Enter new password\",\"kWg31j\":\"Enter unique affiliate code\",\"C3nD/1\":\"Enter your email\",\"VmXiz4\":\"Enter your email and we'll send you instructions to reset your password.\",\"n9V+ps\":\"Enter your name\",\"IdULhL\":\"Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)\",\"o21Y+P\":\"entries\",\"X88/6w\":\"Entries will appear here when customers join the waitlist for sold out products.\",\"LslKhj\":\"Error loading logs\",\"VCNHvW\":\"Event Archived\",\"ZD0XSb\":\"Event archived successfully\",\"WgD6rb\":\"Event Category\",\"b46pt5\":\"Event Cover Image\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Event Created\",\"1Hzev4\":\"Event custom template\",\"7u9/DO\":\"Event deleted successfully\",\"imgKgl\":\"Event Description\",\"kJDmsI\":\"Event details\",\"m/N7Zq\":\"Event Full Address\",\"Nl1ZtM\":\"Event Location\",\"PYs3rP\":\"Event name\",\"HhwcTQ\":\"Event Name\",\"WZZzB6\":\"Event name is required\",\"Wd5CDM\":\"Event name should be less than 150 characters\",\"4JzCvP\":\"Event Not Available\",\"Gh9Oqb\":\"Event organizer name\",\"mImacG\":\"Event Page\",\"Hk9Ki/\":\"Event restored successfully\",\"JyD0LH\":\"Event Settings\",\"cOePZk\":\"Event Time\",\"e8WNln\":\"Event timezone\",\"GeqWgj\":\"Event Timezone\",\"XVLu2v\":\"Event Title\",\"OfmsI9\":\"Event Too New\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Event Types\",\"+HeiVx\":\"Event Updated\",\"4K2OjV\":\"Event Venue\",\"19j6uh\":\"Events Performance\",\"PC3/fk\":\"Events Starting in Next 24 Hours\",\"nwiZdc\":[\"Every \",[\"0\"]],\"2LJU4o\":[\"Every \",[\"0\"],\" days\"],\"yLiYx+\":[\"Every \",[\"0\"],\" months\"],\"nn9ice\":[\"Every \",[\"0\"],\" weeks\"],\"Cdr8f9\":[\"Every \",[\"0\"],\" weeks on \",[\"1\"]],\"GVEHRk\":[\"Every \",[\"0\"],\" years\"],\"fTFfOK\":\"Every email template must include a call-to-action button that links to the appropriate page\",\"BVinvJ\":\"Examples: \\\"How did you hear about us?\\\", \\\"Company name for invoice\\\"\",\"2hGPQG\":\"Examples: \\\"T-shirt size\\\", \\\"Meal preference\\\", \\\"Job title\\\"\",\"qNuTh3\":\"Exception\",\"M1RnFv\":\"Expired\",\"kF8HQ7\":\"Export Answers\",\"2KAI4N\":\"Export CSV\",\"JKfSAv\":\"Export failed. Please try again.\",\"SVOEsu\":\"Export started. Preparing file...\",\"wuyaZh\":\"Export successful\",\"9bpUSo\":\"Exporting Affiliates\",\"jtrqH9\":\"Exporting Attendees\",\"R4Oqr8\":\"Exporting complete. Downloading file...\",\"UlAK8E\":\"Exporting Orders\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Failed\",\"8uOlgz\":\"Failed At\",\"tKcbYd\":\"Failed Jobs\",\"SsI9v/\":\"Failed to abandon order. Please try again.\",\"LdPKPR\":\"Failed to assign configuration\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Failed to cancel message\",\"cEFg3R\":\"Failed to create affiliate\",\"dVgNF1\":\"Failed to create configuration\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Failed to create template\",\"aFk48v\":\"Failed to delete configuration\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Failed to delete event\",\"Zw6LWb\":\"Failed to delete job\",\"tq0abZ\":\"Failed to delete jobs\",\"2mkc3c\":\"Failed to delete organizer\",\"vKMKnu\":\"Failed to delete question\",\"xFj7Yj\":\"Failed to delete template\",\"jo3Gm6\":\"Failed to export affiliates\",\"Jjw03p\":\"Failed to export attendees\",\"ZPwFnN\":\"Failed to export orders\",\"zGE3CH\":\"Failed to export report. Please try again.\",\"lS9/aZ\":\"Failed to load recipients\",\"X4o0MX\":\"Failed to load Webhook\",\"ETcU7q\":\"Failed to offer spot\",\"5670b9\":\"Failed to offer tickets\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"Failed to remove from waitlist\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"Failed to reorder questions\",\"EJPAcd\":\"Failed to resend order confirmation\",\"DjSbj3\":\"Failed to resend ticket\",\"YQ3QSS\":\"Failed to resend verification code\",\"wDioLj\":\"Failed to retry job\",\"DKYTWG\":\"Failed to retry jobs\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"Failed to save template\",\"l6acRV\":\"Failed to save VAT settings. Please try again.\",\"T6B2gk\":\"Failed to send message. Please try again.\",\"lKh069\":\"Failed to start export job\",\"t/KVOk\":\"Failed to start impersonation. Please try again.\",\"QXgjH0\":\"Failed to stop impersonation. Please try again.\",\"i0QKrm\":\"Failed to update affiliate\",\"NNc33d\":\"Failed to update answer.\",\"E9jY+o\":\"Failed to update attendee\",\"uQynyf\":\"Failed to update configuration\",\"i2PFQJ\":\"Failed to update event status\",\"EhlbcI\":\"Failed to update messaging tier\",\"rpGMzC\":\"Failed to update order\",\"T2aCOV\":\"Failed to update organizer status\",\"Eeo/Gy\":\"Failed to update setting\",\"kqA9lY\":\"Failed to update VAT settings\",\"7/9RFs\":\"Failed to upload image.\",\"nkNfWu\":\"Failed to upload image. Please try again.\",\"rxy0tG\":\"Failed to verify email\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"Fee Currency\",\"/sV91a\":\"Fee Handling\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Fees Bypassed\",\"cf35MA\":\"Festival\",\"pAey+4\":\"File is too large. Maximum size is 5MB.\",\"VejKUM\":\"Fill in your details above first\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filter Attendees\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filter by Event\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"First\",\"1vBhpG\":\"First attendee\",\"4pwejF\":\"First name is required\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Fixed Fee\",\"zWqUyJ\":\"Fixed fee charged per transaction\",\"LWL3Bs\":\"Fixed fee must be 0 or greater\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"lWxAUo\":\"Food & Drink\",\"nFm+5u\":\"Footer Text\",\"a8nooQ\":\"Fourth\",\"mob/am\":\"Fr\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"MY2SVM\":\"Full refund\",\"UsIfa8\":\"Full resolved address\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"General Admission\",\"3ep0Gx\":\"General information about your organizer\",\"ziAjHi\":\"Generate\",\"exy8uo\":\"Generate code\",\"4CETZY\":\"Get Directions\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Get started\",\"u6FPxT\":\"Get Tickets\",\"8KDgYV\":\"Get your event ready\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Go to Event Page\",\"gHSuV/\":\"Go to home page\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Good readability\",\"76gPWk\":\"Got it\",\"aGWZUr\":\"Gross revenue\",\"n8IUs7\":\"Gross Revenue\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Guest Management\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"Hello \",[\"0\"],\", manage your platform from here.\"],\"dORAcs\":\"Here are all the tickets associated with your email address.\",\"g+2103\":\"Here is your affiliate link\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Hi.Events Fee\",\"zppscQ\":\"Hi.Events platform fees and VAT breakdown by transaction\",\"D+zLDD\":\"Hidden\",\"DRErHC\":\"Hidden from attendees - only visible to organizers\",\"NNnsM0\":\"Hide advanced options\",\"P+5Pbo\":\"Hide Answers\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"Hide Options\",\"gtEbeW\":\"Highlight\",\"NF8sdv\":\"Highlight Message\",\"MXSqmS\":\"Highlight this product\",\"7ER2sc\":\"Highlighted\",\"sq7vjE\":\"Highlighted products will have a different background color to make them stand out on the event page.\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"sy9anN\":\"How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"AVpmAa\":\"How to pay offline\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Hungarian\",\"8Wgd41\":\"I acknowledge my responsibilities as a data controller\",\"O8m7VA\":\"I agree to receive email notifications related to this event\",\"YLgdk5\":\"I confirm this is a transactional message related to this event\",\"4/kP5a\":\"If a new tab did not open automatically, please click the button below to continue to checkout.\",\"W/eN+G\":\"If blank, the address will be used to generate a Google Maps link\",\"iIEaNB\":\"If you have an account with us, you will receive an email with instructions on how to reset your password.\",\"an5hVd\":\"Images\",\"tSVr6t\":\"Impersonate\",\"TWXU0c\":\"Impersonate User\",\"5LAZwq\":\"Impersonation started\",\"IMwcdR\":\"Impersonation stopped\",\"0I0Hac\":\"Important Notice\",\"yD3avI\":\"Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving.\",\"jT142F\":[\"In \",[\"diffHours\"],\" hours\"],\"OoSyqO\":[\"In \",[\"diffMinutes\"],\" minutes\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"Ip0hl5\":\"in_person, online, unset, or mixed\",\"F1Xp97\":\"Individual attendees\",\"85e6zs\":\"Insert Liquid Token\",\"38KFY0\":\"Insert Variable\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrations\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"Invalid email\",\"5tT0+u\":\"Invalid email format\",\"f9WRpE\":\"Invalid file type. Please upload an image.\",\"tnL+GP\":\"Invalid Liquid syntax. Please correct it and try again.\",\"N9JsFT\":\"Invalid VAT number format\",\"g+lLS9\":\"Invite a team member\",\"1z26sk\":\"Invite Team Member\",\"KR0679\":\"Invite Team Members\",\"aH6ZIb\":\"Invite Your Team\",\"IuMGvq\":\"Invoice\",\"Lj7sBL\":\"Italian\",\"F5/CBH\":\"item(s)\",\"BzfzPK\":\"Items\",\"rjyWPb\":\"January\",\"KmWyx0\":\"Job\",\"o5r6b2\":\"Job deleted\",\"cd0jIM\":\"Job Details\",\"ruJO57\":\"Job Name\",\"YZi+Hu\":\"Job queued for retry\",\"nCywLA\":\"Join from anywhere\",\"SNzppu\":\"Join Waitlist\",\"dLouFI\":[\"Join Waitlist for \",[\"productDisplayName\"]],\"2gMuHR\":\"Joined\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Just looking for your tickets?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Keep me updated on news and events from \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"4Sffp7\":\"Label for the occurrence\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Last 14 Days\",\"ve9JTU\":\"Last name is required\",\"h0Q9Iw\":\"Last Response\",\"gw3Ur5\":\"Last Triggered\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"pzAivY\":\"Latitude of the resolved location\",\"N5TErv\":\"Leave empty for unlimited\",\"L/hDDD\":\"Leave empty to apply this check-in list to all occurrences\",\"9Pf3wk\":\"Leave on to cover every ticket on the event. Turn off to pick specific tickets.\",\"Hq2BzX\":\"Let them know about the change\",\"+uexiy\":\"Let them know about the changes\",\"exYcTF\":\"Library\",\"1njn7W\":\"Light\",\"1qY5Ue\":\"Link Expired or Invalid\",\"+zSD/o\":\"Link to event homepage\",\"psosdY\":\"Link to order details\",\"6JzK4N\":\"Link to ticket\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links Allowed\",\"2BBAbc\":\"List\",\"5NZpX8\":\"List view\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live Events\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Loading preview...\",\"IoDI2o\":\"Loading tokens...\",\"G3Ge9Z\":\"Loading webhook logs...\",\"NFxlHW\":\"Loading Webhooks\",\"E0DoRM\":\"Location deleted\",\"NtLHT3\":\"Location Formatted Address\",\"h4vxDc\":\"Location Latitude\",\"f2TMhR\":\"Location Longitude\",\"lnCo2f\":\"Location Mode\",\"8pmGFk\":\"Location Name\",\"7w8lJU\":\"Location saved\",\"YsRXDD\":\"Location updated\",\"A/kIva\":\"location updates\",\"VppBoU\":\"Locations\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Cover\",\"gddQe0\":\"Logo and cover image for your organizer\",\"TBEnp1\":\"Logo will be displayed in the header\",\"Jzu30R\":\"Logo will be displayed on the ticket\",\"zKTMTg\":\"Longitude of the resolved location\",\"PSRm6/\":\"Look Up My Tickets\",\"yJFu/X\":\"Main Office\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Manage \",[\"0\"]],\"wZJfA8\":\"Manage dates and times for your recurring event\",\"RlzPUE\":\"Manage on Stripe\",\"6NXJRK\":\"Manage Schedule\",\"zXuaxY\":\"Manage your event's waitlist, view stats, and offer tickets to attendees.\",\"BWTzAb\":\"Manual\",\"g2npA5\":\"Manual offer\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max Messages / 24h\",\"Qp4HWD\":\"Max Recipients / Message\",\"3JzsDb\":\"May\",\"agPptk\":\"Medium\",\"xDAtGP\":\"Message\",\"bECJqy\":\"Message approved successfully\",\"1jRD0v\":\"Message attendees with specific tickets\",\"uQLXbS\":\"Message cancelled\",\"48rf3i\":\"Message cannot exceed 5000 characters\",\"ZPj0Q8\":\"Message Details\",\"Vjat/X\":\"Message is required\",\"0/yJtP\":\"Message order owners with specific products\",\"saG4At\":\"Message Scheduled\",\"mFdA+i\":\"Messaging Tier\",\"v7xKtM\":\"Messaging tier updated successfully\",\"H9HlDe\":\"minutes\",\"agRWc1\":\"Minutes\",\"YYzBv9\":\"Mo\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Monetary values are approximate totals across all currencies\",\"qvF+MT\":\"Monitor and manage failed background jobs\",\"kY2ll9\":\"month\",\"HajiZl\":\"Month\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Most Viewed Events (Last 14 Days)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Music\",\"oVGCGh\":\"My Tickets\",\"8/brI5\":\"Name is required\",\"sFFArG\":\"Name must be less than 255 characters\",\"sCV5Yc\":\"Name of the event\",\"xxU3NX\":\"Net Revenue\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"New location\",\"ArHT/C\":\"New Signups\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"Nightlife\",\"HSw5l3\":\"No - I'm an individual or non-VAT registered business\",\"VHfLAW\":\"No accounts\",\"+jIeoh\":\"No accounts found\",\"074+X8\":\"No Active Webhooks\",\"zxnup4\":\"No Affiliates to show\",\"Dwf4dR\":\"No attendee questions yet\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"No attribution data found\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"No capacity\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"No check-in lists available for this event.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"No configurations found\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"No data found for the selected filters. Try adjusting the date range or currency.\",\"lFVUyx\":\"No date-specific check-in list\",\"I8mtzP\":\"No dates available this month. Try navigating to another month.\",\"yDukIL\":\"No dates match the current filters.\",\"B7phdj\":\"No dates match your filters\",\"/ZB4Um\":\"No dates match your search\",\"gEdNe8\":\"No dates scheduled yet\",\"27GYXJ\":\"No dates scheduled.\",\"pZNOT9\":\"No end date\",\"dW40Uz\":\"No events found\",\"8pQ3NJ\":\"No events starting in the next 24 hours\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"No failed jobs\",\"EpvBAp\":\"No invoice\",\"XZkeaI\":\"No logs found\",\"nrSs2u\":\"No messages found\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"No order questions yet\",\"EJ7bVz\":\"No orders found\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"No organizer activity in the last 14 days\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"No other organizers available\",\"PChXMe\":\"No Paid Orders\",\"6jYQGG\":\"No past events\",\"CHzaTD\":\"No popular events in the last 14 days\",\"zK/+ef\":\"No products available for selection\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"No products have waiting entries\",\"wYiAtV\":\"No recent account signups\",\"UW90md\":\"No recipients found\",\"QoAi8D\":\"No response\",\"JeO7SI\":\"No Response\",\"EK/G11\":\"No responses yet\",\"7J5OKy\":\"No saved locations yet\",\"wpCjcf\":\"No saved locations yet. They'll appear here as you create events with addresses.\",\"mPdY6W\":\"No suggestions\",\"3sRuiW\":\"No Tickets Found\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"No upcoming events\",\"qpC74J\":\"No users found\",\"8wgkoi\":\"No viewed events in the last 14 days\",\"Arzxc1\":\"No waitlist entries\",\"n5vdm2\":\"No webhook events have been recorded for this endpoint yet. Events will appear here once they are triggered.\",\"4GhX3c\":\"No Webhooks\",\"4+am6b\":\"No, keep me here\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Not Checked In\",\"8n10sz\":\"Not Eligible\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"UYWXdN\":\"Occurrence End Date\",\"k7dZT5\":\"Occurrence End Time\",\"Opinaj\":\"Occurrence Label\",\"V9flmL\":\"Occurrence Schedule\",\"NUTUUs\":\"Occurrence Schedule page\",\"AT8UKD\":\"Occurrence Start Date\",\"Um8bvD\":\"Occurrence Start Time\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"of\",\"9h7RDh\":\"Offer\",\"EfK2O6\":\"Offer Spot\",\"3sVRey\":\"Offer Tickets\",\"2O7Ybb\":\"Offer Timeout\",\"1jUg5D\":\"Offered\",\"l+/HS6\":[\"Offers expire after \",[\"timeoutHours\"],\" hours.\"],\"lQgMLn\":\"Office or venue name\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offline Payment\",\"nO3VbP\":[\"On sale \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"w3DG44\":\"Online Connection Details\",\"WjSpu5\":\"Online Event\",\"TP6jss\":\"Online event connection details\",\"NdOxqr\":\"Only account administrators can delete or archive events. Contact your account admin for assistance.\",\"rnoDMF\":\"Only account administrators can delete or archive organizers. Contact your account admin for assistance.\",\"bU7oUm\":\"Only send to orders with these statuses\",\"M2w1ni\":\"Only visible with promo code\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Optional nickname shown in pickers, e.g. \\\"HQ Conference Room\\\"\",\"HXMJxH\":\"Optional text for disclaimers, contact info, or thank you notes (single line only)\",\"L565X2\":\"options\",\"8m9emP\":\"or add a single date\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Order & Ticket\",\"H5qWhm\":\"Order cancelled\",\"b6+Y+n\":\"Order complete\",\"x4MLWE\":\"Order Confirmation\",\"CsTTH0\":\"Order confirmation resent successfully\",\"ppuQR4\":\"Order Created\",\"0UZTSq\":\"Order Currency\",\"xtQzag\":\"Order details\",\"HdmwrI\":\"Order Email\",\"bwBlJv\":\"Order First Name\",\"vrSW9M\":\"Order has been canceled and refunded. The order owner has been notified.\",\"rzw+wS\":\"Order Holders\",\"oI/hGR\":\"Order ID\",\"Pc729f\":\"Order Is Awaiting Offline Payment\",\"F4NXOl\":\"Order Last Name\",\"RQCXz6\":\"Order Limits\",\"SO9AEF\":\"Order limits set\",\"5RDEEn\":\"Order Locale\",\"vu6Arl\":\"Order Marked as Paid\",\"sLbJQz\":\"Order not found\",\"kvYpYu\":\"Order Not Found\",\"i8VBuv\":\"Order Number\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Order owner\",\"eB5vce\":\"Order owners with a specific product\",\"CxLoxM\":\"Order owners with products\",\"DoH3fD\":\"Order Payment Pending\",\"UkHo4c\":\"Order Ref\",\"EZy55F\":\"Order Refunded\",\"6eSHqs\":\"Order statuses\",\"oW5877\":\"Order Total\",\"e7eZuA\":\"Order Updated\",\"1SQRYo\":\"Order updated successfully\",\"KndP6g\":\"Order URL\",\"3NT0Ck\":\"Order was cancelled\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Orders Completed\",\"5It1cQ\":\"Orders Exported\",\"tlKX/S\":\"Orders spanning multiple dates will be flagged for manual review.\",\"UQ0ACV\":\"Orders Total\",\"B/EBQv\":\"Orders:\",\"qtGTNu\":\"Organic Accounts\",\"ucgZ0o\":\"Organization\",\"P/JHA4\":\"Organizer archived successfully\",\"S3CZ5M\":\"Organizer Dashboard\",\"GzjTd0\":\"Organizer deleted successfully\",\"Uu0hZq\":\"Organizer Email\",\"Gy7BA3\":\"Organizer email address\",\"SQqJd8\":\"Organizer Not Found\",\"HF8Bxa\":\"Organizer restored successfully\",\"wpj63n\":\"Organizer Settings\",\"o1my93\":\"Organizer status update failed. Please try again later\",\"rLHma1\":\"Organizer status updated\",\"LqBITi\":\"Organizer/default template will be used\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"Other\",\"RsiDDQ\":\"Other Lists (Ticket Not Included)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Outgoing Messages\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"Overview\",\"6WdDG7\":\"Page\",\"8uqsE5\":\"Page no longer available\",\"QkLf4H\":\"Page URL\",\"sF+Xp9\":\"Page Views\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Paid Accounts\",\"5F7SYw\":\"Partial refund\",\"fFYotW\":[\"Partially refunded: \",[\"0\"]],\"i8day5\":\"Pass fee to buyer\",\"k4FLBQ\":\"Pass to Buyer\",\"Ff0Dor\":\"Past\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"Past Events\",\"/l/ckQ\":\"Paste URL\",\"URAE3q\":\"Paused\",\"4fL/V7\":\"Pay\",\"OZK07J\":\"Pay to unlock\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Payment Date\",\"ENEPLY\":\"Payment method\",\"8Lx2X7\":\"Payment received\",\"fx8BTd\":\"Payments not available\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Pending Review\",\"dPYu1F\":\"Per Attendee\",\"mQV/nJ\":\"per min\",\"VlXNyK\":\"Per order\",\"hauDFf\":\"Per ticket\",\"mnF83a\":\"Percentage Fee\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"Percentage must be between 0 and 100\",\"MkuVAZ\":\"Percentage of transaction amount\",\"/Bh+7r\":\"Performance\",\"fIp56F\":\"Permanently delete this event and all its associated data.\",\"nJeeX7\":\"Permanently delete this organizer and all its events.\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"Personal Information\",\"zmwvG2\":\"Phone\",\"SdM+Q1\":\"Pick a location\",\"tSR/oe\":\"Pick an end date\",\"e8kzpp\":\"Pick at least one day of the month\",\"35C8QZ\":\"Pick at least one day of the week\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Placed\",\"wBJR8i\":\"Planning an event?\",\"J3lhKT\":\"Platform fee\",\"RD51+P\":[\"Platform fee of \",[\"0\"],\" deducted from your payout\"],\"br3Y/y\":\"Platform Fees\",\"3buiaw\":\"Platform Fees Report\",\"kv9dM4\":\"Platform Revenue\",\"PJ3Ykr\":\"Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions.\",\"OtjenF\":\"Please enter a valid email address\",\"jEw0Mr\":\"Please enter a valid URL\",\"n8+Ng/\":\"Please enter the 5-digit code\",\"r+lQXT\":\"Please enter your VAT number\",\"Dvq0wf\":\"Please provide an image.\",\"2cUopP\":\"Please restart the checkout process.\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"Please select a date range\",\"EFq6EG\":\"Please select an image.\",\"fuwKpE\":\"Please try again.\",\"klWBeI\":\"Please wait before requesting another code\",\"hfHhaa\":\"Please wait while we prepare your affiliates for export...\",\"o+tJN/\":\"Please wait while we prepare your attendees for export...\",\"+5Mlle\":\"Please wait while we prepare your orders for export...\",\"trnWaw\":\"Polish\",\"luHAJY\":\"Popular Events (Last 14 Days)\",\"p/78dY\":\"Position\",\"TjX7xL\":\"Post Checkout Message\",\"OESu7I\":\"Prevent overselling by sharing inventory across multiple ticket types.\",\"NgVUL2\":\"Preview checkout form\",\"cs5muu\":\"Preview Event page\",\"+4yRWM\":\"Price of the ticket\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"Price Tiers\",\"ReihZ7\":\"Print Preview\",\"JnuPvH\":\"Print Ticket\",\"tYF4Zq\":\"Print to PDF\",\"LcET2C\":\"Privacy Policy\",\"8z6Y5D\":\"Process Refund\",\"JcejNJ\":\"Processing order\",\"EWCLpZ\":\"Product Created\",\"XkFYVB\":\"Product Deleted\",\"YMwcbR\":\"Product sales, revenue, and tax breakdown\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Product Updated\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Promo code\",\"k3wH7i\":\"Promo code usage and discount breakdown\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Promo Only\",\"dLm8V5\":\"Promotional emails may result in account suspension\",\"XoEWtl\":\"Provide at least one address field for the new location.\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"aemBRq\":\"Provider\",\"EEYbdt\":\"Publish\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Purchased\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qty\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Questions reordered\",\"b24kPi\":\"Queue\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Rate\",\"mnUGVC\":\"Rate limit exceeded. Please try again later.\",\"t41hVI\":\"Re-offer Spot\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Receive product updates from \",[\"0\"],\".\"],\"pLXbi8\":\"Recent Account Signups\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Recent Orders\",\"7hPBBn\":\"recipient\",\"jp5bq8\":\"recipients\",\"yPrbsy\":\"Recipients\",\"E1F5Ji\":\"Recipients are available after the message is sent\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Recurring Event\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecting to Stripe...\",\"pnoTN5\":\"Referral Accounts\",\"ACKu03\":\"Refresh Preview\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Refund amount\",\"qY4rpA\":\"Refund failed\",\"TspTcZ\":\"Refund Issued\",\"FaK/8G\":[\"Refund Order \",[\"0\"]],\"MGbi9P\":\"Refund pending\",\"BDSRuX\":[\"Refunded: \",[\"0\"]],\"bU4bS1\":\"Refunds\",\"rYXfOA\":\"Regional Settings\",\"5tl0Bp\":\"Registration Questions\",\"ZNo5k1\":\"Remaining\",\"EMnuA4\":\"Reminder scheduled\",\"Bjh87R\":\"Remove label from all dates\",\"KkJtVK\":\"Reopen for new sales\",\"XJwWJp\":\"Reopen this date for new sales? Previously cancelled tickets will not be restored — affected attendees stay cancelled and any refunds already issued are not reversed.\",\"bAwDQs\":\"Repeat every\",\"CQeZT8\":\"Report not found\",\"JEPMXN\":\"Request a new link\",\"TMLAx2\":\"Required\",\"mdeIOH\":\"Resend code\",\"sQxe68\":\"Resend Confirmation\",\"bxoWpz\":\"Resend Confirmation Email\",\"G42SNI\":\"Resend email\",\"TTpXL3\":[\"Resend in \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Resend Ticket\",\"Uwsg2F\":\"Reserved\",\"8wUjGl\":\"Reserved until\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"Resetting...\",\"404zLK\":\"Resolved location or venue name\",\"ZlCDf+\":\"Response\",\"bsydMp\":\"Response Details\",\"yKu/3Y\":\"Restore\",\"RokrZf\":\"Restore Event\",\"/JyMGh\":\"Restore Organizer\",\"HFvFRb\":\"Restore this event to make it visible again.\",\"DDIcqy\":\"Restore this organizer and make it active again.\",\"mO8KLE\":\"results\",\"6gRgw8\":\"Retry\",\"1BG8ga\":\"Retry All\",\"rDC+T6\":\"Retry Job\",\"CbnrWb\":\"Return to Event\",\"mdQ0zb\":\"Reusable venues for your events. Locations created from the autocomplete are saved here automatically.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Revenue Summary\",\"O/8Ceg\":\"Revenue today\",\"CfuueU\":\"Revoke Offer\",\"RIgKv+\":\"Run until a specific date\",\"JYRqp5\":\"Sa\",\"dFFW9L\":[\"Sale ended \",[\"0\"]],\"loCKGB\":[\"Sale ends \",[\"0\"]],\"wlfBad\":\"Sale Period\",\"qi81Jg\":\"Sale period dates apply across all dates in your schedule. To control pricing and availability for individual dates, use the overrides on the <0>Occurrence Schedule page.\",\"5CDM6r\":\"Sale period set\",\"ftzaMf\":\"Sale period, order limits, visibility\",\"zpekWp\":[\"Sale starts \",[\"0\"]],\"mUv9U4\":\"Sales\",\"9KnRdL\":\"Sales are paused\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Sales, orders, and performance metrics for all events\",\"3Q1AWe\":\"Sales:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Sample ticket price\",\"8BRPoH\":\"Sample Venue\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Save Social Links\",\"9Y3hAT\":\"Save Template\",\"C8ne4X\":\"Save Ticket Design\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Save VAT Settings\",\"4RvD9q\":\"Saved location\",\"cgw0cL\":\"Saved locations\",\"lvSrsT\":\"Saved Locations\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Scan\",\"0zd6Nm\":\"Scan a ticket to check in an attendee\",\"bQG7Qk\":\"Scanned tickets will appear here\",\"WDYSLJ\":\"Scanner mode\",\"gmB6oO\":\"Schedule\",\"j6NnBq\":\"Schedule created successfully\",\"YP7frt\":\"Schedule ends on\",\"QS1Nla\":\"Schedule for later\",\"NAzVVw\":\"Schedule Message\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Scheduled\",\"qcP/8K\":\"Scheduled time\",\"A1taO8\":\"Search\",\"ftNXma\":\"Search affiliates...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Search by account name or email...\",\"VX+B3I\":\"Search by event title or organizer...\",\"R0wEyA\":\"Search by job name or exception...\",\"VT+urE\":\"Search by name or email...\",\"GHdjuo\":\"Search by name, email, or account...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Search by order ID, customer name, or email...\",\"4DSz7Z\":\"Search by subject, event, or account...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Search messages...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Secure Checkout\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Select a category\",\"hTKQwS\":\"Select a Date & Time\",\"e4L7bF\":\"Select a message to view its contents\",\"zPRPMf\":\"Select a tier\",\"uqpVri\":\"Select a time\",\"BFRSTT\":\"Select Account\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Select All\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Select an event\",\"CFbaPk\":\"Select attendee group\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Select currency\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Select end date and time\",\"gTN6Ws\":\"Select end time\",\"0U6E9W\":\"Select event category\",\"j9cPeF\":\"Select event types\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"Select start date and time\",\"dJZTv2\":\"Select start time\",\"x8XMsJ\":\"Select the messaging tier for this account. This controls message limits and link permissions.\",\"aT3jZX\":\"Select timezone\",\"TxfvH2\":\"Select which attendees should receive this message\",\"Ropvj0\":\"Select which events will trigger this webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"Selected\",\"uq3CXQ\":\"Sell out your event.\",\"j9b/iy\":\"Selling fast 🔥\",\"73qYgo\":\"Send as test\",\"HMAqFK\":\"Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later.\",\"22Itl6\":\"Send me a copy\",\"NpEm3p\":\"Send now\",\"nOBvex\":\"Send real-time order and attendee data to your external systems.\",\"1lNPhX\":\"Send refund notification email\",\"eaUTwS\":\"Send reset link\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Send your first message\",\"3nMAVT\":\"Sending in 2d 4h\",\"IoAuJG\":\"Sending...\",\"h69WC6\":\"Sent\",\"BVu2Hz\":\"Sent By\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Sent to customers when they place an order\",\"LxSN5F\":\"Sent to each attendee with their ticket details\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"Set default platform fee settings for new events created under this organizer.\",\"eXssj5\":\"Set default settings for new events created under this organizer.\",\"uPe5p8\":\"Set how long each date lasts\",\"xNsRxU\":\"Set number of dates\",\"ODuUEi\":\"Set or clear the date label\",\"buHACR\":\"Set the end time of each date to be this long after its start time.\",\"TaeFgl\":\"Set to unlimited (remove limit)\",\"pd6SSe\":\"Set up a recurring schedule to automatically create dates, or add them one at a time.\",\"s0FkEx\":\"Set up check-in lists for different entrances, sessions, or days.\",\"TaWVGe\":\"Set up payouts\",\"gzXY7l\":\"Set Up Schedule\",\"xMO+Ao\":\"Set up your organization\",\"h/9JiC\":\"Set Up Your Schedule\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Setting updated\",\"Ohn74G\":\"Setup & Design\",\"1W5XyZ\":\"Setup takes just a few minutes — you don't need an existing Stripe account. Stripe handles cards, wallets, regional payment methods, and fraud protection so you can focus on your event.\",\"GG7qDw\":\"Share Affiliate Link\",\"hL7sDJ\":\"Share Organizer Page\",\"jy6QDF\":\"Shared Capacity Management\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Show advanced options\",\"cMW+gm\":[\"Show all platforms (\",[\"0\"],\" more with values)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"UVPI5D\":\"Show fewer platforms\",\"Eu/N/d\":\"Show marketing opt-in checkbox\",\"SXzpzO\":\"Show marketing opt-in checkbox by default\",\"57tTk5\":\"Show more dates\",\"b33PL9\":\"Show more platforms\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"t1LIQW\":[\"Showing \",[\"0\"],\" of \",[\"totalRows\"],\" records\"],\"E717U9\":[\"Showing \",[\"0\"],\"–\",[\"1\"],\" of \",[\"2\"]],\"5rzhBQ\":[\"Showing \",[\"MAX_VISIBLE\"],\" of \",[\"totalAvailable\"],\" dates. Type to search.\"],\"WSt3op\":[\"Showing the first \",[\"0\"],\" — the remaining \",[\"1\"],\" session(s) will still be targeted when the message is sent.\"],\"OJLTEL\":\"Shown to staff the first time they open the check-in page.\",\"jVRHeq\":\"Signed Up\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Social Links\",\"j/TOB3\":\"Social Links & Website\",\"s9KGXU\":\"Sold\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"KTxc6k\":\"Something went wrong, please try again, or contact support if the problem persists\",\"lkE00/\":\"Something went wrong. Please try again later.\",\"wdxz7K\":\"Source\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sports\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"JcQp9p\":\"Start date & time\",\"0m/ekX\":\"Start Date & Time\",\"izRfYP\":\"Start date is required\",\"tuO4fV\":\"Start date of the occurrence\",\"2R1+Rv\":\"Start time of the event\",\"2Olov3\":\"Start time of the occurrence\",\"n9ZrDo\":\"Start typing a venue or address...\",\"qeFVhN\":[\"Starts in \",[\"diffDays\"],\" days\"],\"AOqtxN\":[\"Starts in \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Starts in \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Starts in \",[\"seconds\"],\"s\"],\"NqChgF\":\"Starts tomorrow\",\"2NbyY/\":\"Statistics\",\"GVUxAX\":\"Statistics are based on account creation date\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Stop Impersonating\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe Connected\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe Not Connected\",\"9i0++A\":\"Stripe Payment ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"eYbd7b\":\"Su\",\"ii0qn/\":\"Subject is required\",\"M7Uapz\":\"Subject will appear here\",\"6aXq+t\":\"Subject:\",\"JwTmB6\":\"Successfully Duplicated Product\",\"WUOCgI\":\"Successfully offered a spot\",\"IvxA4G\":[\"Successfully offered tickets to \",[\"count\"],\" people\"],\"kKpkzy\":\"Successfully offered tickets to 1 person\",\"Zi3Sbw\":\"Successfully removed from waitlist\",\"RuaKfn\":\"Successfully Updated Address\",\"kzx0uD\":\"Successfully Updated Event Defaults\",\"5n+Wwp\":\"Successfully Updated Organizer\",\"DMCX/I\":\"Successfully Updated Platform Fee Defaults\",\"URUYHc\":\"Successfully Updated Platform Fee Settings\",\"0Dk/l8\":\"Successfully Updated SEO Settings\",\"S8Tua9\":\"Successfully Updated Settings\",\"MhOoLQ\":\"Successfully Updated Social Links\",\"CNSSfp\":\"Successfully Updated Tracking Settings\",\"kj7zYe\":\"Successfully updated Webhook\",\"dXoieq\":\"Summary\",\"/RfJXt\":[\"Summer Music Festival \",[\"0\"]],\"CWOPIK\":\"Summer Music Festival 2025\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Swedish\",\"JZTQI0\":\"Switch Organizer\",\"9YHrNC\":\"System Default\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"Tax collected grouped by tax type and event\",\"Ye321X\":\"Tax Name\",\"WyCBRt\":\"Tax Summary\",\"GkH0Pq\":\"Taxes & fees applied\",\"Rwiyt2\":\"Taxes configured\",\"iQZff7\":\"Taxes, Fees, Visibility, Sale Period, Product Highlight & Order Limits\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"Tech\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Tell people what to expect at your event\",\"NiIUyb\":\"Tell us about your event\",\"DovcfC\":\"Tell us about your organization. This information will be displayed on your event pages.\",\"69GWRq\":\"Tell us how often your event repeats and we'll create all the dates for you.\",\"mXPbwY\":\"Tell us your VAT registration status so we apply the correct VAT treatment to platform fees.\",\"7wtpH5\":\"Template Active\",\"QHhZeE\":\"Template created successfully\",\"xrWdPR\":\"Template deleted successfully\",\"G04Zjt\":\"Template saved successfully\",\"xowcRf\":\"Terms of Service\",\"6K0GjX\":\"Text may be hard to read\",\"u0F1Ey\":\"Th\",\"nm3Iz/\":\"Thank you for attending!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"The background color of the page. When using cover image, this is applied as an overlay.\",\"MDNyJz\":\"The code will expire in 10 minutes. Check your spam folder if you don't see the email.\",\"AIF7J2\":\"The currency in which the fixed fee is defined. It will be converted to the order currency at checkout.\",\"MJm4Tq\":\"The currency of the order\",\"cDHM1d\":\"The email address has been changed. The attendee will receive a new ticket at the updated email address.\",\"I/NNtI\":\"The event venue\",\"tXadb0\":\"The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"EBzPwC\":\"The full event address\",\"sxKqBm\":\"The full order amount will be refunded to the customer's original payment method.\",\"KgDp6G\":\"The link you are trying to access has expired or is no longer valid. Please check your email for an updated link to manage your order.\",\"5OmEal\":\"The locale of the customer\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"The platform fee is added to the ticket price. Buyers pay more, but you receive the full ticket price.\",\"HxxXZO\":\"The primary brand color used for buttons and highlights\",\"z0KrIG\":\"The scheduled time is required\",\"EWErQh\":\"The scheduled time must be in the future\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"The template body contains invalid Liquid syntax. Please correct it and try again.\",\"injXD7\":\"The VAT number could not be validated. Please check the number and try again.\",\"A4UmDy\":\"Theater\",\"tDwYhx\":\"Theme & Colors\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"HrIl0p\":[\"There's no check-in list scoped to this date. The \\\"\",[\"0\"],\"\\\" list checks in attendees across every date — staff scanning a ticket for a different date will still succeed.\"],\"dt3TwA\":\"These are the default prices and quantities across all dates. Sale dates on tiers apply globally. You can override prices and quantities for individual dates on the <0>Occurrence Schedule page.\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"These details will only be shown if the order is completed successfully.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"QP3gP+\":\"These settings apply only to copied embed code and won't be stored.\",\"HirZe8\":\"These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions.\",\"lzAaG5\":\"These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead.\",\"UlykKR\":\"Third\",\"wkP5FM\":\"This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes.\",\"SOmGDa\":\"This check-in list is scoped to a session that has been cancelled, so it can no longer be used for check-ins.\",\"XBNC3E\":\"This code will be used to track sales. Only letters, numbers, hyphens, and underscores allowed.\",\"AaP0M+\":\"This color combination may be hard to read for some users\",\"o1phK/\":[\"This date has \",[\"orderCount\"],\" order(s) that will be affected.\"],\"F/UtGt\":\"This date has been cancelled. You can still delete it to remove it permanently.\",\"BLZ7pX\":\"This date is in the past. It will be created but won't be visible to attendees under upcoming dates.\",\"7IIY0z\":\"This date is marked sold out.\",\"bddWMP\":\"This date is no longer available. Please select another date.\",\"RzEvf5\":\"This event has ended\",\"YClrdK\":\"This event is not published yet\",\"dFJnia\":\"This is the name of your organizer that will be displayed to your users.\",\"vt7jiq\":\"This is the only time the signing secret will be shown. Please copy it now and store it securely.\",\"L7dIM7\":\"This link is invalid or has expired.\",\"MR5ygV\":\"This link is no longer valid\",\"9LEqK0\":\"This name is visible to end users\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"This order is being processed.\",\"sjNPMw\":\"This order was abandoned. You can start a new order anytime.\",\"OhCesD\":\"This order was cancelled. You can start a new order anytime.\",\"lyD7rQ\":\"This organizer profile is not published yet\",\"9b5956\":\"This preview shows how your email will look with sample data. Actual emails will use real values.\",\"uM9Alj\":\"This product is highlighted on the event page\",\"RqSKdX\":\"This product is sold out\",\"W12OdJ\":\"This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data.\",\"0Ew0uk\":\"This ticket was just scanned. Please wait before scanning again.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"This will be used for notifications and communication with your users.\",\"rhsath\":\"This will not be visible to customers, but helps you identify the affiliate.\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Ticket Design\",\"EZC/Cu\":\"Ticket design saved successfully\",\"bbslmb\":\"Ticket Designer\",\"1BPctx\":\"Ticket for\",\"bgqf+K\":\"Ticket holder's email\",\"oR7zL3\":\"Ticket holder's name\",\"HGuXjF\":\"Ticket holders\",\"CMUt3Y\":\"Ticket Holders\",\"awHmAT\":\"Ticket ID\",\"6czJik\":\"Ticket Logo\",\"OkRZ4Z\":\"Ticket Name\",\"t79rDv\":\"Ticket Not Found\",\"6tmWch\":\"Ticket or Product\",\"1tfWrD\":\"Ticket Preview for\",\"KnjoUA\":\"Ticket price\",\"tGCY6d\":\"Ticket Price\",\"pGZOcL\":\"Ticket resent successfully\",\"8jLPgH\":\"Ticket Type\",\"X26cQf\":\"Ticket URL\",\"8qsbZ5\":\"Ticketing & Sales\",\"zNECqg\":\"tickets\",\"6GQNLE\":\"Tickets\",\"NRhrIB\":\"Tickets & Products\",\"OrWHoZ\":\"Tickets are automatically offered to waitlisted customers when capacity becomes available.\",\"EUnesn\":\"Tickets Available\",\"AGRilS\":\"Tickets Sold\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"dMtLDE\":\"to\",\"/jQctM\":\"To\",\"tiI71C\":\"To increase your limits, contact us at\",\"ecUA8p\":\"Today\",\"W428WC\":\"Toggle columns\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Top Organizers (Last 14 Days)\",\"3sZ0xx\":\"Total Accounts\",\"EaAPbv\":\"Total amount paid\",\"SMDzqJ\":\"Total Attendees\",\"orBECM\":\"Total Collected\",\"k5CU8c\":\"Total Entries\",\"4B7oCp\":\"Total Fee\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total Users\",\"oJjplO\":\"Total Views\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Track account growth and performance by attribution source\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"True if offline payment\",\"9GsDR2\":\"True if payment pending\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Try another email\",\"3DZvE7\":\"Try Hi.Events Free\",\"7P/9OY\":\"Tu\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turkish\",\"GdOhw6\":\"Turn sound off\",\"KUOhTy\":\"Turn sound on\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Type \\\"delete\\\" to confirm\",\"XxecLm\":\"Type of ticket\",\"IrVSu+\":\"Unable to duplicate product. Please check the your details\",\"Vx2J6x\":\"Unable to fetch attendee\",\"h0dx5e\":\"Unable to join waitlist\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Unattributed Accounts\",\"9uI/rE\":\"Undo\",\"b9SN9q\":\"Unique order reference\",\"Ef7StM\":\"Unknown\",\"ZBAScj\":\"Unknown Attendee\",\"MEIAzV\":\"Unnamed\",\"K6L5Mx\":\"Unnamed location\",\"X13xGn\":\"Untrusted\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Update Affiliate\",\"59qHrb\":\"Update capacity\",\"Gaem9v\":\"Update event name and description\",\"7EhE4k\":\"Update label\",\"NPQWj8\":\"Update location\",\"75+lpR\":[\"Update: \",[\"subjectTitle\"],\" — schedule changes\"],\"UOGHdA\":[\"Update: \",[\"subjectTitle\"],\" — session time changed\"],\"ogoTrw\":[\"Updated \",[\"count\"],\" date(s)\"],\"dDuona\":[\"Updated capacity for \",[\"count\"],\" date(s)\"],\"FT3LSc\":[\"Updated label for \",[\"count\"],\" date(s)\"],\"8EcY1g\":[\"Updated location for \",[\"count\"],\" date(s)\"],\"gJQsLv\":\"Upload a cover image for your organizer\",\"4kEGqW\":\"Upload a logo for your organizer\",\"lnCMdg\":\"Upload Image\",\"29w7p6\":\"Uploading image...\",\"HtrFfw\":\"URL is required\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Use <0>Liquid templating to personalize your emails\",\"g0WJMu\":\"Use all-dates list\",\"0k4cdb\":\"Use order details for all attendees. Attendee names and emails will match the buyer's information.\",\"MKK5oI\":\"Use the all-dates list, or create a list for this date?\",\"bA31T4\":\"Use the buyer's details for all attendees\",\"rnoQsz\":\"Used for borders, highlights, and QR code styling\",\"BV4L/Q\":\"UTM Analytics\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validating your VAT number...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"VAT Number\",\"CabI04\":\"VAT number must not contain spaces\",\"PMhxAR\":\"VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)\",\"gPgdNV\":\"VAT number validated successfully\",\"RUMiLy\":\"VAT number validation failed\",\"vqji3Y\":\"VAT number validation failed. Please check your VAT number.\",\"8dENF9\":\"VAT on Fee\",\"ZutOKU\":\"VAT Rate\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"VAT settings saved successfully\",\"UvYql/\":\"VAT settings saved. We're validating your VAT number in the background.\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"VAT Treatment for Platform Fees\",\"FlGprQ\":\"VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%.\",\"516oLj\":\"VAT validation service temporarily unavailable\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Verification code\",\"QDEWii\":\"Verified\",\"wCKkSr\":\"Verify Email\",\"/IBv6X\":\"Verify your email\",\"e/cvV1\":\"Verifying...\",\"fROFIL\":\"Vietnamese\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"RnvnDc\":\"View all messages sent across the platform\",\"+WFMis\":\"View and download reports across all your events. Only completed orders are included.\",\"c7VN/A\":\"View Answers\",\"SZw9tS\":\"View Details\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"View Event\",\"c6SXHN\":\"View Event Page\",\"n6EaWL\":\"View logs\",\"OaKTzt\":\"View Map\",\"zNZNMs\":\"View Message\",\"67OJ7t\":\"View Order\",\"tKKZn0\":\"View Order Details\",\"KeCXJu\":\"View order details, issue refunds, and resend confirmations.\",\"9jnAcN\":\"View Organizer Homepage\",\"1J/AWD\":\"View Ticket\",\"N9FyyW\":\"View, edit, and export your registered attendees.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Waiting\",\"quR8Qp\":\"Waiting for payment\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Waitlist\",\"3RXFtE\":\"Waitlist Enabled\",\"TwnTPy\":\"Waitlist offer expired\",\"NzIvKm\":\"Waitlist triggered\",\"aUi/Dz\":\"Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned.\",\"qeygIa\":\"We\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"We couldn't find any orders associated with this email address.\",\"2RZK9x\":\"We couldn't find the order you're looking for. The link may have expired or the order details may have changed.\",\"nefMIK\":\"We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed.\",\"miysJh\":\"We couldn't find this order. It may have been removed.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"We hit a snag loading this page. Please try again.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"We recommend a square logo with minimum dimensions of 200x200px\",\"wJzo/w\":\"We recommend dimensions of 400px by 400px, and a maximum file size of 5MB\",\"KRCDqH\":\"We use cookies to help us understand how the site is used and to improve your experience.\",\"x8rEDQ\":\"We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later.\",\"iy+M+c\":[\"We'll notify you by email if a spot becomes available for \",[\"productDisplayName\"],\".\"],\"McuGND\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"q1BizZ\":\"We'll send your tickets to this email\",\"ZOmUYW\":\"We'll validate your VAT number in the background. If there are any issues, we'll let you know.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"We've sent a 5-digit verification code to:\",\"GdWB+V\":\"Webhook created successfully\",\"2X4ecw\":\"Webhook deleted successfully\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook Logs\",\"I0adYQ\":\"Webhook Signing Secret\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook will not send notifications\",\"FSaY52\":\"Webhook will send notifications\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Welcome back\",\"QDWsl9\":[\"Welcome to \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Welcome to \",[\"0\"],\", here's a listing of all your events\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"What type of event?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"When a check-in is deleted\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"When a new attendee is created\",\"zyIyPe\":\"When a new event is created\",\"Lc18qn\":\"When a new order is created\",\"dfkQIO\":\"When a new product is created\",\"8OhzyY\":\"When a product is deleted\",\"tRXdQ9\":\"When a product is updated\",\"9L9/28\":\"When a product sells out, customers can join a waitlist to be notified when spots become available.\",\"Q7CWxp\":\"When an attendee is cancelled\",\"IuUoyV\":\"When an attendee is checked in\",\"nBVOd7\":\"When an attendee is updated\",\"t7cuMp\":\"When an event is archived\",\"gtoSzE\":\"When an event is updated\",\"ny2r8d\":\"When an order is cancelled\",\"c9RYbv\":\"When an order is marked as paid\",\"ejMDw1\":\"When an order is refunded\",\"fVPt0F\":\"When an order is updated\",\"bcYlvb\":\"When check-in closes\",\"XIG669\":\"When check-in opens\",\"403wpZ\":\"When enabled, new events will allow attendees to manage their own ticket details via a secure link. This can be overridden per event.\",\"blXLKj\":\"When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event.\",\"Kj0Txn\":\"When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported.\",\"tMqezN\":\"Whether refunds are being processed\",\"uchB0M\":\"Widget Preview\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Write your message here...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"Yes - I have a valid EU VAT registration number\",\"Tz5oXG\":\"Yes, cancel my order\",\"QlSZU0\":[\"You are impersonating <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"You are issuing a partial refund. The customer will be refunded \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"You can configure additional service fees and taxes in your account settings.\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"You can still manually offer tickets if needed.\",\"jTDzpA\":\"You cannot archive the last active organizer on your account.\",\"5VGIlq\":\"You have reached your messaging limit.\",\"casL1O\":\"You have taxes and fees added to a Free Product. Would you like to remove them?\",\"9jJNZY\":\"You must acknowledge your responsibilities before saving\",\"pCLes8\":\"You must agree to receive messages\",\"FVTVBy\":\"You must verify your email address before you can update the organizer status.\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"You need to verify your account email before you can modify email templates.\",\"FRl8Jv\":\"You need to verify your account email before you can send messages.\",\"88cUW+\":\"You receive\",\"O6/3cu\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"You're going to \",[\"0\"],\"!\"],\"qGZz0m\":\"You're on the waitlist!\",\"/5HL6k\":\"You've been offered a spot!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"Your account has messaging limits. To increase your limits, contact us at\",\"x/xjzn\":\"Your affiliates have been exported successfully.\",\"TF37u6\":\"Your attendees have been exported successfully.\",\"79lXGw\":\"Your check-in list has been created successfully. Share the link below with your check-in staff.\",\"BnlG9U\":\"Your current order will be lost.\",\"nBqgQb\":\"Your Email\",\"GG1fRP\":\"Your event is live!\",\"ifRqmm\":\"Your message has been sent successfully!\",\"0/+Nn9\":\"Your messages will appear here\",\"/Rj5P4\":\"Your Name\",\"PFjJxY\":\"Your new password must be at least 8 characters long.\",\"gzrCuN\":\"Your order details have been updated. A confirmation email has been sent to the new email address.\",\"naQW82\":\"Your order has been cancelled.\",\"bhlHm/\":\"Your order is awaiting payment\",\"XeNum6\":\"Your orders have been exported successfully.\",\"Xd1R1a\":\"Your organizer address\",\"WWYHKD\":\"Your payment is protected with bank-level encryption\",\"5b3QLi\":\"Your Plan\",\"N4Zkqc\":\"Your saved date filter is no longer available — showing all dates.\",\"FNO5uZ\":\"Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions.\",\"CnZ3Ou\":\"Your tickets have been confirmed.\",\"EmFsMZ\":\"Your VAT number is queued for validation\",\"QBlhh4\":\"Your VAT number will be validated when you save\",\"fT9VLt\":\"Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>checked out successfully\"],\"KMgp2+\":[[\"0\"],\" available\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" days, \",[\"hours\"],\" hours, \",[\"minutes\"],\" minutes, and \",[\"seconds\"],\" seconds\"],\"f3RdEk\":[[\"hours\"],\" hours, \",[\"minutes\"],\" minutes, and \",[\"seconds\"],\" seconds\"],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0>Please enter the price excluding taxes and fees.<1>Taxes and fees can be added below.\",\"ZjMs6e\":\"<0>The number of products available for this product<1>This value can be overridden if there are <2>Capacity Limits associated with this product.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"A date input. Perfect for asking for a date of birth etc.\",\"6euFZ/\":[\"A default \",[\"type\"],\" is automaticaly applied to all new products. You can override this on a per product basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"POT0K/\":\"A fixed amount per product. E.g, $0.50 per product\",\"f4vJgj\":\"A multi line text input\",\"OIPtI5\":\"A percentage of the product price. E.g., 3.5% of the product price\",\"ZthcdI\":\"A promo code with no discount can be used to reveal hidden products.\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"h179TP\":\"A short description of the event that will be displayed in search engine results and when sharing on social media. By default, the event description will be used\",\"WKMnh4\":\"A single line text input\",\"BHZbFy\":\"A single question per order. E.g, What is your shipping address?\",\"Fuh+dI\":\"A single question per product. E.g, What is your t-shirt size?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Accept bank transfers, checks, or other offline payment methods\",\"hrvLf4\":\"Accept credit card payments with Stripe\",\"bfXQ+N\":\"Accept Invitation\",\"AeXO77\":\"Account\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"5T2HxQ\":\"Activation date\",\"F6pfE9\":\"Active\",\"/PN1DA\":\"Add a description for this check-in list\",\"0/vPdA\":\"Add any notes about the attendee. These will not be visible to the attendee.\",\"Or1CPR\":\"Add any notes about the attendee...\",\"l3sZO1\":\"Add any notes about the order. These will not be visible to the customer.\",\"xMekgu\":\"Add any notes about the order...\",\"PGPGsL\":\"Add description\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Add instructions for offline payments (e.g., bank transfer details, where to send checks, payment deadlines)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"24l4x6\":\"Add Product\",\"8q0EdE\":\"Add Product to Category\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"goOKRY\":\"Add tier\",\"oZW/gT\":\"Add to Calendar\",\"pn5qSs\":\"Additional Information\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Address\",\"NY/x1b\":\"Address line 1\",\"POdIrN\":\"Address Line 1\",\"cormHa\":\"Address line 2\",\"gwk5gg\":\"Address Line 2\",\"U3pytU\":\"Admin\",\"HLDaLi\":\"Admin users have full access to events and account settings.\",\"W7AfhC\":\"All attendees of this event\",\"cde2hc\":\"All Products\",\"5CQ+r0\":\"Allow attendees associated with unpaid orders to check in\",\"ipYKgM\":\"Allow search engine indexing\",\"LRbt6D\":\"Allow search engines to index this event\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"V7MwOy\":\"An error occurred while loading the page\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"An unexpected error occurred.\",\"byKna+\":\"An unexpected error occurred. Please try again.\",\"ubdMGz\":\"Any queries from product holders will be sent to this email address. This will also be used as the \\\"reply-to\\\" address for all emails sent from this event\",\"aAIQg2\":\"Appearance\",\"Ym1gnK\":\"applied\",\"sy6fss\":[\"Applies to \",[\"0\"],\" products\"],\"kadJKg\":\"Applies to 1 product\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"ARBThj\":[\"Apply this \",[\"type\"],\" to all new products\"],\"S0ctOE\":\"Archive event\",\"TdfEV7\":\"Archived\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"TvkW9+\":\"Are you sure you want to archive this event?\",\"/CV2x+\":\"Are you sure you want to cancel this attendee? This will void their ticket\",\"YgRSEE\":\"Are you sure you want to delete this promo code?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Are you sure you want to make this event draft? This will make the event invisible to the public\",\"mEHQ8I\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"Are you sure you want to restore this event? It will be restored as a draft event.\",\"vJuISq\":\"Are you sure you would like to delete this Capacity Assignment?\",\"baHeCz\":\"Are you sure you would like to delete this Check-In List?\",\"LBLOqH\":\"Ask once per order\",\"wu98dY\":\"Ask once per product\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"QKim6l\":\"Attendee not found\",\"R5IT/I\":\"Attendee Notes\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Attendee Ticket\",\"9SZT4E\":\"Attendees\",\"iPBfZP\":\"Attendees Registered\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"4lVaWA\":\"Awaiting offline payment\",\"2rHwhl\":\"Awaiting Offline Payment\",\"3wF4Q/\":\"Awaiting payment\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Billing Address\",\"/xC/im\":\"Billing Settings\",\"rp/zaT\":\"Brazilian Portuguese\",\"whqocw\":\"By registering you agree to our <0>Terms of Service and <1>Privacy Policy.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacity\",\"V6Q5RZ\":\"Capacity Assignment created successfully\",\"k5p8dz\":\"Capacity Assignment deleted successfully\",\"nDBs04\":\"Capacity Management\",\"ddha3c\":\"Categories allow you to group products together. For example, you might have a category for \\\"Tickets\\\" and another for \\\"Merchandise\\\".\",\"iS0wAT\":\"Categories help you organize your products. This title will be displayed on the public event page.\",\"eorM7z\":\"Categories reordered successfully.\",\"3EXqwa\":\"Category Created Successfully\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Check in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Check in and mark order as paid\",\"QYLpB4\":\"Check in only\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Check out this event!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Check-In List deleted successfully\",\"+hBhWk\":\"Check-in list has expired\",\"mBsBHq\":\"Check-in list is not active\",\"vPqpQG\":\"Check-in list not found\",\"tejfAy\":\"Check-In Lists\",\"hD1ocH\":\"Check-In URL copied to clipboard\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"znIg+z\":\"Checkout\",\"1WnhCL\":\"Checkout Settings\",\"6imsQS\":\"Chinese (Simplified)\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"3wV73y\":\"City\",\"FG98gC\":\"Clear Search Text\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Click to copy\",\"yz7wBu\":\"Close\",\"62Ciis\":\"Close sidebar\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Code must be between 3 and 50 characters long\",\"oqr9HB\":\"Collapse this product when the event page is initially loaded\",\"jZlrte\":\"Color\",\"Vd+LC3\":\"Color must be a valid hex color code. Example: #ffffff\",\"1HfW/F\":\"Colors\",\"VZeG/A\":\"Coming Soon\",\"yPI7n9\":\"Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event\",\"NPZqBL\":\"Complete Order\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Complete Payment\",\"qqWcBV\":\"Completed\",\"6HK5Ct\":\"Completed orders\",\"NWVRtl\":\"Completed Orders\",\"DwF9eH\":\"Component Code\",\"Tf55h7\":\"Configured Discount\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continue\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Continue Button Text\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"r2B2P8\":\"Copy Check-In URL\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"k9RiLi\":\"Create a Product\",\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"VwdqVy\":\"Create Capacity Assignment\",\"EwoMtl\":\"Create category\",\"XletzW\":\"Create Category\",\"WVbTwK\":\"Create Check-In List\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"a0EjD+\":\"Create Product\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Create Promo Code\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"UEqXyt\":\"Custom Range\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Y9Z/vP\":\"Customize the event homepage and checkout messaging\",\"2E2O5H\":\"Customize the miscellaneous settings for this event\",\"iJhSxe\":\"Customize the SEO settings for this event\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Danger zone\",\"ZQKLI1\":\"Danger Zone\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"JJhRbH\":\"Day one capacity\",\"cnGeoo\":\"Delete\",\"jRJZxD\":\"Delete Capacity\",\"VskHIx\":\"Delete category\",\"Qrc8RZ\":\"Delete Check-In List\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Description\",\"YC3oXa\":\"Description for check-in staff\",\"URmyfc\":\"Details\",\"1lRT3t\":\"Disabling this capacity will track sales but not stop them when the limit is reached\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"DZlSLn\":\"Document Label\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donation / Pay what you'd like product\",\"OvNbls\":\"Download .ics\",\"kodV18\":\"Download CSV\",\"CELKku\":\"Download invoice\",\"LQrXcu\":\"Download Invoice\",\"QIodqd\":\"Download QR Code\",\"yhjU+j\":\"Downloading Invoice\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Dropdown selection\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicate event\",\"3ogkAk\":\"Duplicate Event\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Duplicate Options\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kBkYSa\":\"Edit Capacity\",\"oHE9JT\":\"Edit Capacity Assignment\",\"j1Jl7s\":\"Edit category\",\"FU1gvP\":\"Edit Check-In List\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"tdD/QN\":\"Edit Product\",\"n143Tq\":\"Edit Product Category\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"poTr35\":\"Edit user\",\"GTOcxw\":\"Edit User\",\"pqFrv2\":\"eg. 2.50 for $2.50\",\"3yiej1\":\"eg. 23.5 for 23.5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Email & Notification Settings\",\"ATGYL1\":\"Email address\",\"hzKQCy\":\"Email Address\",\"HqP6Qf\":\"Email change cancelled successfully\",\"mISwW1\":\"Email change pending\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"8oPbg1\":\"Enable Invoicing\",\"j6w7d/\":\"Enable this capacity to stop product sales when the limit is reached\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"English\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"SlfejT\":\"Error\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Event Date\",\"0Zptey\":\"Event Defaults\",\"QcCPs8\":\"Event Details\",\"6fuA9p\":\"Event duplicated successfully\",\"AEuj2m\":\"Event Homepage\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"nMU2d3\":\"Event URL\",\"tst44n\":\"Events\",\"sZg7s1\":\"Expiration date\",\"KnN1Tu\":\"Expires\",\"uaSvqt\":\"Expiry Date\",\"GS+Mus\":\"Export\",\"9xAp/j\":\"Failed to cancel attendee\",\"ZpieFv\":\"Failed to cancel order\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Failed to download invoice. Please try again.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Failed to load Check-In List\",\"ZQ15eN\":\"Failed to resend ticket email\",\"ejXy+D\":\"Failed to sort products\",\"PLUB/s\":\"Fee\",\"/mfICu\":\"Fees\",\"LyFC7X\":\"Filter Orders\",\"cSev+j\":\"Filters\",\"CVw2MU\":[\"Filters (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"First Invoice Number\",\"V1EGGU\":\"First name\",\"kODvZJ\":\"First Name\",\"S+tm06\":\"First name must be between 1 and 50 characters\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"First Used\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"P/OAYJ\":\"Free Product\",\"vAbVy9\":\"Free product, no payment information required\",\"nLC6tu\":\"French\",\"Weq9zb\":\"General\",\"DDcvSo\":\"German\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Calendar\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Gross sales\",\"yRg26W\":\"Gross Sales\",\"R4r4XO\":\"Guests\",\"26pGvx\":\"Have a promo code?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Here is an example of how you can use the component in your application.\",\"Y1SSqh\":\"Here is the React component you can use to embed the widget in your application.\",\"QuhVpV\":[\"Hi \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Hide product after sale end date\",\"06s3w3\":\"Hide product before sale start date\",\"axVMjA\":\"Hide product unless user has applicable promo code\",\"ySQGHV\":\"Hide product when sold out\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Hide this product from customers\",\"Da29Y6\":\"Hide this question\",\"fvDQhr\":\"Hide this tier from users\",\"lNipG+\":\"Hiding a product will prevent users from seeing it on the event page.\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"How many minutes the customer has to complete their order. We recommend at least 15 minutes\",\"ySxKZe\":\"How many times can this code be used?\",\"dZsDbK\":[\"HTML character limit exceeded: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"If enabled, check-in staff can either mark attendees as checked in or mark the order as paid and check in the attendees. If disabled, attendees associated with unpaid orders cannot be checked in.\",\"muXhGi\":\"If enabled, the organizer will receive an email notification when a new order is placed\",\"6fLyj/\":\"If you did not request this change, please immediately change your password.\",\"n/ZDCz\":\"Image deleted successfully\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"VyUuZb\":\"Image URL\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"kO44sp\":\"Include connection details for your online event. These details will be shown on the order summary page and attendee ticket page.\",\"FlQKnG\":\"Include tax and fees in the price\",\"Vi+BiW\":[\"Includes \",[\"0\"],\" products\"],\"lpm0+y\":\"Includes 1 product\",\"UiAk5P\":\"Insert Image\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"bKOYkd\":\"Invoice downloaded successfully\",\"alD1+n\":\"Invoice Notes\",\"kOtCs2\":\"Invoice Numbering\",\"UZ2GSZ\":\"Invoice Settings\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Item\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Label\",\"vXIe7J\":\"Language\",\"2LMsOq\":\"Last 12 months\",\"vfe90m\":\"Last 14 days\",\"aK4uBd\":\"Last 24 hours\",\"uq2BmQ\":\"Last 30 days\",\"bB6Ram\":\"Last 48 hours\",\"VlnB7s\":\"Last 6 months\",\"ct2SYD\":\"Last 7 days\",\"XgOuA7\":\"Last 90 days\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"tKCBU0\":\"Last Used\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Leave blank to use the default word \\\"Invoice\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Loading...\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Make billing address mandatory during checkout\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"onpJrA\":\"Manage attendee\",\"n4SpU5\":\"Manage event\",\"WVgSTy\":\"Manage order\",\"1MAvUY\":\"Manage payment and invoicing settings for this event.\",\"cQrNR3\":\"Manage Profile\",\"AtXtSw\":\"Manage taxes and fees which can be applied to your products\",\"ophZVW\":\"Manage tickets\",\"DdHfeW\":\"Manage your account details and default settings\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Manage your users and their permissions\",\"1m+YT2\":\"Mandatory questions must be answered before the customer can checkout.\",\"Dim4LO\":\"Manually add an Attendee\",\"e4KdjJ\":\"Manually Add Attendee\",\"vFjEnF\":\"Mark as paid\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"RDie0n\":\"Miscellaneous\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"VD0iA7\":\"Multiple price options. Perfect for early bird products etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"fj5byd\":\"N/A\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"1UzENP\":\"No\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"No archived events to show.\",\"q2LEDV\":\"No attendees found for this order.\",\"zlHa5R\":\"No attendees have been added to this order.\",\"Wjz5KP\":\"No Attendees to show\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"No Capacity Assignments\",\"a/gMx2\":\"No Check-In Lists\",\"tMFDem\":\"No data available\",\"6Z/F61\":\"No data to show. Please select a date range\",\"fFeCKc\":\"No Discount\",\"HFucK5\":\"No ended events to show.\",\"yAlJXG\":\"No events to show\",\"GqvPcv\":\"No filters available\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"RBXXtB\":\"No payment methods are currently available. Please contact the event organizer for assistance.\",\"ZWEfBE\":\"No Payment Required\",\"ZPoHOn\":\"No product associated with this attendee.\",\"Ya1JhR\":\"No products available in this category.\",\"FTfObB\":\"No Products Yet\",\"+Y976X\":\"No Promo Codes to show\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"Ev2r9A\":\"No results\",\"gk5uwN\":\"No Search Results\",\"RHyZUL\":\"No search results.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notes\",\"jtrY3S\":\"Nothing to show yet\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Number of days allowed for payment (leave blank to omit payment terms from invoices)\",\"n86jmj\":\"Number Prefix\",\"mwe+2z\":\"Offline orders are not reflected in event statistics until the order is marked as paid.\",\"dWBrJX\":\"Offline payment failed. Please try again or contact the event organizer.\",\"fcnqjw\":\"Offline Payment Instructions\",\"+eZ7dp\":\"Offline Payments\",\"ojDQlR\":\"Offline Payments Information\",\"u5oO/W\":\"Offline Payments Settings\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"ZxnK5C\":\"Once you start collecting data, you'll see it here.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Ongoing\",\"z+nuVJ\":\"Online event\",\"WKHW0N\":\"Online Event Details\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Open Check-In Page\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"oPknTP\":\"Optional additional information to appear on all invoices (e.g., payment terms, late payment fees, return policy)\",\"OrXJBY\":\"Optional prefix for invoice numbers (e.g., INV-)\",\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"nAn4Oe\":\"Order marked as paid\",\"uzEfRz\":\"Order Notes\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Order Reference\",\"acIJ41\":\"Order Status\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"3y+V4p\":\"Organization Address\",\"GVcaW6\":\"Organization Details\",\"nfnm9D\":\"Organization Name\",\"G5RhpL\":\"Organizer\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"l894xP\":\"Organizers can only manage events and products. They cannot manage users, account settings or billing information.\",\"fdjq4c\":\"Padding\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Page not found\",\"QbrUIo\":\"Page views\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"paid\",\"HVW65c\":\"Paid Product\",\"ZfxaB4\":\"Partially Refunded\",\"8ZsakT\":\"Password\",\"TUJAyx\":\"Password must be a minimum of 8 characters\",\"vwGkYB\":\"Password must be at least 8 characters\",\"BLTZ42\":\"Password reset successfully. Please login with your new password.\",\"f7SUun\":\"Passwords are not the same\",\"aEDp5C\":\"Paste this where you want the widget to appear.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Payment\",\"Lg+ewC\":\"Payment & Invoicing\",\"DZjk8u\":\"Payment & Invoicing Settings\",\"lflimf\":\"Payment Due Period\",\"JhtZAK\":\"Payment Failed\",\"JEdsvQ\":\"Payment Instructions\",\"bLB3MJ\":\"Payment Methods\",\"QzmQBG\":\"Payment provider\",\"lsxOPC\":\"Payment Received\",\"wJTzyi\":\"Payment Status\",\"xgav5v\":\"Payment succeeded!\",\"R29lO5\":\"Payment Terms\",\"/roQKz\":\"Percentage\",\"vPJ1FI\":\"Percentage Amount\",\"xdA9ud\":\"Place this in the of your website.\",\"blK94r\":\"Please add at least one option\",\"FJ9Yat\":\"Please check the provided information is correct\",\"TkQVup\":\"Please check your email and password and try again\",\"sMiGXD\":\"Please check your email is valid\",\"Ajavq0\":\"Please check your email to confirm your email address\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Please continue in the new tab\",\"hcX103\":\"Please create a product\",\"cdR8d6\":\"Please create a ticket\",\"x2mjl4\":\"Please enter a valid image URL that points to an image.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"C63rRe\":\"Please return to the event page to start over.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Please select at least one product\",\"igBrCH\":\"Please verify your email address to access all features\",\"/IzmnP\":\"Please wait while we prepare your invoice...\",\"MOERNx\":\"Portuguese\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"BI7D9d\":\"Price not set\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Price Type\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"DKwDdj\":\"Print Tickets\",\"K47k8R\":\"Product\",\"1JwlHk\":\"Product Category\",\"U61sAj\":\"Product category updated successfully.\",\"1USFWA\":\"Product deleted successfully\",\"4Y2FZT\":\"Product Price Type\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Product Sales\",\"U/R4Ng\":\"Product Tier\",\"sJsr1h\":\"Product Type\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Product(s)\",\"N0qXpE\":\"Products\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Products sold\",\"/u4DIx\":\"Products Sold\",\"DJQEZc\":\"Products sorted successfully\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"P5sgAk\":\"Promo Code\",\"yKWfjC\":\"Promo Code page\",\"RVb8Fo\":\"Promo Codes\",\"BZ9GWa\":\"Promo codes can be used to offer discounts, presale access, or provide special access to your event.\",\"OP094m\":\"Promo Codes Report\",\"4kyDD5\":\"Provide additional context or instructions for this question. Use this field to add terms\\nand conditions, guidelines, or any important information that attendees need to know before answering.\",\"toutGW\":\"QR Code\",\"LkMOWF\":\"Quantity Available\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Question deleted\",\"avf0gk\":\"Question Description\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"ROv2ZT\":\"Questions & Answers\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Refund Failed\",\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Refund Pending\",\"xHpVRl\":\"Refund Status\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"9+8Vez\":\"Remaining Uses\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"t9yxlZ\":\"Reports\",\"prZGMe\":\"Require Billing Address\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"OfhWJH\":\"Reset\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restore event\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Return to Event Page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hBsw5C\":\"Sales ended\",\"kpAzPe\":\"Sales start\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Save\",\"IUwGEM\":\"Save Changes\",\"U65fiW\":\"Save Organizer\",\"UGT5vp\":\"Save Settings\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"+pr/FY\":\"Search by event name...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Search by name...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Search capacity assignments...\",\"r9M1hc\":\"Search check-in lists...\",\"+0Yy2U\":\"Search products\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"02ePaq\":[\"Select \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Select category...\",\"kWI/37\":\"Select organizer\",\"ixIx1f\":\"Select Product\",\"3oSV95\":\"Select Product Tier\",\"C4Y1hA\":\"Select products\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"OMX4tH\":\"Select tickets\",\"DrwwNd\":\"Select time period\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Send a message\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Send Message\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"L0pJmz\":\"Set the starting number for invoice numbering. This cannot be changed once invoices have been generated.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"B2V3cA\":\"Share Event\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Show available product quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"1SbbH8\":\"Shown to the customer after they checkout, on the order summary page.\",\"YfHZv0\":\"Shown to the customer before they checkout\",\"CBBcly\":\"Shows common address fields, including country\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Single line text box\",\"+P0Cn2\":\"Skip this step\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Sold out\",\"Mi1rVn\":\"Sold Out\",\"nwtY4N\":\"Something went wrong\",\"GRChTw\":\"Something went wrong while deleting the Tax or Fee\",\"YHFrbe\":\"Something went wrong! Please try again\",\"kf83Ld\":\"Something went wrong.\",\"fWsBTs\":\"Something went wrong. Please try again.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"65A04M\":\"Spanish\",\"mFuBqb\":\"Standard product with a fixed price\",\"D3iCkb\":\"Start Date\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe payments are not enabled for this event.\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"zzDlyQ\":\"Success\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"gP22tw\":\"Successfully Created Product\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"J3RJSZ\":\"Successfully updated attendee\",\"3suLF0\":\"Successfully updated Capacity Assignment\",\"Z+rnth\":\"Successfully updated Check-In List\",\"vzJenu\":\"Successfully Updated Email Settings\",\"7kOMfV\":\"Successfully Updated Event\",\"G0KW+e\":\"Successfully Updated Homepage Design\",\"k9m6/E\":\"Successfully Updated Homepage Settings\",\"y/NR6s\":\"Successfully Updated Location\",\"73nxDO\":\"Successfully Updated Misc Settings\",\"4H80qv\":\"Successfully updated order\",\"6xCBVN\":\"Successfully Updated Payment & Invoicing Settings\",\"1Ycaad\":\"Successfully updated product\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"dFHcIn\":\"Tax Details\",\"wQzCPX\":\"Tax information to appear at the bottom of all invoices (e.g., VAT number, tax registration)\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"qu6/03\":\"Taxes and Fees\",\"gypigA\":\"That promo code is invalid\",\"5ShqeM\":\"The check-in list you are looking for does not exist.\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"o7s5FA\":\"The language the attendee will receive emails in.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"HsFnrk\":[\"The maximum number of products for \",[\"0\"],\"is \",[\"1\"]],\"TSAiPM\":\"The page you are looking for does not exist\",\"MSmKHn\":\"The price displayed to the customer will include taxes and fees.\",\"6zQOg1\":\"The price displayed to the customer will not include taxes and fees. They will be shown separately\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used\",\"wDx3FF\":\"There are no products available for this event\",\"pNgdBv\":\"There are no products available in this category\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"F89D36\":\"There was an error marking the order as paid\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"This attendee has an unpaid order.\",\"mf3FrP\":\"This category doesn't have any products yet.\",\"8QH2Il\":\"This category is hidden from public view\",\"xxv3BZ\":\"This check-in list has expired\",\"Sa7w7S\":\"This check-in list has expired and is no longer available for check-ins.\",\"Uicx2U\":\"This check-in list is active\",\"1k0Mp4\":\"This check-in list is not active yet\",\"K6fmBI\":\"This check-in list is not yet active and is not available for check-ins.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"This information will be shown on the payment page, order summary page, and order confirmation email.\",\"XAHqAg\":\"This is a general product, like a t-shirt or a mug. No ticket will be issued\",\"CNk/ro\":\"This is an online event\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"55i7Fa\":\"This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message\",\"RjwlZt\":\"This order has already been paid.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"Q0zd4P\":\"This order has expired. Please start again.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"This order page is no longer available.\",\"i0TtkR\":\"This overrides all visibility settings and will hide the product from all customers.\",\"cRRc+F\":\"This product cannot be deleted because it is associated with an order. You can hide it instead.\",\"3Kzsk7\":\"This product is a ticket. Buyers will be issued a ticket upon purchase\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"54q0zp\":\"Tickets for\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"jZj9y9\":\"Tiered Product\",\"8wITQA\":\"Tiered products allow you to offer multiple price options for the same product. This is perfect for early bird products, or offering different price options for different groups of people.\",\"nn3mSR\":\"Time left:\",\"s/0RpH\":\"Times used\",\"y55eMd\":\"Times Used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total Before Discounts\",\"NRWNfv\":\"Total Discount Amount\",\"BxsfMK\":\"Total Fees\",\"2bR+8v\":\"Total Gross Sales\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"jEbkcB\":\"Total Refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"FMdMfZ\":\"Unable to check in attendee\",\"bPWBLL\":\"Unable to check out attendee\",\"9+P7zk\":\"Unable to create product. Please check the your details\",\"WLxtFC\":\"Unable to create product. Please check your details\",\"/cSMqv\":\"Unable to create question. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"nnfSdK\":\"Unique Customers\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"/p9Fhq\":\"Unlimited available\",\"E0q9qH\":\"Unlimited usages allowed\",\"h10Wm5\":\"Unpaid Order\",\"ia8YsC\":\"Upcoming\",\"TlEeFv\":\"Upcoming Events\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"fiV0xj\":\"Usage Limit\",\"sGEOe4\":\"Use a blurred version of the cover image as the background\",\"OadMRm\":\"Use cover image\",\"7PzzBU\":\"User\",\"yDOdwQ\":\"User Management\",\"Sxm8rQ\":\"Users\",\"VEsDvU\":\"Users can change their email in <0>Profile Settings\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"jpctdh\":\"View\",\"Pte1Hv\":\"View Attendee Details\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP check-in list\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"45Srzt\":\"We couldn't delete the category. Please try again.\",\"/DNy62\":[\"We couldn't find any tickets matching \",[\"0\"]],\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"NmpGKr\":\"We couldn't reorder the categories. Please try again.\",\"BJtMTd\":\"We recommend dimensions of 1950px by 650px, a ratio of 3:1, and a maximum file size of 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"We were unable to confirm your payment. Please try again or contact support.\",\"Gspam9\":\"We're processing your order. Please wait...\",\"LuY52w\":\"Welcome aboard! Please login to continue.\",\"dVxpp5\":[\"Welcome back\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"What are Tiered Products?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"What is a Category?\",\"gxeWAU\":\"What products does this code apply to?\",\"hFHnxR\":\"What products does this code apply to? (Applies to all by default)\",\"AeejQi\":\"What products should this capacity apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"gyLUYU\":\"When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page.\",\"D3opg4\":\"When offline payments are enabled, users will be able to complete their orders and receive their tickets. Their tickets will clearly indicate the order is not paid, and the check-in tool will notify the check-in staff if an order requires payment.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Which tickets should be associated with this check-in list?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"+G/XiQ\":\"Year to date\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\".\"],\"gGhBmF\":\"You are offline\",\"sdB7+6\":\"You can create a promo code which targets this product on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"You cannot change the product type as there are attendees associated with this product.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"You cannot check in attendees with unpaid orders. This setting can be changed in the event settings.\",\"c9Evkd\":\"You cannot delete the last category.\",\"6uwAvx\":\"You cannot delete this price tier because there are already products sold for this tier. You can hide it instead.\",\"tFbRKJ\":\"You cannot edit the role or status of the account owner.\",\"fHfiEo\":\"You cannot refund a manually created order.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"You have access to multiple accounts. Please choose one to continue.\",\"Z6q0Vl\":\"You have already accepted this invitation. Please login to continue.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"You have run out of time to complete your order.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"You must acknowledge that this email is not promotional\",\"3ZI8IL\":\"You must agree to the terms and conditions\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"You must create a ticket before you can manually add an attendee.\",\"jE4Z8R\":\"You must have at least one price tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"You will have to mark an order as paid manually. This can be done on the manage order page.\",\"L/+xOk\":\"You'll need a ticket before you can create a check-in list.\",\"Djl45M\":\"You'll need at a product before you can create a capacity assignment.\",\"y3qNri\":\"You'll need at least one product to get started. Free, paid or let the user decide what to pay.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Your account name is used on event pages and in emails.\",\"veessc\":\"Your attendees will appear here once they have registered for your event. You can also manually add attendees.\",\"Eh5Wrd\":\"Your awesome website 🎉\",\"lkMK2r\":\"Your Details\",\"3ENYTQ\":[\"Your email request change to <0>\",[\"0\"],\" is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"KSQ8An\":\"Your Order\",\"Jwiilf\":\"Your order has been cancelled\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Your orders will appear here once they start rolling in.\",\"9TO8nT\":\"Your password\",\"P8hBau\":\"Your payment is processing.\",\"UdY1lL\":\"Your payment was not successful, please try again.\",\"fzuM26\":\"Your payment was unsuccessful. Please try again.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"x1PPdr\":\"ZIP / Postal Code\",\"BM/KQm\":\"Zip or Postal Code\",\"+LtVBt\":\"ZIP or Postal Code\",\"25QDJ1\":\"- Click to Publish\",\"WOyJmc\":\"- Click to Unpublish\",\"ncwQad\":\"(empty)\",\"B/gRsg\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" is already checked in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Active Webhooks\"],\"6MIiOI\":[[\"0\"],\" left\"],\"COnw8D\":[[\"0\"],\" logo\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizers\"],\"rZTf6P\":[[\"0\"],\" spots left\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"dtXkP9\":[[\"0\"],\" upcoming dates\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" of \",[\"totalCount\"],\" available\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" events\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" ticket types\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Tax/Fees\",\"B1St2O\":\"<0>Check-in lists help you manage event entry by day, area, or ticket type. You can link tickets to specific lists such as VIP zones or Day 1 passes and share a secure check-in link with staff. No account is required. Check-in works on mobile, desktop, or tablet, using a device camera or HID USB scanner. \",\"v9VSIS\":\"<0>Set a single total attendance limit that applies to multiple ticket types at once.<1>For example, if you link a <2>Day Pass and a <3>Full Weekend ticket, they will both draw from the same pool of spots. Once the limit is reached, all linked tickets automatically stop selling.\",\"vKXqag\":\"<0>This is the default quantity across all dates. Each date's capacity can further limit availability on the <1>Occurrence Schedule page.\",\"ZnVt5v\":\"<0>Webhooks instantly notify external services when events happen, like adding a new attendee to your CRM or mailing list upon registration, ensuring seamless automation.<1>Use third-party services like <2>Zapier, <3>IFTTT or <4>Make to create custom workflows and automate tasks.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" at current rate\"],\"M2DyLc\":\"1 Active Webhook\",\"6hIk/x\":\"1 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"943BwI\":\"1 day after end date\",\"yj3N+g\":\"1 day after start date\",\"Z3etYG\":\"1 day before event\",\"szSnlj\":\"1 hour before event\",\"yTsaLw\":\"1 ticket\",\"nz96Ue\":\"1 ticket type\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 week before event\",\"09VFYl\":\"12 tickets offered\",\"HR/cvw\":\"123 Sample Street\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"A cancellation notice has been sent to\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"A new verification code has been sent to your email\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"A short description of your organizer that will be displayed to your users.\",\"aS0jtz\":\"Abandoned\",\"uyJsf6\":\"About\",\"JvuLls\":\"Absorb fee\",\"lk74+I\":\"Absorb Fee\",\"1uJlG9\":\"Accent Color\",\"g3UF2V\":\"Accept\",\"K5+3xg\":\"Accept invitation\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Account Information\",\"EHNORh\":\"Account not found\",\"bPwFdf\":\"Accounts\",\"AhwTa1\":\"Action Required: VAT Information Needed\",\"APyAR/\":\"Active Events\",\"kCl6ja\":\"Active payment methods\",\"XJOV1Y\":\"Activity\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Add a date\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Add a Single Date\",\"CjvTPJ\":\"Add another time\",\"0XCduh\":\"Add at least one time\",\"/chGpa\":\"Add connection details for the online event.\",\"UWWRyd\":\"Add custom questions to collect additional information during checkout\",\"Z/dcxc\":\"Add Date\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Add location\",\"VX6WUv\":\"Add Location\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Add Question\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Add this event to your calendar\",\"BGD9Yt\":\"Add tickets\",\"uIv4Op\":\"Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active.\",\"QN2F+7\":\"Add Webhook\",\"NsWqSP\":\"Add your social media handles and website URL. These will be displayed on your public organizer page.\",\"bVjDs9\":\"Additional Fees\",\"MKqSg4\":\"Admin Access Required\",\"0Zypnp\":\"Admin Dashboard\",\"YAV57v\":\"Affiliate\",\"I+utEq\":\"Affiliate code cannot be changed\",\"/jHBj5\":\"Affiliate created successfully\",\"uCFbG2\":\"Affiliate deleted successfully\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"Affiliate sales will be tracked\",\"mJJh2s\":\"Affiliate sales will not be tracked. This will deactivate the affiliate.\",\"jabmnm\":\"Affiliate updated successfully\",\"CPXP5Z\":\"Affiliates\",\"9Wh+ug\":\"Affiliates Exported\",\"3cqmut\":\"Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"All Archived Events\",\"gKq1fa\":\"All attendees\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"All Currencies\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"All Ended Events\",\"QsYjci\":\"All Events\",\"31KB8w\":\"All failed jobs deleted\",\"D2g7C7\":\"All jobs queued for retry\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"All Statuses\",\"dr7CWq\":\"All Upcoming Events\",\"GpT6Uf\":\"Allow attendees to update their ticket information (name, email) via a secure link sent with their order confirmation.\",\"F3mW5G\":\"Allow customers to join a waitlist when this product is sold out\",\"c4uJfc\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds.\",\"ocS8eq\":[\"Already have an account? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Already Refunded\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"Also cancel this order\",\"jkNgQR\":\"Also refund this order\",\"xYqsHg\":\"Always available\",\"Wvrz79\":\"Amount Paid\",\"Zkymb9\":\"An email to associate with this affiliate. The affiliate will not be notified.\",\"vRznIT\":\"An error occurred while checking export status.\",\"eusccx\":\"An optional message to display on the highlighted product, e.g. \\\"Selling fast 🔥\\\" or \\\"Best value\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Answer updated successfully.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"vP3Nzg\":[\"Applies to \",[\"0\"],\", non-cancelled dates currently loaded on this page.\"],\"kkVyZZ\":\"Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything.\",\"je4muG\":[\"Applies to every \",[\"0\"],\", non-cancelled date in this event — including dates not currently loaded.\"],\"YIIQtt\":\"Apply Changes\",\"NzWX1Y\":\"Apply to\",\"Ps5oDT\":\"Apply to all tickets\",\"261RBr\":\"Approve Message\",\"naCW6Z\":\"April\",\"B495Gs\":\"Archive\",\"5sNliy\":\"Archive Event\",\"BrwnrJ\":\"Archive Organizer\",\"E5eghW\":\"Archive this event to hide it from the public. You can restore it later.\",\"eqFkeI\":\"Archive this organizer. This will also archive all events belonging to this organizer.\",\"BzcxWv\":\"Archived Organizers\",\"9cQBd6\":\"Are you sure you want to archive this event? It will no longer be visible to the public.\",\"Trnl3E\":\"Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer.\",\"wOvn+e\":[\"Are you sure you want to cancel \",[\"count\"],\" date(s)? Affected attendees will be notified by email.\"],\"GTxE0U\":\"Are you sure you want to cancel this date? Affected attendees will be notified by email.\",\"VkSk/i\":\"Are you sure you want to cancel this scheduled message?\",\"0aVEBY\":\"Are you sure you want to delete all failed jobs?\",\"LchiNd\":\"Are you sure you want to delete this affiliate? This action cannot be undone.\",\"vPeW/6\":\"Are you sure you want to delete this configuration? This may affect accounts using it.\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"JmVITJ\":\"Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template.\",\"aLS+A6\":\"Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template.\",\"5H3Z78\":\"Are you sure you want to delete this webhook?\",\"147G4h\":\"Are you sure you want to leave?\",\"VDWChT\":\"Are you sure you want to make this organizer draft? This will make the organizer page invisible to the public\",\"pWtQJM\":\"Are you sure you want to make this organizer public? This will make the organizer page visible to the public\",\"EOqL/A\":\"Are you sure you want to offer a spot to this person? They will receive an email notification.\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"Are you sure you want to publish this event? Once published, it will be visible to the public.\",\"4TNVdy\":\"Are you sure you want to publish this organizer profile? Once published, it will be visible to the public.\",\"8x0pUg\":\"Are you sure you want to remove this entry from the waitlist?\",\"cDtoWq\":[\"Are you sure you want to resend the order confirmation to \",[\"0\"],\"?\"],\"xeIaKw\":[\"Are you sure you want to resend the ticket to \",[\"0\"],\"?\"],\"BjbocR\":\"Are you sure you want to restore this event?\",\"7MjfcR\":\"Are you sure you want to restore this organizer?\",\"ExDt3P\":\"Are you sure you want to unpublish this event? It will no longer be visible to the public.\",\"5Qmxo/\":\"Are you sure you want to unpublish this organizer profile? It will no longer be visible to the public.\",\"Uqefyd\":\"Are you VAT registered in the EU?\",\"+QARA4\":\"Art\",\"tLf3yJ\":\"As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees.\",\"tMeVa/\":\"Ask for name and email for each ticket purchased\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"Assigned Tier\",\"F2rX0R\":\"At least one event type must be selected\",\"BCmibk\":\"Attempts\",\"6PecK3\":\"Attendance and check-in rates across all events\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Attendee Cancelled\",\"qvylEK\":\"Attendee Created\",\"Aspq3b\":\"Attendee details collection\",\"fpb0rX\":\"Attendee details copied from order\",\"0R3Y+9\":\"Attendee Email\",\"94aQMU\":\"Attendee Information\",\"KkrBiR\":\"Attendee information collection\",\"av+gjP\":\"Attendee Name\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Attendee Status\",\"D2qlBU\":\"Attendee Updated\",\"22BOve\":\"Attendee updated successfully\",\"x8Vnvf\":\"Attendee's ticket not included in this list\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Attendees Exported\",\"UoIRW8\":\"Attendees registered\",\"5UbY+B\":\"Attendees with a specific ticket\",\"4HVzhV\":\"Attendees:\",\"HVkhy2\":\"Attribution Analytics\",\"dMMjeD\":\"Attribution Breakdown\",\"1oPDuj\":\"Attribution Value\",\"DBHTm/\":\"August\",\"JgREph\":\"Auto-offer is enabled\",\"V7Tejz\":\"Auto-Process Waitlist\",\"PZ7FTW\":\"Automatically detected based on background color, but can be overridden\",\"zlnTuI\":\"Automatically offer tickets to the next person when capacity becomes available. If disabled, you can manually process the waitlist from the Waitlist page.\",\"csDS2L\":\"Available\",\"clF06r\":\"Available to Refund\",\"NB5+UG\":\"Available Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"iH8pgl\":\"Back\",\"TeSaQO\":\"Back to Accounts\",\"X7Q/iM\":\"Back to calendar\",\"kYqM1A\":\"Back to Event\",\"s5QRF3\":\"Back to messages\",\"td/bh+\":\"Back to Reports\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"Basic Information\",\"UabgBd\":\"Body is required\",\"HWXuQK\":\"Bookmark this page to manage your order anytime.\",\"CUKVDt\":\"Brand your tickets with a custom logo, colors, and footer message.\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Business\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"Button Label\",\"ChDLlO\":\"Button Text\",\"BUe8Wj\":\"Buyer pays\",\"qF1qbA\":\"Buyers see a clean price. The platform fee is deducted from your payout.\",\"dg05rc\":\"By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.).\",\"DFqasq\":[\"By continuing, you agree to the <0>\",[\"0\"],\" Terms of Service\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Bypass Application Fees\",\"AjVXBS\":\"Calendar\",\"alkXJ5\":\"Calendar view\",\"2VLZwd\":\"Call-to-Action Button\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campaign\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Cancel all products and release them back to the pool\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool.\",\"vev1Jl\":\"Cancellation\",\"Ha17hq\":[\"Cancelled \",[\"0\"],\" date(s)\"],\"01sEfm\":\"Cannot delete the system default configuration\",\"VsM1HH\":\"Capacity Assignments\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Category\",\"o+XJ9D\":\"Change\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"CIHJJf\":\"Change waitlist settings\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Charity\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"Check your email\",\"51AsAN\":\"Check your inbox! If tickets are associated with this email, you'll receive a link to view them.\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"Check-in Created\",\"F4SRy3\":\"Check-in Deleted\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Check-In List Created\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Check-in Lists\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Check-in Rate\",\"qCqdg6\":\"Check-In Status\",\"cKj6OE\":\"Check-in Summary\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinese (Traditional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"fkb+y3\":\"Choose a saved location to apply.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Choose an Organizer\",\"Crr3pG\":\"Choose calendar\",\"LAW8Vb\":\"Choose the default setting for new events. This can be overridden for individual events.\",\"pjp2n5\":\"Choose who pays the platform fee. This does not affect additional fees you've configured in your account settings.\",\"xCJdfg\":\"Clear\",\"QyOWu9\":\"Clear location — fall back to the event default\",\"V8yTm6\":\"Clear search\",\"kmnKnX\":\"Clearing removes any per-date override. Affected dates will fall back to the event's default location.\",\"/o+aQX\":\"Click to cancel\",\"gD7WGV\":\"Click to reopen for new sales\",\"CySr+W\":\"Click to view notes\",\"RG3szS\":\"close\",\"RWw9Lg\":\"Close modal\",\"XwdMMg\":\"Code can only contain letters, numbers, hyphens, and underscores\",\"+yMJb7\":\"Code is required\",\"m9SD3V\":\"Code must be at least 3 characters\",\"V1krgP\":\"Code must be no more than 20 characters\",\"psqIm5\":\"Collaborate with your team to create amazing events together.\",\"4bUH9i\":\"Collect attendee details for each ticket purchased.\",\"TkfG8v\":\"Collect details per order\",\"96ryID\":\"Collect details per ticket\",\"FpsvqB\":\"Color Mode\",\"jEu4bB\":\"Columns\",\"CWk59I\":\"Comedy\",\"rPA+Gc\":\"Communication Preferences\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"Complete your order to secure your tickets. This offer is time-limited, so don't wait too long.\",\"5YrKW7\":\"Complete your payment to secure your tickets.\",\"xGU92i\":\"Complete your profile to join the team.\",\"QOhkyl\":\"Compose\",\"ih35UP\":\"Conference Center\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"Configuration created successfully\",\"mLBUMQ\":\"Configuration deleted successfully\",\"UIENhw\":\"Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate.\",\"eeZdaB\":\"Configuration updated successfully\",\"3cKoxx\":\"Configurations\",\"8v2LRU\":\"Configure event details, location, checkout options, and email notifications.\",\"raw09+\":\"Configure how attendee details are collected during checkout\",\"FI60XC\":\"Configure Taxes & Fees\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"Confirm Email Address\",\"JRQitQ\":\"Confirm new password\",\"Auz0Mz\":\"Confirm your email to access all features.\",\"7+grte\":\"Confirmation email sent! Please check your inbox.\",\"n/7+7Q\":\"Confirmation sent to\",\"x3wVFc\":\"Congratulations! Your event is now visible to the public.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Connect Stripe to enable email template editing\",\"LmvZ+E\":\"Connect Stripe to enable messaging\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contact \",[\"0\"]],\"41BQ3k\":\"Contact Email\",\"KcXRN+\":\"Contact email for support\",\"m8WD6t\":\"Continue Setup\",\"0GwUT4\":\"Continue to Checkout\",\"sBV87H\":\"Continue to event creation\",\"nKtyYu\":\"Continue to next step\",\"F3/nus\":\"Continue to Payment\",\"p2FRHj\":\"Control how platform fees are handled for this event\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copied from above\",\"FxVG/l\":\"Copied to clipboard\",\"PiH3UR\":\"Copied!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Copy Affiliate Link\",\"iVm46+\":\"Copy Code\",\"cF2ICc\":\"Copy customer link\",\"+2ZJ7N\":\"Copy details to first attendee\",\"ZN1WLO\":\"Copy Email\",\"y1eoq1\":\"Copy link\",\"tUGbi8\":\"Copy my details to:\",\"y22tv0\":\"Copy this link to share it anywhere\",\"/4gGIX\":\"Copy to clipboard\",\"e0f4yB\":\"Could not delete location\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Could not retrieve address details\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Could not save date\",\"eeLExK\":\"Could not save location\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Cover Image\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Cover image will be displayed at the top of your event page\",\"2NLjA6\":\"Cover image will be displayed at the top of your organizer page\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"Create \",[\"0\"],\" Template\"],\"RKKhnW\":\"Create a custom widget to sell tickets on your site.\",\"6sk7PP\":\"Create a fixed number\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"Create a password\",\"j7xZ7J\":\"Create additional organizers to manage separate brands, departments, or event series under one account. Each organizer has its own events, settings, and public page.\",\"xfKgwv\":\"Create Affiliate\",\"tudG8q\":\"Create and configure tickets and merchandise for sale.\",\"YAl9Hg\":\"Create Configuration\",\"BTne9e\":\"Create custom email templates for this event that override the organizer defaults\",\"YIDzi/\":\"Create Custom Template\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"Create discounts, access codes for hidden tickets, and special offers.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Create for this date\",\"eWEV9G\":\"Create new password\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Create Ticket or Product\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Create trackable links to reward partners who promote your event.\",\"dkAPxi\":\"Create Webhook\",\"5slqwZ\":\"Create Your Event\",\"JQNMrj\":\"Create your first event\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Create your own event\",\"67NsZP\":\"Creating Event...\",\"H34qcM\":\"Creating Organizer...\",\"1YMS+X\":\"Creating your event, please wait\",\"yiy8Jt\":\"Creating your organizer profile, please wait\",\"lfLHNz\":\"CTA label is required\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"Currently available for purchase\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Custom date and time\",\"mimF6c\":\"Custom message after checkout\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Custom Questions\",\"axv/Mi\":\"Custom template\",\"2YeVGY\":\"Customer link copied to clipboard\",\"QMHSMS\":\"Customer will receive an email confirming the refund\",\"L/Qc+w\":\"Customer's email address\",\"wpfWhJ\":\"Customer's first name\",\"GIoqtA\":\"Customer's last name\",\"NihQNk\":\"Customers\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization.\",\"xJaTUK\":\"Customize the layout, colors, and branding of your event homepage.\",\"MXZfGN\":\"Customize the questions asked during checkout to gather important information from your attendees.\",\"iX6SLo\":\"Customize the text shown on the continue button\",\"pxNIxa\":\"Customize your email template using Liquid templating\",\"3trPKm\":\"Customize your organizer page appearance\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"Daily revenue, taxes, fees, and refunds across all events\",\"zgCHnE\":\"Daily Sales Report\",\"nHm0AI\":\"Daily sales, tax, and fee breakdown\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Dark\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"lnYE59\":\"Date of the event\",\"gnBreG\":\"Date order was placed\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"VTsZuy\":\"Dates and times are managed on the\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Decline\",\"ovBPCi\":\"Default\",\"JtI4vj\":\"Default attendee information collection\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Default Fee Handling\",\"1bZAZA\":\"Default template will be used\",\"HNlEFZ\":\"delete\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Delete Affiliate\",\"KZN4Lc\":\"Delete All\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Delete Event\",\"+jw/c1\":\"Delete image\",\"hdyeZ0\":\"Delete Job\",\"xxjZeP\":\"Delete location\",\"sY3tIw\":\"Delete Organizer\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Delete Template\",\"mxsm1o\":\"Delete this question? This cannot be undone.\",\"snMaH4\":\"Delete webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deselect All\",\"NvuEhl\":\"Design Elements\",\"H8kMHT\":\"Didn't receive the code?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Dismiss this message\",\"BREO0S\":\"Display a checkbox allowing customers to opt-in to receive marketing communications from this event organizer.\",\"pfa8F0\":\"Display name\",\"Kdpf90\":\"Don't forget!\",\"352VU2\":\"Don't have an account? <0>Sign up\",\"AXXqG+\":\"Donation\",\"DPfwMq\":\"Done\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"Download sales, attendee, and financial reports for all completed orders.\",\"eneWvv\":\"Draft\",\"Ts8hhq\":\"Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable.\",\"TnzbL+\":\"Due to the high risk of spam, you must connect a Stripe account before you can send messages to attendees.\\nThis is to ensure that all event organizers are verified and accountable.\",\"euc6Ns\":\"Duplicate\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplicate Product\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Dutch\",\"22xieU\":\"e.g. 180 (3 hours)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"e.g., Get Tickets, Register Now\",\"fc7wGW\":\"e.g., Important update about your tickets\",\"54MPqC\":\"e.g., Standard, Premium, Enterprise\",\"3RQ81z\":\"Each person will receive an email with a reserved spot to complete their purchase.\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Edit \",[\"0\"],\" Template\"],\"v4+lcZ\":\"Edit Affiliate\",\"2iZEz7\":\"Edit Answer\",\"t2bbp8\":\"Edit Attendee\",\"etaWtB\":\"Edit Attendee Details\",\"+guao5\":\"Edit Configuration\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Edit location\",\"8oivFT\":\"Edit Location\",\"vRWOrM\":\"Edit Order Details\",\"fW5sSv\":\"Edit webhook\",\"nP7CdQ\":\"Edit Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Education\",\"iiWXDL\":\"Eligibility Failures\",\"zPiC+q\":\"Eligible Check-In Lists\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"Email & Templates\",\"hbwCKE\":\"Email address copied to clipboard\",\"dSyJj6\":\"Email addresses do not match\",\"elW7Tn\":\"Email Body\",\"ZsZeV2\":\"Email is required\",\"Be4gD+\":\"Email Preview\",\"6IwNUc\":\"Email Templates\",\"H/UMUG\":\"Email Verification Required\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"Email verified successfully!\",\"FSN4TS\":\"Embed Widget\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"Enable attendee self-service\",\"hEtQsg\":\"Enable attendee self-service by default\",\"Upeg/u\":\"Enable this template for sending emails\",\"7dSOhU\":\"Enable Waitlist\",\"RxzN1M\":\"Enabled\",\"xDr/ct\":\"End\",\"sGjBEq\":\"End Date & Time (optional)\",\"PKXt9R\":\"End date must be after start date\",\"UmzbPa\":\"End date of the occurrence\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"End time (optional)\",\"jpNdOC\":\"End time of the occurrence\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Enter a subject and body to see the preview\",\"khyScF\":\"Enter a time to shift by.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Enter affiliate email (optional)\",\"ARkzso\":\"Enter affiliate name\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"Enter email\",\"INDKM9\":\"Enter email subject...\",\"xUgUTh\":\"Enter first name\",\"9/1YKL\":\"Enter last name\",\"VpwcSk\":\"Enter new password\",\"kWg31j\":\"Enter unique affiliate code\",\"C3nD/1\":\"Enter your email\",\"VmXiz4\":\"Enter your email and we'll send you instructions to reset your password.\",\"n9V+ps\":\"Enter your name\",\"IdULhL\":\"Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)\",\"o21Y+P\":\"entries\",\"X88/6w\":\"Entries will appear here when customers join the waitlist for sold out products.\",\"LslKhj\":\"Error loading logs\",\"VCNHvW\":\"Event Archived\",\"ZD0XSb\":\"Event archived successfully\",\"WgD6rb\":\"Event Category\",\"b46pt5\":\"Event Cover Image\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Event Created\",\"1Hzev4\":\"Event custom template\",\"7u9/DO\":\"Event deleted successfully\",\"imgKgl\":\"Event Description\",\"kJDmsI\":\"Event details\",\"m/N7Zq\":\"Event Full Address\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Event Location\",\"PYs3rP\":\"Event name\",\"HhwcTQ\":\"Event Name\",\"WZZzB6\":\"Event name is required\",\"Wd5CDM\":\"Event name should be less than 150 characters\",\"4JzCvP\":\"Event Not Available\",\"Gh9Oqb\":\"Event organizer name\",\"mImacG\":\"Event Page\",\"Hk9Ki/\":\"Event restored successfully\",\"JyD0LH\":\"Event Settings\",\"cOePZk\":\"Event Time\",\"e8WNln\":\"Event timezone\",\"GeqWgj\":\"Event Timezone\",\"XVLu2v\":\"Event Title\",\"OfmsI9\":\"Event Too New\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Event Types\",\"+HeiVx\":\"Event Updated\",\"4K2OjV\":\"Event Venue\",\"19j6uh\":\"Events Performance\",\"PC3/fk\":\"Events Starting in Next 24 Hours\",\"nwiZdc\":[\"Every \",[\"0\"]],\"2LJU4o\":[\"Every \",[\"0\"],\" days\"],\"yLiYx+\":[\"Every \",[\"0\"],\" months\"],\"nn9ice\":[\"Every \",[\"0\"],\" weeks\"],\"Cdr8f9\":[\"Every \",[\"0\"],\" weeks on \",[\"1\"]],\"GVEHRk\":[\"Every \",[\"0\"],\" years\"],\"fTFfOK\":\"Every email template must include a call-to-action button that links to the appropriate page\",\"BVinvJ\":\"Examples: \\\"How did you hear about us?\\\", \\\"Company name for invoice\\\"\",\"2hGPQG\":\"Examples: \\\"T-shirt size\\\", \\\"Meal preference\\\", \\\"Job title\\\"\",\"qNuTh3\":\"Exception\",\"M1RnFv\":\"Expired\",\"kF8HQ7\":\"Export Answers\",\"2KAI4N\":\"Export CSV\",\"JKfSAv\":\"Export failed. Please try again.\",\"SVOEsu\":\"Export started. Preparing file...\",\"wuyaZh\":\"Export successful\",\"9bpUSo\":\"Exporting Affiliates\",\"jtrqH9\":\"Exporting Attendees\",\"R4Oqr8\":\"Exporting complete. Downloading file...\",\"UlAK8E\":\"Exporting Orders\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Failed\",\"8uOlgz\":\"Failed At\",\"tKcbYd\":\"Failed Jobs\",\"SsI9v/\":\"Failed to abandon order. Please try again.\",\"LdPKPR\":\"Failed to assign configuration\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Failed to cancel message\",\"cEFg3R\":\"Failed to create affiliate\",\"dVgNF1\":\"Failed to create configuration\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Failed to create template\",\"aFk48v\":\"Failed to delete configuration\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Failed to delete event\",\"Zw6LWb\":\"Failed to delete job\",\"tq0abZ\":\"Failed to delete jobs\",\"2mkc3c\":\"Failed to delete organizer\",\"vKMKnu\":\"Failed to delete question\",\"xFj7Yj\":\"Failed to delete template\",\"jo3Gm6\":\"Failed to export affiliates\",\"Jjw03p\":\"Failed to export attendees\",\"ZPwFnN\":\"Failed to export orders\",\"zGE3CH\":\"Failed to export report. Please try again.\",\"lS9/aZ\":\"Failed to load recipients\",\"X4o0MX\":\"Failed to load Webhook\",\"ETcU7q\":\"Failed to offer spot\",\"5670b9\":\"Failed to offer tickets\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"Failed to remove from waitlist\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"Failed to reorder questions\",\"EJPAcd\":\"Failed to resend order confirmation\",\"DjSbj3\":\"Failed to resend ticket\",\"YQ3QSS\":\"Failed to resend verification code\",\"wDioLj\":\"Failed to retry job\",\"DKYTWG\":\"Failed to retry jobs\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"Failed to save template\",\"l6acRV\":\"Failed to save VAT settings. Please try again.\",\"T6B2gk\":\"Failed to send message. Please try again.\",\"lKh069\":\"Failed to start export job\",\"t/KVOk\":\"Failed to start impersonation. Please try again.\",\"QXgjH0\":\"Failed to stop impersonation. Please try again.\",\"i0QKrm\":\"Failed to update affiliate\",\"NNc33d\":\"Failed to update answer.\",\"E9jY+o\":\"Failed to update attendee\",\"uQynyf\":\"Failed to update configuration\",\"i2PFQJ\":\"Failed to update event status\",\"EhlbcI\":\"Failed to update messaging tier\",\"rpGMzC\":\"Failed to update order\",\"T2aCOV\":\"Failed to update organizer status\",\"Eeo/Gy\":\"Failed to update setting\",\"kqA9lY\":\"Failed to update VAT settings\",\"7/9RFs\":\"Failed to upload image.\",\"nkNfWu\":\"Failed to upload image. Please try again.\",\"rxy0tG\":\"Failed to verify email\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"Fee Currency\",\"/sV91a\":\"Fee Handling\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Fees Bypassed\",\"cf35MA\":\"Festival\",\"pAey+4\":\"File is too large. Maximum size is 5MB.\",\"VejKUM\":\"Fill in your details above first\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filter Attendees\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filter by Event\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"First attendee\",\"4pwejF\":\"First name is required\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Fixed Fee\",\"zWqUyJ\":\"Fixed fee charged per transaction\",\"LWL3Bs\":\"Fixed fee must be 0 or greater\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"lWxAUo\":\"Food & Drink\",\"nFm+5u\":\"Footer Text\",\"a8nooQ\":\"Fourth\",\"mob/am\":\"Fr\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Full refund\",\"UsIfa8\":\"Full resolved address\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"General Admission\",\"3ep0Gx\":\"General information about your organizer\",\"ziAjHi\":\"Generate\",\"exy8uo\":\"Generate code\",\"4CETZY\":\"Get Directions\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Get started\",\"u6FPxT\":\"Get Tickets\",\"8KDgYV\":\"Get your event ready\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Go to Event Page\",\"gHSuV/\":\"Go to home page\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Good readability\",\"76gPWk\":\"Got it\",\"aGWZUr\":\"Gross revenue\",\"n8IUs7\":\"Gross Revenue\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Guest Management\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"Hello \",[\"0\"],\", manage your platform from here.\"],\"dORAcs\":\"Here are all the tickets associated with your email address.\",\"g+2103\":\"Here is your affiliate link\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Hi.Events Fee\",\"zppscQ\":\"Hi.Events platform fees and VAT breakdown by transaction\",\"D+zLDD\":\"Hidden\",\"DRErHC\":\"Hidden from attendees - only visible to organizers\",\"NNnsM0\":\"Hide advanced options\",\"P+5Pbo\":\"Hide Answers\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"Hide Options\",\"gtEbeW\":\"Highlight\",\"NF8sdv\":\"Highlight Message\",\"MXSqmS\":\"Highlight this product\",\"7ER2sc\":\"Highlighted\",\"sq7vjE\":\"Highlighted products will have a different background color to make them stand out on the event page.\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"sy9anN\":\"How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"AVpmAa\":\"How to pay offline\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Hungarian\",\"8Wgd41\":\"I acknowledge my responsibilities as a data controller\",\"O8m7VA\":\"I agree to receive email notifications related to this event\",\"YLgdk5\":\"I confirm this is a transactional message related to this event\",\"4/kP5a\":\"If a new tab did not open automatically, please click the button below to continue to checkout.\",\"W/eN+G\":\"If blank, the address will be used to generate a Google Maps link\",\"iIEaNB\":\"If you have an account with us, you will receive an email with instructions on how to reset your password.\",\"an5hVd\":\"Images\",\"tSVr6t\":\"Impersonate\",\"TWXU0c\":\"Impersonate User\",\"5LAZwq\":\"Impersonation started\",\"IMwcdR\":\"Impersonation stopped\",\"0I0Hac\":\"Important Notice\",\"yD3avI\":\"Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving.\",\"jT142F\":[\"In \",[\"diffHours\"],\" hours\"],\"OoSyqO\":[\"In \",[\"diffMinutes\"],\" minutes\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"Ip0hl5\":\"in_person, online, unset, or mixed\",\"F1Xp97\":\"Individual attendees\",\"85e6zs\":\"Insert Liquid Token\",\"38KFY0\":\"Insert Variable\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrations\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"Invalid email\",\"5tT0+u\":\"Invalid email format\",\"f9WRpE\":\"Invalid file type. Please upload an image.\",\"tnL+GP\":\"Invalid Liquid syntax. Please correct it and try again.\",\"N9JsFT\":\"Invalid VAT number format\",\"g+lLS9\":\"Invite a team member\",\"1z26sk\":\"Invite Team Member\",\"KR0679\":\"Invite Team Members\",\"aH6ZIb\":\"Invite Your Team\",\"IuMGvq\":\"Invoice\",\"Lj7sBL\":\"Italian\",\"F5/CBH\":\"item(s)\",\"BzfzPK\":\"Items\",\"rjyWPb\":\"January\",\"KmWyx0\":\"Job\",\"o5r6b2\":\"Job deleted\",\"cd0jIM\":\"Job Details\",\"ruJO57\":\"Job Name\",\"YZi+Hu\":\"Job queued for retry\",\"nCywLA\":\"Join from anywhere\",\"SNzppu\":\"Join Waitlist\",\"dLouFI\":[\"Join Waitlist for \",[\"productDisplayName\"]],\"2gMuHR\":\"Joined\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Just looking for your tickets?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Keep me updated on news and events from \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"4Sffp7\":\"Label for the occurrence\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Last 14 Days\",\"ve9JTU\":\"Last name is required\",\"h0Q9Iw\":\"Last Response\",\"gw3Ur5\":\"Last Triggered\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"pzAivY\":\"Latitude of the resolved location\",\"N5TErv\":\"Leave empty for unlimited\",\"L/hDDD\":\"Leave empty to apply this check-in list to all occurrences\",\"9Pf3wk\":\"Leave on to cover every ticket on the event. Turn off to pick specific tickets.\",\"Hq2BzX\":\"Let them know about the change\",\"+uexiy\":\"Let them know about the changes\",\"exYcTF\":\"Library\",\"1njn7W\":\"Light\",\"1qY5Ue\":\"Link Expired or Invalid\",\"+zSD/o\":\"Link to event homepage\",\"psosdY\":\"Link to order details\",\"6JzK4N\":\"Link to ticket\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links Allowed\",\"2BBAbc\":\"List\",\"5NZpX8\":\"List view\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live Events\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Loading preview...\",\"IoDI2o\":\"Loading tokens...\",\"G3Ge9Z\":\"Loading webhook logs...\",\"NFxlHW\":\"Loading Webhooks\",\"E0DoRM\":\"Location deleted\",\"NtLHT3\":\"Location Formatted Address\",\"h4vxDc\":\"Location Latitude\",\"f2TMhR\":\"Location Longitude\",\"lnCo2f\":\"Location Mode\",\"8pmGFk\":\"Location Name\",\"7w8lJU\":\"Location saved\",\"YsRXDD\":\"Location updated\",\"A/kIva\":\"location updates\",\"VppBoU\":\"Locations\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Cover\",\"gddQe0\":\"Logo and cover image for your organizer\",\"TBEnp1\":\"Logo will be displayed in the header\",\"Jzu30R\":\"Logo will be displayed on the ticket\",\"zKTMTg\":\"Longitude of the resolved location\",\"PSRm6/\":\"Look Up My Tickets\",\"yJFu/X\":\"Main Office\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Manage \",[\"0\"]],\"wZJfA8\":\"Manage dates and times for your recurring event\",\"RlzPUE\":\"Manage on Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Manage Schedule\",\"zXuaxY\":\"Manage your event's waitlist, view stats, and offer tickets to attendees.\",\"BWTzAb\":\"Manual\",\"g2npA5\":\"Manual offer\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max Messages / 24h\",\"Qp4HWD\":\"Max Recipients / Message\",\"3JzsDb\":\"May\",\"agPptk\":\"Medium\",\"xDAtGP\":\"Message\",\"bECJqy\":\"Message approved successfully\",\"1jRD0v\":\"Message attendees with specific tickets\",\"uQLXbS\":\"Message cancelled\",\"48rf3i\":\"Message cannot exceed 5000 characters\",\"ZPj0Q8\":\"Message Details\",\"Vjat/X\":\"Message is required\",\"0/yJtP\":\"Message order owners with specific products\",\"saG4At\":\"Message Scheduled\",\"mFdA+i\":\"Messaging Tier\",\"v7xKtM\":\"Messaging tier updated successfully\",\"H9HlDe\":\"minutes\",\"agRWc1\":\"Minutes\",\"YYzBv9\":\"Mo\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Monetary values are approximate totals across all currencies\",\"qvF+MT\":\"Monitor and manage failed background jobs\",\"kY2ll9\":\"month\",\"HajiZl\":\"Month\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Most Viewed Events (Last 14 Days)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Music\",\"oVGCGh\":\"My Tickets\",\"8/brI5\":\"Name is required\",\"sFFArG\":\"Name must be less than 255 characters\",\"sCV5Yc\":\"Name of the event\",\"xxU3NX\":\"Net Revenue\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"New location\",\"ArHT/C\":\"New Signups\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"Nightlife\",\"HSw5l3\":\"No - I'm an individual or non-VAT registered business\",\"VHfLAW\":\"No accounts\",\"+jIeoh\":\"No accounts found\",\"074+X8\":\"No Active Webhooks\",\"zxnup4\":\"No Affiliates to show\",\"Dwf4dR\":\"No attendee questions yet\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"No attribution data found\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"No capacity\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"No check-in lists available for this event.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"No configurations found\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"No data found for the selected filters. Try adjusting the date range or currency.\",\"lFVUyx\":\"No date-specific check-in list\",\"I8mtzP\":\"No dates available this month. Try navigating to another month.\",\"yDukIL\":\"No dates match the current filters.\",\"B7phdj\":\"No dates match your filters\",\"/ZB4Um\":\"No dates match your search\",\"gEdNe8\":\"No dates scheduled yet\",\"27GYXJ\":\"No dates scheduled.\",\"pZNOT9\":\"No end date\",\"dW40Uz\":\"No events found\",\"8pQ3NJ\":\"No events starting in the next 24 hours\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"No failed jobs\",\"EpvBAp\":\"No invoice\",\"XZkeaI\":\"No logs found\",\"nrSs2u\":\"No messages found\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"No order questions yet\",\"EJ7bVz\":\"No orders found\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"No organizer activity in the last 14 days\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"No other organizers available\",\"PChXMe\":\"No Paid Orders\",\"6jYQGG\":\"No past events\",\"CHzaTD\":\"No popular events in the last 14 days\",\"zK/+ef\":\"No products available for selection\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"No products have waiting entries\",\"wYiAtV\":\"No recent account signups\",\"UW90md\":\"No recipients found\",\"QoAi8D\":\"No response\",\"JeO7SI\":\"No Response\",\"EK/G11\":\"No responses yet\",\"7J5OKy\":\"No saved locations yet\",\"wpCjcf\":\"No saved locations yet. They'll appear here as you create events with addresses.\",\"mPdY6W\":\"No suggestions\",\"3sRuiW\":\"No Tickets Found\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"No upcoming events\",\"qpC74J\":\"No users found\",\"8wgkoi\":\"No viewed events in the last 14 days\",\"Arzxc1\":\"No waitlist entries\",\"n5vdm2\":\"No webhook events have been recorded for this endpoint yet. Events will appear here once they are triggered.\",\"4GhX3c\":\"No Webhooks\",\"4+am6b\":\"No, keep me here\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Not Checked In\",\"8n10sz\":\"Not Eligible\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"UYWXdN\":\"Occurrence End Date\",\"k7dZT5\":\"Occurrence End Time\",\"Opinaj\":\"Occurrence Label\",\"V9flmL\":\"Occurrence Schedule\",\"NUTUUs\":\"Occurrence Schedule page\",\"AT8UKD\":\"Occurrence Start Date\",\"Um8bvD\":\"Occurrence Start Time\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"of\",\"9h7RDh\":\"Offer\",\"EfK2O6\":\"Offer Spot\",\"3sVRey\":\"Offer Tickets\",\"2O7Ybb\":\"Offer Timeout\",\"1jUg5D\":\"Offered\",\"l+/HS6\":[\"Offers expire after \",[\"timeoutHours\"],\" hours.\"],\"lQgMLn\":\"Office or venue name\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offline Payment\",\"nO3VbP\":[\"On sale \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"w3DG44\":\"Online Connection Details\",\"WjSpu5\":\"Online Event\",\"TP6jss\":\"Online event connection details\",\"NdOxqr\":\"Only account administrators can delete or archive events. Contact your account admin for assistance.\",\"rnoDMF\":\"Only account administrators can delete or archive organizers. Contact your account admin for assistance.\",\"bU7oUm\":\"Only send to orders with these statuses\",\"M2w1ni\":\"Only visible with promo code\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Optional nickname shown in pickers, e.g. \\\"HQ Conference Room\\\"\",\"HXMJxH\":\"Optional text for disclaimers, contact info, or thank you notes (single line only)\",\"L565X2\":\"options\",\"8m9emP\":\"or add a single date\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Order & Ticket\",\"H5qWhm\":\"Order cancelled\",\"b6+Y+n\":\"Order complete\",\"x4MLWE\":\"Order Confirmation\",\"CsTTH0\":\"Order confirmation resent successfully\",\"ppuQR4\":\"Order Created\",\"0UZTSq\":\"Order Currency\",\"xtQzag\":\"Order details\",\"HdmwrI\":\"Order Email\",\"bwBlJv\":\"Order First Name\",\"vrSW9M\":\"Order has been canceled and refunded. The order owner has been notified.\",\"rzw+wS\":\"Order Holders\",\"oI/hGR\":\"Order ID\",\"Pc729f\":\"Order Is Awaiting Offline Payment\",\"F4NXOl\":\"Order Last Name\",\"RQCXz6\":\"Order Limits\",\"SO9AEF\":\"Order limits set\",\"5RDEEn\":\"Order Locale\",\"vu6Arl\":\"Order Marked as Paid\",\"sLbJQz\":\"Order not found\",\"kvYpYu\":\"Order Not Found\",\"i8VBuv\":\"Order Number\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Order owner\",\"eB5vce\":\"Order owners with a specific product\",\"CxLoxM\":\"Order owners with products\",\"DoH3fD\":\"Order Payment Pending\",\"UkHo4c\":\"Order Ref\",\"EZy55F\":\"Order Refunded\",\"6eSHqs\":\"Order statuses\",\"oW5877\":\"Order Total\",\"e7eZuA\":\"Order Updated\",\"1SQRYo\":\"Order updated successfully\",\"KndP6g\":\"Order URL\",\"3NT0Ck\":\"Order was cancelled\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Orders Completed\",\"5It1cQ\":\"Orders Exported\",\"tlKX/S\":\"Orders spanning multiple dates will be flagged for manual review.\",\"UQ0ACV\":\"Orders Total\",\"B/EBQv\":\"Orders:\",\"qtGTNu\":\"Organic Accounts\",\"ucgZ0o\":\"Organization\",\"P/JHA4\":\"Organizer archived successfully\",\"S3CZ5M\":\"Organizer Dashboard\",\"GzjTd0\":\"Organizer deleted successfully\",\"Uu0hZq\":\"Organizer Email\",\"Gy7BA3\":\"Organizer email address\",\"SQqJd8\":\"Organizer Not Found\",\"HF8Bxa\":\"Organizer restored successfully\",\"wpj63n\":\"Organizer Settings\",\"o1my93\":\"Organizer status update failed. Please try again later\",\"rLHma1\":\"Organizer status updated\",\"LqBITi\":\"Organizer/default template will be used\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"Other\",\"RsiDDQ\":\"Other Lists (Ticket Not Included)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Outgoing Messages\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"Overview\",\"6WdDG7\":\"Page\",\"8uqsE5\":\"Page no longer available\",\"QkLf4H\":\"Page URL\",\"sF+Xp9\":\"Page Views\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Paid Accounts\",\"5F7SYw\":\"Partial refund\",\"fFYotW\":[\"Partially refunded: \",[\"0\"]],\"i8day5\":\"Pass fee to buyer\",\"k4FLBQ\":\"Pass to Buyer\",\"Ff0Dor\":\"Past\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"Past Events\",\"/l/ckQ\":\"Paste URL\",\"URAE3q\":\"Paused\",\"4fL/V7\":\"Pay\",\"OZK07J\":\"Pay to unlock\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Payment Date\",\"ENEPLY\":\"Payment method\",\"8Lx2X7\":\"Payment received\",\"fx8BTd\":\"Payments not available\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Pending Review\",\"dPYu1F\":\"Per Attendee\",\"mQV/nJ\":\"per min\",\"VlXNyK\":\"Per order\",\"hauDFf\":\"Per ticket\",\"mnF83a\":\"Percentage Fee\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"Percentage must be between 0 and 100\",\"MkuVAZ\":\"Percentage of transaction amount\",\"/Bh+7r\":\"Performance\",\"fIp56F\":\"Permanently delete this event and all its associated data.\",\"nJeeX7\":\"Permanently delete this organizer and all its events.\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"Personal Information\",\"zmwvG2\":\"Phone\",\"SdM+Q1\":\"Pick a location\",\"tSR/oe\":\"Pick an end date\",\"e8kzpp\":\"Pick at least one day of the month\",\"35C8QZ\":\"Pick at least one day of the week\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Placed\",\"wBJR8i\":\"Planning an event?\",\"J3lhKT\":\"Platform fee\",\"RD51+P\":[\"Platform fee of \",[\"0\"],\" deducted from your payout\"],\"br3Y/y\":\"Platform Fees\",\"3buiaw\":\"Platform Fees Report\",\"kv9dM4\":\"Platform Revenue\",\"PJ3Ykr\":\"Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions.\",\"OtjenF\":\"Please enter a valid email address\",\"jEw0Mr\":\"Please enter a valid URL\",\"n8+Ng/\":\"Please enter the 5-digit code\",\"r+lQXT\":\"Please enter your VAT number\",\"Dvq0wf\":\"Please provide an image.\",\"2cUopP\":\"Please restart the checkout process.\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"Please select a date range\",\"EFq6EG\":\"Please select an image.\",\"fuwKpE\":\"Please try again.\",\"klWBeI\":\"Please wait before requesting another code\",\"hfHhaa\":\"Please wait while we prepare your affiliates for export...\",\"o+tJN/\":\"Please wait while we prepare your attendees for export...\",\"+5Mlle\":\"Please wait while we prepare your orders for export...\",\"trnWaw\":\"Polish\",\"luHAJY\":\"Popular Events (Last 14 Days)\",\"p/78dY\":\"Position\",\"TjX7xL\":\"Post Checkout Message\",\"OESu7I\":\"Prevent overselling by sharing inventory across multiple ticket types.\",\"NgVUL2\":\"Preview checkout form\",\"cs5muu\":\"Preview Event page\",\"+4yRWM\":\"Price of the ticket\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"Price Tiers\",\"ReihZ7\":\"Print Preview\",\"JnuPvH\":\"Print Ticket\",\"tYF4Zq\":\"Print to PDF\",\"LcET2C\":\"Privacy Policy\",\"8z6Y5D\":\"Process Refund\",\"JcejNJ\":\"Processing order\",\"EWCLpZ\":\"Product Created\",\"XkFYVB\":\"Product Deleted\",\"YMwcbR\":\"Product sales, revenue, and tax breakdown\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Product Updated\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Promo code\",\"k3wH7i\":\"Promo code usage and discount breakdown\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Promo Only\",\"dLm8V5\":\"Promotional emails may result in account suspension\",\"XoEWtl\":\"Provide at least one address field for the new location.\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"aemBRq\":\"Provider\",\"EEYbdt\":\"Publish\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Purchased\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qty\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Questions reordered\",\"b24kPi\":\"Queue\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Rate\",\"mnUGVC\":\"Rate limit exceeded. Please try again later.\",\"t41hVI\":\"Re-offer Spot\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Receive product updates from \",[\"0\"],\".\"],\"pLXbi8\":\"Recent Account Signups\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Recent Orders\",\"7hPBBn\":\"recipient\",\"jp5bq8\":\"recipients\",\"yPrbsy\":\"Recipients\",\"E1F5Ji\":\"Recipients are available after the message is sent\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Recurring Event\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecting to Stripe...\",\"pnoTN5\":\"Referral Accounts\",\"ACKu03\":\"Refresh Preview\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Refund amount\",\"qY4rpA\":\"Refund failed\",\"TspTcZ\":\"Refund Issued\",\"FaK/8G\":[\"Refund Order \",[\"0\"]],\"MGbi9P\":\"Refund pending\",\"BDSRuX\":[\"Refunded: \",[\"0\"]],\"bU4bS1\":\"Refunds\",\"rYXfOA\":\"Regional Settings\",\"5tl0Bp\":\"Registration Questions\",\"ZNo5k1\":\"Remaining\",\"EMnuA4\":\"Reminder scheduled\",\"Bjh87R\":\"Remove label from all dates\",\"KkJtVK\":\"Reopen for new sales\",\"XJwWJp\":\"Reopen this date for new sales? Previously cancelled tickets will not be restored — affected attendees stay cancelled and any refunds already issued are not reversed.\",\"bAwDQs\":\"Repeat every\",\"CQeZT8\":\"Report not found\",\"JEPMXN\":\"Request a new link\",\"TMLAx2\":\"Required\",\"mdeIOH\":\"Resend code\",\"sQxe68\":\"Resend Confirmation\",\"bxoWpz\":\"Resend Confirmation Email\",\"G42SNI\":\"Resend email\",\"TTpXL3\":[\"Resend in \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Resend Ticket\",\"Uwsg2F\":\"Reserved\",\"8wUjGl\":\"Reserved until\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"Resetting...\",\"404zLK\":\"Resolved location or venue name\",\"ZlCDf+\":\"Response\",\"bsydMp\":\"Response Details\",\"yKu/3Y\":\"Restore\",\"RokrZf\":\"Restore Event\",\"/JyMGh\":\"Restore Organizer\",\"HFvFRb\":\"Restore this event to make it visible again.\",\"DDIcqy\":\"Restore this organizer and make it active again.\",\"mO8KLE\":\"results\",\"6gRgw8\":\"Retry\",\"1BG8ga\":\"Retry All\",\"rDC+T6\":\"Retry Job\",\"CbnrWb\":\"Return to Event\",\"mdQ0zb\":\"Reusable venues for your events. Locations created from the autocomplete are saved here automatically.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Revenue Summary\",\"O/8Ceg\":\"Revenue today\",\"CfuueU\":\"Revoke Offer\",\"RIgKv+\":\"Run until a specific date\",\"JYRqp5\":\"Sa\",\"dFFW9L\":[\"Sale ended \",[\"0\"]],\"loCKGB\":[\"Sale ends \",[\"0\"]],\"wlfBad\":\"Sale Period\",\"qi81Jg\":\"Sale period dates apply across all dates in your schedule. To control pricing and availability for individual dates, use the overrides on the <0>Occurrence Schedule page.\",\"5CDM6r\":\"Sale period set\",\"ftzaMf\":\"Sale period, order limits, visibility\",\"zpekWp\":[\"Sale starts \",[\"0\"]],\"mUv9U4\":\"Sales\",\"9KnRdL\":\"Sales are paused\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Sales, orders, and performance metrics for all events\",\"3Q1AWe\":\"Sales:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Sample ticket price\",\"8BRPoH\":\"Sample Venue\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Save Social Links\",\"9Y3hAT\":\"Save Template\",\"C8ne4X\":\"Save Ticket Design\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Save VAT Settings\",\"4RvD9q\":\"Saved location\",\"cgw0cL\":\"Saved locations\",\"lvSrsT\":\"Saved Locations\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Scan\",\"0zd6Nm\":\"Scan a ticket to check in an attendee\",\"bQG7Qk\":\"Scanned tickets will appear here\",\"WDYSLJ\":\"Scanner mode\",\"gmB6oO\":\"Schedule\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Schedule created successfully\",\"YP7frt\":\"Schedule ends on\",\"QS1Nla\":\"Schedule for later\",\"NAzVVw\":\"Schedule Message\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Scheduled\",\"qcP/8K\":\"Scheduled time\",\"A1taO8\":\"Search\",\"ftNXma\":\"Search affiliates...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Search by account name or email...\",\"VX+B3I\":\"Search by event title or organizer...\",\"R0wEyA\":\"Search by job name or exception...\",\"VT+urE\":\"Search by name or email...\",\"GHdjuo\":\"Search by name, email, or account...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Search by order ID, customer name, or email...\",\"4DSz7Z\":\"Search by subject, event, or account...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Search messages...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Secure Checkout\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Select a category\",\"hTKQwS\":\"Select a Date & Time\",\"e4L7bF\":\"Select a message to view its contents\",\"zPRPMf\":\"Select a tier\",\"uqpVri\":\"Select a time\",\"BFRSTT\":\"Select Account\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Select All\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Select an event\",\"CFbaPk\":\"Select attendee group\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Select currency\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Select end date and time\",\"gTN6Ws\":\"Select end time\",\"0U6E9W\":\"Select event category\",\"j9cPeF\":\"Select event types\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"Select start date and time\",\"dJZTv2\":\"Select start time\",\"x8XMsJ\":\"Select the messaging tier for this account. This controls message limits and link permissions.\",\"aT3jZX\":\"Select timezone\",\"TxfvH2\":\"Select which attendees should receive this message\",\"Ropvj0\":\"Select which events will trigger this webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"Selected\",\"uq3CXQ\":\"Sell out your event.\",\"j9b/iy\":\"Selling fast 🔥\",\"73qYgo\":\"Send as test\",\"HMAqFK\":\"Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later.\",\"22Itl6\":\"Send me a copy\",\"NpEm3p\":\"Send now\",\"nOBvex\":\"Send real-time order and attendee data to your external systems.\",\"1lNPhX\":\"Send refund notification email\",\"eaUTwS\":\"Send reset link\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Send your first message\",\"3nMAVT\":\"Sending in 2d 4h\",\"IoAuJG\":\"Sending...\",\"h69WC6\":\"Sent\",\"BVu2Hz\":\"Sent By\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Sent to customers when they place an order\",\"LxSN5F\":\"Sent to each attendee with their ticket details\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"Set default platform fee settings for new events created under this organizer.\",\"eXssj5\":\"Set default settings for new events created under this organizer.\",\"uPe5p8\":\"Set how long each date lasts\",\"xNsRxU\":\"Set number of dates\",\"ODuUEi\":\"Set or clear the date label\",\"buHACR\":\"Set the end time of each date to be this long after its start time.\",\"TaeFgl\":\"Set to unlimited (remove limit)\",\"pd6SSe\":\"Set up a recurring schedule to automatically create dates, or add them one at a time.\",\"s0FkEx\":\"Set up check-in lists for different entrances, sessions, or days.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"xMO+Ao\":\"Set up your organization\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Setting updated\",\"Ohn74G\":\"Setup & Design\",\"1W5XyZ\":\"Setup takes just a few minutes — you don't need an existing Stripe account. Stripe handles cards, wallets, regional payment methods, and fraud protection so you can focus on your event.\",\"GG7qDw\":\"Share Affiliate Link\",\"hL7sDJ\":\"Share Organizer Page\",\"jy6QDF\":\"Shared Capacity Management\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Show advanced options\",\"cMW+gm\":[\"Show all platforms (\",[\"0\"],\" more with values)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"UVPI5D\":\"Show fewer platforms\",\"Eu/N/d\":\"Show marketing opt-in checkbox\",\"SXzpzO\":\"Show marketing opt-in checkbox by default\",\"57tTk5\":\"Show more dates\",\"b33PL9\":\"Show more platforms\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"t1LIQW\":[\"Showing \",[\"0\"],\" of \",[\"totalRows\"],\" records\"],\"E717U9\":[\"Showing \",[\"0\"],\"–\",[\"1\"],\" of \",[\"2\"]],\"5rzhBQ\":[\"Showing \",[\"MAX_VISIBLE\"],\" of \",[\"totalAvailable\"],\" dates. Type to search.\"],\"WSt3op\":[\"Showing the first \",[\"0\"],\" — the remaining \",[\"1\"],\" session(s) will still be targeted when the message is sent.\"],\"OJLTEL\":\"Shown to staff the first time they open the check-in page.\",\"jVRHeq\":\"Signed Up\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Social Links\",\"j/TOB3\":\"Social Links & Website\",\"s9KGXU\":\"Sold\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"KTxc6k\":\"Something went wrong, please try again, or contact support if the problem persists\",\"lkE00/\":\"Something went wrong. Please try again later.\",\"wdxz7K\":\"Source\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sports\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"JcQp9p\":\"Start date & time\",\"0m/ekX\":\"Start Date & Time\",\"izRfYP\":\"Start date is required\",\"tuO4fV\":\"Start date of the occurrence\",\"2R1+Rv\":\"Start time of the event\",\"2Olov3\":\"Start time of the occurrence\",\"n9ZrDo\":\"Start typing a venue or address...\",\"qeFVhN\":[\"Starts in \",[\"diffDays\"],\" days\"],\"AOqtxN\":[\"Starts in \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Starts in \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Starts in \",[\"seconds\"],\"s\"],\"NqChgF\":\"Starts tomorrow\",\"2NbyY/\":\"Statistics\",\"GVUxAX\":\"Statistics are based on account creation date\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Stop Impersonating\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe Connected\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe Not Connected\",\"9i0++A\":\"Stripe Payment ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"eYbd7b\":\"Su\",\"ii0qn/\":\"Subject is required\",\"M7Uapz\":\"Subject will appear here\",\"6aXq+t\":\"Subject:\",\"JwTmB6\":\"Successfully Duplicated Product\",\"WUOCgI\":\"Successfully offered a spot\",\"IvxA4G\":[\"Successfully offered tickets to \",[\"count\"],\" people\"],\"kKpkzy\":\"Successfully offered tickets to 1 person\",\"Zi3Sbw\":\"Successfully removed from waitlist\",\"RuaKfn\":\"Successfully Updated Address\",\"kzx0uD\":\"Successfully Updated Event Defaults\",\"5n+Wwp\":\"Successfully Updated Organizer\",\"DMCX/I\":\"Successfully Updated Platform Fee Defaults\",\"URUYHc\":\"Successfully Updated Platform Fee Settings\",\"0Dk/l8\":\"Successfully Updated SEO Settings\",\"S8Tua9\":\"Successfully Updated Settings\",\"MhOoLQ\":\"Successfully Updated Social Links\",\"CNSSfp\":\"Successfully Updated Tracking Settings\",\"kj7zYe\":\"Successfully updated Webhook\",\"dXoieq\":\"Summary\",\"/RfJXt\":[\"Summer Music Festival \",[\"0\"]],\"CWOPIK\":\"Summer Music Festival 2025\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Swedish\",\"JZTQI0\":\"Switch Organizer\",\"9YHrNC\":\"System Default\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"Tax collected grouped by tax type and event\",\"Ye321X\":\"Tax Name\",\"WyCBRt\":\"Tax Summary\",\"GkH0Pq\":\"Taxes & fees applied\",\"Rwiyt2\":\"Taxes configured\",\"iQZff7\":\"Taxes, Fees, Visibility, Sale Period, Product Highlight & Order Limits\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"Tech\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Tell people what to expect at your event\",\"NiIUyb\":\"Tell us about your event\",\"DovcfC\":\"Tell us about your organization. This information will be displayed on your event pages.\",\"69GWRq\":\"Tell us how often your event repeats and we'll create all the dates for you.\",\"mXPbwY\":\"Tell us your VAT registration status so we apply the correct VAT treatment to platform fees.\",\"7wtpH5\":\"Template Active\",\"QHhZeE\":\"Template created successfully\",\"xrWdPR\":\"Template deleted successfully\",\"G04Zjt\":\"Template saved successfully\",\"xowcRf\":\"Terms of Service\",\"6K0GjX\":\"Text may be hard to read\",\"u0F1Ey\":\"Th\",\"nm3Iz/\":\"Thank you for attending!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"The background color of the page. When using cover image, this is applied as an overlay.\",\"MDNyJz\":\"The code will expire in 10 minutes. Check your spam folder if you don't see the email.\",\"AIF7J2\":\"The currency in which the fixed fee is defined. It will be converted to the order currency at checkout.\",\"MJm4Tq\":\"The currency of the order\",\"cDHM1d\":\"The email address has been changed. The attendee will receive a new ticket at the updated email address.\",\"I/NNtI\":\"The event venue\",\"tXadb0\":\"The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"EBzPwC\":\"The full event address\",\"sxKqBm\":\"The full order amount will be refunded to the customer's original payment method.\",\"KgDp6G\":\"The link you are trying to access has expired or is no longer valid. Please check your email for an updated link to manage your order.\",\"5OmEal\":\"The locale of the customer\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"The platform fee is added to the ticket price. Buyers pay more, but you receive the full ticket price.\",\"HxxXZO\":\"The primary brand color used for buttons and highlights\",\"z0KrIG\":\"The scheduled time is required\",\"EWErQh\":\"The scheduled time must be in the future\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"The template body contains invalid Liquid syntax. Please correct it and try again.\",\"injXD7\":\"The VAT number could not be validated. Please check the number and try again.\",\"A4UmDy\":\"Theater\",\"tDwYhx\":\"Theme & Colors\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"HrIl0p\":[\"There's no check-in list scoped to this date. The \\\"\",[\"0\"],\"\\\" list checks in attendees across every date — staff scanning a ticket for a different date will still succeed.\"],\"dt3TwA\":\"These are the default prices and quantities across all dates. Sale dates on tiers apply globally. You can override prices and quantities for individual dates on the <0>Occurrence Schedule page.\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"These details will only be shown if the order is completed successfully.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"QP3gP+\":\"These settings apply only to copied embed code and won't be stored.\",\"HirZe8\":\"These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions.\",\"lzAaG5\":\"These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead.\",\"UlykKR\":\"Third\",\"wkP5FM\":\"This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes.\",\"SOmGDa\":\"This check-in list is scoped to a session that has been cancelled, so it can no longer be used for check-ins.\",\"XBNC3E\":\"This code will be used to track sales. Only letters, numbers, hyphens, and underscores allowed.\",\"AaP0M+\":\"This color combination may be hard to read for some users\",\"o1phK/\":[\"This date has \",[\"orderCount\"],\" order(s) that will be affected.\"],\"F/UtGt\":\"This date has been cancelled. You can still delete it to remove it permanently.\",\"BLZ7pX\":\"This date is in the past. It will be created but won't be visible to attendees under upcoming dates.\",\"7IIY0z\":\"This date is marked sold out.\",\"bddWMP\":\"This date is no longer available. Please select another date.\",\"RzEvf5\":\"This event has ended\",\"YClrdK\":\"This event is not published yet\",\"dFJnia\":\"This is the name of your organizer that will be displayed to your users.\",\"vt7jiq\":\"This is the only time the signing secret will be shown. Please copy it now and store it securely.\",\"L7dIM7\":\"This link is invalid or has expired.\",\"MR5ygV\":\"This link is no longer valid\",\"9LEqK0\":\"This name is visible to end users\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"This order is being processed.\",\"sjNPMw\":\"This order was abandoned. You can start a new order anytime.\",\"OhCesD\":\"This order was cancelled. You can start a new order anytime.\",\"lyD7rQ\":\"This organizer profile is not published yet\",\"9b5956\":\"This preview shows how your email will look with sample data. Actual emails will use real values.\",\"uM9Alj\":\"This product is highlighted on the event page\",\"RqSKdX\":\"This product is sold out\",\"W12OdJ\":\"This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data.\",\"0Ew0uk\":\"This ticket was just scanned. Please wait before scanning again.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"This will be used for notifications and communication with your users.\",\"rhsath\":\"This will not be visible to customers, but helps you identify the affiliate.\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Ticket Design\",\"EZC/Cu\":\"Ticket design saved successfully\",\"bbslmb\":\"Ticket Designer\",\"1BPctx\":\"Ticket for\",\"bgqf+K\":\"Ticket holder's email\",\"oR7zL3\":\"Ticket holder's name\",\"HGuXjF\":\"Ticket holders\",\"CMUt3Y\":\"Ticket Holders\",\"awHmAT\":\"Ticket ID\",\"6czJik\":\"Ticket Logo\",\"OkRZ4Z\":\"Ticket Name\",\"t79rDv\":\"Ticket Not Found\",\"6tmWch\":\"Ticket or Product\",\"1tfWrD\":\"Ticket Preview for\",\"KnjoUA\":\"Ticket price\",\"tGCY6d\":\"Ticket Price\",\"pGZOcL\":\"Ticket resent successfully\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Ticket Type\",\"X26cQf\":\"Ticket URL\",\"8qsbZ5\":\"Ticketing & Sales\",\"zNECqg\":\"tickets\",\"6GQNLE\":\"Tickets\",\"NRhrIB\":\"Tickets & Products\",\"OrWHoZ\":\"Tickets are automatically offered to waitlisted customers when capacity becomes available.\",\"EUnesn\":\"Tickets Available\",\"AGRilS\":\"Tickets Sold\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"dMtLDE\":\"to\",\"/jQctM\":\"To\",\"tiI71C\":\"To increase your limits, contact us at\",\"ecUA8p\":\"Today\",\"W428WC\":\"Toggle columns\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Top Organizers (Last 14 Days)\",\"3sZ0xx\":\"Total Accounts\",\"EaAPbv\":\"Total amount paid\",\"SMDzqJ\":\"Total Attendees\",\"orBECM\":\"Total Collected\",\"k5CU8c\":\"Total Entries\",\"4B7oCp\":\"Total Fee\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total Users\",\"oJjplO\":\"Total Views\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Track account growth and performance by attribution source\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"True if offline payment\",\"9GsDR2\":\"True if payment pending\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Try another email\",\"3DZvE7\":\"Try Hi.Events Free\",\"7P/9OY\":\"Tu\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turkish\",\"GdOhw6\":\"Turn sound off\",\"KUOhTy\":\"Turn sound on\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Type \\\"delete\\\" to confirm\",\"XxecLm\":\"Type of ticket\",\"IrVSu+\":\"Unable to duplicate product. Please check the your details\",\"Vx2J6x\":\"Unable to fetch attendee\",\"h0dx5e\":\"Unable to join waitlist\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Unattributed Accounts\",\"9uI/rE\":\"Undo\",\"b9SN9q\":\"Unique order reference\",\"Ef7StM\":\"Unknown\",\"ZBAScj\":\"Unknown Attendee\",\"MEIAzV\":\"Unnamed\",\"K6L5Mx\":\"Unnamed location\",\"X13xGn\":\"Untrusted\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Update Affiliate\",\"59qHrb\":\"Update capacity\",\"Gaem9v\":\"Update event name and description\",\"7EhE4k\":\"Update label\",\"NPQWj8\":\"Update location\",\"75+lpR\":[\"Update: \",[\"subjectTitle\"],\" — schedule changes\"],\"UOGHdA\":[\"Update: \",[\"subjectTitle\"],\" — session time changed\"],\"ogoTrw\":[\"Updated \",[\"count\"],\" date(s)\"],\"dDuona\":[\"Updated capacity for \",[\"count\"],\" date(s)\"],\"FT3LSc\":[\"Updated label for \",[\"count\"],\" date(s)\"],\"8EcY1g\":[\"Updated location for \",[\"count\"],\" date(s)\"],\"gJQsLv\":\"Upload a cover image for your organizer\",\"4kEGqW\":\"Upload a logo for your organizer\",\"lnCMdg\":\"Upload Image\",\"29w7p6\":\"Uploading image...\",\"HtrFfw\":\"URL is required\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Use <0>Liquid templating to personalize your emails\",\"g0WJMu\":\"Use all-dates list\",\"0k4cdb\":\"Use order details for all attendees. Attendee names and emails will match the buyer's information.\",\"MKK5oI\":\"Use the all-dates list, or create a list for this date?\",\"bA31T4\":\"Use the buyer's details for all attendees\",\"rnoQsz\":\"Used for borders, highlights, and QR code styling\",\"BV4L/Q\":\"UTM Analytics\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validating your VAT number...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"VAT Number\",\"CabI04\":\"VAT number must not contain spaces\",\"PMhxAR\":\"VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)\",\"gPgdNV\":\"VAT number validated successfully\",\"RUMiLy\":\"VAT number validation failed\",\"vqji3Y\":\"VAT number validation failed. Please check your VAT number.\",\"8dENF9\":\"VAT on Fee\",\"ZutOKU\":\"VAT Rate\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"VAT settings saved successfully\",\"UvYql/\":\"VAT settings saved. We're validating your VAT number in the background.\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"VAT Treatment for Platform Fees\",\"FlGprQ\":\"VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%.\",\"516oLj\":\"VAT validation service temporarily unavailable\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Verification code\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Verified\",\"wCKkSr\":\"Verify Email\",\"/IBv6X\":\"Verify your email\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Verifying...\",\"fROFIL\":\"Vietnamese\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"RnvnDc\":\"View all messages sent across the platform\",\"+WFMis\":\"View and download reports across all your events. Only completed orders are included.\",\"c7VN/A\":\"View Answers\",\"SZw9tS\":\"View Details\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"View Event\",\"c6SXHN\":\"View Event Page\",\"n6EaWL\":\"View logs\",\"OaKTzt\":\"View Map\",\"zNZNMs\":\"View Message\",\"67OJ7t\":\"View Order\",\"tKKZn0\":\"View Order Details\",\"KeCXJu\":\"View order details, issue refunds, and resend confirmations.\",\"9jnAcN\":\"View Organizer Homepage\",\"1J/AWD\":\"View Ticket\",\"N9FyyW\":\"View, edit, and export your registered attendees.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Waiting\",\"quR8Qp\":\"Waiting for payment\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Waitlist\",\"3RXFtE\":\"Waitlist Enabled\",\"TwnTPy\":\"Waitlist offer expired\",\"NzIvKm\":\"Waitlist triggered\",\"aUi/Dz\":\"Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned.\",\"qeygIa\":\"We\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"We couldn't find any orders associated with this email address.\",\"2RZK9x\":\"We couldn't find the order you're looking for. The link may have expired or the order details may have changed.\",\"nefMIK\":\"We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed.\",\"miysJh\":\"We couldn't find this order. It may have been removed.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"We hit a snag loading this page. Please try again.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"We recommend a square logo with minimum dimensions of 200x200px\",\"wJzo/w\":\"We recommend dimensions of 400px by 400px, and a maximum file size of 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"We use cookies to help us understand how the site is used and to improve your experience.\",\"x8rEDQ\":\"We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later.\",\"iy+M+c\":[\"We'll notify you by email if a spot becomes available for \",[\"productDisplayName\"],\".\"],\"McuGND\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"q1BizZ\":\"We'll send your tickets to this email\",\"ZOmUYW\":\"We'll validate your VAT number in the background. If there are any issues, we'll let you know.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"We've sent a 5-digit verification code to:\",\"GdWB+V\":\"Webhook created successfully\",\"2X4ecw\":\"Webhook deleted successfully\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook Logs\",\"I0adYQ\":\"Webhook Signing Secret\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook will not send notifications\",\"FSaY52\":\"Webhook will send notifications\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Welcome back\",\"QDWsl9\":[\"Welcome to \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Welcome to \",[\"0\"],\", here's a listing of all your events\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"What type of event?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"When a check-in is deleted\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"When a new attendee is created\",\"zyIyPe\":\"When a new event is created\",\"Lc18qn\":\"When a new order is created\",\"dfkQIO\":\"When a new product is created\",\"8OhzyY\":\"When a product is deleted\",\"tRXdQ9\":\"When a product is updated\",\"9L9/28\":\"When a product sells out, customers can join a waitlist to be notified when spots become available.\",\"Q7CWxp\":\"When an attendee is cancelled\",\"IuUoyV\":\"When an attendee is checked in\",\"nBVOd7\":\"When an attendee is updated\",\"t7cuMp\":\"When an event is archived\",\"gtoSzE\":\"When an event is updated\",\"ny2r8d\":\"When an order is cancelled\",\"c9RYbv\":\"When an order is marked as paid\",\"ejMDw1\":\"When an order is refunded\",\"fVPt0F\":\"When an order is updated\",\"bcYlvb\":\"When check-in closes\",\"XIG669\":\"When check-in opens\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"When enabled, new events will allow attendees to manage their own ticket details via a secure link. This can be overridden per event.\",\"blXLKj\":\"When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event.\",\"Kj0Txn\":\"When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported.\",\"tMqezN\":\"Whether refunds are being processed\",\"uchB0M\":\"Widget Preview\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Write your message here...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"Yes - I have a valid EU VAT registration number\",\"Tz5oXG\":\"Yes, cancel my order\",\"QlSZU0\":[\"You are impersonating <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"You are issuing a partial refund. The customer will be refunded \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"You can configure additional service fees and taxes in your account settings.\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"You can still manually offer tickets if needed.\",\"jTDzpA\":\"You cannot archive the last active organizer on your account.\",\"5VGIlq\":\"You have reached your messaging limit.\",\"casL1O\":\"You have taxes and fees added to a Free Product. Would you like to remove them?\",\"9jJNZY\":\"You must acknowledge your responsibilities before saving\",\"pCLes8\":\"You must agree to receive messages\",\"FVTVBy\":\"You must verify your email address before you can update the organizer status.\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"You need to verify your account email before you can modify email templates.\",\"FRl8Jv\":\"You need to verify your account email before you can send messages.\",\"88cUW+\":\"You receive\",\"O6/3cu\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"You're going to \",[\"0\"],\"!\"],\"qGZz0m\":\"You're on the waitlist!\",\"/5HL6k\":\"You've been offered a spot!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"Your account has messaging limits. To increase your limits, contact us at\",\"x/xjzn\":\"Your affiliates have been exported successfully.\",\"TF37u6\":\"Your attendees have been exported successfully.\",\"79lXGw\":\"Your check-in list has been created successfully. Share the link below with your check-in staff.\",\"BnlG9U\":\"Your current order will be lost.\",\"nBqgQb\":\"Your Email\",\"GG1fRP\":\"Your event is live!\",\"ifRqmm\":\"Your message has been sent successfully!\",\"0/+Nn9\":\"Your messages will appear here\",\"/Rj5P4\":\"Your Name\",\"PFjJxY\":\"Your new password must be at least 8 characters long.\",\"gzrCuN\":\"Your order details have been updated. A confirmation email has been sent to the new email address.\",\"naQW82\":\"Your order has been cancelled.\",\"bhlHm/\":\"Your order is awaiting payment\",\"XeNum6\":\"Your orders have been exported successfully.\",\"Xd1R1a\":\"Your organizer address\",\"WWYHKD\":\"Your payment is protected with bank-level encryption\",\"5b3QLi\":\"Your Plan\",\"N4Zkqc\":\"Your saved date filter is no longer available — showing all dates.\",\"FNO5uZ\":\"Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions.\",\"CnZ3Ou\":\"Your tickets have been confirmed.\",\"EmFsMZ\":\"Your VAT number is queued for validation\",\"QBlhh4\":\"Your VAT number will be validated when you save\",\"fT9VLt\":\"Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/en.po b/frontend/src/locales/en.po index 2defacd91a..2591b2383c 100644 --- a/frontend/src/locales/en.po +++ b/frontend/src/locales/en.po @@ -60,7 +60,7 @@ msgstr "{0} <0>checked out successfully" msgid "{0} Active Webhooks" msgstr "{0} Active Webhooks" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} available" @@ -78,7 +78,7 @@ msgstr "{0} left" msgid "{0} logo" msgstr "{0} logo" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{0} of {1} seats are taken." @@ -90,7 +90,7 @@ msgstr "{0} organizers" msgid "{0} spots left" msgstr "{0} spots left" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} tickets" @@ -114,7 +114,7 @@ msgstr "{appName} logo" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} attendees are registered for this session." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} of {totalCount} available" @@ -122,7 +122,7 @@ msgstr "{availableCount} of {totalCount} available" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} checked in" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "{completedCount} of {totalCount} steps complete" @@ -151,7 +151,7 @@ msgstr "{eventCount} events" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} hours, {minutes} minutes, and {seconds} seconds" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "{loadedAffectedAttendees} attendees are registered across the affected sessions." @@ -163,11 +163,11 @@ msgstr "{minutes} minutes and {seconds} seconds" msgid "{organizerName}'s first event" msgstr "{organizerName}'s first event" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "{productCount} ticket types configured" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} ticket types" @@ -230,7 +230,7 @@ msgstr "0 minutes and 0 seconds" msgid "1 Active Webhook" msgstr "1 Active Webhook" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "1 attendee is registered across the affected sessions." @@ -238,35 +238,35 @@ msgstr "1 attendee is registered across the affected sessions." msgid "1 attendee is registered for this session." msgstr "1 attendee is registered for this session." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 day after end date" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 day after start date" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 day before event" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 hour before event" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 ticket" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 ticket type" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "1 ticket type configured" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 week before event" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "A cancellation notice has been sent to" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "a change in duration" @@ -321,7 +321,7 @@ msgstr "A Dropdown input allows only one selection" msgid "A fee, like a booking fee or a service fee" msgstr "A fee, like a booking fee or a service fee" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "A few quick steps and you're ready to start selling." @@ -349,7 +349,7 @@ msgstr "A promo code with no discount can be used to reveal hidden products." msgid "A Radio option has multiple options but only one can be selected." msgstr "A Radio option has multiple options but only one can be selected." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "a shift in start/end times" @@ -465,7 +465,7 @@ msgstr "Account updated successfully" msgid "Accounts" msgstr "Accounts" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Action Required: VAT Information Needed" @@ -493,10 +493,10 @@ msgstr "Activation date" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Active payment methods" msgid "Activity" msgstr "Activity" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "Add a cover image and theme to match your brand" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Add a date" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "Add a description and venue so attendees know what to expect" @@ -556,7 +560,7 @@ msgstr "Add any notes about the order..." msgid "Add at least one time" msgstr "Add at least one time" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Add connection details for the online event." @@ -572,15 +576,19 @@ msgstr "Add Date" msgid "Add Dates" msgstr "Add Dates" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "Add dates and times for your recurring event" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Add description" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "Add details" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "Add event details" @@ -626,7 +634,7 @@ msgstr "Add Question" msgid "Add Tax or Fee" msgstr "Add Tax or Fee" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Add this attendee anyway (override capacity)" @@ -634,8 +642,8 @@ msgstr "Add this attendee anyway (override capacity)" msgid "Add this event to your calendar" msgstr "Add this event to your calendar" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Add tickets" @@ -649,7 +657,7 @@ msgstr "Add tier" msgid "Add to Calendar" msgstr "Add to Calendar" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Address line 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Address Line 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Address line 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Address Line 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Admin" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Admin Access Required" @@ -725,7 +733,7 @@ msgstr "Admin Access Required" msgid "Admin Dashboard" msgstr "Admin Dashboard" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Admin users have full access to events and account settings." @@ -776,7 +784,7 @@ msgstr "Affiliates Exported" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "all" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "All Archived Events" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "All attendees" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "All attendees of the selected sessions" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "All attendees of this event" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "All attendees of this occurrence" @@ -838,12 +846,12 @@ msgstr "All failed jobs deleted" msgid "All jobs queued for retry" msgstr "All jobs queued for retry" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "All matching dates" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "All occurrences" @@ -897,7 +905,7 @@ msgstr "Already have an account? <0>{0}" msgid "Already in" msgstr "Already in" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Already Refunded" @@ -905,11 +913,11 @@ msgstr "Already Refunded" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Already use Stripe on another organizer? Reuse that connection." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Also cancel this order" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Also refund this order" @@ -932,7 +940,7 @@ msgstr "Amount" msgid "Amount Paid" msgstr "Amount Paid" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Amount paid ({0})" @@ -952,7 +960,7 @@ msgstr "An error occurred while loading the page" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "An unexpected error occurred." @@ -988,7 +996,7 @@ msgstr "Any queries from product holders will be sent to this email address. Thi msgid "Appearance" msgstr "Appearance" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "applied" @@ -996,7 +1004,7 @@ msgstr "applied" msgid "Applies to {0} products" msgstr "Applies to {0} products" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Applies to {0}, non-cancelled dates currently loaded on this page." @@ -1008,7 +1016,7 @@ msgstr "Applies to 1 product" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." @@ -1016,11 +1024,11 @@ msgstr "Applies to every {0}, non-cancelled date in this event — including dat msgid "Apply" msgstr "Apply" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Apply Changes" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Apply Promo Code" @@ -1028,7 +1036,7 @@ msgstr "Apply Promo Code" msgid "Apply this {type} to all new products" msgstr "Apply this {type} to all new products" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Apply to" @@ -1044,36 +1052,35 @@ msgstr "Approve Message" msgid "April" msgstr "April" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Archive" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Archive event" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Archive Event" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Archive Organizer" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Archive this event to hide it from the public. You can restore it later." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Archive this organizer. This will also archive all events belonging to this organizer." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Archived" @@ -1085,15 +1092,15 @@ msgstr "Archived Organizers" msgid "Are you sure you want to activate this attendee?" msgstr "Are you sure you want to activate this attendee?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Are you sure you want to archive this event?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Are you sure you want to archive this event? It will no longer be visible to the public." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." @@ -1123,7 +1130,7 @@ msgstr "Are you sure you want to delete all failed jobs?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Are you sure you want to delete this affiliate? This action cannot be undone." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Are you sure you want to delete this configuration? This may affect accounts using it." @@ -1137,11 +1144,11 @@ msgstr "Are you sure you want to delete this date? This action cannot be undone. msgid "Are you sure you want to delete this promo code?" msgstr "Are you sure you want to delete this promo code?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." @@ -1150,17 +1157,17 @@ msgstr "Are you sure you want to delete this template? This action cannot be und msgid "Are you sure you want to delete this webhook?" msgstr "Are you sure you want to delete this webhook?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Are you sure you want to leave?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Are you sure you want to make this event draft? This will make the event invisible to the public" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Are you sure you want to make this event public? This will make the event visible to the public" @@ -1200,15 +1207,15 @@ msgstr "Are you sure you want to resend the order confirmation to {0}?" msgid "Are you sure you want to resend the ticket to {0}?" msgstr "Are you sure you want to resend the ticket to {0}?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Are you sure you want to restore this event?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Are you sure you want to restore this event? It will be restored as a draft event." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Are you sure you want to restore this organizer?" @@ -1229,7 +1236,7 @@ msgstr "Are you sure you would like to delete this Capacity Assignment?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "Are you sure you would like to delete this Check-In List?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "Are you VAT registered in the EU?" @@ -1237,7 +1244,7 @@ msgstr "Are you VAT registered in the EU?" msgid "Art" msgstr "Art" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." @@ -1270,7 +1277,7 @@ msgstr "Assigned Tier" msgid "At least one event type must be selected" msgstr "At least one event type must be selected" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Attempts" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Attendance and check-in rates across all events" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "attendee" @@ -1287,7 +1293,7 @@ msgstr "attendee" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Attendee" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Attendee Status" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Attendee Ticket" @@ -1364,13 +1370,13 @@ msgstr "Attendee's ticket not included in this list" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "attendees" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "attendees" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Attendees" @@ -1393,16 +1399,16 @@ msgstr "attendees checked in" msgid "Attendees Exported" msgstr "Attendees Exported" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Attendees registered" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Attendees Registered" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Attendees with a specific ticket" @@ -1454,7 +1460,7 @@ msgstr "Automatically resize the widget height based on the content. When disabl msgid "Available" msgstr "Available" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Available to Refund" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "Awaiting" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "Awaiting offline payment" @@ -1482,7 +1488,7 @@ msgstr "Awaiting pay" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "Awaiting payment" @@ -1513,14 +1519,14 @@ msgstr "Back to Accounts" msgid "Back to calendar" msgstr "Back to calendar" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Back to Event" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Back to event page" @@ -1548,7 +1554,7 @@ msgstr "Background Color" msgid "Background Type" msgstr "Background Type" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "Bank account connected" @@ -1566,7 +1572,7 @@ msgstr "Based on the global sale period above, not per date" msgid "Basic Information" msgstr "Basic Information" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Billing Address" @@ -1599,11 +1605,11 @@ msgstr "Built-in fraud protection" msgid "Bulk Edit" msgstr "Bulk Edit" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Bulk Edit Dates" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "Bulk update failed." @@ -1635,11 +1641,11 @@ msgstr "Buyer pays" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Buyers see a clean price. The platform fee is deducted from your payout." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "By continuing, you agree to the <0>{0} Terms of Service" @@ -1660,7 +1666,7 @@ msgstr "By registering you agree to our <0>Terms of Service and <1>Privacy P msgid "By ticket type" msgstr "By ticket type" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Bypass Application Fees" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "Can't check in" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Cancel" @@ -1729,7 +1735,7 @@ msgstr "Cancel" msgid "Cancel {count} date(s)" msgstr "Cancel {count} date(s)" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Cancel all products and release them back to the pool" @@ -1743,7 +1749,7 @@ msgstr "Cancel all products and release them back to the pool" msgid "Cancel Date" msgstr "Cancel Date" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "Cancel email change" @@ -1751,7 +1757,7 @@ msgstr "Cancel email change" msgid "Cancel order" msgstr "Cancel order" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Cancel Order" @@ -1759,7 +1765,7 @@ msgstr "Cancel Order" msgid "Cancel Order {0}" msgstr "Cancel Order {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." @@ -1781,7 +1787,7 @@ msgstr "Cancellation" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "Cancelled" msgid "Cancelled {0} date(s)" msgstr "Cancelled {0} date(s)" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "Cannot delete the system default configuration" @@ -1825,7 +1831,7 @@ msgstr "Capacity Management" msgid "Capacity must be 0 or greater" msgstr "Capacity must be 0 or greater" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "capacity updates" @@ -1833,7 +1839,7 @@ msgstr "capacity updates" msgid "Capacity Used" msgstr "Capacity Used" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." @@ -1854,19 +1860,19 @@ msgstr "Category" msgid "Category Created Successfully" msgstr "Category Created Successfully" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Change" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Change duration" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Change password" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Change the attendee limit" @@ -1874,7 +1880,7 @@ msgstr "Change the attendee limit" msgid "Change waitlist settings" msgstr "Change waitlist settings" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "Changed duration for {count} date(s)" @@ -1891,15 +1897,15 @@ msgstr "Charity" msgid "Check in" msgstr "Check in" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Check in {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Check in and mark order as paid" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Check in only" @@ -1913,7 +1919,7 @@ msgstr "Check out" msgid "Check out this event: {0}" msgstr "Check out this event: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Check out this event!" @@ -1994,7 +2000,7 @@ msgstr "Check-in Lists" msgid "Check-In Lists" msgstr "Check-In Lists" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Check-in navigation" @@ -2074,11 +2080,11 @@ msgstr "Choose a color for your background" msgid "Choose a configuration" msgstr "Choose a configuration" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Choose a different action" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Choose a saved location to apply." @@ -2108,12 +2114,12 @@ msgstr "Choose who pays the platform fee. This does not affect additional fees y #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "City" @@ -2122,7 +2128,7 @@ msgstr "City" msgid "Clear" msgstr "Clear" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Clear location — fall back to the event default" @@ -2134,7 +2140,7 @@ msgstr "Clear search" msgid "Clear Search Text" msgstr "Clear Search Text" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "Clearing removes any per-date override. Affected dates will fall back to the event's default location." @@ -2154,7 +2160,7 @@ msgstr "Click to reopen for new sales" msgid "Click to view notes" msgstr "Click to view notes" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "close" @@ -2162,8 +2168,8 @@ msgstr "close" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Close" @@ -2259,7 +2265,7 @@ msgstr "Coming Soon" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Communication Preferences" @@ -2267,11 +2273,11 @@ msgstr "Communication Preferences" msgid "complete" msgstr "complete" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Complete Order" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Complete Payment" @@ -2280,11 +2286,11 @@ msgstr "Complete Payment" msgid "Complete Stripe setup" msgstr "Complete Stripe setup" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Complete your payment to secure your tickets." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Complete your profile to join the team." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Completed" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Completed orders" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Completed Orders" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Compose" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "Configuration" msgid "Configuration assigned" msgstr "Configuration assigned" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Configuration created successfully" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Configuration deleted successfully" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Configuration updated successfully" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Configurations" @@ -2377,10 +2383,10 @@ msgstr "Configured Discount" msgid "Confirm" msgstr "Confirm" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "Confirm Email Address" @@ -2393,7 +2399,7 @@ msgstr "Confirm Email Change" msgid "Confirm new password" msgstr "Confirm new password" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Confirm New Password" @@ -2428,16 +2434,16 @@ msgstr "Confirming email address..." msgid "Congratulations! Your event is now visible to the public." msgstr "Congratulations! Your event is now visible to the public." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "Connect bank" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Connect Stripe" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Connect Stripe to enable email template editing" @@ -2445,7 +2451,7 @@ msgstr "Connect Stripe to enable email template editing" msgid "Connect Stripe to enable messaging" msgstr "Connect Stripe to enable messaging" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "Connect Stripe to receive ticket payments directly to your bank account." @@ -2453,11 +2459,11 @@ msgstr "Connect Stripe to receive ticket payments directly to your bank account. msgid "Connect with Stripe" msgstr "Connect with Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "Connect your bank to receive ticket sales straight to your account" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "Contact email for support" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Continue" @@ -2508,7 +2514,7 @@ msgstr "Continue Button Text" msgid "Continue Setup" msgstr "Continue Setup" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Continue to Checkout" @@ -2520,7 +2526,7 @@ msgstr "Continue to event creation" msgid "Continue to next step" msgstr "Continue to next step" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Continue to Payment" @@ -2545,7 +2551,7 @@ msgstr "Control who gets in, and when" msgid "Copied" msgstr "Copied" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Copied from above" @@ -2591,7 +2597,7 @@ msgstr "Copy Code" msgid "Copy customer link" msgstr "Copy customer link" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Copy details to first attendee" @@ -2609,7 +2615,7 @@ msgstr "Copy link" msgid "Copy Link" msgstr "Copy Link" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Copy my details to:" @@ -2630,7 +2636,7 @@ msgstr "Copy URL" msgid "Could not delete location" msgstr "Could not delete location" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Could not prepare the bulk update." @@ -2652,13 +2658,17 @@ msgstr "Could not save date" msgid "Could not save location" msgstr "Could not save location" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "Couldn't send verification email. Please try again." + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "Country" @@ -2671,6 +2681,10 @@ msgstr "Cover" msgid "Cover Image" msgstr "Cover Image" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "Cover image added" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "Cover image will be displayed at the top of your event page" @@ -2743,7 +2757,7 @@ msgstr "create an organizer" msgid "Create and configure tickets and merchandise for sale." msgstr "Create and configure tickets and merchandise for sale." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Create Attendee" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Create category" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Create Category" @@ -2771,17 +2785,17 @@ msgstr "Create Category" msgid "Create Check-In List" msgstr "Create Check-In List" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Create Configuration" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Create custom email templates for this event that override the organizer defaults" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Create Custom Template" @@ -2793,16 +2807,16 @@ msgstr "Create Date" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Create discounts, access codes for hidden tickets, and special offers." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "Create event" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Create Event" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "create event →" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Create for this date" @@ -2849,7 +2863,7 @@ msgstr "Create Tax or Fee" msgid "Create Ticket or Product" msgstr "Create Ticket or Product" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "Create ticket types so people can buy them" @@ -2872,6 +2886,10 @@ msgstr "Create Your Event" msgid "Create your first event" msgstr "Create your first event" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "Create your first event to start selling tickets and managing attendees." + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "CTA label is required" msgid "Currency" msgstr "Currency" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Current Password" @@ -2931,7 +2949,7 @@ msgstr "Currently available for purchase" msgid "Custom branding" msgstr "Custom branding" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Custom date and time" @@ -2957,7 +2975,7 @@ msgstr "Custom Questions" msgid "Custom Range" msgstr "Custom Range" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Custom template" @@ -2970,7 +2988,7 @@ msgstr "Customer" msgid "Customer link copied to clipboard" msgstr "Customer link copied to clipboard" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "Customer will receive an email confirming the refund" @@ -2990,11 +3008,15 @@ msgstr "Customer's last name" msgid "Customers" msgstr "Customers" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "Customize page" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Customize the email and notification settings for this event" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." @@ -3027,6 +3049,10 @@ msgstr "Customize the text shown on the continue button" msgid "Customize your email template using Liquid templating" msgstr "Customize your email template using Liquid templating" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "Customize your event page" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Customize your organizer page appearance" @@ -3079,7 +3105,7 @@ msgstr "Dark" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Dashboard" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Date & Time" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Date Cancellation" @@ -3208,12 +3234,12 @@ msgstr "Default capacity per date" msgid "Default Fee Handling" msgstr "Default Fee Handling" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Default template will be used" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "delete" @@ -3267,8 +3293,8 @@ msgstr "Delete code" msgid "Delete Date" msgstr "Delete Date" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Delete Event" @@ -3285,8 +3311,8 @@ msgstr "Delete Job" msgid "Delete location" msgstr "Delete location" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Delete Organizer" @@ -3294,7 +3320,7 @@ msgstr "Delete Organizer" msgid "Delete Permanently" msgstr "Delete Permanently" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Delete Template" @@ -3319,7 +3345,7 @@ msgstr "Deleted {0} date(s)" msgid "Description" msgstr "Description" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "Description and venue added" @@ -3378,15 +3404,15 @@ msgstr "Discount in {0}" msgid "Discount Type" msgstr "Discount Type" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Dismiss" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "Dismiss setup checklist" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Dismiss this message" @@ -3441,7 +3467,7 @@ msgstr "Download CSV" msgid "Download invoice" msgstr "Download invoice" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Download Invoice" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Download sales, attendee, and financial reports for all completed orders." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "Downloading Invoice" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Draft" @@ -3469,7 +3494,7 @@ msgstr "Draft" msgid "Dropdown selection" msgstr "Dropdown selection" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." @@ -3490,7 +3515,7 @@ msgstr "Duplicate" msgid "Duplicate Date" msgstr "Duplicate Date" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Duplicate event" @@ -3508,7 +3533,7 @@ msgstr "Duplicate Options" msgid "Duplicate Product" msgstr "Duplicate Product" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "Duration must be at least 1 minute." @@ -3520,7 +3545,7 @@ msgstr "Dutch" msgid "e.g. 180 (3 hours)" msgstr "e.g. 180 (3 hours)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "e.g. Morning Session" msgid "e.g., Get Tickets, Register Now" msgstr "e.g., Get Tickets, Register Now" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "e.g., Important update about your tickets" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "e.g., Standard, Premium, Enterprise" @@ -3542,7 +3567,7 @@ msgstr "e.g., Standard, Premium, Enterprise" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Each person will receive an email with a reserved spot to complete their purchase." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Earlier" @@ -3611,7 +3636,7 @@ msgstr "Edit Check-In List" msgid "Edit Code" msgstr "Edit Code" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Edit Configuration" @@ -3659,8 +3684,8 @@ msgstr "Edit Question" msgid "Edit user" msgstr "Edit user" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Edit User" @@ -3708,7 +3733,7 @@ msgstr "Eligible Check-In Lists" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Eligible Check-In Lists" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "Email" @@ -3743,10 +3768,10 @@ msgstr "Email & Templates" msgid "Email address" msgstr "Email address" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "Email Address" @@ -3755,8 +3780,8 @@ msgstr "Email Address" msgid "Email address copied to clipboard" msgstr "Email address copied to clipboard" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "Email addresses do not match" @@ -3764,21 +3789,21 @@ msgstr "Email addresses do not match" msgid "Email Body" msgstr "Email Body" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "Email change cancelled successfully" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "Email change pending" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "Email confirmation resent" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "Email confirmation resent successfully" @@ -3792,7 +3817,7 @@ msgstr "Email footer message" msgid "Email is required" msgstr "Email is required" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "Email not verified" @@ -3800,7 +3825,7 @@ msgstr "Email not verified" msgid "Email Preview" msgstr "Email Preview" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "Email Templates" @@ -3809,6 +3834,10 @@ msgstr "Email Templates" msgid "Email Verification Required" msgstr "Email Verification Required" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "Email verified" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "Email verified successfully!" @@ -3897,12 +3926,11 @@ msgstr "End time (optional)" msgid "End time of the occurrence" msgstr "End time of the occurrence" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Ended" @@ -3920,11 +3948,11 @@ msgstr "Ends {0}" msgid "English" msgstr "English" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Enter a capacity value or choose unlimited." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Enter a label or choose to remove it." @@ -3932,7 +3960,7 @@ msgstr "Enter a label or choose to remove it." msgid "Enter a subject and body to see the preview" msgstr "Enter a subject and body to see the preview" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Enter a time to shift by." @@ -3949,11 +3977,11 @@ msgstr "Enter affiliate email (optional)" msgid "Enter affiliate name" msgstr "Enter affiliate name" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Enter an amount excluding taxes and fees." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Enter capacity" @@ -3998,7 +4026,7 @@ msgstr "Enter your email and we'll send you instructions to reset your password. msgid "Enter your name" msgstr "Enter your name" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" @@ -4012,7 +4040,7 @@ msgstr "Entries will appear here when customers join the waitlist for sold out p #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Error" @@ -4074,7 +4102,7 @@ msgstr "Event" msgid "Event Archived" msgstr "Event Archived" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Event archived successfully" @@ -4086,7 +4114,7 @@ msgstr "Event Category" msgid "Event Cover Image" msgstr "Event Cover Image" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "Event created" @@ -4094,7 +4122,7 @@ msgstr "Event created" msgid "Event Created" msgstr "Event Created" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Event custom template" @@ -4113,7 +4141,7 @@ msgstr "Event Date" msgid "Event Defaults" msgstr "Event Defaults" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Event deleted successfully" @@ -4145,10 +4173,14 @@ msgstr "Event duplicated successfully" msgid "Event Full Address" msgstr "Event Full Address" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Event Homepage" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "Event lifetime" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Event Location" @@ -4188,7 +4220,7 @@ msgstr "Event organizer name" msgid "Event Page" msgstr "Event Page" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Event restored successfully" @@ -4197,17 +4229,17 @@ msgstr "Event restored successfully" msgid "Event Settings" msgstr "Event Settings" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Event status update failed. Please try again later" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Event status updated" @@ -4240,7 +4272,7 @@ msgstr "Event Title" msgid "Event Too New" msgstr "Event Too New" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Event totals" @@ -4405,7 +4437,7 @@ msgstr "Failed At" msgid "Failed Jobs" msgstr "Failed Jobs" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "Failed to abandon order. Please try again." @@ -4439,7 +4471,7 @@ msgstr "Failed to cancel order" msgid "Failed to create affiliate" msgstr "Failed to create affiliate" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Failed to create configuration" @@ -4447,12 +4479,12 @@ msgstr "Failed to create configuration" msgid "Failed to create schedule" msgstr "Failed to create schedule" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Failed to create template" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Failed to delete configuration" @@ -4470,7 +4502,7 @@ msgstr "Failed to delete date. It may have existing orders." msgid "Failed to delete dates" msgstr "Failed to delete dates" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Failed to delete event" @@ -4482,7 +4514,7 @@ msgstr "Failed to delete job" msgid "Failed to delete jobs" msgstr "Failed to delete jobs" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Failed to delete organizer" @@ -4490,13 +4522,13 @@ msgstr "Failed to delete organizer" msgid "Failed to delete question" msgstr "Failed to delete question" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Failed to delete template" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Failed to download invoice. Please try again." @@ -4594,14 +4626,14 @@ msgstr "Failed to save price override" msgid "Failed to save product settings" msgstr "Failed to save product settings" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Failed to save template" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Failed to save VAT settings. Please try again." @@ -4639,11 +4671,11 @@ msgstr "Failed to update answer." msgid "Failed to update attendee" msgstr "Failed to update attendee" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Failed to update configuration" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Failed to update event status" @@ -4655,7 +4687,7 @@ msgstr "Failed to update messaging tier" msgid "Failed to update order" msgstr "Failed to update order" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Failed to update organizer status" @@ -4701,7 +4733,7 @@ msgstr "February" msgid "Fee" msgstr "Fee" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Fee Currency" @@ -4720,7 +4752,7 @@ msgstr "Fee override saved" msgid "Fees" msgstr "Fees" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Fees Bypassed" @@ -4732,8 +4764,8 @@ msgstr "Festival" msgid "File is too large. Maximum size is 5MB." msgstr "File is too large. Maximum size is 5MB." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Fill in your details above first" @@ -4754,7 +4786,7 @@ msgstr "Filter Attendees" msgid "Filter by date" msgstr "Filter by date" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Filter by Event" @@ -4775,19 +4807,27 @@ msgstr "Filters ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Finish setting up Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "Finish setup" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "finish setup to start selling" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "First" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "First 30 days" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "First 7 days" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "First 90 days" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "First attendee" @@ -4798,22 +4838,22 @@ msgstr "First Invoice Number" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "First name" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "First Name" @@ -4843,16 +4883,16 @@ msgstr "Fixed amount" msgid "Fixed fee" msgstr "Fixed fee" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Fixed Fee" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Fixed fee charged per transaction" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "Fixed fee must be 0 or greater" @@ -4923,7 +4963,11 @@ msgstr "Friday" msgid "Full data ownership" msgstr "Full data ownership" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "Full event" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Full refund" @@ -4931,11 +4975,11 @@ msgstr "Full refund" msgid "Full resolved address" msgstr "Full resolved address" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "future" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Future dates only" @@ -4992,7 +5036,7 @@ msgstr "Get started" msgid "Get Tickets" msgstr "Get Tickets" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Get your event ready" @@ -5013,7 +5057,7 @@ msgstr "Go Back" msgid "Go back to profile" msgstr "Go back to profile" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Go to Event Page" @@ -5037,7 +5081,7 @@ msgstr "Google Calendar" msgid "Got it" msgstr "Got it" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Gross revenue" @@ -5045,22 +5089,22 @@ msgstr "Gross revenue" msgid "Gross Revenue" msgstr "Gross Revenue" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Gross sales" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Gross Sales" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "Guest" @@ -5077,7 +5121,7 @@ msgstr "Guests" msgid "Happening now" msgstr "Happening now" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Have a promo code?" @@ -5106,7 +5150,7 @@ msgstr "Here is the React component you can use to embed the widget in your appl msgid "Here is your affiliate link" msgstr "Here is your affiliate link" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Hi {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Hidden from public view" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "Hidden questions are only visible to the event organizer and not to the customer." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Hide" @@ -5239,8 +5283,8 @@ msgstr "Homepage Preview" msgid "Homer" msgstr "Homer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Hours" @@ -5269,11 +5313,11 @@ msgstr "How often?" msgid "How to pay offline" msgstr "How to pay offline" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "How VAT is applied to the platform fees we charge you." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "HTML character limit exceeded: {htmlLength}/{maxLength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Hungarian" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "I acknowledge my responsibilities as a data controller" @@ -5305,11 +5349,11 @@ msgstr "I agree to receive email notifications related to this event" msgid "I agree to the <0>terms and conditions" msgstr "I agree to the <0>terms and conditions" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "I confirm this is a transactional message related to this event" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "If a new tab did not open automatically, please click the button below to continue to checkout." @@ -5325,7 +5369,7 @@ msgstr "If enabled, check-in staff can either mark attendees as checked in or ma msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "If enabled, the organizer will receive an email notification when a new order is placed" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "If you did not request this change, please immediately change your password." @@ -5370,11 +5414,11 @@ msgstr "Impersonation started" msgid "Impersonation stopped" msgstr "Impersonation stopped" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Important Notice" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." @@ -5390,7 +5434,7 @@ msgstr "In {diffMinutes} minutes" msgid "in last {0} min" msgstr "in last {0} min" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "In person — set a venue" @@ -5401,15 +5445,15 @@ msgstr "in_person, online, unset, or mixed" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Inactive" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Inactive users cannot log in." @@ -5483,12 +5527,12 @@ msgstr "Invalid email format" msgid "Invalid file type. Please upload an image." msgstr "Invalid file type. Please upload an image." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Invalid Liquid syntax. Please correct it and try again." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Invalid VAT number format" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Invoice" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Invoice downloaded successfully" @@ -5545,7 +5589,7 @@ msgstr "Invoice Settings" msgid "Italian" msgstr "Italian" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Item" @@ -5628,7 +5672,7 @@ msgstr "just now" msgid "Just wrapped" msgstr "Just wrapped" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Keep me updated on news and events from {0}" @@ -5647,13 +5691,13 @@ msgstr "Label" msgid "Label for the occurrence" msgstr "Label for the occurrence" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "label updates" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Language" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "Last 24 hours" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "Last 30 days" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "Last 6 months" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "Last 7 days" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "Last 90 days" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Last name" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Last Name" @@ -5753,7 +5797,7 @@ msgstr "Last Triggered" msgid "Last Used" msgstr "Last Used" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Later" @@ -5786,7 +5830,7 @@ msgstr "Leave on to cover every ticket on the event. Turn off to pick specific t msgid "Let them know about the change" msgstr "Let them know about the change" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Let them know about the changes" @@ -5830,12 +5874,11 @@ msgstr "List" msgid "List view" msgstr "List view" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "Live" @@ -5848,7 +5891,7 @@ msgstr "LIVE" msgid "Live Events" msgstr "Live Events" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Loaded dates" @@ -5872,8 +5915,8 @@ msgstr "Loading Webhooks" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Loading..." @@ -5926,7 +5969,7 @@ msgstr "Location saved" msgid "Location updated" msgstr "Location updated" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "location updates" @@ -5990,7 +6033,7 @@ msgstr "Main Office" msgid "Make billing address mandatory during checkout" msgstr "Make billing address mandatory during checkout" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "Make it visible so people can buy tickets" @@ -6023,7 +6066,7 @@ msgstr "Manage attendee" msgid "Manage dates and times for your recurring event" msgstr "Manage dates and times for your recurring event" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Manage event" @@ -6039,10 +6082,14 @@ msgstr "Manage order" msgid "Manage payment and invoicing settings for this event." msgstr "Manage payment and invoicing settings for this event." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Manage Profile" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "Manage schedule" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Manage Schedule" @@ -6124,7 +6171,7 @@ msgstr "Medium" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Message" @@ -6141,7 +6188,7 @@ msgstr "Message attendee" msgid "Message Attendees" msgstr "Message Attendees" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Message attendees with specific tickets" @@ -6165,7 +6212,7 @@ msgstr "Message Content" msgid "Message Details" msgstr "Message Details" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Message individual attendees" @@ -6173,15 +6220,15 @@ msgstr "Message individual attendees" msgid "Message is required" msgstr "Message is required" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Message order owners with specific products" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Message Scheduled" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Message Sent" @@ -6212,8 +6259,8 @@ msgstr "Minimum Price" msgid "minutes" msgstr "minutes" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Minutes" @@ -6229,7 +6276,7 @@ msgstr "Miscellaneous Settings" msgid "Mo" msgstr "Mo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Mode" @@ -6282,7 +6329,7 @@ msgstr "More actions" msgid "Most Viewed Events (Last 14 Days)" msgstr "Most Viewed Events (Last 14 Days)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Move all dates earlier or later" @@ -6290,7 +6337,7 @@ msgstr "Move all dates earlier or later" msgid "Multi line text box" msgstr "Multi line text box" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Name" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "Name is required" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "Name must be less than 255 characters" @@ -6384,21 +6431,21 @@ msgstr "Net Revenue" msgid "Never" msgstr "Never" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "New capacity" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "New label" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "New location" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "New Password" @@ -6426,7 +6473,7 @@ msgstr "Nightlife" msgid "No" msgstr "No" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "No - I'm an individual or non-VAT registered business" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "No Capacity Assignments" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "No change" @@ -6509,7 +6556,7 @@ msgstr "No check-in lists available for this event." msgid "No check-ins yet" msgstr "No check-ins yet" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "No configurations found" @@ -6537,7 +6584,7 @@ msgstr "No date-specific check-in list" msgid "No dates available this month. Try navigating to another month." msgstr "No dates available this month. Try navigating to another month." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "No dates match the current filters." @@ -6582,9 +6629,9 @@ msgstr "No events starting in the next 24 hours" msgid "No events to show" msgstr "No events to show" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" -msgstr "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" +msgstr "No events yet" #: src/components/routes/admin/FailedJobs/index.tsx:155 msgid "No failed jobs" @@ -6631,9 +6678,9 @@ msgstr "No orders found" msgid "No orders to show" msgstr "No orders to show" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." -msgstr "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" +msgstr "No orders yet" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 msgid "No orders yet for this date." @@ -6643,7 +6690,7 @@ msgstr "No orders yet for this date." msgid "No organizer activity in the last 14 days" msgstr "No organizer activity in the last 14 days" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "No organizer context available." @@ -6733,7 +6780,7 @@ msgstr "No responses yet" msgid "No results" msgstr "No results" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "No saved locations yet" @@ -6793,16 +6840,16 @@ msgstr "No webhook events have been recorded for this endpoint yet. Events will msgid "No Webhooks" msgstr "No Webhooks" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "No, keep me here" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "non-edited" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "None" @@ -6870,7 +6917,7 @@ msgstr "Number Prefix" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Occurrence" @@ -7005,7 +7052,7 @@ msgstr "Offline Payments Information" msgid "Offline Payments Settings" msgstr "Offline Payments Settings" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "Once you start collecting data, you'll see it here." msgid "Ongoing" msgstr "Ongoing" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "Ongoing" msgid "Online" msgstr "Online" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "Online — provide connection details" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Online & in-person" @@ -7070,15 +7117,15 @@ msgstr "Online event connection details" msgid "Online Event Details" msgstr "Online Event Details" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Only account administrators can delete or archive events. Contact your account admin for assistance." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Only account administrators can delete or archive organizers. Contact your account admin for assistance." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Only send to orders with these statuses" @@ -7173,7 +7220,7 @@ msgstr "Order & Ticket" msgid "Order #" msgstr "Order #" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Order cancelled" @@ -7182,13 +7229,13 @@ msgstr "Order cancelled" msgid "Order Cancelled" msgstr "Order Cancelled" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Order complete" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Order Confirmation" @@ -7273,7 +7320,7 @@ msgstr "Order marked as paid" msgid "Order Marked as Paid" msgstr "Order Marked as Paid" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Order not found" @@ -7297,7 +7344,7 @@ msgstr "Order number, purchase date, purchaser email" msgid "Order owner" msgstr "Order owner" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Order owners with a specific product" @@ -7327,7 +7374,7 @@ msgstr "Order Refunded" msgid "Order Status" msgstr "Order Status" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Order statuses" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Order timeout" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Order Total" @@ -7357,7 +7404,7 @@ msgstr "Order updated successfully" msgid "Order URL" msgstr "Order URL" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "Order was cancelled" @@ -7374,8 +7421,8 @@ msgstr "orders" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Organization Name" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Organization Name" msgid "Organizer" msgstr "Organizer" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Organizer archived successfully" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Organizer Dashboard" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Organizer deleted successfully" @@ -7486,7 +7533,7 @@ msgstr "Organizer Name" msgid "Organizer Not Found" msgstr "Organizer Not Found" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Organizer restored successfully" @@ -7504,7 +7551,7 @@ msgstr "Organizer status update failed. Please try again later" msgid "Organizer status updated" msgstr "Organizer status updated" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Organizer/default template will be used" @@ -7512,7 +7559,7 @@ msgstr "Organizer/default template will be used" msgid "Organizers" msgstr "Organizers" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Organizers can only manage events and products. They cannot manage users, account settings or billing information." @@ -7563,7 +7610,7 @@ msgstr "Padding" msgid "Page" msgstr "Page" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Page no longer available" @@ -7575,7 +7622,7 @@ msgstr "Page not found" msgid "Page URL" msgstr "Page URL" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Page views" @@ -7583,11 +7630,11 @@ msgstr "Page views" msgid "Page Views" msgstr "Page Views" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "paid" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "Paid" @@ -7599,7 +7646,7 @@ msgstr "Paid Accounts" msgid "Paid Product" msgstr "Paid Product" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Partial refund" @@ -7623,7 +7670,7 @@ msgstr "Pass to Buyer" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Password" @@ -7694,7 +7741,7 @@ msgstr "Payload" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Payment" @@ -7735,7 +7782,7 @@ msgstr "Payment Methods" msgid "Payment provider" msgstr "Payment provider" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Payment received" @@ -7747,7 +7794,7 @@ msgstr "Payment Received" msgid "Payment Status" msgstr "Payment Status" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "Payment succeeded!" @@ -7761,11 +7808,11 @@ msgstr "Payments not available" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Payouts" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "Pending" @@ -7801,8 +7848,8 @@ msgstr "Percentage" msgid "Percentage Amount" msgstr "Percentage Amount" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Percentage Fee" @@ -7810,11 +7857,11 @@ msgstr "Percentage Fee" msgid "Percentage fee (%)" msgstr "Percentage fee (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "Percentage must be between 0 and 100" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Percentage of transaction amount" @@ -7822,11 +7869,11 @@ msgstr "Percentage of transaction amount" msgid "Performance" msgstr "Performance" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Permanently delete this event and all its associated data." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Permanently delete this organizer and all its events." @@ -7834,7 +7881,7 @@ msgstr "Permanently delete this organizer and all its events." msgid "Permanently remove this date" msgstr "Permanently remove this date" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Personal Information" @@ -7842,7 +7889,7 @@ msgstr "Personal Information" msgid "Phone" msgstr "Phone" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Pick a location" @@ -7892,7 +7939,7 @@ msgstr "Platform fee of {0} deducted from your payout" msgid "Platform Fees" msgstr "Platform Fees" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Platform Fees Report" @@ -7918,7 +7965,7 @@ msgstr "Please check your email and password and try again" msgid "Please check your email is valid" msgstr "Please check your email is valid" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Please check your email to confirm your email address" @@ -7926,7 +7973,7 @@ msgstr "Please check your email to confirm your email address" msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Please continue in the new tab" @@ -7955,7 +8002,7 @@ msgstr "Please enter a valid URL" msgid "Please enter the 5-digit code" msgstr "Please enter the 5-digit code" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Please enter your VAT number" @@ -7971,11 +8018,11 @@ msgstr "Please provide an image." msgid "Please restart the checkout process." msgstr "Please restart the checkout process." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Please return to the event page to start over." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Please select a date and time" @@ -7987,7 +8034,7 @@ msgstr "Please select a date range" msgid "Please select an image." msgstr "Please select an image." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Please select at least one product" @@ -7998,7 +8045,7 @@ msgstr "Please select at least one product" msgid "Please try again." msgstr "Please try again." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Please verify your email address to access all features" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Please wait while we prepare your attendees for export..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Please wait while we prepare your invoice..." @@ -8124,7 +8171,7 @@ msgstr "Print Preview" msgid "Print Ticket" msgstr "Print Ticket" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Print Tickets" @@ -8139,7 +8186,7 @@ msgstr "Print to PDF" msgid "Privacy Policy" msgstr "Privacy Policy" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Process Refund" @@ -8180,7 +8227,7 @@ msgstr "Product deleted successfully" msgid "Product Price Type" msgstr "Product Price Type" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Product(s)" msgid "Products" msgstr "Products" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Products sold" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Products Sold" msgid "Products sorted successfully" msgstr "Products sorted successfully" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Profile" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Profile updated successfully" @@ -8251,7 +8298,7 @@ msgstr "Profile updated successfully" msgid "Progress" msgstr "Progress" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Promo {promo_code} code applied" @@ -8298,7 +8345,7 @@ msgstr "Promo Codes Report" msgid "Promo Only" msgstr "Promo Only" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "Promotional emails may result in account suspension" @@ -8310,11 +8357,11 @@ msgstr "" "Provide additional context or instructions for this question. Use this field to add terms\n" "and conditions, guidelines, or any important information that attendees need to know before answering." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Provide at least one address field for the new location." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Provide the following before Stripe's next review to keep payouts flowing." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Provider" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Publish" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "Publish your event" @@ -8431,7 +8478,7 @@ msgstr "Real-time analytics" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Receive product updates from {0}." @@ -8439,6 +8486,10 @@ msgstr "Receive product updates from {0}." msgid "Recent Account Signups" msgstr "Recent Account Signups" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "Recent activity" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Recent Attendees" @@ -8447,7 +8498,7 @@ msgstr "Recent Attendees" msgid "Recent check-ins" msgstr "Recent check-ins" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "Recent orders" @@ -8459,7 +8510,7 @@ msgstr "Recent Orders" msgid "recipient" msgstr "recipient" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Recipient" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "recipients" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Recipients" msgid "Recipients are available after the message is sent" msgstr "Recipients are available after the message is sent" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Recurring" @@ -8517,7 +8569,7 @@ msgstr "Refund all orders for these dates" msgid "Refund all orders for this date" msgstr "Refund all orders for this date" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Refund amount" @@ -8537,7 +8589,7 @@ msgstr "Refund Issued" msgid "Refund order" msgstr "Refund order" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Refund Order {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "Refund Status" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Refunded" @@ -8571,7 +8623,7 @@ msgstr "Refunded: {0}" msgid "Refunds" msgstr "Refunds" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Regional Settings" @@ -8598,18 +8650,18 @@ msgstr "Remaining Uses" msgid "Reminder scheduled" msgstr "Reminder scheduled" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "remove" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Remove" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Remove label from all dates" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Resend Confirmation Email" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "Resend email" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "Resend email confirmation" @@ -8688,7 +8741,7 @@ msgstr "Resend Ticket" msgid "Resend ticket email" msgstr "Resend ticket email" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Resending..." @@ -8729,30 +8782,30 @@ msgstr "Response" msgid "Response Details" msgstr "Response Details" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Restore" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Restore event" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Restore Event" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Restore Organizer" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Restore this event to make it visible again." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Restore this organizer and make it active again." @@ -8777,7 +8830,7 @@ msgstr "Retry Job" msgid "Return to Event" msgstr "Return to Event" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Return to Event Page" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Reuse a Stripe connection from another organizer in this account." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Revenue" @@ -8818,7 +8872,7 @@ msgstr "Revoke invitation" msgid "Revoke Offer" msgstr "Revoke Offer" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Sale starts {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Sales" @@ -8930,7 +8984,7 @@ msgstr "Saturday" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Saturday" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Save" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Save Ticket Design" msgid "Save VAT settings" msgstr "Save VAT settings" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "Save VAT Settings" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Saved location" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Saved locations" @@ -9015,7 +9069,7 @@ msgstr "Saved Locations" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Scan" @@ -9035,6 +9089,10 @@ msgstr "Scanner mode" msgid "Schedule" msgstr "Schedule" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "Schedule added" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Schedule created successfully" @@ -9043,11 +9101,11 @@ msgstr "Schedule created successfully" msgid "Schedule ends on" msgstr "Schedule ends on" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Schedule for later" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Schedule Message" @@ -9061,11 +9119,11 @@ msgstr "Schedule starts on" msgid "Scheduled" msgstr "Scheduled" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Scheduled time" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Search" @@ -9228,11 +9286,11 @@ msgstr "Select All" msgid "Select all on {0}" msgstr "Select all on {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Select an event" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Select attendee group" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Select Product Tier" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Select products" @@ -9298,7 +9356,7 @@ msgstr "Select start date and time" msgid "Select start time" msgstr "Select start time" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Select status" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Select Ticket" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Select tickets" @@ -9325,7 +9383,7 @@ msgstr "Select time period" msgid "Select timezone" msgstr "Select timezone" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Select which attendees should receive this message" @@ -9359,11 +9417,11 @@ msgstr "Selling fast 🔥" msgid "Send" msgstr "Send" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Send a message" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Send as test" @@ -9371,20 +9429,20 @@ msgstr "Send as test" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Send me a copy" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Send Message" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Send now" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Send order confirmation and ticket email" @@ -9392,7 +9450,7 @@ msgstr "Send order confirmation and ticket email" msgid "Send real-time order and attendee data to your external systems." msgstr "Send real-time order and attendee data to your external systems." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Send refund notification email" @@ -9400,11 +9458,11 @@ msgstr "Send refund notification email" msgid "Send reset link" msgstr "Send reset link" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Send Test" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Send to all occurrences, or choose a specific one" @@ -9429,15 +9487,15 @@ msgstr "Sent" msgid "Sent By" msgstr "Sent By" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Sent to attendees when a scheduled date is cancelled" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Sent to customers when they place an order" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Sent to each attendee with their ticket details" @@ -9490,7 +9548,7 @@ msgstr "Set default platform fee settings for new events created under this orga msgid "Set default settings for new events created under this organizer." msgstr "Set default settings for new events created under this organizer." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Set how long each date lasts" @@ -9498,11 +9556,11 @@ msgstr "Set how long each date lasts" msgid "Set number of dates" msgstr "Set number of dates" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Set or clear the date label" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Set the end time of each date to be this long after its start time." @@ -9510,7 +9568,7 @@ msgstr "Set the end time of each date to be this long after its start time." msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Set to unlimited (remove limit)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Set up check-in lists for different entrances, sessions, or days." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Set up payouts" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "Set up schedule" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Set Up Schedule" msgid "Set up your organization" msgstr "Set up your organization" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "Set up your schedule" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Set Up Your Schedule" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Set, change, or remove the date's location or online details" @@ -9599,11 +9665,11 @@ msgstr "Share Organizer Page" msgid "Shared Capacity Management" msgstr "Shared Capacity Management" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Shift times" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "Shifted times for {count} date(s)" @@ -9635,8 +9701,8 @@ msgstr "Show marketing opt-in checkbox" msgid "Show marketing opt-in checkbox by default" msgstr "Show marketing opt-in checkbox by default" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Show more" @@ -9673,7 +9739,7 @@ msgstr "Showing {0}–{1} of {2}" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." @@ -9710,7 +9776,7 @@ msgstr "Single Event" msgid "Single line text box" msgstr "Single line text box" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Skip manually edited dates" @@ -9745,7 +9811,7 @@ msgstr "Social Links & Website" msgid "Sold" msgstr "Sold" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Some details are hidden from public access. Log in to view everything." #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Something went wrong" @@ -9784,7 +9850,7 @@ msgstr "Something went wrong, please try again, or contact support if the proble msgid "Something went wrong! Please try again" msgstr "Something went wrong! Please try again" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Something went wrong." @@ -9796,12 +9862,12 @@ msgstr "Something went wrong. Please try again later." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Something went wrong. Please try again." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Sorry, this promo code is not recognized" @@ -9897,12 +9963,12 @@ msgstr "Starts tomorrow" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "State or Region" @@ -9914,7 +9980,7 @@ msgstr "Statistics" msgid "Statistics are based on account creation date" msgstr "Statistics are based on account creation date" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Stats" @@ -9931,7 +9997,7 @@ msgstr "Stats" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "Stripe Payment ID" msgid "Stripe payments are not enabled for this event." msgstr "Stripe payments are not enabled for this event." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Stripe will need a few more details soon" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "Su" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "Subject is required" msgid "Subject will appear here" msgstr "Subject will appear here" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Subject:" @@ -10024,11 +10090,11 @@ msgstr "Subtotal" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Success" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Success! {0} will receive an email shortly." @@ -10173,7 +10239,7 @@ msgstr "Successfully Updated Settings" msgid "Successfully Updated Social Links" msgstr "Successfully Updated Social Links" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Successfully Updated Tracking Settings" @@ -10226,7 +10292,7 @@ msgstr "Swedish" msgid "Switch Organizer" msgstr "Switch Organizer" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "System Default" @@ -10238,7 +10304,7 @@ msgstr "T-shirt" msgid "Tap this screen to resume scanning" msgstr "Tap this screen to resume scanning" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "Targeting attendees across {0} selected sessions." @@ -10336,7 +10402,7 @@ msgstr "Tell us about your organization. This information will be displayed on y msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Tell us how often your event repeats and we'll create all the dates for you." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." @@ -10344,15 +10410,15 @@ msgstr "Tell us your VAT registration status so we apply the correct VAT treatme msgid "Template Active" msgstr "Template Active" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Template created successfully" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Template deleted successfully" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Template saved successfully" @@ -10378,8 +10444,8 @@ msgstr "Thank you for attending!" msgid "Thanks," msgstr "Thanks," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "That promo code is invalid" @@ -10399,7 +10465,7 @@ msgstr "The check-in list you are looking for does not exist." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "The code will expire in 10 minutes. Check your spam folder if you don't see the email." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." @@ -10417,7 +10483,7 @@ msgstr "The default currency for your events." msgid "The default timezone for your events." msgstr "The default timezone for your events." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "The email address has been changed. The attendee will receive a new ticket at the updated email address." @@ -10442,7 +10508,7 @@ msgstr "The first date this schedule will generate from." msgid "The full event address" msgstr "The full event address" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "The full order amount will be refunded to the customer's original payment method." @@ -10466,7 +10532,7 @@ msgstr "The locale of the customer" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "The maximum number of products for {0}is {1}" @@ -10475,7 +10541,7 @@ msgstr "The maximum number of products for {0}is {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "The override is recorded in the order audit log." @@ -10499,11 +10565,11 @@ msgstr "The price displayed to the customer will not include taxes and fees. The msgid "The primary brand color used for buttons and highlights" msgstr "The primary brand color used for buttons and highlights" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "The scheduled time is required" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "The scheduled time must be in the future" @@ -10511,8 +10577,8 @@ msgstr "The scheduled time must be in the future" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "The session for \"{title}\" originally scheduled for {0} has been rescheduled." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "The template body contains invalid Liquid syntax. Please correct it and try again." @@ -10521,7 +10587,7 @@ msgstr "The template body contains invalid Liquid syntax. Please correct it and msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "The VAT number could not be validated. Please check the number and try again." @@ -10534,19 +10600,19 @@ msgstr "Theater" msgid "Theme & Colors" msgstr "Theme & Colors" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "There are no products available for this event" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "There are no products available in this category" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "There are no upcoming dates for this event" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "There is a refund pending. Please wait for it to complete before requesting another refund." @@ -10578,7 +10644,7 @@ msgstr "These details are shown on the attendee's ticket and order summary for t msgid "These details will only be shown if the order is completed successfully." msgstr "These details will only be shown if the order is completed successfully." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "These details will replace any existing location on the affected dates and show on attendee tickets." @@ -10586,11 +10652,11 @@ msgstr "These details will replace any existing location on the affected dates a msgid "These settings apply only to copied embed code and won't be stored." msgstr "These settings apply only to copied embed code and won't be stored." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." @@ -10598,11 +10664,11 @@ msgstr "These templates will override the organizer defaults for this event only msgid "Third" msgstr "Third" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "This attendee has an unpaid order." @@ -10660,11 +10726,11 @@ msgstr "This date has been cancelled. You can still delete it to remove it perma msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "This date is marked sold out." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "This date is no longer available. Please select another date." @@ -10713,19 +10779,19 @@ msgstr "This message will be included in the footer of all emails sent from this msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "This name is visible to end users" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "This occurrence is at capacity" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "This order has already been paid." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "This order has already been refunded." @@ -10733,7 +10799,7 @@ msgstr "This order has already been refunded." msgid "This order has been cancelled." msgstr "This order has been cancelled." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "This order has expired. Please start again." @@ -10745,15 +10811,15 @@ msgstr "This order is being processed." msgid "This order is complete." msgstr "This order is complete." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "This order page is no longer available." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "This order was abandoned. You can start a new order anytime." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "This order was cancelled. You can start a new order anytime." @@ -10785,7 +10851,7 @@ msgstr "This product is highlighted on the event page" msgid "This product is sold out" msgstr "This product is sold out" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." @@ -10797,11 +10863,11 @@ msgstr "This reset password link is invalid or expired." msgid "This ticket was just scanned. Please wait before scanning again." msgstr "This ticket was just scanned. Please wait before scanning again." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "This user is not active, as they have not accepted their invitation." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "This will affect {loadedAffectedCount} date(s)." @@ -10913,6 +10979,10 @@ msgstr "Ticket Price" msgid "Ticket resent successfully" msgstr "Ticket resent successfully" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "Ticket sales have ended for this event" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Time" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Time left:" @@ -10994,7 +11064,7 @@ msgstr "Times Used" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Timezone" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "To increase your limits, contact us at" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "Top Organizers (Last 14 Days)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Total" @@ -11075,11 +11146,11 @@ msgstr "Total Entries" msgid "Total Fee" msgstr "Total Fee" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "Total fees" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Total Gross Sales" msgid "Total order amount" msgstr "Total order amount" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "Total orders" @@ -11101,16 +11172,16 @@ msgstr "Total orders" msgid "Total refunded" msgstr "Total refunded" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Total Refunded" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "Total tax" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Track account growth and performance by attribution source" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "Tracking & Analytics" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Type" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Type \"delete\" to confirm" @@ -11222,7 +11293,7 @@ msgstr "Unable to check out attendee" msgid "Unable to create product. Please check the your details" msgstr "Unable to create product. Please check the your details" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Unable to create product. Please check your details" @@ -11246,7 +11317,7 @@ msgstr "Unable to join waitlist" msgid "Unable to load attendee details." msgstr "Unable to load attendee details." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Unable to load products for this date. Please try again." @@ -11284,7 +11355,7 @@ msgstr "United States" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Unknown" @@ -11304,7 +11375,7 @@ msgstr "Unknown Attendee" msgid "Unlimited" msgstr "Unlimited" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Unlimited available" @@ -11316,12 +11387,12 @@ msgstr "Unlimited usages allowed" msgid "Unnamed" msgstr "Unnamed" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Unnamed location" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Unpaid Order" @@ -11337,7 +11408,7 @@ msgstr "Untrusted" msgid "Upcoming" msgstr "Upcoming" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "Upcoming events" @@ -11353,7 +11424,7 @@ msgstr "Update {0}" msgid "Update Affiliate" msgstr "Update Affiliate" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Update capacity" @@ -11365,15 +11436,15 @@ msgstr "Update event name and description" msgid "Update event name, description and dates" msgstr "Update event name, description and dates" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Update label" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Update location" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Update profile" @@ -11385,19 +11456,19 @@ msgstr "Update: {subjectTitle} — schedule changes" msgid "Update: {subjectTitle} — session time changed" msgstr "Update: {subjectTitle} — session time changed" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "Updated {count} date(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "Updated capacity for {count} date(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "Updated label for {count} date(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Updated location for {count} date(s)" @@ -11507,14 +11578,14 @@ msgstr "User Management" msgid "Users" msgstr "Users" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Users can change their email in <0>Profile Settings" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11526,13 +11597,13 @@ msgstr "UTM Analytics" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "Validating your VAT number..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "VAT" @@ -11544,28 +11615,28 @@ msgstr "VAT country code" msgid "VAT number" msgstr "VAT number" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "VAT Number" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "VAT number must not contain spaces" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "VAT number validated successfully" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "VAT number validation failed" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "VAT number validation failed. Please check your VAT number." @@ -11581,12 +11652,12 @@ msgstr "VAT Rate" msgid "VAT registered" msgstr "VAT registered" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "VAT settings saved successfully" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "VAT settings saved. We're validating your VAT number in the background." @@ -11594,15 +11665,15 @@ msgstr "VAT settings saved. We're validating your VAT number in the background." msgid "VAT settings updated" msgstr "VAT settings updated" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "VAT Treatment for Platform Fees" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "VAT validation service temporarily unavailable" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "VAT: not registered" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "Venue Name" msgid "Verification code" msgstr "Verification code" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "Verification email sent. Check your inbox." + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "Verify Email" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Verify your email" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "Verify your email so attendees can receive tickets" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "Verifying..." @@ -11655,8 +11735,7 @@ msgstr "View" msgid "View All" msgstr "View All" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "View all →" @@ -11696,7 +11775,7 @@ msgstr "View details for {0} {1}" msgid "View Event" msgstr "View Event" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "View event page" @@ -11729,8 +11808,8 @@ msgstr "View on Google Maps" msgid "View Order" msgstr "View Order" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "View Order Details" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "Waiting" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "Waiting for payment" @@ -11800,7 +11879,7 @@ msgstr "Waitlist" msgid "Waitlist Enabled" msgstr "Waitlist Enabled" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "Waitlist offer expired" @@ -11808,7 +11887,7 @@ msgstr "Waitlist offer expired" msgid "Waitlist triggered" msgstr "Waitlist triggered" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." @@ -11844,7 +11923,7 @@ msgstr "We couldn't find the order you're looking for. The link may have expired msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "We couldn't find this order. It may have been removed." @@ -11860,7 +11939,7 @@ msgstr "We couldn't reach Stripe just now. Please try again in a moment." msgid "We couldn't reorder the categories. Please try again." msgstr "We couldn't reorder the categories. Please try again." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "We hit a snag loading this page. Please try again." @@ -11881,6 +11960,10 @@ msgstr "We recommend dimensions of 1950px by 650px, a ratio of 3:1, and a maximu msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "We sent a verification link to {0}" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "We use cookies to help us understand how the site is used and to improve your experience." @@ -11889,7 +11972,7 @@ msgstr "We use cookies to help us understand how the site is used and to improve msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "We were unable to confirm your payment. Please try again or contact support." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." @@ -11897,16 +11980,16 @@ msgstr "We were unable to validate your VAT number after multiple attempts. We'l msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "We'll notify you by email if a spot becomes available for {productDisplayName}." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "We'll send your tickets to this email" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "We'll validate your VAT number in the background. If there are any issues, we'll let you know." @@ -12003,7 +12086,7 @@ msgstr "Welcome aboard! Please login to continue." msgid "Welcome back" msgstr "Welcome back" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Welcome back{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Wellness" msgid "What are Tiered Products?" msgstr "What are Tiered Products?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "What is a Category?" @@ -12143,6 +12226,10 @@ msgstr "When check-in closes" msgid "When check-in opens" msgstr "When check-in opens" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "When customers purchase tickets, their orders will appear here." + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." @@ -12155,7 +12242,7 @@ msgstr "When enabled, new events will allow attendees to manage their own ticket msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." @@ -12191,11 +12278,11 @@ msgstr "Widget Preview" msgid "Widget Settings" msgstr "Widget Settings" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "Working" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "year" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Year to date" @@ -12247,11 +12334,11 @@ msgstr "years" msgid "Yes" msgstr "Yes" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Yes - I have a valid EU VAT registration number" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Yes, cancel my order" @@ -12267,7 +12354,7 @@ msgstr "You are changing your email to <0>{0}." msgid "You are impersonating <0>{0} ({1})" msgstr "You are impersonating <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "You are issuing a partial refund. The customer will be refunded {0} {1}." @@ -12292,7 +12379,7 @@ msgstr "You can override this for individual dates later." msgid "You can still manually offer tickets if needed." msgstr "You can still manually offer tickets if needed." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "You cannot archive the last active organizer on your account." @@ -12313,11 +12400,11 @@ msgstr "You cannot delete the last category." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "You cannot edit the role or status of the account owner." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "You cannot refund a manually created order." @@ -12333,11 +12420,11 @@ msgstr "You have already accepted this invitation. Please login to continue." msgid "You have no pending email change." msgstr "You have no pending email change." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "You have reached your messaging limit." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "You have run out of time to complete your order." @@ -12345,11 +12432,11 @@ msgstr "You have run out of time to complete your order." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "You have taxes and fees added to a Free Product. Would you like to remove them?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "You must acknowledge that this email is not promotional" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "You must acknowledge your responsibilities before saving" @@ -12409,7 +12496,7 @@ msgstr "You'll need at a product before you can create a capacity assignment." msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "You'll need at least one product to get started. Free, paid or let the user decide what to pay." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "You're changing session times" @@ -12421,7 +12508,7 @@ msgstr "You're going to {0}!" msgid "You're on the waitlist!" msgstr "You're on the waitlist!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "You've been offered a spot!" @@ -12429,7 +12516,7 @@ msgstr "You've been offered a spot!" msgid "You've changed the session time" msgstr "You've changed the session time" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Your account has messaging limits. To increase your limits, contact us at" @@ -12457,11 +12544,11 @@ msgstr "Your awesome website 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "Your check-in list has been created successfully. Share the link below with your check-in staff." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "Your current order will be lost." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Your Details" @@ -12469,7 +12556,7 @@ msgstr "Your Details" msgid "Your Email" msgstr "Your Email" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "Your email request change to <0>{0} is pending. Please check your email to confirm" @@ -12497,7 +12584,7 @@ msgstr "Your Name" msgid "Your new password must be at least 8 characters long." msgstr "Your new password must be at least 8 characters long." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Your Order" @@ -12509,7 +12596,7 @@ msgstr "Your order details have been updated. A confirmation email has been sent msgid "Your order has been cancelled" msgstr "Your order has been cancelled" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "Your order has been cancelled." @@ -12534,7 +12621,7 @@ msgstr "Your organizer address" msgid "Your password" msgstr "Your password" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Your payment is processing." @@ -12542,11 +12629,11 @@ msgstr "Your payment is processing." msgid "Your payment is protected with bank-level encryption" msgstr "Your payment is protected with bank-level encryption" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Your payment was not successful, please try again." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Your payment was unsuccessful. Please try again." @@ -12554,7 +12641,7 @@ msgstr "Your payment was unsuccessful. Please try again." msgid "Your Plan" msgstr "Your Plan" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Your refund is processing." @@ -12570,19 +12657,19 @@ msgstr "Your ticket for" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "Your tickets have been confirmed." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "Your VAT number is queued for validation" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "Your VAT number will be validated when you save" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." @@ -12590,19 +12677,19 @@ msgstr "Your waitlist offer has expired and we were unable to complete your orde msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "ZIP / Postal Code" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "Zip or Postal Code" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "ZIP or Postal Code" diff --git a/frontend/src/locales/es.js b/frontend/src/locales/es.js index 3c83949618..029365ff70 100644 --- a/frontend/src/locales/es.js +++ b/frontend/src/locales/es.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Aún no hay nada que mostrar'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>retirado con éxito\"],\"KMgp2+\":[[\"0\"],\" disponible\"],\"Pmr5xp\":[[\"0\"],\" creado correctamente\"],\"FImCSc\":[[\"0\"],\" actualizado correctamente\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" días, \",[\"hours\"],\" horas, \",[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"f3RdEk\":[[\"hours\"],\" horas, \",[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"fyE7Au\":[[\"minutos\"],\" minutos y \",[\"segundos\"],\" segundos\"],\"NlQ0cx\":[\"El primer evento de \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://tu-sitio-web.com\",\"qnSLLW\":\"<0>Por favor, introduce el precio sin incluir impuestos y tasas.<1>Los impuestos y tasas se pueden agregar a continuación.\",\"ZjMs6e\":\"<0>El número de productos disponibles para este producto<1>Este valor se puede sobrescribir si hay <2>Límites de Capacidad asociados con este producto.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutos y 0 segundos\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 calle principal\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Un campo de fecha. Perfecto para pedir una fecha de nacimiento, etc.\",\"6euFZ/\":[\"Un \",[\"type\"],\" predeterminado se aplica automáticamente a todos los nuevos productos. Puede sobrescribir esto por cada producto.\"],\"SMUbbQ\":\"Una entrada desplegable permite solo una selección\",\"qv4bfj\":\"Una tarifa, como una tarifa de reserva o una tarifa de servicio\",\"POT0K/\":\"Un monto fijo por producto. Ej., $0.50 por producto\",\"f4vJgj\":\"Una entrada de texto de varias líneas\",\"OIPtI5\":\"Un porcentaje del precio del producto. Ej., 3.5% del precio del producto\",\"ZthcdI\":\"Un código promocional sin descuento puede usarse para revelar productos ocultos.\",\"AG/qmQ\":\"Una opción de Radio tiene múltiples opciones pero solo se puede seleccionar una.\",\"h179TP\":\"Una breve descripción del evento que se mostrará en los resultados del motor de búsqueda y al compartir en las redes sociales. De forma predeterminada, se utilizará la descripción del evento.\",\"WKMnh4\":\"Una entrada de texto de una sola línea\",\"BHZbFy\":\"Una sola pregunta por pedido. Ej., ¿Cuál es su dirección de envío?\",\"Fuh+dI\":\"Una sola pregunta por producto. Ej., ¿Cuál es su talla de camiseta?\",\"RlJmQg\":\"Un impuesto estándar, como el IVA o el GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Aceptar transferencias bancarias, cheques u otros métodos de pago offline\",\"hrvLf4\":\"Aceptar pagos con tarjeta de crédito a través de Stripe\",\"bfXQ+N\":\"Aceptar la invitacion\",\"AeXO77\":\"Cuenta\",\"lkNdiH\":\"Nombre de la cuenta\",\"Puv7+X\":\"Configuraciones de la cuenta\",\"OmylXO\":\"Cuenta actualizada exitosamente\",\"7L01XJ\":\"Acciones\",\"FQBaXG\":\"Activar\",\"5T2HxQ\":\"Fecha de activación\",\"F6pfE9\":\"Activo\",\"/PN1DA\":\"Agregue una descripción para esta lista de registro\",\"0/vPdA\":\"Agrega cualquier nota sobre el asistente. Estas no serán visibles para el asistente.\",\"Or1CPR\":\"Agrega cualquier nota sobre el asistente...\",\"l3sZO1\":\"Agregue notas sobre el pedido. Estas no serán visibles para el cliente.\",\"xMekgu\":\"Agregue notas sobre el pedido...\",\"PGPGsL\":\"Añadir descripción\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Agregue instrucciones para pagos offline (por ejemplo, detalles de transferencia bancaria, dónde enviar cheques, fechas límite de pago)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Agregar nuevo\",\"TZxnm8\":\"Agregar opción\",\"24l4x6\":\"Añadir producto\",\"8q0EdE\":\"Añadir producto a la categoría\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Agregar impuesto o tarifa\",\"goOKRY\":\"Agregar nivel\",\"oZW/gT\":\"Agregar al calendario\",\"pn5qSs\":\"Información adicional\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"DIRECCIÓN\",\"NY/x1b\":\"Dirección Línea 1\",\"POdIrN\":\"Dirección Línea 1\",\"cormHa\":\"Línea de dirección 2\",\"gwk5gg\":\"Línea de dirección 2\",\"U3pytU\":\"Administración\",\"HLDaLi\":\"Los usuarios administradores tienen acceso completo a los eventos y la configuración de la cuenta.\",\"W7AfhC\":\"Todos los asistentes a este evento.\",\"cde2hc\":\"Todos los productos\",\"5CQ+r0\":\"Permitir que los asistentes asociados con pedidos no pagados se registren\",\"ipYKgM\":\"Permitir la indexación en motores de búsqueda\",\"LRbt6D\":\"Permitir que los motores de búsqueda indexen este evento\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Increíble, evento, palabras clave...\",\"hehnjM\":\"Cantidad\",\"R2O9Rg\":[\"Importe pagado (\",[\"0\"],\")\"],\"V7MwOy\":\"Se produjo un error al cargar la página.\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Ocurrió un error inesperado.\",\"byKna+\":\"Ocurrió un error inesperado. Inténtalo de nuevo.\",\"ubdMGz\":\"Cualquier consulta de los titulares de productos se enviará a esta dirección de correo electrónico. Esta también se usará como la dirección de \\\"respuesta a\\\" para todos los correos electrónicos enviados desde este evento\",\"aAIQg2\":\"Apariencia\",\"Ym1gnK\":\"aplicado\",\"sy6fss\":[\"Se aplica a \",[\"0\"],\" productos\"],\"kadJKg\":\"Se aplica a 1 producto\",\"DB8zMK\":\"Aplicar\",\"GctSSm\":\"Aplicar código promocional\",\"ARBThj\":[\"Aplicar este \",[\"type\"],\" a todos los nuevos productos\"],\"S0ctOE\":\"Archivar evento\",\"TdfEV7\":\"Archivado\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"¿Está seguro de que desea activar este asistente?\",\"TvkW9+\":\"¿Está seguro de que desea archivar este evento?\",\"/CV2x+\":\"¿Está seguro de que desea cancelar este asistente? Esto anulará su boleto.\",\"YgRSEE\":\"¿Estás seguro de que deseas eliminar este código de promoción?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"¿Estás seguro de que quieres hacer este borrador de evento? Esto hará que el evento sea invisible para el público.\",\"mEHQ8I\":\"¿Estás seguro de que quieres hacer público este evento? Esto hará que el evento sea visible para el público.\",\"s4JozW\":\"¿Está seguro de que desea restaurar este evento? Será restaurado como un evento borrador.\",\"vJuISq\":\"¿Estás seguro de que deseas eliminar esta Asignación de Capacidad?\",\"baHeCz\":\"¿Está seguro de que desea eliminar esta lista de registro?\",\"LBLOqH\":\"Preguntar una vez por pedido\",\"wu98dY\":\"Preguntar una vez por producto\",\"ss9PbX\":\"Asistente\",\"m0CFV2\":\"Detalles de los asistentes\",\"QKim6l\":\"Asistente no encontrado\",\"R5IT/I\":\"Notas del asistente\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Entrada del asistente\",\"9SZT4E\":\"Asistentes\",\"iPBfZP\":\"Asistentes registrados\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Ajuste automático\",\"vZ5qKF\":\"Ajustar automáticamente la altura del widget según el contenido. Cuando está deshabilitado, el widget llenará la altura del contenedor.\",\"4lVaWA\":\"Esperando pago offline\",\"2rHwhl\":\"Esperando pago offline\",\"3wF4Q/\":\"Esperando pago\",\"ioG+xt\":\"En espera de pago\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Impresionante organizador Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Volver a la página del evento\",\"VCoEm+\":\"Atrás para iniciar sesión\",\"k1bLf+\":\"Color de fondo\",\"I7xjqg\":\"Tipo de fondo\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Dirección de facturación\",\"/xC/im\":\"Configuración de facturación\",\"rp/zaT\":\"Portugués brasileño\",\"whqocw\":\"Al registrarte, aceptas nuestras <0>Condiciones de servicio y nuestra <1>Política de privacidad.\",\"bcCn6r\":\"Tipo de cálculo\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Cancelar\",\"Gjt/py\":\"Cancelar cambio de correo electrónico\",\"tVJk4q\":\"Cancelar orden\",\"Os6n2a\":\"Cancelar orden\",\"Mz7Ygx\":[\"Cancelar pedido \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Cancelado\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacidad\",\"V6Q5RZ\":\"Asignación de Capacidad creada con éxito\",\"k5p8dz\":\"Asignación de Capacidad eliminada con éxito\",\"nDBs04\":\"Gestión de capacidad\",\"ddha3c\":\"Las categorías le permiten agrupar productos. Por ejemplo, puede tener una categoría para \\\"Entradas\\\" y otra para \\\"Mercancía\\\".\",\"iS0wAT\":\"Las categorías le ayudan a organizar sus productos. Este título se mostrará en la página pública del evento.\",\"eorM7z\":\"Categorías reordenadas con éxito.\",\"3EXqwa\":\"Categoría creada con éxito\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Cambiar la contraseña\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Registrar \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Registrar entrada y marcar pedido como pagado\",\"QYLpB4\":\"Solo registrar entrada\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"¡Mira este evento!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Lista de registro eliminada con éxito\",\"+hBhWk\":\"La lista de registro ha expirado\",\"mBsBHq\":\"La lista de registro no está activa\",\"vPqpQG\":\"Lista de registro no encontrada\",\"tejfAy\":\"Listas de registro\",\"hD1ocH\":\"URL de registro copiada al portapapeles\",\"CNafaC\":\"Las opciones de casilla de verificación permiten múltiples selecciones\",\"SpabVf\":\"Casillas de verificación\",\"CRu4lK\":\"Registrado\",\"znIg+z\":\"Pagar\",\"1WnhCL\":\"Configuración de pago\",\"6imsQS\":\"Chino simplificado\",\"JjkX4+\":\"Elige un color para tu fondo\",\"/Jizh9\":\"elige una cuenta\",\"3wV73y\":\"Ciudad\",\"FG98gC\":\"Borrar texto de búsqueda\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Haga clic para copiar\",\"yz7wBu\":\"Cerca\",\"62Ciis\":\"Cerrar barra lateral\",\"EWPtMO\":\"Código\",\"ercTDX\":\"El código debe tener entre 3 y 50 caracteres.\",\"oqr9HB\":\"Colapsar este producto cuando la página del evento se cargue inicialmente\",\"jZlrte\":\"Color\",\"Vd+LC3\":\"El color debe ser un código de color hexadecimal válido. Ejemplo: #ffffff\",\"1HfW/F\":\"Colores\",\"VZeG/A\":\"Muy pronto\",\"yPI7n9\":\"Palabras clave separadas por comas que describen el evento. Estos serán utilizados por los motores de búsqueda para ayudar a categorizar e indexar el evento.\",\"NPZqBL\":\"Completar Orden\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"El pago completo\",\"qqWcBV\":\"Terminado\",\"6HK5Ct\":\"Pedidos completados\",\"NWVRtl\":\"Pedidos completados\",\"DwF9eH\":\"Código del componente\",\"Tf55h7\":\"Descuento configurado\",\"7VpPHA\":\"Confirmar\",\"ZaEJZM\":\"Confirmar cambio de correo electrónico\",\"yjkELF\":\"Confirmar nueva contraseña\",\"xnWESi\":\"Confirmar Contraseña\",\"p2/GCq\":\"confirmar Contraseña\",\"wnDgGj\":\"Confirmando dirección de correo electrónico...\",\"pbAk7a\":\"Conectar raya\",\"UMGQOh\":\"Conéctate con Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Detalles de conexión\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continuar\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Texto del botón Continuar\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"copiado\",\"T5rdis\":\"Copiado al portapapeles\",\"he3ygx\":\"Copiar\",\"r2B2P8\":\"Copiar URL de registro\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copiar link\",\"E6nRW7\":\"Copiar URL\",\"JNCzPW\":\"País\",\"IF7RiR\":\"Cubrir\",\"hYgDIe\":\"Crear\",\"b9XOHo\":[\"Crear \",[\"0\"]],\"k9RiLi\":\"Crear un producto\",\"6kdXbW\":\"Crear un código promocional\",\"n5pRtF\":\"Crear un boleto\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"crear un organizador\",\"ipP6Ue\":\"Crear asistente\",\"VwdqVy\":\"Crear Asignación de Capacidad\",\"EwoMtl\":\"Crear categoría\",\"XletzW\":\"Crear categoría\",\"WVbTwK\":\"Crear lista de registro\",\"uN355O\":\"Crear evento\",\"BOqY23\":\"Crear nuevo\",\"kpJAeS\":\"Crear organizador\",\"a0EjD+\":\"Crear producto\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Crear código promocional\",\"B3Mkdt\":\"Crear pregunta\",\"UKfi21\":\"Crear impuesto o tarifa\",\"d+F6q9\":\"Creado\",\"Q2lUR2\":\"Divisa\",\"DCKkhU\":\"Contraseña actual\",\"uIElGP\":\"URL de mapas personalizados\",\"UEqXyt\":\"Rango personalizado\",\"876pfE\":\"Cliente\",\"QOg2Sf\":\"Personalice la configuración de correo electrónico y notificaciones para este evento\",\"Y9Z/vP\":\"Personaliza la página de inicio del evento y los mensajes de pago\",\"2E2O5H\":\"Personaliza las configuraciones diversas para este evento.\",\"iJhSxe\":\"Personaliza la configuración de SEO para este evento\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Zona peligrosa\",\"ZQKLI1\":\"Zona de Peligro\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Fecha\",\"JvUngl\":\"Fecha y hora\",\"JJhRbH\":\"Capacidad del primer día\",\"cnGeoo\":\"Borrar\",\"jRJZxD\":\"Eliminar Capacidad\",\"VskHIx\":\"Eliminar categoría\",\"Qrc8RZ\":\"Eliminar lista de registro\",\"WHf154\":\"Eliminar código\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Descripción\",\"YC3oXa\":\"Descripción para el personal de registro\",\"URmyfc\":\"Detalles\",\"1lRT3t\":\"Deshabilitar esta capacidad rastreará las ventas pero no las detendrá cuando se alcance el límite\",\"H6Ma8Z\":\"Descuento\",\"ypJ62C\":\"Descuento %\",\"3LtiBI\":[\"Descuento en \",[\"0\"]],\"C8JLas\":\"Tipo de descuento\",\"1QfxQT\":\"Descartar\",\"DZlSLn\":\"Etiqueta del documento\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donación / Producto de paga lo que quieras\",\"OvNbls\":\"Descargar .ics\",\"kodV18\":\"Descargar CSV\",\"CELKku\":\"Descargar factura\",\"LQrXcu\":\"Descargar factura\",\"QIodqd\":\"Descargar código QR\",\"yhjU+j\":\"Descargando factura\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Selección desplegable\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicar evento\",\"3ogkAk\":\"Duplicar evento\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Duplicar opciones\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Madrugador\",\"ePK91l\":\"Editar\",\"N6j2JH\":[\"Editar \",[\"0\"]],\"kBkYSa\":\"Editar Capacidad\",\"oHE9JT\":\"Editar Asignación de Capacidad\",\"j1Jl7s\":\"Editar categoría\",\"FU1gvP\":\"Editar lista de registro\",\"iFgaVN\":\"Editar código\",\"jrBSO1\":\"Editar organizador\",\"tdD/QN\":\"Editar producto\",\"n143Tq\":\"Editar categoría de producto\",\"9BdS63\":\"Editar código promocional\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Editar pregunta\",\"poTr35\":\"Editar usuario\",\"GTOcxw\":\"editar usuario\",\"pqFrv2\":\"p.ej. 2,50 por $2,50\",\"3yiej1\":\"p.ej. 23,5 para 23,5%\",\"O3oNi5\":\"Correo electrónico\",\"VxYKoK\":\"Configuración de correo electrónico y notificaciones\",\"ATGYL1\":\"Dirección de correo electrónico\",\"hzKQCy\":\"Dirección de correo electrónico\",\"HqP6Qf\":\"Cambio de correo electrónico cancelado exitosamente\",\"mISwW1\":\"Cambio de correo electrónico pendiente\",\"APuxIE\":\"Confirmación por correo electrónico reenviada\",\"YaCgdO\":\"La confirmación por correo electrónico se reenvió correctamente\",\"jyt+cx\":\"Mensaje de pie de página de correo electrónico\",\"I6F3cp\":\"Correo electrónico no verificado\",\"NTZ/NX\":\"Código de incrustación\",\"4rnJq4\":\"Script de incrustación\",\"8oPbg1\":\"Habilitar facturación\",\"j6w7d/\":\"Activar esta capacidad para detener las ventas de productos cuando se alcance el límite\",\"VFv2ZC\":\"Fecha de finalización\",\"237hSL\":\"Terminado\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Inglés\",\"MhVoma\":\"Ingrese un monto sin incluir impuestos ni tarifas.\",\"SlfejT\":\"Error\",\"3Z223G\":\"Error al confirmar la dirección de correo electrónico\",\"a6gga1\":\"Error al confirmar el cambio de correo electrónico\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evento\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Fecha del Evento\",\"0Zptey\":\"Valores predeterminados de eventos\",\"QcCPs8\":\"Detalles del evento\",\"6fuA9p\":\"Evento duplicado con éxito\",\"AEuj2m\":\"Página principal del evento\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Ubicación del evento y detalles del lugar\",\"OopDbA\":\"Event page\",\"4/If97\":\"Error al actualizar el estado del evento. Por favor, inténtelo de nuevo más tarde\",\"btxLWj\":\"Estado del evento actualizado\",\"nMU2d3\":\"URL del evento\",\"tst44n\":\"Eventos\",\"sZg7s1\":\"Fecha de vencimiento\",\"KnN1Tu\":\"Vence\",\"uaSvqt\":\"Fecha de caducidad\",\"GS+Mus\":\"Exportar\",\"9xAp/j\":\"No se pudo cancelar el asistente\",\"ZpieFv\":\"No se pudo cancelar el pedido\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"No se pudo descargar la factura. Inténtalo de nuevo.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"No se pudo cargar la lista de registro\",\"ZQ15eN\":\"No se pudo reenviar el correo electrónico del ticket\",\"ejXy+D\":\"Error al ordenar productos\",\"PLUB/s\":\"Tarifa\",\"/mfICu\":\"Honorarios\",\"LyFC7X\":\"Filtrar pedidos\",\"cSev+j\":\"Filtros\",\"CVw2MU\":[\"Filtros (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Primer número de factura\",\"V1EGGU\":\"Primer Nombre\",\"kODvZJ\":\"Primer Nombre\",\"S+tm06\":\"El nombre debe tener entre 1 y 50 caracteres.\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Usado por primera vez\",\"TpqW74\":\"Fijado\",\"irpUxR\":\"Cantidad fija\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"¿Has olvidado tu contraseña?\",\"2POOFK\":\"Gratis\",\"P/OAYJ\":\"Producto gratuito\",\"vAbVy9\":\"Producto gratuito, no se requiere información de pago\",\"nLC6tu\":\"Francés\",\"Weq9zb\":\"General\",\"DDcvSo\":\"Alemán\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"volver al perfil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Calendar\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Ventas brutas\",\"yRg26W\":\"Ventas brutas\",\"R4r4XO\":\"Huéspedes\",\"26pGvx\":\"¿Tienes un código de promoción?\",\"V7yhws\":\"hola@awesome-events.com\",\"6K/IHl\":\"Aquí hay un ejemplo de cómo puede usar el componente en su aplicación.\",\"Y1SSqh\":\"Aquí está el componente React que puede usar para incrustar el widget en su aplicación.\",\"QuhVpV\":[\"Hola \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Oculto de la vista del público\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Las preguntas ocultas sólo son visibles para el organizador del evento y no para el cliente.\",\"vLyv1R\":\"Esconder\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Ocultar producto después de la fecha de finalización de la venta\",\"06s3w3\":\"Ocultar producto antes de la fecha de inicio de la venta\",\"axVMjA\":\"Ocultar producto a menos que el usuario tenga un código promocional aplicable\",\"ySQGHV\":\"Ocultar producto cuando esté agotado\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Ocultar este producto a los clientes\",\"Da29Y6\":\"Ocultar esta pregunta\",\"fvDQhr\":\"Ocultar este nivel a los usuarios\",\"lNipG+\":\"Ocultar un producto impedirá que los usuarios lo vean en la página del evento.\",\"ZOBwQn\":\"Diseño de página de inicio\",\"PRuBTd\":\"Diseñador de página de inicio\",\"YjVNGZ\":\"Vista previa de la página de inicio\",\"c3E/kw\":\"Homero\",\"8k8Njd\":\"Cuántos minutos tiene el cliente para completar su pedido. Recomendamos al menos 15 minutos.\",\"ySxKZe\":\"¿Cuántas veces se puede utilizar este código?\",\"dZsDbK\":[\"Límite de caracteres HTML excedido: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Acepto los <0>términos y condiciones\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Si está habilitado, el personal de registro puede marcar a los asistentes como registrados o marcar el pedido como pagado y registrar a los asistentes. Si está deshabilitado, los asistentes asociados con pedidos no pagados no pueden registrarse.\",\"muXhGi\":\"Si está habilitado, el organizador recibirá una notificación por correo electrónico cuando se realice un nuevo pedido.\",\"6fLyj/\":\"Si no solicitó este cambio, cambie inmediatamente su contraseña.\",\"n/ZDCz\":\"Imagen eliminada exitosamente\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Imagen cargada exitosamente\",\"VyUuZb\":\"URL de imagen\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactivo\",\"T0K0yl\":\"Los usuarios inactivos no pueden iniciar sesión.\",\"kO44sp\":\"Incluya los detalles de conexión para su evento en línea. Estos detalles se mostrarán en la página de resumen del pedido y en la página del boleto del asistente.\",\"FlQKnG\":\"Incluye impuestos y tasas en el precio.\",\"Vi+BiW\":[\"Incluye \",[\"0\"],\" productos\"],\"lpm0+y\":\"Incluye 1 producto\",\"UiAk5P\":\"Insertar imagen\",\"OyLdaz\":\"¡Invitación resentida!\",\"HE6KcK\":\"¡Invitación revocada!\",\"SQKPvQ\":\"Invitar usuario\",\"bKOYkd\":\"Factura descargada con éxito\",\"alD1+n\":\"Notas de la factura\",\"kOtCs2\":\"Numeración de facturas\",\"UZ2GSZ\":\"Configuración de facturación\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Artículo\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etiqueta\",\"vXIe7J\":\"Idioma\",\"2LMsOq\":\"Últimos 12 meses\",\"vfe90m\":\"Últimos 14 días\",\"aK4uBd\":\"Últimas 24 horas\",\"uq2BmQ\":\"Últimos 30 días\",\"bB6Ram\":\"Últimas 48 horas\",\"VlnB7s\":\"Últimos 6 meses\",\"ct2SYD\":\"Últimos 7 días\",\"XgOuA7\":\"Últimos 90 días\",\"I3yitW\":\"Último acceso\",\"1ZaQUH\":\"Apellido\",\"UXBCwc\":\"Apellido\",\"tKCBU0\":\"Última vez usado\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Dejar en blanco para usar la palabra predeterminada \\\"Factura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Cargando...\",\"wJijgU\":\"Ubicación\",\"sQia9P\":\"Acceso\",\"zUDyah\":\"Iniciando sesión\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Cerrar sesión\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Hacer obligatoria la dirección de facturación durante el pago\",\"MU3ijv\":\"Haz que esta pregunta sea obligatoria\",\"wckWOP\":\"Administrar\",\"onpJrA\":\"Gestionar asistente\",\"n4SpU5\":\"Administrar evento\",\"WVgSTy\":\"Gestionar pedido\",\"1MAvUY\":\"Gestionar las configuraciones de pago y facturación para este evento.\",\"cQrNR3\":\"Administrar perfil\",\"AtXtSw\":\"Gestionar impuestos y tasas que se pueden aplicar a sus productos\",\"ophZVW\":\"Gestionar entradas\",\"DdHfeW\":\"Administre los detalles de su cuenta y la configuración predeterminada\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Gestiona tus usuarios y sus permisos\",\"1m+YT2\":\"Las preguntas obligatorias deben responderse antes de que el cliente pueda realizar el pago.\",\"Dim4LO\":\"Agregar manualmente un asistente\",\"e4KdjJ\":\"Agregar asistente manualmente\",\"vFjEnF\":\"Marcar como pagado\",\"g9dPPQ\":\"Máximo por pedido\",\"l5OcwO\":\"Asistente del mensaje\",\"Gv5AMu\":\"Mensaje a los asistentes\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Mensaje del comprador\",\"tNZzFb\":\"Contenido del mensaje\",\"lYDV/s\":\"Enviar mensajes a asistentes individuales\",\"V7DYWd\":\"Mensaje enviado\",\"t7TeQU\":\"Mensajes\",\"xFRMlO\":\"Mínimo por pedido\",\"QYcUEf\":\"Precio mínimo\",\"RDie0n\":\"Misceláneo\",\"mYLhkl\":\"Otras configuraciones\",\"KYveV8\":\"Cuadro de texto de varias líneas\",\"VD0iA7\":\"Múltiples opciones de precio. Perfecto para productos anticipados, etc.\",\"/bhMdO\":\"Mi increíble descripción del evento...\",\"vX8/tc\":\"El increíble título de mi evento...\",\"hKtWk2\":\"Mi perfil\",\"fj5byd\":\"No disponible\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nombre\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navegar al asistente\",\"qqeAJM\":\"Nunca\",\"7vhWI8\":\"Nueva contraseña\",\"1UzENP\":\"No\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"No hay eventos archivados para mostrar.\",\"q2LEDV\":\"No se encontraron asistentes para este pedido.\",\"zlHa5R\":\"No se han añadido asistentes a este pedido.\",\"Wjz5KP\":\"No hay asistentes para mostrar\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"No hay Asignaciones de Capacidad\",\"a/gMx2\":\"No hay listas de registro\",\"tMFDem\":\"No hay datos disponibles\",\"6Z/F61\":\"No hay datos para mostrar. Por favor selecciona un rango de fechas\",\"fFeCKc\":\"Sin descuento\",\"HFucK5\":\"No hay eventos finalizados para mostrar.\",\"yAlJXG\":\"No hay eventos para mostrar\",\"GqvPcv\":\"No hay filtros disponibles\",\"KPWxKD\":\"No hay mensajes para mostrar\",\"J2LkP8\":\"No hay pedidos para mostrar\",\"RBXXtB\":\"No hay métodos de pago disponibles actualmente. Por favor, contacte al organizador del evento para obtener ayuda.\",\"ZWEfBE\":\"No se requiere pago\",\"ZPoHOn\":\"No hay ningún producto asociado con este asistente.\",\"Ya1JhR\":\"No hay productos disponibles en esta categoría.\",\"FTfObB\":\"Aún no hay productos\",\"+Y976X\":\"No hay códigos promocionales para mostrar\",\"MAavyl\":\"No hay preguntas respondidas por este asistente.\",\"SnlQeq\":\"No se han hecho preguntas para este pedido.\",\"Ev2r9A\":\"No hay resultados\",\"gk5uwN\":\"Sin resultados de búsqueda\",\"RHyZUL\":\"Sin resultados de búsqueda.\",\"RY2eP1\":\"No se han agregado impuestos ni tarifas.\",\"EdQY6l\":\"Ninguno\",\"OJx3wK\":\"No disponible\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notas\",\"jtrY3S\":\"Nada que mostrar aún\",\"hFwWnI\":\"Configuración de las notificaciones\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notificar al organizador de nuevos pedidos\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Número de días permitidos para el pago (dejar en blanco para omitir los términos de pago en las facturas)\",\"n86jmj\":\"Prefijo del número\",\"mwe+2z\":\"Los pedidos offline no se reflejan en las estadísticas del evento hasta que el pedido se marque como pagado.\",\"dWBrJX\":\"El pago offline ha fallado. Por favor, inténtelo de nuevo o contacte al organizador del evento.\",\"fcnqjw\":\"Instrucciones de Pago Fuera de Línea\",\"+eZ7dp\":\"Pagos offline\",\"ojDQlR\":\"Información de pagos offline\",\"u5oO/W\":\"Configuración de pagos offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"En venta\",\"Ug4SfW\":\"Una vez que crees un evento, lo verás aquí.\",\"ZxnK5C\":\"Una vez que comiences a recopilar datos, los verás aquí.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"En curso\",\"z+nuVJ\":\"Evento online\",\"WKHW0N\":\"Detalles del evento en línea\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Abrir Página de Check-In\",\"OdnLE4\":\"Abrir barra lateral\",\"ZZEYpT\":[\"Opción \",[\"i\"]],\"oPknTP\":\"Información adicional opcional que aparecerá en todas las facturas (por ejemplo, términos de pago, cargos por pago atrasado, política de devoluciones)\",\"OrXJBY\":\"Prefijo opcional para los números de factura (por ejemplo, INV-)\",\"0zpgxV\":\"Opciones\",\"BzEFor\":\"o\",\"UYUgdb\":\"Orden\",\"mm+eaX\":\"Pedido #\",\"B3gPuX\":\"Orden cancelada\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Fecha de orden\",\"Tol4BF\":\"Detalles del pedido\",\"WbImlQ\":\"El pedido ha sido cancelado y se ha notificado al propietario del pedido.\",\"nAn4Oe\":\"Pedido marcado como pagado\",\"uzEfRz\":\"Notas del pedido\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Pedir Referencia\",\"acIJ41\":\"Estado del pedido\",\"GX6dZv\":\"Resumen del pedido\",\"tDTq0D\":\"Tiempo de espera del pedido\",\"1h+RBg\":\"Pedidos\",\"3y+V4p\":\"Dirección de la organización\",\"GVcaW6\":\"Detalles de la organización\",\"nfnm9D\":\"Nombre de la organización\",\"G5RhpL\":\"Organizador\",\"mYygCM\":\"Se requiere organizador\",\"Pa6G7v\":\"Nombre del organizador\",\"l894xP\":\"Los organizadores solo pueden gestionar eventos y productos. No pueden gestionar usuarios, configuraciones de cuenta o información de facturación.\",\"fdjq4c\":\"Relleno\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Página no encontrada\",\"QbrUIo\":\"Vistas de página\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"pagado\",\"HVW65c\":\"Producto de pago\",\"ZfxaB4\":\"Reembolsado parcialmente\",\"8ZsakT\":\"Contraseña\",\"TUJAyx\":\"La contraseña debe tener un mínimo de 8 caracteres.\",\"vwGkYB\":\"La contraseña debe tener al menos 8 caracteres\",\"BLTZ42\":\"Restablecimiento de contraseña exitoso. Por favor inicie sesión con su nueva contraseña.\",\"f7SUun\":\"Las contraseñas no son similares\",\"aEDp5C\":\"Pegue esto donde desea que aparezca el widget.\",\"+23bI/\":\"Patricio\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Pago\",\"Lg+ewC\":\"Pago y facturación\",\"DZjk8u\":\"Configuración de pago y facturación\",\"lflimf\":\"Período de vencimiento del pago\",\"JhtZAK\":\"Pago fallido\",\"JEdsvQ\":\"Instrucciones de pago\",\"bLB3MJ\":\"Métodos de pago\",\"QzmQBG\":\"Proveedor de pago\",\"lsxOPC\":\"Pago recibido\",\"wJTzyi\":\"Estado del pago\",\"xgav5v\":\"¡Pago exitoso!\",\"R29lO5\":\"Términos de pago\",\"/roQKz\":\"Porcentaje\",\"vPJ1FI\":\"Monto porcentual\",\"xdA9ud\":\"Coloque esto en el de su sitio web.\",\"blK94r\":\"Por favor agregue al menos una opción\",\"FJ9Yat\":\"Por favor verifique que la información proporcionada sea correcta.\",\"TkQVup\":\"Por favor revisa tu correo electrónico y contraseña y vuelve a intentarlo.\",\"sMiGXD\":\"Por favor verifique que su correo electrónico sea válido\",\"Ajavq0\":\"Por favor revise su correo electrónico para confirmar su dirección de correo electrónico.\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Por favor continúa en la nueva pestaña.\",\"hcX103\":\"Por favor, cree un producto\",\"cdR8d6\":\"Por favor, crea un ticket\",\"x2mjl4\":\"Por favor, introduzca una URL de imagen válida que apunte a una imagen.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Tenga en cuenta\",\"C63rRe\":\"Por favor, regresa a la página del evento para comenzar de nuevo.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Por favor, seleccione al menos un producto\",\"igBrCH\":\"Verifique su dirección de correo electrónico para acceder a todas las funciones.\",\"/IzmnP\":\"Por favor, espere mientras preparamos su factura...\",\"MOERNx\":\"Portugués\",\"qCJyMx\":\"Mensaje posterior al pago\",\"g2UNkE\":\"Energizado por\",\"Rs7IQv\":\"Mensaje previo al pago\",\"rdUucN\":\"Vista Previa\",\"a7u1N9\":\"Precio\",\"CmoB9j\":\"Modo de visualización de precios\",\"BI7D9d\":\"Precio no establecido\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Tipo de precio\",\"6RmHKN\":\"Color primario\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Color de texto primario\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Imprimir todas las entradas\",\"DKwDdj\":\"Imprimir boletos\",\"K47k8R\":\"Producto\",\"1JwlHk\":\"Categoría de producto\",\"U61sAj\":\"Categoría de producto actualizada con éxito.\",\"1USFWA\":\"Producto eliminado con éxito\",\"4Y2FZT\":\"Tipo de precio del producto\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Ventas de productos\",\"U/R4Ng\":\"Nivel del producto\",\"sJsr1h\":\"Tipo de producto\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Producto(s)\",\"N0qXpE\":\"Productos\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Productos vendidos\",\"/u4DIx\":\"Productos vendidos\",\"DJQEZc\":\"Productos ordenados con éxito\",\"vERlcd\":\"Perfil\",\"kUlL8W\":\"perfil actualizado con éxito\",\"cl5WYc\":[\"Código promocional \",[\"promo_code\"],\" aplicado\"],\"P5sgAk\":\"Código promocional\",\"yKWfjC\":\"Página de códigos promocionales\",\"RVb8Fo\":\"Códigos promocionales\",\"BZ9GWa\":\"Los códigos promocionales se pueden utilizar para ofrecer descuentos, acceso de preventa o proporcionar acceso especial a su evento.\",\"OP094m\":\"Informe de códigos promocionales\",\"4kyDD5\":\"Proporciona contexto o instrucciones adicionales para esta pregunta. Usa este campo para añadir términos\\ny condiciones, directrices o cualquier información importante que los asistentes deban conocer antes de responder.\",\"toutGW\":\"Código QR\",\"LkMOWF\":\"cantidad disponible\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Pregunta eliminada\",\"avf0gk\":\"Descripción de la pregunta\",\"oQvMPn\":\"Título de la pregunta\",\"enzGAL\":\"Preguntas\",\"ROv2ZT\":\"Preguntas y respuestas\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Opción de radio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipiente\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Reembolso fallido\",\"n10yGu\":\"Orden de reembolso\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Reembolso pendiente\",\"xHpVRl\":\"Estado del reembolso\",\"/BI0y9\":\"Reintegrado\",\"fgLNSM\":\"Registro\",\"9+8Vez\":\"Usos restantes\",\"tasfos\":\"eliminar\",\"t/YqKh\":\"Eliminar\",\"t9yxlZ\":\"Informes\",\"prZGMe\":\"Requerir dirección de facturación\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Reenviar confirmación por correo electrónico\",\"wIa8Qe\":\"Reenviar invitacíon\",\"VeKsnD\":\"Reenviar correo electrónico del pedido\",\"dFuEhO\":\"Reenviar correo del entrada\",\"o6+Y6d\":\"Reenviando...\",\"OfhWJH\":\"Restablecer\",\"RfwZxd\":\"Restablecer la contraseña\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restaurar evento\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Volver a la página del evento\",\"8YBH95\":\"Ganancia\",\"PO/sOY\":\"Revocar invitación\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Fecha de finalización de la venta\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Fecha de inicio de la venta\",\"hBsw5C\":\"Ventas terminadas\",\"kpAzPe\":\"Inicio de ventas\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Guardar\",\"IUwGEM\":\"Guardar cambios\",\"U65fiW\":\"Guardar organizador\",\"UGT5vp\":\"Guardar ajustes\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Busque por nombre del asistente, correo electrónico o número de pedido...\",\"+pr/FY\":\"Buscar por nombre del evento...\",\"3zRbWw\":\"Busque por nombre, correo electrónico o número de pedido...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Buscar por nombre...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Buscar asignaciones de capacidad...\",\"r9M1hc\":\"Buscar listas de registro...\",\"+0Yy2U\":\"Buscar productos\",\"YIix5Y\":\"Buscar...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Color secundario\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Color de texto secundario\",\"02ePaq\":[\"Seleccionar \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Seleccionar categoría...\",\"kWI/37\":\"Seleccionar organizador\",\"ixIx1f\":\"Seleccionar producto\",\"3oSV95\":\"Seleccionar nivel de producto\",\"C4Y1hA\":\"Seleccionar productos\",\"hAjDQy\":\"Seleccionar estado\",\"QYARw/\":\"Seleccionar billete\",\"OMX4tH\":\"Seleccionar boletos\",\"DrwwNd\":\"Seleccionar período de tiempo\",\"O/7I0o\":\"Seleccionar...\",\"JlFcis\":\"Enviar\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Enviar un mensaje\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Enviar Mensaje\",\"D7ZemV\":\"Enviar confirmación del pedido y correo electrónico del billete.\",\"v1rRtW\":\"Enviar prueba\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descripción SEO\",\"/SIY6o\":\"Palabras clave SEO\",\"GfWoKv\":\"Configuración de SEO\",\"rXngLf\":\"Título SEO\",\"/jZOZa\":\"Tarifa de servicio\",\"Bj/QGQ\":\"Fijar un precio mínimo y dejar que los usuarios paguen más si lo desean.\",\"L0pJmz\":\"Establezca el número inicial para la numeración de facturas. Esto no se puede cambiar una vez que las facturas se hayan generado.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Ajustes\",\"Z8lGw6\":\"Compartir\",\"B2V3cA\":\"Compartir evento\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Mostrar cantidad disponible del producto\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Mostrar más\",\"izwOOD\":\"Mostrar impuestos y tarifas por separado\",\"1SbbH8\":\"Se muestra al cliente después de finalizar la compra, en la página de resumen del pedido.\",\"YfHZv0\":\"Se muestra al cliente antes de realizar el pago.\",\"CBBcly\":\"Muestra campos de dirección comunes, incluido el país.\",\"yTnnYg\":\"simpson\",\"TNaCfq\":\"Cuadro de texto de una sola línea\",\"+P0Cn2\":\"Salta este paso\",\"YSEnLE\":\"Herrero\",\"lgFfeO\":\"Agotado\",\"Mi1rVn\":\"Agotado\",\"nwtY4N\":\"Algo salió mal\",\"GRChTw\":\"Algo salió mal al eliminar el impuesto o tarifa\",\"YHFrbe\":\"¡Algo salió mal! Inténtalo de nuevo\",\"kf83Ld\":\"Algo salió mal.\",\"fWsBTs\":\"Algo salió mal. Inténtalo de nuevo.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Lo sentimos, este código de promoción no se reconoce\",\"65A04M\":\"Español\",\"mFuBqb\":\"Producto estándar con precio fijo\",\"D3iCkb\":\"Fecha de inicio\",\"/2by1f\":\"Estado o región\",\"uAQUqI\":\"Estado\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Los pagos con Stripe no están habilitados para este evento.\",\"UJmAAK\":\"Sujeto\",\"X2rrlw\":\"Total parcial\",\"zzDlyQ\":\"Éxito\",\"b0HJ45\":[\"¡Éxito! \",[\"0\"],\" recibirá un correo electrónico en breve.\"],\"BJIEiF\":[[\"0\"],\" asistente con éxito\"],\"OtgNFx\":\"Dirección de correo electrónico confirmada correctamente\",\"IKwyaF\":\"Cambio de correo electrónico confirmado exitosamente\",\"zLmvhE\":\"Asistente creado exitosamente\",\"gP22tw\":\"Producto creado con éxito\",\"9mZEgt\":\"Código promocional creado correctamente\",\"aIA9C4\":\"Pregunta creada correctamente\",\"J3RJSZ\":\"Asistente actualizado correctamente\",\"3suLF0\":\"Asignación de Capacidad actualizada con éxito\",\"Z+rnth\":\"Lista de registro actualizada con éxito\",\"vzJenu\":\"Configuración de correo electrónico actualizada correctamente\",\"7kOMfV\":\"Evento actualizado con éxito\",\"G0KW+e\":\"Diseño de página de inicio actualizado con éxito\",\"k9m6/E\":\"Configuración de la página de inicio actualizada correctamente\",\"y/NR6s\":\"Ubicación actualizada correctamente\",\"73nxDO\":\"Configuraciones varias actualizadas exitosamente\",\"4H80qv\":\"Pedido actualizado con éxito\",\"6xCBVN\":\"Configuraciones de pago y facturación actualizadas con éxito\",\"1Ycaad\":\"Producto actualizado correctamente\",\"70dYC8\":\"Código promocional actualizado correctamente\",\"F+pJnL\":\"Configuración de SEO actualizada con éxito\",\"DXZRk5\":\"habitación 100\",\"GNcfRk\":\"Correo electrónico de soporte\",\"uRfugr\":\"Camiseta\",\"JpohL9\":\"Impuesto\",\"geUFpZ\":\"Impuestos y tarifas\",\"dFHcIn\":\"Detalles de impuestos\",\"wQzCPX\":\"Información fiscal que aparecerá en la parte inferior de todas las facturas (por ejemplo, número de IVA, registro fiscal)\",\"0RXCDo\":\"Impuesto o tasa eliminados correctamente\",\"ZowkxF\":\"Impuestos\",\"qu6/03\":\"Impuestos y honorarios\",\"gypigA\":\"Ese código de promoción no es válido.\",\"5ShqeM\":\"La lista de registro que buscas no existe.\",\"QXlz+n\":\"La moneda predeterminada para tus eventos.\",\"mnafgQ\":\"La zona horaria predeterminada para sus eventos.\",\"o7s5FA\":\"El idioma en el que el asistente recibirá los correos electrónicos.\",\"NlfnUd\":\"El enlace en el que hizo clic no es válido.\",\"HsFnrk\":[\"El número máximo de productos para \",[\"0\"],\" es \",[\"1\"]],\"TSAiPM\":\"La página que buscas no existe\",\"MSmKHn\":\"El precio mostrado al cliente incluirá impuestos y tasas.\",\"6zQOg1\":\"El precio mostrado al cliente no incluirá impuestos ni tasas. Se mostrarán por separado.\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"El título del evento que se mostrará en los resultados del motor de búsqueda y al compartirlo en las redes sociales. De forma predeterminada, se utilizará el título del evento.\",\"wDx3FF\":\"No hay productos disponibles para este evento\",\"pNgdBv\":\"No hay productos disponibles en esta categoría\",\"rMcHYt\":\"Hay un reembolso pendiente. Espere a que se complete antes de solicitar otro reembolso.\",\"F89D36\":\"Hubo un error al marcar el pedido como pagado\",\"68Axnm\":\"Hubo un error al procesar su solicitud. Inténtalo de nuevo.\",\"mVKOW6\":\"Hubo un error al enviar tu mensaje\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Este asistente tiene un pedido sin pagar.\",\"mf3FrP\":\"Esta categoría aún no tiene productos.\",\"8QH2Il\":\"Esta categoría está oculta de la vista pública\",\"xxv3BZ\":\"Esta lista de registro ha expirado\",\"Sa7w7S\":\"Esta lista de registro ha expirado y ya no está disponible para registros.\",\"Uicx2U\":\"Esta lista de registro está activa\",\"1k0Mp4\":\"Esta lista de registro aún no está activa\",\"K6fmBI\":\"Esta lista de registro aún no está activa y no está disponible para registros.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Esta información se mostrará en la página de pago, en la página de resumen del pedido y en el correo electrónico de confirmación del pedido.\",\"XAHqAg\":\"Este es un producto general, como una camiseta o una taza. No se emitirá un boleto\",\"CNk/ro\":\"Este es un evento en línea\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Este mensaje se incluirá en el pie de página de todos los correos electrónicos enviados desde este evento.\",\"55i7Fa\":\"Este mensaje solo se mostrará si el pedido se completa con éxito. Los pedidos en espera de pago no mostrarán este mensaje.\",\"RjwlZt\":\"Este pedido ya ha sido pagado.\",\"5K8REg\":\"Este pedido ya ha sido reembolsado.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Esta orden ha sido cancelada.\",\"Q0zd4P\":\"Este pedido ha expirado. Por favor, comienza de nuevo.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Este pedido está completo.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Esta página de pedidos ya no está disponible.\",\"i0TtkR\":\"Esto sobrescribe todas las configuraciones de visibilidad y ocultará el producto a todos los clientes.\",\"cRRc+F\":\"Este producto no se puede eliminar porque está asociado con un pedido. Puede ocultarlo en su lugar.\",\"3Kzsk7\":\"Este producto es un boleto. Se emitirá un boleto a los compradores al realizar la compra\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Este enlace para restablecer la contraseña no es válido o ha caducado.\",\"IV9xTT\":\"Este usuario no está activo porque no ha aceptado su invitación.\",\"5AnPaO\":\"boleto\",\"kjAL4v\":\"Boleto\",\"dtGC3q\":\"El correo electrónico del ticket se ha reenviado al asistente.\",\"54q0zp\":\"Entradas para\",\"xN9AhL\":[\"Nivel \",[\"0\"]],\"jZj9y9\":\"Producto escalonado\",\"8wITQA\":\"Los productos escalonados le permiten ofrecer múltiples opciones de precio para el mismo producto. Esto es perfecto para productos anticipados o para ofrecer diferentes opciones de precio a diferentes grupos de personas.\\\" # es\",\"nn3mSR\":\"Tiempo restante:\",\"s/0RpH\":\"Tiempos utilizados\",\"y55eMd\":\"Veces usado\",\"40Gx0U\":\"Zona horaria\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Herramientas\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total antes de descuentos\",\"NRWNfv\":\"Monto total de descuento\",\"BxsfMK\":\"Tarifas totales\",\"2bR+8v\":\"Total de ventas brutas\",\"mpB/d9\":\"Monto total del pedido\",\"m3FM1g\":\"Total reembolsado\",\"jEbkcB\":\"Total reembolsado\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total impuestos\",\"+zy2Nq\":\"Tipo\",\"FMdMfZ\":\"No se pudo registrar al asistente\",\"bPWBLL\":\"No se pudo retirar al asistente\",\"9+P7zk\":\"No se pudo crear el producto. Por favor, revise sus datos\",\"WLxtFC\":\"No se pudo crear el producto. Por favor, revise sus datos\",\"/cSMqv\":\"No se puede crear una pregunta. Por favor revisa tus datos\",\"MH/lj8\":\"No se puede actualizar la pregunta. Por favor revisa tus datos\",\"nnfSdK\":\"Clientes únicos\",\"Mqy/Zy\":\"Estados Unidos\",\"NIuIk1\":\"Ilimitado\",\"/p9Fhq\":\"Ilimitado disponible\",\"E0q9qH\":\"Usos ilimitados permitidos\",\"h10Wm5\":\"Pedido no pagado\",\"ia8YsC\":\"Próximo\",\"TlEeFv\":\"Próximos eventos\",\"L/gNNk\":[\"Actualizar \",[\"0\"]],\"+qqX74\":\"Actualizar el nombre del evento, la descripción y las fechas.\",\"vXPSuB\":\"Actualización del perfil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copiada en el portapapeles\",\"e5lF64\":\"Ejemplo de uso\",\"fiV0xj\":\"Límite de uso\",\"sGEOe4\":\"Utilice una versión borrosa de la imagen de portada como fondo\",\"OadMRm\":\"Usar imagen de portada\",\"7PzzBU\":\"Usuario\",\"yDOdwQ\":\"Gestión de usuarios\",\"Sxm8rQ\":\"Usuarios\",\"VEsDvU\":\"Los usuarios pueden cambiar su correo electrónico en <0>Configuración de perfil\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"IVA\",\"E/9LUk\":\"Nombre del lugar\",\"jpctdh\":\"Ver\",\"Pte1Hv\":\"Ver detalles del asistente\",\"/5PEQz\":\"Ver página del evento\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Ver en Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Lista de registro VIP\",\"tF+VVr\":\"Entrada VIP\",\"2q/Q7x\":\"Visibilidad\",\"vmOFL/\":\"No pudimos procesar su pago. Inténtelo de nuevo o comuníquese con el soporte.\",\"45Srzt\":\"No pudimos eliminar la categoría. Por favor, inténtelo de nuevo.\",\"/DNy62\":[\"No pudimos encontrar ningún boleto que coincida con \",[\"0\"]],\"1E0vyy\":\"No pudimos cargar los datos. Inténtalo de nuevo.\",\"NmpGKr\":\"No pudimos reordenar las categorías. Por favor, inténtelo de nuevo.\",\"BJtMTd\":\"Recomendamos dimensiones de 2160 px por 1080 px y un tamaño de archivo máximo de 5 MB.\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"No pudimos confirmar su pago. Inténtelo de nuevo o comuníquese con el soporte.\",\"Gspam9\":\"Estamos procesando tu pedido. Espere por favor...\",\"LuY52w\":\"¡Bienvenido a bordo! Por favor inicie sesión para continuar.\",\"dVxpp5\":[\"Bienvenido de nuevo\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"¿Qué son los productos escalonados?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"¿Qué es una categoría?\",\"gxeWAU\":\"¿A qué productos se aplica este código?\",\"hFHnxR\":\"¿A qué productos se aplica este código? (Se aplica a todos por defecto)\",\"AeejQi\":\"¿A qué productos debería aplicarse esta capacidad?\",\"Rb0XUE\":\"¿A qué hora llegarás?\",\"5N4wLD\":\"¿Qué tipo de pregunta es esta?\",\"gyLUYU\":\"Cuando esté habilitado, se generarán facturas para los pedidos de boletos. Las facturas se enviarán junto con el correo electrónico de confirmación del pedido. Los asistentes también pueden descargar sus facturas desde la página de confirmación del pedido.\",\"D3opg4\":\"Cuando los pagos offline estén habilitados, los usuarios podrán completar sus pedidos y recibir sus boletos. Sus boletos indicarán claramente que el pedido no está pagado, y la herramienta de registro notificará al personal si un pedido requiere pago.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"¿Qué boletos deben asociarse con esta lista de registro?\",\"S+OdxP\":\"¿Quién organiza este evento?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"¿A quién se le debería hacer esta pregunta?\",\"VxFvXQ\":\"Insertar widget\",\"v1P7Gm\":\"Configuración del widget\",\"b4itZn\":\"Laboral\",\"hqmXmc\":\"Laboral...\",\"+G/XiQ\":\"Año hasta la fecha\",\"l75CjT\":\"Sí\",\"QcwyCh\":\"Si, eliminarlos\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Estás cambiando tu correo electrónico a <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Estás desconectado\",\"sdB7+6\":\"Puede crear un código promocional que se dirija a este producto en el\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"No puede cambiar el tipo de producto ya que hay asistentes asociados con este producto.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"No puede registrar a asistentes con pedidos no pagados. Esta configuración se puede cambiar en los ajustes del evento.\",\"c9Evkd\":\"No puede eliminar la última categoría.\",\"6uwAvx\":\"No puede eliminar este nivel de precios porque ya hay productos vendidos para este nivel. Puede ocultarlo en su lugar.\",\"tFbRKJ\":\"No puede editar la función o el estado del propietario de la cuenta.\",\"fHfiEo\":\"No puede reembolsar un pedido creado manualmente.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Tienes acceso a múltiples cuentas. Por favor elige uno para continuar.\",\"Z6q0Vl\":\"Ya has aceptado esta invitación. Por favor inicie sesión para continuar.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"No tienes ningún cambio de correo electrónico pendiente.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Se te ha acabado el tiempo para completar tu pedido.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Debes reconocer que este correo electrónico no es promocional.\",\"3ZI8IL\":\"Debes aceptar los términos y condiciones.\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Debe crear un ticket antes de poder agregar manualmente un asistente.\",\"jE4Z8R\":\"Debes tener al menos un nivel de precios\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Deberá marcar un pedido como pagado manualmente. Esto se puede hacer en la página de gestión de pedidos.\",\"L/+xOk\":\"Necesitarás un boleto antes de poder crear una lista de registro.\",\"Djl45M\":\"Necesitará un producto antes de poder crear una asignación de capacidad.\",\"y3qNri\":\"Necesitará al menos un producto para comenzar. Gratis, de pago o deje que el usuario decida cuánto pagar.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Su nombre de cuenta se utiliza en las páginas de eventos y en los correos electrónicos.\",\"veessc\":\"Sus asistentes aparecerán aquí una vez que se hayan registrado para su evento. También puede agregar asistentes manualmente.\",\"Eh5Wrd\":\"Tu increíble sitio web 🎉\",\"lkMK2r\":\"Tus detalles\",\"3ENYTQ\":[\"Su solicitud de cambio de correo electrónico a <0>\",[\"0\"],\" está pendiente. Por favor revisa tu correo para confirmar\"],\"yZfBoy\":\"Tu mensaje ha sido enviado\",\"KSQ8An\":\"Tu pedido\",\"Jwiilf\":\"Tu pedido ha sido cancelado\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Tus pedidos aparecerán aquí una vez que comiencen a llegar.\",\"9TO8nT\":\"Tu contraseña\",\"P8hBau\":\"Su pago se está procesando.\",\"UdY1lL\":\"Su pago no fue exitoso, inténtelo nuevamente.\",\"fzuM26\":\"Su pago no fue exitoso. Inténtalo de nuevo.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Su reembolso se está procesando.\",\"IFHV2p\":\"Tu billete para\",\"x1PPdr\":\"Código postal\",\"BM/KQm\":\"CP o Código Postal\",\"+LtVBt\":\"Código postal\",\"25QDJ1\":\"- Haz clic para publicar\",\"WOyJmc\":\"- Haz clic para despublicar\",\"ncwQad\":\"(vacío)\",\"B/gRsg\":\"(ninguno)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ya está registrado\"],\"3beCx0\":[[\"0\"],\" <0>registrado\"],\"S4PqS9\":[[\"0\"],\" webhooks activos\"],\"6MIiOI\":[[\"0\"],\" restantes\"],\"COnw8D\":[\"Logo de \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" de \",[\"1\"],\" plazas ocupadas.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"rZTf6P\":[[\"0\"],\" plazas restantes\"],\"/HkCs4\":[[\"0\"],\" entradas\"],\"dtXkP9\":[[\"0\"],\" próximas fechas\"],\"30bTiU\":[[\"activeCount\"],\" habilitados\"],\"jTs4am\":[\"Logo de \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" asistentes están registrados en esta sesión.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponibles\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" registrados\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"hace \",[\"diffHr\"],\" h\"],\"NRSLBe\":[\"hace \",[\"diffMin\"],\" min\"],\"iYfwJE\":[\"hace \",[\"diffSec\"],\" s\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" asistentes están registrados en las sesiones afectadas.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de entradas\"],\"0cLzoF\":[[\"totalOccurrences\"],\" fechas\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sesiones en \",[\"0\"],\" fechas (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sesión\"],\"other\":[\"#\",\" sesiones\"]}],\" por día)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Impuestos/Tasas\",\"B1St2O\":\"<0>Las listas de check-in te ayudan a gestionar la entrada al evento por día, área o tipo de entrada. Puedes vincular entradas a listas específicas como zonas VIP o pases del Día 1 y compartir un enlace de check-in seguro con el personal. No se requiere cuenta. El check-in funciona en móvil, escritorio o tableta, usando la cámara del dispositivo o un escáner USB HID. \",\"v9VSIS\":\"<0>Establece un límite total de asistencia que se aplica a múltiples tipos de entradas a la vez.<1>Por ejemplo, si vinculas una entrada de <2>Pase de Día y una de <3>Fin de Semana Completo, ambas se extraerán del mismo grupo de plazas. Una vez alcanzado el límite, todas las entradas vinculadas dejan de venderse automáticamente.\",\"vKXqag\":\"<0>Esta es la cantidad predeterminada para todas las fechas. La capacidad de cada fecha puede limitar aún más la disponibilidad en la <1>página de Programación de Sesiones.\",\"ZnVt5v\":\"<0>Los webhooks notifican instantáneamente a los servicios externos cuando ocurren eventos, como agregar un nuevo asistente a tu CRM o lista de correo al registrarse, asegurando una automatización fluida.<1>Usa servicios de terceros como <2>Zapier, <3>IFTTT o <4>Make para crear flujos de trabajo personalizados y automatizar tareas.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" al tipo de cambio actual\"],\"M2DyLc\":\"1 webhook activo\",\"6hIk/x\":\"1 asistente está registrado en las sesiones afectadas.\",\"qOyE2U\":\"1 asistente está registrado en esta sesión.\",\"943BwI\":\"1 día después de la fecha de finalización\",\"yj3N+g\":\"1 día después de la fecha de inicio\",\"Z3etYG\":\"1 día antes del evento\",\"szSnlj\":\"1 hora antes del evento\",\"yTsaLw\":\"1 entrada\",\"nz96Ue\":\"1 tipo de entrada\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 semana antes del evento\",\"09VFYl\":\"12 entradas ofrecidas\",\"HR/cvw\":\"Calle Ejemplo 123\",\"dgKxZ5\":\"135+ monedas y 40+ métodos de pago\",\"kMU5aM\":\"Se ha enviado un aviso de cancelación a\",\"o++0qa\":\"un cambio de duración\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Se ha enviado un nuevo código de verificación a tu correo\",\"sr2Je0\":\"un cambio en las horas de inicio/fin\",\"/z/bH1\":\"Una breve descripción de tu organizador que se mostrará a tus usuarios.\",\"aS0jtz\":\"Abandonado\",\"uyJsf6\":\"Acerca de\",\"JvuLls\":\"Asumir la comisión\",\"lk74+I\":\"Asumir la comisión\",\"1uJlG9\":\"Color de Acento\",\"g3UF2V\":\"Aceptar\",\"K5+3xg\":\"Aceptar invitación\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Cuenta · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Información de la cuenta\",\"EHNORh\":\"Cuenta no encontrada\",\"bPwFdf\":\"Cuentas\",\"AhwTa1\":\"Acción Requerida: Se Necesita Información del IVA\",\"APyAR/\":\"Eventos activos\",\"kCl6ja\":\"Métodos de pago activos\",\"XJOV1Y\":\"Actividad\",\"0YEoxS\":\"Añadir una fecha\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Añadir una sola fecha\",\"CjvTPJ\":\"Añadir otro horario\",\"0XCduh\":\"Añade al menos un horario\",\"/chGpa\":\"Añade los datos de conexión para el evento online.\",\"UWWRyd\":\"Agregue preguntas personalizadas para recopilar información adicional durante el proceso de pago\",\"Z/dcxc\":\"Añadir fecha\",\"Q219NT\":\"Añadir fechas\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Añadir ubicación\",\"VX6WUv\":\"Añadir ubicación\",\"GCQlV2\":\"Añade varios horarios si tienes varias sesiones por día.\",\"7JF9w9\":\"Agregar pregunta\",\"NLbIb6\":\"Añadir este asistente de todas formas (sobrescribir capacidad)\",\"6PNlRV\":\"Añade este evento a tu calendario\",\"BGD9Yt\":\"Agregar entradas\",\"uIv4Op\":\"Añade píxeles de seguimiento a tus páginas públicas de evento y a la página principal del organizador. Se mostrará un aviso de cookies a los visitantes cuando el seguimiento esté activo.\",\"QN2F+7\":\"Agregar Webhook\",\"NsWqSP\":\"Agrega tus redes sociales y la URL de tu sitio web. Estos se mostrarán en tu página pública de organizador.\",\"bVjDs9\":\"Comisiones adicionales\",\"MKqSg4\":\"Acceso de administrador requerido\",\"0Zypnp\":\"Panel de Administración\",\"YAV57v\":\"Afiliado\",\"I+utEq\":\"El código de afiliado no se puede cambiar\",\"/jHBj5\":\"Afiliado creado exitosamente\",\"uCFbG2\":\"Afiliado eliminado exitosamente\",\"ld8I+f\":\"Programa de afiliados\",\"a41PKA\":\"Se rastrearán las ventas del afiliado\",\"mJJh2s\":\"No se rastrearán las ventas del afiliado. Esto desactivará al afiliado.\",\"jabmnm\":\"Afiliado actualizado exitosamente\",\"CPXP5Z\":\"Afiliados\",\"9Wh+ug\":\"Afiliados exportados\",\"3cqmut\":\"Los afiliados te ayudan a rastrear las ventas generadas por socios e influencers. Crea códigos de afiliado y compártelos para monitorear el rendimiento.\",\"z7GAMJ\":\"todas\",\"N40H+G\":\"Todos\",\"7rLTkE\":\"Todos los eventos archivados\",\"gKq1fa\":\"Todos los asistentes\",\"63gRoO\":\"Todos los asistentes de las sesiones seleccionadas\",\"uWxIoH\":\"Todos los asistentes de esta sesión\",\"pMLul+\":\"Todas las monedas\",\"sgUdRZ\":\"Todas las fechas\",\"e4q4uO\":\"Todas las fechas\",\"ZS/D7f\":\"Todos los eventos finalizados\",\"QsYjci\":\"Todos los eventos\",\"31KB8w\":\"Todos los trabajos fallidos eliminados\",\"D2g7C7\":\"Todos los trabajos en cola para reintentar\",\"B4RFBk\":\"Todas las fechas coincidentes\",\"F1/VgK\":\"Todas las sesiones\",\"OpWjMq\":\"Todas las sesiones\",\"Sxm1lO\":\"Todos los estados\",\"dr7CWq\":\"Todos los próximos eventos\",\"GpT6Uf\":\"Permitir a los asistentes actualizar su información de entrada (nombre, correo electrónico) a través de un enlace seguro enviado con su confirmación de pedido.\",\"F3mW5G\":\"Permitir que los clientes se unan a una lista de espera cuando este producto esté agotado\",\"c4uJfc\":\"¡Casi listo! Solo estamos esperando que se procese tu pago. Esto debería tomar solo unos segundos.\",\"ocS8eq\":[\"¿Ya tienes una cuenta? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Ya registrado\",\"/H326L\":\"Ya reembolsado\",\"USEpOK\":\"¿Ya usas Stripe en otro organizador? Reutiliza esa conexión.\",\"RtxQTF\":\"También cancelar este pedido\",\"jkNgQR\":\"También reembolsar este pedido\",\"xYqsHg\":\"Siempre disponible\",\"Wvrz79\":\"Monto pagado\",\"Zkymb9\":\"Un correo para asociar con este afiliado. El afiliado no será notificado.\",\"vRznIT\":\"Ocurrió un error al verificar el estado de la exportación.\",\"eusccx\":\"Un mensaje opcional para mostrar en el producto destacado, ej. \\\"Se vende rápido 🔥\\\" o \\\"Mejor valor\\\"\",\"5GJuNp\":[\"y \",[\"0\"],\" más...\"],\"QNrkms\":\"Respuesta actualizada con éxito.\",\"+qygei\":\"Respuestas\",\"GK7Lnt\":\"Respuestas al pagar (p. ej., elección de menú)\",\"lE8PgT\":\"Las fechas que has personalizado manualmente se conservarán.\",\"vP3Nzg\":[\"Se aplica a \",[\"0\"],\" fechas no canceladas cargadas actualmente en esta página.\"],\"kkVyZZ\":\"Aplica a quien abra el enlace de check-in sin iniciar sesión. Los miembros autenticados siempre lo ven todo.\",\"je4muG\":[\"Se aplica a todas las \",[\"0\"],\" fechas no canceladas de este evento — incluidas las que no están cargadas actualmente.\"],\"YIIQtt\":\"Aplicar cambios\",\"NzWX1Y\":\"Aplicar a\",\"Ps5oDT\":\"Aplicar a todas las entradas\",\"261RBr\":\"Aprobar mensaje\",\"naCW6Z\":\"Abril\",\"B495Gs\":\"Archivar\",\"5sNliy\":\"Archivar evento\",\"BrwnrJ\":\"Archivar organizador\",\"E5eghW\":\"Archiva este evento para ocultarlo al público. Puedes restaurarlo más tarde.\",\"eqFkeI\":\"Archiva este organizador. Esto también archivará todos los eventos pertenecientes a este organizador.\",\"BzcxWv\":\"Organizadores archivados\",\"9cQBd6\":\"¿Estás seguro de que quieres archivar este evento? Ya no será visible para el público.\",\"Trnl3E\":\"¿Estás seguro de que quieres archivar este organizador? Esto también archivará todos los eventos pertenecientes a este organizador.\",\"wOvn+e\":[\"¿Seguro que quieres cancelar \",[\"count\"],\" fecha(s)? Los asistentes afectados serán notificados por correo electrónico.\"],\"GTxE0U\":\"¿Seguro que quieres cancelar esta fecha? Los asistentes afectados serán notificados por correo electrónico.\",\"VkSk/i\":\"¿Está seguro de que desea cancelar este mensaje programado?\",\"0aVEBY\":\"¿Estás seguro de que deseas eliminar todos los trabajos fallidos?\",\"LchiNd\":\"¿Estás seguro de que quieres eliminar este afiliado? Esta acción no se puede deshacer.\",\"vPeW/6\":\"¿Estás seguro de que quieres eliminar esta configuración? Esto puede afectar a las cuentas que la utilizan.\",\"h42Hc/\":\"¿Seguro que quieres eliminar esta fecha? Esta acción no se puede deshacer.\",\"JmVITJ\":\"¿Está seguro de que desea eliminar esta plantilla? Esta acción no se puede deshacer y los correos volverán a la plantilla predeterminada.\",\"aLS+A6\":\"¿Está seguro de que desea eliminar esta plantilla? Esta acción no se puede deshacer y los correos volverán a la plantilla del organizador o predeterminada.\",\"5H3Z78\":\"¿Estás seguro de que quieres eliminar este webhook?\",\"147G4h\":\"¿Estás seguro de que quieres salir?\",\"VDWChT\":\"¿Estás seguro de que quieres poner este organizador como borrador? Esto hará que la página del organizador sea invisible al público.\",\"pWtQJM\":\"¿Estás seguro de que quieres hacer público este organizador? Esto hará que la página del organizador sea visible al público.\",\"EOqL/A\":\"¿Estás seguro de que quieres ofrecer un lugar a esta persona? Recibirá una notificación por correo electrónico.\",\"yAXqWW\":\"¿Seguro que quieres eliminar permanentemente esta fecha? Esto no se puede deshacer.\",\"WFHOlF\":\"¿Estás seguro de que quieres publicar este evento? Una vez publicado, será visible al público.\",\"4TNVdy\":\"¿Estás seguro de que quieres publicar este perfil de organizador? Una vez publicado, será visible al público.\",\"8x0pUg\":\"¿Está seguro de que desea eliminar esta entrada de la lista de espera?\",\"cDtoWq\":[\"¿Está seguro de que desea reenviar la confirmación del pedido a \",[\"0\"],\"?\"],\"xeIaKw\":[\"¿Está seguro de que desea reenviar la entrada a \",[\"0\"],\"?\"],\"BjbocR\":\"¿Estás seguro de que quieres restaurar este evento?\",\"7MjfcR\":\"¿Estás seguro de que quieres restaurar este organizador?\",\"ExDt3P\":\"¿Estás seguro de que quieres despublicar este evento? Ya no será visible al público.\",\"5Qmxo/\":\"¿Estás seguro de que quieres despublicar este perfil de organizador? Ya no será visible al público.\",\"Uqefyd\":\"¿Está registrado para el IVA en la UE?\",\"+QARA4\":\"Arte\",\"tLf3yJ\":\"Como su negocio está ubicado en Irlanda, el IVA irlandés del 23% se aplica automáticamente a todas las tarifas de la plataforma.\",\"tMeVa/\":\"Solicitar nombre y correo electrónico por cada boleto comprado\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Asignar plan\",\"xdiER7\":\"Nivel asignado\",\"F2rX0R\":\"Debe seleccionarse al menos un tipo de evento\",\"BCmibk\":\"Intentos\",\"6PecK3\":\"Asistencia y tasas de registro en todos los eventos\",\"K2tp3v\":\"asistente\",\"AJ4rvK\":\"Asistente cancelado\",\"qvylEK\":\"Asistente creado\",\"Aspq3b\":\"Recopilación de datos de asistentes\",\"fpb0rX\":\"Datos del asistente copiados del pedido\",\"0R3Y+9\":\"Email del asistente\",\"94aQMU\":\"Información del asistente\",\"KkrBiR\":\"Recopilación de información del asistente\",\"av+gjP\":\"Nombre del asistente\",\"sjPjOg\":\"Notas del asistente\",\"cosfD8\":\"Estado del Asistente\",\"D2qlBU\":\"Asistente actualizado\",\"22BOve\":\"Asistente actualizado correctamente\",\"x8Vnvf\":\"El ticket del asistente no está incluido en esta lista\",\"/Ywywr\":\"asistentes\",\"zLRobu\":\"asistentes registrados\",\"k3Tngl\":\"Asistentes exportados\",\"UoIRW8\":\"Asistentes registrados\",\"5UbY+B\":\"Asistentes con entrada específica\",\"4HVzhV\":\"Asistentes:\",\"HVkhy2\":\"Análisis de atribución\",\"dMMjeD\":\"Desglose de atribución\",\"1oPDuj\":\"Valor de atribución\",\"DBHTm/\":\"Agosto\",\"JgREph\":\"La oferta automática está activada\",\"V7Tejz\":\"Procesar lista de espera automáticamente\",\"PZ7FTW\":\"Detectado automáticamente según el color de fondo, pero se puede anular\",\"zlnTuI\":\"Ofrece automáticamente entradas a la siguiente persona cuando haya capacidad disponible. Si está desactivado, puedes procesar la lista de espera manualmente desde la página Lista de espera.\",\"csDS2L\":\"Disponible\",\"clF06r\":\"Disponible para reembolso\",\"NB5+UG\":\"Tokens disponibles\",\"L+wGOG\":\"Pendiente\",\"qcw2OD\":\"Pago pendiente\",\"kNmmvE\":\"Awesome Events S.A.\",\"iH8pgl\":\"Atrás\",\"TeSaQO\":\"Volver a cuentas\",\"X7Q/iM\":\"Volver al calendario\",\"kYqM1A\":\"Volver al evento\",\"s5QRF3\":\"Volver a mensajes\",\"td/bh+\":\"Volver a Informes\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Precio base\",\"hviJef\":\"Basado en el periodo de venta global anterior, no por fecha\",\"jIPNJG\":\"Información básica\",\"UabgBd\":\"El cuerpo es requerido\",\"HWXuQK\":\"Guarda esta página en marcadores para gestionar tu pedido en cualquier momento.\",\"CUKVDt\":\"Personalice sus boletos con un logotipo, colores y mensaje de pie de página personalizados.\",\"4BZj5p\":\"Protección antifraude integrada\",\"cr7kGH\":\"Edición masiva\",\"1Fbd6n\":\"Editar fechas en bloque\",\"Eq6Tu9\":\"La actualización masiva falló.\",\"9N+p+g\":\"Negocios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nombre comercial\",\"bv6RXK\":\"Etiqueta del botón\",\"ChDLlO\":\"Texto del botón\",\"BUe8Wj\":\"El comprador paga\",\"qF1qbA\":\"Los compradores ven un precio limpio. La comisión de la plataforma se deduce de su pago.\",\"dg05rc\":\"Al añadir píxeles de seguimiento, reconoces que tú y esta plataforma sois corresponsables de los datos recopilados. Eres responsable de asegurar que tienes una base legal para este tratamiento conforme a las leyes de privacidad aplicables (GDPR, CCPA, etc.).\",\"DFqasq\":[\"Al continuar, aceptas los <0>Términos de Servicio de \",[\"0\"],\"\"],\"wVSa+U\":\"Por día del mes\",\"0MnNgi\":\"Por día de la semana\",\"CetOZE\":\"Por tipo de entrada\",\"lFdbRS\":\"Omitir comisiones de aplicación\",\"AjVXBS\":\"Calendario\",\"alkXJ5\":\"Vista de calendario\",\"2VLZwd\":\"Botón de llamada a la acción\",\"rT2cV+\":\"Cámara\",\"7hYa9y\":\"Permiso de cámara denegado. <0>Solicitar permiso de nuevo, o autoriza el acceso a la cámara en los ajustes del navegador.\",\"D02dD9\":\"Campaña\",\"RRPA79\":\"No se puede registrar\",\"OcVwAd\":[\"Cancelar \",[\"count\"],\" fecha(s)\"],\"H4nE+E\":\"Cancelar todos los productos y devolverlos al grupo disponible\",\"Py78q9\":\"Cancelar fecha\",\"tOXAdc\":\"Cancelar anulará todos los asistentes asociados con este pedido y liberará los boletos de vuelta al grupo disponible.\",\"vev1Jl\":\"Cancelación\",\"Ha17hq\":[\"Se canceló \",[\"0\"],\" fecha(s)\"],\"01sEfm\":\"No se puede eliminar la configuración predeterminada del sistema\",\"VsM1HH\":\"Asignaciones de capacidad\",\"9bIMVF\":\"Gestión de capacidad\",\"H7K8og\":\"La capacidad debe ser 0 o mayor\",\"nzao08\":\"actualizaciones de capacidad\",\"4cp9NP\":\"Capacidad utilizada\",\"K7tIrx\":\"Categoría\",\"o+XJ9D\":\"Cambiar\",\"kJkjoB\":\"Cambiar duración\",\"J0KExZ\":\"Cambiar el límite de asistentes\",\"CIHJJf\":\"Cambiar configuración de lista de espera\",\"B5icLR\":[\"Se cambió la duración de \",[\"count\"],\" fecha(s)\"],\"Kb+0BT\":\"Cobros\",\"2tbLdK\":\"Caridad\",\"BPWGKn\":\"Registrar\",\"6uFFoY\":\"Anular\",\"FjAlwK\":[\"Mira este evento: \",[\"0\"]],\"v4fiSg\":\"Revisa tu correo\",\"51AsAN\":\"¡Revisa tu bandeja de entrada! Si hay entradas asociadas a este correo, recibirás un enlace para verlas.\",\"Y3FYXy\":\"Registro\",\"udRwQs\":\"Registro de entrada creado\",\"F4SRy3\":\"Registro de entrada eliminado\",\"as6XfO\":[\"Se deshizo el check-in de \",[\"0\"]],\"9s/wrQ\":\"Historial de check-in\",\"Wwztk4\":\"Lista de registro\",\"9gPPUY\":\"¡Lista de Check-In Creada!\",\"dwjiJt\":\"Información de lista\",\"7od0PV\":\"listas de registro\",\"f2vU9t\":\"Listas de registro\",\"XprdTn\":\"Navegación de check-in\",\"5tV1in\":\"Progreso de check-in\",\"SHJwyq\":\"Tasa de registro\",\"qCqdg6\":\"Estado de Check-In\",\"cKj6OE\":\"Resumen de registros\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Registrado\",\"DM4gBB\":\"Chino (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Elige otra acción\",\"fkb+y3\":\"Elige una ubicación guardada para aplicar.\",\"Zok1Gx\":\"Elige un organizador\",\"pkk46Q\":\"Elige un organizador\",\"Crr3pG\":\"Elegir calendario\",\"LAW8Vb\":\"Elija la configuración predeterminada para nuevos eventos. Esto se puede anular para eventos individuales.\",\"pjp2n5\":\"Elija quién paga la comisión de la plataforma. Esto no afecta las comisiones adicionales que haya configurado en su cuenta.\",\"xCJdfg\":\"Limpiar\",\"QyOWu9\":\"Borrar ubicación — usar la predeterminada del evento\",\"V8yTm6\":\"Limpiar búsqueda\",\"kmnKnX\":\"Al borrar se elimina cualquier ubicación específica de la fecha. Las fechas afectadas usarán la ubicación predeterminada del evento.\",\"/o+aQX\":\"Haz clic para cancelar\",\"gD7WGV\":\"Haz clic para reabrir para nuevas ventas\",\"CySr+W\":\"Haga clic para ver las notas\",\"RG3szS\":\"cerrar\",\"RWw9Lg\":\"Cerrar modal\",\"XwdMMg\":\"El código solo puede contener letras, números, guiones y guiones bajos\",\"+yMJb7\":\"El código es obligatorio\",\"m9SD3V\":\"El código debe tener al menos 3 caracteres\",\"V1krgP\":\"El código no debe tener más de 20 caracteres\",\"psqIm5\":\"Colabora con tu equipo para crear eventos increíbles juntos.\",\"4bUH9i\":\"Recopile los detalles del asistente para cada entrada comprada.\",\"TkfG8v\":\"Recopilar datos por pedido\",\"96ryID\":\"Recopilar datos por boleto\",\"FpsvqB\":\"Modo de Color\",\"jEu4bB\":\"Columnas\",\"CWk59I\":\"Comedia\",\"rPA+Gc\":\"Preferencias de comunicación\",\"zFT5rr\":\"completado\",\"bUQMpb\":\"Completar la configuración de Stripe\",\"744BMm\":\"Completa tu pedido para asegurar tus entradas. Esta oferta tiene un tiempo limitado, así que no esperes demasiado.\",\"5YrKW7\":\"Completa tu pago para asegurar tus entradas.\",\"xGU92i\":\"Completa tu perfil para unirte al equipo.\",\"QOhkyl\":\"Redactar\",\"ih35UP\":\"Centro de conferencias\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuración asignada\",\"X1zdE7\":\"Configuración creada correctamente\",\"mLBUMQ\":\"Configuración eliminada correctamente\",\"UIENhw\":\"Los nombres de configuración son visibles para los usuarios finales. Las tarifas fijas se convertirán a la moneda del pedido al tipo de cambio actual.\",\"eeZdaB\":\"Configuración actualizada correctamente\",\"3cKoxx\":\"Configuraciones\",\"8v2LRU\":\"Configure los detalles del evento, ubicación, opciones de pago y notificaciones por correo electrónico.\",\"raw09+\":\"Configure cómo se recopilan los datos de los asistentes durante el proceso de pago\",\"FI60XC\":\"Configurar impuestos y comisiones\",\"av6ukY\":\"Configura qué productos están disponibles para esta sesión y opcionalmente ajusta los precios.\",\"NGXKG/\":\"Confirmar dirección de correo electrónico\",\"JRQitQ\":\"Confirmar nueva contraseña\",\"Auz0Mz\":\"Confirma tu correo electrónico para acceder a todas las funciones.\",\"7+grte\":\"¡Correo de confirmación enviado! Por favor, revisa tu bandeja de entrada.\",\"n/7+7Q\":\"Confirmación enviada a\",\"x3wVFc\":\"¡Felicidades! Tu evento ahora es visible para el público.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Conecta Stripe para habilitar la edición de plantillas de correo\",\"LmvZ+E\":\"Conecte Stripe para habilitar mensajería\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contacto\",\"LOFgda\":[\"Contacto \",[\"0\"]],\"41BQ3k\":\"Correo de contacto\",\"KcXRN+\":\"Email de contacto para soporte\",\"m8WD6t\":\"Continuar configuración\",\"0GwUT4\":\"Continuar al pago\",\"sBV87H\":\"Continuar a la creación del evento\",\"nKtyYu\":\"Continuar al siguiente paso\",\"F3/nus\":\"Continuar al pago\",\"p2FRHj\":\"Controle cómo se manejan las comisiones de la plataforma para este evento\",\"NqfabH\":\"Controla quién entra en esta fecha\",\"fmYxZx\":\"Controla quién entra y cuándo\",\"1JnTgU\":\"Copiado de arriba\",\"FxVG/l\":\"Copiado al portapapeles\",\"PiH3UR\":\"¡Copiado!\",\"4i7smN\":\"Copiar ID de cuenta\",\"uUPbPg\":\"Copiar enlace de afiliado\",\"iVm46+\":\"Copiar código\",\"cF2ICc\":\"Copiar enlace del cliente\",\"+2ZJ7N\":\"Copiar datos al primer asistente\",\"ZN1WLO\":\"Copiar Correo\",\"y1eoq1\":\"Copiar enlace\",\"tUGbi8\":\"Copiar mis datos a:\",\"y22tv0\":\"Copia este enlace para compartirlo en cualquier parte\",\"/4gGIX\":\"Copiar al portapapeles\",\"e0f4yB\":\"No se pudo eliminar la ubicación\",\"vkiDx2\":\"No se pudo preparar la actualización masiva.\",\"KOavaU\":\"No se pudieron obtener los detalles de la dirección\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"No se pudo guardar la fecha\",\"eeLExK\":\"No se pudo guardar la ubicación\",\"P0rbCt\":\"Imagen de portada\",\"60u+dQ\":\"La imagen de portada se mostrará en la parte superior de la página del evento\",\"2NLjA6\":\"La imagen de portada se mostrará en la parte superior de tu página de organizador\",\"GkrqoY\":\"Cubre todas las entradas\",\"zg4oSu\":[\"Crear plantilla \",[\"0\"]],\"RKKhnW\":\"Cree un widget personalizado para vender boletos en su sitio.\",\"6sk7PP\":\"Crear un número fijo\",\"PhioFp\":\"Crea una nueva lista de registro para una sesión activa, o contacta al organizador si crees que esto es un error.\",\"yIRev4\":\"Crear una contraseña\",\"j7xZ7J\":\"Crea organizadores adicionales para gestionar marcas, departamentos o series de eventos separados bajo una cuenta. Cada organizador tiene sus propios eventos, configuraciones y página pública.\",\"xfKgwv\":\"Crear afiliado\",\"tudG8q\":\"Cree y configure boletos y mercancía para la venta.\",\"YAl9Hg\":\"Crear configuración\",\"BTne9e\":\"Crear plantillas de correo personalizadas para este evento que anulen los predeterminados del organizador\",\"YIDzi/\":\"Crear plantilla personalizada\",\"tsGqx5\":\"Crear fecha\",\"Nc3l/D\":\"Cree descuentos, códigos de acceso para boletos ocultos y ofertas especiales.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Crear para esta fecha\",\"eWEV9G\":\"Crear nueva contraseña\",\"wl2iai\":\"Crear programación\",\"8AiKIu\":\"Crear entrada o producto\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Cree enlaces rastreables para recompensar a los socios que promocionan su evento.\",\"dkAPxi\":\"Crear Webhook\",\"5slqwZ\":\"Crea tu evento\",\"JQNMrj\":\"Crea tu primer evento\",\"ZCSSd+\":\"Crea tu propio evento\",\"67NsZP\":\"Creando evento...\",\"H34qcM\":\"Creando organizador...\",\"1YMS+X\":\"Creando tu evento, por favor espera\",\"yiy8Jt\":\"Creando tu perfil de organizador, por favor espera\",\"lfLHNz\":\"La etiqueta CTA es requerida\",\"0xLR6W\":\"Actualmente asignado\",\"iTvh6I\":\"Actualmente disponible para compra\",\"A42Dqn\":\"Marca personalizada\",\"Guo0lU\":\"Fecha y hora personalizada\",\"mimF6c\":\"Mensaje personalizado después de la compra\",\"WDMdn8\":\"Preguntas personalizadas\",\"O6mra8\":\"Preguntas personalizadas\",\"axv/Mi\":\"Plantilla personalizada\",\"2YeVGY\":\"Enlace del cliente copiado al portapapeles\",\"QMHSMS\":\"El cliente recibirá un correo electrónico confirmando el reembolso\",\"L/Qc+w\":\"Dirección de email del cliente\",\"wpfWhJ\":\"Nombre del cliente\",\"GIoqtA\":\"Apellido del cliente\",\"NihQNk\":\"Clientes\",\"7gsjkI\":\"Personalice los correos enviados a sus clientes usando plantillas Liquid. Estas plantillas se usarán como predeterminadas para todos los eventos en su organización.\",\"xJaTUK\":\"Personalice el diseño, colores y marca de la página de inicio de su evento.\",\"MXZfGN\":\"Personalice las preguntas durante el proceso de pago para recopilar información importante de sus asistentes.\",\"iX6SLo\":\"Personaliza el texto que aparece en el botón de continuar\",\"pxNIxa\":\"Personalice su plantilla de correo usando plantillas Liquid\",\"3trPKm\":\"Personaliza la apariencia de tu página de organizador\",\"U0sC6H\":\"Diario\",\"/gWrVZ\":\"Ingresos diarios, impuestos, tarifas y reembolsos en todos los eventos\",\"zgCHnE\":\"Informe de ventas diarias\",\"nHm0AI\":\"Desglose de ventas diarias, impuestos y tarifas\",\"1aPnDT\":\"Danza\",\"pvnfJD\":\"Oscuro\",\"MaB9wW\":\"Cancelación de fecha\",\"e6cAxJ\":\"Fecha cancelada\",\"81jBnC\":\"Fecha cancelada correctamente\",\"a/C/6R\":\"Fecha creada correctamente\",\"IW7Q+u\":\"Fecha eliminada\",\"rngCAz\":\"Fecha eliminada correctamente\",\"lnYE59\":\"Fecha del evento\",\"gnBreG\":\"Fecha en que se realizó el pedido\",\"vHbfoQ\":\"Fecha reactivada\",\"hvah+S\":\"Fecha reabierta para nuevas ventas\",\"Ez0YsD\":\"Fecha actualizada correctamente\",\"VTsZuy\":\"Las fechas y horarios se gestionan en la\",\"/ITcnz\":\"día\",\"H7OUPr\":\"Día\",\"JtHrX9\":\"Día del mes\",\"J/Upwb\":\"días\",\"vDVA2I\":\"Días del mes\",\"rDLvlL\":\"Días de la semana\",\"r6zgGo\":\"Diciembre\",\"jbq7j2\":\"Rechazar\",\"ovBPCi\":\"Predeterminado\",\"JtI4vj\":\"Recopilación predeterminada de información del asistente\",\"ULjv90\":\"Capacidad predeterminada por fecha\",\"3R/Tu2\":\"Gestión predeterminada de comisiones\",\"1bZAZA\":\"Se usará la plantilla predeterminada\",\"HNlEFZ\":\"eliminar\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"¿Eliminar \",[\"count\"],\" fecha(s) seleccionada(s)? Se omitirán las fechas con pedidos. Esto no se puede deshacer.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Eliminar todo\",\"6EkaOO\":\"Eliminar fecha\",\"io0G93\":\"Eliminar evento\",\"+jw/c1\":\"Eliminar imagen\",\"hdyeZ0\":\"Eliminar trabajo\",\"xxjZeP\":\"Eliminar ubicación\",\"sY3tIw\":\"Eliminar organizador\",\"UBv8UK\":\"Eliminar permanentemente\",\"dPyJ15\":\"Eliminar plantilla\",\"mxsm1o\":\"¿Eliminar esta pregunta? Esto no se puede deshacer.\",\"snMaH4\":\"Eliminar webhook\",\"LIZZLY\":[\"Se eliminó \",[\"0\"],\" fecha(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desmarcar todo\",\"NvuEhl\":\"Elementos de Diseño\",\"H8kMHT\":\"¿No recibiste el código?\",\"G8KNgd\":\"Ubicación diferente\",\"E/QGRL\":\"Deshabilitado\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Descartar este mensaje\",\"BREO0S\":\"Muestra una casilla que permite a los clientes optar por recibir comunicaciones de marketing de este organizador de eventos.\",\"pfa8F0\":\"Nombre para mostrar\",\"Kdpf90\":\"¡No lo olvides!\",\"352VU2\":\"¿No tienes una cuenta? <0>Regístrate\",\"AXXqG+\":\"Donación\",\"DPfwMq\":\"Listo\",\"JoPiZ2\":\"Instrucciones para el personal\",\"2+O9st\":\"Descargue informes de ventas, asistentes y financieros para todos los pedidos completados.\",\"eneWvv\":\"Borrador\",\"Ts8hhq\":\"Debido al alto riesgo de spam, debes conectar una cuenta de Stripe antes de poder modificar plantillas de correo. Esto es para garantizar que todos los organizadores de eventos estén verificados y sean responsables.\",\"TnzbL+\":\"Debido al alto riesgo de spam, debes conectar una cuenta de Stripe antes de poder enviar mensajes a los asistentes.\\nEsto es para garantizar que todos los organizadores de eventos estén verificados y sean responsables.\",\"euc6Ns\":\"Duplicar\",\"YueC+F\":\"Duplicar fecha\",\"KRmTkx\":\"Duplicar producto\",\"Jd3ymG\":\"La duración debe ser de al menos 1 minuto.\",\"KIjvtr\":\"Holandés\",\"22xieU\":\"ej. 180 (3 horas)\",\"/zajIE\":\"p. ej. Sesión matutina\",\"SPKbfM\":\"p. ej., Conseguir entradas, Registrarse ahora\",\"fc7wGW\":\"p. ej., Actualización importante sobre tus entradas\",\"54MPqC\":\"p. ej., Estándar, Premium, Empresarial\",\"3RQ81z\":\"Cada persona recibirá un correo electrónico con un lugar reservado para completar su compra.\",\"5oD9f/\":\"Antes\",\"LTzmgK\":[\"Editar plantilla \",[\"0\"]],\"v4+lcZ\":\"Editar afiliado\",\"2iZEz7\":\"Editar respuesta\",\"t2bbp8\":\"Editar asistente\",\"etaWtB\":\"Editar detalles del asistente\",\"+guao5\":\"Editar configuración\",\"1Mp/A4\":\"Editar fecha\",\"m0ZqOT\":\"Editar ubicación\",\"8oivFT\":\"Editar ubicación\",\"vRWOrM\":\"Editar detalles del pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Editado\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educación\",\"iiWXDL\":\"Fallos de elegibilidad\",\"zPiC+q\":\"Listas de Check-In Elegibles\",\"SiVstt\":\"Correo y mensajes programados\",\"V2sk3H\":\"Correo y Plantillas\",\"hbwCKE\":\"Dirección de correo copiada al portapapeles\",\"dSyJj6\":\"Las direcciones de correo electrónico no coinciden\",\"elW7Tn\":\"Cuerpo del correo\",\"ZsZeV2\":\"El correo es obligatorio\",\"Be4gD+\":\"Vista previa del correo\",\"6IwNUc\":\"Plantillas de correo\",\"H/UMUG\":\"Verificación de correo requerida\",\"L86zy2\":\"¡Correo verificado exitosamente!\",\"FSN4TS\":\"Widget integrado\",\"z9NkYY\":\"Widget incrustable\",\"Qj0GKe\":\"Habilitar autoservicio para asistentes\",\"hEtQsg\":\"Habilitar autoservicio para asistentes por defecto\",\"Upeg/u\":\"Habilitar esta plantilla para enviar correos\",\"7dSOhU\":\"Habilitar lista de espera\",\"RxzN1M\":\"Habilitado\",\"xDr/ct\":\"Fin\",\"sGjBEq\":\"Fecha y hora de finalización (opcional)\",\"PKXt9R\":\"La fecha de finalización debe ser posterior a la fecha de inicio\",\"UmzbPa\":\"Fecha de fin de la sesión\",\"ZayGC7\":\"Finalizar en una fecha\",\"48Y16Q\":\"Hora de finalización (opcional)\",\"jpNdOC\":\"Hora de fin de la sesión\",\"TbaYrr\":[\"Finalizó \",[\"0\"]],\"CFgwiw\":[\"Termina \",[\"0\"]],\"SqOIQU\":\"Introduce un valor de capacidad o elige ilimitado.\",\"h37gRz\":\"Introduce una etiqueta o elige eliminarla.\",\"7YZofi\":\"Ingrese un asunto y cuerpo para ver la vista previa\",\"khyScF\":\"Introduce un intervalo de tiempo para desplazar.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Ingresa el correo del afiliado (opcional)\",\"ARkzso\":\"Ingresa el nombre del afiliado\",\"ej4L8b\":\"Introduce la capacidad\",\"6KnyG0\":\"Ingrese correo electrónico\",\"INDKM9\":\"Ingrese el asunto del correo...\",\"xUgUTh\":\"Ingrese nombre\",\"9/1YKL\":\"Ingrese apellido\",\"VpwcSk\":\"Ingresa nueva contraseña\",\"kWg31j\":\"Ingresa un código de afiliado único\",\"C3nD/1\":\"Introduce tu correo electrónico\",\"VmXiz4\":\"Ingresa tu correo electrónico y te enviaremos instrucciones para restablecer tu contraseña.\",\"n9V+ps\":\"Introduce tu nombre\",\"IdULhL\":\"Ingresa tu número de IVA incluyendo el código de país, sin espacios (p. ej., ES12345678A, DE123456789)\",\"o21Y+P\":\"entradas\",\"X88/6w\":\"Las entradas aparecerán aquí cuando los clientes se unan a la lista de espera de productos agotados.\",\"LslKhj\":\"Error al cargar los registros\",\"VCNHvW\":\"Evento archivado\",\"ZD0XSb\":\"Evento archivado correctamente\",\"WgD6rb\":\"Categoría del evento\",\"b46pt5\":\"Imagen de portada del evento\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evento creado\",\"1Hzev4\":\"Plantilla personalizada del evento\",\"7u9/DO\":\"Evento eliminado correctamente\",\"imgKgl\":\"Descripción del evento\",\"kJDmsI\":\"Detalles del evento\",\"m/N7Zq\":\"Dirección Completa del Evento\",\"Nl1ZtM\":\"Ubicación del evento\",\"PYs3rP\":\"Nombre del evento\",\"HhwcTQ\":\"Nombre del evento\",\"WZZzB6\":\"El nombre del evento es obligatorio\",\"Wd5CDM\":\"El nombre del evento debe tener menos de 150 caracteres\",\"4JzCvP\":\"Evento no disponible\",\"Gh9Oqb\":\"Nombre del organizador del evento\",\"mImacG\":\"Página del evento\",\"Hk9Ki/\":\"Evento restaurado correctamente\",\"JyD0LH\":\"Configuración del evento\",\"cOePZk\":\"Hora del evento\",\"e8WNln\":\"Zona horaria del evento\",\"GeqWgj\":\"Zona Horaria del Evento\",\"XVLu2v\":\"Título del evento\",\"OfmsI9\":\"Evento demasiado nuevo\",\"4SILkp\":\"Totales del evento\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento actualizado\",\"4K2OjV\":\"Lugar del Evento\",\"19j6uh\":\"Rendimiento de eventos\",\"PC3/fk\":\"Eventos que Comienzan en las Próximas 24 Horas\",\"nwiZdc\":[\"Cada \",[\"0\"]],\"2LJU4o\":[\"Cada \",[\"0\"],\" días\"],\"yLiYx+\":[\"Cada \",[\"0\"],\" meses\"],\"nn9ice\":[\"Cada \",[\"0\"],\" semanas\"],\"Cdr8f9\":[\"Cada \",[\"0\"],\" semanas en \",[\"1\"]],\"GVEHRk\":[\"Cada \",[\"0\"],\" años\"],\"fTFfOK\":\"Cada plantilla de correo debe incluir un botón de llamada a la acción que enlace a la página apropiada\",\"BVinvJ\":\"Ejemplos: \\\"¿Cómo nos conociste?\\\", \\\"Nombre de empresa para factura\\\"\",\"2hGPQG\":\"Ejemplos: \\\"Talla de camiseta\\\", \\\"Preferencia de comida\\\", \\\"Cargo laboral\\\"\",\"qNuTh3\":\"Excepción\",\"M1RnFv\":\"Expirado\",\"kF8HQ7\":\"Exportar respuestas\",\"2KAI4N\":\"Exportar CSV\",\"JKfSAv\":\"Error en la exportación. Por favor, inténtelo de nuevo.\",\"SVOEsu\":\"Exportación iniciada. Preparando archivo...\",\"wuyaZh\":\"Exportación exitosa\",\"9bpUSo\":\"Exportando afiliados\",\"jtrqH9\":\"Exportando asistentes\",\"R4Oqr8\":\"Exportación completada. Descargando archivo...\",\"UlAK8E\":\"Exportando pedidos\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Fallido\",\"8uOlgz\":\"Falló el\",\"tKcbYd\":\"Trabajos fallidos\",\"SsI9v/\":\"No se pudo abandonar el pedido. Por favor, inténtalo de nuevo.\",\"LdPKPR\":\"No se pudo asignar la configuración\",\"PO0cfn\":\"No se pudo cancelar la fecha\",\"YUX+f+\":\"No se pudieron cancelar las fechas\",\"SIHgVQ\":\"No se pudo cancelar el mensaje\",\"cEFg3R\":\"Error al crear el afiliado\",\"dVgNF1\":\"Error al crear configuración\",\"fAoRRJ\":\"No se pudo crear la programación\",\"U66oUa\":\"Error al crear la plantilla\",\"aFk48v\":\"Error al eliminar configuración\",\"n1CYMH\":\"No se pudo eliminar la fecha\",\"KXv+Qn\":\"No se pudo eliminar la fecha. Puede tener pedidos existentes.\",\"JJ0uRo\":\"No se pudieron eliminar las fechas\",\"rgoBnv\":\"Error al eliminar el evento\",\"Zw6LWb\":\"Error al eliminar el trabajo\",\"tq0abZ\":\"Error al eliminar los trabajos\",\"2mkc3c\":\"Error al eliminar el organizador\",\"vKMKnu\":\"Error al eliminar la pregunta\",\"xFj7Yj\":\"Error al eliminar la plantilla\",\"jo3Gm6\":\"Error al exportar los afiliados\",\"Jjw03p\":\"Error al exportar asistentes\",\"ZPwFnN\":\"Error al exportar pedidos\",\"zGE3CH\":\"Error al exportar el informe. Por favor, inténtelo de nuevo.\",\"lS9/aZ\":\"No se pudieron cargar los destinatarios\",\"X4o0MX\":\"Error al cargar el Webhook\",\"ETcU7q\":\"Error al ofrecer plaza\",\"5670b9\":\"Error al ofrecer entradas\",\"e5KIbI\":\"No se pudo reactivar la fecha\",\"7zyx8a\":\"No se pudo eliminar de la lista de espera\",\"A/P7PX\":\"No se pudo eliminar la anulación\",\"ogWc1z\":\"Error al reabrir la fecha\",\"0+iwE5\":\"Error al reordenar las preguntas\",\"EJPAcd\":\"No se pudo reenviar la confirmación del pedido\",\"DjSbj3\":\"No se pudo reenviar la entrada\",\"YQ3QSS\":\"Error al reenviar el código de verificación\",\"wDioLj\":\"Error al reintentar el trabajo\",\"DKYTWG\":\"Error al reintentar los trabajos\",\"WRREqF\":\"No se pudo guardar la anulación\",\"sj/eZA\":\"No se pudo guardar la anulación de precio\",\"780n8A\":\"No se pudo guardar la configuración del producto\",\"zTkTF3\":\"Error al guardar la plantilla\",\"l6acRV\":\"Error al guardar la configuración del IVA. Por favor, inténtelo de nuevo.\",\"T6B2gk\":\"Error al enviar el mensaje. Por favor, intenta de nuevo.\",\"lKh069\":\"No se pudo iniciar la exportación\",\"t/KVOk\":\"Error al iniciar la suplantación. Por favor, inténtelo de nuevo.\",\"QXgjH0\":\"Error al detener la suplantación. Por favor, inténtelo de nuevo.\",\"i0QKrm\":\"Error al actualizar el afiliado\",\"NNc33d\":\"No se pudo actualizar la respuesta.\",\"E9jY+o\":\"No se pudo actualizar el asistente\",\"uQynyf\":\"Error al actualizar configuración\",\"i2PFQJ\":\"Error al actualizar el estado del evento\",\"EhlbcI\":\"Error al actualizar el nivel de mensajería\",\"rpGMzC\":\"No se pudo actualizar el pedido\",\"T2aCOV\":\"Error al actualizar el estado del organizador\",\"Eeo/Gy\":\"Error al actualizar la configuración\",\"kqA9lY\":\"No se pudo actualizar la configuración de IVA\",\"7/9RFs\":\"No se pudo subir la imagen.\",\"nkNfWu\":\"No se pudo subir la imagen. Por favor, intenta de nuevo.\",\"rxy0tG\":\"Error al verificar el correo\",\"QRUpCk\":\"Familia\",\"5LO38w\":\"Pagos rápidos a tu banco\",\"4lgLew\":\"Febrero\",\"9bHCo2\":\"Moneda de la tarifa\",\"/sV91a\":\"Gestión de comisiones\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Comisiones omitidas\",\"cf35MA\":\"Festival\",\"pAey+4\":\"El archivo es demasiado grande. El tamaño máximo es de 5 MB.\",\"VejKUM\":\"Primero completa tus datos arriba\",\"/n6q8B\":\"Cine\",\"L1qbUx\":\"Filtrar asistentes\",\"8OvVZZ\":\"Filtrar Asistentes\",\"N/H3++\":\"Filtrar por fecha\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Termina de configurar Stripe\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"Primero\",\"1vBhpG\":\"Primer asistente\",\"4pwejF\":\"El nombre es obligatorio\",\"3lkYdQ\":\"Comisión fija\",\"6bBh3/\":\"Tarifa fija\",\"zWqUyJ\":\"Tarifa fija cobrada por transacción\",\"LWL3Bs\":\"La tarifa fija debe ser 0 o mayor\",\"0RI8m4\":\"Flash apagado\",\"q0923e\":\"Flash encendido\",\"lWxAUo\":\"Comida y bebida\",\"nFm+5u\":\"Texto del Pie\",\"a8nooQ\":\"Cuarto\",\"mob/am\":\"Vi\",\"wtuVU4\":\"Frecuencia\",\"xVhQZV\":\"Vie\",\"39y5bn\":\"Viernes\",\"f5UbZ0\":\"Propiedad total de los datos\",\"MY2SVM\":\"Reembolso completo\",\"UsIfa8\":\"Dirección completa resuelta\",\"PGQLdy\":\"futuro\",\"8N/j1s\":\"Solo fechas futuras\",\"yRx/6K\":\"Las fechas futuras se copiarán con la capacidad reiniciada a cero\",\"T02gNN\":\"Admisión General\",\"3ep0Gx\":\"Información general sobre tu organizador\",\"ziAjHi\":\"Generar\",\"exy8uo\":\"Generar código\",\"4CETZY\":\"Cómo llegar\",\"pjkEcB\":\"Cobra\",\"lGYzP6\":\"Cobra con Stripe\",\"ZDIydz\":\"Comenzar\",\"u6FPxT\":\"Obtener Entradas\",\"8KDgYV\":\"Prepare su evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Volver\",\"oNL5vN\":\"Ir a la página del evento\",\"gHSuV/\":\"Ir a la página de inicio\",\"8+Cj55\":\"Ir a la programación\",\"6nDzTl\":\"Buena legibilidad\",\"76gPWk\":\"Entendido\",\"aGWZUr\":\"Ingresos brutos\",\"n8IUs7\":\"Ingresos brutos\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestión de invitados\",\"NUsTc4\":\"Sucede ahora\",\"kTSQej\":[\"Hola \",[\"0\"],\", gestiona tu plataforma desde aquí.\"],\"dORAcs\":\"Aquí están todas las entradas asociadas a tu correo electrónico.\",\"g+2103\":\"Aquí está tu enlace de afiliado\",\"bVsnqU\":\"Hola,\",\"/iE8xx\":\"Tarifa Hi.Events\",\"zppscQ\":\"Tarifas de plataforma de Hi.Events y desglose de IVA por transacción\",\"D+zLDD\":\"Oculto\",\"DRErHC\":\"Oculto para los asistentes - solo visible para organizadores\",\"NNnsM0\":\"Ocultar opciones avanzadas\",\"P+5Pbo\":\"Ocultar respuestas\",\"VMlRqi\":\"Ocultar detalles\",\"FmogyU\":\"Ocultar opciones\",\"gtEbeW\":\"Destacar\",\"NF8sdv\":\"Mensaje destacado\",\"MXSqmS\":\"Destacar este producto\",\"7ER2sc\":\"Destacado\",\"sq7vjE\":\"Los productos destacados tendrán un color de fondo diferente para resaltar en la página del evento.\",\"1+WSY1\":\"Aficiones\",\"yY8wAv\":\"Horas\",\"sy9anN\":\"Cuánto tiempo tiene un cliente para completar su compra después de recibir una oferta. Dejar vacío para sin límite de tiempo.\",\"n2ilNh\":\"¿Cuánto dura la programación?\",\"DMr2XN\":\"¿Con qué frecuencia?\",\"AVpmAa\":\"Cómo pagar fuera de línea\",\"cceMns\":\"Cómo se aplica el IVA a las comisiones de la plataforma que te cobramos.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Húngaro\",\"8Wgd41\":\"Reconozco mis responsabilidades como responsable del tratamiento de datos\",\"O8m7VA\":\"Acepto recibir notificaciones por correo electrónico relacionadas con este evento\",\"YLgdk5\":\"Confirmo que este es un mensaje transaccional relacionado con este evento\",\"4/kP5a\":\"Si no se abrió una nueva pestaña automáticamente, haz clic en el botón de abajo para continuar al pago.\",\"W/eN+G\":\"Si se deja en blanco, la dirección se usará para generar un enlace de Google Maps\",\"iIEaNB\":\"Si tienes una cuenta con nosotros, recibirás un correo electrónico con instrucciones sobre cómo restablecer tu contraseña.\",\"an5hVd\":\"Imágenes\",\"tSVr6t\":\"Suplantar\",\"TWXU0c\":\"Suplantar usuario\",\"5LAZwq\":\"Suplantación iniciada\",\"IMwcdR\":\"Suplantación detenida\",\"0I0Hac\":\"Aviso importante\",\"yD3avI\":\"Importante: Cambiar su dirección de correo electrónico actualizará el enlace para acceder a este pedido. Será redirigido al nuevo enlace del pedido después de guardar.\",\"jT142F\":[\"En \",[\"diffHours\"],\" horas\"],\"OoSyqO\":[\"En \",[\"diffMinutes\"],\" minutos\"],\"PdMhEx\":[\"en los últimos \",[\"0\"],\" min\"],\"u7r0G5\":\"Presencial — establecer un lugar\",\"Ip0hl5\":\"in_person, online, unset, o mixed\",\"F1Xp97\":\"Asistentes individuales\",\"85e6zs\":\"Insertar token Liquid\",\"38KFY0\":\"Insertar variable\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Pagos instantáneos por Stripe\",\"nbfdhU\":\"Integraciones\",\"I8eJ6/\":\"Notas internas en la entrada del asistente\",\"B2Tpo0\":\"Correo inválido\",\"5tT0+u\":\"Formato de correo inválido\",\"f9WRpE\":\"Tipo de archivo inválido. Por favor, sube una imagen.\",\"tnL+GP\":\"Sintaxis Liquid inválida. Por favor corrígela e inténtalo de nuevo.\",\"N9JsFT\":\"Formato de número de IVA inválido\",\"g+lLS9\":\"Invitar a un miembro del equipo\",\"1z26sk\":\"Invitar miembro del equipo\",\"KR0679\":\"Invitar miembros del equipo\",\"aH6ZIb\":\"Invita a tu equipo\",\"IuMGvq\":\"Factura\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"artículo(s)\",\"BzfzPK\":\"Artículos\",\"rjyWPb\":\"Enero\",\"KmWyx0\":\"Trabajo\",\"o5r6b2\":\"Trabajo eliminado\",\"cd0jIM\":\"Detalles del trabajo\",\"ruJO57\":\"Nombre del trabajo\",\"YZi+Hu\":\"Trabajo en cola para reintentar\",\"nCywLA\":\"Únete desde cualquier lugar\",\"SNzppu\":\"Unirse a la lista de espera\",\"dLouFI\":[\"Únete a la lista de espera de \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrito\",\"u4ex5r\":\"Julio\",\"zeEQd/\":\"Junio\",\"MxjCqk\":\"¿Solo buscas tus entradas?\",\"xOTzt5\":\"justo ahora\",\"0RihU9\":\"Recién terminado\",\"lB2hSG\":[\"Mantenerme informado sobre noticias y eventos de \",[\"0\"]],\"ioFA9i\":\"Quédate con las ganancias.\",\"4Sffp7\":\"Etiqueta de la sesión\",\"o66QSP\":\"actualizaciones de etiquetas\",\"RtKKbA\":\"Último\",\"DruLRc\":\"Últimos 14 días\",\"ve9JTU\":\"El apellido es obligatorio\",\"h0Q9Iw\":\"Última respuesta\",\"gw3Ur5\":\"Última activación\",\"FIq1Ba\":\"Después\",\"xvnLMP\":\"Últimos check-ins\",\"pzAivY\":\"Latitud de la ubicación resuelta\",\"N5TErv\":\"Deja vacío para ilimitado\",\"L/hDDD\":\"Deja vacío para aplicar esta lista de registro a todas las sesiones\",\"9Pf3wk\":\"Déjalo activado para cubrir todas las entradas del evento. Desactívalo para elegir entradas específicas.\",\"Hq2BzX\":\"Avísales del cambio\",\"+uexiy\":\"Avísales de los cambios\",\"exYcTF\":\"Biblioteca\",\"1njn7W\":\"Claro\",\"1qY5Ue\":\"Enlace caducado o inválido\",\"+zSD/o\":\"Enlace a la página principal del evento\",\"psosdY\":\"Enlace a detalles del pedido\",\"6JzK4N\":\"Enlace al boleto\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Enlaces permitidos\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Vista de lista\",\"dF6vP6\":\"En vivo\",\"fpMs2Z\":\"EN VIVO\",\"D9zTjx\":\"Eventos en Vivo\",\"C33p4q\":\"Fechas cargadas\",\"WdmJIX\":\"Cargando vista previa...\",\"IoDI2o\":\"Cargando tokens...\",\"G3Ge9Z\":\"Cargando registros de webhook...\",\"NFxlHW\":\"Cargando webhooks\",\"E0DoRM\":\"Ubicación eliminada\",\"NtLHT3\":\"Dirección formateada de la ubicación\",\"h4vxDc\":\"Latitud de la ubicación\",\"f2TMhR\":\"Longitud de la ubicación\",\"lnCo2f\":\"Modo de ubicación\",\"8pmGFk\":\"Nombre de la ubicación\",\"7w8lJU\":\"Ubicación guardada\",\"YsRXDD\":\"Ubicación actualizada\",\"A/kIva\":\"actualizaciones de ubicación\",\"VppBoU\":\"Ubicaciones\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo y portada\",\"gddQe0\":\"Logo e imagen de portada para tu organizador\",\"TBEnp1\":\"El logo se mostrará en el encabezado\",\"Jzu30R\":\"El logo se mostrará en el ticket\",\"zKTMTg\":\"Longitud de la ubicación resuelta\",\"PSRm6/\":\"Buscar mis entradas\",\"yJFu/X\":\"Oficina principal\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Gestionar \",[\"0\"]],\"wZJfA8\":\"Gestiona fechas y horarios de tu evento recurrente\",\"RlzPUE\":\"Gestionar en Stripe\",\"6NXJRK\":\"Gestionar programación\",\"zXuaxY\":\"Gestiona la lista de espera de tu evento, consulta estadísticas y ofrece entradas a los asistentes.\",\"BWTzAb\":\"Manual\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"Marzo\",\"pqRBOz\":\"Marcar como validado (anulación de administrador)\",\"2L3vle\":\"Máx. mensajes / 24h\",\"Qp4HWD\":\"Máx. destinatarios / mensaje\",\"3JzsDb\":\"Mayo\",\"agPptk\":\"Medio\",\"xDAtGP\":\"Mensaje\",\"bECJqy\":\"Mensaje aprobado exitosamente\",\"1jRD0v\":\"Enviar mensajes a los asistentes con entradas específicas\",\"uQLXbS\":\"Mensaje cancelado\",\"48rf3i\":\"El mensaje no puede exceder 5000 caracteres\",\"ZPj0Q8\":\"Detalles del mensaje\",\"Vjat/X\":\"El mensaje es obligatorio\",\"0/yJtP\":\"Enviar mensajes a los propietarios de pedidos con productos específicos\",\"saG4At\":\"Mensaje programado\",\"mFdA+i\":\"Nivel de mensajería\",\"v7xKtM\":\"Nivel de mensajería actualizado exitosamente\",\"H9HlDe\":\"minutos\",\"agRWc1\":\"Minutos\",\"YYzBv9\":\"Lu\",\"zz/Wd/\":\"Modo\",\"fpMgHS\":\"Lun\",\"hty0d5\":\"Lunes\",\"JbIgPz\":\"Los valores monetarios son totales aproximados en todas las monedas\",\"qvF+MT\":\"Monitorear y gestionar trabajos de fondo fallidos\",\"kY2ll9\":\"mes\",\"HajiZl\":\"Mes\",\"+8Nek/\":\"Mensual\",\"1LkxnU\":\"Patrón mensual\",\"6jefe3\":\"meses\",\"f8jrkd\":\"más\",\"JcD7qf\":\"Más acciones\",\"w36OkR\":\"Eventos más vistos (Últimos 14 días)\",\"+Y/na7\":\"Mover todas las fechas antes o después\",\"3DIpY0\":\"Varias ubicaciones\",\"g9cQCP\":\"Varios tipos de entrada\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Mis Entradas\",\"8/brI5\":\"El nombre es obligatorio\",\"sFFArG\":\"El nombre debe tener menos de 255 caracteres\",\"sCV5Yc\":\"Nombre del evento\",\"xxU3NX\":\"Ingresos netos\",\"7I8LlL\":\"Nueva capacidad\",\"n1GRql\":\"Nueva etiqueta\",\"y0Fcpd\":\"Nueva ubicación\",\"ArHT/C\":\"Nuevos registros\",\"uK7xWf\":\"Nueva hora:\",\"veT5Br\":\"Próxima sesión\",\"WXtl5X\":[\"Próximo: \",[\"nextFormatted\"]],\"eWRECP\":\"Vida nocturna\",\"HSw5l3\":\"No - Soy un individuo o empresa no registrada para el IVA\",\"VHfLAW\":\"Sin cuentas\",\"+jIeoh\":\"No se encontraron cuentas\",\"074+X8\":\"No hay webhooks activos\",\"zxnup4\":\"No hay afiliados para mostrar\",\"Dwf4dR\":\"Aún no hay preguntas para asistentes\",\"th7rdT\":\"Sin asistentes que mostrar\",\"PKySlW\":\"Aún no hay asistentes para esta fecha.\",\"/UC6qk\":\"No se encontraron datos de atribución\",\"E2vYsO\":\"Stripe aún no ha informado de ninguna capacidad.\",\"amMkpL\":\"Sin capacidad\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"No hay listas de check-in disponibles para este evento.\",\"wG+knX\":\"Aún sin check-ins\",\"+dAKxg\":\"No se encontraron configuraciones\",\"LiLk8u\":\"No hay conexiones disponibles\",\"eb47T5\":\"No se encontraron datos para los filtros seleccionados. Intente ajustar el rango de fechas o la moneda.\",\"lFVUyx\":\"Sin lista de registro específica para la fecha\",\"I8mtzP\":\"No hay fechas disponibles este mes. Intenta navegar a otro mes.\",\"yDukIL\":\"No hay fechas que coincidan con los filtros actuales.\",\"B7phdj\":\"No hay fechas que coincidan con tus filtros\",\"/ZB4Um\":\"No hay fechas que coincidan con tu búsqueda\",\"gEdNe8\":\"Aún no hay fechas programadas\",\"27GYXJ\":\"No hay fechas programadas.\",\"pZNOT9\":\"Sin fecha de finalización\",\"dW40Uz\":\"No se encontraron eventos\",\"8pQ3NJ\":\"No hay eventos que comiencen en las próximas 24 horas\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Sin trabajos fallidos\",\"EpvBAp\":\"Sin factura\",\"XZkeaI\":\"No se encontraron registros\",\"nrSs2u\":\"No se encontraron mensajes\",\"Rj99yx\":\"No hay sesiones disponibles\",\"IFU1IG\":\"No hay sesiones en esta fecha\",\"OVFwlg\":\"Aún no hay preguntas de pedido\",\"EJ7bVz\":\"No se encontraron pedidos\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Aún no hay pedidos para esta fecha.\",\"wUv5xQ\":\"Sin actividad de organizador en los últimos 14 días\",\"vLd1tV\":\"No hay contexto de organizador disponible.\",\"B7w4KY\":\"No hay otros organizadores disponibles\",\"PChXMe\":\"Sin pedidos pagados\",\"6jYQGG\":\"No hay eventos pasados\",\"CHzaTD\":\"Sin eventos populares en los últimos 14 días\",\"zK/+ef\":\"No hay productos disponibles para seleccionar\",\"M1/lXs\":\"No hay productos configurados para este evento.\",\"kY7XDn\":\"Ningún producto tiene entradas en lista de espera\",\"wYiAtV\":\"Sin registros de cuentas recientes\",\"UW90md\":\"No se encontraron destinatarios\",\"QoAi8D\":\"Sin respuesta\",\"JeO7SI\":\"Sin respuesta\",\"EK/G11\":\"Aún no hay respuestas\",\"7J5OKy\":\"Aún no hay ubicaciones guardadas\",\"wpCjcf\":\"Aún no hay ubicaciones guardadas. Aparecerán aquí a medida que crees eventos con direcciones.\",\"mPdY6W\":\"Sin sugerencias\",\"3sRuiW\":\"No se encontraron entradas\",\"k2C0ZR\":\"No hay próximas fechas\",\"yM5c0q\":\"No hay próximos eventos\",\"qpC74J\":\"No se encontraron usuarios\",\"8wgkoi\":\"Sin eventos vistos en los últimos 14 días\",\"Arzxc1\":\"Sin entradas en la lista de espera\",\"n5vdm2\":\"Aún no se han registrado eventos de webhook para este punto de acceso. Los eventos aparecerán aquí una vez que se activen.\",\"4GhX3c\":\"No hay Webhooks\",\"4+am6b\":\"No, mantenerme aquí\",\"4JVMUi\":\"sin editar\",\"Itw24Q\":\"Sin registrar\",\"x5+Lcz\":\"No Registrado\",\"8n10sz\":\"No Elegible\",\"kLvU3F\":\"Notificar a los asistentes y detener las ventas\",\"t9QlBd\":\"Noviembre\",\"kAREMN\":\"Número de fechas a crear\",\"6u1B3O\":\"Sesión\",\"mmoE62\":\"Sesión cancelada\",\"UYWXdN\":\"Fecha de fin de la sesión\",\"k7dZT5\":\"Hora de fin de la sesión\",\"Opinaj\":\"Etiqueta de la sesión\",\"V9flmL\":\"Programación de sesiones\",\"NUTUUs\":\"Página de programación de sesiones\",\"AT8UKD\":\"Fecha de inicio de la sesión\",\"Um8bvD\":\"Hora de inicio de la sesión\",\"Kh3WO8\":\"Resumen de la sesión\",\"byXCTu\":\"Sesiones\",\"KATw3p\":\"Sesiones (solo futuras)\",\"85rTR2\":\"Las sesiones se pueden configurar después de la creación\",\"dzQfDY\":\"Octubre\",\"BwJKBw\":\"de\",\"9h7RDh\":\"Ofrecer\",\"EfK2O6\":\"Ofrecer lugar\",\"3sVRey\":\"Ofrecer entradas\",\"2O7Ybb\":\"Tiempo límite de la oferta\",\"1jUg5D\":\"Ofrecido\",\"l+/HS6\":[\"Las ofertas expiran después de \",[\"timeoutHours\"],\" horas.\"],\"lQgMLn\":\"Nombre de oficina o lugar\",\"6Aih4U\":\"Fuera de línea\",\"Z6gBGW\":\"Pago sin conexión\",\"nO3VbP\":[\"En venta \",[\"0\"]],\"oXOSPE\":\"En línea\",\"aqmy5k\":\"En línea — indica los datos de conexión\",\"LuZBbx\":\"Online y presencial\",\"IXuOqt\":\"Online y presencial — consulta la programación\",\"w3DG44\":\"Detalles de conexión online\",\"WjSpu5\":\"Evento en línea\",\"TP6jss\":\"Detalles de conexión del evento online\",\"NdOxqr\":\"Solo los administradores de la cuenta pueden eliminar o archivar eventos. Contacta a tu administrador de cuenta para obtener ayuda.\",\"rnoDMF\":\"Solo los administradores de la cuenta pueden eliminar o archivar organizadores. Contacta a tu administrador de cuenta para obtener ayuda.\",\"bU7oUm\":\"Enviar solo a pedidos con estos estados\",\"M2w1ni\":\"Solo visible con código promocional\",\"y8Bm7C\":\"Abrir registro\",\"RLz7P+\":\"Abrir sesión\",\"cDSdPb\":\"Apodo opcional mostrado en los selectores, p. ej. \\\"Sala de Conferencias HQ\\\"\",\"HXMJxH\":\"Texto opcional para avisos legales, información de contacto o notas de agradecimiento (solo una línea)\",\"L565X2\":\"opciones\",\"8m9emP\":\"o añade una sola fecha\",\"dSeVIm\":\"pedido\",\"c/TIyD\":\"Pedido y Entrada\",\"H5qWhm\":\"Pedido cancelado\",\"b6+Y+n\":\"Pedido completado\",\"x4MLWE\":\"Confirmación de pedido\",\"CsTTH0\":\"Confirmación del pedido reenviada correctamente\",\"ppuQR4\":\"Pedido creado\",\"0UZTSq\":\"Moneda del Pedido\",\"xtQzag\":\"Detalles del pedido\",\"HdmwrI\":\"Email del pedido\",\"bwBlJv\":\"Nombre del pedido\",\"vrSW9M\":\"El pedido ha sido cancelado y reembolsado. El propietario del pedido ha sido notificado.\",\"rzw+wS\":\"Titulares de pedidos\",\"oI/hGR\":\"ID de pedido\",\"Pc729f\":\"Pedido Esperando Pago Fuera de Línea\",\"F4NXOl\":\"Apellido del pedido\",\"RQCXz6\":\"Límites de Pedido\",\"SO9AEF\":\"Límites de pedido establecidos\",\"5RDEEn\":\"Idioma del Pedido\",\"vu6Arl\":\"Pedido marcado como pagado\",\"sLbJQz\":\"Pedido no encontrado\",\"kvYpYu\":\"Pedido no encontrado\",\"i8VBuv\":\"Número de pedido\",\"eJ8SvM\":\"Número de pedido, fecha de compra, email del comprador\",\"FaPYw+\":\"Propietario del pedido\",\"eB5vce\":\"Propietarios de pedidos con un producto específico\",\"CxLoxM\":\"Propietarios de pedidos con productos\",\"DoH3fD\":\"Pago del Pedido Pendiente\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Estados de los pedidos\",\"oW5877\":\"Total del pedido\",\"e7eZuA\":\"Pedido actualizado\",\"1SQRYo\":\"Pedido actualizado correctamente\",\"KndP6g\":\"URL del pedido\",\"3NT0Ck\":\"El pedido fue cancelado\",\"V5khLm\":\"pedidos\",\"sd5IMt\":\"Pedidos completados\",\"5It1cQ\":\"Pedidos exportados\",\"tlKX/S\":\"Los pedidos que abarquen varias fechas se marcarán para revisión manual.\",\"UQ0ACV\":\"Total de pedidos\",\"B/EBQv\":\"Pedidos:\",\"qtGTNu\":\"Cuentas orgánicas\",\"ucgZ0o\":\"Organización\",\"P/JHA4\":\"Organizador archivado correctamente\",\"S3CZ5M\":\"Panel del organizador\",\"GzjTd0\":\"Organizador eliminado correctamente\",\"Uu0hZq\":\"Correo del organizador\",\"Gy7BA3\":\"Dirección de correo electrónico del organizador\",\"SQqJd8\":\"Organizador no encontrado\",\"HF8Bxa\":\"Organizador restaurado correctamente\",\"wpj63n\":\"Configuración del organizador\",\"o1my93\":\"No se pudo actualizar el estado del organizador. Inténtalo de nuevo más tarde\",\"rLHma1\":\"Estado del organizador actualizado\",\"LqBITi\":\"Se usará la plantilla del organizador/predeterminada\",\"q4zH+l\":\"Organizadores\",\"/IX/7x\":\"Otro\",\"RsiDDQ\":\"Otras Listas (Ticket No Incluido)\",\"aDfajK\":\"Aire libre\",\"qMASRF\":\"Mensajes salientes\",\"iCOVQO\":\"Anular\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Anular precio\",\"cnVIpl\":\"Anulación eliminada\",\"6/dCYd\":\"Resumen\",\"6WdDG7\":\"Página\",\"8uqsE5\":\"Página ya no disponible\",\"QkLf4H\":\"URL de la página\",\"sF+Xp9\":\"Vistas de página\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Cuentas de pago\",\"5F7SYw\":\"Reembolso parcial\",\"fFYotW\":[\"Reembolsado parcialmente: \",[\"0\"]],\"i8day5\":\"Pasar comisión al comprador\",\"k4FLBQ\":\"Pasar al comprador\",\"Ff0Dor\":\"Pasado\",\"BFjW8X\":\"Vencido\",\"xTPjSy\":\"Eventos pasados\",\"/l/ckQ\":\"Pega la URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"OZK07J\":\"Pagar para desbloquear\",\"c2/9VE\":\"Carga útil\",\"5cxUwd\":\"Fecha de pago\",\"ENEPLY\":\"Método de pago\",\"8Lx2X7\":\"Pago recibido\",\"fx8BTd\":\"Pagos no disponibles\",\"C+ylwF\":\"Pagos a tu cuenta\",\"UbRKMZ\":\"Pendiente\",\"UkM20g\":\"Revisión pendiente\",\"dPYu1F\":\"Por asistente\",\"mQV/nJ\":\"por min\",\"VlXNyK\":\"Por pedido\",\"hauDFf\":\"Por entrada\",\"mnF83a\":\"Tarifa porcentual\",\"TNLuRD\":\"Comisión porcentual (%)\",\"MixU2P\":\"El porcentaje debe estar entre 0 y 100\",\"MkuVAZ\":\"Porcentaje del monto de la transacción\",\"/Bh+7r\":\"Rendimiento\",\"fIp56F\":\"Elimina permanentemente este evento y todos sus datos asociados.\",\"nJeeX7\":\"Elimina permanentemente este organizador y todos sus eventos.\",\"wfCTgK\":\"Eliminar permanentemente esta fecha\",\"6kPk3+\":\"Información personal\",\"zmwvG2\":\"Teléfono\",\"SdM+Q1\":\"Elige una ubicación\",\"tSR/oe\":\"Elige una fecha de fin\",\"e8kzpp\":\"Elige al menos un día del mes\",\"35C8QZ\":\"Elige al menos un día de la semana\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Realizado\",\"wBJR8i\":\"¿Planificando un evento?\",\"J3lhKT\":\"Comisión de plataforma\",\"RD51+P\":[\"Comisión de plataforma de \",[\"0\"],\" deducida de su pago\"],\"br3Y/y\":\"Tarifas de plataforma\",\"3buiaw\":\"Informe de tarifas de plataforma\",\"kv9dM4\":\"Ingresos de la plataforma\",\"PJ3Ykr\":\"Por favor, consulta tu entrada para ver la hora actualizada. Tus entradas siguen siendo válidas — no es necesaria ninguna acción a menos que los nuevos horarios no te convengan. Responde a este correo si tienes alguna pregunta.\",\"OtjenF\":\"Por favor, introduzca una dirección de correo electrónico válida\",\"jEw0Mr\":\"Por favor, introduce una URL válida\",\"n8+Ng/\":\"Por favor, ingresa el código de 5 dígitos\",\"r+lQXT\":\"Por favor ingrese su número de IVA\",\"Dvq0wf\":\"Por favor, proporciona una imagen.\",\"2cUopP\":\"Por favor, reinicia el proceso de compra.\",\"GoXxOA\":\"Por favor, selecciona una fecha y hora\",\"8KmsFa\":\"Por favor seleccione un rango de fechas\",\"EFq6EG\":\"Por favor, selecciona una imagen.\",\"fuwKpE\":\"Por favor, inténtalo de nuevo.\",\"klWBeI\":\"Por favor, espera antes de solicitar otro código\",\"hfHhaa\":\"Por favor, espera mientras preparamos tus afiliados para exportar...\",\"o+tJN/\":\"Por favor, espera mientras preparamos la exportación de tus asistentes...\",\"+5Mlle\":\"Por favor, espera mientras preparamos la exportación de tus pedidos...\",\"trnWaw\":\"Polaco\",\"luHAJY\":\"Eventos populares (Últimos 14 días)\",\"p/78dY\":\"Posición\",\"TjX7xL\":\"Mensaje Post-Compra\",\"OESu7I\":\"Evite la sobreventa compartiendo inventario entre múltiples tipos de boletos.\",\"NgVUL2\":\"Vista previa del formulario de pago\",\"cs5muu\":\"Vista previa de la página del evento\",\"+4yRWM\":\"Precio del boleto\",\"Jm2AC3\":\"Nivel de precio\",\"a5jvSX\":\"Niveles de Precio\",\"ReihZ7\":\"Vista Previa de Impresión\",\"JnuPvH\":\"Imprimir Entrada\",\"tYF4Zq\":\"Imprimir a PDF\",\"LcET2C\":\"Política de privacidad\",\"8z6Y5D\":\"Procesar reembolso\",\"JcejNJ\":\"Procesando pedido\",\"EWCLpZ\":\"Producto creado\",\"XkFYVB\":\"Producto eliminado\",\"YMwcbR\":\"Desglose de ventas de productos, ingresos e impuestos\",\"ls0mTC\":\"La configuración del producto no se puede editar para fechas canceladas.\",\"2339ej\":\"Configuración del producto guardada correctamente\",\"ldVIlB\":\"Producto actualizado\",\"CP3D8G\":\"Progreso\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionales y desglose de descuentos\",\"tZqL0q\":\"códigos promocionales\",\"oCHiz3\":\"Códigos promocionales\",\"uEhdRh\":\"Solo Promocional\",\"dLm8V5\":\"Los correos promocionales pueden resultar en la suspensión de la cuenta\",\"XoEWtl\":\"Indica al menos un campo de dirección para la nueva ubicación.\",\"2W/7Gz\":\"Proporciona la siguiente información antes de la próxima revisión de Stripe para mantener los pagos.\",\"aemBRq\":\"Proveedor\",\"EEYbdt\":\"Publicar\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Comprado\",\"JunetL\":\"Comprador\",\"phmeUH\":\"Email del comprador\",\"ywR4ZL\":\"Registro con código QR\",\"oWXNE5\":\"Cant.\",\"biEyJ4\":\"Respuestas\",\"k/bJj0\":\"Preguntas reordenadas\",\"b24kPi\":\"Cola\",\"lTPqpM\":\"Consejo rápido\",\"fqDzSu\":\"Tasa\",\"mnUGVC\":\"Límite de solicitudes excedido. Por favor, inténtelo de nuevo más tarde.\",\"t41hVI\":\"Volver a ofrecer lugar\",\"TNclgc\":\"¿Reactivar esta fecha? Se reabrirá para futuras ventas.\",\"uqoRbb\":\"Analítica en tiempo real\",\"xzRvs4\":[\"Recibir actualizaciones de productos de \",[\"0\"],\".\"],\"pLXbi8\":\"Registros de cuentas recientes\",\"3kJ0gv\":\"Asistentes recientes\",\"qhfiwV\":\"Registros recientes\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Pedidos recientes\",\"7hPBBn\":\"destinatario\",\"jp5bq8\":\"destinatarios\",\"yPrbsy\":\"Destinatarios\",\"E1F5Ji\":\"Los destinatarios estarán disponibles después de enviar el mensaje\",\"wuhHPE\":\"Recurrente\",\"asLqwt\":\"Evento recurrente\",\"D0tAMe\":\"Eventos recurrentes\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirigiendo a Stripe...\",\"pnoTN5\":\"Cuentas de referencia\",\"ACKu03\":\"Actualizar vista previa\",\"vuFYA6\":\"Reembolsar todos los pedidos de estas fechas\",\"4cRUK3\":\"Reembolsar todos los pedidos de esta fecha\",\"fKn/k6\":\"Monto del reembolso\",\"qY4rpA\":\"Reembolso fallido\",\"TspTcZ\":\"Reembolso emitido\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendiente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configuración regional\",\"5tl0Bp\":\"Preguntas de registro\",\"ZNo5k1\":\"Restante\",\"EMnuA4\":\"Recordatorio programado\",\"Bjh87R\":\"Quitar la etiqueta de todas las fechas\",\"KkJtVK\":\"Reabrir para nuevas ventas\",\"XJwWJp\":\"¿Reabrir esta fecha para nuevas ventas? Las entradas previamente canceladas no se restablecerán — los asistentes afectados permanecen cancelados y los reembolsos ya emitidos no se revertirán.\",\"bAwDQs\":\"Repetir cada\",\"CQeZT8\":\"Informe no encontrado\",\"JEPMXN\":\"Solicitar un nuevo enlace\",\"TMLAx2\":\"Requerido\",\"mdeIOH\":\"Reenviar código\",\"sQxe68\":\"Reenviar confirmación\",\"bxoWpz\":\"Reenviar correo de confirmación\",\"G42SNI\":\"Reenviar correo\",\"TTpXL3\":[\"Reenviar en \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Reenviar entrada\",\"Uwsg2F\":\"Reservado\",\"8wUjGl\":\"Reservado hasta\",\"a5z8mb\":\"Restablecer al precio base\",\"kCn6wb\":\"Restableciendo...\",\"404zLK\":\"Ubicación resuelta o nombre del lugar\",\"ZlCDf+\":\"Respuesta\",\"bsydMp\":\"Detalles de la respuesta\",\"yKu/3Y\":\"Restaurar\",\"RokrZf\":\"Restaurar evento\",\"/JyMGh\":\"Restaurar organizador\",\"HFvFRb\":\"Restaura este evento para que vuelva a ser visible.\",\"DDIcqy\":\"Restaura este organizador y vuelve a activarlo.\",\"mO8KLE\":\"resultados\",\"6gRgw8\":\"Reintentar\",\"1BG8ga\":\"Reintentar todo\",\"rDC+T6\":\"Reintentar trabajo\",\"CbnrWb\":\"Volver al evento\",\"mdQ0zb\":\"Lugares reutilizables para tus eventos. Las ubicaciones creadas desde el autocompletado se guardan aquí automáticamente.\",\"XFOPle\":\"Reutilizar\",\"1Zehp4\":\"Reutiliza una conexión de Stripe de otro organizador de esta cuenta.\",\"Oo/PLb\":\"Resumen de ingresos\",\"O/8Ceg\":\"Ingresos de hoy\",\"CfuueU\":\"Revocar oferta\",\"RIgKv+\":\"Ejecutar hasta una fecha concreta\",\"JYRqp5\":\"Sá\",\"dFFW9L\":[\"Venta terminada \",[\"0\"]],\"loCKGB\":[\"Venta termina \",[\"0\"]],\"wlfBad\":\"Período de Venta\",\"qi81Jg\":\"Las fechas del periodo de venta se aplican a todas las fechas de tu programación. Para controlar precios y disponibilidad de fechas individuales, usa las anulaciones en la <0>página de Programación de sesiones.\",\"5CDM6r\":\"Período de venta establecido\",\"ftzaMf\":\"Período de venta, límites de pedido, visibilidad\",\"zpekWp\":[\"Venta comienza \",[\"0\"]],\"mUv9U4\":\"Ventas\",\"9KnRdL\":\"Las ventas están pausadas\",\"JC3J0k\":\"Desglose de ventas, asistencia y registro por sesión\",\"3VnlS9\":\"Ventas, pedidos y métricas de rendimiento para todos los eventos\",\"3Q1AWe\":\"Ventas:\",\"LeuERW\":\"Igual que el evento\",\"B4nE3N\":\"Precio de entrada de ejemplo\",\"8BRPoH\":\"Lugar de Ejemplo\",\"PiK6Ld\":\"Sáb\",\"+5kO8P\":\"Sábado\",\"zJiuDn\":\"Guardar anulación de comisión\",\"NB8Uxt\":\"Guardar programación\",\"KZrfYJ\":\"Guardar enlaces sociales\",\"9Y3hAT\":\"Guardar plantilla\",\"C8ne4X\":\"Guardar Diseño del Ticket\",\"cTI8IK\":\"Guardar configuración de IVA\",\"6/TNCd\":\"Guardar Configuración del IVA\",\"4RvD9q\":\"Ubicación guardada\",\"cgw0cL\":\"Ubicaciones guardadas\",\"lvSrsT\":\"Ubicaciones guardadas\",\"Fbqm/I\":\"Al guardar una anulación se crea una configuración dedicada para este organizador si actualmente está en el valor predeterminado del sistema.\",\"I+FvbD\":\"Escanear\",\"0zd6Nm\":\"Escanea una entrada para registrar a un asistente\",\"bQG7Qk\":\"Las entradas escaneadas aparecerán aquí\",\"WDYSLJ\":\"Modo escáner\",\"gmB6oO\":\"Programación\",\"j6NnBq\":\"Programación creada correctamente\",\"YP7frt\":\"La programación termina el\",\"QS1Nla\":\"Programar para más tarde\",\"NAzVVw\":\"Programar mensaje\",\"Fz09JP\":\"La programación comienza el\",\"4ba0NE\":\"Programado\",\"qcP/8K\":\"Hora programada\",\"A1taO8\":\"Buscar\",\"ftNXma\":\"Buscar afiliados...\",\"VMU+zM\":\"Buscar asistentes\",\"VY+Bdn\":\"Buscar por nombre de cuenta o correo electrónico...\",\"VX+B3I\":\"Buscar por título de evento u organizador...\",\"R0wEyA\":\"Buscar por nombre de trabajo o excepción...\",\"VT+urE\":\"Buscar por nombre o correo electrónico...\",\"GHdjuo\":\"Buscar por nombre, correo electrónico o cuenta...\",\"4mBFO7\":\"Buscar por nombre, N.º pedido, N.º entrada o email\",\"20ce0U\":\"Buscar por ID de pedido, nombre de cliente o correo electrónico...\",\"4DSz7Z\":\"Buscar por asunto, evento o cuenta...\",\"nQC7Z9\":\"Buscar fechas...\",\"iRtEpV\":\"Buscar fechas…\",\"JRM7ao\":\"Buscar una dirección\",\"BWF1kC\":\"Buscar mensajes...\",\"3aD3GF\":\"Estacional\",\"ku//5b\":\"Segundo\",\"Mck5ht\":\"Pago Seguro\",\"s7tXqF\":\"Ver programación\",\"JFap6u\":\"Ver qué necesita Stripe todavía\",\"p7xUrt\":\"Selecciona una categoría\",\"hTKQwS\":\"Selecciona una fecha y hora\",\"e4L7bF\":\"Seleccione un mensaje para ver su contenido\",\"zPRPMf\":\"Seleccionar un nivel\",\"uqpVri\":\"Selecciona una hora\",\"BFRSTT\":\"Seleccionar Cuenta\",\"wgNoIs\":\"Seleccionar todo\",\"mCB6Je\":\"Seleccionar todo\",\"aCEysm\":[\"Seleccionar todo en \",[\"0\"]],\"a6+167\":\"Seleccionar un evento\",\"CFbaPk\":\"Seleccionar grupo de asistentes\",\"88a49s\":\"Seleccionar cámara\",\"tVW/yo\":\"Seleccionar moneda\",\"SJQM1I\":\"Seleccionar fecha\",\"n9ZhRa\":\"Selecciona fecha y hora de finalización\",\"gTN6Ws\":\"Seleccionar hora de finalización\",\"0U6E9W\":\"Seleccionar categoría del evento\",\"j9cPeF\":\"Seleccionar tipos de eventos\",\"ypTjHL\":\"Seleccionar sesión\",\"KizCK7\":\"Selecciona fecha y hora de inicio\",\"dJZTv2\":\"Seleccionar hora de inicio\",\"x8XMsJ\":\"Seleccione el nivel de mensajería para esta cuenta. Esto controla los límites de mensajes y los permisos de enlaces.\",\"aT3jZX\":\"Seleccionar zona horaria\",\"TxfvH2\":\"Selecciona qué asistentes deben recibir este mensaje\",\"Ropvj0\":\"Selecciona qué eventos activarán este webhook\",\"+6YAwo\":\"seleccionado\",\"ylXj1N\":\"Seleccionado\",\"uq3CXQ\":\"Agota tu evento.\",\"j9b/iy\":\"¡Se vende rápido! 🔥\",\"73qYgo\":\"Enviar como prueba\",\"HMAqFK\":\"Enviar correos electrónicos a asistentes, titulares de entradas o propietarios de pedidos. Los mensajes se pueden enviar de inmediato o programar para más tarde.\",\"22Itl6\":\"Enviarme una copia\",\"NpEm3p\":\"Enviar ahora\",\"nOBvex\":\"Envíe datos de pedidos y asistentes en tiempo real a sus sistemas externos.\",\"1lNPhX\":\"Enviar correo de notificación de reembolso\",\"eaUTwS\":\"Enviar enlace de restablecimiento\",\"5cV4PY\":\"Enviar a todas las sesiones o elegir una específica\",\"QEQlnV\":\"Envíe su primer mensaje\",\"3nMAVT\":\"Se enviará en 2d 4h\",\"IoAuJG\":\"Enviando...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Enviado a los asistentes cuando se cancela una fecha programada\",\"SPdzrs\":\"Enviado a clientes cuando realizan un pedido\",\"LxSN5F\":\"Enviado a cada asistente con los detalles de su boleto\",\"hgvbYY\":\"Septiembre\",\"5sN96e\":\"Sesión cancelada\",\"89xaFU\":\"Establezca la configuración predeterminada de comisiones de plataforma para nuevos eventos creados bajo este organizador.\",\"eXssj5\":\"Establecer configuraciones predeterminadas para nuevos eventos creados bajo este organizador.\",\"uPe5p8\":\"Define cuánto dura cada fecha\",\"xNsRxU\":\"Establecer número de fechas\",\"ODuUEi\":\"Establecer o borrar la etiqueta de la fecha\",\"buHACR\":\"Establece la hora de fin de cada fecha para que sea este tiempo después de su hora de inicio.\",\"TaeFgl\":\"Establecer como ilimitado (quitar límite)\",\"pd6SSe\":\"Configura una programación recurrente para crear fechas automáticamente, o añádelas una a una.\",\"s0FkEx\":\"Configure listas de registro para diferentes entradas, sesiones o días.\",\"TaWVGe\":\"Configurar pagos\",\"gzXY7l\":\"Configurar programación\",\"xMO+Ao\":\"Configura tu organización\",\"h/9JiC\":\"Configura tu programación\",\"ETC76A\":\"Establece, cambia o elimina la ubicación o los datos online de la sesión\",\"C3htzi\":\"Configuración actualizada\",\"Ohn74G\":\"Configuración y diseño\",\"1W5XyZ\":\"La configuración solo lleva unos minutos — no necesitas tener una cuenta de Stripe. Stripe se encarga de tarjetas, billeteras, métodos de pago regionales y protección antifraude para que tú te centres en tu evento.\",\"GG7qDw\":\"Compartir enlace de afiliado\",\"hL7sDJ\":\"Compartir página del organizador\",\"jy6QDF\":\"Gestión de capacidad compartida\",\"jDNHW4\":\"Desplazar horarios\",\"tPfIaW\":[\"Se desplazaron los horarios de \",[\"count\"],\" fecha(s)\"],\"WwlM8F\":\"Mostrar opciones avanzadas\",\"cMW+gm\":[\"Mostrar todas las plataformas (\",[\"0\"],\" más con valores)\"],\"wXi9pZ\":\"Mostrar notas al personal sin iniciar sesión\",\"UVPI5D\":\"Mostrar menos plataformas\",\"Eu/N/d\":\"Mostrar casilla de aceptación de marketing\",\"SXzpzO\":\"Mostrar casilla de aceptación de marketing por defecto\",\"57tTk5\":\"Mostrar más fechas\",\"b33PL9\":\"Mostrar más plataformas\",\"Eut7p9\":\"Mostrar detalles del pedido al personal sin iniciar sesión\",\"+RoWKN\":\"Mostrar respuestas al personal sin iniciar sesión\",\"t1LIQW\":[\"Mostrando \",[\"0\"],\" de \",[\"totalRows\"],\" registros\"],\"E717U9\":[\"Mostrando \",[\"0\"],\"–\",[\"1\"],\" de \",[\"2\"]],\"5rzhBQ\":[\"Mostrando \",[\"MAX_VISIBLE\"],\" de \",[\"totalAvailable\"],\" fechas. Escribe para buscar.\"],\"WSt3op\":[\"Mostrando las primeras \",[\"0\"],\" — las \",[\"1\"],\" sesion(es) restantes igualmente recibirán el mensaje cuando se envíe.\"],\"OJLTEL\":\"Se muestra al personal la primera vez que abre la página de check-in.\",\"jVRHeq\":\"Registrado\",\"5C7J+P\":\"Evento único\",\"E//btK\":\"Omitir fechas editadas manualmente\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Enlaces sociales\",\"j/TOB3\":\"Enlaces sociales y sitio web\",\"s9KGXU\":\"Vendido\",\"iACSrw\":\"Algunos detalles están ocultos al acceso público. Inicia sesión para verlo todo.\",\"KTxc6k\":\"Algo salió mal, inténtalo de nuevo o contacta con soporte si el problema persiste\",\"lkE00/\":\"Algo salió mal. Por favor, inténtelo de nuevo más tarde.\",\"wdxz7K\":\"Fuente\",\"fDG2by\":\"Espiritualidad\",\"oPaRES\":\"Divide el check-in por días, zonas o tipos de entrada. Comparte el enlace con el personal — sin necesidad de cuenta.\",\"7JFNej\":\"Deportes\",\"/bfV1Y\":\"Instrucciones del personal\",\"tXkhj/\":\"Inicio\",\"JcQp9p\":\"Fecha y hora de inicio\",\"0m/ekX\":\"Fecha y hora de inicio\",\"izRfYP\":\"La fecha de inicio es obligatoria\",\"tuO4fV\":\"Fecha de inicio de la sesión\",\"2R1+Rv\":\"Hora de inicio del evento\",\"2Olov3\":\"Hora de inicio de la sesión\",\"n9ZrDo\":\"Empieza a escribir un lugar o dirección...\",\"qeFVhN\":[\"Empieza en \",[\"diffDays\"],\" días\"],\"AOqtxN\":[\"Empieza en \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Empieza en \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Empieza en \",[\"seconds\"],\"s\"],\"NqChgF\":\"Empieza mañana\",\"2NbyY/\":\"Estadísticas\",\"GVUxAX\":\"Las estadísticas se basan en la fecha de creación de la cuenta\",\"29Hx9U\":\"Estadísticas\",\"5ia+r6\":\"Aún se necesita\",\"wuV0bK\":\"Detener Suplantación\",\"s/KaDb\":\"Stripe conectado\",\"Bk06QI\":\"Stripe conectado\",\"akZMv8\":[\"Conexión de Stripe copiada de \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe no devolvió un enlace de configuración. Vuelve a intentarlo.\",\"aKtF0O\":\"Stripe no conectado\",\"9i0++A\":\"ID de pago de Stripe\",\"R1lIMV\":\"Stripe necesitará algunos datos más en breve\",\"FzcCHA\":\"Stripe te guiará con unas preguntas rápidas para terminar la configuración.\",\"eYbd7b\":\"Do\",\"ii0qn/\":\"El asunto es requerido\",\"M7Uapz\":\"El asunto aparecerá aquí\",\"6aXq+t\":\"Asunto:\",\"JwTmB6\":\"Producto duplicado con éxito\",\"WUOCgI\":\"Lugar ofrecido con éxito\",\"IvxA4G\":[\"Tickets ofrecidos exitosamente a \",[\"count\"],\" personas\"],\"kKpkzy\":\"Tickets ofrecidos exitosamente a 1 persona\",\"Zi3Sbw\":\"Eliminado de la lista de espera con éxito\",\"RuaKfn\":\"Dirección actualizada correctamente\",\"kzx0uD\":\"Valores Predeterminados del Evento Actualizados con Éxito\",\"5n+Wwp\":\"Organizador actualizado correctamente\",\"DMCX/I\":\"Configuración predeterminada de comisiones actualizada exitosamente\",\"URUYHc\":\"Configuración de comisiones de plataforma actualizada exitosamente\",\"0Dk/l8\":\"Configuración SEO actualizada correctamente\",\"S8Tua9\":\"Ajustes actualizados exitosamente\",\"MhOoLQ\":\"Enlaces sociales actualizados correctamente\",\"CNSSfp\":\"Configuración de seguimiento actualizada correctamente\",\"kj7zYe\":\"Webhook actualizado con éxito\",\"dXoieq\":\"Resumen\",\"/RfJXt\":[\"Festival de música de verano \",[\"0\"]],\"CWOPIK\":\"Festival de Música de Verano 2025\",\"D89zck\":\"Dom\",\"DBC3t5\":\"Domingo\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Cambiar organizador\",\"9YHrNC\":\"Predeterminado del sistema\",\"lruQkA\":\"Toca la pantalla para continuar escaneando\",\"TJUrME\":[\"Dirigiéndose a asistentes de \",[\"0\"],\" sesiones seleccionadas.\"],\"yT6dQ8\":\"Impuestos recaudados agrupados por tipo de impuesto y evento\",\"Ye321X\":\"Nombre del impuesto\",\"WyCBRt\":\"Resumen de impuestos\",\"GkH0Pq\":\"Impuestos y tasas aplicados\",\"Rwiyt2\":\"Impuestos configurados\",\"iQZff7\":\"Impuestos, tarifas, visibilidad, período de venta, destacado de productos y límites de pedido\",\"SXvRWU\":\"Colaboración en equipo\",\"vlf/In\":\"Tecnología\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Dile a la gente qué esperar de tu evento\",\"NiIUyb\":\"Cuéntanos sobre tu evento\",\"DovcfC\":\"Cuéntanos sobre tu organización. Esta información se mostrará en las páginas de tus eventos.\",\"69GWRq\":\"Cuéntanos con qué frecuencia se repite tu evento y crearemos todas las fechas por ti.\",\"mXPbwY\":\"Dinos tu estado de registro de IVA para que apliquemos el IVA correcto a las comisiones de la plataforma.\",\"7wtpH5\":\"Plantilla activa\",\"QHhZeE\":\"Plantilla creada exitosamente\",\"xrWdPR\":\"Plantilla eliminada exitosamente\",\"G04Zjt\":\"Plantilla guardada exitosamente\",\"xowcRf\":\"Términos del servicio\",\"6K0GjX\":\"El texto puede ser difícil de leer\",\"u0F1Ey\":\"Ju\",\"nm3Iz/\":\"¡Gracias por asistir!\",\"pYwj0k\":\"Gracias,\",\"k3IitN\":\"Y hasta aquí\",\"KfmPRW\":\"El color de fondo de la página. Al usar imagen de portada, se aplica como una superposición.\",\"MDNyJz\":\"El código expirará en 10 minutos. Revisa tu carpeta de spam si no ves el correo.\",\"AIF7J2\":\"La moneda en la que se define la tarifa fija. Se convertirá a la moneda del pedido en el momento del pago.\",\"MJm4Tq\":\"La moneda del pedido\",\"cDHM1d\":\"La dirección de correo electrónico ha sido cambiada. El asistente recibirá una nueva entrada en la dirección de correo actualizada.\",\"I/NNtI\":\"El lugar del evento\",\"tXadb0\":\"El evento que buscas no está disponible en este momento. Puede que haya sido eliminado, haya caducado o la URL sea incorrecta.\",\"5fPdZe\":\"La primera fecha desde la que se generará esta programación.\",\"EBzPwC\":\"La dirección completa del evento\",\"sxKqBm\":\"El monto completo del pedido será reembolsado al método de pago original del cliente.\",\"KgDp6G\":\"El enlace al que intenta acceder ha caducado o ya no es válido. Por favor, revise su correo electrónico para obtener un enlace actualizado para gestionar su pedido.\",\"5OmEal\":\"El idioma del cliente\",\"Np4eLs\":[\"El máximo es \",[\"MAX_PREVIEW\"],\" sesiones. Reduce el rango de fechas, la frecuencia o el número de sesiones por día.\"],\"sYLeDq\":\"No se pudo encontrar el organizador que estás buscando. La página puede haber sido movida, eliminada o la URL puede ser incorrecta.\",\"PCr4zw\":\"La anulación se registra en el historial de auditoría del pedido.\",\"C4nQe5\":\"La comisión de la plataforma se añade al precio de la entrada. Los compradores pagan más, pero usted recibe el precio completo de la entrada.\",\"HxxXZO\":\"El color principal de marca usado para botones y destacados\",\"z0KrIG\":\"La hora programada es obligatoria\",\"EWErQh\":\"La hora programada debe ser en el futuro\",\"UNd0OU\":[\"La sesión de \\\"\",[\"title\"],\"\\\" originalmente programada para \",[\"0\"],\" ha sido reprogramada.\"],\"DEcpfp\":\"El cuerpo de la plantilla contiene sintaxis Liquid inválida. Por favor corrígela e inténtalo de nuevo.\",\"injXD7\":\"No se pudo validar el número de IVA. Por favor, verifica el número e inténtalo de nuevo.\",\"A4UmDy\":\"Teatro\",\"tDwYhx\":\"Tema y colores\",\"O7g4eR\":\"No hay próximas fechas para este evento\",\"HrIl0p\":[\"No hay una lista de registro específica para esta fecha. La lista \\\"\",[\"0\"],\"\\\" registra a los asistentes de todas las fechas — el personal que escanee una entrada para una fecha diferente lo hará con éxito de todas formas.\"],\"dt3TwA\":\"Estos son los precios y cantidades predeterminados para todas las fechas. Las fechas de venta de los niveles se aplican globalmente. Puedes anular precios y cantidades para fechas individuales en la <0>página de Programación de sesiones.\",\"062KsE\":\"Estos detalles se muestran en la entrada del asistente y en el resumen del pedido solo para esta fecha.\",\"5Eu+tn\":\"Estos detalles solo se mostrarán si el pedido se completa correctamente.\",\"jQjwR+\":\"Estos datos sustituirán cualquier ubicación existente en las sesiones afectadas y aparecerán en las entradas de los asistentes.\",\"QP3gP+\":\"Estas configuraciones solo se aplican al código incrustado copiado y no se guardarán.\",\"HirZe8\":\"Estas plantillas se usarán como predeterminadas para todos los eventos en su organización. Los eventos individuales pueden anular estas plantillas con sus propias versiones personalizadas.\",\"lzAaG5\":\"Estas plantillas anularán los predeterminados del organizador solo para este evento. Si no se establece una plantilla personalizada aquí, se usará la plantilla del organizador en su lugar.\",\"UlykKR\":\"Tercero\",\"wkP5FM\":\"Esto se aplica a todas las fechas coincidentes del evento, incluidas las no visibles actualmente. Los asistentes registrados en cualquiera de esas fechas podrán recibir mensajes desde el redactor cuando finalice la actualización.\",\"SOmGDa\":\"Esta lista de registro está vinculada a una sesión que ha sido cancelada, por lo que ya no se puede usar para registros.\",\"XBNC3E\":\"Este código se usará para rastrear ventas. Solo se permiten letras, números, guiones y guiones bajos.\",\"AaP0M+\":\"Esta combinación de colores puede ser difícil de leer para algunos usuarios\",\"o1phK/\":[\"Esta fecha tiene \",[\"orderCount\"],\" pedido(s) que se verán afectados.\"],\"F/UtGt\":\"Esta fecha ha sido cancelada. Aún puedes eliminarla permanentemente.\",\"BLZ7pX\":\"Esta fecha es del pasado. Se creará pero no será visible para los asistentes en las próximas fechas.\",\"7IIY0z\":\"Esta fecha está marcada como agotada.\",\"bddWMP\":\"Esta fecha ya no está disponible. Por favor, selecciona otra fecha.\",\"RzEvf5\":\"Este evento ha finalizado\",\"YClrdK\":\"Este evento aún no está publicado\",\"dFJnia\":\"Este es el nombre de tu organizador que se mostrará a tus usuarios.\",\"vt7jiq\":\"Esta es la única vez que se mostrará el secreto de firma. Por favor, cópielo ahora y guárdelo de forma segura.\",\"L7dIM7\":\"Este enlace es inválido o ha caducado.\",\"MR5ygV\":\"Este enlace ya no es válido\",\"9LEqK0\":\"Este nombre es visible para los usuarios finales\",\"QdUMM9\":\"Esta sesión está a plena capacidad\",\"j5FdeA\":\"Este pedido está siendo procesado.\",\"sjNPMw\":\"Este pedido fue abandonado. Puede iniciar un nuevo pedido en cualquier momento.\",\"OhCesD\":\"Este pedido fue cancelado. Puedes iniciar un nuevo pedido en cualquier momento.\",\"lyD7rQ\":\"Este perfil de organizador aún no está publicado\",\"9b5956\":\"Esta vista previa muestra cómo se verá su correo con datos de muestra. Los correos reales usarán valores reales.\",\"uM9Alj\":\"Este producto está destacado en la página del evento\",\"RqSKdX\":\"Este producto está agotado\",\"W12OdJ\":\"Este informe es solo para fines informativos. Siempre consulte con un profesional de impuestos antes de usar estos datos para fines contables o fiscales. Por favor, verifique con su panel de Stripe ya que Hi.Events puede no tener datos históricos.\",\"0Ew0uk\":\"Este boleto acaba de ser escaneado. Por favor espere antes de escanear nuevamente.\",\"FYXq7k\":[\"Esto afectará a \",[\"loadedAffectedCount\"],\" fecha(s).\"],\"kvpxIU\":\"Esto se usará para notificaciones y comunicación con tus usuarios.\",\"rhsath\":\"Esto no será visible para los clientes, pero te ayuda a identificar al afiliado.\",\"hV6FeJ\":\"Ritmo\",\"+FjWgX\":\"Jue\",\"kkDQ8m\":\"Jueves\",\"0GSPnc\":\"Diseño de Ticket\",\"EZC/Cu\":\"Diseño del ticket guardado exitosamente\",\"bbslmb\":\"Diseñador de boletos\",\"1BPctx\":\"Entrada para\",\"bgqf+K\":\"Email del portador del boleto\",\"oR7zL3\":\"Nombre del portador del boleto\",\"HGuXjF\":\"Poseedores de entradas\",\"CMUt3Y\":\"Titulares de entradas\",\"awHmAT\":\"ID del boleto\",\"6czJik\":\"Logo del Ticket\",\"OkRZ4Z\":\"Nombre del boleto\",\"t79rDv\":\"Entrada no encontrada\",\"6tmWch\":\"Entrada o producto\",\"1tfWrD\":\"Vista previa de boleto para\",\"KnjoUA\":\"Precio de la entrada\",\"tGCY6d\":\"Precio del boleto\",\"pGZOcL\":\"Entrada reenviada correctamente\",\"8jLPgH\":\"Tipo de Ticket\",\"X26cQf\":\"URL del boleto\",\"8qsbZ5\":\"Venta de boletos\",\"zNECqg\":\"entradas\",\"6GQNLE\":\"Entradas\",\"NRhrIB\":\"Entradas y productos\",\"OrWHoZ\":\"Los tickets se ofrecen automáticamente a los clientes en lista de espera cuando hay disponibilidad.\",\"EUnesn\":\"Entradas disponibles\",\"AGRilS\":\"Entradas Vendidas\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Hora\",\"dMtLDE\":\"a\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar sus límites, contáctenos en\",\"ecUA8p\":\"Hoy\",\"W428WC\":\"Alternar columnas\",\"BRMXj0\":\"Mañana\",\"UBSG1X\":\"Mejores organizadores (Últimos 14 días)\",\"3sZ0xx\":\"Cuentas Totales\",\"EaAPbv\":\"Cantidad total pagada\",\"SMDzqJ\":\"Total de asistentes\",\"orBECM\":\"Total recaudado\",\"k5CU8c\":\"Total de entradas\",\"4B7oCp\":\"Tarifa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Usuarios Totales\",\"oJjplO\":\"Vistas totales\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Seguimiento del crecimiento y rendimiento de la cuenta por fuente de atribución\",\"YwKzpH\":\"Seguimiento y analítica\",\"uKOFO5\":\"Verdadero si pago sin conexión\",\"9GsDR2\":\"Verdadero si pago pendiente\",\"GUA0Jy\":\"Prueba otro término o filtro\",\"2P/OWN\":\"Prueba a ajustar los filtros para ver más fechas.\",\"ouM5IM\":\"Probar otro correo\",\"3DZvE7\":\"Probar Hi.Events gratis\",\"7P/9OY\":\"Ma\",\"vq2WxD\":\"Mar\",\"G3myU+\":\"Martes\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desactivar sonido\",\"KUOhTy\":\"Activar sonido\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Escribe \\\"eliminar\\\" para confirmar\",\"XxecLm\":\"Tipo de boleto\",\"IrVSu+\":\"No se pudo duplicar el producto. Por favor, revisa tus datos\",\"Vx2J6x\":\"No se pudo obtener el asistente\",\"h0dx5e\":\"No se pudo unir a la lista de espera\",\"DaE0Hg\":\"No se pudieron cargar los detalles del asistente.\",\"GlnD5Y\":\"No se pueden cargar los productos para esta fecha. Inténtalo de nuevo.\",\"17VbmV\":\"No se pudo deshacer el check-in\",\"n57zCW\":\"Cuentas sin atribución\",\"9uI/rE\":\"Deshacer\",\"b9SN9q\":\"Referencia única del pedido\",\"Ef7StM\":\"Desconocido\",\"ZBAScj\":\"Asistente desconocido\",\"MEIAzV\":\"Sin nombre\",\"K6L5Mx\":\"Ubicación sin nombre\",\"X13xGn\":\"No confiable\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Actualizar afiliado\",\"59qHrb\":\"Actualizar capacidad\",\"Gaem9v\":\"Actualizar nombre y descripción del evento\",\"7EhE4k\":\"Actualizar etiqueta\",\"NPQWj8\":\"Actualizar ubicación\",\"75+lpR\":[\"Actualización: \",[\"subjectTitle\"],\" — cambios en la programación\"],\"UOGHdA\":[\"Actualización: \",[\"subjectTitle\"],\" — hora de la sesión cambiada\"],\"ogoTrw\":[\"Se actualizaron \",[\"count\"],\" fecha(s)\"],\"dDuona\":[\"Se actualizó la capacidad de \",[\"count\"],\" fecha(s)\"],\"FT3LSc\":[\"Se actualizó la etiqueta de \",[\"count\"],\" fecha(s)\"],\"8EcY1g\":[\"Ubicación actualizada para \",[\"count\"],\" sesión(es)\"],\"gJQsLv\":\"Sube una imagen de portada para tu organizador\",\"4kEGqW\":\"Sube un logo para tu organizador\",\"lnCMdg\":\"Subir imagen\",\"29w7p6\":\"Subiendo imagen...\",\"HtrFfw\":\"La URL es obligatoria\",\"vzWC39\":\"USB\",\"td5pxI\":\"Escáner USB activo\",\"dyTklH\":\"Escáner USB en pausa\",\"OHJXlK\":\"Use <0>plantillas Liquid para personalizar sus correos electrónicos\",\"g0WJMu\":\"Usar lista para todas las fechas\",\"0k4cdb\":\"Usar detalles del pedido para todos los asistentes. Los nombres y correos de los asistentes coincidirán con la información del comprador.\",\"MKK5oI\":\"¿Usar la lista para todas las fechas o crear una lista para esta fecha?\",\"bA31T4\":\"Usar los datos del comprador para todos los asistentes\",\"rnoQsz\":\"Usado para bordes, resaltados y estilo del código QR\",\"BV4L/Q\":\"Analíticas UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validando tu número de IVA...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Número de IVA\",\"pnVh83\":\"Número de IVA\",\"CabI04\":\"El número de IVA no debe contener espacios\",\"PMhxAR\":\"El número de IVA debe comenzar con un código de país de 2 letras seguido de 8-15 caracteres alfanuméricos (p. ej., ES12345678A)\",\"gPgdNV\":\"Número de IVA validado correctamente\",\"RUMiLy\":\"Falló la validación del número de IVA\",\"vqji3Y\":\"Falló la validación del número de IVA. Por favor, verifica tu número de IVA.\",\"8dENF9\":\"IVA sobre tarifa\",\"ZutOKU\":\"Tasa de IVA\",\"+KJZt3\":\"Registrado para IVA\",\"Nfbg76\":\"Configuración del IVA guardada exitosamente\",\"UvYql/\":\"Configuración de IVA guardada. Estamos validando tu número de IVA en segundo plano.\",\"bXn1Jz\":\"Configuración de IVA actualizada\",\"tJylUv\":\"Tratamiento del IVA para Tarifas de la Plataforma\",\"FlGprQ\":\"Tratamiento del IVA para tarifas de la plataforma: Las empresas registradas para el IVA en la UE pueden usar el mecanismo de inversión del sujeto pasivo (0% - Artículo 196 de la Directiva del IVA 2006/112/CE). Las empresas no registradas para el IVA se les cobra el IVA irlandés del 23%.\",\"516oLj\":\"Servicio de validación de IVA temporalmente no disponible\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"IVA: no registrado\",\"AdWhjZ\":\"Código de verificación\",\"QDEWii\":\"Verificado\",\"wCKkSr\":\"Verificar correo\",\"/IBv6X\":\"Verifica tu correo electrónico\",\"e/cvV1\":\"Verificando...\",\"fROFIL\":\"Vietnamita\",\"p5nYkr\":\"Ver todo\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Ver todas las capacidades\",\"RnvnDc\":\"Ver todos los mensajes enviados en la plataforma\",\"+WFMis\":\"Ver y descargar informes de todos sus eventos. Solo se incluyen pedidos completados.\",\"c7VN/A\":\"Ver respuestas\",\"SZw9tS\":\"Ver detalles\",\"9+84uW\":[\"Ver detalles de \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Ver evento\",\"c6SXHN\":\"Ver página del evento\",\"n6EaWL\":\"Ver registros\",\"OaKTzt\":\"Ver mapa\",\"zNZNMs\":\"Ver mensaje\",\"67OJ7t\":\"Ver pedido\",\"tKKZn0\":\"Ver detalles del pedido\",\"KeCXJu\":\"Vea detalles de pedidos, emita reembolsos y reenvíe confirmaciones.\",\"9jnAcN\":\"Ver página principal del organizador\",\"1J/AWD\":\"Ver boleto\",\"N9FyyW\":\"Vea, edite y exporte sus asistentes registrados.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"En espera\",\"quR8Qp\":\"Esperando pago\",\"KrurBH\":\"Esperando escaneo…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de espera activada\",\"TwnTPy\":\"Oferta de lista de espera expirada\",\"NzIvKm\":\"Lista de espera activada\",\"aUi/Dz\":\"Advertencia: Esta es la configuración predeterminada del sistema. Los cambios afectarán a todas las cuentas que no tengan una configuración específica asignada.\",\"qeygIa\":\"Mi\",\"aT/44s\":\"No pudimos copiar esa conexión de Stripe. Vuelve a intentarlo.\",\"RRZDED\":\"No pudimos encontrar pedidos asociados a este correo electrónico.\",\"2RZK9x\":\"No pudimos encontrar el pedido que busca. El enlace puede haber expirado o los detalles del pedido pueden haber cambiado.\",\"nefMIK\":\"No pudimos encontrar la entrada que busca. El enlace puede haber expirado o los detalles de la entrada pueden haber cambiado.\",\"miysJh\":\"No pudimos encontrar este pedido. Puede haber sido eliminado.\",\"ADsQ23\":\"No pudimos conectar con Stripe en este momento. Inténtalo de nuevo en un momento.\",\"HJKdzP\":\"Tuvimos un problema al cargar esta página. Por favor, inténtalo de nuevo.\",\"jegrvW\":\"Nos asociamos con Stripe para enviar los pagos directamente a tu cuenta bancaria.\",\"IfN2Qo\":\"Recomendamos un logo cuadrado con dimensiones mínimas de 200x200px\",\"wJzo/w\":\"Recomendamos dimensiones de 400px por 400px y un tamaño máximo de archivo de 5MB\",\"KRCDqH\":\"Usamos cookies para entender cómo se utiliza el sitio y para mejorar tu experiencia.\",\"x8rEDQ\":\"No pudimos validar tu número de IVA después de múltiples intentos. Continuaremos intentando en segundo plano. Por favor, vuelve a verificar más tarde.\",\"iy+M+c\":[\"Te avisaremos por correo electrónico si queda una plaza disponible para \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Abriremos un redactor de mensajes con una plantilla rellenada después de guardar. Tú lo revisas y lo envías — nada se envía automáticamente.\",\"q1BizZ\":\"Enviaremos tus entradas a este correo electrónico\",\"ZOmUYW\":\"Validaremos tu número de IVA en segundo plano. Si hay algún problema, te lo haremos saber.\",\"LKjHr4\":[\"Hemos hecho cambios en la programación de \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" afectando a \",[\"affectedCount\"],\" sesion(es).\"],\"Fq/Nx7\":\"Hemos enviado un código de verificación de 5 dígitos a:\",\"GdWB+V\":\"Webhook creado con éxito\",\"2X4ecw\":\"Webhook eliminado con éxito\",\"ndBv0v\":\"Integraciones de webhook\",\"CThMKa\":\"Registros del Webhook\",\"I0adYQ\":\"Secreto de firma del Webhook\",\"nuh/Wq\":\"URL del Webhook\",\"8BMPMe\":\"El webhook no enviará notificaciones\",\"FSaY52\":\"El webhook enviará notificaciones\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Sitio web\",\"0f7U0k\":\"Mié\",\"VAcXNz\":\"Miércoles\",\"64X6l4\":\"semana\",\"4XSc4l\":\"Semanal\",\"IAUiSh\":\"semanas\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bienvenido de nuevo\",\"QDWsl9\":[\"Bienvenido a \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bienvenido a \",[\"0\"],\", aquí hay una lista de todos tus eventos\"],\"DDbx7K\":\"Bienestar\",\"ywRaYa\":\"¿A qué hora?\",\"FaSXqR\":\"¿Qué tipo de evento?\",\"0WyYF4\":\"Lo que ve el personal no autenticado\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Cuando se elimina un registro de entrada\",\"RPe6bE\":\"Cuando se cancela una fecha en un evento recurrente\",\"Gmd0hv\":\"Cuando se crea un nuevo asistente\",\"zyIyPe\":\"Cuando se crea un nuevo evento\",\"Lc18qn\":\"Cuando se crea un nuevo pedido\",\"dfkQIO\":\"Cuando se crea un nuevo producto\",\"8OhzyY\":\"Cuando se elimina un producto\",\"tRXdQ9\":\"Cuando se actualiza un producto\",\"9L9/28\":\"Cuando un producto se agota, los clientes pueden unirse a una lista de espera para recibir un aviso cuando haya plazas disponibles.\",\"Q7CWxp\":\"Cuando se cancela un asistente\",\"IuUoyV\":\"Cuando un asistente se registra\",\"nBVOd7\":\"Cuando se actualiza un asistente\",\"t7cuMp\":\"Cuando se archiva un evento\",\"gtoSzE\":\"Cuando se actualiza un evento\",\"ny2r8d\":\"Cuando se cancela un pedido\",\"c9RYbv\":\"Cuando un pedido se marca como pagado\",\"ejMDw1\":\"Cuando se reembolsa un pedido\",\"fVPt0F\":\"Cuando se actualiza un pedido\",\"bcYlvb\":\"Cuándo cierra el check-in\",\"XIG669\":\"Cuándo abre el check-in\",\"403wpZ\":\"Cuando está habilitado, los nuevos eventos permitirán a los asistentes gestionar sus propios detalles de entrada a través de un enlace seguro. Esto se puede anular por evento.\",\"blXLKj\":\"Cuando está habilitado, los nuevos eventos mostrarán una casilla de aceptación de marketing durante el checkout. Esto se puede anular por evento.\",\"Kj0Txn\":\"Cuando está habilitado, no se cobrarán comisiones de aplicación en las transacciones de Stripe Connect. Use esto para países donde las comisiones de aplicación no son compatibles.\",\"tMqezN\":\"Si se están procesando los reembolsos\",\"uchB0M\":\"Vista previa del widget\",\"uvIqcj\":\"Taller\",\"EpknJA\":\"Escribe tu mensaje aquí...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"año\",\"zkWmBh\":\"Anual\",\"+BGee5\":\"años\",\"X/azM1\":\"Sí - Tengo un número de registro de IVA de la UE válido\",\"Tz5oXG\":\"Sí, cancelar mi pedido\",\"QlSZU0\":[\"Estás suplantando a <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Está emitiendo un reembolso parcial. Al cliente se le reembolsará \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Puede configurar comisiones de servicio adicionales e impuestos en la configuración de su cuenta.\",\"rj3A7+\":\"Puedes anular esto para fechas individuales más tarde.\",\"paWwQ0\":\"Aún puede ofrecer tickets manualmente si es necesario.\",\"jTDzpA\":\"No puedes archivar el último organizador activo de tu cuenta.\",\"5VGIlq\":\"Ha alcanzado su límite de mensajería.\",\"casL1O\":\"Has añadido impuestos y tarifas a un producto gratuito. ¿Te gustaría eliminarlos?\",\"9jJNZY\":\"Debes reconocer tus responsabilidades antes de guardar\",\"pCLes8\":\"Debe aceptar recibir mensajes\",\"FVTVBy\":\"Debes verificar tu dirección de correo electrónico antes de poder actualizar el estado del organizador.\",\"ze4bi/\":\"Necesitas crear al menos una sesión antes de poder añadir asistentes a este evento recurrente.\",\"w65ZgF\":\"Necesitas verificar el correo electrónico de tu cuenta antes de poder modificar plantillas de correo.\",\"FRl8Jv\":\"Debes verificar el correo electrónico de tu cuenta antes de poder enviar mensajes.\",\"88cUW+\":\"Usted recibe\",\"O6/3cu\":\"Podrás configurar fechas, programaciones y reglas de recurrencia en el siguiente paso.\",\"zKAheG\":\"Estás cambiando horarios de sesión\",\"MNFIxz\":[\"¡Vas a ir a \",[\"0\"],\"!\"],\"qGZz0m\":\"¡Estás en la lista de espera!\",\"/5HL6k\":\"¡Se te ha ofrecido un lugar!\",\"gbjFFH\":\"Has cambiado la hora de la sesión\",\"p/Sa0j\":\"Su cuenta tiene límites de mensajería. Para aumentar sus límites, contáctenos en\",\"x/xjzn\":\"Tus afiliados se han exportado exitosamente.\",\"TF37u6\":\"Tus asistentes se han exportado con éxito.\",\"79lXGw\":\"Tu lista de check-in se ha creado exitosamente. Comparte el enlace de abajo con tu personal de check-in.\",\"BnlG9U\":\"Tu pedido actual se perderá.\",\"nBqgQb\":\"Tu correo electrónico\",\"GG1fRP\":\"¡Tu evento está en vivo!\",\"ifRqmm\":\"¡Tu mensaje se ha enviado exitosamente!\",\"0/+Nn9\":\"Sus mensajes aparecerán aquí\",\"/Rj5P4\":\"Tu nombre\",\"PFjJxY\":\"Tu nueva contraseña debe tener al menos 8 caracteres.\",\"gzrCuN\":\"Los detalles de su pedido han sido actualizados. Se ha enviado un correo electrónico de confirmación a la nueva dirección de correo.\",\"naQW82\":\"Tu pedido ha sido cancelado.\",\"bhlHm/\":\"Tu pedido está esperando el pago\",\"XeNum6\":\"Tus pedidos se han exportado con éxito.\",\"Xd1R1a\":\"La dirección de tu organizador\",\"WWYHKD\":\"Su pago está protegido con encriptación de nivel bancario\",\"5b3QLi\":\"Su plan\",\"N4Zkqc\":\"Tu filtro de fecha guardado ya no está disponible — mostrando todas las fechas.\",\"FNO5uZ\":\"Tu entrada sigue siendo válida — no es necesaria ninguna acción a menos que la nueva hora no te convenga. Responde a este correo si tienes alguna pregunta.\",\"CnZ3Ou\":\"Tus entradas han sido confirmadas.\",\"EmFsMZ\":\"Tu número de IVA está en cola para validación\",\"QBlhh4\":\"Tu número de IVA será validado cuando guardes\",\"fT9VLt\":\"Tu oferta de la lista de espera ha expirado y no pudimos completar tu pedido. Vuelve a unirte a la lista de espera para recibir aviso cuando haya más plazas disponibles.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Aún no hay nada que mostrar'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>retirado con éxito\"],\"KMgp2+\":[[\"0\"],\" disponible\"],\"Pmr5xp\":[[\"0\"],\" creado correctamente\"],\"FImCSc\":[[\"0\"],\" actualizado correctamente\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" días, \",[\"hours\"],\" horas, \",[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"f3RdEk\":[[\"hours\"],\" horas, \",[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"fyE7Au\":[[\"minutos\"],\" minutos y \",[\"segundos\"],\" segundos\"],\"NlQ0cx\":[\"El primer evento de \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://tu-sitio-web.com\",\"qnSLLW\":\"<0>Por favor, introduce el precio sin incluir impuestos y tasas.<1>Los impuestos y tasas se pueden agregar a continuación.\",\"ZjMs6e\":\"<0>El número de productos disponibles para este producto<1>Este valor se puede sobrescribir si hay <2>Límites de Capacidad asociados con este producto.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutos y 0 segundos\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 calle principal\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Un campo de fecha. Perfecto para pedir una fecha de nacimiento, etc.\",\"6euFZ/\":[\"Un \",[\"type\"],\" predeterminado se aplica automáticamente a todos los nuevos productos. Puede sobrescribir esto por cada producto.\"],\"SMUbbQ\":\"Una entrada desplegable permite solo una selección\",\"qv4bfj\":\"Una tarifa, como una tarifa de reserva o una tarifa de servicio\",\"POT0K/\":\"Un monto fijo por producto. Ej., $0.50 por producto\",\"f4vJgj\":\"Una entrada de texto de varias líneas\",\"OIPtI5\":\"Un porcentaje del precio del producto. Ej., 3.5% del precio del producto\",\"ZthcdI\":\"Un código promocional sin descuento puede usarse para revelar productos ocultos.\",\"AG/qmQ\":\"Una opción de Radio tiene múltiples opciones pero solo se puede seleccionar una.\",\"h179TP\":\"Una breve descripción del evento que se mostrará en los resultados del motor de búsqueda y al compartir en las redes sociales. De forma predeterminada, se utilizará la descripción del evento.\",\"WKMnh4\":\"Una entrada de texto de una sola línea\",\"BHZbFy\":\"Una sola pregunta por pedido. Ej., ¿Cuál es su dirección de envío?\",\"Fuh+dI\":\"Una sola pregunta por producto. Ej., ¿Cuál es su talla de camiseta?\",\"RlJmQg\":\"Un impuesto estándar, como el IVA o el GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Aceptar transferencias bancarias, cheques u otros métodos de pago offline\",\"hrvLf4\":\"Aceptar pagos con tarjeta de crédito a través de Stripe\",\"bfXQ+N\":\"Aceptar la invitacion\",\"AeXO77\":\"Cuenta\",\"lkNdiH\":\"Nombre de la cuenta\",\"Puv7+X\":\"Configuraciones de la cuenta\",\"OmylXO\":\"Cuenta actualizada exitosamente\",\"7L01XJ\":\"Acciones\",\"FQBaXG\":\"Activar\",\"5T2HxQ\":\"Fecha de activación\",\"F6pfE9\":\"Activo\",\"/PN1DA\":\"Agregue una descripción para esta lista de registro\",\"0/vPdA\":\"Agrega cualquier nota sobre el asistente. Estas no serán visibles para el asistente.\",\"Or1CPR\":\"Agrega cualquier nota sobre el asistente...\",\"l3sZO1\":\"Agregue notas sobre el pedido. Estas no serán visibles para el cliente.\",\"xMekgu\":\"Agregue notas sobre el pedido...\",\"PGPGsL\":\"Añadir descripción\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Agregue instrucciones para pagos offline (por ejemplo, detalles de transferencia bancaria, dónde enviar cheques, fechas límite de pago)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Agregar nuevo\",\"TZxnm8\":\"Agregar opción\",\"24l4x6\":\"Añadir producto\",\"8q0EdE\":\"Añadir producto a la categoría\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Agregar impuesto o tarifa\",\"goOKRY\":\"Agregar nivel\",\"oZW/gT\":\"Agregar al calendario\",\"pn5qSs\":\"Información adicional\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"DIRECCIÓN\",\"NY/x1b\":\"Dirección Línea 1\",\"POdIrN\":\"Dirección Línea 1\",\"cormHa\":\"Línea de dirección 2\",\"gwk5gg\":\"Línea de dirección 2\",\"U3pytU\":\"Administración\",\"HLDaLi\":\"Los usuarios administradores tienen acceso completo a los eventos y la configuración de la cuenta.\",\"W7AfhC\":\"Todos los asistentes a este evento.\",\"cde2hc\":\"Todos los productos\",\"5CQ+r0\":\"Permitir que los asistentes asociados con pedidos no pagados se registren\",\"ipYKgM\":\"Permitir la indexación en motores de búsqueda\",\"LRbt6D\":\"Permitir que los motores de búsqueda indexen este evento\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Increíble, evento, palabras clave...\",\"hehnjM\":\"Cantidad\",\"R2O9Rg\":[\"Importe pagado (\",[\"0\"],\")\"],\"V7MwOy\":\"Se produjo un error al cargar la página.\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Ocurrió un error inesperado.\",\"byKna+\":\"Ocurrió un error inesperado. Inténtalo de nuevo.\",\"ubdMGz\":\"Cualquier consulta de los titulares de productos se enviará a esta dirección de correo electrónico. Esta también se usará como la dirección de \\\"respuesta a\\\" para todos los correos electrónicos enviados desde este evento\",\"aAIQg2\":\"Apariencia\",\"Ym1gnK\":\"aplicado\",\"sy6fss\":[\"Se aplica a \",[\"0\"],\" productos\"],\"kadJKg\":\"Se aplica a 1 producto\",\"DB8zMK\":\"Aplicar\",\"GctSSm\":\"Aplicar código promocional\",\"ARBThj\":[\"Aplicar este \",[\"type\"],\" a todos los nuevos productos\"],\"S0ctOE\":\"Archivar evento\",\"TdfEV7\":\"Archivado\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"¿Está seguro de que desea activar este asistente?\",\"TvkW9+\":\"¿Está seguro de que desea archivar este evento?\",\"/CV2x+\":\"¿Está seguro de que desea cancelar este asistente? Esto anulará su boleto.\",\"YgRSEE\":\"¿Estás seguro de que deseas eliminar este código de promoción?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"¿Estás seguro de que quieres hacer este borrador de evento? Esto hará que el evento sea invisible para el público.\",\"mEHQ8I\":\"¿Estás seguro de que quieres hacer público este evento? Esto hará que el evento sea visible para el público.\",\"s4JozW\":\"¿Está seguro de que desea restaurar este evento? Será restaurado como un evento borrador.\",\"vJuISq\":\"¿Estás seguro de que deseas eliminar esta Asignación de Capacidad?\",\"baHeCz\":\"¿Está seguro de que desea eliminar esta lista de registro?\",\"LBLOqH\":\"Preguntar una vez por pedido\",\"wu98dY\":\"Preguntar una vez por producto\",\"ss9PbX\":\"Asistente\",\"m0CFV2\":\"Detalles de los asistentes\",\"QKim6l\":\"Asistente no encontrado\",\"R5IT/I\":\"Notas del asistente\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Entrada del asistente\",\"9SZT4E\":\"Asistentes\",\"iPBfZP\":\"Asistentes registrados\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Ajuste automático\",\"vZ5qKF\":\"Ajustar automáticamente la altura del widget según el contenido. Cuando está deshabilitado, el widget llenará la altura del contenedor.\",\"4lVaWA\":\"Esperando pago offline\",\"2rHwhl\":\"Esperando pago offline\",\"3wF4Q/\":\"Esperando pago\",\"ioG+xt\":\"En espera de pago\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Impresionante organizador Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Volver a la página del evento\",\"VCoEm+\":\"Atrás para iniciar sesión\",\"k1bLf+\":\"Color de fondo\",\"I7xjqg\":\"Tipo de fondo\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Dirección de facturación\",\"/xC/im\":\"Configuración de facturación\",\"rp/zaT\":\"Portugués brasileño\",\"whqocw\":\"Al registrarte, aceptas nuestras <0>Condiciones de servicio y nuestra <1>Política de privacidad.\",\"bcCn6r\":\"Tipo de cálculo\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Cancelar\",\"Gjt/py\":\"Cancelar cambio de correo electrónico\",\"tVJk4q\":\"Cancelar orden\",\"Os6n2a\":\"Cancelar orden\",\"Mz7Ygx\":[\"Cancelar pedido \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Cancelado\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacidad\",\"V6Q5RZ\":\"Asignación de Capacidad creada con éxito\",\"k5p8dz\":\"Asignación de Capacidad eliminada con éxito\",\"nDBs04\":\"Gestión de capacidad\",\"ddha3c\":\"Las categorías le permiten agrupar productos. Por ejemplo, puede tener una categoría para \\\"Entradas\\\" y otra para \\\"Mercancía\\\".\",\"iS0wAT\":\"Las categorías le ayudan a organizar sus productos. Este título se mostrará en la página pública del evento.\",\"eorM7z\":\"Categorías reordenadas con éxito.\",\"3EXqwa\":\"Categoría creada con éxito\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Cambiar la contraseña\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Registrar \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Registrar entrada y marcar pedido como pagado\",\"QYLpB4\":\"Solo registrar entrada\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"¡Mira este evento!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Lista de registro eliminada con éxito\",\"+hBhWk\":\"La lista de registro ha expirado\",\"mBsBHq\":\"La lista de registro no está activa\",\"vPqpQG\":\"Lista de registro no encontrada\",\"tejfAy\":\"Listas de registro\",\"hD1ocH\":\"URL de registro copiada al portapapeles\",\"CNafaC\":\"Las opciones de casilla de verificación permiten múltiples selecciones\",\"SpabVf\":\"Casillas de verificación\",\"CRu4lK\":\"Registrado\",\"znIg+z\":\"Pagar\",\"1WnhCL\":\"Configuración de pago\",\"6imsQS\":\"Chino simplificado\",\"JjkX4+\":\"Elige un color para tu fondo\",\"/Jizh9\":\"elige una cuenta\",\"3wV73y\":\"Ciudad\",\"FG98gC\":\"Borrar texto de búsqueda\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Haga clic para copiar\",\"yz7wBu\":\"Cerca\",\"62Ciis\":\"Cerrar barra lateral\",\"EWPtMO\":\"Código\",\"ercTDX\":\"El código debe tener entre 3 y 50 caracteres.\",\"oqr9HB\":\"Colapsar este producto cuando la página del evento se cargue inicialmente\",\"jZlrte\":\"Color\",\"Vd+LC3\":\"El color debe ser un código de color hexadecimal válido. Ejemplo: #ffffff\",\"1HfW/F\":\"Colores\",\"VZeG/A\":\"Muy pronto\",\"yPI7n9\":\"Palabras clave separadas por comas que describen el evento. Estos serán utilizados por los motores de búsqueda para ayudar a categorizar e indexar el evento.\",\"NPZqBL\":\"Completar Orden\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"El pago completo\",\"qqWcBV\":\"Terminado\",\"6HK5Ct\":\"Pedidos completados\",\"NWVRtl\":\"Pedidos completados\",\"DwF9eH\":\"Código del componente\",\"Tf55h7\":\"Descuento configurado\",\"7VpPHA\":\"Confirmar\",\"ZaEJZM\":\"Confirmar cambio de correo electrónico\",\"yjkELF\":\"Confirmar nueva contraseña\",\"xnWESi\":\"Confirmar Contraseña\",\"p2/GCq\":\"confirmar Contraseña\",\"wnDgGj\":\"Confirmando dirección de correo electrónico...\",\"pbAk7a\":\"Conectar raya\",\"UMGQOh\":\"Conéctate con Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Detalles de conexión\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continuar\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Texto del botón Continuar\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"copiado\",\"T5rdis\":\"Copiado al portapapeles\",\"he3ygx\":\"Copiar\",\"r2B2P8\":\"Copiar URL de registro\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copiar link\",\"E6nRW7\":\"Copiar URL\",\"JNCzPW\":\"País\",\"IF7RiR\":\"Cubrir\",\"hYgDIe\":\"Crear\",\"b9XOHo\":[\"Crear \",[\"0\"]],\"k9RiLi\":\"Crear un producto\",\"6kdXbW\":\"Crear un código promocional\",\"n5pRtF\":\"Crear un boleto\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"crear un organizador\",\"ipP6Ue\":\"Crear asistente\",\"VwdqVy\":\"Crear Asignación de Capacidad\",\"EwoMtl\":\"Crear categoría\",\"XletzW\":\"Crear categoría\",\"WVbTwK\":\"Crear lista de registro\",\"uN355O\":\"Crear evento\",\"BOqY23\":\"Crear nuevo\",\"kpJAeS\":\"Crear organizador\",\"a0EjD+\":\"Crear producto\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Crear código promocional\",\"B3Mkdt\":\"Crear pregunta\",\"UKfi21\":\"Crear impuesto o tarifa\",\"d+F6q9\":\"Creado\",\"Q2lUR2\":\"Divisa\",\"DCKkhU\":\"Contraseña actual\",\"uIElGP\":\"URL de mapas personalizados\",\"UEqXyt\":\"Rango personalizado\",\"876pfE\":\"Cliente\",\"QOg2Sf\":\"Personalice la configuración de correo electrónico y notificaciones para este evento\",\"Y9Z/vP\":\"Personaliza la página de inicio del evento y los mensajes de pago\",\"2E2O5H\":\"Personaliza las configuraciones diversas para este evento.\",\"iJhSxe\":\"Personaliza la configuración de SEO para este evento\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Zona peligrosa\",\"ZQKLI1\":\"Zona de Peligro\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Fecha\",\"JvUngl\":\"Fecha y hora\",\"JJhRbH\":\"Capacidad del primer día\",\"cnGeoo\":\"Borrar\",\"jRJZxD\":\"Eliminar Capacidad\",\"VskHIx\":\"Eliminar categoría\",\"Qrc8RZ\":\"Eliminar lista de registro\",\"WHf154\":\"Eliminar código\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Descripción\",\"YC3oXa\":\"Descripción para el personal de registro\",\"URmyfc\":\"Detalles\",\"1lRT3t\":\"Deshabilitar esta capacidad rastreará las ventas pero no las detendrá cuando se alcance el límite\",\"H6Ma8Z\":\"Descuento\",\"ypJ62C\":\"Descuento %\",\"3LtiBI\":[\"Descuento en \",[\"0\"]],\"C8JLas\":\"Tipo de descuento\",\"1QfxQT\":\"Descartar\",\"DZlSLn\":\"Etiqueta del documento\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donación / Producto de paga lo que quieras\",\"OvNbls\":\"Descargar .ics\",\"kodV18\":\"Descargar CSV\",\"CELKku\":\"Descargar factura\",\"LQrXcu\":\"Descargar factura\",\"QIodqd\":\"Descargar código QR\",\"yhjU+j\":\"Descargando factura\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Selección desplegable\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicar evento\",\"3ogkAk\":\"Duplicar evento\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Duplicar opciones\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Madrugador\",\"ePK91l\":\"Editar\",\"N6j2JH\":[\"Editar \",[\"0\"]],\"kBkYSa\":\"Editar Capacidad\",\"oHE9JT\":\"Editar Asignación de Capacidad\",\"j1Jl7s\":\"Editar categoría\",\"FU1gvP\":\"Editar lista de registro\",\"iFgaVN\":\"Editar código\",\"jrBSO1\":\"Editar organizador\",\"tdD/QN\":\"Editar producto\",\"n143Tq\":\"Editar categoría de producto\",\"9BdS63\":\"Editar código promocional\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Editar pregunta\",\"poTr35\":\"Editar usuario\",\"GTOcxw\":\"editar usuario\",\"pqFrv2\":\"p.ej. 2,50 por $2,50\",\"3yiej1\":\"p.ej. 23,5 para 23,5%\",\"O3oNi5\":\"Correo electrónico\",\"VxYKoK\":\"Configuración de correo electrónico y notificaciones\",\"ATGYL1\":\"Dirección de correo electrónico\",\"hzKQCy\":\"Dirección de correo electrónico\",\"HqP6Qf\":\"Cambio de correo electrónico cancelado exitosamente\",\"mISwW1\":\"Cambio de correo electrónico pendiente\",\"APuxIE\":\"Confirmación por correo electrónico reenviada\",\"YaCgdO\":\"La confirmación por correo electrónico se reenvió correctamente\",\"jyt+cx\":\"Mensaje de pie de página de correo electrónico\",\"I6F3cp\":\"Correo electrónico no verificado\",\"NTZ/NX\":\"Código de incrustación\",\"4rnJq4\":\"Script de incrustación\",\"8oPbg1\":\"Habilitar facturación\",\"j6w7d/\":\"Activar esta capacidad para detener las ventas de productos cuando se alcance el límite\",\"VFv2ZC\":\"Fecha de finalización\",\"237hSL\":\"Terminado\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Inglés\",\"MhVoma\":\"Ingrese un monto sin incluir impuestos ni tarifas.\",\"SlfejT\":\"Error\",\"3Z223G\":\"Error al confirmar la dirección de correo electrónico\",\"a6gga1\":\"Error al confirmar el cambio de correo electrónico\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evento\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Fecha del Evento\",\"0Zptey\":\"Valores predeterminados de eventos\",\"QcCPs8\":\"Detalles del evento\",\"6fuA9p\":\"Evento duplicado con éxito\",\"AEuj2m\":\"Página principal del evento\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Ubicación del evento y detalles del lugar\",\"OopDbA\":\"Event page\",\"4/If97\":\"Error al actualizar el estado del evento. Por favor, inténtelo de nuevo más tarde\",\"btxLWj\":\"Estado del evento actualizado\",\"nMU2d3\":\"URL del evento\",\"tst44n\":\"Eventos\",\"sZg7s1\":\"Fecha de vencimiento\",\"KnN1Tu\":\"Vence\",\"uaSvqt\":\"Fecha de caducidad\",\"GS+Mus\":\"Exportar\",\"9xAp/j\":\"No se pudo cancelar el asistente\",\"ZpieFv\":\"No se pudo cancelar el pedido\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"No se pudo descargar la factura. Inténtalo de nuevo.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"No se pudo cargar la lista de registro\",\"ZQ15eN\":\"No se pudo reenviar el correo electrónico del ticket\",\"ejXy+D\":\"Error al ordenar productos\",\"PLUB/s\":\"Tarifa\",\"/mfICu\":\"Honorarios\",\"LyFC7X\":\"Filtrar pedidos\",\"cSev+j\":\"Filtros\",\"CVw2MU\":[\"Filtros (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Primer número de factura\",\"V1EGGU\":\"Primer Nombre\",\"kODvZJ\":\"Primer Nombre\",\"S+tm06\":\"El nombre debe tener entre 1 y 50 caracteres.\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Usado por primera vez\",\"TpqW74\":\"Fijado\",\"irpUxR\":\"Cantidad fija\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"¿Has olvidado tu contraseña?\",\"2POOFK\":\"Gratis\",\"P/OAYJ\":\"Producto gratuito\",\"vAbVy9\":\"Producto gratuito, no se requiere información de pago\",\"nLC6tu\":\"Francés\",\"Weq9zb\":\"General\",\"DDcvSo\":\"Alemán\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"volver al perfil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Calendar\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Ventas brutas\",\"yRg26W\":\"Ventas brutas\",\"R4r4XO\":\"Huéspedes\",\"26pGvx\":\"¿Tienes un código de promoción?\",\"V7yhws\":\"hola@awesome-events.com\",\"6K/IHl\":\"Aquí hay un ejemplo de cómo puede usar el componente en su aplicación.\",\"Y1SSqh\":\"Aquí está el componente React que puede usar para incrustar el widget en su aplicación.\",\"QuhVpV\":[\"Hola \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Oculto de la vista del público\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Las preguntas ocultas sólo son visibles para el organizador del evento y no para el cliente.\",\"vLyv1R\":\"Esconder\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Ocultar producto después de la fecha de finalización de la venta\",\"06s3w3\":\"Ocultar producto antes de la fecha de inicio de la venta\",\"axVMjA\":\"Ocultar producto a menos que el usuario tenga un código promocional aplicable\",\"ySQGHV\":\"Ocultar producto cuando esté agotado\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Ocultar este producto a los clientes\",\"Da29Y6\":\"Ocultar esta pregunta\",\"fvDQhr\":\"Ocultar este nivel a los usuarios\",\"lNipG+\":\"Ocultar un producto impedirá que los usuarios lo vean en la página del evento.\",\"ZOBwQn\":\"Diseño de página de inicio\",\"PRuBTd\":\"Diseñador de página de inicio\",\"YjVNGZ\":\"Vista previa de la página de inicio\",\"c3E/kw\":\"Homero\",\"8k8Njd\":\"Cuántos minutos tiene el cliente para completar su pedido. Recomendamos al menos 15 minutos.\",\"ySxKZe\":\"¿Cuántas veces se puede utilizar este código?\",\"dZsDbK\":[\"Límite de caracteres HTML excedido: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Acepto los <0>términos y condiciones\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Si está habilitado, el personal de registro puede marcar a los asistentes como registrados o marcar el pedido como pagado y registrar a los asistentes. Si está deshabilitado, los asistentes asociados con pedidos no pagados no pueden registrarse.\",\"muXhGi\":\"Si está habilitado, el organizador recibirá una notificación por correo electrónico cuando se realice un nuevo pedido.\",\"6fLyj/\":\"Si no solicitó este cambio, cambie inmediatamente su contraseña.\",\"n/ZDCz\":\"Imagen eliminada exitosamente\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Imagen cargada exitosamente\",\"VyUuZb\":\"URL de imagen\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactivo\",\"T0K0yl\":\"Los usuarios inactivos no pueden iniciar sesión.\",\"kO44sp\":\"Incluya los detalles de conexión para su evento en línea. Estos detalles se mostrarán en la página de resumen del pedido y en la página del boleto del asistente.\",\"FlQKnG\":\"Incluye impuestos y tasas en el precio.\",\"Vi+BiW\":[\"Incluye \",[\"0\"],\" productos\"],\"lpm0+y\":\"Incluye 1 producto\",\"UiAk5P\":\"Insertar imagen\",\"OyLdaz\":\"¡Invitación resentida!\",\"HE6KcK\":\"¡Invitación revocada!\",\"SQKPvQ\":\"Invitar usuario\",\"bKOYkd\":\"Factura descargada con éxito\",\"alD1+n\":\"Notas de la factura\",\"kOtCs2\":\"Numeración de facturas\",\"UZ2GSZ\":\"Configuración de facturación\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Artículo\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etiqueta\",\"vXIe7J\":\"Idioma\",\"2LMsOq\":\"Últimos 12 meses\",\"vfe90m\":\"Últimos 14 días\",\"aK4uBd\":\"Últimas 24 horas\",\"uq2BmQ\":\"Últimos 30 días\",\"bB6Ram\":\"Últimas 48 horas\",\"VlnB7s\":\"Últimos 6 meses\",\"ct2SYD\":\"Últimos 7 días\",\"XgOuA7\":\"Últimos 90 días\",\"I3yitW\":\"Último acceso\",\"1ZaQUH\":\"Apellido\",\"UXBCwc\":\"Apellido\",\"tKCBU0\":\"Última vez usado\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Dejar en blanco para usar la palabra predeterminada \\\"Factura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Cargando...\",\"wJijgU\":\"Ubicación\",\"sQia9P\":\"Acceso\",\"zUDyah\":\"Iniciando sesión\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Cerrar sesión\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Hacer obligatoria la dirección de facturación durante el pago\",\"MU3ijv\":\"Haz que esta pregunta sea obligatoria\",\"wckWOP\":\"Administrar\",\"onpJrA\":\"Gestionar asistente\",\"n4SpU5\":\"Administrar evento\",\"WVgSTy\":\"Gestionar pedido\",\"1MAvUY\":\"Gestionar las configuraciones de pago y facturación para este evento.\",\"cQrNR3\":\"Administrar perfil\",\"AtXtSw\":\"Gestionar impuestos y tasas que se pueden aplicar a sus productos\",\"ophZVW\":\"Gestionar entradas\",\"DdHfeW\":\"Administre los detalles de su cuenta y la configuración predeterminada\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Gestiona tus usuarios y sus permisos\",\"1m+YT2\":\"Las preguntas obligatorias deben responderse antes de que el cliente pueda realizar el pago.\",\"Dim4LO\":\"Agregar manualmente un asistente\",\"e4KdjJ\":\"Agregar asistente manualmente\",\"vFjEnF\":\"Marcar como pagado\",\"g9dPPQ\":\"Máximo por pedido\",\"l5OcwO\":\"Asistente del mensaje\",\"Gv5AMu\":\"Mensaje a los asistentes\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Mensaje del comprador\",\"tNZzFb\":\"Contenido del mensaje\",\"lYDV/s\":\"Enviar mensajes a asistentes individuales\",\"V7DYWd\":\"Mensaje enviado\",\"t7TeQU\":\"Mensajes\",\"xFRMlO\":\"Mínimo por pedido\",\"QYcUEf\":\"Precio mínimo\",\"RDie0n\":\"Misceláneo\",\"mYLhkl\":\"Otras configuraciones\",\"KYveV8\":\"Cuadro de texto de varias líneas\",\"VD0iA7\":\"Múltiples opciones de precio. Perfecto para productos anticipados, etc.\",\"/bhMdO\":\"Mi increíble descripción del evento...\",\"vX8/tc\":\"El increíble título de mi evento...\",\"hKtWk2\":\"Mi perfil\",\"fj5byd\":\"No disponible\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nombre\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navegar al asistente\",\"qqeAJM\":\"Nunca\",\"7vhWI8\":\"Nueva contraseña\",\"1UzENP\":\"No\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"No hay eventos archivados para mostrar.\",\"q2LEDV\":\"No se encontraron asistentes para este pedido.\",\"zlHa5R\":\"No se han añadido asistentes a este pedido.\",\"Wjz5KP\":\"No hay asistentes para mostrar\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"No hay Asignaciones de Capacidad\",\"a/gMx2\":\"No hay listas de registro\",\"tMFDem\":\"No hay datos disponibles\",\"6Z/F61\":\"No hay datos para mostrar. Por favor selecciona un rango de fechas\",\"fFeCKc\":\"Sin descuento\",\"HFucK5\":\"No hay eventos finalizados para mostrar.\",\"yAlJXG\":\"No hay eventos para mostrar\",\"GqvPcv\":\"No hay filtros disponibles\",\"KPWxKD\":\"No hay mensajes para mostrar\",\"J2LkP8\":\"No hay pedidos para mostrar\",\"RBXXtB\":\"No hay métodos de pago disponibles actualmente. Por favor, contacte al organizador del evento para obtener ayuda.\",\"ZWEfBE\":\"No se requiere pago\",\"ZPoHOn\":\"No hay ningún producto asociado con este asistente.\",\"Ya1JhR\":\"No hay productos disponibles en esta categoría.\",\"FTfObB\":\"Aún no hay productos\",\"+Y976X\":\"No hay códigos promocionales para mostrar\",\"MAavyl\":\"No hay preguntas respondidas por este asistente.\",\"SnlQeq\":\"No se han hecho preguntas para este pedido.\",\"Ev2r9A\":\"No hay resultados\",\"gk5uwN\":\"Sin resultados de búsqueda\",\"RHyZUL\":\"Sin resultados de búsqueda.\",\"RY2eP1\":\"No se han agregado impuestos ni tarifas.\",\"EdQY6l\":\"Ninguno\",\"OJx3wK\":\"No disponible\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notas\",\"jtrY3S\":\"Nada que mostrar aún\",\"hFwWnI\":\"Configuración de las notificaciones\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notificar al organizador de nuevos pedidos\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Número de días permitidos para el pago (dejar en blanco para omitir los términos de pago en las facturas)\",\"n86jmj\":\"Prefijo del número\",\"mwe+2z\":\"Los pedidos offline no se reflejan en las estadísticas del evento hasta que el pedido se marque como pagado.\",\"dWBrJX\":\"El pago offline ha fallado. Por favor, inténtelo de nuevo o contacte al organizador del evento.\",\"fcnqjw\":\"Instrucciones de Pago Fuera de Línea\",\"+eZ7dp\":\"Pagos offline\",\"ojDQlR\":\"Información de pagos offline\",\"u5oO/W\":\"Configuración de pagos offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"En venta\",\"Ug4SfW\":\"Una vez que crees un evento, lo verás aquí.\",\"ZxnK5C\":\"Una vez que comiences a recopilar datos, los verás aquí.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"En curso\",\"z+nuVJ\":\"Evento online\",\"WKHW0N\":\"Detalles del evento en línea\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Abrir Página de Check-In\",\"OdnLE4\":\"Abrir barra lateral\",\"ZZEYpT\":[\"Opción \",[\"i\"]],\"oPknTP\":\"Información adicional opcional que aparecerá en todas las facturas (por ejemplo, términos de pago, cargos por pago atrasado, política de devoluciones)\",\"OrXJBY\":\"Prefijo opcional para los números de factura (por ejemplo, INV-)\",\"0zpgxV\":\"Opciones\",\"BzEFor\":\"o\",\"UYUgdb\":\"Orden\",\"mm+eaX\":\"Pedido #\",\"B3gPuX\":\"Orden cancelada\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Fecha de orden\",\"Tol4BF\":\"Detalles del pedido\",\"WbImlQ\":\"El pedido ha sido cancelado y se ha notificado al propietario del pedido.\",\"nAn4Oe\":\"Pedido marcado como pagado\",\"uzEfRz\":\"Notas del pedido\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Pedir Referencia\",\"acIJ41\":\"Estado del pedido\",\"GX6dZv\":\"Resumen del pedido\",\"tDTq0D\":\"Tiempo de espera del pedido\",\"1h+RBg\":\"Pedidos\",\"3y+V4p\":\"Dirección de la organización\",\"GVcaW6\":\"Detalles de la organización\",\"nfnm9D\":\"Nombre de la organización\",\"G5RhpL\":\"Organizador\",\"mYygCM\":\"Se requiere organizador\",\"Pa6G7v\":\"Nombre del organizador\",\"l894xP\":\"Los organizadores solo pueden gestionar eventos y productos. No pueden gestionar usuarios, configuraciones de cuenta o información de facturación.\",\"fdjq4c\":\"Relleno\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Página no encontrada\",\"QbrUIo\":\"Vistas de página\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"pagado\",\"HVW65c\":\"Producto de pago\",\"ZfxaB4\":\"Reembolsado parcialmente\",\"8ZsakT\":\"Contraseña\",\"TUJAyx\":\"La contraseña debe tener un mínimo de 8 caracteres.\",\"vwGkYB\":\"La contraseña debe tener al menos 8 caracteres\",\"BLTZ42\":\"Restablecimiento de contraseña exitoso. Por favor inicie sesión con su nueva contraseña.\",\"f7SUun\":\"Las contraseñas no son similares\",\"aEDp5C\":\"Pegue esto donde desea que aparezca el widget.\",\"+23bI/\":\"Patricio\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Pago\",\"Lg+ewC\":\"Pago y facturación\",\"DZjk8u\":\"Configuración de pago y facturación\",\"lflimf\":\"Período de vencimiento del pago\",\"JhtZAK\":\"Pago fallido\",\"JEdsvQ\":\"Instrucciones de pago\",\"bLB3MJ\":\"Métodos de pago\",\"QzmQBG\":\"Proveedor de pago\",\"lsxOPC\":\"Pago recibido\",\"wJTzyi\":\"Estado del pago\",\"xgav5v\":\"¡Pago exitoso!\",\"R29lO5\":\"Términos de pago\",\"/roQKz\":\"Porcentaje\",\"vPJ1FI\":\"Monto porcentual\",\"xdA9ud\":\"Coloque esto en el de su sitio web.\",\"blK94r\":\"Por favor agregue al menos una opción\",\"FJ9Yat\":\"Por favor verifique que la información proporcionada sea correcta.\",\"TkQVup\":\"Por favor revisa tu correo electrónico y contraseña y vuelve a intentarlo.\",\"sMiGXD\":\"Por favor verifique que su correo electrónico sea válido\",\"Ajavq0\":\"Por favor revise su correo electrónico para confirmar su dirección de correo electrónico.\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Por favor continúa en la nueva pestaña.\",\"hcX103\":\"Por favor, cree un producto\",\"cdR8d6\":\"Por favor, crea un ticket\",\"x2mjl4\":\"Por favor, introduzca una URL de imagen válida que apunte a una imagen.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Tenga en cuenta\",\"C63rRe\":\"Por favor, regresa a la página del evento para comenzar de nuevo.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Por favor, seleccione al menos un producto\",\"igBrCH\":\"Verifique su dirección de correo electrónico para acceder a todas las funciones.\",\"/IzmnP\":\"Por favor, espere mientras preparamos su factura...\",\"MOERNx\":\"Portugués\",\"qCJyMx\":\"Mensaje posterior al pago\",\"g2UNkE\":\"Energizado por\",\"Rs7IQv\":\"Mensaje previo al pago\",\"rdUucN\":\"Vista Previa\",\"a7u1N9\":\"Precio\",\"CmoB9j\":\"Modo de visualización de precios\",\"BI7D9d\":\"Precio no establecido\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Tipo de precio\",\"6RmHKN\":\"Color primario\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Color de texto primario\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Imprimir todas las entradas\",\"DKwDdj\":\"Imprimir boletos\",\"K47k8R\":\"Producto\",\"1JwlHk\":\"Categoría de producto\",\"U61sAj\":\"Categoría de producto actualizada con éxito.\",\"1USFWA\":\"Producto eliminado con éxito\",\"4Y2FZT\":\"Tipo de precio del producto\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Ventas de productos\",\"U/R4Ng\":\"Nivel del producto\",\"sJsr1h\":\"Tipo de producto\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Producto(s)\",\"N0qXpE\":\"Productos\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Productos vendidos\",\"/u4DIx\":\"Productos vendidos\",\"DJQEZc\":\"Productos ordenados con éxito\",\"vERlcd\":\"Perfil\",\"kUlL8W\":\"perfil actualizado con éxito\",\"cl5WYc\":[\"Código promocional \",[\"promo_code\"],\" aplicado\"],\"P5sgAk\":\"Código promocional\",\"yKWfjC\":\"Página de códigos promocionales\",\"RVb8Fo\":\"Códigos promocionales\",\"BZ9GWa\":\"Los códigos promocionales se pueden utilizar para ofrecer descuentos, acceso de preventa o proporcionar acceso especial a su evento.\",\"OP094m\":\"Informe de códigos promocionales\",\"4kyDD5\":\"Proporciona contexto o instrucciones adicionales para esta pregunta. Usa este campo para añadir términos\\ny condiciones, directrices o cualquier información importante que los asistentes deban conocer antes de responder.\",\"toutGW\":\"Código QR\",\"LkMOWF\":\"cantidad disponible\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Pregunta eliminada\",\"avf0gk\":\"Descripción de la pregunta\",\"oQvMPn\":\"Título de la pregunta\",\"enzGAL\":\"Preguntas\",\"ROv2ZT\":\"Preguntas y respuestas\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Opción de radio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipiente\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Reembolso fallido\",\"n10yGu\":\"Orden de reembolso\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Reembolso pendiente\",\"xHpVRl\":\"Estado del reembolso\",\"/BI0y9\":\"Reintegrado\",\"fgLNSM\":\"Registro\",\"9+8Vez\":\"Usos restantes\",\"tasfos\":\"eliminar\",\"t/YqKh\":\"Eliminar\",\"t9yxlZ\":\"Informes\",\"prZGMe\":\"Requerir dirección de facturación\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Reenviar confirmación por correo electrónico\",\"wIa8Qe\":\"Reenviar invitacíon\",\"VeKsnD\":\"Reenviar correo electrónico del pedido\",\"dFuEhO\":\"Reenviar correo del entrada\",\"o6+Y6d\":\"Reenviando...\",\"OfhWJH\":\"Restablecer\",\"RfwZxd\":\"Restablecer la contraseña\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restaurar evento\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Volver a la página del evento\",\"8YBH95\":\"Ganancia\",\"PO/sOY\":\"Revocar invitación\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Fecha de finalización de la venta\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Fecha de inicio de la venta\",\"hBsw5C\":\"Ventas terminadas\",\"kpAzPe\":\"Inicio de ventas\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Guardar\",\"IUwGEM\":\"Guardar cambios\",\"U65fiW\":\"Guardar organizador\",\"UGT5vp\":\"Guardar ajustes\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Busque por nombre del asistente, correo electrónico o número de pedido...\",\"+pr/FY\":\"Buscar por nombre del evento...\",\"3zRbWw\":\"Busque por nombre, correo electrónico o número de pedido...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Buscar por nombre...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Buscar asignaciones de capacidad...\",\"r9M1hc\":\"Buscar listas de registro...\",\"+0Yy2U\":\"Buscar productos\",\"YIix5Y\":\"Buscar...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Color secundario\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Color de texto secundario\",\"02ePaq\":[\"Seleccionar \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Seleccionar categoría...\",\"kWI/37\":\"Seleccionar organizador\",\"ixIx1f\":\"Seleccionar producto\",\"3oSV95\":\"Seleccionar nivel de producto\",\"C4Y1hA\":\"Seleccionar productos\",\"hAjDQy\":\"Seleccionar estado\",\"QYARw/\":\"Seleccionar billete\",\"OMX4tH\":\"Seleccionar boletos\",\"DrwwNd\":\"Seleccionar período de tiempo\",\"O/7I0o\":\"Seleccionar...\",\"JlFcis\":\"Enviar\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Enviar un mensaje\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Enviar Mensaje\",\"D7ZemV\":\"Enviar confirmación del pedido y correo electrónico del billete.\",\"v1rRtW\":\"Enviar prueba\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descripción SEO\",\"/SIY6o\":\"Palabras clave SEO\",\"GfWoKv\":\"Configuración de SEO\",\"rXngLf\":\"Título SEO\",\"/jZOZa\":\"Tarifa de servicio\",\"Bj/QGQ\":\"Fijar un precio mínimo y dejar que los usuarios paguen más si lo desean.\",\"L0pJmz\":\"Establezca el número inicial para la numeración de facturas. Esto no se puede cambiar una vez que las facturas se hayan generado.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Ajustes\",\"Z8lGw6\":\"Compartir\",\"B2V3cA\":\"Compartir evento\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Mostrar cantidad disponible del producto\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Mostrar más\",\"izwOOD\":\"Mostrar impuestos y tarifas por separado\",\"1SbbH8\":\"Se muestra al cliente después de finalizar la compra, en la página de resumen del pedido.\",\"YfHZv0\":\"Se muestra al cliente antes de realizar el pago.\",\"CBBcly\":\"Muestra campos de dirección comunes, incluido el país.\",\"yTnnYg\":\"simpson\",\"TNaCfq\":\"Cuadro de texto de una sola línea\",\"+P0Cn2\":\"Salta este paso\",\"YSEnLE\":\"Herrero\",\"lgFfeO\":\"Agotado\",\"Mi1rVn\":\"Agotado\",\"nwtY4N\":\"Algo salió mal\",\"GRChTw\":\"Algo salió mal al eliminar el impuesto o tarifa\",\"YHFrbe\":\"¡Algo salió mal! Inténtalo de nuevo\",\"kf83Ld\":\"Algo salió mal.\",\"fWsBTs\":\"Algo salió mal. Inténtalo de nuevo.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Lo sentimos, este código de promoción no se reconoce\",\"65A04M\":\"Español\",\"mFuBqb\":\"Producto estándar con precio fijo\",\"D3iCkb\":\"Fecha de inicio\",\"/2by1f\":\"Estado o región\",\"uAQUqI\":\"Estado\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Los pagos con Stripe no están habilitados para este evento.\",\"UJmAAK\":\"Sujeto\",\"X2rrlw\":\"Total parcial\",\"zzDlyQ\":\"Éxito\",\"b0HJ45\":[\"¡Éxito! \",[\"0\"],\" recibirá un correo electrónico en breve.\"],\"BJIEiF\":[[\"0\"],\" asistente con éxito\"],\"OtgNFx\":\"Dirección de correo electrónico confirmada correctamente\",\"IKwyaF\":\"Cambio de correo electrónico confirmado exitosamente\",\"zLmvhE\":\"Asistente creado exitosamente\",\"gP22tw\":\"Producto creado con éxito\",\"9mZEgt\":\"Código promocional creado correctamente\",\"aIA9C4\":\"Pregunta creada correctamente\",\"J3RJSZ\":\"Asistente actualizado correctamente\",\"3suLF0\":\"Asignación de Capacidad actualizada con éxito\",\"Z+rnth\":\"Lista de registro actualizada con éxito\",\"vzJenu\":\"Configuración de correo electrónico actualizada correctamente\",\"7kOMfV\":\"Evento actualizado con éxito\",\"G0KW+e\":\"Diseño de página de inicio actualizado con éxito\",\"k9m6/E\":\"Configuración de la página de inicio actualizada correctamente\",\"y/NR6s\":\"Ubicación actualizada correctamente\",\"73nxDO\":\"Configuraciones varias actualizadas exitosamente\",\"4H80qv\":\"Pedido actualizado con éxito\",\"6xCBVN\":\"Configuraciones de pago y facturación actualizadas con éxito\",\"1Ycaad\":\"Producto actualizado correctamente\",\"70dYC8\":\"Código promocional actualizado correctamente\",\"F+pJnL\":\"Configuración de SEO actualizada con éxito\",\"DXZRk5\":\"habitación 100\",\"GNcfRk\":\"Correo electrónico de soporte\",\"uRfugr\":\"Camiseta\",\"JpohL9\":\"Impuesto\",\"geUFpZ\":\"Impuestos y tarifas\",\"dFHcIn\":\"Detalles de impuestos\",\"wQzCPX\":\"Información fiscal que aparecerá en la parte inferior de todas las facturas (por ejemplo, número de IVA, registro fiscal)\",\"0RXCDo\":\"Impuesto o tasa eliminados correctamente\",\"ZowkxF\":\"Impuestos\",\"qu6/03\":\"Impuestos y honorarios\",\"gypigA\":\"Ese código de promoción no es válido.\",\"5ShqeM\":\"La lista de registro que buscas no existe.\",\"QXlz+n\":\"La moneda predeterminada para tus eventos.\",\"mnafgQ\":\"La zona horaria predeterminada para sus eventos.\",\"o7s5FA\":\"El idioma en el que el asistente recibirá los correos electrónicos.\",\"NlfnUd\":\"El enlace en el que hizo clic no es válido.\",\"HsFnrk\":[\"El número máximo de productos para \",[\"0\"],\" es \",[\"1\"]],\"TSAiPM\":\"La página que buscas no existe\",\"MSmKHn\":\"El precio mostrado al cliente incluirá impuestos y tasas.\",\"6zQOg1\":\"El precio mostrado al cliente no incluirá impuestos ni tasas. Se mostrarán por separado.\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"El título del evento que se mostrará en los resultados del motor de búsqueda y al compartirlo en las redes sociales. De forma predeterminada, se utilizará el título del evento.\",\"wDx3FF\":\"No hay productos disponibles para este evento\",\"pNgdBv\":\"No hay productos disponibles en esta categoría\",\"rMcHYt\":\"Hay un reembolso pendiente. Espere a que se complete antes de solicitar otro reembolso.\",\"F89D36\":\"Hubo un error al marcar el pedido como pagado\",\"68Axnm\":\"Hubo un error al procesar su solicitud. Inténtalo de nuevo.\",\"mVKOW6\":\"Hubo un error al enviar tu mensaje\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Este asistente tiene un pedido sin pagar.\",\"mf3FrP\":\"Esta categoría aún no tiene productos.\",\"8QH2Il\":\"Esta categoría está oculta de la vista pública\",\"xxv3BZ\":\"Esta lista de registro ha expirado\",\"Sa7w7S\":\"Esta lista de registro ha expirado y ya no está disponible para registros.\",\"Uicx2U\":\"Esta lista de registro está activa\",\"1k0Mp4\":\"Esta lista de registro aún no está activa\",\"K6fmBI\":\"Esta lista de registro aún no está activa y no está disponible para registros.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Esta información se mostrará en la página de pago, en la página de resumen del pedido y en el correo electrónico de confirmación del pedido.\",\"XAHqAg\":\"Este es un producto general, como una camiseta o una taza. No se emitirá un boleto\",\"CNk/ro\":\"Este es un evento en línea\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Este mensaje se incluirá en el pie de página de todos los correos electrónicos enviados desde este evento.\",\"55i7Fa\":\"Este mensaje solo se mostrará si el pedido se completa con éxito. Los pedidos en espera de pago no mostrarán este mensaje.\",\"RjwlZt\":\"Este pedido ya ha sido pagado.\",\"5K8REg\":\"Este pedido ya ha sido reembolsado.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Esta orden ha sido cancelada.\",\"Q0zd4P\":\"Este pedido ha expirado. Por favor, comienza de nuevo.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Este pedido está completo.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Esta página de pedidos ya no está disponible.\",\"i0TtkR\":\"Esto sobrescribe todas las configuraciones de visibilidad y ocultará el producto a todos los clientes.\",\"cRRc+F\":\"Este producto no se puede eliminar porque está asociado con un pedido. Puede ocultarlo en su lugar.\",\"3Kzsk7\":\"Este producto es un boleto. Se emitirá un boleto a los compradores al realizar la compra\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Este enlace para restablecer la contraseña no es válido o ha caducado.\",\"IV9xTT\":\"Este usuario no está activo porque no ha aceptado su invitación.\",\"5AnPaO\":\"boleto\",\"kjAL4v\":\"Boleto\",\"dtGC3q\":\"El correo electrónico del ticket se ha reenviado al asistente.\",\"54q0zp\":\"Entradas para\",\"xN9AhL\":[\"Nivel \",[\"0\"]],\"jZj9y9\":\"Producto escalonado\",\"8wITQA\":\"Los productos escalonados le permiten ofrecer múltiples opciones de precio para el mismo producto. Esto es perfecto para productos anticipados o para ofrecer diferentes opciones de precio a diferentes grupos de personas.\\\" # es\",\"nn3mSR\":\"Tiempo restante:\",\"s/0RpH\":\"Tiempos utilizados\",\"y55eMd\":\"Veces usado\",\"40Gx0U\":\"Zona horaria\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Herramientas\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total antes de descuentos\",\"NRWNfv\":\"Monto total de descuento\",\"BxsfMK\":\"Tarifas totales\",\"2bR+8v\":\"Total de ventas brutas\",\"mpB/d9\":\"Monto total del pedido\",\"m3FM1g\":\"Total reembolsado\",\"jEbkcB\":\"Total reembolsado\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total impuestos\",\"+zy2Nq\":\"Tipo\",\"FMdMfZ\":\"No se pudo registrar al asistente\",\"bPWBLL\":\"No se pudo retirar al asistente\",\"9+P7zk\":\"No se pudo crear el producto. Por favor, revise sus datos\",\"WLxtFC\":\"No se pudo crear el producto. Por favor, revise sus datos\",\"/cSMqv\":\"No se puede crear una pregunta. Por favor revisa tus datos\",\"MH/lj8\":\"No se puede actualizar la pregunta. Por favor revisa tus datos\",\"nnfSdK\":\"Clientes únicos\",\"Mqy/Zy\":\"Estados Unidos\",\"NIuIk1\":\"Ilimitado\",\"/p9Fhq\":\"Ilimitado disponible\",\"E0q9qH\":\"Usos ilimitados permitidos\",\"h10Wm5\":\"Pedido no pagado\",\"ia8YsC\":\"Próximo\",\"TlEeFv\":\"Próximos eventos\",\"L/gNNk\":[\"Actualizar \",[\"0\"]],\"+qqX74\":\"Actualizar el nombre del evento, la descripción y las fechas.\",\"vXPSuB\":\"Actualización del perfil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copiada en el portapapeles\",\"e5lF64\":\"Ejemplo de uso\",\"fiV0xj\":\"Límite de uso\",\"sGEOe4\":\"Utilice una versión borrosa de la imagen de portada como fondo\",\"OadMRm\":\"Usar imagen de portada\",\"7PzzBU\":\"Usuario\",\"yDOdwQ\":\"Gestión de usuarios\",\"Sxm8rQ\":\"Usuarios\",\"VEsDvU\":\"Los usuarios pueden cambiar su correo electrónico en <0>Configuración de perfil\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"IVA\",\"E/9LUk\":\"Nombre del lugar\",\"jpctdh\":\"Ver\",\"Pte1Hv\":\"Ver detalles del asistente\",\"/5PEQz\":\"Ver página del evento\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Ver en Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Lista de registro VIP\",\"tF+VVr\":\"Entrada VIP\",\"2q/Q7x\":\"Visibilidad\",\"vmOFL/\":\"No pudimos procesar su pago. Inténtelo de nuevo o comuníquese con el soporte.\",\"45Srzt\":\"No pudimos eliminar la categoría. Por favor, inténtelo de nuevo.\",\"/DNy62\":[\"No pudimos encontrar ningún boleto que coincida con \",[\"0\"]],\"1E0vyy\":\"No pudimos cargar los datos. Inténtalo de nuevo.\",\"NmpGKr\":\"No pudimos reordenar las categorías. Por favor, inténtelo de nuevo.\",\"BJtMTd\":\"Recomendamos dimensiones de 2160 px por 1080 px y un tamaño de archivo máximo de 5 MB.\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"No pudimos confirmar su pago. Inténtelo de nuevo o comuníquese con el soporte.\",\"Gspam9\":\"Estamos procesando tu pedido. Espere por favor...\",\"LuY52w\":\"¡Bienvenido a bordo! Por favor inicie sesión para continuar.\",\"dVxpp5\":[\"Bienvenido de nuevo\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"¿Qué son los productos escalonados?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"¿Qué es una categoría?\",\"gxeWAU\":\"¿A qué productos se aplica este código?\",\"hFHnxR\":\"¿A qué productos se aplica este código? (Se aplica a todos por defecto)\",\"AeejQi\":\"¿A qué productos debería aplicarse esta capacidad?\",\"Rb0XUE\":\"¿A qué hora llegarás?\",\"5N4wLD\":\"¿Qué tipo de pregunta es esta?\",\"gyLUYU\":\"Cuando esté habilitado, se generarán facturas para los pedidos de boletos. Las facturas se enviarán junto con el correo electrónico de confirmación del pedido. Los asistentes también pueden descargar sus facturas desde la página de confirmación del pedido.\",\"D3opg4\":\"Cuando los pagos offline estén habilitados, los usuarios podrán completar sus pedidos y recibir sus boletos. Sus boletos indicarán claramente que el pedido no está pagado, y la herramienta de registro notificará al personal si un pedido requiere pago.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"¿Qué boletos deben asociarse con esta lista de registro?\",\"S+OdxP\":\"¿Quién organiza este evento?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"¿A quién se le debería hacer esta pregunta?\",\"VxFvXQ\":\"Insertar widget\",\"v1P7Gm\":\"Configuración del widget\",\"b4itZn\":\"Laboral\",\"hqmXmc\":\"Laboral...\",\"+G/XiQ\":\"Año hasta la fecha\",\"l75CjT\":\"Sí\",\"QcwyCh\":\"Si, eliminarlos\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Estás cambiando tu correo electrónico a <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Estás desconectado\",\"sdB7+6\":\"Puede crear un código promocional que se dirija a este producto en el\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"No puede cambiar el tipo de producto ya que hay asistentes asociados con este producto.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"No puede registrar a asistentes con pedidos no pagados. Esta configuración se puede cambiar en los ajustes del evento.\",\"c9Evkd\":\"No puede eliminar la última categoría.\",\"6uwAvx\":\"No puede eliminar este nivel de precios porque ya hay productos vendidos para este nivel. Puede ocultarlo en su lugar.\",\"tFbRKJ\":\"No puede editar la función o el estado del propietario de la cuenta.\",\"fHfiEo\":\"No puede reembolsar un pedido creado manualmente.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Tienes acceso a múltiples cuentas. Por favor elige uno para continuar.\",\"Z6q0Vl\":\"Ya has aceptado esta invitación. Por favor inicie sesión para continuar.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"No tienes ningún cambio de correo electrónico pendiente.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Se te ha acabado el tiempo para completar tu pedido.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Debes reconocer que este correo electrónico no es promocional.\",\"3ZI8IL\":\"Debes aceptar los términos y condiciones.\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Debe crear un ticket antes de poder agregar manualmente un asistente.\",\"jE4Z8R\":\"Debes tener al menos un nivel de precios\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Deberá marcar un pedido como pagado manualmente. Esto se puede hacer en la página de gestión de pedidos.\",\"L/+xOk\":\"Necesitarás un boleto antes de poder crear una lista de registro.\",\"Djl45M\":\"Necesitará un producto antes de poder crear una asignación de capacidad.\",\"y3qNri\":\"Necesitará al menos un producto para comenzar. Gratis, de pago o deje que el usuario decida cuánto pagar.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Su nombre de cuenta se utiliza en las páginas de eventos y en los correos electrónicos.\",\"veessc\":\"Sus asistentes aparecerán aquí una vez que se hayan registrado para su evento. También puede agregar asistentes manualmente.\",\"Eh5Wrd\":\"Tu increíble sitio web 🎉\",\"lkMK2r\":\"Tus detalles\",\"3ENYTQ\":[\"Su solicitud de cambio de correo electrónico a <0>\",[\"0\"],\" está pendiente. Por favor revisa tu correo para confirmar\"],\"yZfBoy\":\"Tu mensaje ha sido enviado\",\"KSQ8An\":\"Tu pedido\",\"Jwiilf\":\"Tu pedido ha sido cancelado\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Tus pedidos aparecerán aquí una vez que comiencen a llegar.\",\"9TO8nT\":\"Tu contraseña\",\"P8hBau\":\"Su pago se está procesando.\",\"UdY1lL\":\"Su pago no fue exitoso, inténtelo nuevamente.\",\"fzuM26\":\"Su pago no fue exitoso. Inténtalo de nuevo.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Su reembolso se está procesando.\",\"IFHV2p\":\"Tu billete para\",\"x1PPdr\":\"Código postal\",\"BM/KQm\":\"CP o Código Postal\",\"+LtVBt\":\"Código postal\",\"25QDJ1\":\"- Haz clic para publicar\",\"WOyJmc\":\"- Haz clic para despublicar\",\"ncwQad\":\"(vacío)\",\"B/gRsg\":\"(ninguno)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ya está registrado\"],\"3beCx0\":[[\"0\"],\" <0>registrado\"],\"S4PqS9\":[[\"0\"],\" webhooks activos\"],\"6MIiOI\":[[\"0\"],\" restantes\"],\"COnw8D\":[\"Logo de \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" de \",[\"1\"],\" plazas ocupadas.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"rZTf6P\":[[\"0\"],\" plazas restantes\"],\"/HkCs4\":[[\"0\"],\" entradas\"],\"dtXkP9\":[[\"0\"],\" próximas fechas\"],\"30bTiU\":[[\"activeCount\"],\" habilitados\"],\"jTs4am\":[\"Logo de \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" asistentes están registrados en esta sesión.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponibles\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" registrados\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"hace \",[\"diffHr\"],\" h\"],\"NRSLBe\":[\"hace \",[\"diffMin\"],\" min\"],\"iYfwJE\":[\"hace \",[\"diffSec\"],\" s\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" asistentes están registrados en las sesiones afectadas.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de entradas\"],\"0cLzoF\":[[\"totalOccurrences\"],\" fechas\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sesiones en \",[\"0\"],\" fechas (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sesión\"],\"other\":[\"#\",\" sesiones\"]}],\" por día)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Impuestos/Tasas\",\"B1St2O\":\"<0>Las listas de check-in te ayudan a gestionar la entrada al evento por día, área o tipo de entrada. Puedes vincular entradas a listas específicas como zonas VIP o pases del Día 1 y compartir un enlace de check-in seguro con el personal. No se requiere cuenta. El check-in funciona en móvil, escritorio o tableta, usando la cámara del dispositivo o un escáner USB HID. \",\"v9VSIS\":\"<0>Establece un límite total de asistencia que se aplica a múltiples tipos de entradas a la vez.<1>Por ejemplo, si vinculas una entrada de <2>Pase de Día y una de <3>Fin de Semana Completo, ambas se extraerán del mismo grupo de plazas. Una vez alcanzado el límite, todas las entradas vinculadas dejan de venderse automáticamente.\",\"vKXqag\":\"<0>Esta es la cantidad predeterminada para todas las fechas. La capacidad de cada fecha puede limitar aún más la disponibilidad en la <1>página de Programación de Sesiones.\",\"ZnVt5v\":\"<0>Los webhooks notifican instantáneamente a los servicios externos cuando ocurren eventos, como agregar un nuevo asistente a tu CRM o lista de correo al registrarse, asegurando una automatización fluida.<1>Usa servicios de terceros como <2>Zapier, <3>IFTTT o <4>Make para crear flujos de trabajo personalizados y automatizar tareas.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" al tipo de cambio actual\"],\"M2DyLc\":\"1 webhook activo\",\"6hIk/x\":\"1 asistente está registrado en las sesiones afectadas.\",\"qOyE2U\":\"1 asistente está registrado en esta sesión.\",\"943BwI\":\"1 día después de la fecha de finalización\",\"yj3N+g\":\"1 día después de la fecha de inicio\",\"Z3etYG\":\"1 día antes del evento\",\"szSnlj\":\"1 hora antes del evento\",\"yTsaLw\":\"1 entrada\",\"nz96Ue\":\"1 tipo de entrada\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 semana antes del evento\",\"09VFYl\":\"12 entradas ofrecidas\",\"HR/cvw\":\"Calle Ejemplo 123\",\"dgKxZ5\":\"135+ monedas y 40+ métodos de pago\",\"kMU5aM\":\"Se ha enviado un aviso de cancelación a\",\"o++0qa\":\"un cambio de duración\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Se ha enviado un nuevo código de verificación a tu correo\",\"sr2Je0\":\"un cambio en las horas de inicio/fin\",\"/z/bH1\":\"Una breve descripción de tu organizador que se mostrará a tus usuarios.\",\"aS0jtz\":\"Abandonado\",\"uyJsf6\":\"Acerca de\",\"JvuLls\":\"Asumir la comisión\",\"lk74+I\":\"Asumir la comisión\",\"1uJlG9\":\"Color de Acento\",\"g3UF2V\":\"Aceptar\",\"K5+3xg\":\"Aceptar invitación\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Cuenta · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Información de la cuenta\",\"EHNORh\":\"Cuenta no encontrada\",\"bPwFdf\":\"Cuentas\",\"AhwTa1\":\"Acción Requerida: Se Necesita Información del IVA\",\"APyAR/\":\"Eventos activos\",\"kCl6ja\":\"Métodos de pago activos\",\"XJOV1Y\":\"Actividad\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Añadir una fecha\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Añadir una sola fecha\",\"CjvTPJ\":\"Añadir otro horario\",\"0XCduh\":\"Añade al menos un horario\",\"/chGpa\":\"Añade los datos de conexión para el evento online.\",\"UWWRyd\":\"Agregue preguntas personalizadas para recopilar información adicional durante el proceso de pago\",\"Z/dcxc\":\"Añadir fecha\",\"Q219NT\":\"Añadir fechas\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Añadir ubicación\",\"VX6WUv\":\"Añadir ubicación\",\"GCQlV2\":\"Añade varios horarios si tienes varias sesiones por día.\",\"7JF9w9\":\"Agregar pregunta\",\"NLbIb6\":\"Añadir este asistente de todas formas (sobrescribir capacidad)\",\"6PNlRV\":\"Añade este evento a tu calendario\",\"BGD9Yt\":\"Agregar entradas\",\"uIv4Op\":\"Añade píxeles de seguimiento a tus páginas públicas de evento y a la página principal del organizador. Se mostrará un aviso de cookies a los visitantes cuando el seguimiento esté activo.\",\"QN2F+7\":\"Agregar Webhook\",\"NsWqSP\":\"Agrega tus redes sociales y la URL de tu sitio web. Estos se mostrarán en tu página pública de organizador.\",\"bVjDs9\":\"Comisiones adicionales\",\"MKqSg4\":\"Acceso de administrador requerido\",\"0Zypnp\":\"Panel de Administración\",\"YAV57v\":\"Afiliado\",\"I+utEq\":\"El código de afiliado no se puede cambiar\",\"/jHBj5\":\"Afiliado creado exitosamente\",\"uCFbG2\":\"Afiliado eliminado exitosamente\",\"ld8I+f\":\"Programa de afiliados\",\"a41PKA\":\"Se rastrearán las ventas del afiliado\",\"mJJh2s\":\"No se rastrearán las ventas del afiliado. Esto desactivará al afiliado.\",\"jabmnm\":\"Afiliado actualizado exitosamente\",\"CPXP5Z\":\"Afiliados\",\"9Wh+ug\":\"Afiliados exportados\",\"3cqmut\":\"Los afiliados te ayudan a rastrear las ventas generadas por socios e influencers. Crea códigos de afiliado y compártelos para monitorear el rendimiento.\",\"z7GAMJ\":\"todas\",\"N40H+G\":\"Todos\",\"7rLTkE\":\"Todos los eventos archivados\",\"gKq1fa\":\"Todos los asistentes\",\"63gRoO\":\"Todos los asistentes de las sesiones seleccionadas\",\"uWxIoH\":\"Todos los asistentes de esta sesión\",\"pMLul+\":\"Todas las monedas\",\"sgUdRZ\":\"Todas las fechas\",\"e4q4uO\":\"Todas las fechas\",\"ZS/D7f\":\"Todos los eventos finalizados\",\"QsYjci\":\"Todos los eventos\",\"31KB8w\":\"Todos los trabajos fallidos eliminados\",\"D2g7C7\":\"Todos los trabajos en cola para reintentar\",\"B4RFBk\":\"Todas las fechas coincidentes\",\"F1/VgK\":\"Todas las sesiones\",\"OpWjMq\":\"Todas las sesiones\",\"Sxm1lO\":\"Todos los estados\",\"dr7CWq\":\"Todos los próximos eventos\",\"GpT6Uf\":\"Permitir a los asistentes actualizar su información de entrada (nombre, correo electrónico) a través de un enlace seguro enviado con su confirmación de pedido.\",\"F3mW5G\":\"Permitir que los clientes se unan a una lista de espera cuando este producto esté agotado\",\"c4uJfc\":\"¡Casi listo! Solo estamos esperando que se procese tu pago. Esto debería tomar solo unos segundos.\",\"ocS8eq\":[\"¿Ya tienes una cuenta? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Ya registrado\",\"/H326L\":\"Ya reembolsado\",\"USEpOK\":\"¿Ya usas Stripe en otro organizador? Reutiliza esa conexión.\",\"RtxQTF\":\"También cancelar este pedido\",\"jkNgQR\":\"También reembolsar este pedido\",\"xYqsHg\":\"Siempre disponible\",\"Wvrz79\":\"Monto pagado\",\"Zkymb9\":\"Un correo para asociar con este afiliado. El afiliado no será notificado.\",\"vRznIT\":\"Ocurrió un error al verificar el estado de la exportación.\",\"eusccx\":\"Un mensaje opcional para mostrar en el producto destacado, ej. \\\"Se vende rápido 🔥\\\" o \\\"Mejor valor\\\"\",\"5GJuNp\":[\"y \",[\"0\"],\" más...\"],\"QNrkms\":\"Respuesta actualizada con éxito.\",\"+qygei\":\"Respuestas\",\"GK7Lnt\":\"Respuestas al pagar (p. ej., elección de menú)\",\"lE8PgT\":\"Las fechas que has personalizado manualmente se conservarán.\",\"vP3Nzg\":[\"Se aplica a \",[\"0\"],\" fechas no canceladas cargadas actualmente en esta página.\"],\"kkVyZZ\":\"Aplica a quien abra el enlace de check-in sin iniciar sesión. Los miembros autenticados siempre lo ven todo.\",\"je4muG\":[\"Se aplica a todas las \",[\"0\"],\" fechas no canceladas de este evento — incluidas las que no están cargadas actualmente.\"],\"YIIQtt\":\"Aplicar cambios\",\"NzWX1Y\":\"Aplicar a\",\"Ps5oDT\":\"Aplicar a todas las entradas\",\"261RBr\":\"Aprobar mensaje\",\"naCW6Z\":\"Abril\",\"B495Gs\":\"Archivar\",\"5sNliy\":\"Archivar evento\",\"BrwnrJ\":\"Archivar organizador\",\"E5eghW\":\"Archiva este evento para ocultarlo al público. Puedes restaurarlo más tarde.\",\"eqFkeI\":\"Archiva este organizador. Esto también archivará todos los eventos pertenecientes a este organizador.\",\"BzcxWv\":\"Organizadores archivados\",\"9cQBd6\":\"¿Estás seguro de que quieres archivar este evento? Ya no será visible para el público.\",\"Trnl3E\":\"¿Estás seguro de que quieres archivar este organizador? Esto también archivará todos los eventos pertenecientes a este organizador.\",\"wOvn+e\":[\"¿Seguro que quieres cancelar \",[\"count\"],\" fecha(s)? Los asistentes afectados serán notificados por correo electrónico.\"],\"GTxE0U\":\"¿Seguro que quieres cancelar esta fecha? Los asistentes afectados serán notificados por correo electrónico.\",\"VkSk/i\":\"¿Está seguro de que desea cancelar este mensaje programado?\",\"0aVEBY\":\"¿Estás seguro de que deseas eliminar todos los trabajos fallidos?\",\"LchiNd\":\"¿Estás seguro de que quieres eliminar este afiliado? Esta acción no se puede deshacer.\",\"vPeW/6\":\"¿Estás seguro de que quieres eliminar esta configuración? Esto puede afectar a las cuentas que la utilizan.\",\"h42Hc/\":\"¿Seguro que quieres eliminar esta fecha? Esta acción no se puede deshacer.\",\"JmVITJ\":\"¿Está seguro de que desea eliminar esta plantilla? Esta acción no se puede deshacer y los correos volverán a la plantilla predeterminada.\",\"aLS+A6\":\"¿Está seguro de que desea eliminar esta plantilla? Esta acción no se puede deshacer y los correos volverán a la plantilla del organizador o predeterminada.\",\"5H3Z78\":\"¿Estás seguro de que quieres eliminar este webhook?\",\"147G4h\":\"¿Estás seguro de que quieres salir?\",\"VDWChT\":\"¿Estás seguro de que quieres poner este organizador como borrador? Esto hará que la página del organizador sea invisible al público.\",\"pWtQJM\":\"¿Estás seguro de que quieres hacer público este organizador? Esto hará que la página del organizador sea visible al público.\",\"EOqL/A\":\"¿Estás seguro de que quieres ofrecer un lugar a esta persona? Recibirá una notificación por correo electrónico.\",\"yAXqWW\":\"¿Seguro que quieres eliminar permanentemente esta fecha? Esto no se puede deshacer.\",\"WFHOlF\":\"¿Estás seguro de que quieres publicar este evento? Una vez publicado, será visible al público.\",\"4TNVdy\":\"¿Estás seguro de que quieres publicar este perfil de organizador? Una vez publicado, será visible al público.\",\"8x0pUg\":\"¿Está seguro de que desea eliminar esta entrada de la lista de espera?\",\"cDtoWq\":[\"¿Está seguro de que desea reenviar la confirmación del pedido a \",[\"0\"],\"?\"],\"xeIaKw\":[\"¿Está seguro de que desea reenviar la entrada a \",[\"0\"],\"?\"],\"BjbocR\":\"¿Estás seguro de que quieres restaurar este evento?\",\"7MjfcR\":\"¿Estás seguro de que quieres restaurar este organizador?\",\"ExDt3P\":\"¿Estás seguro de que quieres despublicar este evento? Ya no será visible al público.\",\"5Qmxo/\":\"¿Estás seguro de que quieres despublicar este perfil de organizador? Ya no será visible al público.\",\"Uqefyd\":\"¿Está registrado para el IVA en la UE?\",\"+QARA4\":\"Arte\",\"tLf3yJ\":\"Como su negocio está ubicado en Irlanda, el IVA irlandés del 23% se aplica automáticamente a todas las tarifas de la plataforma.\",\"tMeVa/\":\"Solicitar nombre y correo electrónico por cada boleto comprado\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Asignar plan\",\"xdiER7\":\"Nivel asignado\",\"F2rX0R\":\"Debe seleccionarse al menos un tipo de evento\",\"BCmibk\":\"Intentos\",\"6PecK3\":\"Asistencia y tasas de registro en todos los eventos\",\"K2tp3v\":\"asistente\",\"AJ4rvK\":\"Asistente cancelado\",\"qvylEK\":\"Asistente creado\",\"Aspq3b\":\"Recopilación de datos de asistentes\",\"fpb0rX\":\"Datos del asistente copiados del pedido\",\"0R3Y+9\":\"Email del asistente\",\"94aQMU\":\"Información del asistente\",\"KkrBiR\":\"Recopilación de información del asistente\",\"av+gjP\":\"Nombre del asistente\",\"sjPjOg\":\"Notas del asistente\",\"cosfD8\":\"Estado del Asistente\",\"D2qlBU\":\"Asistente actualizado\",\"22BOve\":\"Asistente actualizado correctamente\",\"x8Vnvf\":\"El ticket del asistente no está incluido en esta lista\",\"/Ywywr\":\"asistentes\",\"zLRobu\":\"asistentes registrados\",\"k3Tngl\":\"Asistentes exportados\",\"UoIRW8\":\"Asistentes registrados\",\"5UbY+B\":\"Asistentes con entrada específica\",\"4HVzhV\":\"Asistentes:\",\"HVkhy2\":\"Análisis de atribución\",\"dMMjeD\":\"Desglose de atribución\",\"1oPDuj\":\"Valor de atribución\",\"DBHTm/\":\"Agosto\",\"JgREph\":\"La oferta automática está activada\",\"V7Tejz\":\"Procesar lista de espera automáticamente\",\"PZ7FTW\":\"Detectado automáticamente según el color de fondo, pero se puede anular\",\"zlnTuI\":\"Ofrece automáticamente entradas a la siguiente persona cuando haya capacidad disponible. Si está desactivado, puedes procesar la lista de espera manualmente desde la página Lista de espera.\",\"csDS2L\":\"Disponible\",\"clF06r\":\"Disponible para reembolso\",\"NB5+UG\":\"Tokens disponibles\",\"L+wGOG\":\"Pendiente\",\"qcw2OD\":\"Pago pendiente\",\"kNmmvE\":\"Awesome Events S.A.\",\"iH8pgl\":\"Atrás\",\"TeSaQO\":\"Volver a cuentas\",\"X7Q/iM\":\"Volver al calendario\",\"kYqM1A\":\"Volver al evento\",\"s5QRF3\":\"Volver a mensajes\",\"td/bh+\":\"Volver a Informes\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Precio base\",\"hviJef\":\"Basado en el periodo de venta global anterior, no por fecha\",\"jIPNJG\":\"Información básica\",\"UabgBd\":\"El cuerpo es requerido\",\"HWXuQK\":\"Guarda esta página en marcadores para gestionar tu pedido en cualquier momento.\",\"CUKVDt\":\"Personalice sus boletos con un logotipo, colores y mensaje de pie de página personalizados.\",\"4BZj5p\":\"Protección antifraude integrada\",\"cr7kGH\":\"Edición masiva\",\"1Fbd6n\":\"Editar fechas en bloque\",\"Eq6Tu9\":\"La actualización masiva falló.\",\"9N+p+g\":\"Negocios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nombre comercial\",\"bv6RXK\":\"Etiqueta del botón\",\"ChDLlO\":\"Texto del botón\",\"BUe8Wj\":\"El comprador paga\",\"qF1qbA\":\"Los compradores ven un precio limpio. La comisión de la plataforma se deduce de su pago.\",\"dg05rc\":\"Al añadir píxeles de seguimiento, reconoces que tú y esta plataforma sois corresponsables de los datos recopilados. Eres responsable de asegurar que tienes una base legal para este tratamiento conforme a las leyes de privacidad aplicables (GDPR, CCPA, etc.).\",\"DFqasq\":[\"Al continuar, aceptas los <0>Términos de Servicio de \",[\"0\"],\"\"],\"wVSa+U\":\"Por día del mes\",\"0MnNgi\":\"Por día de la semana\",\"CetOZE\":\"Por tipo de entrada\",\"lFdbRS\":\"Omitir comisiones de aplicación\",\"AjVXBS\":\"Calendario\",\"alkXJ5\":\"Vista de calendario\",\"2VLZwd\":\"Botón de llamada a la acción\",\"rT2cV+\":\"Cámara\",\"7hYa9y\":\"Permiso de cámara denegado. <0>Solicitar permiso de nuevo, o autoriza el acceso a la cámara en los ajustes del navegador.\",\"D02dD9\":\"Campaña\",\"RRPA79\":\"No se puede registrar\",\"OcVwAd\":[\"Cancelar \",[\"count\"],\" fecha(s)\"],\"H4nE+E\":\"Cancelar todos los productos y devolverlos al grupo disponible\",\"Py78q9\":\"Cancelar fecha\",\"tOXAdc\":\"Cancelar anulará todos los asistentes asociados con este pedido y liberará los boletos de vuelta al grupo disponible.\",\"vev1Jl\":\"Cancelación\",\"Ha17hq\":[\"Se canceló \",[\"0\"],\" fecha(s)\"],\"01sEfm\":\"No se puede eliminar la configuración predeterminada del sistema\",\"VsM1HH\":\"Asignaciones de capacidad\",\"9bIMVF\":\"Gestión de capacidad\",\"H7K8og\":\"La capacidad debe ser 0 o mayor\",\"nzao08\":\"actualizaciones de capacidad\",\"4cp9NP\":\"Capacidad utilizada\",\"K7tIrx\":\"Categoría\",\"o+XJ9D\":\"Cambiar\",\"kJkjoB\":\"Cambiar duración\",\"J0KExZ\":\"Cambiar el límite de asistentes\",\"CIHJJf\":\"Cambiar configuración de lista de espera\",\"B5icLR\":[\"Se cambió la duración de \",[\"count\"],\" fecha(s)\"],\"Kb+0BT\":\"Cobros\",\"2tbLdK\":\"Caridad\",\"BPWGKn\":\"Registrar\",\"6uFFoY\":\"Anular\",\"FjAlwK\":[\"Mira este evento: \",[\"0\"]],\"v4fiSg\":\"Revisa tu correo\",\"51AsAN\":\"¡Revisa tu bandeja de entrada! Si hay entradas asociadas a este correo, recibirás un enlace para verlas.\",\"Y3FYXy\":\"Registro\",\"udRwQs\":\"Registro de entrada creado\",\"F4SRy3\":\"Registro de entrada eliminado\",\"as6XfO\":[\"Se deshizo el check-in de \",[\"0\"]],\"9s/wrQ\":\"Historial de check-in\",\"Wwztk4\":\"Lista de registro\",\"9gPPUY\":\"¡Lista de Check-In Creada!\",\"dwjiJt\":\"Información de lista\",\"7od0PV\":\"listas de registro\",\"f2vU9t\":\"Listas de registro\",\"XprdTn\":\"Navegación de check-in\",\"5tV1in\":\"Progreso de check-in\",\"SHJwyq\":\"Tasa de registro\",\"qCqdg6\":\"Estado de Check-In\",\"cKj6OE\":\"Resumen de registros\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Registrado\",\"DM4gBB\":\"Chino (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Elige otra acción\",\"fkb+y3\":\"Elige una ubicación guardada para aplicar.\",\"Zok1Gx\":\"Elige un organizador\",\"pkk46Q\":\"Elige un organizador\",\"Crr3pG\":\"Elegir calendario\",\"LAW8Vb\":\"Elija la configuración predeterminada para nuevos eventos. Esto se puede anular para eventos individuales.\",\"pjp2n5\":\"Elija quién paga la comisión de la plataforma. Esto no afecta las comisiones adicionales que haya configurado en su cuenta.\",\"xCJdfg\":\"Limpiar\",\"QyOWu9\":\"Borrar ubicación — usar la predeterminada del evento\",\"V8yTm6\":\"Limpiar búsqueda\",\"kmnKnX\":\"Al borrar se elimina cualquier ubicación específica de la fecha. Las fechas afectadas usarán la ubicación predeterminada del evento.\",\"/o+aQX\":\"Haz clic para cancelar\",\"gD7WGV\":\"Haz clic para reabrir para nuevas ventas\",\"CySr+W\":\"Haga clic para ver las notas\",\"RG3szS\":\"cerrar\",\"RWw9Lg\":\"Cerrar modal\",\"XwdMMg\":\"El código solo puede contener letras, números, guiones y guiones bajos\",\"+yMJb7\":\"El código es obligatorio\",\"m9SD3V\":\"El código debe tener al menos 3 caracteres\",\"V1krgP\":\"El código no debe tener más de 20 caracteres\",\"psqIm5\":\"Colabora con tu equipo para crear eventos increíbles juntos.\",\"4bUH9i\":\"Recopile los detalles del asistente para cada entrada comprada.\",\"TkfG8v\":\"Recopilar datos por pedido\",\"96ryID\":\"Recopilar datos por boleto\",\"FpsvqB\":\"Modo de Color\",\"jEu4bB\":\"Columnas\",\"CWk59I\":\"Comedia\",\"rPA+Gc\":\"Preferencias de comunicación\",\"zFT5rr\":\"completado\",\"bUQMpb\":\"Completar la configuración de Stripe\",\"744BMm\":\"Completa tu pedido para asegurar tus entradas. Esta oferta tiene un tiempo limitado, así que no esperes demasiado.\",\"5YrKW7\":\"Completa tu pago para asegurar tus entradas.\",\"xGU92i\":\"Completa tu perfil para unirte al equipo.\",\"QOhkyl\":\"Redactar\",\"ih35UP\":\"Centro de conferencias\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuración asignada\",\"X1zdE7\":\"Configuración creada correctamente\",\"mLBUMQ\":\"Configuración eliminada correctamente\",\"UIENhw\":\"Los nombres de configuración son visibles para los usuarios finales. Las tarifas fijas se convertirán a la moneda del pedido al tipo de cambio actual.\",\"eeZdaB\":\"Configuración actualizada correctamente\",\"3cKoxx\":\"Configuraciones\",\"8v2LRU\":\"Configure los detalles del evento, ubicación, opciones de pago y notificaciones por correo electrónico.\",\"raw09+\":\"Configure cómo se recopilan los datos de los asistentes durante el proceso de pago\",\"FI60XC\":\"Configurar impuestos y comisiones\",\"av6ukY\":\"Configura qué productos están disponibles para esta sesión y opcionalmente ajusta los precios.\",\"NGXKG/\":\"Confirmar dirección de correo electrónico\",\"JRQitQ\":\"Confirmar nueva contraseña\",\"Auz0Mz\":\"Confirma tu correo electrónico para acceder a todas las funciones.\",\"7+grte\":\"¡Correo de confirmación enviado! Por favor, revisa tu bandeja de entrada.\",\"n/7+7Q\":\"Confirmación enviada a\",\"x3wVFc\":\"¡Felicidades! Tu evento ahora es visible para el público.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Conecta Stripe para habilitar la edición de plantillas de correo\",\"LmvZ+E\":\"Conecte Stripe para habilitar mensajería\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contacto\",\"LOFgda\":[\"Contacto \",[\"0\"]],\"41BQ3k\":\"Correo de contacto\",\"KcXRN+\":\"Email de contacto para soporte\",\"m8WD6t\":\"Continuar configuración\",\"0GwUT4\":\"Continuar al pago\",\"sBV87H\":\"Continuar a la creación del evento\",\"nKtyYu\":\"Continuar al siguiente paso\",\"F3/nus\":\"Continuar al pago\",\"p2FRHj\":\"Controle cómo se manejan las comisiones de la plataforma para este evento\",\"NqfabH\":\"Controla quién entra en esta fecha\",\"fmYxZx\":\"Controla quién entra y cuándo\",\"1JnTgU\":\"Copiado de arriba\",\"FxVG/l\":\"Copiado al portapapeles\",\"PiH3UR\":\"¡Copiado!\",\"4i7smN\":\"Copiar ID de cuenta\",\"uUPbPg\":\"Copiar enlace de afiliado\",\"iVm46+\":\"Copiar código\",\"cF2ICc\":\"Copiar enlace del cliente\",\"+2ZJ7N\":\"Copiar datos al primer asistente\",\"ZN1WLO\":\"Copiar Correo\",\"y1eoq1\":\"Copiar enlace\",\"tUGbi8\":\"Copiar mis datos a:\",\"y22tv0\":\"Copia este enlace para compartirlo en cualquier parte\",\"/4gGIX\":\"Copiar al portapapeles\",\"e0f4yB\":\"No se pudo eliminar la ubicación\",\"vkiDx2\":\"No se pudo preparar la actualización masiva.\",\"KOavaU\":\"No se pudieron obtener los detalles de la dirección\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"No se pudo guardar la fecha\",\"eeLExK\":\"No se pudo guardar la ubicación\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Imagen de portada\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"La imagen de portada se mostrará en la parte superior de la página del evento\",\"2NLjA6\":\"La imagen de portada se mostrará en la parte superior de tu página de organizador\",\"GkrqoY\":\"Cubre todas las entradas\",\"zg4oSu\":[\"Crear plantilla \",[\"0\"]],\"RKKhnW\":\"Cree un widget personalizado para vender boletos en su sitio.\",\"6sk7PP\":\"Crear un número fijo\",\"PhioFp\":\"Crea una nueva lista de registro para una sesión activa, o contacta al organizador si crees que esto es un error.\",\"yIRev4\":\"Crear una contraseña\",\"j7xZ7J\":\"Crea organizadores adicionales para gestionar marcas, departamentos o series de eventos separados bajo una cuenta. Cada organizador tiene sus propios eventos, configuraciones y página pública.\",\"xfKgwv\":\"Crear afiliado\",\"tudG8q\":\"Cree y configure boletos y mercancía para la venta.\",\"YAl9Hg\":\"Crear configuración\",\"BTne9e\":\"Crear plantillas de correo personalizadas para este evento que anulen los predeterminados del organizador\",\"YIDzi/\":\"Crear plantilla personalizada\",\"tsGqx5\":\"Crear fecha\",\"Nc3l/D\":\"Cree descuentos, códigos de acceso para boletos ocultos y ofertas especiales.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Crear para esta fecha\",\"eWEV9G\":\"Crear nueva contraseña\",\"wl2iai\":\"Crear programación\",\"8AiKIu\":\"Crear entrada o producto\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Cree enlaces rastreables para recompensar a los socios que promocionan su evento.\",\"dkAPxi\":\"Crear Webhook\",\"5slqwZ\":\"Crea tu evento\",\"JQNMrj\":\"Crea tu primer evento\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Crea tu propio evento\",\"67NsZP\":\"Creando evento...\",\"H34qcM\":\"Creando organizador...\",\"1YMS+X\":\"Creando tu evento, por favor espera\",\"yiy8Jt\":\"Creando tu perfil de organizador, por favor espera\",\"lfLHNz\":\"La etiqueta CTA es requerida\",\"0xLR6W\":\"Actualmente asignado\",\"iTvh6I\":\"Actualmente disponible para compra\",\"A42Dqn\":\"Marca personalizada\",\"Guo0lU\":\"Fecha y hora personalizada\",\"mimF6c\":\"Mensaje personalizado después de la compra\",\"WDMdn8\":\"Preguntas personalizadas\",\"O6mra8\":\"Preguntas personalizadas\",\"axv/Mi\":\"Plantilla personalizada\",\"2YeVGY\":\"Enlace del cliente copiado al portapapeles\",\"QMHSMS\":\"El cliente recibirá un correo electrónico confirmando el reembolso\",\"L/Qc+w\":\"Dirección de email del cliente\",\"wpfWhJ\":\"Nombre del cliente\",\"GIoqtA\":\"Apellido del cliente\",\"NihQNk\":\"Clientes\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Personalice los correos enviados a sus clientes usando plantillas Liquid. Estas plantillas se usarán como predeterminadas para todos los eventos en su organización.\",\"xJaTUK\":\"Personalice el diseño, colores y marca de la página de inicio de su evento.\",\"MXZfGN\":\"Personalice las preguntas durante el proceso de pago para recopilar información importante de sus asistentes.\",\"iX6SLo\":\"Personaliza el texto que aparece en el botón de continuar\",\"pxNIxa\":\"Personalice su plantilla de correo usando plantillas Liquid\",\"3trPKm\":\"Personaliza la apariencia de tu página de organizador\",\"U0sC6H\":\"Diario\",\"/gWrVZ\":\"Ingresos diarios, impuestos, tarifas y reembolsos en todos los eventos\",\"zgCHnE\":\"Informe de ventas diarias\",\"nHm0AI\":\"Desglose de ventas diarias, impuestos y tarifas\",\"1aPnDT\":\"Danza\",\"pvnfJD\":\"Oscuro\",\"MaB9wW\":\"Cancelación de fecha\",\"e6cAxJ\":\"Fecha cancelada\",\"81jBnC\":\"Fecha cancelada correctamente\",\"a/C/6R\":\"Fecha creada correctamente\",\"IW7Q+u\":\"Fecha eliminada\",\"rngCAz\":\"Fecha eliminada correctamente\",\"lnYE59\":\"Fecha del evento\",\"gnBreG\":\"Fecha en que se realizó el pedido\",\"vHbfoQ\":\"Fecha reactivada\",\"hvah+S\":\"Fecha reabierta para nuevas ventas\",\"Ez0YsD\":\"Fecha actualizada correctamente\",\"VTsZuy\":\"Las fechas y horarios se gestionan en la\",\"/ITcnz\":\"día\",\"H7OUPr\":\"Día\",\"JtHrX9\":\"Día del mes\",\"J/Upwb\":\"días\",\"vDVA2I\":\"Días del mes\",\"rDLvlL\":\"Días de la semana\",\"r6zgGo\":\"Diciembre\",\"jbq7j2\":\"Rechazar\",\"ovBPCi\":\"Predeterminado\",\"JtI4vj\":\"Recopilación predeterminada de información del asistente\",\"ULjv90\":\"Capacidad predeterminada por fecha\",\"3R/Tu2\":\"Gestión predeterminada de comisiones\",\"1bZAZA\":\"Se usará la plantilla predeterminada\",\"HNlEFZ\":\"eliminar\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"¿Eliminar \",[\"count\"],\" fecha(s) seleccionada(s)? Se omitirán las fechas con pedidos. Esto no se puede deshacer.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Eliminar todo\",\"6EkaOO\":\"Eliminar fecha\",\"io0G93\":\"Eliminar evento\",\"+jw/c1\":\"Eliminar imagen\",\"hdyeZ0\":\"Eliminar trabajo\",\"xxjZeP\":\"Eliminar ubicación\",\"sY3tIw\":\"Eliminar organizador\",\"UBv8UK\":\"Eliminar permanentemente\",\"dPyJ15\":\"Eliminar plantilla\",\"mxsm1o\":\"¿Eliminar esta pregunta? Esto no se puede deshacer.\",\"snMaH4\":\"Eliminar webhook\",\"LIZZLY\":[\"Se eliminó \",[\"0\"],\" fecha(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desmarcar todo\",\"NvuEhl\":\"Elementos de Diseño\",\"H8kMHT\":\"¿No recibiste el código?\",\"G8KNgd\":\"Ubicación diferente\",\"E/QGRL\":\"Deshabilitado\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Descartar este mensaje\",\"BREO0S\":\"Muestra una casilla que permite a los clientes optar por recibir comunicaciones de marketing de este organizador de eventos.\",\"pfa8F0\":\"Nombre para mostrar\",\"Kdpf90\":\"¡No lo olvides!\",\"352VU2\":\"¿No tienes una cuenta? <0>Regístrate\",\"AXXqG+\":\"Donación\",\"DPfwMq\":\"Listo\",\"JoPiZ2\":\"Instrucciones para el personal\",\"2+O9st\":\"Descargue informes de ventas, asistentes y financieros para todos los pedidos completados.\",\"eneWvv\":\"Borrador\",\"Ts8hhq\":\"Debido al alto riesgo de spam, debes conectar una cuenta de Stripe antes de poder modificar plantillas de correo. Esto es para garantizar que todos los organizadores de eventos estén verificados y sean responsables.\",\"TnzbL+\":\"Debido al alto riesgo de spam, debes conectar una cuenta de Stripe antes de poder enviar mensajes a los asistentes.\\nEsto es para garantizar que todos los organizadores de eventos estén verificados y sean responsables.\",\"euc6Ns\":\"Duplicar\",\"YueC+F\":\"Duplicar fecha\",\"KRmTkx\":\"Duplicar producto\",\"Jd3ymG\":\"La duración debe ser de al menos 1 minuto.\",\"KIjvtr\":\"Holandés\",\"22xieU\":\"ej. 180 (3 horas)\",\"/zajIE\":\"p. ej. Sesión matutina\",\"SPKbfM\":\"p. ej., Conseguir entradas, Registrarse ahora\",\"fc7wGW\":\"p. ej., Actualización importante sobre tus entradas\",\"54MPqC\":\"p. ej., Estándar, Premium, Empresarial\",\"3RQ81z\":\"Cada persona recibirá un correo electrónico con un lugar reservado para completar su compra.\",\"5oD9f/\":\"Antes\",\"LTzmgK\":[\"Editar plantilla \",[\"0\"]],\"v4+lcZ\":\"Editar afiliado\",\"2iZEz7\":\"Editar respuesta\",\"t2bbp8\":\"Editar asistente\",\"etaWtB\":\"Editar detalles del asistente\",\"+guao5\":\"Editar configuración\",\"1Mp/A4\":\"Editar fecha\",\"m0ZqOT\":\"Editar ubicación\",\"8oivFT\":\"Editar ubicación\",\"vRWOrM\":\"Editar detalles del pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Editado\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educación\",\"iiWXDL\":\"Fallos de elegibilidad\",\"zPiC+q\":\"Listas de Check-In Elegibles\",\"SiVstt\":\"Correo y mensajes programados\",\"V2sk3H\":\"Correo y Plantillas\",\"hbwCKE\":\"Dirección de correo copiada al portapapeles\",\"dSyJj6\":\"Las direcciones de correo electrónico no coinciden\",\"elW7Tn\":\"Cuerpo del correo\",\"ZsZeV2\":\"El correo es obligatorio\",\"Be4gD+\":\"Vista previa del correo\",\"6IwNUc\":\"Plantillas de correo\",\"H/UMUG\":\"Verificación de correo requerida\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"¡Correo verificado exitosamente!\",\"FSN4TS\":\"Widget integrado\",\"z9NkYY\":\"Widget incrustable\",\"Qj0GKe\":\"Habilitar autoservicio para asistentes\",\"hEtQsg\":\"Habilitar autoservicio para asistentes por defecto\",\"Upeg/u\":\"Habilitar esta plantilla para enviar correos\",\"7dSOhU\":\"Habilitar lista de espera\",\"RxzN1M\":\"Habilitado\",\"xDr/ct\":\"Fin\",\"sGjBEq\":\"Fecha y hora de finalización (opcional)\",\"PKXt9R\":\"La fecha de finalización debe ser posterior a la fecha de inicio\",\"UmzbPa\":\"Fecha de fin de la sesión\",\"ZayGC7\":\"Finalizar en una fecha\",\"48Y16Q\":\"Hora de finalización (opcional)\",\"jpNdOC\":\"Hora de fin de la sesión\",\"TbaYrr\":[\"Finalizó \",[\"0\"]],\"CFgwiw\":[\"Termina \",[\"0\"]],\"SqOIQU\":\"Introduce un valor de capacidad o elige ilimitado.\",\"h37gRz\":\"Introduce una etiqueta o elige eliminarla.\",\"7YZofi\":\"Ingrese un asunto y cuerpo para ver la vista previa\",\"khyScF\":\"Introduce un intervalo de tiempo para desplazar.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Ingresa el correo del afiliado (opcional)\",\"ARkzso\":\"Ingresa el nombre del afiliado\",\"ej4L8b\":\"Introduce la capacidad\",\"6KnyG0\":\"Ingrese correo electrónico\",\"INDKM9\":\"Ingrese el asunto del correo...\",\"xUgUTh\":\"Ingrese nombre\",\"9/1YKL\":\"Ingrese apellido\",\"VpwcSk\":\"Ingresa nueva contraseña\",\"kWg31j\":\"Ingresa un código de afiliado único\",\"C3nD/1\":\"Introduce tu correo electrónico\",\"VmXiz4\":\"Ingresa tu correo electrónico y te enviaremos instrucciones para restablecer tu contraseña.\",\"n9V+ps\":\"Introduce tu nombre\",\"IdULhL\":\"Ingresa tu número de IVA incluyendo el código de país, sin espacios (p. ej., ES12345678A, DE123456789)\",\"o21Y+P\":\"entradas\",\"X88/6w\":\"Las entradas aparecerán aquí cuando los clientes se unan a la lista de espera de productos agotados.\",\"LslKhj\":\"Error al cargar los registros\",\"VCNHvW\":\"Evento archivado\",\"ZD0XSb\":\"Evento archivado correctamente\",\"WgD6rb\":\"Categoría del evento\",\"b46pt5\":\"Imagen de portada del evento\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evento creado\",\"1Hzev4\":\"Plantilla personalizada del evento\",\"7u9/DO\":\"Evento eliminado correctamente\",\"imgKgl\":\"Descripción del evento\",\"kJDmsI\":\"Detalles del evento\",\"m/N7Zq\":\"Dirección Completa del Evento\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Ubicación del evento\",\"PYs3rP\":\"Nombre del evento\",\"HhwcTQ\":\"Nombre del evento\",\"WZZzB6\":\"El nombre del evento es obligatorio\",\"Wd5CDM\":\"El nombre del evento debe tener menos de 150 caracteres\",\"4JzCvP\":\"Evento no disponible\",\"Gh9Oqb\":\"Nombre del organizador del evento\",\"mImacG\":\"Página del evento\",\"Hk9Ki/\":\"Evento restaurado correctamente\",\"JyD0LH\":\"Configuración del evento\",\"cOePZk\":\"Hora del evento\",\"e8WNln\":\"Zona horaria del evento\",\"GeqWgj\":\"Zona Horaria del Evento\",\"XVLu2v\":\"Título del evento\",\"OfmsI9\":\"Evento demasiado nuevo\",\"4SILkp\":\"Totales del evento\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento actualizado\",\"4K2OjV\":\"Lugar del Evento\",\"19j6uh\":\"Rendimiento de eventos\",\"PC3/fk\":\"Eventos que Comienzan en las Próximas 24 Horas\",\"nwiZdc\":[\"Cada \",[\"0\"]],\"2LJU4o\":[\"Cada \",[\"0\"],\" días\"],\"yLiYx+\":[\"Cada \",[\"0\"],\" meses\"],\"nn9ice\":[\"Cada \",[\"0\"],\" semanas\"],\"Cdr8f9\":[\"Cada \",[\"0\"],\" semanas en \",[\"1\"]],\"GVEHRk\":[\"Cada \",[\"0\"],\" años\"],\"fTFfOK\":\"Cada plantilla de correo debe incluir un botón de llamada a la acción que enlace a la página apropiada\",\"BVinvJ\":\"Ejemplos: \\\"¿Cómo nos conociste?\\\", \\\"Nombre de empresa para factura\\\"\",\"2hGPQG\":\"Ejemplos: \\\"Talla de camiseta\\\", \\\"Preferencia de comida\\\", \\\"Cargo laboral\\\"\",\"qNuTh3\":\"Excepción\",\"M1RnFv\":\"Expirado\",\"kF8HQ7\":\"Exportar respuestas\",\"2KAI4N\":\"Exportar CSV\",\"JKfSAv\":\"Error en la exportación. Por favor, inténtelo de nuevo.\",\"SVOEsu\":\"Exportación iniciada. Preparando archivo...\",\"wuyaZh\":\"Exportación exitosa\",\"9bpUSo\":\"Exportando afiliados\",\"jtrqH9\":\"Exportando asistentes\",\"R4Oqr8\":\"Exportación completada. Descargando archivo...\",\"UlAK8E\":\"Exportando pedidos\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Fallido\",\"8uOlgz\":\"Falló el\",\"tKcbYd\":\"Trabajos fallidos\",\"SsI9v/\":\"No se pudo abandonar el pedido. Por favor, inténtalo de nuevo.\",\"LdPKPR\":\"No se pudo asignar la configuración\",\"PO0cfn\":\"No se pudo cancelar la fecha\",\"YUX+f+\":\"No se pudieron cancelar las fechas\",\"SIHgVQ\":\"No se pudo cancelar el mensaje\",\"cEFg3R\":\"Error al crear el afiliado\",\"dVgNF1\":\"Error al crear configuración\",\"fAoRRJ\":\"No se pudo crear la programación\",\"U66oUa\":\"Error al crear la plantilla\",\"aFk48v\":\"Error al eliminar configuración\",\"n1CYMH\":\"No se pudo eliminar la fecha\",\"KXv+Qn\":\"No se pudo eliminar la fecha. Puede tener pedidos existentes.\",\"JJ0uRo\":\"No se pudieron eliminar las fechas\",\"rgoBnv\":\"Error al eliminar el evento\",\"Zw6LWb\":\"Error al eliminar el trabajo\",\"tq0abZ\":\"Error al eliminar los trabajos\",\"2mkc3c\":\"Error al eliminar el organizador\",\"vKMKnu\":\"Error al eliminar la pregunta\",\"xFj7Yj\":\"Error al eliminar la plantilla\",\"jo3Gm6\":\"Error al exportar los afiliados\",\"Jjw03p\":\"Error al exportar asistentes\",\"ZPwFnN\":\"Error al exportar pedidos\",\"zGE3CH\":\"Error al exportar el informe. Por favor, inténtelo de nuevo.\",\"lS9/aZ\":\"No se pudieron cargar los destinatarios\",\"X4o0MX\":\"Error al cargar el Webhook\",\"ETcU7q\":\"Error al ofrecer plaza\",\"5670b9\":\"Error al ofrecer entradas\",\"e5KIbI\":\"No se pudo reactivar la fecha\",\"7zyx8a\":\"No se pudo eliminar de la lista de espera\",\"A/P7PX\":\"No se pudo eliminar la anulación\",\"ogWc1z\":\"Error al reabrir la fecha\",\"0+iwE5\":\"Error al reordenar las preguntas\",\"EJPAcd\":\"No se pudo reenviar la confirmación del pedido\",\"DjSbj3\":\"No se pudo reenviar la entrada\",\"YQ3QSS\":\"Error al reenviar el código de verificación\",\"wDioLj\":\"Error al reintentar el trabajo\",\"DKYTWG\":\"Error al reintentar los trabajos\",\"WRREqF\":\"No se pudo guardar la anulación\",\"sj/eZA\":\"No se pudo guardar la anulación de precio\",\"780n8A\":\"No se pudo guardar la configuración del producto\",\"zTkTF3\":\"Error al guardar la plantilla\",\"l6acRV\":\"Error al guardar la configuración del IVA. Por favor, inténtelo de nuevo.\",\"T6B2gk\":\"Error al enviar el mensaje. Por favor, intenta de nuevo.\",\"lKh069\":\"No se pudo iniciar la exportación\",\"t/KVOk\":\"Error al iniciar la suplantación. Por favor, inténtelo de nuevo.\",\"QXgjH0\":\"Error al detener la suplantación. Por favor, inténtelo de nuevo.\",\"i0QKrm\":\"Error al actualizar el afiliado\",\"NNc33d\":\"No se pudo actualizar la respuesta.\",\"E9jY+o\":\"No se pudo actualizar el asistente\",\"uQynyf\":\"Error al actualizar configuración\",\"i2PFQJ\":\"Error al actualizar el estado del evento\",\"EhlbcI\":\"Error al actualizar el nivel de mensajería\",\"rpGMzC\":\"No se pudo actualizar el pedido\",\"T2aCOV\":\"Error al actualizar el estado del organizador\",\"Eeo/Gy\":\"Error al actualizar la configuración\",\"kqA9lY\":\"No se pudo actualizar la configuración de IVA\",\"7/9RFs\":\"No se pudo subir la imagen.\",\"nkNfWu\":\"No se pudo subir la imagen. Por favor, intenta de nuevo.\",\"rxy0tG\":\"Error al verificar el correo\",\"QRUpCk\":\"Familia\",\"5LO38w\":\"Pagos rápidos a tu banco\",\"4lgLew\":\"Febrero\",\"9bHCo2\":\"Moneda de la tarifa\",\"/sV91a\":\"Gestión de comisiones\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Comisiones omitidas\",\"cf35MA\":\"Festival\",\"pAey+4\":\"El archivo es demasiado grande. El tamaño máximo es de 5 MB.\",\"VejKUM\":\"Primero completa tus datos arriba\",\"/n6q8B\":\"Cine\",\"L1qbUx\":\"Filtrar asistentes\",\"8OvVZZ\":\"Filtrar Asistentes\",\"N/H3++\":\"Filtrar por fecha\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Termina de configurar Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"Primero\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primer asistente\",\"4pwejF\":\"El nombre es obligatorio\",\"3lkYdQ\":\"Comisión fija\",\"6bBh3/\":\"Tarifa fija\",\"zWqUyJ\":\"Tarifa fija cobrada por transacción\",\"LWL3Bs\":\"La tarifa fija debe ser 0 o mayor\",\"0RI8m4\":\"Flash apagado\",\"q0923e\":\"Flash encendido\",\"lWxAUo\":\"Comida y bebida\",\"nFm+5u\":\"Texto del Pie\",\"a8nooQ\":\"Cuarto\",\"mob/am\":\"Vi\",\"wtuVU4\":\"Frecuencia\",\"xVhQZV\":\"Vie\",\"39y5bn\":\"Viernes\",\"f5UbZ0\":\"Propiedad total de los datos\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Reembolso completo\",\"UsIfa8\":\"Dirección completa resuelta\",\"PGQLdy\":\"futuro\",\"8N/j1s\":\"Solo fechas futuras\",\"yRx/6K\":\"Las fechas futuras se copiarán con la capacidad reiniciada a cero\",\"T02gNN\":\"Admisión General\",\"3ep0Gx\":\"Información general sobre tu organizador\",\"ziAjHi\":\"Generar\",\"exy8uo\":\"Generar código\",\"4CETZY\":\"Cómo llegar\",\"pjkEcB\":\"Cobra\",\"lGYzP6\":\"Cobra con Stripe\",\"ZDIydz\":\"Comenzar\",\"u6FPxT\":\"Obtener Entradas\",\"8KDgYV\":\"Prepare su evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Volver\",\"oNL5vN\":\"Ir a la página del evento\",\"gHSuV/\":\"Ir a la página de inicio\",\"8+Cj55\":\"Ir a la programación\",\"6nDzTl\":\"Buena legibilidad\",\"76gPWk\":\"Entendido\",\"aGWZUr\":\"Ingresos brutos\",\"n8IUs7\":\"Ingresos brutos\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestión de invitados\",\"NUsTc4\":\"Sucede ahora\",\"kTSQej\":[\"Hola \",[\"0\"],\", gestiona tu plataforma desde aquí.\"],\"dORAcs\":\"Aquí están todas las entradas asociadas a tu correo electrónico.\",\"g+2103\":\"Aquí está tu enlace de afiliado\",\"bVsnqU\":\"Hola,\",\"/iE8xx\":\"Tarifa Hi.Events\",\"zppscQ\":\"Tarifas de plataforma de Hi.Events y desglose de IVA por transacción\",\"D+zLDD\":\"Oculto\",\"DRErHC\":\"Oculto para los asistentes - solo visible para organizadores\",\"NNnsM0\":\"Ocultar opciones avanzadas\",\"P+5Pbo\":\"Ocultar respuestas\",\"VMlRqi\":\"Ocultar detalles\",\"FmogyU\":\"Ocultar opciones\",\"gtEbeW\":\"Destacar\",\"NF8sdv\":\"Mensaje destacado\",\"MXSqmS\":\"Destacar este producto\",\"7ER2sc\":\"Destacado\",\"sq7vjE\":\"Los productos destacados tendrán un color de fondo diferente para resaltar en la página del evento.\",\"1+WSY1\":\"Aficiones\",\"yY8wAv\":\"Horas\",\"sy9anN\":\"Cuánto tiempo tiene un cliente para completar su compra después de recibir una oferta. Dejar vacío para sin límite de tiempo.\",\"n2ilNh\":\"¿Cuánto dura la programación?\",\"DMr2XN\":\"¿Con qué frecuencia?\",\"AVpmAa\":\"Cómo pagar fuera de línea\",\"cceMns\":\"Cómo se aplica el IVA a las comisiones de la plataforma que te cobramos.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Húngaro\",\"8Wgd41\":\"Reconozco mis responsabilidades como responsable del tratamiento de datos\",\"O8m7VA\":\"Acepto recibir notificaciones por correo electrónico relacionadas con este evento\",\"YLgdk5\":\"Confirmo que este es un mensaje transaccional relacionado con este evento\",\"4/kP5a\":\"Si no se abrió una nueva pestaña automáticamente, haz clic en el botón de abajo para continuar al pago.\",\"W/eN+G\":\"Si se deja en blanco, la dirección se usará para generar un enlace de Google Maps\",\"iIEaNB\":\"Si tienes una cuenta con nosotros, recibirás un correo electrónico con instrucciones sobre cómo restablecer tu contraseña.\",\"an5hVd\":\"Imágenes\",\"tSVr6t\":\"Suplantar\",\"TWXU0c\":\"Suplantar usuario\",\"5LAZwq\":\"Suplantación iniciada\",\"IMwcdR\":\"Suplantación detenida\",\"0I0Hac\":\"Aviso importante\",\"yD3avI\":\"Importante: Cambiar su dirección de correo electrónico actualizará el enlace para acceder a este pedido. Será redirigido al nuevo enlace del pedido después de guardar.\",\"jT142F\":[\"En \",[\"diffHours\"],\" horas\"],\"OoSyqO\":[\"En \",[\"diffMinutes\"],\" minutos\"],\"PdMhEx\":[\"en los últimos \",[\"0\"],\" min\"],\"u7r0G5\":\"Presencial — establecer un lugar\",\"Ip0hl5\":\"in_person, online, unset, o mixed\",\"F1Xp97\":\"Asistentes individuales\",\"85e6zs\":\"Insertar token Liquid\",\"38KFY0\":\"Insertar variable\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Pagos instantáneos por Stripe\",\"nbfdhU\":\"Integraciones\",\"I8eJ6/\":\"Notas internas en la entrada del asistente\",\"B2Tpo0\":\"Correo inválido\",\"5tT0+u\":\"Formato de correo inválido\",\"f9WRpE\":\"Tipo de archivo inválido. Por favor, sube una imagen.\",\"tnL+GP\":\"Sintaxis Liquid inválida. Por favor corrígela e inténtalo de nuevo.\",\"N9JsFT\":\"Formato de número de IVA inválido\",\"g+lLS9\":\"Invitar a un miembro del equipo\",\"1z26sk\":\"Invitar miembro del equipo\",\"KR0679\":\"Invitar miembros del equipo\",\"aH6ZIb\":\"Invita a tu equipo\",\"IuMGvq\":\"Factura\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"artículo(s)\",\"BzfzPK\":\"Artículos\",\"rjyWPb\":\"Enero\",\"KmWyx0\":\"Trabajo\",\"o5r6b2\":\"Trabajo eliminado\",\"cd0jIM\":\"Detalles del trabajo\",\"ruJO57\":\"Nombre del trabajo\",\"YZi+Hu\":\"Trabajo en cola para reintentar\",\"nCywLA\":\"Únete desde cualquier lugar\",\"SNzppu\":\"Unirse a la lista de espera\",\"dLouFI\":[\"Únete a la lista de espera de \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrito\",\"u4ex5r\":\"Julio\",\"zeEQd/\":\"Junio\",\"MxjCqk\":\"¿Solo buscas tus entradas?\",\"xOTzt5\":\"justo ahora\",\"0RihU9\":\"Recién terminado\",\"lB2hSG\":[\"Mantenerme informado sobre noticias y eventos de \",[\"0\"]],\"ioFA9i\":\"Quédate con las ganancias.\",\"4Sffp7\":\"Etiqueta de la sesión\",\"o66QSP\":\"actualizaciones de etiquetas\",\"RtKKbA\":\"Último\",\"DruLRc\":\"Últimos 14 días\",\"ve9JTU\":\"El apellido es obligatorio\",\"h0Q9Iw\":\"Última respuesta\",\"gw3Ur5\":\"Última activación\",\"FIq1Ba\":\"Después\",\"xvnLMP\":\"Últimos check-ins\",\"pzAivY\":\"Latitud de la ubicación resuelta\",\"N5TErv\":\"Deja vacío para ilimitado\",\"L/hDDD\":\"Deja vacío para aplicar esta lista de registro a todas las sesiones\",\"9Pf3wk\":\"Déjalo activado para cubrir todas las entradas del evento. Desactívalo para elegir entradas específicas.\",\"Hq2BzX\":\"Avísales del cambio\",\"+uexiy\":\"Avísales de los cambios\",\"exYcTF\":\"Biblioteca\",\"1njn7W\":\"Claro\",\"1qY5Ue\":\"Enlace caducado o inválido\",\"+zSD/o\":\"Enlace a la página principal del evento\",\"psosdY\":\"Enlace a detalles del pedido\",\"6JzK4N\":\"Enlace al boleto\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Enlaces permitidos\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Vista de lista\",\"dF6vP6\":\"En vivo\",\"fpMs2Z\":\"EN VIVO\",\"D9zTjx\":\"Eventos en Vivo\",\"C33p4q\":\"Fechas cargadas\",\"WdmJIX\":\"Cargando vista previa...\",\"IoDI2o\":\"Cargando tokens...\",\"G3Ge9Z\":\"Cargando registros de webhook...\",\"NFxlHW\":\"Cargando webhooks\",\"E0DoRM\":\"Ubicación eliminada\",\"NtLHT3\":\"Dirección formateada de la ubicación\",\"h4vxDc\":\"Latitud de la ubicación\",\"f2TMhR\":\"Longitud de la ubicación\",\"lnCo2f\":\"Modo de ubicación\",\"8pmGFk\":\"Nombre de la ubicación\",\"7w8lJU\":\"Ubicación guardada\",\"YsRXDD\":\"Ubicación actualizada\",\"A/kIva\":\"actualizaciones de ubicación\",\"VppBoU\":\"Ubicaciones\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo y portada\",\"gddQe0\":\"Logo e imagen de portada para tu organizador\",\"TBEnp1\":\"El logo se mostrará en el encabezado\",\"Jzu30R\":\"El logo se mostrará en el ticket\",\"zKTMTg\":\"Longitud de la ubicación resuelta\",\"PSRm6/\":\"Buscar mis entradas\",\"yJFu/X\":\"Oficina principal\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Gestionar \",[\"0\"]],\"wZJfA8\":\"Gestiona fechas y horarios de tu evento recurrente\",\"RlzPUE\":\"Gestionar en Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Gestionar programación\",\"zXuaxY\":\"Gestiona la lista de espera de tu evento, consulta estadísticas y ofrece entradas a los asistentes.\",\"BWTzAb\":\"Manual\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"Marzo\",\"pqRBOz\":\"Marcar como validado (anulación de administrador)\",\"2L3vle\":\"Máx. mensajes / 24h\",\"Qp4HWD\":\"Máx. destinatarios / mensaje\",\"3JzsDb\":\"Mayo\",\"agPptk\":\"Medio\",\"xDAtGP\":\"Mensaje\",\"bECJqy\":\"Mensaje aprobado exitosamente\",\"1jRD0v\":\"Enviar mensajes a los asistentes con entradas específicas\",\"uQLXbS\":\"Mensaje cancelado\",\"48rf3i\":\"El mensaje no puede exceder 5000 caracteres\",\"ZPj0Q8\":\"Detalles del mensaje\",\"Vjat/X\":\"El mensaje es obligatorio\",\"0/yJtP\":\"Enviar mensajes a los propietarios de pedidos con productos específicos\",\"saG4At\":\"Mensaje programado\",\"mFdA+i\":\"Nivel de mensajería\",\"v7xKtM\":\"Nivel de mensajería actualizado exitosamente\",\"H9HlDe\":\"minutos\",\"agRWc1\":\"Minutos\",\"YYzBv9\":\"Lu\",\"zz/Wd/\":\"Modo\",\"fpMgHS\":\"Lun\",\"hty0d5\":\"Lunes\",\"JbIgPz\":\"Los valores monetarios son totales aproximados en todas las monedas\",\"qvF+MT\":\"Monitorear y gestionar trabajos de fondo fallidos\",\"kY2ll9\":\"mes\",\"HajiZl\":\"Mes\",\"+8Nek/\":\"Mensual\",\"1LkxnU\":\"Patrón mensual\",\"6jefe3\":\"meses\",\"f8jrkd\":\"más\",\"JcD7qf\":\"Más acciones\",\"w36OkR\":\"Eventos más vistos (Últimos 14 días)\",\"+Y/na7\":\"Mover todas las fechas antes o después\",\"3DIpY0\":\"Varias ubicaciones\",\"g9cQCP\":\"Varios tipos de entrada\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Mis Entradas\",\"8/brI5\":\"El nombre es obligatorio\",\"sFFArG\":\"El nombre debe tener menos de 255 caracteres\",\"sCV5Yc\":\"Nombre del evento\",\"xxU3NX\":\"Ingresos netos\",\"7I8LlL\":\"Nueva capacidad\",\"n1GRql\":\"Nueva etiqueta\",\"y0Fcpd\":\"Nueva ubicación\",\"ArHT/C\":\"Nuevos registros\",\"uK7xWf\":\"Nueva hora:\",\"veT5Br\":\"Próxima sesión\",\"WXtl5X\":[\"Próximo: \",[\"nextFormatted\"]],\"eWRECP\":\"Vida nocturna\",\"HSw5l3\":\"No - Soy un individuo o empresa no registrada para el IVA\",\"VHfLAW\":\"Sin cuentas\",\"+jIeoh\":\"No se encontraron cuentas\",\"074+X8\":\"No hay webhooks activos\",\"zxnup4\":\"No hay afiliados para mostrar\",\"Dwf4dR\":\"Aún no hay preguntas para asistentes\",\"th7rdT\":\"Sin asistentes que mostrar\",\"PKySlW\":\"Aún no hay asistentes para esta fecha.\",\"/UC6qk\":\"No se encontraron datos de atribución\",\"E2vYsO\":\"Stripe aún no ha informado de ninguna capacidad.\",\"amMkpL\":\"Sin capacidad\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"No hay listas de check-in disponibles para este evento.\",\"wG+knX\":\"Aún sin check-ins\",\"+dAKxg\":\"No se encontraron configuraciones\",\"LiLk8u\":\"No hay conexiones disponibles\",\"eb47T5\":\"No se encontraron datos para los filtros seleccionados. Intente ajustar el rango de fechas o la moneda.\",\"lFVUyx\":\"Sin lista de registro específica para la fecha\",\"I8mtzP\":\"No hay fechas disponibles este mes. Intenta navegar a otro mes.\",\"yDukIL\":\"No hay fechas que coincidan con los filtros actuales.\",\"B7phdj\":\"No hay fechas que coincidan con tus filtros\",\"/ZB4Um\":\"No hay fechas que coincidan con tu búsqueda\",\"gEdNe8\":\"Aún no hay fechas programadas\",\"27GYXJ\":\"No hay fechas programadas.\",\"pZNOT9\":\"Sin fecha de finalización\",\"dW40Uz\":\"No se encontraron eventos\",\"8pQ3NJ\":\"No hay eventos que comiencen en las próximas 24 horas\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Sin trabajos fallidos\",\"EpvBAp\":\"Sin factura\",\"XZkeaI\":\"No se encontraron registros\",\"nrSs2u\":\"No se encontraron mensajes\",\"Rj99yx\":\"No hay sesiones disponibles\",\"IFU1IG\":\"No hay sesiones en esta fecha\",\"OVFwlg\":\"Aún no hay preguntas de pedido\",\"EJ7bVz\":\"No se encontraron pedidos\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Aún no hay pedidos para esta fecha.\",\"wUv5xQ\":\"Sin actividad de organizador en los últimos 14 días\",\"vLd1tV\":\"No hay contexto de organizador disponible.\",\"B7w4KY\":\"No hay otros organizadores disponibles\",\"PChXMe\":\"Sin pedidos pagados\",\"6jYQGG\":\"No hay eventos pasados\",\"CHzaTD\":\"Sin eventos populares en los últimos 14 días\",\"zK/+ef\":\"No hay productos disponibles para seleccionar\",\"M1/lXs\":\"No hay productos configurados para este evento.\",\"kY7XDn\":\"Ningún producto tiene entradas en lista de espera\",\"wYiAtV\":\"Sin registros de cuentas recientes\",\"UW90md\":\"No se encontraron destinatarios\",\"QoAi8D\":\"Sin respuesta\",\"JeO7SI\":\"Sin respuesta\",\"EK/G11\":\"Aún no hay respuestas\",\"7J5OKy\":\"Aún no hay ubicaciones guardadas\",\"wpCjcf\":\"Aún no hay ubicaciones guardadas. Aparecerán aquí a medida que crees eventos con direcciones.\",\"mPdY6W\":\"Sin sugerencias\",\"3sRuiW\":\"No se encontraron entradas\",\"k2C0ZR\":\"No hay próximas fechas\",\"yM5c0q\":\"No hay próximos eventos\",\"qpC74J\":\"No se encontraron usuarios\",\"8wgkoi\":\"Sin eventos vistos en los últimos 14 días\",\"Arzxc1\":\"Sin entradas en la lista de espera\",\"n5vdm2\":\"Aún no se han registrado eventos de webhook para este punto de acceso. Los eventos aparecerán aquí una vez que se activen.\",\"4GhX3c\":\"No hay Webhooks\",\"4+am6b\":\"No, mantenerme aquí\",\"4JVMUi\":\"sin editar\",\"Itw24Q\":\"Sin registrar\",\"x5+Lcz\":\"No Registrado\",\"8n10sz\":\"No Elegible\",\"kLvU3F\":\"Notificar a los asistentes y detener las ventas\",\"t9QlBd\":\"Noviembre\",\"kAREMN\":\"Número de fechas a crear\",\"6u1B3O\":\"Sesión\",\"mmoE62\":\"Sesión cancelada\",\"UYWXdN\":\"Fecha de fin de la sesión\",\"k7dZT5\":\"Hora de fin de la sesión\",\"Opinaj\":\"Etiqueta de la sesión\",\"V9flmL\":\"Programación de sesiones\",\"NUTUUs\":\"Página de programación de sesiones\",\"AT8UKD\":\"Fecha de inicio de la sesión\",\"Um8bvD\":\"Hora de inicio de la sesión\",\"Kh3WO8\":\"Resumen de la sesión\",\"byXCTu\":\"Sesiones\",\"KATw3p\":\"Sesiones (solo futuras)\",\"85rTR2\":\"Las sesiones se pueden configurar después de la creación\",\"dzQfDY\":\"Octubre\",\"BwJKBw\":\"de\",\"9h7RDh\":\"Ofrecer\",\"EfK2O6\":\"Ofrecer lugar\",\"3sVRey\":\"Ofrecer entradas\",\"2O7Ybb\":\"Tiempo límite de la oferta\",\"1jUg5D\":\"Ofrecido\",\"l+/HS6\":[\"Las ofertas expiran después de \",[\"timeoutHours\"],\" horas.\"],\"lQgMLn\":\"Nombre de oficina o lugar\",\"6Aih4U\":\"Fuera de línea\",\"Z6gBGW\":\"Pago sin conexión\",\"nO3VbP\":[\"En venta \",[\"0\"]],\"oXOSPE\":\"En línea\",\"aqmy5k\":\"En línea — indica los datos de conexión\",\"LuZBbx\":\"Online y presencial\",\"IXuOqt\":\"Online y presencial — consulta la programación\",\"w3DG44\":\"Detalles de conexión online\",\"WjSpu5\":\"Evento en línea\",\"TP6jss\":\"Detalles de conexión del evento online\",\"NdOxqr\":\"Solo los administradores de la cuenta pueden eliminar o archivar eventos. Contacta a tu administrador de cuenta para obtener ayuda.\",\"rnoDMF\":\"Solo los administradores de la cuenta pueden eliminar o archivar organizadores. Contacta a tu administrador de cuenta para obtener ayuda.\",\"bU7oUm\":\"Enviar solo a pedidos con estos estados\",\"M2w1ni\":\"Solo visible con código promocional\",\"y8Bm7C\":\"Abrir registro\",\"RLz7P+\":\"Abrir sesión\",\"cDSdPb\":\"Apodo opcional mostrado en los selectores, p. ej. \\\"Sala de Conferencias HQ\\\"\",\"HXMJxH\":\"Texto opcional para avisos legales, información de contacto o notas de agradecimiento (solo una línea)\",\"L565X2\":\"opciones\",\"8m9emP\":\"o añade una sola fecha\",\"dSeVIm\":\"pedido\",\"c/TIyD\":\"Pedido y Entrada\",\"H5qWhm\":\"Pedido cancelado\",\"b6+Y+n\":\"Pedido completado\",\"x4MLWE\":\"Confirmación de pedido\",\"CsTTH0\":\"Confirmación del pedido reenviada correctamente\",\"ppuQR4\":\"Pedido creado\",\"0UZTSq\":\"Moneda del Pedido\",\"xtQzag\":\"Detalles del pedido\",\"HdmwrI\":\"Email del pedido\",\"bwBlJv\":\"Nombre del pedido\",\"vrSW9M\":\"El pedido ha sido cancelado y reembolsado. El propietario del pedido ha sido notificado.\",\"rzw+wS\":\"Titulares de pedidos\",\"oI/hGR\":\"ID de pedido\",\"Pc729f\":\"Pedido Esperando Pago Fuera de Línea\",\"F4NXOl\":\"Apellido del pedido\",\"RQCXz6\":\"Límites de Pedido\",\"SO9AEF\":\"Límites de pedido establecidos\",\"5RDEEn\":\"Idioma del Pedido\",\"vu6Arl\":\"Pedido marcado como pagado\",\"sLbJQz\":\"Pedido no encontrado\",\"kvYpYu\":\"Pedido no encontrado\",\"i8VBuv\":\"Número de pedido\",\"eJ8SvM\":\"Número de pedido, fecha de compra, email del comprador\",\"FaPYw+\":\"Propietario del pedido\",\"eB5vce\":\"Propietarios de pedidos con un producto específico\",\"CxLoxM\":\"Propietarios de pedidos con productos\",\"DoH3fD\":\"Pago del Pedido Pendiente\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Estados de los pedidos\",\"oW5877\":\"Total del pedido\",\"e7eZuA\":\"Pedido actualizado\",\"1SQRYo\":\"Pedido actualizado correctamente\",\"KndP6g\":\"URL del pedido\",\"3NT0Ck\":\"El pedido fue cancelado\",\"V5khLm\":\"pedidos\",\"sd5IMt\":\"Pedidos completados\",\"5It1cQ\":\"Pedidos exportados\",\"tlKX/S\":\"Los pedidos que abarquen varias fechas se marcarán para revisión manual.\",\"UQ0ACV\":\"Total de pedidos\",\"B/EBQv\":\"Pedidos:\",\"qtGTNu\":\"Cuentas orgánicas\",\"ucgZ0o\":\"Organización\",\"P/JHA4\":\"Organizador archivado correctamente\",\"S3CZ5M\":\"Panel del organizador\",\"GzjTd0\":\"Organizador eliminado correctamente\",\"Uu0hZq\":\"Correo del organizador\",\"Gy7BA3\":\"Dirección de correo electrónico del organizador\",\"SQqJd8\":\"Organizador no encontrado\",\"HF8Bxa\":\"Organizador restaurado correctamente\",\"wpj63n\":\"Configuración del organizador\",\"o1my93\":\"No se pudo actualizar el estado del organizador. Inténtalo de nuevo más tarde\",\"rLHma1\":\"Estado del organizador actualizado\",\"LqBITi\":\"Se usará la plantilla del organizador/predeterminada\",\"q4zH+l\":\"Organizadores\",\"/IX/7x\":\"Otro\",\"RsiDDQ\":\"Otras Listas (Ticket No Incluido)\",\"aDfajK\":\"Aire libre\",\"qMASRF\":\"Mensajes salientes\",\"iCOVQO\":\"Anular\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Anular precio\",\"cnVIpl\":\"Anulación eliminada\",\"6/dCYd\":\"Resumen\",\"6WdDG7\":\"Página\",\"8uqsE5\":\"Página ya no disponible\",\"QkLf4H\":\"URL de la página\",\"sF+Xp9\":\"Vistas de página\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Cuentas de pago\",\"5F7SYw\":\"Reembolso parcial\",\"fFYotW\":[\"Reembolsado parcialmente: \",[\"0\"]],\"i8day5\":\"Pasar comisión al comprador\",\"k4FLBQ\":\"Pasar al comprador\",\"Ff0Dor\":\"Pasado\",\"BFjW8X\":\"Vencido\",\"xTPjSy\":\"Eventos pasados\",\"/l/ckQ\":\"Pega la URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"OZK07J\":\"Pagar para desbloquear\",\"c2/9VE\":\"Carga útil\",\"5cxUwd\":\"Fecha de pago\",\"ENEPLY\":\"Método de pago\",\"8Lx2X7\":\"Pago recibido\",\"fx8BTd\":\"Pagos no disponibles\",\"C+ylwF\":\"Pagos a tu cuenta\",\"UbRKMZ\":\"Pendiente\",\"UkM20g\":\"Revisión pendiente\",\"dPYu1F\":\"Por asistente\",\"mQV/nJ\":\"por min\",\"VlXNyK\":\"Por pedido\",\"hauDFf\":\"Por entrada\",\"mnF83a\":\"Tarifa porcentual\",\"TNLuRD\":\"Comisión porcentual (%)\",\"MixU2P\":\"El porcentaje debe estar entre 0 y 100\",\"MkuVAZ\":\"Porcentaje del monto de la transacción\",\"/Bh+7r\":\"Rendimiento\",\"fIp56F\":\"Elimina permanentemente este evento y todos sus datos asociados.\",\"nJeeX7\":\"Elimina permanentemente este organizador y todos sus eventos.\",\"wfCTgK\":\"Eliminar permanentemente esta fecha\",\"6kPk3+\":\"Información personal\",\"zmwvG2\":\"Teléfono\",\"SdM+Q1\":\"Elige una ubicación\",\"tSR/oe\":\"Elige una fecha de fin\",\"e8kzpp\":\"Elige al menos un día del mes\",\"35C8QZ\":\"Elige al menos un día de la semana\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Realizado\",\"wBJR8i\":\"¿Planificando un evento?\",\"J3lhKT\":\"Comisión de plataforma\",\"RD51+P\":[\"Comisión de plataforma de \",[\"0\"],\" deducida de su pago\"],\"br3Y/y\":\"Tarifas de plataforma\",\"3buiaw\":\"Informe de tarifas de plataforma\",\"kv9dM4\":\"Ingresos de la plataforma\",\"PJ3Ykr\":\"Por favor, consulta tu entrada para ver la hora actualizada. Tus entradas siguen siendo válidas — no es necesaria ninguna acción a menos que los nuevos horarios no te convengan. Responde a este correo si tienes alguna pregunta.\",\"OtjenF\":\"Por favor, introduzca una dirección de correo electrónico válida\",\"jEw0Mr\":\"Por favor, introduce una URL válida\",\"n8+Ng/\":\"Por favor, ingresa el código de 5 dígitos\",\"r+lQXT\":\"Por favor ingrese su número de IVA\",\"Dvq0wf\":\"Por favor, proporciona una imagen.\",\"2cUopP\":\"Por favor, reinicia el proceso de compra.\",\"GoXxOA\":\"Por favor, selecciona una fecha y hora\",\"8KmsFa\":\"Por favor seleccione un rango de fechas\",\"EFq6EG\":\"Por favor, selecciona una imagen.\",\"fuwKpE\":\"Por favor, inténtalo de nuevo.\",\"klWBeI\":\"Por favor, espera antes de solicitar otro código\",\"hfHhaa\":\"Por favor, espera mientras preparamos tus afiliados para exportar...\",\"o+tJN/\":\"Por favor, espera mientras preparamos la exportación de tus asistentes...\",\"+5Mlle\":\"Por favor, espera mientras preparamos la exportación de tus pedidos...\",\"trnWaw\":\"Polaco\",\"luHAJY\":\"Eventos populares (Últimos 14 días)\",\"p/78dY\":\"Posición\",\"TjX7xL\":\"Mensaje Post-Compra\",\"OESu7I\":\"Evite la sobreventa compartiendo inventario entre múltiples tipos de boletos.\",\"NgVUL2\":\"Vista previa del formulario de pago\",\"cs5muu\":\"Vista previa de la página del evento\",\"+4yRWM\":\"Precio del boleto\",\"Jm2AC3\":\"Nivel de precio\",\"a5jvSX\":\"Niveles de Precio\",\"ReihZ7\":\"Vista Previa de Impresión\",\"JnuPvH\":\"Imprimir Entrada\",\"tYF4Zq\":\"Imprimir a PDF\",\"LcET2C\":\"Política de privacidad\",\"8z6Y5D\":\"Procesar reembolso\",\"JcejNJ\":\"Procesando pedido\",\"EWCLpZ\":\"Producto creado\",\"XkFYVB\":\"Producto eliminado\",\"YMwcbR\":\"Desglose de ventas de productos, ingresos e impuestos\",\"ls0mTC\":\"La configuración del producto no se puede editar para fechas canceladas.\",\"2339ej\":\"Configuración del producto guardada correctamente\",\"ldVIlB\":\"Producto actualizado\",\"CP3D8G\":\"Progreso\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionales y desglose de descuentos\",\"tZqL0q\":\"códigos promocionales\",\"oCHiz3\":\"Códigos promocionales\",\"uEhdRh\":\"Solo Promocional\",\"dLm8V5\":\"Los correos promocionales pueden resultar en la suspensión de la cuenta\",\"XoEWtl\":\"Indica al menos un campo de dirección para la nueva ubicación.\",\"2W/7Gz\":\"Proporciona la siguiente información antes de la próxima revisión de Stripe para mantener los pagos.\",\"aemBRq\":\"Proveedor\",\"EEYbdt\":\"Publicar\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Comprado\",\"JunetL\":\"Comprador\",\"phmeUH\":\"Email del comprador\",\"ywR4ZL\":\"Registro con código QR\",\"oWXNE5\":\"Cant.\",\"biEyJ4\":\"Respuestas\",\"k/bJj0\":\"Preguntas reordenadas\",\"b24kPi\":\"Cola\",\"lTPqpM\":\"Consejo rápido\",\"fqDzSu\":\"Tasa\",\"mnUGVC\":\"Límite de solicitudes excedido. Por favor, inténtelo de nuevo más tarde.\",\"t41hVI\":\"Volver a ofrecer lugar\",\"TNclgc\":\"¿Reactivar esta fecha? Se reabrirá para futuras ventas.\",\"uqoRbb\":\"Analítica en tiempo real\",\"xzRvs4\":[\"Recibir actualizaciones de productos de \",[\"0\"],\".\"],\"pLXbi8\":\"Registros de cuentas recientes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Asistentes recientes\",\"qhfiwV\":\"Registros recientes\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Pedidos recientes\",\"7hPBBn\":\"destinatario\",\"jp5bq8\":\"destinatarios\",\"yPrbsy\":\"Destinatarios\",\"E1F5Ji\":\"Los destinatarios estarán disponibles después de enviar el mensaje\",\"wuhHPE\":\"Recurrente\",\"asLqwt\":\"Evento recurrente\",\"D0tAMe\":\"Eventos recurrentes\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirigiendo a Stripe...\",\"pnoTN5\":\"Cuentas de referencia\",\"ACKu03\":\"Actualizar vista previa\",\"vuFYA6\":\"Reembolsar todos los pedidos de estas fechas\",\"4cRUK3\":\"Reembolsar todos los pedidos de esta fecha\",\"fKn/k6\":\"Monto del reembolso\",\"qY4rpA\":\"Reembolso fallido\",\"TspTcZ\":\"Reembolso emitido\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendiente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configuración regional\",\"5tl0Bp\":\"Preguntas de registro\",\"ZNo5k1\":\"Restante\",\"EMnuA4\":\"Recordatorio programado\",\"Bjh87R\":\"Quitar la etiqueta de todas las fechas\",\"KkJtVK\":\"Reabrir para nuevas ventas\",\"XJwWJp\":\"¿Reabrir esta fecha para nuevas ventas? Las entradas previamente canceladas no se restablecerán — los asistentes afectados permanecen cancelados y los reembolsos ya emitidos no se revertirán.\",\"bAwDQs\":\"Repetir cada\",\"CQeZT8\":\"Informe no encontrado\",\"JEPMXN\":\"Solicitar un nuevo enlace\",\"TMLAx2\":\"Requerido\",\"mdeIOH\":\"Reenviar código\",\"sQxe68\":\"Reenviar confirmación\",\"bxoWpz\":\"Reenviar correo de confirmación\",\"G42SNI\":\"Reenviar correo\",\"TTpXL3\":[\"Reenviar en \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Reenviar entrada\",\"Uwsg2F\":\"Reservado\",\"8wUjGl\":\"Reservado hasta\",\"a5z8mb\":\"Restablecer al precio base\",\"kCn6wb\":\"Restableciendo...\",\"404zLK\":\"Ubicación resuelta o nombre del lugar\",\"ZlCDf+\":\"Respuesta\",\"bsydMp\":\"Detalles de la respuesta\",\"yKu/3Y\":\"Restaurar\",\"RokrZf\":\"Restaurar evento\",\"/JyMGh\":\"Restaurar organizador\",\"HFvFRb\":\"Restaura este evento para que vuelva a ser visible.\",\"DDIcqy\":\"Restaura este organizador y vuelve a activarlo.\",\"mO8KLE\":\"resultados\",\"6gRgw8\":\"Reintentar\",\"1BG8ga\":\"Reintentar todo\",\"rDC+T6\":\"Reintentar trabajo\",\"CbnrWb\":\"Volver al evento\",\"mdQ0zb\":\"Lugares reutilizables para tus eventos. Las ubicaciones creadas desde el autocompletado se guardan aquí automáticamente.\",\"XFOPle\":\"Reutilizar\",\"1Zehp4\":\"Reutiliza una conexión de Stripe de otro organizador de esta cuenta.\",\"Oo/PLb\":\"Resumen de ingresos\",\"O/8Ceg\":\"Ingresos de hoy\",\"CfuueU\":\"Revocar oferta\",\"RIgKv+\":\"Ejecutar hasta una fecha concreta\",\"JYRqp5\":\"Sá\",\"dFFW9L\":[\"Venta terminada \",[\"0\"]],\"loCKGB\":[\"Venta termina \",[\"0\"]],\"wlfBad\":\"Período de Venta\",\"qi81Jg\":\"Las fechas del periodo de venta se aplican a todas las fechas de tu programación. Para controlar precios y disponibilidad de fechas individuales, usa las anulaciones en la <0>página de Programación de sesiones.\",\"5CDM6r\":\"Período de venta establecido\",\"ftzaMf\":\"Período de venta, límites de pedido, visibilidad\",\"zpekWp\":[\"Venta comienza \",[\"0\"]],\"mUv9U4\":\"Ventas\",\"9KnRdL\":\"Las ventas están pausadas\",\"JC3J0k\":\"Desglose de ventas, asistencia y registro por sesión\",\"3VnlS9\":\"Ventas, pedidos y métricas de rendimiento para todos los eventos\",\"3Q1AWe\":\"Ventas:\",\"LeuERW\":\"Igual que el evento\",\"B4nE3N\":\"Precio de entrada de ejemplo\",\"8BRPoH\":\"Lugar de Ejemplo\",\"PiK6Ld\":\"Sáb\",\"+5kO8P\":\"Sábado\",\"zJiuDn\":\"Guardar anulación de comisión\",\"NB8Uxt\":\"Guardar programación\",\"KZrfYJ\":\"Guardar enlaces sociales\",\"9Y3hAT\":\"Guardar plantilla\",\"C8ne4X\":\"Guardar Diseño del Ticket\",\"cTI8IK\":\"Guardar configuración de IVA\",\"6/TNCd\":\"Guardar Configuración del IVA\",\"4RvD9q\":\"Ubicación guardada\",\"cgw0cL\":\"Ubicaciones guardadas\",\"lvSrsT\":\"Ubicaciones guardadas\",\"Fbqm/I\":\"Al guardar una anulación se crea una configuración dedicada para este organizador si actualmente está en el valor predeterminado del sistema.\",\"I+FvbD\":\"Escanear\",\"0zd6Nm\":\"Escanea una entrada para registrar a un asistente\",\"bQG7Qk\":\"Las entradas escaneadas aparecerán aquí\",\"WDYSLJ\":\"Modo escáner\",\"gmB6oO\":\"Programación\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Programación creada correctamente\",\"YP7frt\":\"La programación termina el\",\"QS1Nla\":\"Programar para más tarde\",\"NAzVVw\":\"Programar mensaje\",\"Fz09JP\":\"La programación comienza el\",\"4ba0NE\":\"Programado\",\"qcP/8K\":\"Hora programada\",\"A1taO8\":\"Buscar\",\"ftNXma\":\"Buscar afiliados...\",\"VMU+zM\":\"Buscar asistentes\",\"VY+Bdn\":\"Buscar por nombre de cuenta o correo electrónico...\",\"VX+B3I\":\"Buscar por título de evento u organizador...\",\"R0wEyA\":\"Buscar por nombre de trabajo o excepción...\",\"VT+urE\":\"Buscar por nombre o correo electrónico...\",\"GHdjuo\":\"Buscar por nombre, correo electrónico o cuenta...\",\"4mBFO7\":\"Buscar por nombre, N.º pedido, N.º entrada o email\",\"20ce0U\":\"Buscar por ID de pedido, nombre de cliente o correo electrónico...\",\"4DSz7Z\":\"Buscar por asunto, evento o cuenta...\",\"nQC7Z9\":\"Buscar fechas...\",\"iRtEpV\":\"Buscar fechas…\",\"JRM7ao\":\"Buscar una dirección\",\"BWF1kC\":\"Buscar mensajes...\",\"3aD3GF\":\"Estacional\",\"ku//5b\":\"Segundo\",\"Mck5ht\":\"Pago Seguro\",\"s7tXqF\":\"Ver programación\",\"JFap6u\":\"Ver qué necesita Stripe todavía\",\"p7xUrt\":\"Selecciona una categoría\",\"hTKQwS\":\"Selecciona una fecha y hora\",\"e4L7bF\":\"Seleccione un mensaje para ver su contenido\",\"zPRPMf\":\"Seleccionar un nivel\",\"uqpVri\":\"Selecciona una hora\",\"BFRSTT\":\"Seleccionar Cuenta\",\"wgNoIs\":\"Seleccionar todo\",\"mCB6Je\":\"Seleccionar todo\",\"aCEysm\":[\"Seleccionar todo en \",[\"0\"]],\"a6+167\":\"Seleccionar un evento\",\"CFbaPk\":\"Seleccionar grupo de asistentes\",\"88a49s\":\"Seleccionar cámara\",\"tVW/yo\":\"Seleccionar moneda\",\"SJQM1I\":\"Seleccionar fecha\",\"n9ZhRa\":\"Selecciona fecha y hora de finalización\",\"gTN6Ws\":\"Seleccionar hora de finalización\",\"0U6E9W\":\"Seleccionar categoría del evento\",\"j9cPeF\":\"Seleccionar tipos de eventos\",\"ypTjHL\":\"Seleccionar sesión\",\"KizCK7\":\"Selecciona fecha y hora de inicio\",\"dJZTv2\":\"Seleccionar hora de inicio\",\"x8XMsJ\":\"Seleccione el nivel de mensajería para esta cuenta. Esto controla los límites de mensajes y los permisos de enlaces.\",\"aT3jZX\":\"Seleccionar zona horaria\",\"TxfvH2\":\"Selecciona qué asistentes deben recibir este mensaje\",\"Ropvj0\":\"Selecciona qué eventos activarán este webhook\",\"+6YAwo\":\"seleccionado\",\"ylXj1N\":\"Seleccionado\",\"uq3CXQ\":\"Agota tu evento.\",\"j9b/iy\":\"¡Se vende rápido! 🔥\",\"73qYgo\":\"Enviar como prueba\",\"HMAqFK\":\"Enviar correos electrónicos a asistentes, titulares de entradas o propietarios de pedidos. Los mensajes se pueden enviar de inmediato o programar para más tarde.\",\"22Itl6\":\"Enviarme una copia\",\"NpEm3p\":\"Enviar ahora\",\"nOBvex\":\"Envíe datos de pedidos y asistentes en tiempo real a sus sistemas externos.\",\"1lNPhX\":\"Enviar correo de notificación de reembolso\",\"eaUTwS\":\"Enviar enlace de restablecimiento\",\"5cV4PY\":\"Enviar a todas las sesiones o elegir una específica\",\"QEQlnV\":\"Envíe su primer mensaje\",\"3nMAVT\":\"Se enviará en 2d 4h\",\"IoAuJG\":\"Enviando...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Enviado a los asistentes cuando se cancela una fecha programada\",\"SPdzrs\":\"Enviado a clientes cuando realizan un pedido\",\"LxSN5F\":\"Enviado a cada asistente con los detalles de su boleto\",\"hgvbYY\":\"Septiembre\",\"5sN96e\":\"Sesión cancelada\",\"89xaFU\":\"Establezca la configuración predeterminada de comisiones de plataforma para nuevos eventos creados bajo este organizador.\",\"eXssj5\":\"Establecer configuraciones predeterminadas para nuevos eventos creados bajo este organizador.\",\"uPe5p8\":\"Define cuánto dura cada fecha\",\"xNsRxU\":\"Establecer número de fechas\",\"ODuUEi\":\"Establecer o borrar la etiqueta de la fecha\",\"buHACR\":\"Establece la hora de fin de cada fecha para que sea este tiempo después de su hora de inicio.\",\"TaeFgl\":\"Establecer como ilimitado (quitar límite)\",\"pd6SSe\":\"Configura una programación recurrente para crear fechas automáticamente, o añádelas una a una.\",\"s0FkEx\":\"Configure listas de registro para diferentes entradas, sesiones o días.\",\"TaWVGe\":\"Configurar pagos\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Configurar programación\",\"xMO+Ao\":\"Configura tu organización\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Configura tu programación\",\"ETC76A\":\"Establece, cambia o elimina la ubicación o los datos online de la sesión\",\"C3htzi\":\"Configuración actualizada\",\"Ohn74G\":\"Configuración y diseño\",\"1W5XyZ\":\"La configuración solo lleva unos minutos — no necesitas tener una cuenta de Stripe. Stripe se encarga de tarjetas, billeteras, métodos de pago regionales y protección antifraude para que tú te centres en tu evento.\",\"GG7qDw\":\"Compartir enlace de afiliado\",\"hL7sDJ\":\"Compartir página del organizador\",\"jy6QDF\":\"Gestión de capacidad compartida\",\"jDNHW4\":\"Desplazar horarios\",\"tPfIaW\":[\"Se desplazaron los horarios de \",[\"count\"],\" fecha(s)\"],\"WwlM8F\":\"Mostrar opciones avanzadas\",\"cMW+gm\":[\"Mostrar todas las plataformas (\",[\"0\"],\" más con valores)\"],\"wXi9pZ\":\"Mostrar notas al personal sin iniciar sesión\",\"UVPI5D\":\"Mostrar menos plataformas\",\"Eu/N/d\":\"Mostrar casilla de aceptación de marketing\",\"SXzpzO\":\"Mostrar casilla de aceptación de marketing por defecto\",\"57tTk5\":\"Mostrar más fechas\",\"b33PL9\":\"Mostrar más plataformas\",\"Eut7p9\":\"Mostrar detalles del pedido al personal sin iniciar sesión\",\"+RoWKN\":\"Mostrar respuestas al personal sin iniciar sesión\",\"t1LIQW\":[\"Mostrando \",[\"0\"],\" de \",[\"totalRows\"],\" registros\"],\"E717U9\":[\"Mostrando \",[\"0\"],\"–\",[\"1\"],\" de \",[\"2\"]],\"5rzhBQ\":[\"Mostrando \",[\"MAX_VISIBLE\"],\" de \",[\"totalAvailable\"],\" fechas. Escribe para buscar.\"],\"WSt3op\":[\"Mostrando las primeras \",[\"0\"],\" — las \",[\"1\"],\" sesion(es) restantes igualmente recibirán el mensaje cuando se envíe.\"],\"OJLTEL\":\"Se muestra al personal la primera vez que abre la página de check-in.\",\"jVRHeq\":\"Registrado\",\"5C7J+P\":\"Evento único\",\"E//btK\":\"Omitir fechas editadas manualmente\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Enlaces sociales\",\"j/TOB3\":\"Enlaces sociales y sitio web\",\"s9KGXU\":\"Vendido\",\"iACSrw\":\"Algunos detalles están ocultos al acceso público. Inicia sesión para verlo todo.\",\"KTxc6k\":\"Algo salió mal, inténtalo de nuevo o contacta con soporte si el problema persiste\",\"lkE00/\":\"Algo salió mal. Por favor, inténtelo de nuevo más tarde.\",\"wdxz7K\":\"Fuente\",\"fDG2by\":\"Espiritualidad\",\"oPaRES\":\"Divide el check-in por días, zonas o tipos de entrada. Comparte el enlace con el personal — sin necesidad de cuenta.\",\"7JFNej\":\"Deportes\",\"/bfV1Y\":\"Instrucciones del personal\",\"tXkhj/\":\"Inicio\",\"JcQp9p\":\"Fecha y hora de inicio\",\"0m/ekX\":\"Fecha y hora de inicio\",\"izRfYP\":\"La fecha de inicio es obligatoria\",\"tuO4fV\":\"Fecha de inicio de la sesión\",\"2R1+Rv\":\"Hora de inicio del evento\",\"2Olov3\":\"Hora de inicio de la sesión\",\"n9ZrDo\":\"Empieza a escribir un lugar o dirección...\",\"qeFVhN\":[\"Empieza en \",[\"diffDays\"],\" días\"],\"AOqtxN\":[\"Empieza en \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Empieza en \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Empieza en \",[\"seconds\"],\"s\"],\"NqChgF\":\"Empieza mañana\",\"2NbyY/\":\"Estadísticas\",\"GVUxAX\":\"Las estadísticas se basan en la fecha de creación de la cuenta\",\"29Hx9U\":\"Estadísticas\",\"5ia+r6\":\"Aún se necesita\",\"wuV0bK\":\"Detener Suplantación\",\"s/KaDb\":\"Stripe conectado\",\"Bk06QI\":\"Stripe conectado\",\"akZMv8\":[\"Conexión de Stripe copiada de \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe no devolvió un enlace de configuración. Vuelve a intentarlo.\",\"aKtF0O\":\"Stripe no conectado\",\"9i0++A\":\"ID de pago de Stripe\",\"R1lIMV\":\"Stripe necesitará algunos datos más en breve\",\"FzcCHA\":\"Stripe te guiará con unas preguntas rápidas para terminar la configuración.\",\"eYbd7b\":\"Do\",\"ii0qn/\":\"El asunto es requerido\",\"M7Uapz\":\"El asunto aparecerá aquí\",\"6aXq+t\":\"Asunto:\",\"JwTmB6\":\"Producto duplicado con éxito\",\"WUOCgI\":\"Lugar ofrecido con éxito\",\"IvxA4G\":[\"Tickets ofrecidos exitosamente a \",[\"count\"],\" personas\"],\"kKpkzy\":\"Tickets ofrecidos exitosamente a 1 persona\",\"Zi3Sbw\":\"Eliminado de la lista de espera con éxito\",\"RuaKfn\":\"Dirección actualizada correctamente\",\"kzx0uD\":\"Valores Predeterminados del Evento Actualizados con Éxito\",\"5n+Wwp\":\"Organizador actualizado correctamente\",\"DMCX/I\":\"Configuración predeterminada de comisiones actualizada exitosamente\",\"URUYHc\":\"Configuración de comisiones de plataforma actualizada exitosamente\",\"0Dk/l8\":\"Configuración SEO actualizada correctamente\",\"S8Tua9\":\"Ajustes actualizados exitosamente\",\"MhOoLQ\":\"Enlaces sociales actualizados correctamente\",\"CNSSfp\":\"Configuración de seguimiento actualizada correctamente\",\"kj7zYe\":\"Webhook actualizado con éxito\",\"dXoieq\":\"Resumen\",\"/RfJXt\":[\"Festival de música de verano \",[\"0\"]],\"CWOPIK\":\"Festival de Música de Verano 2025\",\"D89zck\":\"Dom\",\"DBC3t5\":\"Domingo\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Cambiar organizador\",\"9YHrNC\":\"Predeterminado del sistema\",\"lruQkA\":\"Toca la pantalla para continuar escaneando\",\"TJUrME\":[\"Dirigiéndose a asistentes de \",[\"0\"],\" sesiones seleccionadas.\"],\"yT6dQ8\":\"Impuestos recaudados agrupados por tipo de impuesto y evento\",\"Ye321X\":\"Nombre del impuesto\",\"WyCBRt\":\"Resumen de impuestos\",\"GkH0Pq\":\"Impuestos y tasas aplicados\",\"Rwiyt2\":\"Impuestos configurados\",\"iQZff7\":\"Impuestos, tarifas, visibilidad, período de venta, destacado de productos y límites de pedido\",\"SXvRWU\":\"Colaboración en equipo\",\"vlf/In\":\"Tecnología\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Dile a la gente qué esperar de tu evento\",\"NiIUyb\":\"Cuéntanos sobre tu evento\",\"DovcfC\":\"Cuéntanos sobre tu organización. Esta información se mostrará en las páginas de tus eventos.\",\"69GWRq\":\"Cuéntanos con qué frecuencia se repite tu evento y crearemos todas las fechas por ti.\",\"mXPbwY\":\"Dinos tu estado de registro de IVA para que apliquemos el IVA correcto a las comisiones de la plataforma.\",\"7wtpH5\":\"Plantilla activa\",\"QHhZeE\":\"Plantilla creada exitosamente\",\"xrWdPR\":\"Plantilla eliminada exitosamente\",\"G04Zjt\":\"Plantilla guardada exitosamente\",\"xowcRf\":\"Términos del servicio\",\"6K0GjX\":\"El texto puede ser difícil de leer\",\"u0F1Ey\":\"Ju\",\"nm3Iz/\":\"¡Gracias por asistir!\",\"pYwj0k\":\"Gracias,\",\"k3IitN\":\"Y hasta aquí\",\"KfmPRW\":\"El color de fondo de la página. Al usar imagen de portada, se aplica como una superposición.\",\"MDNyJz\":\"El código expirará en 10 minutos. Revisa tu carpeta de spam si no ves el correo.\",\"AIF7J2\":\"La moneda en la que se define la tarifa fija. Se convertirá a la moneda del pedido en el momento del pago.\",\"MJm4Tq\":\"La moneda del pedido\",\"cDHM1d\":\"La dirección de correo electrónico ha sido cambiada. El asistente recibirá una nueva entrada en la dirección de correo actualizada.\",\"I/NNtI\":\"El lugar del evento\",\"tXadb0\":\"El evento que buscas no está disponible en este momento. Puede que haya sido eliminado, haya caducado o la URL sea incorrecta.\",\"5fPdZe\":\"La primera fecha desde la que se generará esta programación.\",\"EBzPwC\":\"La dirección completa del evento\",\"sxKqBm\":\"El monto completo del pedido será reembolsado al método de pago original del cliente.\",\"KgDp6G\":\"El enlace al que intenta acceder ha caducado o ya no es válido. Por favor, revise su correo electrónico para obtener un enlace actualizado para gestionar su pedido.\",\"5OmEal\":\"El idioma del cliente\",\"Np4eLs\":[\"El máximo es \",[\"MAX_PREVIEW\"],\" sesiones. Reduce el rango de fechas, la frecuencia o el número de sesiones por día.\"],\"sYLeDq\":\"No se pudo encontrar el organizador que estás buscando. La página puede haber sido movida, eliminada o la URL puede ser incorrecta.\",\"PCr4zw\":\"La anulación se registra en el historial de auditoría del pedido.\",\"C4nQe5\":\"La comisión de la plataforma se añade al precio de la entrada. Los compradores pagan más, pero usted recibe el precio completo de la entrada.\",\"HxxXZO\":\"El color principal de marca usado para botones y destacados\",\"z0KrIG\":\"La hora programada es obligatoria\",\"EWErQh\":\"La hora programada debe ser en el futuro\",\"UNd0OU\":[\"La sesión de \\\"\",[\"title\"],\"\\\" originalmente programada para \",[\"0\"],\" ha sido reprogramada.\"],\"DEcpfp\":\"El cuerpo de la plantilla contiene sintaxis Liquid inválida. Por favor corrígela e inténtalo de nuevo.\",\"injXD7\":\"No se pudo validar el número de IVA. Por favor, verifica el número e inténtalo de nuevo.\",\"A4UmDy\":\"Teatro\",\"tDwYhx\":\"Tema y colores\",\"O7g4eR\":\"No hay próximas fechas para este evento\",\"HrIl0p\":[\"No hay una lista de registro específica para esta fecha. La lista \\\"\",[\"0\"],\"\\\" registra a los asistentes de todas las fechas — el personal que escanee una entrada para una fecha diferente lo hará con éxito de todas formas.\"],\"dt3TwA\":\"Estos son los precios y cantidades predeterminados para todas las fechas. Las fechas de venta de los niveles se aplican globalmente. Puedes anular precios y cantidades para fechas individuales en la <0>página de Programación de sesiones.\",\"062KsE\":\"Estos detalles se muestran en la entrada del asistente y en el resumen del pedido solo para esta fecha.\",\"5Eu+tn\":\"Estos detalles solo se mostrarán si el pedido se completa correctamente.\",\"jQjwR+\":\"Estos datos sustituirán cualquier ubicación existente en las sesiones afectadas y aparecerán en las entradas de los asistentes.\",\"QP3gP+\":\"Estas configuraciones solo se aplican al código incrustado copiado y no se guardarán.\",\"HirZe8\":\"Estas plantillas se usarán como predeterminadas para todos los eventos en su organización. Los eventos individuales pueden anular estas plantillas con sus propias versiones personalizadas.\",\"lzAaG5\":\"Estas plantillas anularán los predeterminados del organizador solo para este evento. Si no se establece una plantilla personalizada aquí, se usará la plantilla del organizador en su lugar.\",\"UlykKR\":\"Tercero\",\"wkP5FM\":\"Esto se aplica a todas las fechas coincidentes del evento, incluidas las no visibles actualmente. Los asistentes registrados en cualquiera de esas fechas podrán recibir mensajes desde el redactor cuando finalice la actualización.\",\"SOmGDa\":\"Esta lista de registro está vinculada a una sesión que ha sido cancelada, por lo que ya no se puede usar para registros.\",\"XBNC3E\":\"Este código se usará para rastrear ventas. Solo se permiten letras, números, guiones y guiones bajos.\",\"AaP0M+\":\"Esta combinación de colores puede ser difícil de leer para algunos usuarios\",\"o1phK/\":[\"Esta fecha tiene \",[\"orderCount\"],\" pedido(s) que se verán afectados.\"],\"F/UtGt\":\"Esta fecha ha sido cancelada. Aún puedes eliminarla permanentemente.\",\"BLZ7pX\":\"Esta fecha es del pasado. Se creará pero no será visible para los asistentes en las próximas fechas.\",\"7IIY0z\":\"Esta fecha está marcada como agotada.\",\"bddWMP\":\"Esta fecha ya no está disponible. Por favor, selecciona otra fecha.\",\"RzEvf5\":\"Este evento ha finalizado\",\"YClrdK\":\"Este evento aún no está publicado\",\"dFJnia\":\"Este es el nombre de tu organizador que se mostrará a tus usuarios.\",\"vt7jiq\":\"Esta es la única vez que se mostrará el secreto de firma. Por favor, cópielo ahora y guárdelo de forma segura.\",\"L7dIM7\":\"Este enlace es inválido o ha caducado.\",\"MR5ygV\":\"Este enlace ya no es válido\",\"9LEqK0\":\"Este nombre es visible para los usuarios finales\",\"QdUMM9\":\"Esta sesión está a plena capacidad\",\"j5FdeA\":\"Este pedido está siendo procesado.\",\"sjNPMw\":\"Este pedido fue abandonado. Puede iniciar un nuevo pedido en cualquier momento.\",\"OhCesD\":\"Este pedido fue cancelado. Puedes iniciar un nuevo pedido en cualquier momento.\",\"lyD7rQ\":\"Este perfil de organizador aún no está publicado\",\"9b5956\":\"Esta vista previa muestra cómo se verá su correo con datos de muestra. Los correos reales usarán valores reales.\",\"uM9Alj\":\"Este producto está destacado en la página del evento\",\"RqSKdX\":\"Este producto está agotado\",\"W12OdJ\":\"Este informe es solo para fines informativos. Siempre consulte con un profesional de impuestos antes de usar estos datos para fines contables o fiscales. Por favor, verifique con su panel de Stripe ya que Hi.Events puede no tener datos históricos.\",\"0Ew0uk\":\"Este boleto acaba de ser escaneado. Por favor espere antes de escanear nuevamente.\",\"FYXq7k\":[\"Esto afectará a \",[\"loadedAffectedCount\"],\" fecha(s).\"],\"kvpxIU\":\"Esto se usará para notificaciones y comunicación con tus usuarios.\",\"rhsath\":\"Esto no será visible para los clientes, pero te ayuda a identificar al afiliado.\",\"hV6FeJ\":\"Ritmo\",\"+FjWgX\":\"Jue\",\"kkDQ8m\":\"Jueves\",\"0GSPnc\":\"Diseño de Ticket\",\"EZC/Cu\":\"Diseño del ticket guardado exitosamente\",\"bbslmb\":\"Diseñador de boletos\",\"1BPctx\":\"Entrada para\",\"bgqf+K\":\"Email del portador del boleto\",\"oR7zL3\":\"Nombre del portador del boleto\",\"HGuXjF\":\"Poseedores de entradas\",\"CMUt3Y\":\"Titulares de entradas\",\"awHmAT\":\"ID del boleto\",\"6czJik\":\"Logo del Ticket\",\"OkRZ4Z\":\"Nombre del boleto\",\"t79rDv\":\"Entrada no encontrada\",\"6tmWch\":\"Entrada o producto\",\"1tfWrD\":\"Vista previa de boleto para\",\"KnjoUA\":\"Precio de la entrada\",\"tGCY6d\":\"Precio del boleto\",\"pGZOcL\":\"Entrada reenviada correctamente\",\"o02GZM\":\"La venta de entradas para este evento ha finalizado\",\"8jLPgH\":\"Tipo de Ticket\",\"X26cQf\":\"URL del boleto\",\"8qsbZ5\":\"Venta de boletos\",\"zNECqg\":\"entradas\",\"6GQNLE\":\"Entradas\",\"NRhrIB\":\"Entradas y productos\",\"OrWHoZ\":\"Los tickets se ofrecen automáticamente a los clientes en lista de espera cuando hay disponibilidad.\",\"EUnesn\":\"Entradas disponibles\",\"AGRilS\":\"Entradas Vendidas\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Hora\",\"dMtLDE\":\"a\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar sus límites, contáctenos en\",\"ecUA8p\":\"Hoy\",\"W428WC\":\"Alternar columnas\",\"BRMXj0\":\"Mañana\",\"UBSG1X\":\"Mejores organizadores (Últimos 14 días)\",\"3sZ0xx\":\"Cuentas Totales\",\"EaAPbv\":\"Cantidad total pagada\",\"SMDzqJ\":\"Total de asistentes\",\"orBECM\":\"Total recaudado\",\"k5CU8c\":\"Total de entradas\",\"4B7oCp\":\"Tarifa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Usuarios Totales\",\"oJjplO\":\"Vistas totales\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Seguimiento del crecimiento y rendimiento de la cuenta por fuente de atribución\",\"YwKzpH\":\"Seguimiento y analítica\",\"uKOFO5\":\"Verdadero si pago sin conexión\",\"9GsDR2\":\"Verdadero si pago pendiente\",\"GUA0Jy\":\"Prueba otro término o filtro\",\"2P/OWN\":\"Prueba a ajustar los filtros para ver más fechas.\",\"ouM5IM\":\"Probar otro correo\",\"3DZvE7\":\"Probar Hi.Events gratis\",\"7P/9OY\":\"Ma\",\"vq2WxD\":\"Mar\",\"G3myU+\":\"Martes\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desactivar sonido\",\"KUOhTy\":\"Activar sonido\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Escribe \\\"eliminar\\\" para confirmar\",\"XxecLm\":\"Tipo de boleto\",\"IrVSu+\":\"No se pudo duplicar el producto. Por favor, revisa tus datos\",\"Vx2J6x\":\"No se pudo obtener el asistente\",\"h0dx5e\":\"No se pudo unir a la lista de espera\",\"DaE0Hg\":\"No se pudieron cargar los detalles del asistente.\",\"GlnD5Y\":\"No se pueden cargar los productos para esta fecha. Inténtalo de nuevo.\",\"17VbmV\":\"No se pudo deshacer el check-in\",\"n57zCW\":\"Cuentas sin atribución\",\"9uI/rE\":\"Deshacer\",\"b9SN9q\":\"Referencia única del pedido\",\"Ef7StM\":\"Desconocido\",\"ZBAScj\":\"Asistente desconocido\",\"MEIAzV\":\"Sin nombre\",\"K6L5Mx\":\"Ubicación sin nombre\",\"X13xGn\":\"No confiable\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Actualizar afiliado\",\"59qHrb\":\"Actualizar capacidad\",\"Gaem9v\":\"Actualizar nombre y descripción del evento\",\"7EhE4k\":\"Actualizar etiqueta\",\"NPQWj8\":\"Actualizar ubicación\",\"75+lpR\":[\"Actualización: \",[\"subjectTitle\"],\" — cambios en la programación\"],\"UOGHdA\":[\"Actualización: \",[\"subjectTitle\"],\" — hora de la sesión cambiada\"],\"ogoTrw\":[\"Se actualizaron \",[\"count\"],\" fecha(s)\"],\"dDuona\":[\"Se actualizó la capacidad de \",[\"count\"],\" fecha(s)\"],\"FT3LSc\":[\"Se actualizó la etiqueta de \",[\"count\"],\" fecha(s)\"],\"8EcY1g\":[\"Ubicación actualizada para \",[\"count\"],\" sesión(es)\"],\"gJQsLv\":\"Sube una imagen de portada para tu organizador\",\"4kEGqW\":\"Sube un logo para tu organizador\",\"lnCMdg\":\"Subir imagen\",\"29w7p6\":\"Subiendo imagen...\",\"HtrFfw\":\"La URL es obligatoria\",\"vzWC39\":\"USB\",\"td5pxI\":\"Escáner USB activo\",\"dyTklH\":\"Escáner USB en pausa\",\"OHJXlK\":\"Use <0>plantillas Liquid para personalizar sus correos electrónicos\",\"g0WJMu\":\"Usar lista para todas las fechas\",\"0k4cdb\":\"Usar detalles del pedido para todos los asistentes. Los nombres y correos de los asistentes coincidirán con la información del comprador.\",\"MKK5oI\":\"¿Usar la lista para todas las fechas o crear una lista para esta fecha?\",\"bA31T4\":\"Usar los datos del comprador para todos los asistentes\",\"rnoQsz\":\"Usado para bordes, resaltados y estilo del código QR\",\"BV4L/Q\":\"Analíticas UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validando tu número de IVA...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Número de IVA\",\"pnVh83\":\"Número de IVA\",\"CabI04\":\"El número de IVA no debe contener espacios\",\"PMhxAR\":\"El número de IVA debe comenzar con un código de país de 2 letras seguido de 8-15 caracteres alfanuméricos (p. ej., ES12345678A)\",\"gPgdNV\":\"Número de IVA validado correctamente\",\"RUMiLy\":\"Falló la validación del número de IVA\",\"vqji3Y\":\"Falló la validación del número de IVA. Por favor, verifica tu número de IVA.\",\"8dENF9\":\"IVA sobre tarifa\",\"ZutOKU\":\"Tasa de IVA\",\"+KJZt3\":\"Registrado para IVA\",\"Nfbg76\":\"Configuración del IVA guardada exitosamente\",\"UvYql/\":\"Configuración de IVA guardada. Estamos validando tu número de IVA en segundo plano.\",\"bXn1Jz\":\"Configuración de IVA actualizada\",\"tJylUv\":\"Tratamiento del IVA para Tarifas de la Plataforma\",\"FlGprQ\":\"Tratamiento del IVA para tarifas de la plataforma: Las empresas registradas para el IVA en la UE pueden usar el mecanismo de inversión del sujeto pasivo (0% - Artículo 196 de la Directiva del IVA 2006/112/CE). Las empresas no registradas para el IVA se les cobra el IVA irlandés del 23%.\",\"516oLj\":\"Servicio de validación de IVA temporalmente no disponible\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"IVA: no registrado\",\"AdWhjZ\":\"Código de verificación\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Verificado\",\"wCKkSr\":\"Verificar correo\",\"/IBv6X\":\"Verifica tu correo electrónico\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Verificando...\",\"fROFIL\":\"Vietnamita\",\"p5nYkr\":\"Ver todo\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Ver todas las capacidades\",\"RnvnDc\":\"Ver todos los mensajes enviados en la plataforma\",\"+WFMis\":\"Ver y descargar informes de todos sus eventos. Solo se incluyen pedidos completados.\",\"c7VN/A\":\"Ver respuestas\",\"SZw9tS\":\"Ver detalles\",\"9+84uW\":[\"Ver detalles de \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Ver evento\",\"c6SXHN\":\"Ver página del evento\",\"n6EaWL\":\"Ver registros\",\"OaKTzt\":\"Ver mapa\",\"zNZNMs\":\"Ver mensaje\",\"67OJ7t\":\"Ver pedido\",\"tKKZn0\":\"Ver detalles del pedido\",\"KeCXJu\":\"Vea detalles de pedidos, emita reembolsos y reenvíe confirmaciones.\",\"9jnAcN\":\"Ver página principal del organizador\",\"1J/AWD\":\"Ver boleto\",\"N9FyyW\":\"Vea, edite y exporte sus asistentes registrados.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"En espera\",\"quR8Qp\":\"Esperando pago\",\"KrurBH\":\"Esperando escaneo…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de espera activada\",\"TwnTPy\":\"Oferta de lista de espera expirada\",\"NzIvKm\":\"Lista de espera activada\",\"aUi/Dz\":\"Advertencia: Esta es la configuración predeterminada del sistema. Los cambios afectarán a todas las cuentas que no tengan una configuración específica asignada.\",\"qeygIa\":\"Mi\",\"aT/44s\":\"No pudimos copiar esa conexión de Stripe. Vuelve a intentarlo.\",\"RRZDED\":\"No pudimos encontrar pedidos asociados a este correo electrónico.\",\"2RZK9x\":\"No pudimos encontrar el pedido que busca. El enlace puede haber expirado o los detalles del pedido pueden haber cambiado.\",\"nefMIK\":\"No pudimos encontrar la entrada que busca. El enlace puede haber expirado o los detalles de la entrada pueden haber cambiado.\",\"miysJh\":\"No pudimos encontrar este pedido. Puede haber sido eliminado.\",\"ADsQ23\":\"No pudimos conectar con Stripe en este momento. Inténtalo de nuevo en un momento.\",\"HJKdzP\":\"Tuvimos un problema al cargar esta página. Por favor, inténtalo de nuevo.\",\"jegrvW\":\"Nos asociamos con Stripe para enviar los pagos directamente a tu cuenta bancaria.\",\"IfN2Qo\":\"Recomendamos un logo cuadrado con dimensiones mínimas de 200x200px\",\"wJzo/w\":\"Recomendamos dimensiones de 400px por 400px y un tamaño máximo de archivo de 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Usamos cookies para entender cómo se utiliza el sitio y para mejorar tu experiencia.\",\"x8rEDQ\":\"No pudimos validar tu número de IVA después de múltiples intentos. Continuaremos intentando en segundo plano. Por favor, vuelve a verificar más tarde.\",\"iy+M+c\":[\"Te avisaremos por correo electrónico si queda una plaza disponible para \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Abriremos un redactor de mensajes con una plantilla rellenada después de guardar. Tú lo revisas y lo envías — nada se envía automáticamente.\",\"q1BizZ\":\"Enviaremos tus entradas a este correo electrónico\",\"ZOmUYW\":\"Validaremos tu número de IVA en segundo plano. Si hay algún problema, te lo haremos saber.\",\"LKjHr4\":[\"Hemos hecho cambios en la programación de \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" afectando a \",[\"affectedCount\"],\" sesion(es).\"],\"Fq/Nx7\":\"Hemos enviado un código de verificación de 5 dígitos a:\",\"GdWB+V\":\"Webhook creado con éxito\",\"2X4ecw\":\"Webhook eliminado con éxito\",\"ndBv0v\":\"Integraciones de webhook\",\"CThMKa\":\"Registros del Webhook\",\"I0adYQ\":\"Secreto de firma del Webhook\",\"nuh/Wq\":\"URL del Webhook\",\"8BMPMe\":\"El webhook no enviará notificaciones\",\"FSaY52\":\"El webhook enviará notificaciones\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Sitio web\",\"0f7U0k\":\"Mié\",\"VAcXNz\":\"Miércoles\",\"64X6l4\":\"semana\",\"4XSc4l\":\"Semanal\",\"IAUiSh\":\"semanas\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bienvenido de nuevo\",\"QDWsl9\":[\"Bienvenido a \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bienvenido a \",[\"0\"],\", aquí hay una lista de todos tus eventos\"],\"DDbx7K\":\"Bienestar\",\"ywRaYa\":\"¿A qué hora?\",\"FaSXqR\":\"¿Qué tipo de evento?\",\"0WyYF4\":\"Lo que ve el personal no autenticado\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Cuando se elimina un registro de entrada\",\"RPe6bE\":\"Cuando se cancela una fecha en un evento recurrente\",\"Gmd0hv\":\"Cuando se crea un nuevo asistente\",\"zyIyPe\":\"Cuando se crea un nuevo evento\",\"Lc18qn\":\"Cuando se crea un nuevo pedido\",\"dfkQIO\":\"Cuando se crea un nuevo producto\",\"8OhzyY\":\"Cuando se elimina un producto\",\"tRXdQ9\":\"Cuando se actualiza un producto\",\"9L9/28\":\"Cuando un producto se agota, los clientes pueden unirse a una lista de espera para recibir un aviso cuando haya plazas disponibles.\",\"Q7CWxp\":\"Cuando se cancela un asistente\",\"IuUoyV\":\"Cuando un asistente se registra\",\"nBVOd7\":\"Cuando se actualiza un asistente\",\"t7cuMp\":\"Cuando se archiva un evento\",\"gtoSzE\":\"Cuando se actualiza un evento\",\"ny2r8d\":\"Cuando se cancela un pedido\",\"c9RYbv\":\"Cuando un pedido se marca como pagado\",\"ejMDw1\":\"Cuando se reembolsa un pedido\",\"fVPt0F\":\"Cuando se actualiza un pedido\",\"bcYlvb\":\"Cuándo cierra el check-in\",\"XIG669\":\"Cuándo abre el check-in\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"Cuando está habilitado, los nuevos eventos permitirán a los asistentes gestionar sus propios detalles de entrada a través de un enlace seguro. Esto se puede anular por evento.\",\"blXLKj\":\"Cuando está habilitado, los nuevos eventos mostrarán una casilla de aceptación de marketing durante el checkout. Esto se puede anular por evento.\",\"Kj0Txn\":\"Cuando está habilitado, no se cobrarán comisiones de aplicación en las transacciones de Stripe Connect. Use esto para países donde las comisiones de aplicación no son compatibles.\",\"tMqezN\":\"Si se están procesando los reembolsos\",\"uchB0M\":\"Vista previa del widget\",\"uvIqcj\":\"Taller\",\"EpknJA\":\"Escribe tu mensaje aquí...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"año\",\"zkWmBh\":\"Anual\",\"+BGee5\":\"años\",\"X/azM1\":\"Sí - Tengo un número de registro de IVA de la UE válido\",\"Tz5oXG\":\"Sí, cancelar mi pedido\",\"QlSZU0\":[\"Estás suplantando a <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Está emitiendo un reembolso parcial. Al cliente se le reembolsará \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Puede configurar comisiones de servicio adicionales e impuestos en la configuración de su cuenta.\",\"rj3A7+\":\"Puedes anular esto para fechas individuales más tarde.\",\"paWwQ0\":\"Aún puede ofrecer tickets manualmente si es necesario.\",\"jTDzpA\":\"No puedes archivar el último organizador activo de tu cuenta.\",\"5VGIlq\":\"Ha alcanzado su límite de mensajería.\",\"casL1O\":\"Has añadido impuestos y tarifas a un producto gratuito. ¿Te gustaría eliminarlos?\",\"9jJNZY\":\"Debes reconocer tus responsabilidades antes de guardar\",\"pCLes8\":\"Debe aceptar recibir mensajes\",\"FVTVBy\":\"Debes verificar tu dirección de correo electrónico antes de poder actualizar el estado del organizador.\",\"ze4bi/\":\"Necesitas crear al menos una sesión antes de poder añadir asistentes a este evento recurrente.\",\"w65ZgF\":\"Necesitas verificar el correo electrónico de tu cuenta antes de poder modificar plantillas de correo.\",\"FRl8Jv\":\"Debes verificar el correo electrónico de tu cuenta antes de poder enviar mensajes.\",\"88cUW+\":\"Usted recibe\",\"O6/3cu\":\"Podrás configurar fechas, programaciones y reglas de recurrencia en el siguiente paso.\",\"zKAheG\":\"Estás cambiando horarios de sesión\",\"MNFIxz\":[\"¡Vas a ir a \",[\"0\"],\"!\"],\"qGZz0m\":\"¡Estás en la lista de espera!\",\"/5HL6k\":\"¡Se te ha ofrecido un lugar!\",\"gbjFFH\":\"Has cambiado la hora de la sesión\",\"p/Sa0j\":\"Su cuenta tiene límites de mensajería. Para aumentar sus límites, contáctenos en\",\"x/xjzn\":\"Tus afiliados se han exportado exitosamente.\",\"TF37u6\":\"Tus asistentes se han exportado con éxito.\",\"79lXGw\":\"Tu lista de check-in se ha creado exitosamente. Comparte el enlace de abajo con tu personal de check-in.\",\"BnlG9U\":\"Tu pedido actual se perderá.\",\"nBqgQb\":\"Tu correo electrónico\",\"GG1fRP\":\"¡Tu evento está en vivo!\",\"ifRqmm\":\"¡Tu mensaje se ha enviado exitosamente!\",\"0/+Nn9\":\"Sus mensajes aparecerán aquí\",\"/Rj5P4\":\"Tu nombre\",\"PFjJxY\":\"Tu nueva contraseña debe tener al menos 8 caracteres.\",\"gzrCuN\":\"Los detalles de su pedido han sido actualizados. Se ha enviado un correo electrónico de confirmación a la nueva dirección de correo.\",\"naQW82\":\"Tu pedido ha sido cancelado.\",\"bhlHm/\":\"Tu pedido está esperando el pago\",\"XeNum6\":\"Tus pedidos se han exportado con éxito.\",\"Xd1R1a\":\"La dirección de tu organizador\",\"WWYHKD\":\"Su pago está protegido con encriptación de nivel bancario\",\"5b3QLi\":\"Su plan\",\"N4Zkqc\":\"Tu filtro de fecha guardado ya no está disponible — mostrando todas las fechas.\",\"FNO5uZ\":\"Tu entrada sigue siendo válida — no es necesaria ninguna acción a menos que la nueva hora no te convenga. Responde a este correo si tienes alguna pregunta.\",\"CnZ3Ou\":\"Tus entradas han sido confirmadas.\",\"EmFsMZ\":\"Tu número de IVA está en cola para validación\",\"QBlhh4\":\"Tu número de IVA será validado cuando guardes\",\"fT9VLt\":\"Tu oferta de la lista de espera ha expirado y no pudimos completar tu pedido. Vuelve a unirte a la lista de espera para recibir aviso cuando haya más plazas disponibles.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/es.po b/frontend/src/locales/es.po index 20f27ac3ca..9d16eb8233 100644 --- a/frontend/src/locales/es.po +++ b/frontend/src/locales/es.po @@ -60,7 +60,7 @@ msgstr "{0} <0>retirado con éxito" msgid "{0} Active Webhooks" msgstr "{0} webhooks activos" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} disponible" @@ -78,7 +78,7 @@ msgstr "{0} restantes" msgid "{0} logo" msgstr "Logo de {0}" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{0} de {1} plazas ocupadas." @@ -90,7 +90,7 @@ msgstr "{0} organizadores" msgid "{0} spots left" msgstr "{0} plazas restantes" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} entradas" @@ -114,7 +114,7 @@ msgstr "Logo de {appName}" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} asistentes están registrados en esta sesión." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} de {totalCount} disponibles" @@ -122,7 +122,7 @@ msgstr "{availableCount} de {totalCount} disponibles" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} registrados" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} eventos" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} horas, {minutes} minutos y {seconds} segundos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "{loadedAffectedAttendees} asistentes están registrados en las sesiones afectadas." @@ -163,11 +163,11 @@ msgstr "{minutos} minutos y {segundos} segundos" msgid "{organizerName}'s first event" msgstr "El primer evento de {organizerName}" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} tipos de entradas" @@ -230,7 +230,7 @@ msgstr "0 minutos y 0 segundos" msgid "1 Active Webhook" msgstr "1 webhook activo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "1 asistente está registrado en las sesiones afectadas." @@ -238,35 +238,35 @@ msgstr "1 asistente está registrado en las sesiones afectadas." msgid "1 attendee is registered for this session." msgstr "1 asistente está registrado en esta sesión." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 día después de la fecha de finalización" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 día después de la fecha de inicio" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 día antes del evento" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 hora antes del evento" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 entrada" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 tipo de entrada" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 semana antes del evento" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "Se ha enviado un aviso de cancelación a" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "un cambio de duración" @@ -321,7 +321,7 @@ msgstr "Una entrada desplegable permite solo una selección" msgid "A fee, like a booking fee or a service fee" msgstr "Una tarifa, como una tarifa de reserva o una tarifa de servicio" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "Un código promocional sin descuento puede usarse para revelar productos msgid "A Radio option has multiple options but only one can be selected." msgstr "Una opción de Radio tiene múltiples opciones pero solo se puede seleccionar una." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "un cambio en las horas de inicio/fin" @@ -465,7 +465,7 @@ msgstr "Cuenta actualizada exitosamente" msgid "Accounts" msgstr "Cuentas" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Acción Requerida: Se Necesita Información del IVA" @@ -493,10 +493,10 @@ msgstr "Fecha de activación" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Métodos de pago activos" msgid "Activity" msgstr "Actividad" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Añadir una fecha" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "Agregue notas sobre el pedido..." msgid "Add at least one time" msgstr "Añade al menos un horario" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Añade los datos de conexión para el evento online." @@ -572,15 +576,19 @@ msgstr "Añadir fecha" msgid "Add Dates" msgstr "Añadir fechas" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Añadir descripción" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "Agregar pregunta" msgid "Add Tax or Fee" msgstr "Agregar impuesto o tarifa" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Añadir este asistente de todas formas (sobrescribir capacidad)" @@ -634,8 +642,8 @@ msgstr "Añadir este asistente de todas formas (sobrescribir capacidad)" msgid "Add this event to your calendar" msgstr "Añade este evento a tu calendario" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Agregar entradas" @@ -649,7 +657,7 @@ msgstr "Agregar nivel" msgid "Add to Calendar" msgstr "Agregar al calendario" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Añade píxeles de seguimiento a tus páginas públicas de evento y a la página principal del organizador. Se mostrará un aviso de cookies a los visitantes cuando el seguimiento esté activo." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Dirección Línea 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Dirección Línea 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Línea de dirección 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Línea de dirección 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Administración" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Acceso de administrador requerido" @@ -725,7 +733,7 @@ msgstr "Acceso de administrador requerido" msgid "Admin Dashboard" msgstr "Panel de Administración" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Los usuarios administradores tienen acceso completo a los eventos y la configuración de la cuenta." @@ -776,7 +784,7 @@ msgstr "Afiliados exportados" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Los afiliados te ayudan a rastrear las ventas generadas por socios e influencers. Crea códigos de afiliado y compártelos para monitorear el rendimiento." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "todas" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "Todos los eventos archivados" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Todos los asistentes" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "Todos los asistentes de las sesiones seleccionadas" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Todos los asistentes a este evento." -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Todos los asistentes de esta sesión" @@ -838,12 +846,12 @@ msgstr "Todos los trabajos fallidos eliminados" msgid "All jobs queued for retry" msgstr "Todos los trabajos en cola para reintentar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Todas las fechas coincidentes" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Todas las sesiones" @@ -897,7 +905,7 @@ msgstr "¿Ya tienes una cuenta? <0>{0}" msgid "Already in" msgstr "Ya registrado" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Ya reembolsado" @@ -905,11 +913,11 @@ msgstr "Ya reembolsado" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "¿Ya usas Stripe en otro organizador? Reutiliza esa conexión." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "También cancelar este pedido" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "También reembolsar este pedido" @@ -932,7 +940,7 @@ msgstr "Cantidad" msgid "Amount Paid" msgstr "Monto pagado" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Importe pagado ({0})" @@ -952,7 +960,7 @@ msgstr "Se produjo un error al cargar la página." msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Un mensaje opcional para mostrar en el producto destacado, ej. \"Se vende rápido 🔥\" o \"Mejor valor\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Ocurrió un error inesperado." @@ -988,7 +996,7 @@ msgstr "Cualquier consulta de los titulares de productos se enviará a esta dire msgid "Appearance" msgstr "Apariencia" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "aplicado" @@ -996,7 +1004,7 @@ msgstr "aplicado" msgid "Applies to {0} products" msgstr "Se aplica a {0} productos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Se aplica a {0} fechas no canceladas cargadas actualmente en esta página." @@ -1008,7 +1016,7 @@ msgstr "Se aplica a 1 producto" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Aplica a quien abra el enlace de check-in sin iniciar sesión. Los miembros autenticados siempre lo ven todo." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Se aplica a todas las {0} fechas no canceladas de este evento — incluidas las que no están cargadas actualmente." @@ -1016,11 +1024,11 @@ msgstr "Se aplica a todas las {0} fechas no canceladas de este evento — inclui msgid "Apply" msgstr "Aplicar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Aplicar cambios" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Aplicar código promocional" @@ -1028,7 +1036,7 @@ msgstr "Aplicar código promocional" msgid "Apply this {type} to all new products" msgstr "Aplicar este {type} a todos los nuevos productos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Aplicar a" @@ -1044,36 +1052,35 @@ msgstr "Aprobar mensaje" msgid "April" msgstr "Abril" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Archivar" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Archivar evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Archivar evento" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Archivar organizador" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Archiva este evento para ocultarlo al público. Puedes restaurarlo más tarde." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Archiva este organizador. Esto también archivará todos los eventos pertenecientes a este organizador." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Archivado" @@ -1085,15 +1092,15 @@ msgstr "Organizadores archivados" msgid "Are you sure you want to activate this attendee?" msgstr "¿Está seguro de que desea activar este asistente?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "¿Está seguro de que desea archivar este evento?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "¿Estás seguro de que quieres archivar este evento? Ya no será visible para el público." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "¿Estás seguro de que quieres archivar este organizador? Esto también archivará todos los eventos pertenecientes a este organizador." @@ -1123,7 +1130,7 @@ msgstr "¿Estás seguro de que deseas eliminar todos los trabajos fallidos?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "¿Estás seguro de que quieres eliminar este afiliado? Esta acción no se puede deshacer." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "¿Estás seguro de que quieres eliminar esta configuración? Esto puede afectar a las cuentas que la utilizan." @@ -1137,11 +1144,11 @@ msgstr "¿Seguro que quieres eliminar esta fecha? Esta acción no se puede desha msgid "Are you sure you want to delete this promo code?" msgstr "¿Estás seguro de que deseas eliminar este código de promoción?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "¿Está seguro de que desea eliminar esta plantilla? Esta acción no se puede deshacer y los correos volverán a la plantilla predeterminada." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "¿Está seguro de que desea eliminar esta plantilla? Esta acción no se puede deshacer y los correos volverán a la plantilla del organizador o predeterminada." @@ -1150,17 +1157,17 @@ msgstr "¿Está seguro de que desea eliminar esta plantilla? Esta acción no se msgid "Are you sure you want to delete this webhook?" msgstr "¿Estás seguro de que quieres eliminar este webhook?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "¿Estás seguro de que quieres salir?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "¿Estás seguro de que quieres hacer este borrador de evento? Esto hará que el evento sea invisible para el público." #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "¿Estás seguro de que quieres hacer público este evento? Esto hará que el evento sea visible para el público." @@ -1200,15 +1207,15 @@ msgstr "¿Está seguro de que desea reenviar la confirmación del pedido a {0}?" msgid "Are you sure you want to resend the ticket to {0}?" msgstr "¿Está seguro de que desea reenviar la entrada a {0}?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "¿Estás seguro de que quieres restaurar este evento?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "¿Está seguro de que desea restaurar este evento? Será restaurado como un evento borrador." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "¿Estás seguro de que quieres restaurar este organizador?" @@ -1229,7 +1236,7 @@ msgstr "¿Estás seguro de que deseas eliminar esta Asignación de Capacidad?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "¿Está seguro de que desea eliminar esta lista de registro?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "¿Está registrado para el IVA en la UE?" @@ -1237,7 +1244,7 @@ msgstr "¿Está registrado para el IVA en la UE?" msgid "Art" msgstr "Arte" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "Como su negocio está ubicado en Irlanda, el IVA irlandés del 23% se aplica automáticamente a todas las tarifas de la plataforma." @@ -1270,7 +1277,7 @@ msgstr "Nivel asignado" msgid "At least one event type must be selected" msgstr "Debe seleccionarse al menos un tipo de evento" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Intentos" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Asistencia y tasas de registro en todos los eventos" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "asistente" @@ -1287,7 +1293,7 @@ msgstr "asistente" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Asistente" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Estado del Asistente" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Entrada del asistente" @@ -1364,13 +1370,13 @@ msgstr "El ticket del asistente no está incluido en esta lista" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "asistentes" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "asistentes" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Asistentes" @@ -1393,16 +1399,16 @@ msgstr "asistentes registrados" msgid "Attendees Exported" msgstr "Asistentes exportados" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Asistentes registrados" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Asistentes registrados" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Asistentes con entrada específica" @@ -1454,7 +1460,7 @@ msgstr "Ajustar automáticamente la altura del widget según el contenido. Cuand msgid "Available" msgstr "Disponible" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Disponible para reembolso" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "Pendiente" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "Esperando pago offline" @@ -1482,7 +1488,7 @@ msgstr "Pago pendiente" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "Esperando pago" @@ -1513,14 +1519,14 @@ msgstr "Volver a cuentas" msgid "Back to calendar" msgstr "Volver al calendario" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Volver al evento" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Volver a la página del evento" @@ -1548,7 +1554,7 @@ msgstr "Color de fondo" msgid "Background Type" msgstr "Tipo de fondo" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "Basado en el periodo de venta global anterior, no por fecha" msgid "Basic Information" msgstr "Información básica" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Dirección de facturación" @@ -1599,11 +1605,11 @@ msgstr "Protección antifraude integrada" msgid "Bulk Edit" msgstr "Edición masiva" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Editar fechas en bloque" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "La actualización masiva falló." @@ -1635,11 +1641,11 @@ msgstr "El comprador paga" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Los compradores ven un precio limpio. La comisión de la plataforma se deduce de su pago." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "Al añadir píxeles de seguimiento, reconoces que tú y esta plataforma sois corresponsables de los datos recopilados. Eres responsable de asegurar que tienes una base legal para este tratamiento conforme a las leyes de privacidad aplicables (GDPR, CCPA, etc.)." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Al continuar, aceptas los <0>Términos de Servicio de {0}" @@ -1660,7 +1666,7 @@ msgstr "Al registrarte, aceptas nuestras <0>Condiciones de servicio y nuestr msgid "By ticket type" msgstr "Por tipo de entrada" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Omitir comisiones de aplicación" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "No se puede registrar" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Cancelar" @@ -1729,7 +1735,7 @@ msgstr "Cancelar" msgid "Cancel {count} date(s)" msgstr "Cancelar {count} fecha(s)" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Cancelar todos los productos y devolverlos al grupo disponible" @@ -1743,7 +1749,7 @@ msgstr "Cancelar todos los productos y devolverlos al grupo disponible" msgid "Cancel Date" msgstr "Cancelar fecha" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "Cancelar cambio de correo electrónico" @@ -1751,7 +1757,7 @@ msgstr "Cancelar cambio de correo electrónico" msgid "Cancel order" msgstr "Cancelar orden" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Cancelar orden" @@ -1759,7 +1765,7 @@ msgstr "Cancelar orden" msgid "Cancel Order {0}" msgstr "Cancelar pedido {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "Cancelar anulará todos los asistentes asociados con este pedido y liberará los boletos de vuelta al grupo disponible." @@ -1781,7 +1787,7 @@ msgstr "Cancelación" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "Cancelado" msgid "Cancelled {0} date(s)" msgstr "Se canceló {0} fecha(s)" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "No se puede eliminar la configuración predeterminada del sistema" @@ -1825,7 +1831,7 @@ msgstr "Gestión de capacidad" msgid "Capacity must be 0 or greater" msgstr "La capacidad debe ser 0 o mayor" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "actualizaciones de capacidad" @@ -1833,7 +1839,7 @@ msgstr "actualizaciones de capacidad" msgid "Capacity Used" msgstr "Capacidad utilizada" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "Las categorías le permiten agrupar productos. Por ejemplo, puede tener una categoría para \"Entradas\" y otra para \"Mercancía\"." @@ -1854,19 +1860,19 @@ msgstr "Categoría" msgid "Category Created Successfully" msgstr "Categoría creada con éxito" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Cambiar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Cambiar duración" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Cambiar la contraseña" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Cambiar el límite de asistentes" @@ -1874,7 +1880,7 @@ msgstr "Cambiar el límite de asistentes" msgid "Change waitlist settings" msgstr "Cambiar configuración de lista de espera" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "Se cambió la duración de {count} fecha(s)" @@ -1891,15 +1897,15 @@ msgstr "Caridad" msgid "Check in" msgstr "Registrar" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Registrar {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Registrar entrada y marcar pedido como pagado" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Solo registrar entrada" @@ -1913,7 +1919,7 @@ msgstr "Anular" msgid "Check out this event: {0}" msgstr "Mira este evento: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "¡Mira este evento!" @@ -1994,7 +2000,7 @@ msgstr "Listas de registro" msgid "Check-In Lists" msgstr "Listas de registro" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Navegación de check-in" @@ -2074,11 +2080,11 @@ msgstr "Elige un color para tu fondo" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Elige otra acción" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Elige una ubicación guardada para aplicar." @@ -2108,12 +2114,12 @@ msgstr "Elija quién paga la comisión de la plataforma. Esto no afecta las comi #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Ciudad" @@ -2122,7 +2128,7 @@ msgstr "Ciudad" msgid "Clear" msgstr "Limpiar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Borrar ubicación — usar la predeterminada del evento" @@ -2134,7 +2140,7 @@ msgstr "Limpiar búsqueda" msgid "Clear Search Text" msgstr "Borrar texto de búsqueda" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "Al borrar se elimina cualquier ubicación específica de la fecha. Las fechas afectadas usarán la ubicación predeterminada del evento." @@ -2154,7 +2160,7 @@ msgstr "Haz clic para reabrir para nuevas ventas" msgid "Click to view notes" msgstr "Haga clic para ver las notas" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "cerrar" @@ -2162,8 +2168,8 @@ msgstr "cerrar" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Cerca" @@ -2259,7 +2265,7 @@ msgstr "Muy pronto" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Palabras clave separadas por comas que describen el evento. Estos serán utilizados por los motores de búsqueda para ayudar a categorizar e indexar el evento." -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Preferencias de comunicación" @@ -2267,11 +2273,11 @@ msgstr "Preferencias de comunicación" msgid "complete" msgstr "completado" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Completar Orden" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "El pago completo" @@ -2280,11 +2286,11 @@ msgstr "El pago completo" msgid "Complete Stripe setup" msgstr "Completar la configuración de Stripe" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Completa tu pedido para asegurar tus entradas. Esta oferta tiene un tiempo limitado, así que no esperes demasiado." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Completa tu pago para asegurar tus entradas." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Completa tu perfil para unirte al equipo." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Terminado" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Pedidos completados" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Pedidos completados" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Redactar" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Configuración asignada" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Configuración creada correctamente" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Configuración eliminada correctamente" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "Los nombres de configuración son visibles para los usuarios finales. Las tarifas fijas se convertirán a la moneda del pedido al tipo de cambio actual." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Configuración actualizada correctamente" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Configuraciones" @@ -2377,10 +2383,10 @@ msgstr "Descuento configurado" msgid "Confirm" msgstr "Confirmar" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "Confirmar dirección de correo electrónico" @@ -2393,7 +2399,7 @@ msgstr "Confirmar cambio de correo electrónico" msgid "Confirm new password" msgstr "Confirmar nueva contraseña" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Confirmar nueva contraseña" @@ -2428,16 +2434,16 @@ msgstr "Confirmando dirección de correo electrónico..." msgid "Congratulations! Your event is now visible to the public." msgstr "¡Felicidades! Tu evento ahora es visible para el público." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Conectar raya" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Conecta Stripe para habilitar la edición de plantillas de correo" @@ -2445,7 +2451,7 @@ msgstr "Conecta Stripe para habilitar la edición de plantillas de correo" msgid "Connect Stripe to enable messaging" msgstr "Conecte Stripe para habilitar mensajería" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Conéctate con Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "Email de contacto para soporte" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Continuar" @@ -2508,7 +2514,7 @@ msgstr "Texto del botón Continuar" msgid "Continue Setup" msgstr "Continuar configuración" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Continuar al pago" @@ -2520,7 +2526,7 @@ msgstr "Continuar a la creación del evento" msgid "Continue to next step" msgstr "Continuar al siguiente paso" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Continuar al pago" @@ -2545,7 +2551,7 @@ msgstr "Controla quién entra y cuándo" msgid "Copied" msgstr "copiado" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Copiado de arriba" @@ -2591,7 +2597,7 @@ msgstr "Copiar código" msgid "Copy customer link" msgstr "Copiar enlace del cliente" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Copiar datos al primer asistente" @@ -2609,7 +2615,7 @@ msgstr "Copiar enlace" msgid "Copy Link" msgstr "Copiar link" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Copiar mis datos a:" @@ -2630,7 +2636,7 @@ msgstr "Copiar URL" msgid "Could not delete location" msgstr "No se pudo eliminar la ubicación" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "No se pudo preparar la actualización masiva." @@ -2652,13 +2658,17 @@ msgstr "No se pudo guardar la fecha" msgid "Could not save location" msgstr "No se pudo guardar la ubicación" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "País" @@ -2671,6 +2681,10 @@ msgstr "Cubrir" msgid "Cover Image" msgstr "Imagen de portada" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "La imagen de portada se mostrará en la parte superior de la página del evento" @@ -2743,7 +2757,7 @@ msgstr "crear un organizador" msgid "Create and configure tickets and merchandise for sale." msgstr "Cree y configure boletos y mercancía para la venta." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Crear asistente" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Crear categoría" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Crear categoría" @@ -2771,17 +2785,17 @@ msgstr "Crear categoría" msgid "Create Check-In List" msgstr "Crear lista de registro" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Crear configuración" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Crear plantillas de correo personalizadas para este evento que anulen los predeterminados del organizador" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Crear plantilla personalizada" @@ -2793,16 +2807,16 @@ msgstr "Crear fecha" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Cree descuentos, códigos de acceso para boletos ocultos y ofertas especiales." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Crear evento" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Crear para esta fecha" @@ -2849,7 +2863,7 @@ msgstr "Crear impuesto o tarifa" msgid "Create Ticket or Product" msgstr "Crear entrada o producto" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "Crea tu evento" msgid "Create your first event" msgstr "Crea tu primer evento" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "La etiqueta CTA es requerida" msgid "Currency" msgstr "Divisa" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Contraseña actual" @@ -2931,7 +2949,7 @@ msgstr "Actualmente disponible para compra" msgid "Custom branding" msgstr "Marca personalizada" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Fecha y hora personalizada" @@ -2957,7 +2975,7 @@ msgstr "Preguntas personalizadas" msgid "Custom Range" msgstr "Rango personalizado" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Plantilla personalizada" @@ -2970,7 +2988,7 @@ msgstr "Cliente" msgid "Customer link copied to clipboard" msgstr "Enlace del cliente copiado al portapapeles" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "El cliente recibirá un correo electrónico confirmando el reembolso" @@ -2990,11 +3008,15 @@ msgstr "Apellido del cliente" msgid "Customers" msgstr "Clientes" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Personalice la configuración de correo electrónico y notificaciones para este evento" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Personalice los correos enviados a sus clientes usando plantillas Liquid. Estas plantillas se usarán como predeterminadas para todos los eventos en su organización." @@ -3027,6 +3049,10 @@ msgstr "Personaliza el texto que aparece en el botón de continuar" msgid "Customize your email template using Liquid templating" msgstr "Personalice su plantilla de correo usando plantillas Liquid" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Personaliza la apariencia de tu página de organizador" @@ -3079,7 +3105,7 @@ msgstr "Oscuro" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Dashboard" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Fecha y hora" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Cancelación de fecha" @@ -3208,12 +3234,12 @@ msgstr "Capacidad predeterminada por fecha" msgid "Default Fee Handling" msgstr "Gestión predeterminada de comisiones" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Se usará la plantilla predeterminada" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "eliminar" @@ -3267,8 +3293,8 @@ msgstr "Eliminar código" msgid "Delete Date" msgstr "Eliminar fecha" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Eliminar evento" @@ -3285,8 +3311,8 @@ msgstr "Eliminar trabajo" msgid "Delete location" msgstr "Eliminar ubicación" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Eliminar organizador" @@ -3294,7 +3320,7 @@ msgstr "Eliminar organizador" msgid "Delete Permanently" msgstr "Eliminar permanentemente" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Eliminar plantilla" @@ -3319,7 +3345,7 @@ msgstr "Se eliminó {0} fecha(s)" msgid "Description" msgstr "Descripción" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "Descuento en {0}" msgid "Discount Type" msgstr "Tipo de descuento" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Descartar" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Descartar este mensaje" @@ -3441,7 +3467,7 @@ msgstr "Descargar CSV" msgid "Download invoice" msgstr "Descargar factura" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Descargar factura" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Descargue informes de ventas, asistentes y financieros para todos los pedidos completados." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "Descargando factura" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Borrador" @@ -3469,7 +3494,7 @@ msgstr "Borrador" msgid "Dropdown selection" msgstr "Selección desplegable" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "Debido al alto riesgo de spam, debes conectar una cuenta de Stripe antes de poder modificar plantillas de correo. Esto es para garantizar que todos los organizadores de eventos estén verificados y sean responsables." @@ -3490,7 +3515,7 @@ msgstr "Duplicar" msgid "Duplicate Date" msgstr "Duplicar fecha" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Duplicar evento" @@ -3508,7 +3533,7 @@ msgstr "Duplicar opciones" msgid "Duplicate Product" msgstr "Duplicar producto" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "La duración debe ser de al menos 1 minuto." @@ -3520,7 +3545,7 @@ msgstr "Holandés" msgid "e.g. 180 (3 hours)" msgstr "ej. 180 (3 horas)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "p. ej. Sesión matutina" msgid "e.g., Get Tickets, Register Now" msgstr "p. ej., Conseguir entradas, Registrarse ahora" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "p. ej., Actualización importante sobre tus entradas" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "p. ej., Estándar, Premium, Empresarial" @@ -3542,7 +3567,7 @@ msgstr "p. ej., Estándar, Premium, Empresarial" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Cada persona recibirá un correo electrónico con un lugar reservado para completar su compra." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Antes" @@ -3611,7 +3636,7 @@ msgstr "Editar lista de registro" msgid "Edit Code" msgstr "Editar código" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Editar configuración" @@ -3659,8 +3684,8 @@ msgstr "Editar pregunta" msgid "Edit user" msgstr "Editar usuario" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "editar usuario" @@ -3708,7 +3733,7 @@ msgstr "Listas de Check-In Elegibles" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Listas de Check-In Elegibles" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "Correo electrónico" @@ -3743,10 +3768,10 @@ msgstr "Correo y Plantillas" msgid "Email address" msgstr "Dirección de correo electrónico" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "Dirección de correo electrónico" @@ -3755,8 +3780,8 @@ msgstr "Dirección de correo electrónico" msgid "Email address copied to clipboard" msgstr "Dirección de correo copiada al portapapeles" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "Las direcciones de correo electrónico no coinciden" @@ -3764,21 +3789,21 @@ msgstr "Las direcciones de correo electrónico no coinciden" msgid "Email Body" msgstr "Cuerpo del correo" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "Cambio de correo electrónico cancelado exitosamente" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "Cambio de correo electrónico pendiente" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "Confirmación por correo electrónico reenviada" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "La confirmación por correo electrónico se reenvió correctamente" @@ -3792,7 +3817,7 @@ msgstr "Mensaje de pie de página de correo electrónico" msgid "Email is required" msgstr "El correo es obligatorio" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "Correo electrónico no verificado" @@ -3800,7 +3825,7 @@ msgstr "Correo electrónico no verificado" msgid "Email Preview" msgstr "Vista previa del correo" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "Plantillas de correo" @@ -3809,6 +3834,10 @@ msgstr "Plantillas de correo" msgid "Email Verification Required" msgstr "Verificación de correo requerida" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "¡Correo verificado exitosamente!" @@ -3897,12 +3926,11 @@ msgstr "Hora de finalización (opcional)" msgid "End time of the occurrence" msgstr "Hora de fin de la sesión" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Terminado" @@ -3920,11 +3948,11 @@ msgstr "Termina {0}" msgid "English" msgstr "Inglés" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Introduce un valor de capacidad o elige ilimitado." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Introduce una etiqueta o elige eliminarla." @@ -3932,7 +3960,7 @@ msgstr "Introduce una etiqueta o elige eliminarla." msgid "Enter a subject and body to see the preview" msgstr "Ingrese un asunto y cuerpo para ver la vista previa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Introduce un intervalo de tiempo para desplazar." @@ -3949,11 +3977,11 @@ msgstr "Ingresa el correo del afiliado (opcional)" msgid "Enter affiliate name" msgstr "Ingresa el nombre del afiliado" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Ingrese un monto sin incluir impuestos ni tarifas." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Introduce la capacidad" @@ -3998,7 +4026,7 @@ msgstr "Ingresa tu correo electrónico y te enviaremos instrucciones para restab msgid "Enter your name" msgstr "Introduce tu nombre" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Ingresa tu número de IVA incluyendo el código de país, sin espacios (p. ej., ES12345678A, DE123456789)" @@ -4012,7 +4040,7 @@ msgstr "Las entradas aparecerán aquí cuando los clientes se unan a la lista de #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Error" @@ -4074,7 +4102,7 @@ msgstr "Evento" msgid "Event Archived" msgstr "Evento archivado" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Evento archivado correctamente" @@ -4086,7 +4114,7 @@ msgstr "Categoría del evento" msgid "Event Cover Image" msgstr "Imagen de portada del evento" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4094,7 +4122,7 @@ msgstr "" msgid "Event Created" msgstr "Evento creado" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Plantilla personalizada del evento" @@ -4113,7 +4141,7 @@ msgstr "Fecha del Evento" msgid "Event Defaults" msgstr "Valores predeterminados de eventos" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Evento eliminado correctamente" @@ -4145,10 +4173,14 @@ msgstr "Evento duplicado con éxito" msgid "Event Full Address" msgstr "Dirección Completa del Evento" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Página principal del evento" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Ubicación del evento" @@ -4188,7 +4220,7 @@ msgstr "Nombre del organizador del evento" msgid "Event Page" msgstr "Página del evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Evento restaurado correctamente" @@ -4197,17 +4229,17 @@ msgstr "Evento restaurado correctamente" msgid "Event Settings" msgstr "Configuración del evento" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Error al actualizar el estado del evento. Por favor, inténtelo de nuevo más tarde" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Estado del evento actualizado" @@ -4240,7 +4272,7 @@ msgstr "Título del evento" msgid "Event Too New" msgstr "Evento demasiado nuevo" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Totales del evento" @@ -4405,7 +4437,7 @@ msgstr "Falló el" msgid "Failed Jobs" msgstr "Trabajos fallidos" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "No se pudo abandonar el pedido. Por favor, inténtalo de nuevo." @@ -4439,7 +4471,7 @@ msgstr "No se pudo cancelar el pedido" msgid "Failed to create affiliate" msgstr "Error al crear el afiliado" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Error al crear configuración" @@ -4447,12 +4479,12 @@ msgstr "Error al crear configuración" msgid "Failed to create schedule" msgstr "No se pudo crear la programación" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Error al crear la plantilla" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Error al eliminar configuración" @@ -4470,7 +4502,7 @@ msgstr "No se pudo eliminar la fecha. Puede tener pedidos existentes." msgid "Failed to delete dates" msgstr "No se pudieron eliminar las fechas" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Error al eliminar el evento" @@ -4482,7 +4514,7 @@ msgstr "Error al eliminar el trabajo" msgid "Failed to delete jobs" msgstr "Error al eliminar los trabajos" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Error al eliminar el organizador" @@ -4490,13 +4522,13 @@ msgstr "Error al eliminar el organizador" msgid "Failed to delete question" msgstr "Error al eliminar la pregunta" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Error al eliminar la plantilla" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "No se pudo descargar la factura. Inténtalo de nuevo." @@ -4594,14 +4626,14 @@ msgstr "No se pudo guardar la anulación de precio" msgid "Failed to save product settings" msgstr "No se pudo guardar la configuración del producto" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Error al guardar la plantilla" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Error al guardar la configuración del IVA. Por favor, inténtelo de nuevo." @@ -4639,11 +4671,11 @@ msgstr "No se pudo actualizar la respuesta." msgid "Failed to update attendee" msgstr "No se pudo actualizar el asistente" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Error al actualizar configuración" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Error al actualizar el estado del evento" @@ -4655,7 +4687,7 @@ msgstr "Error al actualizar el nivel de mensajería" msgid "Failed to update order" msgstr "No se pudo actualizar el pedido" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Error al actualizar el estado del organizador" @@ -4701,7 +4733,7 @@ msgstr "Febrero" msgid "Fee" msgstr "Tarifa" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Moneda de la tarifa" @@ -4720,7 +4752,7 @@ msgstr "" msgid "Fees" msgstr "Honorarios" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Comisiones omitidas" @@ -4732,8 +4764,8 @@ msgstr "Festival" msgid "File is too large. Maximum size is 5MB." msgstr "El archivo es demasiado grande. El tamaño máximo es de 5 MB." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Primero completa tus datos arriba" @@ -4754,7 +4786,7 @@ msgstr "Filtrar Asistentes" msgid "Filter by date" msgstr "Filtrar por fecha" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Filtrar por evento" @@ -4775,19 +4807,27 @@ msgstr "Filtros ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Termina de configurar Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "Primero" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "Primer asistente" @@ -4798,22 +4838,22 @@ msgstr "Primer número de factura" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Primer Nombre" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Primer Nombre" @@ -4843,16 +4883,16 @@ msgstr "Cantidad fija" msgid "Fixed fee" msgstr "Comisión fija" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Tarifa fija" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Tarifa fija cobrada por transacción" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "La tarifa fija debe ser 0 o mayor" @@ -4923,7 +4963,11 @@ msgstr "Viernes" msgid "Full data ownership" msgstr "Propiedad total de los datos" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Reembolso completo" @@ -4931,11 +4975,11 @@ msgstr "Reembolso completo" msgid "Full resolved address" msgstr "Dirección completa resuelta" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "futuro" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Solo fechas futuras" @@ -4992,7 +5036,7 @@ msgstr "Comenzar" msgid "Get Tickets" msgstr "Obtener Entradas" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Prepare su evento" @@ -5013,7 +5057,7 @@ msgstr "Volver" msgid "Go back to profile" msgstr "volver al perfil" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Ir a la página del evento" @@ -5037,7 +5081,7 @@ msgstr "Google Calendar" msgid "Got it" msgstr "Entendido" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Ingresos brutos" @@ -5045,22 +5089,22 @@ msgstr "Ingresos brutos" msgid "Gross Revenue" msgstr "Ingresos brutos" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Ventas brutas" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Ventas brutas" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5077,7 +5121,7 @@ msgstr "Huéspedes" msgid "Happening now" msgstr "Sucede ahora" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "¿Tienes un código de promoción?" @@ -5106,7 +5150,7 @@ msgstr "Aquí está el componente React que puede usar para incrustar el widget msgid "Here is your affiliate link" msgstr "Aquí está tu enlace de afiliado" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Hola {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Oculto de la vista del público" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "Las preguntas ocultas sólo son visibles para el organizador del evento y no para el cliente." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Esconder" @@ -5239,8 +5283,8 @@ msgstr "Vista previa de la página de inicio" msgid "Homer" msgstr "Homero" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Horas" @@ -5269,11 +5313,11 @@ msgstr "¿Con qué frecuencia?" msgid "How to pay offline" msgstr "Cómo pagar fuera de línea" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "Cómo se aplica el IVA a las comisiones de la plataforma que te cobramos." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "Límite de caracteres HTML excedido: {htmlLength}/{maxLength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Húngaro" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Reconozco mis responsabilidades como responsable del tratamiento de datos" @@ -5305,11 +5349,11 @@ msgstr "Acepto recibir notificaciones por correo electrónico relacionadas con e msgid "I agree to the <0>terms and conditions" msgstr "Acepto los <0>términos y condiciones" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Confirmo que este es un mensaje transaccional relacionado con este evento" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Si no se abrió una nueva pestaña automáticamente, haz clic en el botón de abajo para continuar al pago." @@ -5325,7 +5369,7 @@ msgstr "Si está habilitado, el personal de registro puede marcar a los asistent msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Si está habilitado, el organizador recibirá una notificación por correo electrónico cuando se realice un nuevo pedido." -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Si no solicitó este cambio, cambie inmediatamente su contraseña." @@ -5370,11 +5414,11 @@ msgstr "Suplantación iniciada" msgid "Impersonation stopped" msgstr "Suplantación detenida" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Aviso importante" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Importante: Cambiar su dirección de correo electrónico actualizará el enlace para acceder a este pedido. Será redirigido al nuevo enlace del pedido después de guardar." @@ -5390,7 +5434,7 @@ msgstr "En {diffMinutes} minutos" msgid "in last {0} min" msgstr "en los últimos {0} min" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "Presencial — establecer un lugar" @@ -5401,15 +5445,15 @@ msgstr "in_person, online, unset, o mixed" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Inactivo" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Los usuarios inactivos no pueden iniciar sesión." @@ -5483,12 +5527,12 @@ msgstr "Formato de correo inválido" msgid "Invalid file type. Please upload an image." msgstr "Tipo de archivo inválido. Por favor, sube una imagen." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Sintaxis Liquid inválida. Por favor corrígela e inténtalo de nuevo." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Formato de número de IVA inválido" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Factura" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Factura descargada con éxito" @@ -5545,7 +5589,7 @@ msgstr "Configuración de facturación" msgid "Italian" msgstr "Italiano" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Artículo" @@ -5628,7 +5672,7 @@ msgstr "justo ahora" msgid "Just wrapped" msgstr "Recién terminado" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Mantenerme informado sobre noticias y eventos de {0}" @@ -5647,13 +5691,13 @@ msgstr "Etiqueta" msgid "Label for the occurrence" msgstr "Etiqueta de la sesión" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "actualizaciones de etiquetas" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Idioma" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "Últimas 24 horas" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "Últimos 30 días" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "Últimos 6 meses" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "Últimos 7 días" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "Últimos 90 días" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Apellido" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Apellido" @@ -5753,7 +5797,7 @@ msgstr "Última activación" msgid "Last Used" msgstr "Última vez usado" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Después" @@ -5786,7 +5830,7 @@ msgstr "Déjalo activado para cubrir todas las entradas del evento. Desactívalo msgid "Let them know about the change" msgstr "Avísales del cambio" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Avísales de los cambios" @@ -5830,12 +5874,11 @@ msgstr "Lista" msgid "List view" msgstr "Vista de lista" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "En vivo" @@ -5848,7 +5891,7 @@ msgstr "EN VIVO" msgid "Live Events" msgstr "Eventos en Vivo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Fechas cargadas" @@ -5872,8 +5915,8 @@ msgstr "Cargando webhooks" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Cargando..." @@ -5926,7 +5969,7 @@ msgstr "Ubicación guardada" msgid "Location updated" msgstr "Ubicación actualizada" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "actualizaciones de ubicación" @@ -5990,7 +6033,7 @@ msgstr "Oficina principal" msgid "Make billing address mandatory during checkout" msgstr "Hacer obligatoria la dirección de facturación durante el pago" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "Gestionar asistente" msgid "Manage dates and times for your recurring event" msgstr "Gestiona fechas y horarios de tu evento recurrente" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Administrar evento" @@ -6039,10 +6082,14 @@ msgstr "Gestionar pedido" msgid "Manage payment and invoicing settings for this event." msgstr "Gestionar las configuraciones de pago y facturación para este evento." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Administrar perfil" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Gestionar programación" @@ -6124,7 +6171,7 @@ msgstr "Medio" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Mensaje" @@ -6141,7 +6188,7 @@ msgstr "Asistente del mensaje" msgid "Message Attendees" msgstr "Mensaje a los asistentes" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Enviar mensajes a los asistentes con entradas específicas" @@ -6165,7 +6212,7 @@ msgstr "Contenido del mensaje" msgid "Message Details" msgstr "Detalles del mensaje" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Enviar mensajes a asistentes individuales" @@ -6173,15 +6220,15 @@ msgstr "Enviar mensajes a asistentes individuales" msgid "Message is required" msgstr "El mensaje es obligatorio" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Enviar mensajes a los propietarios de pedidos con productos específicos" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Mensaje programado" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Mensaje enviado" @@ -6212,8 +6259,8 @@ msgstr "Precio mínimo" msgid "minutes" msgstr "minutos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Minutos" @@ -6229,7 +6276,7 @@ msgstr "Otras configuraciones" msgid "Mo" msgstr "Lu" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Modo" @@ -6282,7 +6329,7 @@ msgstr "Más acciones" msgid "Most Viewed Events (Last 14 Days)" msgstr "Eventos más vistos (Últimos 14 días)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Mover todas las fechas antes o después" @@ -6290,7 +6337,7 @@ msgstr "Mover todas las fechas antes o después" msgid "Multi line text box" msgstr "Cuadro de texto de varias líneas" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Nombre" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "El nombre es obligatorio" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "El nombre debe tener menos de 255 caracteres" @@ -6384,21 +6431,21 @@ msgstr "Ingresos netos" msgid "Never" msgstr "Nunca" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Nueva capacidad" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Nueva etiqueta" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Nueva ubicación" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "Nueva contraseña" @@ -6426,7 +6473,7 @@ msgstr "Vida nocturna" msgid "No" msgstr "No" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "No - Soy un individuo o empresa no registrada para el IVA" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "No hay Asignaciones de Capacidad" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "No hay listas de check-in disponibles para este evento." msgid "No check-ins yet" msgstr "Aún sin check-ins" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "No se encontraron configuraciones" @@ -6537,7 +6584,7 @@ msgstr "Sin lista de registro específica para la fecha" msgid "No dates available this month. Try navigating to another month." msgstr "No hay fechas disponibles este mes. Intenta navegar a otro mes." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "No hay fechas que coincidan con los filtros actuales." @@ -6582,8 +6629,8 @@ msgstr "No hay eventos que comiencen en las próximas 24 horas" msgid "No events to show" msgstr "No hay eventos para mostrar" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "No se encontraron pedidos" msgid "No orders to show" msgstr "No hay pedidos para mostrar" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "Aún no hay pedidos para esta fecha." msgid "No organizer activity in the last 14 days" msgstr "Sin actividad de organizador en los últimos 14 días" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "No hay contexto de organizador disponible." @@ -6733,7 +6780,7 @@ msgstr "Aún no hay respuestas" msgid "No results" msgstr "No hay resultados" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Aún no hay ubicaciones guardadas" @@ -6793,16 +6840,16 @@ msgstr "Aún no se han registrado eventos de webhook para este punto de acceso. msgid "No Webhooks" msgstr "No hay Webhooks" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "No, mantenerme aquí" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "sin editar" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Ninguno" @@ -6870,7 +6917,7 @@ msgstr "Prefijo del número" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Sesión" @@ -7005,7 +7052,7 @@ msgstr "Información de pagos offline" msgid "Offline Payments Settings" msgstr "Configuración de pagos offline" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "Una vez que comiences a recopilar datos, los verás aquí." msgid "Ongoing" msgstr "En curso" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "En curso" msgid "Online" msgstr "En línea" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "En línea — indica los datos de conexión" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Online y presencial" @@ -7070,15 +7117,15 @@ msgstr "Detalles de conexión del evento online" msgid "Online Event Details" msgstr "Detalles del evento en línea" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Solo los administradores de la cuenta pueden eliminar o archivar eventos. Contacta a tu administrador de cuenta para obtener ayuda." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Solo los administradores de la cuenta pueden eliminar o archivar organizadores. Contacta a tu administrador de cuenta para obtener ayuda." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Enviar solo a pedidos con estos estados" @@ -7173,7 +7220,7 @@ msgstr "Pedido y Entrada" msgid "Order #" msgstr "Pedido #" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Pedido cancelado" @@ -7182,13 +7229,13 @@ msgstr "Pedido cancelado" msgid "Order Cancelled" msgstr "Orden cancelada" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Pedido completado" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Confirmación de pedido" @@ -7273,7 +7320,7 @@ msgstr "Pedido marcado como pagado" msgid "Order Marked as Paid" msgstr "Pedido marcado como pagado" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Pedido no encontrado" @@ -7297,7 +7344,7 @@ msgstr "Número de pedido, fecha de compra, email del comprador" msgid "Order owner" msgstr "Propietario del pedido" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Propietarios de pedidos con un producto específico" @@ -7327,7 +7374,7 @@ msgstr "Pedido reembolsado" msgid "Order Status" msgstr "Estado del pedido" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Estados de los pedidos" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Tiempo de espera del pedido" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Total del pedido" @@ -7357,7 +7404,7 @@ msgstr "Pedido actualizado correctamente" msgid "Order URL" msgstr "URL del pedido" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "El pedido fue cancelado" @@ -7374,8 +7421,8 @@ msgstr "pedidos" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Nombre de la organización" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Nombre de la organización" msgid "Organizer" msgstr "Organizador" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Organizador archivado correctamente" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Panel del organizador" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Organizador eliminado correctamente" @@ -7486,7 +7533,7 @@ msgstr "Nombre del organizador" msgid "Organizer Not Found" msgstr "Organizador no encontrado" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Organizador restaurado correctamente" @@ -7504,7 +7551,7 @@ msgstr "No se pudo actualizar el estado del organizador. Inténtalo de nuevo má msgid "Organizer status updated" msgstr "Estado del organizador actualizado" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Se usará la plantilla del organizador/predeterminada" @@ -7512,7 +7559,7 @@ msgstr "Se usará la plantilla del organizador/predeterminada" msgid "Organizers" msgstr "Organizadores" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Los organizadores solo pueden gestionar eventos y productos. No pueden gestionar usuarios, configuraciones de cuenta o información de facturación." @@ -7563,7 +7610,7 @@ msgstr "Relleno" msgid "Page" msgstr "Página" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Página ya no disponible" @@ -7575,7 +7622,7 @@ msgstr "Página no encontrada" msgid "Page URL" msgstr "URL de la página" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Vistas de página" @@ -7583,11 +7630,11 @@ msgstr "Vistas de página" msgid "Page Views" msgstr "Vistas de página" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "pagado" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "Cuentas de pago" msgid "Paid Product" msgstr "Producto de pago" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Reembolso parcial" @@ -7623,7 +7670,7 @@ msgstr "Pasar al comprador" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Contraseña" @@ -7694,7 +7741,7 @@ msgstr "Carga útil" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Pago" @@ -7735,7 +7782,7 @@ msgstr "Métodos de pago" msgid "Payment provider" msgstr "Proveedor de pago" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Pago recibido" @@ -7747,7 +7794,7 @@ msgstr "Pago recibido" msgid "Payment Status" msgstr "Estado del pago" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "¡Pago exitoso!" @@ -7761,11 +7808,11 @@ msgstr "Pagos no disponibles" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Pagos a tu cuenta" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "Pendiente" @@ -7801,8 +7848,8 @@ msgstr "Porcentaje" msgid "Percentage Amount" msgstr "Monto porcentual" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Tarifa porcentual" @@ -7810,11 +7857,11 @@ msgstr "Tarifa porcentual" msgid "Percentage fee (%)" msgstr "Comisión porcentual (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "El porcentaje debe estar entre 0 y 100" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Porcentaje del monto de la transacción" @@ -7822,11 +7869,11 @@ msgstr "Porcentaje del monto de la transacción" msgid "Performance" msgstr "Rendimiento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Elimina permanentemente este evento y todos sus datos asociados." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Elimina permanentemente este organizador y todos sus eventos." @@ -7834,7 +7881,7 @@ msgstr "Elimina permanentemente este organizador y todos sus eventos." msgid "Permanently remove this date" msgstr "Eliminar permanentemente esta fecha" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Información personal" @@ -7842,7 +7889,7 @@ msgstr "Información personal" msgid "Phone" msgstr "Teléfono" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Elige una ubicación" @@ -7892,7 +7939,7 @@ msgstr "Comisión de plataforma de {0} deducida de su pago" msgid "Platform Fees" msgstr "Tarifas de plataforma" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Informe de tarifas de plataforma" @@ -7918,7 +7965,7 @@ msgstr "Por favor revisa tu correo electrónico y contraseña y vuelve a intenta msgid "Please check your email is valid" msgstr "Por favor verifique que su correo electrónico sea válido" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Por favor revise su correo electrónico para confirmar su dirección de correo electrónico." @@ -7926,7 +7973,7 @@ msgstr "Por favor revise su correo electrónico para confirmar su dirección de msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Por favor, consulta tu entrada para ver la hora actualizada. Tus entradas siguen siendo válidas — no es necesaria ninguna acción a menos que los nuevos horarios no te convengan. Responde a este correo si tienes alguna pregunta." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Por favor continúa en la nueva pestaña." @@ -7955,7 +8002,7 @@ msgstr "Por favor, introduce una URL válida" msgid "Please enter the 5-digit code" msgstr "Por favor, ingresa el código de 5 dígitos" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Por favor ingrese su número de IVA" @@ -7971,11 +8018,11 @@ msgstr "Por favor, proporciona una imagen." msgid "Please restart the checkout process." msgstr "Por favor, reinicia el proceso de compra." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Por favor, regresa a la página del evento para comenzar de nuevo." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Por favor, selecciona una fecha y hora" @@ -7987,7 +8034,7 @@ msgstr "Por favor seleccione un rango de fechas" msgid "Please select an image." msgstr "Por favor, selecciona una imagen." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Por favor, seleccione al menos un producto" @@ -7998,7 +8045,7 @@ msgstr "Por favor, seleccione al menos un producto" msgid "Please try again." msgstr "Por favor, inténtalo de nuevo." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Verifique su dirección de correo electrónico para acceder a todas las funciones." @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Por favor, espera mientras preparamos la exportación de tus asistentes..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Por favor, espere mientras preparamos su factura..." @@ -8124,7 +8171,7 @@ msgstr "Vista Previa de Impresión" msgid "Print Ticket" msgstr "Imprimir Entrada" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Imprimir boletos" @@ -8139,7 +8186,7 @@ msgstr "Imprimir a PDF" msgid "Privacy Policy" msgstr "Política de privacidad" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Procesar reembolso" @@ -8180,7 +8227,7 @@ msgstr "Producto eliminado con éxito" msgid "Product Price Type" msgstr "Tipo de precio del producto" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Producto(s)" msgid "Products" msgstr "Productos" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Productos vendidos" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Productos vendidos" msgid "Products sorted successfully" msgstr "Productos ordenados con éxito" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Perfil" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "perfil actualizado con éxito" @@ -8251,7 +8298,7 @@ msgstr "perfil actualizado con éxito" msgid "Progress" msgstr "Progreso" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Código promocional {promo_code} aplicado" @@ -8298,7 +8345,7 @@ msgstr "Informe de códigos promocionales" msgid "Promo Only" msgstr "Solo Promocional" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "Los correos promocionales pueden resultar en la suspensión de la cuenta" @@ -8310,11 +8357,11 @@ msgstr "" "Proporciona contexto o instrucciones adicionales para esta pregunta. Usa este campo para añadir términos\n" "y condiciones, directrices o cualquier información importante que los asistentes deban conocer antes de responder." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Indica al menos un campo de dirección para la nueva ubicación." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Proporciona la siguiente información antes de la próxima revisión de Stripe para mantener los pagos." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Proveedor" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Publicar" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "Analítica en tiempo real" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Recibir actualizaciones de productos de {0}." @@ -8439,6 +8486,10 @@ msgstr "Recibir actualizaciones de productos de {0}." msgid "Recent Account Signups" msgstr "Registros de cuentas recientes" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Asistentes recientes" @@ -8447,7 +8498,7 @@ msgstr "Asistentes recientes" msgid "Recent check-ins" msgstr "Registros recientes" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "Pedidos recientes" msgid "recipient" msgstr "destinatario" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Recipiente" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "destinatarios" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Destinatarios" msgid "Recipients are available after the message is sent" msgstr "Los destinatarios estarán disponibles después de enviar el mensaje" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Recurrente" @@ -8517,7 +8569,7 @@ msgstr "Reembolsar todos los pedidos de estas fechas" msgid "Refund all orders for this date" msgstr "Reembolsar todos los pedidos de esta fecha" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Monto del reembolso" @@ -8537,7 +8589,7 @@ msgstr "Reembolso emitido" msgid "Refund order" msgstr "Orden de reembolso" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Reembolsar pedido {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "Estado del reembolso" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Reintegrado" @@ -8571,7 +8623,7 @@ msgstr "Reembolsado: {0}" msgid "Refunds" msgstr "Reembolsos" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Configuración regional" @@ -8598,18 +8650,18 @@ msgstr "Usos restantes" msgid "Reminder scheduled" msgstr "Recordatorio programado" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "eliminar" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Eliminar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Quitar la etiqueta de todas las fechas" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Reenviar correo de confirmación" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "Reenviar correo" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "Reenviar confirmación por correo electrónico" @@ -8688,7 +8741,7 @@ msgstr "Reenviar entrada" msgid "Resend ticket email" msgstr "Reenviar correo del entrada" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Reenviando..." @@ -8729,30 +8782,30 @@ msgstr "Respuesta" msgid "Response Details" msgstr "Detalles de la respuesta" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Restaurar" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Restaurar evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Restaurar evento" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Restaurar organizador" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Restaura este evento para que vuelva a ser visible." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Restaura este organizador y vuelve a activarlo." @@ -8777,7 +8830,7 @@ msgstr "Reintentar trabajo" msgid "Return to Event" msgstr "Volver al evento" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Volver a la página del evento" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Reutiliza una conexión de Stripe de otro organizador de esta cuenta." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Ganancia" @@ -8818,7 +8872,7 @@ msgstr "Revocar invitación" msgid "Revoke Offer" msgstr "Revocar oferta" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Venta comienza {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Ventas" @@ -8930,7 +8984,7 @@ msgstr "Sábado" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Sábado" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Guardar" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Guardar Diseño del Ticket" msgid "Save VAT settings" msgstr "Guardar configuración de IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "Guardar Configuración del IVA" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Ubicación guardada" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Ubicaciones guardadas" @@ -9015,7 +9069,7 @@ msgstr "Ubicaciones guardadas" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "Al guardar una anulación se crea una configuración dedicada para este organizador si actualmente está en el valor predeterminado del sistema." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Escanear" @@ -9035,6 +9089,10 @@ msgstr "Modo escáner" msgid "Schedule" msgstr "Programación" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Programación creada correctamente" @@ -9043,11 +9101,11 @@ msgstr "Programación creada correctamente" msgid "Schedule ends on" msgstr "La programación termina el" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Programar para más tarde" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Programar mensaje" @@ -9061,11 +9119,11 @@ msgstr "La programación comienza el" msgid "Scheduled" msgstr "Programado" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Hora programada" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Buscar" @@ -9228,11 +9286,11 @@ msgstr "Seleccionar todo" msgid "Select all on {0}" msgstr "Seleccionar todo en {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Seleccionar un evento" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Seleccionar grupo de asistentes" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Seleccionar nivel de producto" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Seleccionar productos" @@ -9298,7 +9356,7 @@ msgstr "Selecciona fecha y hora de inicio" msgid "Select start time" msgstr "Seleccionar hora de inicio" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Seleccionar estado" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Seleccionar billete" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Seleccionar boletos" @@ -9325,7 +9383,7 @@ msgstr "Seleccionar período de tiempo" msgid "Select timezone" msgstr "Seleccionar zona horaria" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Selecciona qué asistentes deben recibir este mensaje" @@ -9359,11 +9417,11 @@ msgstr "¡Se vende rápido! 🔥" msgid "Send" msgstr "Enviar" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Enviar un mensaje" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Enviar como prueba" @@ -9371,20 +9429,20 @@ msgstr "Enviar como prueba" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "Enviar correos electrónicos a asistentes, titulares de entradas o propietarios de pedidos. Los mensajes se pueden enviar de inmediato o programar para más tarde." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Enviarme una copia" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Enviar Mensaje" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Enviar ahora" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Enviar confirmación del pedido y correo electrónico del billete." @@ -9392,7 +9450,7 @@ msgstr "Enviar confirmación del pedido y correo electrónico del billete." msgid "Send real-time order and attendee data to your external systems." msgstr "Envíe datos de pedidos y asistentes en tiempo real a sus sistemas externos." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Enviar correo de notificación de reembolso" @@ -9400,11 +9458,11 @@ msgstr "Enviar correo de notificación de reembolso" msgid "Send reset link" msgstr "Enviar enlace de restablecimiento" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Enviar prueba" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Enviar a todas las sesiones o elegir una específica" @@ -9429,15 +9487,15 @@ msgstr "Enviado" msgid "Sent By" msgstr "Enviado por" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Enviado a los asistentes cuando se cancela una fecha programada" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Enviado a clientes cuando realizan un pedido" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Enviado a cada asistente con los detalles de su boleto" @@ -9490,7 +9548,7 @@ msgstr "Establezca la configuración predeterminada de comisiones de plataforma msgid "Set default settings for new events created under this organizer." msgstr "Establecer configuraciones predeterminadas para nuevos eventos creados bajo este organizador." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Define cuánto dura cada fecha" @@ -9498,11 +9556,11 @@ msgstr "Define cuánto dura cada fecha" msgid "Set number of dates" msgstr "Establecer número de fechas" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Establecer o borrar la etiqueta de la fecha" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Establece la hora de fin de cada fecha para que sea este tiempo después de su hora de inicio." @@ -9510,7 +9568,7 @@ msgstr "Establece la hora de fin de cada fecha para que sea este tiempo después msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Establezca el número inicial para la numeración de facturas. Esto no se puede cambiar una vez que las facturas se hayan generado." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Establecer como ilimitado (quitar límite)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Configure listas de registro para diferentes entradas, sesiones o días." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Configurar pagos" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Configurar programación" msgid "Set up your organization" msgstr "Configura tu organización" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Configura tu programación" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Establece, cambia o elimina la ubicación o los datos online de la sesión" @@ -9599,11 +9665,11 @@ msgstr "Compartir página del organizador" msgid "Shared Capacity Management" msgstr "Gestión de capacidad compartida" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Desplazar horarios" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "Se desplazaron los horarios de {count} fecha(s)" @@ -9635,8 +9701,8 @@ msgstr "Mostrar casilla de aceptación de marketing" msgid "Show marketing opt-in checkbox by default" msgstr "Mostrar casilla de aceptación de marketing por defecto" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Mostrar más" @@ -9673,7 +9739,7 @@ msgstr "Mostrando {0}–{1} de {2}" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "Mostrando {MAX_VISIBLE} de {totalAvailable} fechas. Escribe para buscar." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "Mostrando las primeras {0} — las {1} sesion(es) restantes igualmente recibirán el mensaje cuando se envíe." @@ -9710,7 +9776,7 @@ msgstr "Evento único" msgid "Single line text box" msgstr "Cuadro de texto de una sola línea" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Omitir fechas editadas manualmente" @@ -9745,7 +9811,7 @@ msgstr "Enlaces sociales y sitio web" msgid "Sold" msgstr "Vendido" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Algunos detalles están ocultos al acceso público. Inicia sesión para #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Algo salió mal" @@ -9784,7 +9850,7 @@ msgstr "Algo salió mal, inténtalo de nuevo o contacta con soporte si el proble msgid "Something went wrong! Please try again" msgstr "¡Algo salió mal! Inténtalo de nuevo" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Algo salió mal." @@ -9796,12 +9862,12 @@ msgstr "Algo salió mal. Por favor, inténtelo de nuevo más tarde." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Algo salió mal. Inténtalo de nuevo." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Lo sentimos, este código de promoción no se reconoce" @@ -9897,12 +9963,12 @@ msgstr "Empieza mañana" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "Estado o región" @@ -9914,7 +9980,7 @@ msgstr "Estadísticas" msgid "Statistics are based on account creation date" msgstr "Las estadísticas se basan en la fecha de creación de la cuenta" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Estadísticas" @@ -9931,7 +9997,7 @@ msgstr "Estadísticas" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "ID de pago de Stripe" msgid "Stripe payments are not enabled for this event." msgstr "Los pagos con Stripe no están habilitados para este evento." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Stripe necesitará algunos datos más en breve" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "Do" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "El asunto es requerido" msgid "Subject will appear here" msgstr "El asunto aparecerá aquí" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Asunto:" @@ -10024,11 +10090,11 @@ msgstr "Total parcial" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Éxito" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "¡Éxito! {0} recibirá un correo electrónico en breve." @@ -10173,7 +10239,7 @@ msgstr "Ajustes actualizados exitosamente" msgid "Successfully Updated Social Links" msgstr "Enlaces sociales actualizados correctamente" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Configuración de seguimiento actualizada correctamente" @@ -10226,7 +10292,7 @@ msgstr "Sueco" msgid "Switch Organizer" msgstr "Cambiar organizador" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Predeterminado del sistema" @@ -10238,7 +10304,7 @@ msgstr "Camiseta" msgid "Tap this screen to resume scanning" msgstr "Toca la pantalla para continuar escaneando" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "Dirigiéndose a asistentes de {0} sesiones seleccionadas." @@ -10336,7 +10402,7 @@ msgstr "Cuéntanos sobre tu organización. Esta información se mostrará en las msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Cuéntanos con qué frecuencia se repite tu evento y crearemos todas las fechas por ti." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Dinos tu estado de registro de IVA para que apliquemos el IVA correcto a las comisiones de la plataforma." @@ -10344,15 +10410,15 @@ msgstr "Dinos tu estado de registro de IVA para que apliquemos el IVA correcto a msgid "Template Active" msgstr "Plantilla activa" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Plantilla creada exitosamente" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Plantilla eliminada exitosamente" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Plantilla guardada exitosamente" @@ -10378,8 +10444,8 @@ msgstr "¡Gracias por asistir!" msgid "Thanks," msgstr "Gracias," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Ese código de promoción no es válido." @@ -10399,7 +10465,7 @@ msgstr "La lista de registro que buscas no existe." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "El código expirará en 10 minutos. Revisa tu carpeta de spam si no ves el correo." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "La moneda en la que se define la tarifa fija. Se convertirá a la moneda del pedido en el momento del pago." @@ -10417,7 +10483,7 @@ msgstr "La moneda predeterminada para tus eventos." msgid "The default timezone for your events." msgstr "La zona horaria predeterminada para sus eventos." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "La dirección de correo electrónico ha sido cambiada. El asistente recibirá una nueva entrada en la dirección de correo actualizada." @@ -10442,7 +10508,7 @@ msgstr "La primera fecha desde la que se generará esta programación." msgid "The full event address" msgstr "La dirección completa del evento" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "El monto completo del pedido será reembolsado al método de pago original del cliente." @@ -10466,7 +10532,7 @@ msgstr "El idioma del cliente" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "El máximo es {MAX_PREVIEW} sesiones. Reduce el rango de fechas, la frecuencia o el número de sesiones por día." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "El número máximo de productos para {0} es {1}" @@ -10475,7 +10541,7 @@ msgstr "El número máximo de productos para {0} es {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "No se pudo encontrar el organizador que estás buscando. La página puede haber sido movida, eliminada o la URL puede ser incorrecta." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "La anulación se registra en el historial de auditoría del pedido." @@ -10499,11 +10565,11 @@ msgstr "El precio mostrado al cliente no incluirá impuestos ni tasas. Se mostra msgid "The primary brand color used for buttons and highlights" msgstr "El color principal de marca usado para botones y destacados" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "La hora programada es obligatoria" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "La hora programada debe ser en el futuro" @@ -10511,8 +10577,8 @@ msgstr "La hora programada debe ser en el futuro" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "La sesión de \"{title}\" originalmente programada para {0} ha sido reprogramada." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "El cuerpo de la plantilla contiene sintaxis Liquid inválida. Por favor corrígela e inténtalo de nuevo." @@ -10521,7 +10587,7 @@ msgstr "El cuerpo de la plantilla contiene sintaxis Liquid inválida. Por favor msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "El título del evento que se mostrará en los resultados del motor de búsqueda y al compartirlo en las redes sociales. De forma predeterminada, se utilizará el título del evento." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "No se pudo validar el número de IVA. Por favor, verifica el número e inténtalo de nuevo." @@ -10534,19 +10600,19 @@ msgstr "Teatro" msgid "Theme & Colors" msgstr "Tema y colores" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "No hay productos disponibles para este evento" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "No hay productos disponibles en esta categoría" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "No hay próximas fechas para este evento" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "Hay un reembolso pendiente. Espere a que se complete antes de solicitar otro reembolso." @@ -10578,7 +10644,7 @@ msgstr "Estos detalles se muestran en la entrada del asistente y en el resumen d msgid "These details will only be shown if the order is completed successfully." msgstr "Estos detalles solo se mostrarán si el pedido se completa correctamente." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Estos datos sustituirán cualquier ubicación existente en las sesiones afectadas y aparecerán en las entradas de los asistentes." @@ -10586,11 +10652,11 @@ msgstr "Estos datos sustituirán cualquier ubicación existente en las sesiones msgid "These settings apply only to copied embed code and won't be stored." msgstr "Estas configuraciones solo se aplican al código incrustado copiado y no se guardarán." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Estas plantillas se usarán como predeterminadas para todos los eventos en su organización. Los eventos individuales pueden anular estas plantillas con sus propias versiones personalizadas." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Estas plantillas anularán los predeterminados del organizador solo para este evento. Si no se establece una plantilla personalizada aquí, se usará la plantilla del organizador en su lugar." @@ -10598,11 +10664,11 @@ msgstr "Estas plantillas anularán los predeterminados del organizador solo para msgid "Third" msgstr "Tercero" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Esto se aplica a todas las fechas coincidentes del evento, incluidas las no visibles actualmente. Los asistentes registrados en cualquiera de esas fechas podrán recibir mensajes desde el redactor cuando finalice la actualización." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Este asistente tiene un pedido sin pagar." @@ -10660,11 +10726,11 @@ msgstr "Esta fecha ha sido cancelada. Aún puedes eliminarla permanentemente." msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Esta fecha es del pasado. Se creará pero no será visible para los asistentes en las próximas fechas." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Esta fecha está marcada como agotada." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Esta fecha ya no está disponible. Por favor, selecciona otra fecha." @@ -10713,19 +10779,19 @@ msgstr "Este mensaje se incluirá en el pie de página de todos los correos elec msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Este mensaje solo se mostrará si el pedido se completa con éxito. Los pedidos en espera de pago no mostrarán este mensaje." -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Este nombre es visible para los usuarios finales" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Esta sesión está a plena capacidad" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "Este pedido ya ha sido pagado." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "Este pedido ya ha sido reembolsado." @@ -10733,7 +10799,7 @@ msgstr "Este pedido ya ha sido reembolsado." msgid "This order has been cancelled." msgstr "Esta orden ha sido cancelada." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "Este pedido ha expirado. Por favor, comienza de nuevo." @@ -10745,15 +10811,15 @@ msgstr "Este pedido está siendo procesado." msgid "This order is complete." msgstr "Este pedido está completo." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Esta página de pedidos ya no está disponible." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "Este pedido fue abandonado. Puede iniciar un nuevo pedido en cualquier momento." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "Este pedido fue cancelado. Puedes iniciar un nuevo pedido en cualquier momento." @@ -10785,7 +10851,7 @@ msgstr "Este producto está destacado en la página del evento" msgid "This product is sold out" msgstr "Este producto está agotado" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Este informe es solo para fines informativos. Siempre consulte con un profesional de impuestos antes de usar estos datos para fines contables o fiscales. Por favor, verifique con su panel de Stripe ya que Hi.Events puede no tener datos históricos." @@ -10797,11 +10863,11 @@ msgstr "Este enlace para restablecer la contraseña no es válido o ha caducado. msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Este boleto acaba de ser escaneado. Por favor espere antes de escanear nuevamente." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Este usuario no está activo porque no ha aceptado su invitación." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Esto afectará a {loadedAffectedCount} fecha(s)." @@ -10913,6 +10979,10 @@ msgstr "Precio del boleto" msgid "Ticket resent successfully" msgstr "Entrada reenviada correctamente" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "La venta de entradas para este evento ha finalizado" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Hora" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Tiempo restante:" @@ -10994,7 +11064,7 @@ msgstr "Veces usado" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Zona horaria" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "Para aumentar sus límites, contáctenos en" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "Mejores organizadores (Últimos 14 días)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Total" @@ -11075,11 +11146,11 @@ msgstr "Total de entradas" msgid "Total Fee" msgstr "Tarifa total" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Total de ventas brutas" msgid "Total order amount" msgstr "Monto total del pedido" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "Total reembolsado" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Total reembolsado" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Seguimiento del crecimiento y rendimiento de la cuenta por fuente de atribución" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "Seguimiento y analítica" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Tipo" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Escribe \"eliminar\" para confirmar" @@ -11222,7 +11293,7 @@ msgstr "No se pudo retirar al asistente" msgid "Unable to create product. Please check the your details" msgstr "No se pudo crear el producto. Por favor, revise sus datos" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "No se pudo crear el producto. Por favor, revise sus datos" @@ -11246,7 +11317,7 @@ msgstr "No se pudo unir a la lista de espera" msgid "Unable to load attendee details." msgstr "No se pudieron cargar los detalles del asistente." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "No se pueden cargar los productos para esta fecha. Inténtalo de nuevo." @@ -11284,7 +11355,7 @@ msgstr "Estados Unidos" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Desconocido" @@ -11304,7 +11375,7 @@ msgstr "Asistente desconocido" msgid "Unlimited" msgstr "Ilimitado" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Ilimitado disponible" @@ -11316,12 +11387,12 @@ msgstr "Usos ilimitados permitidos" msgid "Unnamed" msgstr "Sin nombre" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Ubicación sin nombre" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Pedido no pagado" @@ -11337,7 +11408,7 @@ msgstr "No confiable" msgid "Upcoming" msgstr "Próximo" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "Actualizar {0}" msgid "Update Affiliate" msgstr "Actualizar afiliado" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Actualizar capacidad" @@ -11365,15 +11436,15 @@ msgstr "Actualizar nombre y descripción del evento" msgid "Update event name, description and dates" msgstr "Actualizar el nombre del evento, la descripción y las fechas." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Actualizar etiqueta" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Actualizar ubicación" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Actualización del perfil" @@ -11385,19 +11456,19 @@ msgstr "Actualización: {subjectTitle} — cambios en la programación" msgid "Update: {subjectTitle} — session time changed" msgstr "Actualización: {subjectTitle} — hora de la sesión cambiada" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "Se actualizaron {count} fecha(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "Se actualizó la capacidad de {count} fecha(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "Se actualizó la etiqueta de {count} fecha(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Ubicación actualizada para {count} sesión(es)" @@ -11507,14 +11578,14 @@ msgstr "Gestión de usuarios" msgid "Users" msgstr "Usuarios" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Los usuarios pueden cambiar su correo electrónico en <0>Configuración de perfil" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11526,13 +11597,13 @@ msgstr "Analíticas UTM" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "Validando tu número de IVA..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "IVA" @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "Número de IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "Número de IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "El número de IVA no debe contener espacios" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "El número de IVA debe comenzar con un código de país de 2 letras seguido de 8-15 caracteres alfanuméricos (p. ej., ES12345678A)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "Número de IVA validado correctamente" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "Falló la validación del número de IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "Falló la validación del número de IVA. Por favor, verifica tu número de IVA." @@ -11581,12 +11652,12 @@ msgstr "Tasa de IVA" msgid "VAT registered" msgstr "Registrado para IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "Configuración del IVA guardada exitosamente" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "Configuración de IVA guardada. Estamos validando tu número de IVA en segundo plano." @@ -11594,15 +11665,15 @@ msgstr "Configuración de IVA guardada. Estamos validando tu número de IVA en s msgid "VAT settings updated" msgstr "Configuración de IVA actualizada" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "Tratamiento del IVA para Tarifas de la Plataforma" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "Tratamiento del IVA para tarifas de la plataforma: Las empresas registradas para el IVA en la UE pueden usar el mecanismo de inversión del sujeto pasivo (0% - Artículo 196 de la Directiva del IVA 2006/112/CE). Las empresas no registradas para el IVA se les cobra el IVA irlandés del 23%." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "Servicio de validación de IVA temporalmente no disponible" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "IVA: no registrado" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "Nombre del lugar" msgid "Verification code" msgstr "Código de verificación" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "Verificar correo" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Verifica tu correo electrónico" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "Verificando..." @@ -11655,8 +11735,7 @@ msgstr "Ver" msgid "View All" msgstr "Ver todo" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "Ver detalles de {0} {1}" msgid "View Event" msgstr "Ver evento" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Ver página del evento" @@ -11729,8 +11808,8 @@ msgstr "Ver en Google Maps" msgid "View Order" msgstr "Ver pedido" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Ver detalles del pedido" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "En espera" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "Esperando pago" @@ -11800,7 +11879,7 @@ msgstr "Lista de espera" msgid "Waitlist Enabled" msgstr "Lista de espera activada" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "Oferta de lista de espera expirada" @@ -11808,7 +11887,7 @@ msgstr "Oferta de lista de espera expirada" msgid "Waitlist triggered" msgstr "Lista de espera activada" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Advertencia: Esta es la configuración predeterminada del sistema. Los cambios afectarán a todas las cuentas que no tengan una configuración específica asignada." @@ -11844,7 +11923,7 @@ msgstr "No pudimos encontrar el pedido que busca. El enlace puede haber expirado msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "No pudimos encontrar la entrada que busca. El enlace puede haber expirado o los detalles de la entrada pueden haber cambiado." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "No pudimos encontrar este pedido. Puede haber sido eliminado." @@ -11860,7 +11939,7 @@ msgstr "No pudimos conectar con Stripe en este momento. Inténtalo de nuevo en u msgid "We couldn't reorder the categories. Please try again." msgstr "No pudimos reordenar las categorías. Por favor, inténtelo de nuevo." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Tuvimos un problema al cargar esta página. Por favor, inténtalo de nuevo." @@ -11881,6 +11960,10 @@ msgstr "Recomendamos dimensiones de 2160 px por 1080 px y un tamaño de archivo msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "Recomendamos dimensiones de 400px por 400px y un tamaño máximo de archivo de 5MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "Usamos cookies para entender cómo se utiliza el sitio y para mejorar tu experiencia." @@ -11889,7 +11972,7 @@ msgstr "Usamos cookies para entender cómo se utiliza el sitio y para mejorar tu msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "No pudimos confirmar su pago. Inténtelo de nuevo o comuníquese con el soporte." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "No pudimos validar tu número de IVA después de múltiples intentos. Continuaremos intentando en segundo plano. Por favor, vuelve a verificar más tarde." @@ -11897,16 +11980,16 @@ msgstr "No pudimos validar tu número de IVA después de múltiples intentos. Co msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "Te avisaremos por correo electrónico si queda una plaza disponible para {productDisplayName}." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Abriremos un redactor de mensajes con una plantilla rellenada después de guardar. Tú lo revisas y lo envías — nada se envía automáticamente." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "Enviaremos tus entradas a este correo electrónico" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "Validaremos tu número de IVA en segundo plano. Si hay algún problema, te lo haremos saber." @@ -12003,7 +12086,7 @@ msgstr "¡Bienvenido a bordo! Por favor inicie sesión para continuar." msgid "Welcome back" msgstr "Bienvenido de nuevo" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Bienvenido de nuevo{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Bienestar" msgid "What are Tiered Products?" msgstr "¿Qué son los productos escalonados?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "¿Qué es una categoría?" @@ -12143,6 +12226,10 @@ msgstr "Cuándo cierra el check-in" msgid "When check-in opens" msgstr "Cuándo abre el check-in" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "Cuando esté habilitado, se generarán facturas para los pedidos de boletos. Las facturas se enviarán junto con el correo electrónico de confirmación del pedido. Los asistentes también pueden descargar sus facturas desde la página de confirmación del pedido." @@ -12155,7 +12242,7 @@ msgstr "Cuando está habilitado, los nuevos eventos permitirán a los asistentes msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "Cuando está habilitado, los nuevos eventos mostrarán una casilla de aceptación de marketing durante el checkout. Esto se puede anular por evento." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "Cuando está habilitado, no se cobrarán comisiones de aplicación en las transacciones de Stripe Connect. Use esto para países donde las comisiones de aplicación no son compatibles." @@ -12191,11 +12278,11 @@ msgstr "Vista previa del widget" msgid "Widget Settings" msgstr "Configuración del widget" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "Laboral" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "año" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Año hasta la fecha" @@ -12247,11 +12334,11 @@ msgstr "años" msgid "Yes" msgstr "Sí" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Sí - Tengo un número de registro de IVA de la UE válido" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Sí, cancelar mi pedido" @@ -12267,7 +12354,7 @@ msgstr "Estás cambiando tu correo electrónico a <0>{0}." msgid "You are impersonating <0>{0} ({1})" msgstr "Estás suplantando a <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Está emitiendo un reembolso parcial. Al cliente se le reembolsará {0} {1}." @@ -12292,7 +12379,7 @@ msgstr "Puedes anular esto para fechas individuales más tarde." msgid "You can still manually offer tickets if needed." msgstr "Aún puede ofrecer tickets manualmente si es necesario." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "No puedes archivar el último organizador activo de tu cuenta." @@ -12313,11 +12400,11 @@ msgstr "No puede eliminar la última categoría." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "No puede eliminar este nivel de precios porque ya hay productos vendidos para este nivel. Puede ocultarlo en su lugar." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "No puede editar la función o el estado del propietario de la cuenta." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "No puede reembolsar un pedido creado manualmente." @@ -12333,11 +12420,11 @@ msgstr "Ya has aceptado esta invitación. Por favor inicie sesión para continua msgid "You have no pending email change." msgstr "No tienes ningún cambio de correo electrónico pendiente." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "Ha alcanzado su límite de mensajería." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "Se te ha acabado el tiempo para completar tu pedido." @@ -12345,11 +12432,11 @@ msgstr "Se te ha acabado el tiempo para completar tu pedido." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Has añadido impuestos y tarifas a un producto gratuito. ¿Te gustaría eliminarlos?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "Debes reconocer que este correo electrónico no es promocional." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Debes reconocer tus responsabilidades antes de guardar" @@ -12409,7 +12496,7 @@ msgstr "Necesitará un producto antes de poder crear una asignación de capacida msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Necesitará al menos un producto para comenzar. Gratis, de pago o deje que el usuario decida cuánto pagar." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Estás cambiando horarios de sesión" @@ -12421,7 +12508,7 @@ msgstr "¡Vas a ir a {0}!" msgid "You're on the waitlist!" msgstr "¡Estás en la lista de espera!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "¡Se te ha ofrecido un lugar!" @@ -12429,7 +12516,7 @@ msgstr "¡Se te ha ofrecido un lugar!" msgid "You've changed the session time" msgstr "Has cambiado la hora de la sesión" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Su cuenta tiene límites de mensajería. Para aumentar sus límites, contáctenos en" @@ -12457,11 +12544,11 @@ msgstr "Tu increíble sitio web 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "Tu lista de check-in se ha creado exitosamente. Comparte el enlace de abajo con tu personal de check-in." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "Tu pedido actual se perderá." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Tus detalles" @@ -12469,7 +12556,7 @@ msgstr "Tus detalles" msgid "Your Email" msgstr "Tu correo electrónico" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "Su solicitud de cambio de correo electrónico a <0>{0} está pendiente. Por favor revisa tu correo para confirmar" @@ -12497,7 +12584,7 @@ msgstr "Tu nombre" msgid "Your new password must be at least 8 characters long." msgstr "Tu nueva contraseña debe tener al menos 8 caracteres." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Tu pedido" @@ -12509,7 +12596,7 @@ msgstr "Los detalles de su pedido han sido actualizados. Se ha enviado un correo msgid "Your order has been cancelled" msgstr "Tu pedido ha sido cancelado" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "Tu pedido ha sido cancelado." @@ -12534,7 +12621,7 @@ msgstr "La dirección de tu organizador" msgid "Your password" msgstr "Tu contraseña" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Su pago se está procesando." @@ -12542,11 +12629,11 @@ msgstr "Su pago se está procesando." msgid "Your payment is protected with bank-level encryption" msgstr "Su pago está protegido con encriptación de nivel bancario" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Su pago no fue exitoso, inténtelo nuevamente." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Su pago no fue exitoso. Inténtalo de nuevo." @@ -12554,7 +12641,7 @@ msgstr "Su pago no fue exitoso. Inténtalo de nuevo." msgid "Your Plan" msgstr "Su plan" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Su reembolso se está procesando." @@ -12570,19 +12657,19 @@ msgstr "Tu billete para" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "Tu entrada sigue siendo válida — no es necesaria ninguna acción a menos que la nueva hora no te convenga. Responde a este correo si tienes alguna pregunta." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "Tus entradas han sido confirmadas." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "Tu número de IVA está en cola para validación" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "Tu número de IVA será validado cuando guardes" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "Tu oferta de la lista de espera ha expirado y no pudimos completar tu pedido. Vuelve a unirte a la lista de espera para recibir aviso cuando haya más plazas disponibles." @@ -12590,19 +12677,19 @@ msgstr "Tu oferta de la lista de espera ha expirado y no pudimos completar tu pe msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "Código postal" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "CP o Código Postal" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "Código postal" diff --git a/frontend/src/locales/fr.js b/frontend/src/locales/fr.js index 63b9e47f2e..9adff4c2f8 100644 --- a/frontend/src/locales/fr.js +++ b/frontend/src/locales/fr.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Rien à afficher pour le moment'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>sorti avec succès\"],\"KMgp2+\":[[\"0\"],\" disponible\"],\"Pmr5xp\":[[\"0\"],\" créé avec succès\"],\"FImCSc\":[[\"0\"],\" mis à jour avec succès\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" jours, \",[\"hours\"],\" heures, \",[\"minutes\"],\" minutes, et \",[\"seconds\"],\" secondes\"],\"f3RdEk\":[[\"hours\"],\" heures, \",[\"minutes\"],\" minutes, et \",[\"seconds\"],\" secondes\"],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"secondes\"],\" secondes\"],\"NlQ0cx\":[\"Premier événement de \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://votre-siteweb.com\",\"qnSLLW\":\"<0>Veuillez entrer le prix hors taxes et frais.<1>Les taxes et frais peuvent être ajoutés ci-dessous.\",\"ZjMs6e\":\"<0>Le nombre de produits disponibles pour ce produit<1>Cette valeur peut être remplacée s'il existe des <2>Limites de Capacité associées à ce produit.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minute et 0 seconde\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123, rue Principale\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Un champ de date. Parfait pour demander une date de naissance, etc.\",\"6euFZ/\":[\"Un \",[\"type\"],\" par défaut est automatiquement appliqué à tous les nouveaux produits. Vous pouvez le remplacer pour chaque produit.\"],\"SMUbbQ\":\"Une entrée déroulante ne permet qu'une seule sélection\",\"qv4bfj\":\"Des frais, comme des frais de réservation ou des frais de service\",\"POT0K/\":\"Un montant fixe par produit. Par exemple, 0,50 $ par produit\",\"f4vJgj\":\"Une saisie de texte sur plusieurs lignes\",\"OIPtI5\":\"Un pourcentage du prix du produit. Par exemple, 3,5 % du prix du produit\",\"ZthcdI\":\"Un code promo sans réduction peut être utilisé pour révéler des produits cachés.\",\"AG/qmQ\":\"Une option Radio comporte plusieurs options, mais une seule peut être sélectionnée.\",\"h179TP\":\"Une brève description de l'événement qui sera affichée dans les résultats des moteurs de recherche et lors du partage sur les réseaux sociaux. Par défaut, la description de l'événement sera utilisée\",\"WKMnh4\":\"Une saisie de texte sur une seule ligne\",\"BHZbFy\":\"Une seule question par commande. Par exemple, Quelle est votre adresse de livraison ?\",\"Fuh+dI\":\"Une seule question par produit. Par exemple, Quelle est votre taille de t-shirt ?\",\"RlJmQg\":\"Une taxe standard, comme la TVA ou la TPS\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Accepter les virements bancaires, chèques ou autres méthodes de paiement hors ligne\",\"hrvLf4\":\"Accepter les paiements par carte bancaire avec Stripe\",\"bfXQ+N\":\"Accepter l'invitation\",\"AeXO77\":\"Compte\",\"lkNdiH\":\"Nom du compte\",\"Puv7+X\":\"Paramètres du compte\",\"OmylXO\":\"Compte mis à jour avec succès\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activer\",\"5T2HxQ\":\"Date d'activation\",\"F6pfE9\":\"Actif\",\"/PN1DA\":\"Ajouter une description pour cette liste de pointage\",\"0/vPdA\":\"Ajoutez des notes sur le participant. Celles-ci ne seront pas visibles par le participant.\",\"Or1CPR\":\"Ajoutez des notes sur le participant...\",\"l3sZO1\":\"Ajoutez des notes concernant la commande. Elles ne seront pas visibles par le client.\",\"xMekgu\":\"Ajoutez des notes concernant la commande...\",\"PGPGsL\":\"Ajouter une description\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Ajoutez des instructions pour les paiements hors ligne (par exemple, les détails du virement bancaire, où envoyer les chèques, les délais de paiement)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Ajouter un nouveau\",\"TZxnm8\":\"Ajouter une option\",\"24l4x6\":\"Ajouter un produit\",\"8q0EdE\":\"Ajouter un produit à la catégorie\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Ajouter une taxe ou des frais\",\"goOKRY\":\"Ajouter un niveau\",\"oZW/gT\":\"Ajouter au calendrier\",\"pn5qSs\":\"Informations supplémentaires\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adresse\",\"NY/x1b\":\"Adresse Ligne 1\",\"POdIrN\":\"Adresse Ligne 1\",\"cormHa\":\"Adresse Ligne 2\",\"gwk5gg\":\"Adresse Ligne 2\",\"U3pytU\":\"Administrateur\",\"HLDaLi\":\"Les utilisateurs administrateurs ont un accès complet aux événements et aux paramètres du compte.\",\"W7AfhC\":\"Tous les participants à cet événement\",\"cde2hc\":\"Tous les produits\",\"5CQ+r0\":\"Autoriser les participants associés à des commandes impayées à s'enregistrer\",\"ipYKgM\":\"Autoriser l'indexation des moteurs de recherche\",\"LRbt6D\":\"Autoriser les moteurs de recherche à indexer cet événement\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Incroyable, Événement, Mots-clés...\",\"hehnjM\":\"Montant\",\"R2O9Rg\":[\"Montant payé (\",[\"0\"],\")\"],\"V7MwOy\":\"Une erreur s'est produite lors du chargement de la page\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Une erreur inattendue est apparue.\",\"byKna+\":\"Une erreur inattendue est apparue. Veuillez réessayer.\",\"ubdMGz\":\"Toute question des détenteurs de produits sera envoyée à cette adresse e-mail. Elle sera également utilisée comme adresse de réponse pour tous les e-mails envoyés depuis cet événement\",\"aAIQg2\":\"Apparence\",\"Ym1gnK\":\"appliqué\",\"sy6fss\":[\"S'applique à \",[\"0\"],\" produits\"],\"kadJKg\":\"S'applique à 1 produit\",\"DB8zMK\":\"Appliquer\",\"GctSSm\":\"Appliquer le code promotionnel\",\"ARBThj\":[\"Appliquer ce \",[\"type\"],\" à tous les nouveaux produits\"],\"S0ctOE\":\"Archiver l'événement\",\"TdfEV7\":\"Archivé\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Êtes-vous sûr de vouloir activer ce participant\xA0?\",\"TvkW9+\":\"Êtes-vous sûr de vouloir archiver cet événement\xA0?\",\"/CV2x+\":\"Êtes-vous sûr de vouloir annuler ce participant\xA0? Cela annulera leur billet\",\"YgRSEE\":\"Etes-vous sûr de vouloir supprimer ce code promo ?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Êtes-vous sûr de vouloir créer un brouillon pour cet événement\xA0? Cela rendra l'événement invisible au public\",\"mEHQ8I\":\"Êtes-vous sûr de vouloir rendre cet événement public\xA0? Cela rendra l'événement visible au public\",\"s4JozW\":\"Êtes-vous sûr de vouloir restaurer cet événement\xA0? Il sera restauré en tant que brouillon.\",\"vJuISq\":\"Êtes-vous sûr de vouloir supprimer cette Affectation de Capacité?\",\"baHeCz\":\"Êtes-vous sûr de vouloir supprimer cette liste de pointage\xA0?\",\"LBLOqH\":\"Demander une fois par commande\",\"wu98dY\":\"Demander une fois par produit\",\"ss9PbX\":\"Participant\",\"m0CFV2\":\"Détails des participants\",\"QKim6l\":\"Participant non trouvé\",\"R5IT/I\":\"Notes du participant\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Billet de l'invité\",\"9SZT4E\":\"Participants\",\"iPBfZP\":\"Invités enregistrés\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Redimensionnement automatique\",\"vZ5qKF\":\"Redimensionner automatiquement la hauteur du widget en fonction du contenu. Lorsque désactivé, le widget remplira la hauteur du conteneur.\",\"4lVaWA\":\"En attente d'un paiement hors ligne\",\"2rHwhl\":\"En attente d'un paiement hors ligne\",\"3wF4Q/\":\"En attente de paiement\",\"ioG+xt\":\"En attente de paiement\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Organisateur génial Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Retour à la page de l'événement\",\"VCoEm+\":\"Retour connexion\",\"k1bLf+\":\"Couleur de fond\",\"I7xjqg\":\"Type d'arrière-plan\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Adresse de facturation\",\"/xC/im\":\"Paramètres de facturation\",\"rp/zaT\":\"Portugais brésilien\",\"whqocw\":\"En vous inscrivant, vous acceptez nos <0>Conditions d'utilisation et notre <1>Politique de confidentialité.\",\"bcCn6r\":\"Type de calcul\",\"+8bmSu\":\"Californie\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Annuler\",\"Gjt/py\":\"Annuler le changement d'e-mail\",\"tVJk4q\":\"Annuler la commande\",\"Os6n2a\":\"annuler la commande\",\"Mz7Ygx\":[\"Annuler la commande \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Annulé\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacité\",\"V6Q5RZ\":\"Affectation de Capacité créée avec succès\",\"k5p8dz\":\"Affectation de Capacité supprimée avec succès\",\"nDBs04\":\"Gestion de capacité\",\"ddha3c\":\"Les catégories vous permettent de regrouper des produits ensemble. Par exemple, vous pouvez avoir une catégorie pour \\\"Billets\\\" et une autre pour \\\"Marchandise\\\".\",\"iS0wAT\":\"Les catégories vous aident à organiser vos produits. Ce titre sera affiché sur la page publique de l'événement.\",\"eorM7z\":\"Catégories réorganisées avec succès.\",\"3EXqwa\":\"Catégorie créée avec succès\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Changer le mot de passe\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Enregistrer \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Enregistrer et marquer la commande comme payée\",\"QYLpB4\":\"Enregistrement uniquement\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Découvrez cet événement !\",\"gXcPxc\":\"Enregistrement\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Liste de pointage supprimée avec succès\",\"+hBhWk\":\"La liste de pointage a expiré\",\"mBsBHq\":\"La liste de pointage n'est pas active\",\"vPqpQG\":\"Liste de pointage non trouvée\",\"tejfAy\":\"Listes de pointage\",\"hD1ocH\":\"URL de pointage copiée dans le presse-papiers\",\"CNafaC\":\"Les options de case à cocher permettent plusieurs sélections\",\"SpabVf\":\"Cases à cocher\",\"CRu4lK\":\"Enregistré\",\"znIg+z\":\"Paiement\",\"1WnhCL\":\"Paramètres de paiement\",\"6imsQS\":\"Chinois simplifié\",\"JjkX4+\":\"Choisissez une couleur pour votre arrière-plan\",\"/Jizh9\":\"Choisissez un compte\",\"3wV73y\":\"Ville\",\"FG98gC\":\"Effacer le texte de recherche\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Cliquez pour copier\",\"yz7wBu\":\"Fermer\",\"62Ciis\":\"Fermer la barre latérale\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Le code doit comporter entre 3 et 50 caractères\",\"oqr9HB\":\"Réduire ce produit lorsque la page de l'événement est initialement chargée\",\"jZlrte\":\"Couleur\",\"Vd+LC3\":\"La couleur doit être un code couleur hexadécimal valide. Exemple\xA0: #ffffff\",\"1HfW/F\":\"Couleurs\",\"VZeG/A\":\"À venir\",\"yPI7n9\":\"Mots-clés séparés par des virgules qui décrivent l'événement. Ceux-ci seront utilisés par les moteurs de recherche pour aider à catégoriser et indexer l'événement.\",\"NPZqBL\":\"Complétez la commande\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Paiement complet\",\"qqWcBV\":\"Complété\",\"6HK5Ct\":\"Commandes terminées\",\"NWVRtl\":\"Commandes terminées\",\"DwF9eH\":\"Code du composant\",\"Tf55h7\":\"Réduction configurée\",\"7VpPHA\":\"Confirmer\",\"ZaEJZM\":\"Confirmer le changement d'e-mail\",\"yjkELF\":\"Confirmer le nouveau mot de passe\",\"xnWESi\":\"Confirmez le mot de passe\",\"p2/GCq\":\"Confirmez le mot de passe\",\"wnDgGj\":\"Confirmation de l'adresse e-mail...\",\"pbAk7a\":\"Connecter la bande\",\"UMGQOh\":\"Connectez-vous avec Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Détails de connexion\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continuer\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Texte du bouton Continuer\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copié\",\"T5rdis\":\"copié dans le presse-papier\",\"he3ygx\":\"Copie\",\"r2B2P8\":\"Copier l'URL de pointage\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copier le lien\",\"E6nRW7\":\"Copier le lien\",\"JNCzPW\":\"Pays\",\"IF7RiR\":\"Couverture\",\"hYgDIe\":\"Créer\",\"b9XOHo\":[\"Créer \",[\"0\"]],\"k9RiLi\":\"Créer un produit\",\"6kdXbW\":\"Créer un code promotionnel\",\"n5pRtF\":\"Créer un billet\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"créer un organisateur\",\"ipP6Ue\":\"Créer un participant\",\"VwdqVy\":\"Créer une Affectation de Capacité\",\"EwoMtl\":\"Créer une catégorie\",\"XletzW\":\"Créer une catégorie\",\"WVbTwK\":\"Créer une liste de pointage\",\"uN355O\":\"Créer un évènement\",\"BOqY23\":\"Créer un nouveau\",\"kpJAeS\":\"Créer un organisateur\",\"a0EjD+\":\"Créer un produit\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Créer un code promotionnel\",\"B3Mkdt\":\"Créer une question\",\"UKfi21\":\"Créer une taxe ou des frais\",\"d+F6q9\":\"Créé\",\"Q2lUR2\":\"Devise\",\"DCKkhU\":\"Mot de passe actuel\",\"uIElGP\":\"URL des cartes personnalisées\",\"UEqXyt\":\"Plage personnalisée\",\"876pfE\":\"Client\",\"QOg2Sf\":\"Personnaliser les paramètres de courrier électronique et de notification pour cet événement\",\"Y9Z/vP\":\"Personnalisez la page d'accueil de l'événement et la messagerie de paiement\",\"2E2O5H\":\"Personnaliser les divers paramètres de cet événement\",\"iJhSxe\":\"Personnalisez les paramètres SEO pour cet événement\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Zone dangereuse\",\"ZQKLI1\":\"Zone de Danger\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date et heure\",\"JJhRbH\":\"Capacité du premier jour\",\"cnGeoo\":\"Supprimer\",\"jRJZxD\":\"Supprimer la Capacité\",\"VskHIx\":\"Supprimer la catégorie\",\"Qrc8RZ\":\"Supprimer la liste de pointage\",\"WHf154\":\"Supprimer le code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Description\",\"YC3oXa\":\"Description pour le personnel de pointage\",\"URmyfc\":\"Détails\",\"1lRT3t\":\"Désactiver cette capacité suivra les ventes mais ne les arrêtera pas lorsque la limite sera atteinte\",\"H6Ma8Z\":\"Rabais\",\"ypJ62C\":\"Rabais %\",\"3LtiBI\":[\"Remise en \",[\"0\"]],\"C8JLas\":\"Type de remise\",\"1QfxQT\":\"Ignorer\",\"DZlSLn\":\"Étiquette du document\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Produit de don / Payez ce que vous voulez\",\"OvNbls\":\"Télécharger .ics\",\"kodV18\":\"Télécharger CSV\",\"CELKku\":\"Télécharger la facture\",\"LQrXcu\":\"Télécharger la facture\",\"QIodqd\":\"Télécharger le code QR\",\"yhjU+j\":\"Téléchargement de la facture\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Sélection déroulante\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Dupliquer l'événement\",\"3ogkAk\":\"Dupliquer l'événement\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Options de duplication\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Lève tôt\",\"ePK91l\":\"Modifier\",\"N6j2JH\":[\"Modifier \",[\"0\"]],\"kBkYSa\":\"Modifier la Capacité\",\"oHE9JT\":\"Modifier l'Affectation de Capacité\",\"j1Jl7s\":\"Modifier la catégorie\",\"FU1gvP\":\"Modifier la liste de pointage\",\"iFgaVN\":\"Modifier le code\",\"jrBSO1\":\"Modifier l'organisateur\",\"tdD/QN\":\"Modifier le produit\",\"n143Tq\":\"Modifier la catégorie de produit\",\"9BdS63\":\"Modifier le code promotionnel\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Modifier la question\",\"poTr35\":\"Modifier l'utilisateur\",\"GTOcxw\":\"Modifier l'utilisateur\",\"pqFrv2\":\"par exemple. 2,50 pour 2,50$\",\"3yiej1\":\"par exemple. 23,5 pour 23,5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Paramètres de courrier électronique et de notification\",\"ATGYL1\":\"Adresse e-mail\",\"hzKQCy\":\"Adresse e-mail\",\"HqP6Qf\":\"Changement d'e-mail annulé avec succès\",\"mISwW1\":\"Changement d'e-mail en attente\",\"APuxIE\":\"E-mail de confirmation renvoyé\",\"YaCgdO\":\"E-mail de confirmation renvoyé avec succès\",\"jyt+cx\":\"Message de pied de page de l'e-mail\",\"I6F3cp\":\"E-mail non vérifié\",\"NTZ/NX\":\"Code d'intégration\",\"4rnJq4\":\"Script d'intégration\",\"8oPbg1\":\"Activer la facturation\",\"j6w7d/\":\"Activer cette capacité pour arrêter les ventes de produits lorsque la limite est atteinte\",\"VFv2ZC\":\"Date de fin\",\"237hSL\":\"Terminé\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Anglais\",\"MhVoma\":\"Saisissez un montant hors taxes et frais.\",\"SlfejT\":\"Erreur\",\"3Z223G\":\"Erreur lors de la confirmation de l'adresse e-mail\",\"a6gga1\":\"Erreur lors de la confirmation du changement d'adresse e-mail\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Événement\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Date de l'Événement\",\"0Zptey\":\"Valeurs par défaut des événements\",\"QcCPs8\":\"Détails de l'événement\",\"6fuA9p\":\"Événement dupliqué avec succès\",\"AEuj2m\":\"Page d'accueil de l'événement\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Lieu de l'événement et détails du lieu\",\"OopDbA\":\"Event page\",\"4/If97\":\"La mise à jour du statut de l'événement a échoué. Veuillez réessayer plus tard\",\"btxLWj\":\"Statut de l'événement mis à jour\",\"nMU2d3\":\"URL de l'événement\",\"tst44n\":\"Événements\",\"sZg7s1\":\"Date d'expiration\",\"KnN1Tu\":\"Expire\",\"uaSvqt\":\"Date d'expiration\",\"GS+Mus\":\"Exporter\",\"9xAp/j\":\"Échec de l'annulation du participant\",\"ZpieFv\":\"Échec de l'annulation de la commande\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Échec du téléchargement de la facture. Veuillez réessayer.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Échec du chargement de la liste de pointage\",\"ZQ15eN\":\"Échec du renvoi de l'e-mail du ticket\",\"ejXy+D\":\"Échec du tri des produits\",\"PLUB/s\":\"Frais\",\"/mfICu\":\"Frais\",\"LyFC7X\":\"Filtrer les commandes\",\"cSev+j\":\"Filtres\",\"CVw2MU\":[\"Filtres (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Premier numéro de facture\",\"V1EGGU\":\"Prénom\",\"kODvZJ\":\"Prénom\",\"S+tm06\":\"Le prénom doit comporter entre 1 et 50 caractères\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Première utilisation\",\"TpqW74\":\"Fixé\",\"irpUxR\":\"Montant fixé\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Mot de passe oublié?\",\"2POOFK\":\"Gratuit\",\"P/OAYJ\":\"Produit gratuit\",\"vAbVy9\":\"Produit gratuit, aucune information de paiement requise\",\"nLC6tu\":\"Français\",\"Weq9zb\":\"Général\",\"DDcvSo\":\"Allemand\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Revenir au profil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Agenda\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Ventes brutes\",\"yRg26W\":\"Ventes brutes\",\"R4r4XO\":\"Invités\",\"26pGvx\":\"Avez vous un code de réduction?\",\"V7yhws\":\"bonjour@awesome-events.com\",\"6K/IHl\":\"Voici un exemple d'utilisation du composant dans votre application.\",\"Y1SSqh\":\"Voici le composant React que vous pouvez utiliser pour intégrer le widget dans votre application.\",\"QuhVpV\":[\"Salut \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Caché à la vue du public\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Les questions masquées ne sont visibles que par l'organisateur de l'événement et non par le client.\",\"vLyv1R\":\"Cacher\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Masquer le produit après la date de fin de vente\",\"06s3w3\":\"Masquer le produit avant la date de début de vente\",\"axVMjA\":\"Masquer le produit sauf si l'utilisateur a un code promo applicable\",\"ySQGHV\":\"Masquer le produit lorsqu'il est épuisé\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Masquer ce produit des clients\",\"Da29Y6\":\"Cacher cette question\",\"fvDQhr\":\"Masquer ce niveau aux utilisateurs\",\"lNipG+\":\"Masquer un produit empêchera les utilisateurs de le voir sur la page de l'événement.\",\"ZOBwQn\":\"Conception de la page d'accueil\",\"PRuBTd\":\"Concepteur de page d'accueil\",\"YjVNGZ\":\"Aperçu de la page d'accueil\",\"c3E/kw\":\"Homère\",\"8k8Njd\":\"De combien de minutes le client dispose pour finaliser sa commande. Nous recommandons au moins 15 minutes\",\"ySxKZe\":\"Combien de fois ce code peut-il être utilisé ?\",\"dZsDbK\":[\"Limite de caractères HTML dépassé: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://exemple-maps-service.com/...\",\"uOXLV3\":\"J'accepte les <0>termes et conditions\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Si activé, le personnel d'enregistrement peut marquer les participants comme enregistrés ou marquer la commande comme payée et enregistrer les participants. Si désactivé, les participants associés à des commandes impayées ne peuvent pas être enregistrés.\",\"muXhGi\":\"Si activé, l'organisateur recevra une notification par e-mail lorsqu'une nouvelle commande sera passée\",\"6fLyj/\":\"Si vous n'avez pas demandé ce changement, veuillez immédiatement modifier votre mot de passe.\",\"n/ZDCz\":\"Image supprimée avec succès\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image téléchargée avec succès\",\"VyUuZb\":\"URL de l'image\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactif\",\"T0K0yl\":\"Les utilisateurs inactifs ne peuvent pas se connecter.\",\"kO44sp\":\"Incluez les détails de connexion pour votre événement en ligne. Ces détails seront affichés sur la page récapitulative de la commande et sur le billet du participant.\",\"FlQKnG\":\"Inclure les taxes et les frais dans le prix\",\"Vi+BiW\":[\"Comprend \",[\"0\"],\" produits\"],\"lpm0+y\":\"Comprend 1 produit\",\"UiAk5P\":\"Insérer une image\",\"OyLdaz\":\"Invitation renvoyée\xA0!\",\"HE6KcK\":\"Invitation révoquée\xA0!\",\"SQKPvQ\":\"Inviter un utilisateur\",\"bKOYkd\":\"Facture téléchargée avec succès\",\"alD1+n\":\"Notes de facture\",\"kOtCs2\":\"Numérotation des factures\",\"UZ2GSZ\":\"Paramètres de facturation\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Article\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Étiquette\",\"vXIe7J\":\"Langue\",\"2LMsOq\":\"12 derniers mois\",\"vfe90m\":\"14 derniers jours\",\"aK4uBd\":\"Dernières 24 heures\",\"uq2BmQ\":\"30 derniers jours\",\"bB6Ram\":\"Dernières 48 heures\",\"VlnB7s\":\"6 derniers mois\",\"ct2SYD\":\"7 derniers jours\",\"XgOuA7\":\"90 derniers jours\",\"I3yitW\":\"Dernière connexion\",\"1ZaQUH\":\"Nom de famille\",\"UXBCwc\":\"Nom de famille\",\"tKCBU0\":\"Dernière utilisation\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Laisser vide pour utiliser le mot par défaut \\\"Facture\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Chargement...\",\"wJijgU\":\"Emplacement\",\"sQia9P\":\"Se connecter\",\"zUDyah\":\"Se connecter\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Se déconnecter\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Rendre l'adresse de facturation obligatoire lors du paiement\",\"MU3ijv\":\"Rendre cette question obligatoire\",\"wckWOP\":\"Gérer\",\"onpJrA\":\"Gérer le participant\",\"n4SpU5\":\"Gérer l'événement\",\"WVgSTy\":\"Gérer la commande\",\"1MAvUY\":\"Gérer les paramètres de paiement et de facturation pour cet événement.\",\"cQrNR3\":\"Gérer le profil\",\"AtXtSw\":\"Gérer les taxes et les frais qui peuvent être appliqués à vos produits\",\"ophZVW\":\"Gérer les billets\",\"DdHfeW\":\"Gérez les détails de votre compte et les paramètres par défaut\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Gérez vos utilisateurs et leurs autorisations\",\"1m+YT2\":\"Il faut répondre aux questions obligatoires avant que le client puisse passer à la caisse.\",\"Dim4LO\":\"Ajouter manuellement un participant\",\"e4KdjJ\":\"Ajouter manuellement un participant\",\"vFjEnF\":\"Marquer comme payé\",\"g9dPPQ\":\"Maximum par commande\",\"l5OcwO\":\"Message au participant\",\"Gv5AMu\":\"Message aux participants\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Message à l'acheteur\",\"tNZzFb\":\"Contenu du message\",\"lYDV/s\":\"Envoyer un message à des participants individuels\",\"V7DYWd\":\"Message envoyé\",\"t7TeQU\":\"messages\",\"xFRMlO\":\"Minimum par commande\",\"QYcUEf\":\"Prix minimum\",\"RDie0n\":\"Divers\",\"mYLhkl\":\"Paramètres divers\",\"KYveV8\":\"Zone de texte multiligne\",\"VD0iA7\":\"Options de prix multiples. Parfait pour les produits en prévente, etc.\",\"/bhMdO\":\"Mon incroyable description d'événement...\",\"vX8/tc\":\"Mon incroyable titre d'événement...\",\"hKtWk2\":\"Mon profil\",\"fj5byd\":\"N/A\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nom\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Accédez au participant\",\"qqeAJM\":\"Jamais\",\"7vhWI8\":\"nouveau mot de passe\",\"1UzENP\":\"Non\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Aucun événement archivé à afficher.\",\"q2LEDV\":\"Aucun invité trouvé pour cette commande.\",\"zlHa5R\":\"Aucun invité n'a été ajouté à cette commande.\",\"Wjz5KP\":\"Aucun participant à afficher\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Aucune Affectation de Capacité\",\"a/gMx2\":\"Pas de listes de pointage\",\"tMFDem\":\"Aucune donnée disponible\",\"6Z/F61\":\"Aucune donnée à afficher. Veuillez sélectionner une plage de dates\",\"fFeCKc\":\"Pas de rabais\",\"HFucK5\":\"Aucun événement terminé à afficher.\",\"yAlJXG\":\"Aucun événement à afficher\",\"GqvPcv\":\"Aucun filtre disponible\",\"KPWxKD\":\"Aucun message à afficher\",\"J2LkP8\":\"Aucune commande à afficher\",\"RBXXtB\":\"Aucune méthode de paiement n'est actuellement disponible. Veuillez contacter l'organisateur de l'événement pour obtenir de l'aide.\",\"ZWEfBE\":\"Aucun paiement requis\",\"ZPoHOn\":\"Aucun produit associé à cet invité.\",\"Ya1JhR\":\"Aucun produit disponible dans cette catégorie.\",\"FTfObB\":\"Pas encore de produits\",\"+Y976X\":\"Aucun code promotionnel à afficher\",\"MAavyl\":\"Aucune question n’a été répondue par ce participant.\",\"SnlQeq\":\"Aucune question n'a été posée pour cette commande.\",\"Ev2r9A\":\"Aucun résultat\",\"gk5uwN\":\"Aucun résultat de recherche\",\"RHyZUL\":\"Aucun résultat trouvé.\",\"RY2eP1\":\"Aucune taxe ou frais n'a été ajouté.\",\"EdQY6l\":\"Aucun\",\"OJx3wK\":\"Pas disponible\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notes\",\"jtrY3S\":\"Rien à montrer pour le moment\",\"hFwWnI\":\"Paramètres de notification\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Informer l'organisateur des nouvelles commandes\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Nombre de jours autorisés pour le paiement (laisser vide pour omettre les conditions de paiement sur les factures)\",\"n86jmj\":\"Préfixe de numéro\",\"mwe+2z\":\"Les commandes hors ligne ne sont pas reflétées dans les statistiques de l'événement tant que la commande n'est pas marquée comme payée.\",\"dWBrJX\":\"Le paiement hors ligne a échoué. Veuillez réessayer ou contacter l'organisateur de l'événement.\",\"fcnqjw\":\"Instructions de Paiement Hors Ligne\",\"+eZ7dp\":\"Paiements hors ligne\",\"ojDQlR\":\"Informations sur les paiements hors ligne\",\"u5oO/W\":\"Paramètres des paiements hors ligne\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"En soldes\",\"Ug4SfW\":\"Une fois que vous avez créé un événement, vous le verrez ici.\",\"ZxnK5C\":\"Une fois que vous commencerez à collecter des données, elles apparaîtront ici.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"En cours\",\"z+nuVJ\":\"Événement en ligne\",\"WKHW0N\":\"Détails de l'événement en ligne\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Ouvrir la Page d'Enregistrement\",\"OdnLE4\":\"Ouvrir la barre latérale\",\"ZZEYpT\":[\"Option\xA0\",[\"i\"]],\"oPknTP\":\"Informations supplémentaires optionnelles à apparaître sur toutes les factures (par exemple, conditions de paiement, frais de retard, politique de retour)\",\"OrXJBY\":\"Préfixe optionnel pour les numéros de facture (par exemple, INV-)\",\"0zpgxV\":\"Possibilités\",\"BzEFor\":\"ou\",\"UYUgdb\":\"Commande\",\"mm+eaX\":\"Commande N°\",\"B3gPuX\":\"Commande annulée\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Date de commande\",\"Tol4BF\":\"détails de la commande\",\"WbImlQ\":\"La commande a été annulée et le propriétaire de la commande a été informé.\",\"nAn4Oe\":\"Commande marquée comme payée\",\"uzEfRz\":\"Notes de commande\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Référence de l'achat\",\"acIJ41\":\"Statut de la commande\",\"GX6dZv\":\"Récapitulatif de la commande\",\"tDTq0D\":\"Délai d'expiration de la commande\",\"1h+RBg\":\"Ordres\",\"3y+V4p\":\"Adresse de l'organisation\",\"GVcaW6\":\"Détails de l'organisation\",\"nfnm9D\":\"Nom de l'organisation\",\"G5RhpL\":\"Organisateur\",\"mYygCM\":\"Un organisateur est requis\",\"Pa6G7v\":\"Nom de l'organisateur\",\"l894xP\":\"Les organisateurs ne peuvent gérer que les événements et les produits. Ils ne peuvent pas gérer les utilisateurs, les paramètres du compte ou les informations de facturation.\",\"fdjq4c\":\"Marge intérieure\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Page non trouvée\",\"QbrUIo\":\"Pages vues\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"payé\",\"HVW65c\":\"Produit payant\",\"ZfxaB4\":\"Partiellement remboursé\",\"8ZsakT\":\"Mot de passe\",\"TUJAyx\":\"Le mot de passe doit contenir au minimum 8 caractères\",\"vwGkYB\":\"Mot de passe doit être d'au moins 8 caractères\",\"BLTZ42\":\"Le mot de passe a été réinitialisé avec succès. Veuillez vous connecter avec votre nouveau mot de passe.\",\"f7SUun\":\"les mots de passe ne sont pas les mêmes\",\"aEDp5C\":\"Collez ceci où vous souhaitez que le widget apparaisse.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Paiement\",\"Lg+ewC\":\"Paiement et facturation\",\"DZjk8u\":\"Paramètres de paiement et de facturation\",\"lflimf\":\"Délai de paiement\",\"JhtZAK\":\"Paiement échoué\",\"JEdsvQ\":\"Instructions de paiement\",\"bLB3MJ\":\"Méthodes de paiement\",\"QzmQBG\":\"Fournisseur de paiement\",\"lsxOPC\":\"Paiement reçu\",\"wJTzyi\":\"Statut du paiement\",\"xgav5v\":\"Paiement réussi\xA0!\",\"R29lO5\":\"Conditions de paiement\",\"/roQKz\":\"Pourcentage\",\"vPJ1FI\":\"Montant en pourcentage\",\"xdA9ud\":\"Placez ceci dans le de votre site web.\",\"blK94r\":\"Veuillez ajouter au moins une option\",\"FJ9Yat\":\"Veuillez vérifier que les informations fournies sont correctes\",\"TkQVup\":\"Veuillez vérifier votre e-mail et votre mot de passe et réessayer\",\"sMiGXD\":\"Veuillez vérifier que votre email est valide\",\"Ajavq0\":\"Veuillez vérifier votre courrier électronique pour confirmer votre adresse e-mail\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Veuillez continuer dans le nouvel onglet\",\"hcX103\":\"Veuillez créer un produit\",\"cdR8d6\":\"Veuillez créer un billet\",\"x2mjl4\":\"Veuillez entrer une URL d'image valide qui pointe vers une image.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Veuillez noter\",\"C63rRe\":\"Veuillez retourner sur la page de l'événement pour recommencer.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Veuillez sélectionner au moins un produit\",\"igBrCH\":\"Veuillez vérifier votre adresse e-mail pour accéder à toutes les fonctionnalités\",\"/IzmnP\":\"Veuillez patienter pendant que nous préparons votre facture...\",\"MOERNx\":\"Portugais\",\"qCJyMx\":\"Message après le paiement\",\"g2UNkE\":\"Alimenté par\",\"Rs7IQv\":\"Message de pré-commande\",\"rdUucN\":\"Aperçu\",\"a7u1N9\":\"Prix\",\"CmoB9j\":\"Mode d'affichage des prix\",\"BI7D9d\":\"Prix non défini\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Type de prix\",\"6RmHKN\":\"Couleur primaire\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Couleur du texte primaire\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Imprimer tous les billets\",\"DKwDdj\":\"Imprimer les billets\",\"K47k8R\":\"Produit\",\"1JwlHk\":\"Catégorie de produit\",\"U61sAj\":\"Catégorie de produit mise à jour avec succès.\",\"1USFWA\":\"Produit supprimé avec succès\",\"4Y2FZT\":\"Type de prix du produit\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Ventes de produits\",\"U/R4Ng\":\"Niveau de produit\",\"sJsr1h\":\"Type de produit\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produit(s)\",\"N0qXpE\":\"Produits\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Produits vendus\",\"/u4DIx\":\"Produits vendus\",\"DJQEZc\":\"Produits triés avec succès\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Mise à jour du profil réussie\",\"cl5WYc\":[\"Code promotionnel \",[\"promo_code\"],\" appliqué\"],\"P5sgAk\":\"Code promo\",\"yKWfjC\":\"Page des codes promotionnels\",\"RVb8Fo\":\"Code de promo\",\"BZ9GWa\":\"Les codes promotionnels peuvent être utilisés pour offrir des réductions, un accès en prévente ou fournir un accès spécial à votre événement.\",\"OP094m\":\"Rapport des codes promo\",\"4kyDD5\":\"Fournissez un contexte ou des instructions supplémentaires pour cette question. Utilisez ce champ pour ajouter des conditions générales,\\ndes directives ou toute information importante que les participants doivent connaître avant de répondre.\",\"toutGW\":\"Code QR\",\"LkMOWF\":\"Quantité disponible\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Question supprimée\",\"avf0gk\":\"Description de la question\",\"oQvMPn\":\"titre de question\",\"enzGAL\":\"Des questions\",\"ROv2ZT\":\"Questions et réponses\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Option radio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Destinataire\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Remboursement échoué\",\"n10yGu\":\"Commande de remboursement\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Remboursement en attente\",\"xHpVRl\":\"Statut du remboursement\",\"/BI0y9\":\"Remboursé\",\"fgLNSM\":\"Registre\",\"9+8Vez\":\"Utilisations restantes\",\"tasfos\":\"retirer\",\"t/YqKh\":\"Retirer\",\"t9yxlZ\":\"Rapports\",\"prZGMe\":\"Adresse de facturation requise\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Renvoyer l'e-mail de confirmation\",\"wIa8Qe\":\"Renvoyer l'invitation\",\"VeKsnD\":\"Renvoyer l'e-mail de commande\",\"dFuEhO\":\"Renvoyer l'e-mail du billet\",\"o6+Y6d\":\"Renvoi...\",\"OfhWJH\":\"Réinitialiser\",\"RfwZxd\":\"Réinitialiser le mot de passe\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restaurer l'événement\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Retourner à la page de l'événement\",\"8YBH95\":\"Revenu\",\"PO/sOY\":\"Révoquer l'invitation\",\"GDvlUT\":\"Rôle\",\"ELa4O9\":\"Date de fin de vente\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Date de début de la vente\",\"hBsw5C\":\"Ventes terminées\",\"kpAzPe\":\"Début des ventes\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Sauvegarder\",\"IUwGEM\":\"Sauvegarder les modifications\",\"U65fiW\":\"Enregistrer l'organisateur\",\"UGT5vp\":\"Enregistrer les paramètres\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Recherchez par nom de participant, e-mail ou numéro de commande...\",\"+pr/FY\":\"Rechercher par nom d'événement...\",\"3zRbWw\":\"Recherchez par nom, e-mail ou numéro de commande...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Rechercher par nom...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Rechercher des affectations de capacité...\",\"r9M1hc\":\"Rechercher des listes de pointage...\",\"+0Yy2U\":\"Rechercher des produits\",\"YIix5Y\":\"Recherche...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Couleur secondaire\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Couleur du texte secondaire\",\"02ePaq\":[\"Sélectionner \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Sélectionner une catégorie...\",\"kWI/37\":\"Sélectionnez l'organisateur\",\"ixIx1f\":\"Sélectionner le produit\",\"3oSV95\":\"Sélectionner le niveau de produit\",\"C4Y1hA\":\"Sélectionner des produits\",\"hAjDQy\":\"Sélectionnez le statut\",\"QYARw/\":\"Sélectionnez un billet\",\"OMX4tH\":\"Sélectionner des billets\",\"DrwwNd\":\"Sélectionnez la période\",\"O/7I0o\":\"Sélectionner...\",\"JlFcis\":\"Envoyer\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Envoyer un message\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Envoyer un Message\",\"D7ZemV\":\"Envoyer la confirmation de commande et l'e-mail du ticket\",\"v1rRtW\":\"Envoyer le test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descriptif SEO\",\"/SIY6o\":\"Mots-clés SEO\",\"GfWoKv\":\"Paramètres de référencement\",\"rXngLf\":\"Titre SEO\",\"/jZOZa\":\"Frais de service\",\"Bj/QGQ\":\"Fixer un prix minimum et laisser les utilisateurs payer plus s'ils le souhaitent\",\"L0pJmz\":\"Définir le numéro de départ pour la numérotation des factures. Cela ne peut pas être modifié une fois que les factures ont été générées.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Paramètres\",\"Z8lGw6\":\"Partager\",\"B2V3cA\":\"Partager l'événement\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Afficher la quantité de produit disponible\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Montre plus\",\"izwOOD\":\"Afficher les taxes et les frais séparément\",\"1SbbH8\":\"Affiché au client après son paiement, sur la page récapitulative de la commande.\",\"YfHZv0\":\"Montré au client avant son paiement\",\"CBBcly\":\"Affiche les champs d'adresse courants, y compris le pays\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Zone de texte sur une seule ligne\",\"+P0Cn2\":\"Passer cette étape\",\"YSEnLE\":\"Forgeron\",\"lgFfeO\":\"Épuisé\",\"Mi1rVn\":\"Épuisé\",\"nwtY4N\":\"Une erreur s'est produite\",\"GRChTw\":\"Une erreur s'est produite lors de la suppression de la taxe ou des frais\",\"YHFrbe\":\"Quelque chose s'est mal passé\xA0! Veuillez réessayer\",\"kf83Ld\":\"Quelque chose s'est mal passé.\",\"fWsBTs\":\"Quelque chose s'est mal passé. Veuillez réessayer.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Désolé, ce code promo n'est pas reconnu\",\"65A04M\":\"Espagnol\",\"mFuBqb\":\"Produit standard avec un prix fixe\",\"D3iCkb\":\"Date de début\",\"/2by1f\":\"État ou région\",\"uAQUqI\":\"Statut\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Les paiements Stripe ne sont pas activés pour cet événement.\",\"UJmAAK\":\"Sujet\",\"X2rrlw\":\"Total\",\"zzDlyQ\":\"Succès\",\"b0HJ45\":[\"Succès! \",[\"0\"],\" recevra un e-mail sous peu.\"],\"BJIEiF\":[[\"0\"],\" participant a réussi\"],\"OtgNFx\":\"Adresse e-mail confirmée avec succès\",\"IKwyaF\":\"Changement d'e-mail confirmé avec succès\",\"zLmvhE\":\"Participant créé avec succès\",\"gP22tw\":\"Produit créé avec succès\",\"9mZEgt\":\"Code promotionnel créé avec succès\",\"aIA9C4\":\"Question créée avec succès\",\"J3RJSZ\":\"Participant mis à jour avec succès\",\"3suLF0\":\"Affectation de Capacité mise à jour avec succès\",\"Z+rnth\":\"Liste de pointage mise à jour avec succès\",\"vzJenu\":\"Paramètres de messagerie mis à jour avec succès\",\"7kOMfV\":\"Événement mis à jour avec succès\",\"G0KW+e\":\"Conception de la page d'accueil mise à jour avec succès\",\"k9m6/E\":\"Paramètres de la page d'accueil mis à jour avec succès\",\"y/NR6s\":\"Emplacement mis à jour avec succès\",\"73nxDO\":\"Paramètres divers mis à jour avec succès\",\"4H80qv\":\"Commande mise à jour avec succès\",\"6xCBVN\":\"Paramètres de paiement et de facturation mis à jour avec succès\",\"1Ycaad\":\"Produit mis à jour avec succès\",\"70dYC8\":\"Code promotionnel mis à jour avec succès\",\"F+pJnL\":\"Paramètres de référencement mis à jour avec succès\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"E-mail d'assistance\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Impôt\",\"geUFpZ\":\"Taxes et frais\",\"dFHcIn\":\"Détails fiscaux\",\"wQzCPX\":\"Informations fiscales à apparaître en bas de toutes les factures (par exemple, numéro de TVA, enregistrement fiscal)\",\"0RXCDo\":\"Taxe ou frais supprimés avec succès\",\"ZowkxF\":\"Impôts\",\"qu6/03\":\"Taxes et frais\",\"gypigA\":\"Ce code promotionnel n'est pas valide\",\"5ShqeM\":\"La liste de pointage que vous recherchez n'existe pas.\",\"QXlz+n\":\"La devise par défaut de vos événements.\",\"mnafgQ\":\"Le fuseau horaire par défaut pour vos événements.\",\"o7s5FA\":\"La langue dans laquelle le participant recevra ses courriels.\",\"NlfnUd\":\"Le lien sur lequel vous avez cliqué n'est pas valide.\",\"HsFnrk\":[\"Le nombre maximum de produits pour \",[\"0\"],\" est \",[\"1\"]],\"TSAiPM\":\"La page que vous recherchez n'existe pas\",\"MSmKHn\":\"Le prix affiché au client comprendra les taxes et frais.\",\"6zQOg1\":\"Le prix affiché au client ne comprendra pas les taxes et frais. Ils seront présentés séparément\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Le titre de l'événement qui sera affiché dans les résultats des moteurs de recherche et lors du partage sur les réseaux sociaux. Par défaut, le titre de l'événement sera utilisé\",\"wDx3FF\":\"Il n'y a pas de produits disponibles pour cet événement\",\"pNgdBv\":\"Il n'y a pas de produits disponibles dans cette catégorie\",\"rMcHYt\":\"Un remboursement est en attente. Veuillez attendre qu'il soit terminé avant de demander un autre remboursement.\",\"F89D36\":\"Une erreur est survenue lors du marquage de la commande comme payée\",\"68Axnm\":\"Il y a eu une erreur lors du traitement de votre demande. Veuillez réessayer.\",\"mVKOW6\":\"Une erreur est survenue lors de l'envoi de votre message\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Ce participant a une commande impayée.\",\"mf3FrP\":\"Cette catégorie n'a pas encore de produits.\",\"8QH2Il\":\"Cette catégorie est masquée de la vue publique\",\"xxv3BZ\":\"Cette liste de pointage a expiré\",\"Sa7w7S\":\"Cette liste de pointage a expiré et n'est plus disponible pour les enregistrements.\",\"Uicx2U\":\"Cette liste de pointage est active\",\"1k0Mp4\":\"Cette liste de pointage n'est pas encore active\",\"K6fmBI\":\"Cette liste de pointage n'est pas encore active et n'est pas disponible pour les enregistrements.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Ces informations seront affichées sur la page de paiement, la page de résumé de commande et l'e-mail de confirmation de commande.\",\"XAHqAg\":\"C'est un produit général, comme un t-shirt ou une tasse. Aucun billet ne sera délivré\",\"CNk/ro\":\"Ceci est un événement en ligne\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Ce message sera inclus dans le pied de page de tous les e-mails envoyés à partir de cet événement\",\"55i7Fa\":\"Ce message ne sera affiché que si la commande est terminée avec succès. Les commandes en attente de paiement n'afficheront pas ce message.\",\"RjwlZt\":\"Cette commande a déjà été payée.\",\"5K8REg\":\"Cette commande a déjà été remboursée.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Cette commande a été annulée.\",\"Q0zd4P\":\"Cette commande a expiré. Veuillez recommencer.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Cette commande est terminée.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Cette page de commande n'est plus disponible.\",\"i0TtkR\":\"Cela remplace tous les paramètres de visibilité et masquera le produit de tous les clients.\",\"cRRc+F\":\"Ce produit ne peut pas être supprimé car il est associé à une commande. Vous pouvez le masquer à la place.\",\"3Kzsk7\":\"Ce produit est un billet. Les acheteurs recevront un billet lors de l'achat\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Ce lien de réinitialisation du mot de passe est invalide ou a expiré.\",\"IV9xTT\":\"Cet utilisateur n'est pas actif car il n'a pas accepté son invitation.\",\"5AnPaO\":\"billet\",\"kjAL4v\":\"Billet\",\"dtGC3q\":\"L'e-mail du ticket a été renvoyé au participant\",\"54q0zp\":\"Billets pour\",\"xN9AhL\":[\"Niveau\xA0\",[\"0\"]],\"jZj9y9\":\"Produit par paliers\",\"8wITQA\":\"Les produits à niveaux vous permettent de proposer plusieurs options de prix pour le même produit. C'est parfait pour les produits en prévente ou pour proposer différentes options de prix à différents groupes de personnes.\\\" # fr\",\"nn3mSR\":\"Temps restant :\",\"s/0RpH\":\"Temps utilisés\",\"y55eMd\":\"Nombre d'utilisations\",\"40Gx0U\":\"Fuseau horaire\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Outils\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total avant réductions\",\"NRWNfv\":\"Montant total de la réduction\",\"BxsfMK\":\"Total des frais\",\"2bR+8v\":\"Total des ventes brutes\",\"mpB/d9\":\"Montant total de la commande\",\"m3FM1g\":\"Total remboursé\",\"jEbkcB\":\"Total remboursé\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Taxe total\",\"+zy2Nq\":\"Taper\",\"FMdMfZ\":\"Impossible d'enregistrer le participant\",\"bPWBLL\":\"Impossible de sortir le participant\",\"9+P7zk\":\"Impossible de créer le produit. Veuillez vérifier vos détails\",\"WLxtFC\":\"Impossible de créer le produit. Veuillez vérifier vos détails\",\"/cSMqv\":\"Impossible de créer une question. Veuillez vérifier vos coordonnées\",\"MH/lj8\":\"Impossible de mettre à jour la question. Veuillez vérifier vos coordonnées\",\"nnfSdK\":\"Clients uniques\",\"Mqy/Zy\":\"États-Unis\",\"NIuIk1\":\"Illimité\",\"/p9Fhq\":\"Disponible illimité\",\"E0q9qH\":\"Utilisations illimitées autorisées\",\"h10Wm5\":\"Commande impayée\",\"ia8YsC\":\"A venir\",\"TlEeFv\":\"Événements à venir\",\"L/gNNk\":[\"Mettre à jour \",[\"0\"]],\"+qqX74\":\"Mettre à jour le nom, la description et les dates de l'événement\",\"vXPSuB\":\"Mettre à jour le profil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copié dans le presse-papiers\",\"e5lF64\":\"Exemple d'utilisation\",\"fiV0xj\":\"Limite d'utilisation\",\"sGEOe4\":\"Utilisez une version floue de l'image de couverture comme arrière-plan\",\"OadMRm\":\"Utiliser l'image de couverture\",\"7PzzBU\":\"Utilisateur\",\"yDOdwQ\":\"Gestion des utilisateurs\",\"Sxm8rQ\":\"Utilisateurs\",\"VEsDvU\":\"Les utilisateurs peuvent modifier leur adresse e-mail dans <0>Paramètres du profil.\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"T.V.A.\",\"E/9LUk\":\"nom de la place\",\"jpctdh\":\"Voir\",\"Pte1Hv\":\"Voir les détails de l'invité\",\"/5PEQz\":\"Voir la page de l'événement\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Afficher sur Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Liste de pointage VIP\",\"tF+VVr\":\"Billet VIP\",\"2q/Q7x\":\"Visibilité\",\"vmOFL/\":\"Nous n'avons pas pu traiter votre paiement. Veuillez réessayer ou contacter l'assistance.\",\"45Srzt\":\"Nous n'avons pas pu supprimer la catégorie. Veuillez réessayer.\",\"/DNy62\":[\"Nous n'avons trouvé aucun billet correspondant à \",[\"0\"]],\"1E0vyy\":\"Nous n'avons pas pu charger les données. Veuillez réessayer.\",\"NmpGKr\":\"Nous n'avons pas pu réorganiser les catégories. Veuillez réessayer.\",\"BJtMTd\":\"Nous recommandons des dimensions de 2\xA0160\xA0px sur 1\xA0080\xA0px et une taille de fichier maximale de 5\xA0Mo.\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Nous n'avons pas pu confirmer votre paiement. Veuillez réessayer ou contacter l'assistance.\",\"Gspam9\":\"Nous traitons votre commande. S'il vous plaît, attendez...\",\"LuY52w\":\"Bienvenue à bord! Merci de vous connecter pour continuer.\",\"dVxpp5\":[\"Bon retour\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Quels sont les produits par paliers ?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Qu'est-ce qu'une catégorie ?\",\"gxeWAU\":\"À quels produits ce code s'applique-t-il ?\",\"hFHnxR\":\"À quels produits ce code s'applique-t-il ? (S'applique à tous par défaut)\",\"AeejQi\":\"À quels produits cette capacité doit-elle s'appliquer ?\",\"Rb0XUE\":\"A quelle heure arriverez-vous ?\",\"5N4wLD\":\"De quel type de question s'agit-il ?\",\"gyLUYU\":\"Lorsque activé, des factures seront générées pour les commandes de billets. Les factures seront envoyées avec l'e-mail de confirmation de commande. Les participants peuvent également télécharger leurs factures depuis la page de confirmation de commande.\",\"D3opg4\":\"Lorsque les paiements hors ligne sont activés, les utilisateurs pourront finaliser leurs commandes et recevoir leurs billets. Leurs billets indiqueront clairement que la commande n'est pas payée, et l'outil d'enregistrement informera le personnel si une commande nécessite un paiement.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Quels billets doivent être associés à cette liste de pointage\xA0?\",\"S+OdxP\":\"Qui organise cet événement ?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"À qui faut-il poser cette question ?\",\"VxFvXQ\":\"Intégrer le widget\",\"v1P7Gm\":\"Paramètres du widget\",\"b4itZn\":\"Fonctionnement\",\"hqmXmc\":\"Fonctionnement...\",\"+G/XiQ\":\"Année à ce jour\",\"l75CjT\":\"Oui\",\"QcwyCh\":\"Oui, supprime-les\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Vous changez votre adresse e-mail en <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Vous êtes hors ligne\",\"sdB7+6\":\"Vous pouvez créer un code promo qui cible ce produit sur le\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Vous ne pouvez pas changer le type de produit car des invités y sont associés.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Vous ne pouvez pas enregistrer des participants avec des commandes impayées. Ce paramètre peut être modifié dans les paramètres de l'événement.\",\"c9Evkd\":\"Vous ne pouvez pas supprimer la dernière catégorie.\",\"6uwAvx\":\"Vous ne pouvez pas supprimer ce niveau de prix car des produits ont déjà été vendus pour ce niveau. Vous pouvez le masquer à la place.\",\"tFbRKJ\":\"Vous ne pouvez pas modifier le rôle ou le statut du propriétaire du compte.\",\"fHfiEo\":\"Vous ne pouvez pas rembourser une commande créée manuellement.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Vous avez accès à plusieurs comptes. Veuillez en choisir un pour continuer.\",\"Z6q0Vl\":\"Vous avez déjà accepté cette invitation. Merci de vous connecter pour continuer.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Vous n’avez aucun changement d’e-mail en attente.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Vous avez manqué de temps pour compléter votre commande.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Vous devez reconnaître que cet e-mail n'est pas promotionnel\",\"3ZI8IL\":\"Vous devez accepter les termes et conditions\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Vous devez créer un ticket avant de pouvoir ajouter manuellement un participant.\",\"jE4Z8R\":\"Vous devez avoir au moins un niveau de prix\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Vous devrez marquer une commande comme payée manuellement. Cela peut être fait sur la page de gestion des commandes.\",\"L/+xOk\":\"Vous aurez besoin d'un billet avant de pouvoir créer une liste de pointage.\",\"Djl45M\":\"Vous aurez besoin d'un produit avant de pouvoir créer une affectation de capacité.\",\"y3qNri\":\"Vous aurez besoin d'au moins un produit pour commencer. Gratuit, payant ou laissez l'utilisateur décider du montant à payer.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Le nom de votre compte est utilisé sur les pages d'événements et dans les e-mails.\",\"veessc\":\"Vos participants apparaîtront ici une fois qu’ils se seront inscrits à votre événement. Vous pouvez également ajouter manuellement des participants.\",\"Eh5Wrd\":\"Votre super site web 🎉\",\"lkMK2r\":\"Vos détails\",\"3ENYTQ\":[\"Votre demande de modification par e-mail en <0>\",[\"0\"],\" est en attente. S'il vous plaît vérifier votre e-mail pour confirmer\"],\"yZfBoy\":\"Votre message a été envoyé\",\"KSQ8An\":\"Votre commande\",\"Jwiilf\":\"Votre commande a été annulée\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Vos commandes apparaîtront ici une fois qu’elles commenceront à arriver.\",\"9TO8nT\":\"Votre mot de passe\",\"P8hBau\":\"Votre paiement est en cours de traitement.\",\"UdY1lL\":\"Votre paiement n'a pas abouti, veuillez réessayer.\",\"fzuM26\":\"Votre paiement a échoué. Veuillez réessayer.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Votre remboursement est en cours de traitement.\",\"IFHV2p\":\"Votre billet pour\",\"x1PPdr\":\"Code postal\",\"BM/KQm\":\"Code Postal\",\"+LtVBt\":\"Code postal\",\"25QDJ1\":\"- Cliquez pour publier\",\"WOyJmc\":\"- Cliquez pour dépublier\",\"ncwQad\":\"(vide)\",\"B/gRsg\":\"(aucun)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" est déjà enregistré\"],\"3beCx0\":[[\"0\"],\" <0>enregistré\"],\"S4PqS9\":[[\"0\"],\" webhooks actifs\"],\"6MIiOI\":[[\"0\"],\" restant\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" places sur \",[\"1\"],\" sont occupées.\"],\"B7pZfX\":[[\"0\"],\" organisateurs\"],\"rZTf6P\":[[\"0\"],\" places restantes\"],\"/HkCs4\":[[\"0\"],\" billets\"],\"dtXkP9\":[[\"0\"],\" dates à venir\"],\"30bTiU\":[[\"activeCount\"],\" activés\"],\"jTs4am\":[\"Logo \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" participants sont inscrits à cette séance.\"],\"TjbIUI\":[[\"availableCount\"],\" sur \",[\"totalCount\"],\" disponibles\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" enregistrés\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"il y a \",[\"diffHr\"],\" h\"],\"NRSLBe\":[\"il y a \",[\"diffMin\"],\" min\"],\"iYfwJE\":[\"il y a \",[\"diffSec\"],\" s\"],\"OJnhhX\":[[\"eventCount\"],\" événements\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" participants sont inscrits aux séances concernées.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" types de billets\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" séances réparties sur \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" séance\"],\"other\":[\"#\",\" séances\"]}],\" par jour)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Taxes/Frais\",\"B1St2O\":\"<0>Les listes d'enregistrement vous aident à gérer l'entrée à l'événement par jour, zone ou type de billet. Vous pouvez lier des billets à des listes spécifiques telles que des zones VIP ou des pass Jour 1 et partager un lien d'enregistrement sécurisé avec le personnel. Aucun compte n'est requis. L'enregistrement fonctionne sur mobile, ordinateur ou tablette, en utilisant la caméra de l'appareil ou un scanner USB HID. \",\"v9VSIS\":\"<0>Définissez une limite de participation totale unique qui s'applique à plusieurs types de billets à la fois.<1>Par exemple, si vous liez un billet <2>Pass Journée et un billet <3>Week-end complet, ils utiliseront tous deux le même quota de places. Une fois la limite atteinte, tous les billets liés cessent automatiquement d'être vendus.\",\"vKXqag\":\"<0>Il s'agit de la quantité par défaut pour toutes les dates. La capacité de chaque date peut limiter davantage la disponibilité depuis la <1>page Planning des séances.\",\"ZnVt5v\":\"<0>Les webhooks notifient instantanément les services externes lorsqu'un événement se produit, comme l'ajout d'un nouvel inscrit à votre CRM ou à votre liste de diffusion lors de l'inscription, garantissant une automatisation fluide.<1>Utilisez des services tiers comme <2>Zapier, <3>IFTTT ou <4>Make pour créer des workflows personnalisés et automatiser des tâches.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" au taux actuel\"],\"M2DyLc\":\"1 webhook actif\",\"6hIk/x\":\"1 participant est inscrit aux séances concernées.\",\"qOyE2U\":\"1 participant est inscrit à cette séance.\",\"943BwI\":\"1 jour après la date de fin\",\"yj3N+g\":\"1 jour après la date de début\",\"Z3etYG\":\"1 jour avant l'événement\",\"szSnlj\":\"1 heure avant l'événement\",\"yTsaLw\":\"1 billet\",\"nz96Ue\":\"1 type de billet\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 semaine avant l'événement\",\"09VFYl\":\"12 billets proposés\",\"HR/cvw\":\"123 Rue Exemple\",\"dgKxZ5\":\"135+ devises et 40+ moyens de paiement\",\"kMU5aM\":\"Un avis d'annulation a été envoyé à\",\"o++0qa\":\"un changement de durée\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Un nouveau code de vérification a été envoyé à votre adresse e-mail\",\"sr2Je0\":\"un décalage des heures de début/fin\",\"/z/bH1\":\"Une brève description de votre organisateur qui sera affichée à vos utilisateurs.\",\"aS0jtz\":\"Abandonné\",\"uyJsf6\":\"À propos\",\"JvuLls\":\"Absorber les frais\",\"lk74+I\":\"Absorber les frais\",\"1uJlG9\":\"Couleur d'Accent\",\"g3UF2V\":\"Accepter\",\"K5+3xg\":\"Accepter l'invitation\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Compte · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informations du compte\",\"EHNORh\":\"Compte introuvable\",\"bPwFdf\":\"Comptes\",\"AhwTa1\":\"Action requise : Informations TVA nécessaires\",\"APyAR/\":\"Événements actifs\",\"kCl6ja\":\"Moyens de paiement actifs\",\"XJOV1Y\":\"Activité\",\"0YEoxS\":\"Ajouter une date\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Ajouter une date unique\",\"CjvTPJ\":\"Ajouter un autre horaire\",\"0XCduh\":\"Ajoutez au moins un horaire\",\"/chGpa\":\"Ajoutez les informations de connexion pour l’événement en ligne.\",\"UWWRyd\":\"Ajoutez des questions personnalisées pour collecter des informations supplémentaires lors du paiement\",\"Z/dcxc\":\"Ajouter une date\",\"Q219NT\":\"Ajouter des dates\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Ajouter un lieu\",\"VX6WUv\":\"Ajouter un lieu\",\"GCQlV2\":\"Ajoutez plusieurs horaires si vous organisez plusieurs séances par jour.\",\"7JF9w9\":\"Ajouter une question\",\"NLbIb6\":\"Ajouter ce participant malgré tout (dépasser la capacité)\",\"6PNlRV\":\"Ajouter cet événement à votre calendrier\",\"BGD9Yt\":\"Ajouter des billets\",\"uIv4Op\":\"Ajoutez des pixels de suivi à vos pages d'événement publiques et à la page d'accueil de l'organisateur. Une bannière de consentement aux cookies sera affichée aux visiteurs lorsque le suivi est actif.\",\"QN2F+7\":\"Ajouter un webhook\",\"NsWqSP\":\"Ajoutez vos réseaux sociaux et l'URL de votre site. Ils seront affichés sur votre page publique d'organisateur.\",\"bVjDs9\":\"Frais supplémentaires\",\"MKqSg4\":\"Accès administrateur requis\",\"0Zypnp\":\"Tableau de Bord Admin\",\"YAV57v\":\"Affilié\",\"I+utEq\":\"Le code d'affiliation ne peut pas être modifié\",\"/jHBj5\":\"Affilié créé avec succès\",\"uCFbG2\":\"Affilié supprimé avec succès\",\"ld8I+f\":\"Programme d'affiliation\",\"a41PKA\":\"Les ventes de l'affilié seront suivies\",\"mJJh2s\":\"Les ventes de l'affilié ne seront pas suivies. Cela désactivera l'affilié.\",\"jabmnm\":\"Affilié mis à jour avec succès\",\"CPXP5Z\":\"Affiliés\",\"9Wh+ug\":\"Affiliés exportés\",\"3cqmut\":\"Les affiliés vous aident à suivre les ventes générées par les partenaires et les influenceurs. Créez des codes d'affiliation et partagez-les pour surveiller les performances.\",\"z7GAMJ\":\"tout\",\"N40H+G\":\"Tous\",\"7rLTkE\":\"Tous les événements archivés\",\"gKq1fa\":\"Tous les participants\",\"63gRoO\":\"Tous les participants des séances sélectionnées\",\"uWxIoH\":\"Tous les participants de cette séance\",\"pMLul+\":\"Toutes les devises\",\"sgUdRZ\":\"Toutes les dates\",\"e4q4uO\":\"Toutes les dates\",\"ZS/D7f\":\"Tous les événements terminés\",\"QsYjci\":\"Tous les événements\",\"31KB8w\":\"Tous les travaux échoués supprimés\",\"D2g7C7\":\"Tous les travaux en file d'attente pour réessai\",\"B4RFBk\":\"Toutes les dates correspondantes\",\"F1/VgK\":\"Toutes les séances\",\"OpWjMq\":\"Toutes les séances\",\"Sxm1lO\":\"Tous les statuts\",\"dr7CWq\":\"Tous les événements à venir\",\"GpT6Uf\":\"Permettre aux participants de mettre à jour leurs informations de billet (nom, e-mail) via un lien sécurisé envoyé avec leur confirmation de commande.\",\"F3mW5G\":\"Permettre aux clients de rejoindre une liste d'attente lorsque ce produit est épuisé\",\"c4uJfc\":\"Presque terminé ! Nous attendons juste que votre paiement soit traité. Cela ne devrait prendre que quelques secondes.\",\"ocS8eq\":[\"Vous avez déjà un compte ? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Déjà arrivé\",\"/H326L\":\"Déjà remboursé\",\"USEpOK\":\"Vous utilisez déjà Stripe pour un autre organisateur ? Réutilisez cette connexion.\",\"RtxQTF\":\"Annuler également cette commande\",\"jkNgQR\":\"Rembourser également cette commande\",\"xYqsHg\":\"Toujours disponible\",\"Wvrz79\":\"Montant payé\",\"Zkymb9\":\"Une adresse e-mail à associer à cet affilié. L'affilié ne sera pas notifié.\",\"vRznIT\":\"Une erreur s'est produite lors de la vérification du statut d'exportation.\",\"eusccx\":\"Un message optionnel à afficher sur le produit en vedette, par ex. \\\"Se vend rapidement 🔥\\\" ou \\\"Meilleur rapport qualité-prix\\\"\",\"5GJuNp\":[\"et \",[\"0\"],\" de plus...\"],\"QNrkms\":\"Réponse mise à jour avec succès.\",\"+qygei\":\"Réponses\",\"GK7Lnt\":\"Réponses fournies au paiement (ex. choix du menu)\",\"lE8PgT\":\"Toutes les dates que vous avez personnalisées manuellement seront conservées.\",\"vP3Nzg\":[\"S'applique à \",[\"0\"],\" dates non annulées actuellement chargées sur cette page.\"],\"kkVyZZ\":\"S'applique aux personnes ouvrant le lien sans être connectées. Les membres connectés voient toujours tout.\",\"je4muG\":\"S'applique à chaque date non annulée de cet événement — y compris les dates non chargées actuellement.\",\"YIIQtt\":\"Appliquer les modifications\",\"NzWX1Y\":\"Appliquer à\",\"Ps5oDT\":\"Appliquer à tous les billets\",\"261RBr\":\"Approuver le message\",\"naCW6Z\":\"Avril\",\"B495Gs\":\"Archiver\",\"5sNliy\":\"Archiver l'événement\",\"BrwnrJ\":\"Archiver l'organisateur\",\"E5eghW\":\"Archivez cet événement pour le masquer au public. Vous pourrez le restaurer ultérieurement.\",\"eqFkeI\":\"Archivez cet organisateur. Cela archivera également tous les événements appartenant à cet organisateur.\",\"BzcxWv\":\"Organisateurs archivés\",\"9cQBd6\":\"Êtes-vous sûr de vouloir archiver cet événement ? Il ne sera plus visible pour le public.\",\"Trnl3E\":\"Êtes-vous sûr de vouloir archiver cet organisateur ? Cela archivera également tous les événements appartenant à cet organisateur.\",\"wOvn+e\":[\"Êtes-vous sûr de vouloir annuler \",[\"count\"],\" date(s) ? Les participants concernés seront notifiés par e-mail.\"],\"GTxE0U\":\"Êtes-vous sûr de vouloir annuler cette date ? Les participants concernés seront notifiés par e-mail.\",\"VkSk/i\":\"Êtes-vous sûr de vouloir annuler ce message programmé ?\",\"0aVEBY\":\"Êtes-vous sûr de vouloir supprimer tous les travaux échoués ?\",\"LchiNd\":\"Êtes-vous sûr de vouloir supprimer cet affilié ? Cette action ne peut pas être annulée.\",\"vPeW/6\":\"Êtes-vous sûr de vouloir supprimer cette configuration ? Cela peut affecter les comptes qui l'utilisent.\",\"h42Hc/\":\"Êtes-vous sûr de vouloir supprimer cette date ? Cette action est irréversible.\",\"JmVITJ\":\"Êtes-vous sûr de vouloir supprimer ce modèle ? Cette action ne peut pas être annulée et les e-mails reviendront au modèle par défaut.\",\"aLS+A6\":\"Êtes-vous sûr de vouloir supprimer ce modèle ? Cette action ne peut pas être annulée et les e-mails reviendront au modèle de l'organisateur ou par défaut.\",\"5H3Z78\":\"Êtes-vous sûr de vouloir supprimer ce webhook ?\",\"147G4h\":\"Êtes-vous sûr de vouloir partir ?\",\"VDWChT\":\"Êtes-vous sûr de vouloir mettre cet organisateur en brouillon ? Cela rendra la page de l'organisateur invisible au public.\",\"pWtQJM\":\"Êtes-vous sûr de vouloir rendre cet organisateur public ? Cela rendra la page de l'organisateur visible au public.\",\"EOqL/A\":\"Êtes-vous sûr de vouloir offrir une place à cette personne ? Elle recevra une notification par e-mail.\",\"yAXqWW\":\"Êtes-vous sûr de vouloir supprimer définitivement cette date ? Cette action est irréversible.\",\"WFHOlF\":\"Êtes-vous sûr de vouloir publier cet événement ? Une fois publié, il sera visible au public.\",\"4TNVdy\":\"Êtes-vous sûr de vouloir publier ce profil d'organisateur ? Une fois publié, il sera visible au public.\",\"8x0pUg\":\"Êtes-vous sûr de vouloir supprimer cette entrée de la liste d'attente ?\",\"cDtoWq\":[\"Êtes-vous sûr de vouloir renvoyer la confirmation de commande à \",[\"0\"],\" ?\"],\"xeIaKw\":[\"Êtes-vous sûr de vouloir renvoyer le billet à \",[\"0\"],\" ?\"],\"BjbocR\":\"Êtes-vous sûr de vouloir restaurer cet événement ?\",\"7MjfcR\":\"Êtes-vous sûr de vouloir restaurer cet organisateur ?\",\"ExDt3P\":\"Êtes-vous sûr de vouloir dépublier cet événement ? Il ne sera plus visible au public.\",\"5Qmxo/\":\"Êtes-vous sûr de vouloir dépublier ce profil d'organisateur ? Il ne sera plus visible au public.\",\"Uqefyd\":\"Êtes-vous assujetti à la TVA dans l'UE ?\",\"+QARA4\":\"Art\",\"tLf3yJ\":\"Comme votre entreprise est basée en Irlande, la TVA irlandaise à 23 % s'applique automatiquement à tous les frais de plateforme.\",\"tMeVa/\":\"Demander le nom et l'email pour chaque billet acheté\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Attribuer un plan\",\"xdiER7\":\"Niveau attribué\",\"F2rX0R\":\"Au moins un type d'événement doit être sélectionné\",\"BCmibk\":\"Tentatives\",\"6PecK3\":\"Présence et taux d'enregistrement pour tous les événements\",\"K2tp3v\":\"participant\",\"AJ4rvK\":\"Participant annulé\",\"qvylEK\":\"Participant créé\",\"Aspq3b\":\"Collecte des informations des participants\",\"fpb0rX\":\"Informations du participant copiées de la commande\",\"0R3Y+9\":\"Email du participant\",\"94aQMU\":\"Informations du participant\",\"KkrBiR\":\"Collecte d'informations sur les participants\",\"av+gjP\":\"Nom du participant\",\"sjPjOg\":\"Notes du participant\",\"cosfD8\":\"Statut du Participant\",\"D2qlBU\":\"Participant mis à jour\",\"22BOve\":\"Participant mis à jour avec succès\",\"x8Vnvf\":\"Le billet du participant n'est pas inclus dans cette liste\",\"/Ywywr\":\"participants\",\"zLRobu\":\"participants enregistrés\",\"k3Tngl\":\"Participants exportés\",\"UoIRW8\":\"Participants inscrits\",\"5UbY+B\":\"Participants avec un ticket spécifique\",\"4HVzhV\":\"Participants:\",\"HVkhy2\":\"Analyse d'attribution\",\"dMMjeD\":\"Répartition de l'attribution\",\"1oPDuj\":\"Valeur d'attribution\",\"DBHTm/\":\"Août\",\"JgREph\":\"L'offre automatique est activée\",\"V7Tejz\":\"Traitement automatique de la liste d'attente\",\"PZ7FTW\":\"Détecté automatiquement selon la couleur de fond, mais peut être remplacé\",\"zlnTuI\":\"Proposez automatiquement des billets à la personne suivante lorsque des places se libèrent. Si désactivé, vous pouvez traiter la liste d'attente manuellement depuis la page Liste d'attente.\",\"csDS2L\":\"Disponible\",\"clF06r\":\"Disponible pour remboursement\",\"NB5+UG\":\"Jetons disponibles\",\"L+wGOG\":\"En attente\",\"qcw2OD\":\"Paiement dû\",\"kNmmvE\":\"Awesome Events SARL\",\"iH8pgl\":\"Retour\",\"TeSaQO\":\"Retour aux comptes\",\"X7Q/iM\":\"Retour au calendrier\",\"kYqM1A\":\"Retour à l'événement\",\"s5QRF3\":\"Retour aux messages\",\"td/bh+\":\"Retour aux rapports\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Prix de base\",\"hviJef\":\"Basé sur la période de vente globale ci-dessus, et non par date\",\"jIPNJG\":\"Informations de base\",\"UabgBd\":\"Le corps est requis\",\"HWXuQK\":\"Ajoutez cette page à vos favoris pour gérer votre commande à tout moment.\",\"CUKVDt\":\"Personnalisez vos billets avec un logo, des couleurs et un message de pied de page personnalisés.\",\"4BZj5p\":\"Protection antifraude intégrée\",\"cr7kGH\":\"Modification en masse\",\"1Fbd6n\":\"Modifier les dates en masse\",\"Eq6Tu9\":\"La mise à jour en masse a échoué.\",\"9N+p+g\":\"Affaires\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nom de l'entreprise\",\"bv6RXK\":\"Libellé du bouton\",\"ChDLlO\":\"Texte du bouton\",\"BUe8Wj\":\"L'acheteur paie\",\"qF1qbA\":\"Les acheteurs voient un prix net. Les frais de plateforme sont déduits de votre paiement.\",\"dg05rc\":\"En ajoutant des pixels de suivi, vous reconnaissez que vous et cette plateforme êtes co-responsables des données collectées. Il vous incombe de vous assurer que vous disposez d'une base légale pour ce traitement au regard des lois applicables en matière de confidentialité (RGPD, CCPA, etc.).\",\"DFqasq\":[\"En continuant, vous acceptez les <0>Conditions d'utilisation de \",[\"0\"],\"\"],\"wVSa+U\":\"Par jour du mois\",\"0MnNgi\":\"Par jour de la semaine\",\"CetOZE\":\"Par type de billet\",\"lFdbRS\":\"Contourner les frais d'application\",\"AjVXBS\":\"Calendrier\",\"alkXJ5\":\"Vue calendrier\",\"2VLZwd\":\"Bouton d'appel à l'action\",\"rT2cV+\":\"Caméra\",\"7hYa9y\":\"Accès à la caméra refusé. <0>Demander à nouveau ou accordez l'accès à la caméra dans les paramètres du navigateur.\",\"D02dD9\":\"Campagne\",\"RRPA79\":\"Enregistrement impossible\",\"OcVwAd\":[\"Annuler \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Annuler tous les produits et les remettre dans le pool\",\"Py78q9\":\"Annuler la date\",\"tOXAdc\":\"L'annulation annulera tous les participants associés à cette commande et remettra les billets dans le pool disponible.\",\"vev1Jl\":\"Annulation\",\"Ha17hq\":[[\"0\"],\" date(s) annulée(s)\"],\"01sEfm\":\"Impossible de supprimer la configuration système par défaut\",\"VsM1HH\":\"Attributions de capacité\",\"9bIMVF\":\"Gestion de la capacité\",\"H7K8og\":\"La capacité doit être supérieure ou égale à 0\",\"nzao08\":\"mises à jour de capacité\",\"4cp9NP\":\"Capacité utilisée\",\"K7tIrx\":\"Catégorie\",\"o+XJ9D\":\"Modifier\",\"kJkjoB\":\"Modifier la durée\",\"J0KExZ\":\"Modifier la limite de participants\",\"CIHJJf\":\"Modifier les paramètres de liste d'attente\",\"B5icLR\":[\"Durée modifiée pour \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Encaissements\",\"2tbLdK\":\"Charité\",\"BPWGKn\":\"Enregistrer\",\"6uFFoY\":\"Annuler\",\"FjAlwK\":[\"Découvrez cet événement : \",[\"0\"]],\"v4fiSg\":\"Vérifiez votre e-mail\",\"51AsAN\":\"Vérifiez votre boîte de réception ! Si des billets sont associés à cet e-mail, vous recevrez un lien pour les consulter.\",\"Y3FYXy\":\"Enregistrement\",\"udRwQs\":\"Enregistrement créé\",\"F4SRy3\":\"Enregistrement supprimé\",\"as6XfO\":[\"Enregistrement de \",[\"0\"],\" annulé\"],\"9s/wrQ\":\"Historique d'enregistrement\",\"Wwztk4\":\"Liste d'enregistrement\",\"9gPPUY\":\"Liste d'Enregistrement Créée !\",\"dwjiJt\":\"Infos de la liste\",\"7od0PV\":\"listes d'enregistrement\",\"f2vU9t\":\"Listes d'enregistrement\",\"XprdTn\":\"Navigation d'enregistrement\",\"5tV1in\":\"Progression\",\"SHJwyq\":\"Taux d'enregistrement\",\"qCqdg6\":\"Statut d'enregistrement\",\"cKj6OE\":\"Résumé des enregistrements\",\"7B5M35\":\"Enregistrements\",\"VrmydS\":\"Enregistré\",\"DM4gBB\":\"Chinois (traditionnel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choisir une autre action\",\"fkb+y3\":\"Choisissez un lieu enregistré à appliquer.\",\"Zok1Gx\":\"Choisir un organisateur\",\"pkk46Q\":\"Choisissez un organisateur\",\"Crr3pG\":\"Choisir le calendrier\",\"LAW8Vb\":\"Choisissez le paramètre par défaut pour les nouveaux événements. Ceci peut être modifié pour chaque événement.\",\"pjp2n5\":\"Choisissez qui paie les frais de plateforme. Cela n'affecte pas les frais supplémentaires que vous avez configurés dans les paramètres de votre compte.\",\"xCJdfg\":\"Effacer\",\"QyOWu9\":\"Effacer le lieu — revenir au lieu par défaut de l’événement\",\"V8yTm6\":\"Effacer la recherche\",\"kmnKnX\":\"Effacer supprime toute substitution spécifique à une séance. Les séances concernées utiliseront le lieu par défaut de l’événement.\",\"/o+aQX\":\"Cliquez pour annuler\",\"gD7WGV\":\"Cliquez pour rouvrir aux nouvelles ventes\",\"CySr+W\":\"Cliquez pour voir les notes\",\"RG3szS\":\"fermer\",\"RWw9Lg\":\"Fermer la fenêtre\",\"XwdMMg\":\"Le code ne peut contenir que des lettres, des chiffres, des tirets et des traits de soulignement\",\"+yMJb7\":\"Le code est obligatoire\",\"m9SD3V\":\"Le code doit contenir au moins 3 caractères\",\"V1krgP\":\"Le code ne doit pas dépasser 20 caractères\",\"psqIm5\":\"Collaborez avec votre équipe pour créer ensemble des événements incroyables.\",\"4bUH9i\":\"Collectez les détails du participant pour chaque billet acheté.\",\"TkfG8v\":\"Collecter les informations par commande\",\"96ryID\":\"Collecter les informations par billet\",\"FpsvqB\":\"Mode de couleur\",\"jEu4bB\":\"Colonnes\",\"CWk59I\":\"Comédie\",\"rPA+Gc\":\"Préférences de communication\",\"zFT5rr\":\"terminé\",\"bUQMpb\":\"Terminer la configuration Stripe\",\"744BMm\":\"Finalisez votre commande pour sécuriser vos billets. Cette offre est limitée dans le temps, ne tardez pas trop.\",\"5YrKW7\":\"Finalisez votre paiement pour sécuriser vos billets.\",\"xGU92i\":\"Complétez votre profil pour rejoindre l'équipe.\",\"QOhkyl\":\"Rédiger\",\"ih35UP\":\"Centre de conférence\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration attribuée\",\"X1zdE7\":\"Configuration créée avec succès\",\"mLBUMQ\":\"Configuration supprimée avec succès\",\"UIENhw\":\"Les noms de configuration sont visibles par les utilisateurs finaux. Les frais fixes seront convertis dans la devise de la commande au taux de change actuel.\",\"eeZdaB\":\"Configuration mise à jour avec succès\",\"3cKoxx\":\"Configurations\",\"8v2LRU\":\"Configurez les détails de l'événement, le lieu, les options de paiement et les notifications par email.\",\"raw09+\":\"Configurez comment les informations des participants sont collectées lors du paiement\",\"FI60XC\":\"Configurer les taxes et frais\",\"av6ukY\":\"Configurez les produits disponibles pour cette séance et ajustez éventuellement la tarification.\",\"NGXKG/\":\"Confirmer l'adresse e-mail\",\"JRQitQ\":\"Confirmer le nouveau mot de passe\",\"Auz0Mz\":\"Confirmez votre e-mail pour accéder à toutes les fonctionnalités.\",\"7+grte\":\"E-mail de confirmation envoyé ! Veuillez vérifier votre boîte de réception.\",\"n/7+7Q\":\"Confirmation envoyée à\",\"x3wVFc\":\"Félicitations ! Votre événement est maintenant visible par le public.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Connectez Stripe pour activer l'édition des modèles d'e-mail\",\"LmvZ+E\":\"Connectez Stripe pour activer la messagerie\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contacter \",[\"0\"]],\"41BQ3k\":\"E-mail de contact\",\"KcXRN+\":\"Email de contact pour le support\",\"m8WD6t\":\"Continuer la configuration\",\"0GwUT4\":\"Passer à la caisse\",\"sBV87H\":\"Continuer vers la création d'événement\",\"nKtyYu\":\"Continuer à l'étape suivante\",\"F3/nus\":\"Continuer vers le paiement\",\"p2FRHj\":\"Contrôlez comment les frais de plateforme sont gérés pour cet événement\",\"NqfabH\":\"Contrôlez qui entre pour cette date\",\"fmYxZx\":\"Qui entre et quand\",\"1JnTgU\":\"Copié d'en haut\",\"FxVG/l\":\"Copié dans le presse-papiers\",\"PiH3UR\":\"Copié !\",\"4i7smN\":\"Copier l'ID du compte\",\"uUPbPg\":\"Copier le lien d'affiliation\",\"iVm46+\":\"Copier le code\",\"cF2ICc\":\"Copier le lien client\",\"+2ZJ7N\":\"Copier les détails vers le premier participant\",\"ZN1WLO\":\"Copier l'Email\",\"y1eoq1\":\"Copier le lien\",\"tUGbi8\":\"Copier mes informations vers:\",\"y22tv0\":\"Copiez ce lien pour le partager n'importe où\",\"/4gGIX\":\"Copier dans le presse-papiers\",\"e0f4yB\":\"Impossible de supprimer le lieu\",\"vkiDx2\":\"Impossible de préparer la mise à jour groupée.\",\"KOavaU\":\"Impossible de récupérer les détails de l'adresse\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Impossible d'enregistrer la date\",\"eeLExK\":\"Impossible d'enregistrer le lieu\",\"P0rbCt\":\"Image de couverture\",\"60u+dQ\":\"L'image de couverture sera affichée en haut de votre page d'événement\",\"2NLjA6\":\"L'image de couverture sera affichée en haut de votre page d'organisateur\",\"GkrqoY\":\"Couvre tous les billets\",\"zg4oSu\":[\"Créer le modèle \",[\"0\"]],\"RKKhnW\":\"Créez un widget personnalisé pour vendre des billets sur votre site.\",\"6sk7PP\":\"Créer un nombre fixe\",\"PhioFp\":\"Créez une nouvelle liste d'enregistrement pour une séance active, ou contactez l'organisateur si vous pensez qu'il s'agit d'une erreur.\",\"yIRev4\":\"Créer un mot de passe\",\"j7xZ7J\":\"Créez des organisateurs supplémentaires pour gérer des marques, départements ou séries d'événements distincts sous un même compte. Chaque organisateur dispose de ses propres événements, paramètres et page publique.\",\"xfKgwv\":\"Créer un affilié\",\"tudG8q\":\"Créez et configurez des billets et des marchandises à vendre.\",\"YAl9Hg\":\"Créer une configuration\",\"BTne9e\":\"Créer des modèles d'email personnalisés pour cet événement qui remplacent les paramètres par défaut de l'organisateur\",\"YIDzi/\":\"Créer un modèle personnalisé\",\"tsGqx5\":\"Créer une date\",\"Nc3l/D\":\"Créez des réductions, des codes d'accès pour les billets cachés et des offres spéciales.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Créer pour cette date\",\"eWEV9G\":\"Créer un nouveau mot de passe\",\"wl2iai\":\"Créer le planning\",\"8AiKIu\":\"Créer un billet ou un produit\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Créez des liens traçables pour récompenser les partenaires qui font la promotion de votre événement.\",\"dkAPxi\":\"Créer un webhook\",\"5slqwZ\":\"Créez votre événement\",\"JQNMrj\":\"Créez votre premier événement\",\"ZCSSd+\":\"Créez votre propre événement\",\"67NsZP\":\"Création de l'événement...\",\"H34qcM\":\"Création de l'organisateur...\",\"1YMS+X\":\"Création de votre événement en cours, veuillez patienter\",\"yiy8Jt\":\"Création de votre profil d'organisateur en cours, veuillez patienter\",\"lfLHNz\":\"Le libellé CTA est requis\",\"0xLR6W\":\"Actuellement attribué\",\"iTvh6I\":\"Actuellement disponible à l'achat\",\"A42Dqn\":\"Personnalisation visuelle\",\"Guo0lU\":\"Date et heure personnalisées\",\"mimF6c\":\"Message personnalisé après la commande\",\"WDMdn8\":\"Questions personnalisées\",\"O6mra8\":\"Questions personnalisées\",\"axv/Mi\":\"Modèle personnalisé\",\"2YeVGY\":\"Lien client copié dans le presse-papiers\",\"QMHSMS\":\"Le client recevra un e-mail confirmant le remboursement\",\"L/Qc+w\":\"Adresse email du client\",\"wpfWhJ\":\"Prénom du client\",\"GIoqtA\":\"Nom de famille du client\",\"NihQNk\":\"Clients\",\"7gsjkI\":\"Personnalisez les e-mails envoyés à vos clients en utilisant des modèles Liquid. Ces modèles seront utilisés comme valeurs par défaut pour tous les événements de votre organisation.\",\"xJaTUK\":\"Personnalisez la mise en page, les couleurs et l'image de marque de la page d'accueil de votre événement.\",\"MXZfGN\":\"Personnalisez les questions posées lors du paiement pour recueillir des informations importantes de vos participants.\",\"iX6SLo\":\"Personnalisez le texte affiché sur le bouton continuer\",\"pxNIxa\":\"Personnalisez votre modèle d'e-mail en utilisant des modèles Liquid\",\"3trPKm\":\"Personnalisez l'apparence de votre page d'organisateur\",\"U0sC6H\":\"Quotidien\",\"/gWrVZ\":\"Revenus quotidiens, taxes, frais et remboursements pour tous les événements\",\"zgCHnE\":\"Rapport des ventes quotidiennes\",\"nHm0AI\":\"Détail des ventes quotidiennes, taxes et frais\",\"1aPnDT\":\"Danse\",\"pvnfJD\":\"Sombre\",\"MaB9wW\":\"Annulation de date\",\"e6cAxJ\":\"Date annulée\",\"81jBnC\":\"Date annulée avec succès\",\"a/C/6R\":\"Date créée avec succès\",\"IW7Q+u\":\"Date supprimée\",\"rngCAz\":\"Date supprimée avec succès\",\"lnYE59\":\"Date de l'événement\",\"gnBreG\":\"Date à laquelle la commande a été passée\",\"vHbfoQ\":\"Date réactivée\",\"hvah+S\":\"Date rouverte aux nouvelles ventes\",\"Ez0YsD\":\"Date mise à jour avec succès\",\"VTsZuy\":\"Les dates et heures sont gérées sur la\",\"/ITcnz\":\"jour\",\"H7OUPr\":\"Jour\",\"JtHrX9\":\"Jour du mois\",\"J/Upwb\":\"jours\",\"vDVA2I\":\"Jours du mois\",\"rDLvlL\":\"Jours de la semaine\",\"r6zgGo\":\"Décembre\",\"jbq7j2\":\"Refuser\",\"ovBPCi\":\"Par défaut\",\"JtI4vj\":\"Collecte d'informations par défaut sur les participants\",\"ULjv90\":\"Capacité par défaut par date\",\"3R/Tu2\":\"Gestion des frais par défaut\",\"1bZAZA\":\"Le modèle par défaut sera utilisé\",\"HNlEFZ\":\"supprimer\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Supprimer les \",[\"count\"],\" date(s) sélectionnée(s) ? Les dates avec commandes seront ignorées. Cette action est irréversible.\"],\"vu7gDm\":\"Supprimer l'affilié\",\"KZN4Lc\":\"Tout supprimer\",\"6EkaOO\":\"Supprimer la date\",\"io0G93\":\"Supprimer l'événement\",\"+jw/c1\":\"Supprimer l'image\",\"hdyeZ0\":\"Supprimer le travail\",\"xxjZeP\":\"Supprimer le lieu\",\"sY3tIw\":\"Supprimer l'organisateur\",\"UBv8UK\":\"Supprimer définitivement\",\"dPyJ15\":\"Supprimer le modèle\",\"mxsm1o\":\"Supprimer cette question ? Cette action est irréversible.\",\"snMaH4\":\"Supprimer le webhook\",\"LIZZLY\":[[\"0\"],\" date(s) supprimée(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Tout désélectionner\",\"NvuEhl\":\"Éléments de Design\",\"H8kMHT\":\"Vous n'avez pas reçu le code ?\",\"G8KNgd\":\"Lieu différent\",\"E/QGRL\":\"Désactivé\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Ignorer ce message\",\"BREO0S\":\"Affiche une case permettant aux clients de s'inscrire pour recevoir des communications marketing de cet organisateur d'événements.\",\"pfa8F0\":\"Nom affiché\",\"Kdpf90\":\"N'oubliez pas !\",\"352VU2\":\"Vous n'avez pas de compte ? <0>Inscrivez-vous\",\"AXXqG+\":\"Don\",\"DPfwMq\":\"Terminé\",\"JoPiZ2\":\"Consignes pour le personnel\",\"2+O9st\":\"Téléchargez les rapports de ventes, de participants et financiers pour toutes les commandes terminées.\",\"eneWvv\":\"Brouillon\",\"Ts8hhq\":\"En raison du risque élevé de spam, vous devez connecter un compte Stripe avant de pouvoir modifier les modèles d'e-mail. Cela permet de garantir que tous les organisateurs d'événements sont vérifiés et responsables.\",\"TnzbL+\":\"En raison du risque élevé de spam, vous devez connecter un compte Stripe avant de pouvoir envoyer des messages aux participants.\\nCela permet de s'assurer que tous les organisateurs d'événements sont vérifiés et responsables.\",\"euc6Ns\":\"Dupliquer\",\"YueC+F\":\"Dupliquer la date\",\"KRmTkx\":\"Dupliquer le produit\",\"Jd3ymG\":\"La durée doit être d'au moins 1 minute.\",\"KIjvtr\":\"Néerlandais\",\"22xieU\":\"ex. 180 (3 heures)\",\"/zajIE\":\"ex. Séance du matin\",\"SPKbfM\":\"ex. : Obtenir des billets, S'inscrire maintenant\",\"fc7wGW\":\"par ex., Mise à jour importante concernant vos billets\",\"54MPqC\":\"par ex., Standard, Premium, Entreprise\",\"3RQ81z\":\"Chaque personne recevra un e-mail avec une place réservée pour finaliser son achat.\",\"5oD9f/\":\"Plus tôt\",\"LTzmgK\":[\"Modifier le modèle \",[\"0\"]],\"v4+lcZ\":\"Modifier l'affilié\",\"2iZEz7\":\"Modifier la réponse\",\"t2bbp8\":\"Modifier le participant\",\"etaWtB\":\"Modifier les détails du participant\",\"+guao5\":\"Modifier la configuration\",\"1Mp/A4\":\"Modifier la date\",\"m0ZqOT\":\"Modifier le lieu\",\"8oivFT\":\"Modifier le lieu\",\"vRWOrM\":\"Modifier les détails de la commande\",\"fW5sSv\":\"Modifier le webhook\",\"nP7CdQ\":\"Modifier le webhook\",\"MRZxAn\":\"Modifié\",\"uBAxNB\":\"Éditeur\",\"aqxYLv\":\"Éducation\",\"iiWXDL\":\"Échecs d'éligibilité\",\"zPiC+q\":\"Listes d'Enregistrement Éligibles\",\"SiVstt\":\"E-mails et messages programmés\",\"V2sk3H\":\"E-mail et Modèles\",\"hbwCKE\":\"Adresse e-mail copiée dans le presse-papiers\",\"dSyJj6\":\"Les adresses e-mail ne correspondent pas\",\"elW7Tn\":\"Corps de l'e-mail\",\"ZsZeV2\":\"L'e-mail est obligatoire\",\"Be4gD+\":\"Aperçu de l'e-mail\",\"6IwNUc\":\"Modèles d'e-mail\",\"H/UMUG\":\"Vérification de l'e-mail requise\",\"L86zy2\":\"E-mail vérifié avec succès !\",\"FSN4TS\":\"Widget intégré\",\"z9NkYY\":\"Widget intégrable\",\"Qj0GKe\":\"Activer le libre-service pour les participants\",\"hEtQsg\":\"Activer le libre-service pour les participants par défaut\",\"Upeg/u\":\"Activer ce modèle pour l'envoi d'e-mails\",\"7dSOhU\":\"Activer la liste d'attente\",\"RxzN1M\":\"Activé\",\"xDr/ct\":\"Fin\",\"sGjBEq\":\"Date et heure de fin (optionnel)\",\"PKXt9R\":\"La date de fin doit être postérieure à la date de début\",\"UmzbPa\":\"Date de fin de la séance\",\"ZayGC7\":\"Terminer à une date\",\"48Y16Q\":\"Heure de fin (facultatif)\",\"jpNdOC\":\"Heure de fin de la séance\",\"TbaYrr\":[\"Terminé \",[\"0\"]],\"CFgwiw\":[\"Se termine \",[\"0\"]],\"SqOIQU\":\"Saisissez une valeur de capacité ou choisissez illimité.\",\"h37gRz\":\"Saisissez un libellé ou choisissez de le supprimer.\",\"7YZofi\":\"Entrez un sujet et un corps pour voir l'aperçu\",\"khyScF\":\"Saisissez la durée du décalage.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Saisir l'e-mail de l'affilié (facultatif)\",\"ARkzso\":\"Saisir le nom de l'affilié\",\"ej4L8b\":\"Saisir la capacité\",\"6KnyG0\":\"Saisissez l'e-mail\",\"INDKM9\":\"Entrez le sujet de l'e-mail...\",\"xUgUTh\":\"Saisissez le prénom\",\"9/1YKL\":\"Saisissez le nom\",\"VpwcSk\":\"Entrez le nouveau mot de passe\",\"kWg31j\":\"Saisir un code d'affiliation unique\",\"C3nD/1\":\"Entrez votre e-mail\",\"VmXiz4\":\"Entrez votre adresse e-mail et nous vous enverrons des instructions pour réinitialiser votre mot de passe.\",\"n9V+ps\":\"Entrez votre nom\",\"IdULhL\":\"Entrez votre numéro de TVA avec le code pays, sans espaces (par ex., IE1234567A, DE123456789)\",\"o21Y+P\":\"entrées\",\"X88/6w\":\"Les inscriptions apparaîtront ici lorsque les clients rejoindront la liste d'attente pour les produits épuisés.\",\"LslKhj\":\"Erreur lors du chargement des journaux\",\"VCNHvW\":\"Événement archivé\",\"ZD0XSb\":\"Événement archivé avec succès\",\"WgD6rb\":\"Catégorie d'événement\",\"b46pt5\":\"Image de couverture de l'événement\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Événement créé\",\"1Hzev4\":\"Modèle personnalisé d'événement\",\"7u9/DO\":\"Événement supprimé avec succès\",\"imgKgl\":\"Description de l'événement\",\"kJDmsI\":\"Détails de l'événement\",\"m/N7Zq\":\"Adresse Complète de l'Événement\",\"Nl1ZtM\":\"Lieu de l'événement\",\"PYs3rP\":\"Nom de l'événement\",\"HhwcTQ\":\"Nom de l'événement\",\"WZZzB6\":\"Le nom de l'événement est obligatoire\",\"Wd5CDM\":\"Le nom de l'événement doit contenir moins de 150 caractères\",\"4JzCvP\":\"Événement non disponible\",\"Gh9Oqb\":\"Nom de l'organisateur de l'événement\",\"mImacG\":\"Page de l'événement\",\"Hk9Ki/\":\"Événement restauré avec succès\",\"JyD0LH\":\"Paramètres de l'événement\",\"cOePZk\":\"Heure de l'événement\",\"e8WNln\":\"Fuseau horaire de l'événement\",\"GeqWgj\":\"Fuseau Horaire de l'Événement\",\"XVLu2v\":\"Titre de l'événement\",\"OfmsI9\":\"Événement trop récent\",\"4SILkp\":\"Totaux de l'événement\",\"YDVUVl\":\"Types d'événements\",\"+HeiVx\":\"Événement mis à jour\",\"4K2OjV\":\"Lieu de l'Événement\",\"19j6uh\":\"Performance des événements\",\"PC3/fk\":\"Événements commençant dans les prochaines 24 heures\",\"nwiZdc\":[\"Tous les \",[\"0\"]],\"2LJU4o\":[\"Tous les \",[\"0\"],\" jours\"],\"yLiYx+\":[\"Tous les \",[\"0\"],\" mois\"],\"nn9ice\":[\"Toutes les \",[\"0\"],\" semaines\"],\"Cdr8f9\":[\"Toutes les \",[\"0\"],\" semaines le \",[\"1\"]],\"GVEHRk\":[\"Tous les \",[\"0\"],\" ans\"],\"fTFfOK\":\"Chaque modèle d'e-mail doit inclure un bouton d'appel à l'action qui renvoie vers la page appropriée\",\"BVinvJ\":\"Exemples : \\\"Comment avez-vous entendu parler de nous ?\\\", \\\"Nom de l'entreprise pour la facture\\\"\",\"2hGPQG\":\"Exemples : \\\"Taille de t-shirt\\\", \\\"Préférence de repas\\\", \\\"Titre du poste\\\"\",\"qNuTh3\":\"Exception\",\"M1RnFv\":\"Expiré\",\"kF8HQ7\":\"Exporter les réponses\",\"2KAI4N\":\"Exporter CSV\",\"JKfSAv\":\"Échec de l'exportation. Veuillez réessayer.\",\"SVOEsu\":\"Exportation commencée. Préparation du fichier...\",\"wuyaZh\":\"Exportation réussie\",\"9bpUSo\":\"Exportation des affiliés\",\"jtrqH9\":\"Exportation des participants\",\"R4Oqr8\":\"Exportation terminée. Téléchargement du fichier...\",\"UlAK8E\":\"Exportation des commandes\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Échoué\",\"8uOlgz\":\"Échoué le\",\"tKcbYd\":\"Travaux échoués\",\"SsI9v/\":\"Échec de l'abandon de la commande. Veuillez réessayer.\",\"LdPKPR\":\"Échec de l'attribution de la configuration\",\"PO0cfn\":\"Échec de l'annulation de la date\",\"YUX+f+\":\"Échec de l'annulation des dates\",\"SIHgVQ\":\"Échec de l'annulation du message\",\"cEFg3R\":\"Échec de la création de l'affilié\",\"dVgNF1\":\"Échec de la création de la configuration\",\"fAoRRJ\":\"Échec de la création du planning\",\"U66oUa\":\"Échec de la création du modèle\",\"aFk48v\":\"Échec de la suppression de la configuration\",\"n1CYMH\":\"Échec de la suppression de la date\",\"KXv+Qn\":\"Échec de la suppression de la date. Des commandes peuvent y être associées.\",\"JJ0uRo\":\"Échec de la suppression des dates\",\"rgoBnv\":\"Échec de la suppression de l'événement\",\"Zw6LWb\":\"Échec de la suppression du travail\",\"tq0abZ\":\"Échec de la suppression des travaux\",\"2mkc3c\":\"Échec de la suppression de l'organisateur\",\"vKMKnu\":\"Échec de la suppression de la question\",\"xFj7Yj\":\"Échec de la suppression du modèle\",\"jo3Gm6\":\"Échec de l'exportation des affiliés\",\"Jjw03p\":\"Échec de l'exportation des participants\",\"ZPwFnN\":\"Échec de l'exportation des commandes\",\"zGE3CH\":\"Échec de l'exportation du rapport. Veuillez réessayer.\",\"lS9/aZ\":\"Impossible de charger les destinataires\",\"X4o0MX\":\"Échec du chargement du webhook\",\"ETcU7q\":\"Échec de l'offre de place\",\"5670b9\":\"Échec de l'offre de billets\",\"e5KIbI\":\"Échec de la réactivation de la date\",\"7zyx8a\":\"Échec du retrait de la liste d'attente\",\"A/P7PX\":\"Échec de la suppression du remplacement\",\"ogWc1z\":\"Échec de la réouverture de la date\",\"0+iwE5\":\"Échec de la réorganisation des questions\",\"EJPAcd\":\"Échec du renvoi de la confirmation de commande\",\"DjSbj3\":\"Échec du renvoi du billet\",\"YQ3QSS\":\"Échec du renvoi du code de vérification\",\"wDioLj\":\"Échec du réessai du travail\",\"DKYTWG\":\"Échec du réessai des travaux\",\"WRREqF\":\"Échec de l'enregistrement du remplacement\",\"sj/eZA\":\"Échec de l'enregistrement du remplacement de prix\",\"780n8A\":\"Échec de l'enregistrement des paramètres du produit\",\"zTkTF3\":\"Échec de la sauvegarde du modèle\",\"l6acRV\":\"Échec de l'enregistrement des paramètres TVA. Veuillez réessayer.\",\"T6B2gk\":\"Échec de l'envoi du message. Veuillez réessayer.\",\"lKh069\":\"Échec du démarrage de l'exportation\",\"t/KVOk\":\"Échec du démarrage de l'usurpation d'identité. Veuillez réessayer.\",\"QXgjH0\":\"Échec de l'arrêt de l'usurpation d'identité. Veuillez réessayer.\",\"i0QKrm\":\"Échec de la mise à jour de l'affilié\",\"NNc33d\":\"Échec de la mise à jour de la réponse.\",\"E9jY+o\":\"Échec de la mise à jour du participant\",\"uQynyf\":\"Échec de la mise à jour de la configuration\",\"i2PFQJ\":\"Échec de la mise à jour du statut de l'événement\",\"EhlbcI\":\"Échec de la mise à jour du niveau de messagerie\",\"rpGMzC\":\"Échec de la mise à jour de la commande\",\"T2aCOV\":\"Échec de la mise à jour du statut de l'organisateur\",\"Eeo/Gy\":\"Échec de la mise à jour du paramètre\",\"kqA9lY\":\"Échec de la mise à jour des paramètres de TVA\",\"7/9RFs\":\"Échec du téléversement de l’image.\",\"nkNfWu\":\"Échec du téléchargement de l'image. Veuillez réessayer.\",\"rxy0tG\":\"Échec de la vérification de l'e-mail\",\"QRUpCk\":\"Famille\",\"5LO38w\":\"Virements rapides sur votre banque\",\"4lgLew\":\"Février\",\"9bHCo2\":\"Devise des frais\",\"/sV91a\":\"Gestion des frais\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Frais contournés\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Le fichier est trop volumineux. La taille maximale est de 5 Mo.\",\"VejKUM\":\"Remplissez d'abord vos informations ci-dessus\",\"/n6q8B\":\"Cinéma\",\"L1qbUx\":\"Filtrer les participants\",\"8OvVZZ\":\"Filtrer les Participants\",\"N/H3++\":\"Filtrer par date\",\"mvrlBO\":\"Filtrer par événement\",\"g+xRXP\":\"Terminer la configuration de Stripe\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"Premier\",\"1vBhpG\":\"Premier participant\",\"4pwejF\":\"Le prénom est obligatoire\",\"3lkYdQ\":\"Frais fixes\",\"6bBh3/\":\"Frais fixes\",\"zWqUyJ\":\"Frais fixes facturés par transaction\",\"LWL3Bs\":\"Les frais fixes doivent être égaux ou supérieurs à 0\",\"0RI8m4\":\"Flash éteint\",\"q0923e\":\"Flash allumé\",\"lWxAUo\":\"Nourriture et boissons\",\"nFm+5u\":\"Texte de Pied de Page\",\"a8nooQ\":\"Quatrième\",\"mob/am\":\"Ve\",\"wtuVU4\":\"Fréquence\",\"xVhQZV\":\"Ven\",\"39y5bn\":\"Vendredi\",\"f5UbZ0\":\"Propriété complète des données\",\"MY2SVM\":\"Remboursement complet\",\"UsIfa8\":\"Adresse complète résolue\",\"PGQLdy\":\"à venir\",\"8N/j1s\":\"Dates à venir uniquement\",\"yRx/6K\":\"Les dates à venir seront copiées avec la capacité remise à zéro\",\"T02gNN\":\"Admission Générale\",\"3ep0Gx\":\"Informations générales sur votre organisateur\",\"ziAjHi\":\"Générer\",\"exy8uo\":\"Générer un code\",\"4CETZY\":\"Itinéraire\",\"pjkEcB\":\"Recevez vos paiements\",\"lGYzP6\":\"Soyez payé avec Stripe\",\"ZDIydz\":\"Commencer\",\"u6FPxT\":\"Obtenir des billets\",\"8KDgYV\":\"Préparez votre événement\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Retour\",\"oNL5vN\":\"Aller à la page de l'événement\",\"gHSuV/\":\"Aller à la page d'accueil\",\"8+Cj55\":\"Aller au planning\",\"6nDzTl\":\"Bonne lisibilité\",\"76gPWk\":\"Compris\",\"aGWZUr\":\"Revenu brut\",\"n8IUs7\":\"Revenu brut\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestion des invités\",\"NUsTc4\":\"En cours\",\"kTSQej\":[\"Bonjour \",[\"0\"],\", gérez votre plateforme depuis ici.\"],\"dORAcs\":\"Voici tous les billets associés à votre adresse e-mail.\",\"g+2103\":\"Voici votre lien d'affiliation\",\"bVsnqU\":\"Bonjour,\",\"/iE8xx\":\"Frais Hi.Events\",\"zppscQ\":\"Frais de plateforme Hi.Events et ventilation TVA par transaction\",\"D+zLDD\":\"Masqué\",\"DRErHC\":\"Masqué aux participants - visible uniquement par les organisateurs\",\"NNnsM0\":\"Masquer les options avancées\",\"P+5Pbo\":\"Masquer les réponses\",\"VMlRqi\":\"Masquer les détails\",\"FmogyU\":\"Masquer les options\",\"gtEbeW\":\"Mettre en avant\",\"NF8sdv\":\"Message de mise en avant\",\"MXSqmS\":\"Mettre ce produit en avant\",\"7ER2sc\":\"En vedette\",\"sq7vjE\":\"Les produits mis en avant auront une couleur de fond différente pour se démarquer sur la page de l'événement.\",\"1+WSY1\":\"Loisirs\",\"yY8wAv\":\"Heures\",\"sy9anN\":\"Combien de temps un client a pour finaliser son achat après avoir reçu une offre. Laisser vide pour aucun délai.\",\"n2ilNh\":\"Quelle est la durée du planning ?\",\"DMr2XN\":\"À quelle fréquence ?\",\"AVpmAa\":\"Comment payer hors ligne\",\"cceMns\":\"Comment la TVA est appliquée aux frais de plateforme que nous vous facturons.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Hongrois\",\"8Wgd41\":\"Je reconnais mes responsabilités en tant que responsable du traitement des données\",\"O8m7VA\":\"J'accepte de recevoir des notifications par e-mail liées à cet événement\",\"YLgdk5\":\"Je confirme qu'il s'agit d'un message transactionnel lié à cet événement\",\"4/kP5a\":\"Si un nouvel onglet ne s'est pas ouvert automatiquement, veuillez cliquer sur le bouton ci-dessous pour poursuivre le paiement.\",\"W/eN+G\":\"Si vide, l'adresse sera utilisée pour générer un lien Google Maps\",\"iIEaNB\":\"Si vous avez un compte chez nous, vous recevrez un e-mail avec des instructions pour réinitialiser votre mot de passe.\",\"an5hVd\":\"Images\",\"tSVr6t\":\"Usurper l'identité\",\"TWXU0c\":\"Usurper l'utilisateur\",\"5LAZwq\":\"Usurpation d'identité démarrée\",\"IMwcdR\":\"Usurpation d'identité arrêtée\",\"0I0Hac\":\"Avis important\",\"yD3avI\":\"Important : La modification de votre adresse e-mail mettra à jour le lien d'accès à cette commande. Vous serez redirigé vers le nouveau lien de commande après l'enregistrement.\",\"jT142F\":[\"Dans \",[\"diffHours\"],\" heures\"],\"OoSyqO\":[\"Dans \",[\"diffMinutes\"],\" minutes\"],\"PdMhEx\":[\"dans les dernières \",[\"0\"],\" min\"],\"u7r0G5\":\"En présentiel — définir un lieu\",\"Ip0hl5\":\"in_person, online, unset ou mixed\",\"F1Xp97\":\"Participants individuels\",\"85e6zs\":\"Insérer un jeton Liquid\",\"38KFY0\":\"Insérer une variable\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Virements Stripe instantanés\",\"nbfdhU\":\"Intégrations\",\"I8eJ6/\":\"Notes internes sur le billet du participant\",\"B2Tpo0\":\"E-mail invalide\",\"5tT0+u\":\"Format d'e-mail invalide\",\"f9WRpE\":\"Type de fichier invalide. Veuillez télécharger une image.\",\"tnL+GP\":\"Syntaxe Liquid invalide. Veuillez la corriger et réessayer.\",\"N9JsFT\":\"Format de numéro de TVA invalide\",\"g+lLS9\":\"Inviter un membre de l'équipe\",\"1z26sk\":\"Inviter un membre de l'équipe\",\"KR0679\":\"Inviter des membres de l'équipe\",\"aH6ZIb\":\"Invitez votre équipe\",\"IuMGvq\":\"Facture\",\"Lj7sBL\":\"Italien\",\"F5/CBH\":\"article(s)\",\"BzfzPK\":\"Articles\",\"rjyWPb\":\"Janvier\",\"KmWyx0\":\"Travail\",\"o5r6b2\":\"Travail supprimé\",\"cd0jIM\":\"Détails du travail\",\"ruJO57\":\"Nom du travail\",\"YZi+Hu\":\"Travail en file d'attente pour réessai\",\"nCywLA\":\"Rejoignez de n'importe où\",\"SNzppu\":\"Rejoindre la liste d'attente\",\"dLouFI\":[\"Rejoindre la liste d'attente pour \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrit\",\"u4ex5r\":\"Juillet\",\"zeEQd/\":\"Juin\",\"MxjCqk\":\"Vous cherchez vos billets ?\",\"xOTzt5\":\"à l'instant\",\"0RihU9\":\"Vient de se terminer\",\"lB2hSG\":[\"Me tenir informé des actualités et événements de \",[\"0\"]],\"ioFA9i\":\"Gardez les bénéfices.\",\"4Sffp7\":\"Libellé de la séance\",\"o66QSP\":\"mises à jour de libellé\",\"RtKKbA\":\"Dernier\",\"DruLRc\":\"14 derniers jours\",\"ve9JTU\":\"Le nom est obligatoire\",\"h0Q9Iw\":\"Dernière réponse\",\"gw3Ur5\":\"Dernier déclenchement\",\"FIq1Ba\":\"Plus tard\",\"xvnLMP\":\"Derniers enregistrements\",\"pzAivY\":\"Latitude du lieu résolu\",\"N5TErv\":\"Laissez vide pour illimité\",\"L/hDDD\":\"Laissez vide pour appliquer cette liste d'enregistrement à toutes les séances\",\"9Pf3wk\":\"Laissez activé pour couvrir tous les billets de l'événement. Désactivez pour choisir des billets spécifiques.\",\"Hq2BzX\":\"Informez-les du changement\",\"+uexiy\":\"Informez-les des changements\",\"exYcTF\":\"Bibliothèque\",\"1njn7W\":\"Clair\",\"1qY5Ue\":\"Lien expiré ou invalide\",\"+zSD/o\":\"Lien vers la page d'accueil de l'événement\",\"psosdY\":\"Lien vers les détails de la commande\",\"6JzK4N\":\"Lien vers le billet\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Liens autorisés\",\"2BBAbc\":\"Liste\",\"5NZpX8\":\"Vue liste\",\"dF6vP6\":\"En ligne\",\"fpMs2Z\":\"EN DIRECT\",\"D9zTjx\":\"Événements en Direct\",\"C33p4q\":\"Dates chargées\",\"WdmJIX\":\"Chargement de l'aperçu...\",\"IoDI2o\":\"Chargement des jetons...\",\"G3Ge9Z\":\"Chargement des journaux de webhook...\",\"NFxlHW\":\"Chargement des webhooks\",\"E0DoRM\":\"Lieu supprimé\",\"NtLHT3\":\"Adresse formatée du lieu\",\"h4vxDc\":\"Latitude du lieu\",\"f2TMhR\":\"Longitude du lieu\",\"lnCo2f\":\"Mode du lieu\",\"8pmGFk\":\"Nom du lieu\",\"7w8lJU\":\"Lieu enregistré\",\"YsRXDD\":\"Lieu mis à jour\",\"A/kIva\":\"mises à jour de lieu\",\"VppBoU\":\"Lieux\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Couverture\",\"gddQe0\":\"Logo et image de couverture pour votre organisateur\",\"TBEnp1\":\"Le logo sera affiché dans l'en-tête\",\"Jzu30R\":\"Le logo sera affiché sur le billet\",\"zKTMTg\":\"Longitude du lieu résolu\",\"PSRm6/\":\"Rechercher mes billets\",\"yJFu/X\":\"Siège social\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Gérer \",[\"0\"]],\"wZJfA8\":\"Gérez les dates et les horaires de votre événement récurrent\",\"RlzPUE\":\"Gérer sur Stripe\",\"6NXJRK\":\"Gérer le planning\",\"zXuaxY\":\"Gérez la liste d'attente de votre événement, consultez les statistiques et proposez des billets aux participants.\",\"BWTzAb\":\"Manuel\",\"g2npA5\":\"Offre manuelle\",\"hg6l4j\":\"Mars\",\"pqRBOz\":\"Marquer comme validé (remplacement administrateur)\",\"2L3vle\":\"Max messages / 24h\",\"Qp4HWD\":\"Max destinataires / message\",\"3JzsDb\":\"Mai\",\"agPptk\":\"Support\",\"xDAtGP\":\"Message\",\"bECJqy\":\"Message approuvé avec succès\",\"1jRD0v\":\"Envoyez des messages aux participants avec des billets spécifiques\",\"uQLXbS\":\"Message annulé\",\"48rf3i\":\"Le message ne peut pas dépasser 5000 caractères\",\"ZPj0Q8\":\"Détails du message\",\"Vjat/X\":\"Le message est obligatoire\",\"0/yJtP\":\"Envoyer un message aux propriétaires de commandes avec des produits spécifiques\",\"saG4At\":\"Message programmé\",\"mFdA+i\":\"Niveau de messagerie\",\"v7xKtM\":\"Niveau de messagerie mis à jour avec succès\",\"H9HlDe\":\"minutes\",\"agRWc1\":\"Minutes\",\"YYzBv9\":\"Lu\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Lun\",\"hty0d5\":\"Lundi\",\"JbIgPz\":\"Les valeurs monétaires sont des totaux approximatifs pour toutes les devises\",\"qvF+MT\":\"Surveiller et gérer les travaux de fond échoués\",\"kY2ll9\":\"mois\",\"HajiZl\":\"Mois\",\"+8Nek/\":\"Mensuel\",\"1LkxnU\":\"Schéma mensuel\",\"6jefe3\":\"mois\",\"f8jrkd\":\"plus\",\"JcD7qf\":\"Plus d'actions\",\"w36OkR\":\"Événements les plus vus (14 derniers jours)\",\"+Y/na7\":\"Décaler toutes les dates plus tôt ou plus tard\",\"3DIpY0\":\"Plusieurs lieux\",\"g9cQCP\":\"Plusieurs types de billets\",\"GfaxEk\":\"Musique\",\"oVGCGh\":\"Mes Billets\",\"8/brI5\":\"Le nom est obligatoire\",\"sFFArG\":\"Le nom doit comporter moins de 255 caractères\",\"sCV5Yc\":\"Nom de l'événement\",\"xxU3NX\":\"Revenu net\",\"7I8LlL\":\"Nouvelle capacité\",\"n1GRql\":\"Nouveau libellé\",\"y0Fcpd\":\"Nouveau lieu\",\"ArHT/C\":\"Nouvelles inscriptions\",\"uK7xWf\":\"Nouvel horaire :\",\"veT5Br\":\"Prochaine séance\",\"WXtl5X\":[\"Prochaine : \",[\"nextFormatted\"]],\"eWRECP\":\"Vie nocturne\",\"HSw5l3\":\"Non - Je suis un particulier ou une entreprise non assujettie à la TVA\",\"VHfLAW\":\"Aucun compte\",\"+jIeoh\":\"Aucun compte trouvé\",\"074+X8\":\"Aucun webhook actif\",\"zxnup4\":\"Aucun affilié à afficher\",\"Dwf4dR\":\"Pas encore de questions pour les participants\",\"th7rdT\":\"Aucun participant\",\"PKySlW\":\"Aucun participant pour cette date pour le moment.\",\"/UC6qk\":\"Aucune donnée d'attribution trouvée\",\"E2vYsO\":\"Stripe n'a encore signalé aucune fonctionnalité.\",\"amMkpL\":\"Aucune capacité\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Aucune liste d'enregistrement disponible pour cet événement.\",\"wG+knX\":\"Aucun enregistrement\",\"+dAKxg\":\"Aucune configuration trouvée\",\"LiLk8u\":\"Aucune connexion disponible\",\"eb47T5\":\"Aucune donnée trouvée pour les filtres sélectionnés. Essayez d'ajuster la plage de dates ou la devise.\",\"lFVUyx\":\"Aucune liste d'enregistrement spécifique à la date\",\"I8mtzP\":\"Aucune date disponible ce mois-ci. Essayez de naviguer vers un autre mois.\",\"yDukIL\":\"Aucune date ne correspond aux filtres actuels.\",\"B7phdj\":\"Aucune date ne correspond à vos filtres\",\"/ZB4Um\":\"Aucune date ne correspond à votre recherche\",\"gEdNe8\":\"Aucune date planifiée pour le moment\",\"27GYXJ\":\"Aucune date planifiée.\",\"pZNOT9\":\"Pas de date de fin\",\"dW40Uz\":\"Aucun événement trouvé\",\"8pQ3NJ\":\"Aucun événement ne commence dans les prochaines 24 heures\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Aucun travail échoué\",\"EpvBAp\":\"Pas de facture\",\"XZkeaI\":\"Aucun journal trouvé\",\"nrSs2u\":\"Aucun message trouvé\",\"Rj99yx\":\"Aucune séance disponible\",\"IFU1IG\":\"Aucune séance à cette date\",\"OVFwlg\":\"Pas encore de questions de commande\",\"EJ7bVz\":\"Aucune commande trouvée\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Aucune commande pour cette date pour le moment.\",\"wUv5xQ\":\"Aucune activité d'organisateur au cours des 14 derniers jours\",\"vLd1tV\":\"Aucun contexte d’organisateur disponible.\",\"B7w4KY\":\"Aucun autre organisateur disponible\",\"PChXMe\":\"Aucune commande payée\",\"6jYQGG\":\"Aucun événement passé\",\"CHzaTD\":\"Aucun événement populaire au cours des 14 derniers jours\",\"zK/+ef\":\"Aucun produit disponible pour la sélection\",\"M1/lXs\":\"Aucun produit configuré pour cet événement.\",\"kY7XDn\":\"Aucun produit n'a d'entrées en liste d'attente\",\"wYiAtV\":\"Aucune inscription récente\",\"UW90md\":\"Aucun destinataire trouvé\",\"QoAi8D\":\"Aucune réponse\",\"JeO7SI\":\"Aucune réponse\",\"EK/G11\":\"Aucune réponse pour le moment\",\"7J5OKy\":\"Aucun lieu enregistré pour l’instant\",\"wpCjcf\":\"Aucun lieu enregistré pour le moment. Ils apparaîtront ici à mesure que vous créez des événements avec des adresses.\",\"mPdY6W\":\"Aucune suggestion\",\"3sRuiW\":\"Aucun billet trouvé\",\"k2C0ZR\":\"Aucune date à venir\",\"yM5c0q\":\"Aucun événement à venir\",\"qpC74J\":\"Aucun utilisateur trouvé\",\"8wgkoi\":\"Aucun événement vu au cours des 14 derniers jours\",\"Arzxc1\":\"Aucune inscription sur la liste d'attente\",\"n5vdm2\":\"Aucun événement webhook n'a encore été enregistré pour ce point de terminaison. Les événements apparaîtront ici une fois qu'ils seront déclenchés.\",\"4GhX3c\":\"Aucun webhook\",\"4+am6b\":\"Non, rester ici\",\"4JVMUi\":\"non modifié\",\"Itw24Q\":\"Non enregistré\",\"x5+Lcz\":\"Non Enregistré\",\"8n10sz\":\"Non Éligible\",\"kLvU3F\":\"Notifier les participants et arrêter les ventes\",\"t9QlBd\":\"Novembre\",\"kAREMN\":\"Nombre de dates à créer\",\"6u1B3O\":\"Séance\",\"mmoE62\":\"Séance annulée\",\"UYWXdN\":\"Date de fin de la séance\",\"k7dZT5\":\"Heure de fin de la séance\",\"Opinaj\":\"Libellé de la séance\",\"V9flmL\":\"Planning des séances\",\"NUTUUs\":\"page Planning des séances\",\"AT8UKD\":\"Date de début de la séance\",\"Um8bvD\":\"Heure de début de la séance\",\"Kh3WO8\":\"Résumé de la séance\",\"byXCTu\":\"Séances\",\"KATw3p\":\"Séances (à venir uniquement)\",\"85rTR2\":\"Les séances peuvent être configurées après la création\",\"dzQfDY\":\"Octobre\",\"BwJKBw\":\"de\",\"9h7RDh\":\"Offrir\",\"EfK2O6\":\"Offrir une place\",\"3sVRey\":\"Proposer des billets\",\"2O7Ybb\":\"Délai de l'offre\",\"1jUg5D\":\"Proposé\",\"l+/HS6\":[\"Les offres expirent après \",[\"timeoutHours\"],\" heures.\"],\"lQgMLn\":\"Nom du bureau ou du lieu\",\"6Aih4U\":\"Hors ligne\",\"Z6gBGW\":\"Paiement hors ligne\",\"nO3VbP\":[\"En vente \",[\"0\"]],\"oXOSPE\":\"En ligne\",\"aqmy5k\":\"En ligne — fournir les informations de connexion\",\"LuZBbx\":\"En ligne et en présentiel\",\"IXuOqt\":\"En ligne et en présentiel — voir le planning\",\"w3DG44\":\"Détails de connexion en ligne\",\"WjSpu5\":\"Événement en ligne\",\"TP6jss\":\"Détails de connexion à l'événement en ligne\",\"NdOxqr\":\"Seuls les administrateurs de compte peuvent supprimer ou archiver des événements. Contactez votre administrateur de compte pour obtenir de l'aide.\",\"rnoDMF\":\"Seuls les administrateurs de compte peuvent supprimer ou archiver des organisateurs. Contactez votre administrateur de compte pour obtenir de l'aide.\",\"bU7oUm\":\"Envoyer uniquement aux commandes avec ces statuts\",\"M2w1ni\":\"Visible uniquement avec un code promo\",\"y8Bm7C\":\"Ouvrir l'enregistrement\",\"RLz7P+\":\"Ouvrir la séance\",\"cDSdPb\":\"Surnom facultatif affiché dans les sélecteurs, ex. \\\"Salle de conférence du siège\\\"\",\"HXMJxH\":\"Texte optionnel pour les avertissements, informations de contact ou notes de remerciement (une seule ligne)\",\"L565X2\":\"options\",\"8m9emP\":\"ou ajoutez une date unique\",\"dSeVIm\":\"commande\",\"c/TIyD\":\"Commande et billet\",\"H5qWhm\":\"Commande annulée\",\"b6+Y+n\":\"Commande terminée\",\"x4MLWE\":\"Confirmation de commande\",\"CsTTH0\":\"Confirmation de commande renvoyée avec succès\",\"ppuQR4\":\"Commande créée\",\"0UZTSq\":\"Devise de la Commande\",\"xtQzag\":\"Détails de la commande\",\"HdmwrI\":\"Email de commande\",\"bwBlJv\":\"Prénom de la commande\",\"vrSW9M\":\"La commande a été annulée et remboursée. Le propriétaire de la commande a été notifié.\",\"rzw+wS\":\"Titulaires de commandes\",\"oI/hGR\":\"ID de commande\",\"Pc729f\":\"Commande en Attente de Paiement Hors Ligne\",\"F4NXOl\":\"Nom de famille de la commande\",\"RQCXz6\":\"Limites de commande\",\"SO9AEF\":\"Limites de commande définies\",\"5RDEEn\":\"Langue de la Commande\",\"vu6Arl\":\"Commande marquée comme payée\",\"sLbJQz\":\"Commande introuvable\",\"kvYpYu\":\"Commande introuvable\",\"i8VBuv\":\"Numéro de commande\",\"eJ8SvM\":\"N° de commande, date d'achat, email de l'acheteur\",\"FaPYw+\":\"Propriétaire de la commande\",\"eB5vce\":\"Propriétaires de commandes avec un produit spécifique\",\"CxLoxM\":\"Propriétaires de commandes avec des produits\",\"DoH3fD\":\"Paiement de la Commande en Attente\",\"UkHo4c\":\"Réf. commande\",\"EZy55F\":\"Commande remboursée\",\"6eSHqs\":\"Statuts des commandes\",\"oW5877\":\"Total de la commande\",\"e7eZuA\":\"Commande mise à jour\",\"1SQRYo\":\"Commande mise à jour avec succès\",\"KndP6g\":\"URL de la commande\",\"3NT0Ck\":\"La commande a été annulée\",\"V5khLm\":\"commandes\",\"sd5IMt\":\"Commandes terminées\",\"5It1cQ\":\"Commandes exportées\",\"tlKX/S\":\"Les commandes couvrant plusieurs dates seront signalées pour examen manuel.\",\"UQ0ACV\":\"Total des commandes\",\"B/EBQv\":\"Commandes:\",\"qtGTNu\":\"Comptes organiques\",\"ucgZ0o\":\"Organisation\",\"P/JHA4\":\"Organisateur archivé avec succès\",\"S3CZ5M\":\"Tableau de bord de l'organisateur\",\"GzjTd0\":\"Organisateur supprimé avec succès\",\"Uu0hZq\":\"E-mail de l'organisateur\",\"Gy7BA3\":\"Adresse e-mail de l'organisateur\",\"SQqJd8\":\"Organisateur introuvable\",\"HF8Bxa\":\"Organisateur restauré avec succès\",\"wpj63n\":\"Paramètres de l'organisateur\",\"o1my93\":\"Échec de la mise à jour du statut de l'organisateur. Veuillez réessayer plus tard\",\"rLHma1\":\"Statut de l'organisateur mis à jour\",\"LqBITi\":\"Le modèle de l'organisateur/par défaut sera utilisé\",\"q4zH+l\":\"Organisateurs\",\"/IX/7x\":\"Autre\",\"RsiDDQ\":\"Autres Listes (Billet Non Inclus)\",\"aDfajK\":\"En plein air\",\"qMASRF\":\"Messages sortants\",\"iCOVQO\":\"Remplacer\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Remplacer le prix\",\"cnVIpl\":\"Remplacement supprimé\",\"6/dCYd\":\"Aperçu\",\"6WdDG7\":\"Page\",\"8uqsE5\":\"Page plus disponible\",\"QkLf4H\":\"URL de la page\",\"sF+Xp9\":\"Vues de page\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Comptes payants\",\"5F7SYw\":\"Remboursement partiel\",\"fFYotW\":[\"Partiellement remboursé : \",[\"0\"]],\"i8day5\":\"Répercuter les frais sur l'acheteur\",\"k4FLBQ\":\"Répercuter sur l'acheteur\",\"Ff0Dor\":\"Passé\",\"BFjW8X\":\"En retard\",\"xTPjSy\":\"Événements passés\",\"/l/ckQ\":\"Coller l’URL\",\"URAE3q\":\"En pause\",\"4fL/V7\":\"Payer\",\"OZK07J\":\"Payer pour déverrouiller\",\"c2/9VE\":\"Charge utile\",\"5cxUwd\":\"Date de paiement\",\"ENEPLY\":\"Mode de paiement\",\"8Lx2X7\":\"Paiement reçu\",\"fx8BTd\":\"Paiements non disponibles\",\"C+ylwF\":\"Virements\",\"UbRKMZ\":\"En attente\",\"UkM20g\":\"En attente de révision\",\"dPYu1F\":\"Par participant\",\"mQV/nJ\":\"par min\",\"VlXNyK\":\"Par commande\",\"hauDFf\":\"Par billet\",\"mnF83a\":\"Frais en pourcentage\",\"TNLuRD\":\"Frais en pourcentage (%)\",\"MixU2P\":\"Le pourcentage doit être compris entre 0 et 100\",\"MkuVAZ\":\"Pourcentage du montant de la transaction\",\"/Bh+7r\":\"Performance\",\"fIp56F\":\"Supprimez définitivement cet événement et toutes ses données associées.\",\"nJeeX7\":\"Supprimez définitivement cet organisateur et tous ses événements.\",\"wfCTgK\":\"Supprimer définitivement cette date\",\"6kPk3+\":\"Informations personnelles\",\"zmwvG2\":\"Téléphone\",\"SdM+Q1\":\"Choisir un lieu\",\"tSR/oe\":\"Choisir une date de fin\",\"e8kzpp\":\"Choisissez au moins un jour du mois\",\"35C8QZ\":\"Choisissez au moins un jour de la semaine\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Passée le\",\"wBJR8i\":\"Planifier un événement ?\",\"J3lhKT\":\"Frais de plateforme\",\"RD51+P\":[\"Frais de plateforme de \",[\"0\"],\" déduits de votre paiement\"],\"br3Y/y\":\"Frais de plateforme\",\"3buiaw\":\"Rapport des frais de plateforme\",\"kv9dM4\":\"Revenus de la plateforme\",\"PJ3Ykr\":\"Veuillez vérifier votre billet pour connaître les nouveaux horaires. Vos billets restent valides — aucune action n'est nécessaire à moins que les nouveaux horaires ne vous conviennent pas. Répondez à cet e-mail si vous avez des questions.\",\"OtjenF\":\"Veuillez saisir une adresse e-mail valide\",\"jEw0Mr\":\"Veuillez entrer une URL valide\",\"n8+Ng/\":\"Veuillez saisir le code à 5 chiffres\",\"r+lQXT\":\"Veuillez entrer votre numéro de TVA\",\"Dvq0wf\":\"Veuillez fournir une image.\",\"2cUopP\":\"Veuillez recommencer le processus de commande.\",\"GoXxOA\":\"Veuillez sélectionner une date et une heure\",\"8KmsFa\":\"Veuillez sélectionner une plage de dates\",\"EFq6EG\":\"Veuillez sélectionner une image.\",\"fuwKpE\":\"Veuillez réessayer.\",\"klWBeI\":\"Veuillez patienter avant de demander un autre code\",\"hfHhaa\":\"Veuillez patienter pendant que nous préparons vos affiliés pour l'exportation...\",\"o+tJN/\":\"Veuillez patienter pendant que nous préparons l'exportation de vos participants...\",\"+5Mlle\":\"Veuillez patienter pendant que nous préparons l'exportation de vos commandes...\",\"trnWaw\":\"Polonais\",\"luHAJY\":\"Événements populaires (14 derniers jours)\",\"p/78dY\":\"Position\",\"TjX7xL\":\"Message Post-Commande\",\"OESu7I\":\"Évitez la survente en partageant l'inventaire entre plusieurs types de billets.\",\"NgVUL2\":\"Aperçu du formulaire de paiement\",\"cs5muu\":\"Aperçu de la page de l’événement\",\"+4yRWM\":\"Prix du billet\",\"Jm2AC3\":\"Niveau de prix\",\"a5jvSX\":\"Niveaux de prix\",\"ReihZ7\":\"Aperçu avant Impression\",\"JnuPvH\":\"Imprimer le billet\",\"tYF4Zq\":\"Imprimer en PDF\",\"LcET2C\":\"Politique de confidentialité\",\"8z6Y5D\":\"Traiter le remboursement\",\"JcejNJ\":\"Traitement de la commande\",\"EWCLpZ\":\"Produit créé\",\"XkFYVB\":\"Produit supprimé\",\"YMwcbR\":\"Détail des ventes de produits, revenus et taxes\",\"ls0mTC\":\"Les paramètres du produit ne peuvent pas être modifiés pour les dates annulées.\",\"2339ej\":\"Paramètres du produit enregistrés avec succès\",\"ldVIlB\":\"Produit mis à jour\",\"CP3D8G\":\"Progression\",\"JoKGiJ\":\"Code promo\",\"k3wH7i\":\"Utilisation des codes promo et détail des réductions\",\"tZqL0q\":\"codes promo\",\"oCHiz3\":\"Codes promo\",\"uEhdRh\":\"Promo seulement\",\"dLm8V5\":\"Les e-mails promotionnels peuvent entraîner la suspension du compte\",\"XoEWtl\":\"Renseignez au moins un champ d’adresse pour le nouveau lieu.\",\"2W/7Gz\":\"Fournissez les informations suivantes avant la prochaine vérification de Stripe pour continuer à recevoir des virements.\",\"aemBRq\":\"Fournisseur\",\"EEYbdt\":\"Publier\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Acheté\",\"JunetL\":\"Acheteur\",\"phmeUH\":\"Email de l'acheteur\",\"ywR4ZL\":\"Enregistrement par code QR\",\"oWXNE5\":\"Qté\",\"biEyJ4\":\"Réponses\",\"k/bJj0\":\"Questions réorganisées\",\"b24kPi\":\"File d'attente\",\"lTPqpM\":\"Astuce rapide\",\"fqDzSu\":\"Taux\",\"mnUGVC\":\"Limite de débit dépassée. Veuillez réessayer plus tard.\",\"t41hVI\":\"Réoffrir une place\",\"TNclgc\":\"Réactiver cette date ? Elle sera rouverte aux ventes futures.\",\"uqoRbb\":\"Analytiques en temps réel\",\"xzRvs4\":[\"Recevoir les mises à jour produits de \",[\"0\"],\".\"],\"pLXbi8\":\"Inscriptions récentes\",\"3kJ0gv\":\"Participants récents\",\"qhfiwV\":\"Derniers enregistrements\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Commandes récentes\",\"7hPBBn\":\"destinataire\",\"jp5bq8\":\"destinataires\",\"yPrbsy\":\"Destinataires\",\"E1F5Ji\":\"Les destinataires sont disponibles après l'envoi du message\",\"wuhHPE\":\"Récurrent\",\"asLqwt\":\"Événement récurrent\",\"D0tAMe\":\"Événements récurrents\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirection vers Stripe...\",\"pnoTN5\":\"Comptes de parrainage\",\"ACKu03\":\"Actualiser l'aperçu\",\"vuFYA6\":\"Rembourser toutes les commandes de ces dates\",\"4cRUK3\":\"Rembourser toutes les commandes de cette date\",\"fKn/k6\":\"Montant du remboursement\",\"qY4rpA\":\"Remboursement échoué\",\"TspTcZ\":\"Remboursement émis\",\"FaK/8G\":[\"Rembourser la commande \",[\"0\"]],\"MGbi9P\":\"Remboursement en attente\",\"BDSRuX\":[\"Remboursé : \",[\"0\"]],\"bU4bS1\":\"Remboursements\",\"rYXfOA\":\"Paramètres régionaux\",\"5tl0Bp\":\"Questions d'inscription\",\"ZNo5k1\":\"Restant\",\"EMnuA4\":\"Rappel programmé\",\"Bjh87R\":\"Retirer le libellé de toutes les dates\",\"KkJtVK\":\"Rouvrir aux nouvelles ventes\",\"XJwWJp\":\"Rouvrir cette date aux nouvelles ventes ? Les billets précédemment annulés ne seront pas restaurés — les participants concernés restent annulés et les remboursements déjà émis ne seront pas annulés.\",\"bAwDQs\":\"Répéter tous les\",\"CQeZT8\":\"Rapport non trouvé\",\"JEPMXN\":\"Demander un nouveau lien\",\"TMLAx2\":\"Requis\",\"mdeIOH\":\"Renvoyer le code\",\"sQxe68\":\"Renvoyer la confirmation\",\"bxoWpz\":\"Renvoyer l'e-mail de confirmation\",\"G42SNI\":\"Renvoyer l'e-mail\",\"TTpXL3\":[\"Renvoyer dans \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Renvoyer le billet\",\"Uwsg2F\":\"Réservé\",\"8wUjGl\":\"Réservé jusqu'au\",\"a5z8mb\":\"Réinitialiser au prix de base\",\"kCn6wb\":\"Réinitialisation...\",\"404zLK\":\"Lieu résolu ou nom du site\",\"ZlCDf+\":\"Réponse\",\"bsydMp\":\"Détails de la réponse\",\"yKu/3Y\":\"Restaurer\",\"RokrZf\":\"Restaurer l'événement\",\"/JyMGh\":\"Restaurer l'organisateur\",\"HFvFRb\":\"Restaurez cet événement pour le rendre à nouveau visible.\",\"DDIcqy\":\"Restaurez cet organisateur et rendez-le à nouveau actif.\",\"mO8KLE\":\"résultats\",\"6gRgw8\":\"Réessayer\",\"1BG8ga\":\"Tout réessayer\",\"rDC+T6\":\"Réessayer le travail\",\"CbnrWb\":\"Retour à l'événement\",\"mdQ0zb\":\"Lieux réutilisables pour vos événements. Les lieux créés depuis l'autocomplétion sont enregistrés ici automatiquement.\",\"XFOPle\":\"Réutiliser\",\"1Zehp4\":\"Réutilisez une connexion Stripe d'un autre organisateur de ce compte.\",\"Oo/PLb\":\"Résumé des revenus\",\"O/8Ceg\":\"Revenus du jour\",\"CfuueU\":\"Révoquer l'offre\",\"RIgKv+\":\"Exécuter jusqu'à une date précise\",\"JYRqp5\":\"Sa\",\"dFFW9L\":[\"Vente terminée \",[\"0\"]],\"loCKGB\":[\"Vente se termine \",[\"0\"]],\"wlfBad\":\"Période de vente\",\"qi81Jg\":\"Les dates de la période de vente s'appliquent à toutes les dates de votre planning. Pour contrôler la tarification et la disponibilité de dates individuelles, utilisez les remplacements depuis la <0>page Planning des séances.\",\"5CDM6r\":\"Période de vente définie\",\"ftzaMf\":\"Période de vente, limites de commande, visibilité\",\"zpekWp\":[\"Vente commence \",[\"0\"]],\"mUv9U4\":\"Ventes\",\"9KnRdL\":\"Ventes en pause\",\"JC3J0k\":\"Répartition des ventes, de la participation et des enregistrements par séance\",\"3VnlS9\":\"Ventes, commandes et indicateurs de performance pour tous les événements\",\"3Q1AWe\":\"Ventes:\",\"LeuERW\":\"Identique à l'événement\",\"B4nE3N\":\"Prix du billet exemple\",\"8BRPoH\":\"Lieu Exemple\",\"PiK6Ld\":\"Sam\",\"+5kO8P\":\"Samedi\",\"zJiuDn\":\"Enregistrer le remplacement de frais\",\"NB8Uxt\":\"Enregistrer le planning\",\"KZrfYJ\":\"Enregistrer les liens sociaux\",\"9Y3hAT\":\"Sauvegarder le modèle\",\"C8ne4X\":\"Enregistrer le Design du Billet\",\"cTI8IK\":\"Enregistrer les paramètres de TVA\",\"6/TNCd\":\"Enregistrer les paramètres TVA\",\"4RvD9q\":\"Lieu enregistré\",\"cgw0cL\":\"Lieux enregistrés\",\"lvSrsT\":\"Lieux enregistrés\",\"Fbqm/I\":\"L'enregistrement d'un remplacement crée une configuration dédiée pour cet organisateur s'il utilise actuellement la valeur par défaut du système.\",\"I+FvbD\":\"Scanner\",\"0zd6Nm\":\"Scannez un billet pour enregistrer un participant\",\"bQG7Qk\":\"Les billets scannés apparaîtront ici\",\"WDYSLJ\":\"Mode scanner\",\"gmB6oO\":\"Planning\",\"j6NnBq\":\"Planning créé avec succès\",\"YP7frt\":\"Le planning se termine le\",\"QS1Nla\":\"Programmer pour plus tard\",\"NAzVVw\":\"Programmer le message\",\"Fz09JP\":\"La planification commence le\",\"4ba0NE\":\"Planifié\",\"qcP/8K\":\"Heure programmée\",\"A1taO8\":\"Rechercher\",\"ftNXma\":\"Rechercher des affiliés...\",\"VMU+zM\":\"Rechercher des participants\",\"VY+Bdn\":\"Rechercher par nom de compte ou e-mail...\",\"VX+B3I\":\"Rechercher par titre d'événement ou organisateur...\",\"R0wEyA\":\"Rechercher par nom de travail ou exception...\",\"VT+urE\":\"Rechercher par nom ou e-mail...\",\"GHdjuo\":\"Rechercher par nom, e-mail ou compte...\",\"4mBFO7\":\"Rechercher par nom, n° commande, n° billet ou email\",\"20ce0U\":\"Rechercher par ID de commande, nom du client ou e-mail...\",\"4DSz7Z\":\"Rechercher par sujet, événement ou compte...\",\"nQC7Z9\":\"Rechercher des dates...\",\"iRtEpV\":\"Rechercher des dates…\",\"JRM7ao\":\"Rechercher une adresse\",\"BWF1kC\":\"Rechercher des messages...\",\"3aD3GF\":\"Saisonnier\",\"ku//5b\":\"Deuxième\",\"Mck5ht\":\"Paiement sécurisé\",\"s7tXqF\":\"Voir le planning\",\"JFap6u\":\"Voir ce qu'il manque à Stripe\",\"p7xUrt\":\"Sélectionner une catégorie\",\"hTKQwS\":\"Sélectionner une date et une heure\",\"e4L7bF\":\"Sélectionnez un message pour voir son contenu\",\"zPRPMf\":\"Sélectionner un niveau\",\"uqpVri\":\"Sélectionner un horaire\",\"BFRSTT\":\"Sélectionner un compte\",\"wgNoIs\":\"Tout sélectionner\",\"mCB6Je\":\"Tout sélectionner\",\"aCEysm\":[\"Tout sélectionner le \",[\"0\"]],\"a6+167\":\"Sélectionner un événement\",\"CFbaPk\":\"Sélectionner un groupe de participants\",\"88a49s\":\"Choisir la caméra\",\"tVW/yo\":\"Sélectionner la devise\",\"SJQM1I\":\"Sélectionner la date\",\"n9ZhRa\":\"Sélectionnez la date et l'heure de fin\",\"gTN6Ws\":\"Sélectionner l'heure de fin\",\"0U6E9W\":\"Sélectionner la catégorie d'événement\",\"j9cPeF\":\"Sélectionner les types d'événements\",\"ypTjHL\":\"Sélectionner la séance\",\"KizCK7\":\"Sélectionnez la date et l'heure de début\",\"dJZTv2\":\"Sélectionner l'heure de début\",\"x8XMsJ\":\"Sélectionnez le niveau de messagerie pour ce compte. Cela contrôle les limites de messages et les autorisations de liens.\",\"aT3jZX\":\"Sélectionner le fuseau horaire\",\"TxfvH2\":\"Sélectionnez les participants qui doivent recevoir ce message\",\"Ropvj0\":\"Sélectionnez les événements qui déclencheront ce webhook\",\"+6YAwo\":\"sélectionné\",\"ylXj1N\":\"Sélectionné\",\"uq3CXQ\":\"Vendez tous les billets de votre événement.\",\"j9b/iy\":\"Se vend vite 🔥\",\"73qYgo\":\"Envoyer en test\",\"HMAqFK\":\"Envoyer des e-mails aux participants, détenteurs de billets ou propriétaires de commandes. Les messages peuvent être envoyés immédiatement ou programmés pour plus tard.\",\"22Itl6\":\"M'envoyer une copie\",\"NpEm3p\":\"Envoyer maintenant\",\"nOBvex\":\"Envoyez les données de commande et de participants en temps réel vers vos systèmes externes.\",\"1lNPhX\":\"Envoyer l'e-mail de notification de remboursement\",\"eaUTwS\":\"Envoyer le lien de réinitialisation\",\"5cV4PY\":\"Envoyer à toutes les séances, ou choisir une séance spécifique\",\"QEQlnV\":\"Envoyez votre premier message\",\"3nMAVT\":\"Envoi dans 2 j 4 h\",\"IoAuJG\":\"Envoi...\",\"h69WC6\":\"Envoyé\",\"BVu2Hz\":\"Envoyé par\",\"ZFa8wv\":\"Envoyé aux participants lorsqu'une date programmée est annulée\",\"SPdzrs\":\"Envoyé aux clients lorsqu'ils passent une commande\",\"LxSN5F\":\"Envoyé à chaque participant avec les détails de son billet\",\"hgvbYY\":\"Septembre\",\"5sN96e\":\"Séance annulée\",\"89xaFU\":\"Définissez les paramètres de frais de plateforme par défaut pour les nouveaux événements créés sous cet organisateur.\",\"eXssj5\":\"Définir les paramètres par défaut pour les nouveaux événements créés sous cet organisateur.\",\"uPe5p8\":\"Définir la durée de chaque date\",\"xNsRxU\":\"Définir le nombre de dates\",\"ODuUEi\":\"Définir ou effacer le libellé de la date\",\"buHACR\":\"Définissez l'heure de fin de chaque date à cette durée après son heure de début.\",\"TaeFgl\":\"Définir sur illimité (supprimer la limite)\",\"pd6SSe\":\"Configurez un planning récurrent pour créer automatiquement des dates, ou ajoutez-les une à une.\",\"s0FkEx\":\"Configurez des listes d'enregistrement pour différentes entrées, sessions ou jours.\",\"TaWVGe\":\"Configurer les virements\",\"gzXY7l\":\"Configurer le planning\",\"xMO+Ao\":\"Configurer votre organisation\",\"h/9JiC\":\"Configurez votre planning\",\"ETC76A\":\"Définir, modifier ou supprimer le lieu ou les informations en ligne de la séance\",\"C3htzi\":\"Paramètre mis à jour\",\"Ohn74G\":\"Configuration et design\",\"1W5XyZ\":\"La configuration ne prend que quelques minutes — vous n'avez pas besoin d'un compte Stripe existant. Stripe gère les cartes, les portefeuilles, les moyens de paiement régionaux et la protection antifraude pour vous laisser vous concentrer sur votre événement.\",\"GG7qDw\":\"Partager le lien d'affiliation\",\"hL7sDJ\":\"Partager la page de l'organisateur\",\"jy6QDF\":\"Gestion de capacité partagée\",\"jDNHW4\":\"Décaler les horaires\",\"tPfIaW\":[\"Horaires décalés pour \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Afficher les options avancées\",\"cMW+gm\":[\"Afficher toutes les plateformes (\",[\"0\"],\" autres avec des valeurs)\"],\"wXi9pZ\":\"Afficher les notes au personnel non connecté\",\"UVPI5D\":\"Afficher moins de plateformes\",\"Eu/N/d\":\"Afficher la case d'opt-in marketing\",\"SXzpzO\":\"Afficher la case d'opt-in marketing par défaut\",\"57tTk5\":\"Afficher plus de dates\",\"b33PL9\":\"Afficher plus de plateformes\",\"Eut7p9\":\"Afficher les détails au personnel non connecté\",\"+RoWKN\":\"Afficher les réponses au personnel non connecté\",\"t1LIQW\":[\"Affichage de \",[\"0\"],\" sur \",[\"totalRows\"],\" enregistrements\"],\"E717U9\":[\"Affichage de \",[\"0\"],\"–\",[\"1\"],\" sur \",[\"2\"]],\"5rzhBQ\":[\"Affichage de \",[\"MAX_VISIBLE\"],\" sur \",[\"totalAvailable\"],\" dates. Saisissez pour rechercher.\"],\"WSt3op\":[\"Affichage des \",[\"0\"],\" premières — les \",[\"1\"],\" séance(s) restante(s) seront tout de même ciblées lors de l'envoi du message.\"],\"OJLTEL\":\"Affiché au personnel lors de la première ouverture de la page.\",\"jVRHeq\":\"Inscrit\",\"5C7J+P\":\"Événement unique\",\"E//btK\":\"Ignorer les dates modifiées manuellement\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Liens sociaux\",\"j/TOB3\":\"Liens sociaux & site web\",\"s9KGXU\":\"Vendu\",\"iACSrw\":\"Certains détails sont masqués pour l'accès public. Connectez-vous pour tout voir.\",\"KTxc6k\":\"Une erreur s'est produite, veuillez réessayer ou contacter le support si le problème persiste\",\"lkE00/\":\"Une erreur s'est produite. Veuillez réessayer plus tard.\",\"wdxz7K\":\"Source\",\"fDG2by\":\"Spiritualité\",\"oPaRES\":\"Séparez les enregistrements par jour, zone ou type de billet. Partagez le lien avec le personnel — sans compte.\",\"7JFNej\":\"Sports\",\"/bfV1Y\":\"Consignes pour le personnel\",\"tXkhj/\":\"Début\",\"JcQp9p\":\"Date et heure de début\",\"0m/ekX\":\"Date et heure de début\",\"izRfYP\":\"La date de début est obligatoire\",\"tuO4fV\":\"Date de début de la séance\",\"2R1+Rv\":\"Heure de début de l'événement\",\"2Olov3\":\"Heure de début de la séance\",\"n9ZrDo\":\"Commencez à saisir un lieu ou une adresse...\",\"qeFVhN\":[\"Commence dans \",[\"diffDays\"],\" jours\"],\"AOqtxN\":[\"Commence dans \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Commence dans \",[\"h\"],\" h \",[\"m\"],\" m\"],\"Lo49in\":[\"Commence dans \",[\"seconds\"],\" s\"],\"NqChgF\":\"Commence demain\",\"2NbyY/\":\"Statistiques\",\"GVUxAX\":\"Les statistiques sont basées sur la date de création du compte\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Toujours requis\",\"wuV0bK\":\"Arrêter l'usurpation\",\"s/KaDb\":\"Stripe connecté\",\"Bk06QI\":\"Stripe connecté\",\"akZMv8\":[\"Connexion Stripe copiée depuis \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe n'a pas renvoyé de lien de configuration. Veuillez réessayer.\",\"aKtF0O\":\"Stripe non connecté\",\"9i0++A\":\"ID de paiement Stripe\",\"R1lIMV\":\"Stripe aura bientôt besoin d'informations supplémentaires\",\"FzcCHA\":\"Stripe vous guidera à travers quelques questions rapides pour finaliser la configuration.\",\"eYbd7b\":\"Di\",\"ii0qn/\":\"Le sujet est requis\",\"M7Uapz\":\"Le sujet apparaîtra ici\",\"6aXq+t\":\"Sujet :\",\"JwTmB6\":\"Produit dupliqué avec succès\",\"WUOCgI\":\"Place offerte avec succès\",\"IvxA4G\":[\"Billets proposés avec succès à \",[\"count\"],\" personnes\"],\"kKpkzy\":\"Billets proposés avec succès à 1 personne\",\"Zi3Sbw\":\"Retiré de la liste d'attente avec succès\",\"RuaKfn\":\"Adresse mise à jour avec succès\",\"kzx0uD\":\"Paramètres par défaut de l'événement mis à jour avec succès\",\"5n+Wwp\":\"Organisateur mis à jour avec succès\",\"DMCX/I\":\"Paramètres de frais de plateforme par défaut mis à jour avec succès\",\"URUYHc\":\"Paramètres des frais de plateforme mis à jour avec succès\",\"0Dk/l8\":\"Paramètres SEO mis à jour avec succès\",\"S8Tua9\":\"Paramètres mis à jour avec succès\",\"MhOoLQ\":\"Liens sociaux mis à jour avec succès\",\"CNSSfp\":\"Paramètres de suivi mis à jour avec succès\",\"kj7zYe\":\"Webhook mis à jour avec succès\",\"dXoieq\":\"Résumé\",\"/RfJXt\":[\"Festival de musique d'été \",[\"0\"]],\"CWOPIK\":\"Festival de Musique d'Été 2025\",\"D89zck\":\"Dim\",\"DBC3t5\":\"Dimanche\",\"UaISq3\":\"Suédois\",\"JZTQI0\":\"Changer d'organisateur\",\"9YHrNC\":\"Par défaut du système\",\"lruQkA\":\"Touchez l'écran pour reprendre le scan\",\"TJUrME\":[\"Ciblage des participants sur \",[\"0\"],\" séances sélectionnées.\"],\"yT6dQ8\":\"Taxes collectées groupées par type de taxe et événement\",\"Ye321X\":\"Nom de la taxe\",\"WyCBRt\":\"Résumé des taxes\",\"GkH0Pq\":\"Taxes et frais appliqués\",\"Rwiyt2\":\"Taxes configurées\",\"iQZff7\":\"Taxes, frais, visibilité, période de vente, mise en avant des produits et limites de commande\",\"SXvRWU\":\"Collaboration d'équipe\",\"vlf/In\":\"Technologie\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Dites aux gens à quoi s'attendre lors de votre événement\",\"NiIUyb\":\"Parlez-nous de votre événement\",\"DovcfC\":\"Parlez-nous de votre organisation. Ces informations seront affichées sur vos pages d'événement.\",\"69GWRq\":\"Indiquez-nous à quelle fréquence votre événement se répète et nous créerons toutes les dates pour vous.\",\"mXPbwY\":\"Indiquez votre statut d'enregistrement à la TVA pour que nous appliquions le bon traitement TVA aux frais de plateforme.\",\"7wtpH5\":\"Modèle actif\",\"QHhZeE\":\"Modèle créé avec succès\",\"xrWdPR\":\"Modèle supprimé avec succès\",\"G04Zjt\":\"Modèle sauvegardé avec succès\",\"xowcRf\":\"Conditions d'utilisation\",\"6K0GjX\":\"Le texte peut être difficile à lire\",\"u0F1Ey\":\"Je\",\"nm3Iz/\":\"Merci pour votre présence !\",\"pYwj0k\":\"Merci,\",\"k3IitN\":\"C'est terminé\",\"KfmPRW\":\"La couleur de fond de la page. Lors de l'utilisation d'une image de couverture, ceci est appliqué en superposition.\",\"MDNyJz\":\"Le code expirera dans 10 minutes. Vérifiez votre dossier spam si vous ne voyez pas l'e-mail.\",\"AIF7J2\":\"La devise dans laquelle les frais fixes sont définis. Elle sera convertie dans la devise de la commande lors du paiement.\",\"MJm4Tq\":\"La devise de la commande\",\"cDHM1d\":\"L'adresse e-mail a été modifiée. Le participant recevra un nouveau billet à l'adresse e-mail mise à jour.\",\"I/NNtI\":\"Le lieu de l'événement\",\"tXadb0\":\"L'événement que vous recherchez n'est pas disponible pour le moment. Il a peut-être été supprimé, expiré ou l'URL est incorrecte.\",\"5fPdZe\":\"La première date à partir de laquelle cette planification sera générée.\",\"EBzPwC\":\"L'adresse complète de l'événement\",\"sxKqBm\":\"Le montant total de la commande sera remboursé sur le mode de paiement original du client.\",\"KgDp6G\":\"Le lien que vous essayez d'accéder a expiré ou n'est plus valide. Veuillez vérifier votre e-mail pour obtenir un lien mis à jour pour gérer votre commande.\",\"5OmEal\":\"La langue du client\",\"Np4eLs\":[\"Le maximum est de \",[\"MAX_PREVIEW\"],\" séances. Veuillez réduire la plage de dates, la fréquence ou le nombre de séances par jour.\"],\"sYLeDq\":\"L'organisateur que vous recherchez est introuvable. La page a peut-être été déplacée, supprimée ou l'URL est incorrecte.\",\"PCr4zw\":\"Le remplacement est enregistré dans le journal d'audit de la commande.\",\"C4nQe5\":\"Les frais de plateforme sont ajoutés au prix du billet. Les acheteurs paient plus, mais vous recevez le prix complet du billet.\",\"HxxXZO\":\"La couleur principale de la marque utilisée pour les boutons et les éléments en surbrillance\",\"z0KrIG\":\"L'heure programmée est requise\",\"EWErQh\":\"L'heure programmée doit être dans le futur\",\"UNd0OU\":[\"La séance de \\\"\",[\"title\"],\"\\\" initialement prévue le \",[\"0\"],\" a été reprogrammée.\"],\"DEcpfp\":\"Le corps du modèle contient une syntaxe Liquid invalide. Veuillez la corriger et réessayer.\",\"injXD7\":\"Le numéro de TVA n'a pas pu être validé. Veuillez vérifier le numéro et réessayer.\",\"A4UmDy\":\"Théâtre\",\"tDwYhx\":\"Thème et couleurs\",\"O7g4eR\":\"Il n'y a aucune date à venir pour cet événement\",\"HrIl0p\":[\"Aucune liste d'enregistrement n'est limitée à cette date. La liste \\\"\",[\"0\"],\"\\\" enregistre les participants pour toutes les dates — le personnel scannant un billet pour une autre date réussira tout de même.\"],\"dt3TwA\":\"Voici les prix et quantités par défaut pour toutes les dates. Les dates de vente des paliers s'appliquent globalement. Vous pouvez remplacer les prix et les quantités pour des dates individuelles depuis la <0>page Planning des séances.\",\"062KsE\":\"Ces détails sont affichés sur le billet du participant et le résumé de la commande pour cette date uniquement.\",\"5Eu+tn\":\"Ces détails ne seront affichés que si la commande est finalisée avec succès.\",\"jQjwR+\":\"Ces informations remplaceront tout lieu existant pour les séances concernées et apparaîtront sur les billets des participants.\",\"QP3gP+\":\"Ces paramètres s'appliquent uniquement au code d'intégration copié et ne seront pas enregistrés.\",\"HirZe8\":\"Ces modèles seront utilisés comme valeurs par défaut pour tous les événements de votre organisation. Les événements individuels peuvent remplacer ces modèles par leurs propres versions personnalisées.\",\"lzAaG5\":\"Ces modèles remplaceront les paramètres par défaut de l'organisateur pour cet événement uniquement. Si aucun modèle personnalisé n'est défini ici, le modèle de l'organisateur sera utilisé à la place.\",\"UlykKR\":\"Troisième\",\"wkP5FM\":\"Cela s'applique à chaque date correspondante de l'événement, y compris les dates non visibles actuellement. Les participants inscrits à l'une de ces dates seront joignables depuis le composeur de messages une fois la mise à jour terminée.\",\"SOmGDa\":\"Cette liste d'enregistrement est limitée à une séance qui a été annulée, elle ne peut donc plus être utilisée pour les enregistrements.\",\"XBNC3E\":\"Ce code sera utilisé pour suivre les ventes. Seuls les lettres, chiffres, tirets et traits de soulignement sont autorisés.\",\"AaP0M+\":\"Cette combinaison de couleurs peut être difficile à lire pour certains utilisateurs\",\"o1phK/\":[\"Cette date comporte \",[\"orderCount\"],\" commande(s) qui seront concernées.\"],\"F/UtGt\":\"Cette date a été annulée. Vous pouvez toujours la supprimer pour la retirer définitivement.\",\"BLZ7pX\":\"Cette date est dans le passé. Elle sera créée mais ne sera pas visible par les participants dans les dates à venir.\",\"7IIY0z\":\"Cette date est marquée comme épuisée.\",\"bddWMP\":\"Cette date n'est plus disponible. Veuillez sélectionner une autre date.\",\"RzEvf5\":\"Cet événement est terminé\",\"YClrdK\":\"Cet événement n'est pas encore publié\",\"dFJnia\":\"Ceci est le nom de votre organisateur qui sera affiché à vos utilisateurs.\",\"vt7jiq\":\"C'est la seule fois que le secret de signature sera affiché. Veuillez le copier maintenant et le stocker en lieu sûr.\",\"L7dIM7\":\"Ce lien est invalide ou a expiré.\",\"MR5ygV\":\"Ce lien n'est plus valide\",\"9LEqK0\":\"Ce nom est visible par les utilisateurs finaux\",\"QdUMM9\":\"Cette séance est complète\",\"j5FdeA\":\"Cette commande est en cours de traitement.\",\"sjNPMw\":\"Cette commande a été abandonnée. Vous pouvez commencer une nouvelle commande à tout moment.\",\"OhCesD\":\"Cette commande a été annulée. Vous pouvez passer une nouvelle commande à tout moment.\",\"lyD7rQ\":\"Ce profil d'organisateur n'est pas encore publié\",\"9b5956\":\"Cet aperçu montre à quoi ressemblera votre e-mail avec des données d'exemple. Les vrais e-mails utiliseront de vraies valeurs.\",\"uM9Alj\":\"Ce produit est mis en vedette sur la page de l'événement\",\"RqSKdX\":\"Ce produit est épuisé\",\"W12OdJ\":\"Ce rapport est fourni à titre informatif uniquement. Consultez toujours un professionnel de la fiscalité avant d'utiliser ces données à des fins comptables ou fiscales. Veuillez vérifier avec votre tableau de bord Stripe car Hi.Events peut manquer de données historiques.\",\"0Ew0uk\":\"Ce billet vient d'être scanné. Veuillez attendre avant de scanner à nouveau.\",\"FYXq7k\":[\"Cela affectera \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"Ceci sera utilisé pour les notifications et la communication avec vos utilisateurs.\",\"rhsath\":\"Ceci ne sera pas visible pour les clients, mais vous aide à identifier l'affilié.\",\"hV6FeJ\":\"Cadence\",\"+FjWgX\":\"Jeu\",\"kkDQ8m\":\"Jeudi\",\"0GSPnc\":\"Design du Billet\",\"EZC/Cu\":\"Design du billet enregistré avec succès\",\"bbslmb\":\"Concepteur de billets\",\"1BPctx\":\"Billet pour\",\"bgqf+K\":\"Email du détenteur du billet\",\"oR7zL3\":\"Nom du détenteur du billet\",\"HGuXjF\":\"Détenteurs de billets\",\"CMUt3Y\":\"Titulaires de billets\",\"awHmAT\":\"ID du billet\",\"6czJik\":\"Logo du Billet\",\"OkRZ4Z\":\"Nom du billet\",\"t79rDv\":\"Billet introuvable\",\"6tmWch\":\"Billet ou produit\",\"1tfWrD\":\"Aperçu du billet pour\",\"KnjoUA\":\"Prix du billet\",\"tGCY6d\":\"Prix du billet\",\"pGZOcL\":\"Billet renvoyé avec succès\",\"8jLPgH\":\"Type de Billet\",\"X26cQf\":\"URL du billet\",\"8qsbZ5\":\"Billetterie et ventes\",\"zNECqg\":\"billets\",\"6GQNLE\":\"Billets\",\"NRhrIB\":\"Billets et produits\",\"OrWHoZ\":\"Les billets sont automatiquement proposés aux clients en liste d'attente lorsque des places se libèrent.\",\"EUnesn\":\"Billets disponibles\",\"AGRilS\":\"Billets Vendus\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Heure\",\"dMtLDE\":\"à\",\"/jQctM\":\"À\",\"tiI71C\":\"Pour augmenter vos limites, contactez-nous à\",\"ecUA8p\":\"Aujourd'hui\",\"W428WC\":\"Basculer les colonnes\",\"BRMXj0\":\"Demain\",\"UBSG1X\":\"Meilleurs organisateurs (14 derniers jours)\",\"3sZ0xx\":\"Comptes Totaux\",\"EaAPbv\":\"Montant total payé\",\"SMDzqJ\":\"Total des participants\",\"orBECM\":\"Total collecté\",\"k5CU8c\":\"Total des inscriptions\",\"4B7oCp\":\"Frais total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Utilisateurs Totaux\",\"oJjplO\":\"Vues totales\",\"rBZ9pz\":\"Visites\",\"orluER\":\"Suivez la croissance et les performances des comptes par source d'attribution\",\"YwKzpH\":\"Suivi et analytiques\",\"uKOFO5\":\"Vrai si paiement hors ligne\",\"9GsDR2\":\"Vrai si paiement en attente\",\"GUA0Jy\":\"Essayez un autre terme ou filtre\",\"2P/OWN\":\"Essayez d'ajuster vos filtres pour voir plus de dates.\",\"ouM5IM\":\"Essayer un autre e-mail\",\"3DZvE7\":\"Essayer Hi.Events gratuitement\",\"7P/9OY\":\"Ma\",\"vq2WxD\":\"Mar\",\"G3myU+\":\"Mardi\",\"Kz91g/\":\"Turc\",\"GdOhw6\":\"Désactiver le son\",\"KUOhTy\":\"Activer le son\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Tapez \\\"supprimer\\\" pour confirmer\",\"XxecLm\":\"Type de billet\",\"IrVSu+\":\"Impossible de dupliquer le produit. Veuillez vérifier vos informations\",\"Vx2J6x\":\"Impossible de récupérer le participant\",\"h0dx5e\":\"Impossible de rejoindre la liste d'attente\",\"DaE0Hg\":\"Impossible de charger les détails du participant.\",\"GlnD5Y\":\"Impossible de charger les produits pour cette date. Veuillez réessayer.\",\"17VbmV\":\"Impossible d'annuler l'enregistrement\",\"n57zCW\":\"Comptes non attribués\",\"9uI/rE\":\"Annuler\",\"b9SN9q\":\"Référence de commande unique\",\"Ef7StM\":\"Inconnu\",\"ZBAScj\":\"Participant inconnu\",\"MEIAzV\":\"Sans nom\",\"K6L5Mx\":\"Lieu sans nom\",\"X13xGn\":\"Non fiable\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Mettre à jour l'affilié\",\"59qHrb\":\"Mettre à jour la capacité\",\"Gaem9v\":\"Mettre à jour le nom et la description de l'événement\",\"7EhE4k\":\"Mettre à jour le libellé\",\"NPQWj8\":\"Mettre à jour le lieu\",\"75+lpR\":[\"Mise à jour : \",[\"subjectTitle\"],\" — modifications du planning\"],\"UOGHdA\":[\"Mise à jour : \",[\"subjectTitle\"],\" — horaire de la séance modifié\"],\"ogoTrw\":[[\"count\"],\" date(s) mise(s) à jour\"],\"dDuona\":[\"Capacité mise à jour pour \",[\"count\"],\" date(s)\"],\"FT3LSc\":[\"Libellé mis à jour pour \",[\"count\"],\" date(s)\"],\"8EcY1g\":[\"Lieu mis à jour pour \",[\"count\"],\" séance(s)\"],\"gJQsLv\":\"Téléchargez une image de couverture pour votre organisateur\",\"4kEGqW\":\"Téléchargez un logo pour votre organisateur\",\"lnCMdg\":\"Téléverser l’image\",\"29w7p6\":\"Téléchargement de l'image...\",\"HtrFfw\":\"L'URL est requise\",\"vzWC39\":\"USB\",\"td5pxI\":\"Scanner USB actif\",\"dyTklH\":\"Scanner USB en pause\",\"OHJXlK\":\"Utilisez <0>les modèles Liquid pour personnaliser vos e-mails\",\"g0WJMu\":\"Utiliser la liste toutes dates\",\"0k4cdb\":\"Utiliser les détails de commande pour tous les participants. Les noms et e-mails des participants correspondront aux informations de l'acheteur.\",\"MKK5oI\":\"Utiliser la liste toutes dates, ou créer une liste pour cette date ?\",\"bA31T4\":\"Utiliser les informations de l'acheteur pour tous les participants\",\"rnoQsz\":\"Utilisé pour les bordures, les surlignages et le style du code QR\",\"BV4L/Q\":\"Analytique UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validation de votre numéro de TVA...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Numéro de TVA\",\"pnVh83\":\"Numéro de TVA\",\"CabI04\":\"Le numéro de TVA ne doit pas contenir d'espaces\",\"PMhxAR\":\"Le numéro de TVA doit commencer par un code pays de 2 lettres suivi de 8 à 15 caractères alphanumériques (par ex., DE123456789)\",\"gPgdNV\":\"Numéro de TVA validé avec succès\",\"RUMiLy\":\"La validation du numéro de TVA a échoué\",\"vqji3Y\":\"La validation du numéro de TVA a échoué. Veuillez vérifier votre numéro de TVA.\",\"8dENF9\":\"TVA sur les frais\",\"ZutOKU\":\"Taux de TVA\",\"+KJZt3\":\"Assujetti à la TVA\",\"Nfbg76\":\"Paramètres TVA enregistrés avec succès\",\"UvYql/\":\"Paramètres TVA enregistrés. Nous validons votre numéro de TVA en arrière-plan.\",\"bXn1Jz\":\"Paramètres de TVA mis à jour\",\"tJylUv\":\"Traitement TVA pour les frais de plateforme\",\"FlGprQ\":\"Traitement TVA pour les frais de plateforme : les entreprises enregistrées à la TVA dans l'UE peuvent utiliser le mécanisme d'autoliquidation (0 % - Article 196 de la Directive TVA 2006/112/CE). Les entreprises non enregistrées à la TVA sont soumises à la TVA irlandaise à 23 %.\",\"516oLj\":\"Service de validation TVA temporairement indisponible\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"TVA : non assujetti\",\"AdWhjZ\":\"Code de vérification\",\"QDEWii\":\"Vérifié\",\"wCKkSr\":\"Vérifier l'e-mail\",\"/IBv6X\":\"Vérifiez votre e-mail\",\"e/cvV1\":\"Vérification...\",\"fROFIL\":\"Vietnamien\",\"p5nYkr\":\"Tout voir\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Voir toutes les fonctionnalités\",\"RnvnDc\":\"Voir tous les messages envoyés sur la plateforme\",\"+WFMis\":\"Consultez et téléchargez des rapports pour tous vos événements. Seules les commandes terminées sont incluses.\",\"c7VN/A\":\"Voir les réponses\",\"SZw9tS\":\"Voir les détails\",\"9+84uW\":[\"Voir les détails de \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Voir l'événement\",\"c6SXHN\":\"Voir la page de l'événement\",\"n6EaWL\":\"Voir les journaux\",\"OaKTzt\":\"Voir la carte\",\"zNZNMs\":\"Voir le message\",\"67OJ7t\":\"Voir la commande\",\"tKKZn0\":\"Voir les détails de la commande\",\"KeCXJu\":\"Consultez les détails des commandes, effectuez des remboursements et renvoyez les confirmations.\",\"9jnAcN\":\"Voir la page d'accueil de l'organisateur\",\"1J/AWD\":\"Voir le billet\",\"N9FyyW\":\"Consultez, modifiez et exportez vos participants inscrits.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"En attente\",\"quR8Qp\":\"En attente de paiement\",\"KrurBH\":\"En attente de scan…\",\"u0n+wz\":\"Liste d'attente\",\"3RXFtE\":\"Liste d'attente activée\",\"TwnTPy\":\"Offre de liste d'attente expirée\",\"NzIvKm\":\"Liste d'attente déclenchée\",\"aUi/Dz\":\"Attention : Il s'agit de la configuration par défaut du système. Les modifications affecteront tous les comptes auxquels aucune configuration spécifique n'est assignée.\",\"qeygIa\":\"Me\",\"aT/44s\":\"Nous n'avons pas pu copier cette connexion Stripe. Veuillez réessayer.\",\"RRZDED\":\"Nous n'avons trouvé aucune commande associée à cette adresse e-mail.\",\"2RZK9x\":\"Nous n'avons pas trouvé la commande que vous recherchez. Le lien a peut-être expiré ou les détails de la commande ont changé.\",\"nefMIK\":\"Nous n'avons pas trouvé le billet que vous recherchez. Le lien a peut-être expiré ou les détails du billet ont changé.\",\"miysJh\":\"Nous n'avons pas pu trouver cette commande. Elle a peut-être été supprimée.\",\"ADsQ23\":\"Nous n'avons pas pu joindre Stripe à l'instant. Veuillez réessayer dans un moment.\",\"HJKdzP\":\"Un problème est survenu lors du chargement de cette page. Veuillez réessayer.\",\"jegrvW\":\"Nous nous appuyons sur Stripe pour vous verser directement sur votre compte bancaire.\",\"IfN2Qo\":\"Nous recommandons un logo carré avec des dimensions minimales de 200x200px\",\"wJzo/w\":\"Nous recommandons des dimensions de 400px par 400px et une taille maximale de 5 Mo\",\"KRCDqH\":\"Nous utilisons des cookies pour comprendre comment le site est utilisé et améliorer votre expérience.\",\"x8rEDQ\":\"Nous n'avons pas pu valider votre numéro de TVA après plusieurs tentatives. Nous continuerons d'essayer en arrière-plan. Veuillez revérifier plus tard.\",\"iy+M+c\":[\"Nous vous préviendrons par e-mail si une place se libère pour \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Nous ouvrirons un composeur de message avec un modèle pré-rempli après l'enregistrement. Vous le vérifiez et l'envoyez — rien n'est envoyé automatiquement.\",\"q1BizZ\":\"Nous enverrons vos billets à cet e-mail\",\"ZOmUYW\":\"Nous validerons votre numéro de TVA en arrière-plan. S'il y a des problèmes, nous vous en informerons.\",\"LKjHr4\":[\"Nous avons modifié le planning de \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affectant \",[\"affectedCount\"],\" séance(s).\"],\"Fq/Nx7\":\"Nous avons envoyé un code de vérification à 5 chiffres à :\",\"GdWB+V\":\"Webhook créé avec succès\",\"2X4ecw\":\"Webhook supprimé avec succès\",\"ndBv0v\":\"Intégrations webhook\",\"CThMKa\":\"Journaux du Webhook\",\"I0adYQ\":\"Secret de signature du Webhook\",\"nuh/Wq\":\"URL du Webhook\",\"8BMPMe\":\"Le webhook n'enverra pas de notifications\",\"FSaY52\":\"Le webhook enverra des notifications\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Site web\",\"0f7U0k\":\"Mer\",\"VAcXNz\":\"Mercredi\",\"64X6l4\":\"semaine\",\"4XSc4l\":\"Hebdomadaire\",\"IAUiSh\":\"semaines\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bon retour\",\"QDWsl9\":[\"Bienvenue sur \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bienvenue sur \",[\"0\"],\", voici une liste de tous vos événements\"],\"DDbx7K\":\"Bien-être\",\"ywRaYa\":\"À quelle heure ?\",\"FaSXqR\":\"Quel type d'événement ?\",\"0WyYF4\":\"Ce que voit le personnel non authentifié\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Lorsqu'un enregistrement est supprimé\",\"RPe6bE\":\"Lorsqu'une date est annulée sur un événement récurrent\",\"Gmd0hv\":\"Lorsqu'un nouveau participant est créé\",\"zyIyPe\":\"Lorsqu'un nouvel événement est créé\",\"Lc18qn\":\"Lorsqu'une nouvelle commande est créée\",\"dfkQIO\":\"Lorsqu'un nouveau produit est créé\",\"8OhzyY\":\"Lorsqu'un produit est supprimé\",\"tRXdQ9\":\"Lorsqu'un produit est mis à jour\",\"9L9/28\":\"Lorsqu'un produit est épuisé, les clients peuvent rejoindre une liste d'attente pour être notifiés dès que des places se libèrent.\",\"Q7CWxp\":\"Lorsqu'un participant est annulé\",\"IuUoyV\":\"Lorsqu'un participant est enregistré\",\"nBVOd7\":\"Lorsqu'un participant est mis à jour\",\"t7cuMp\":\"Lorsqu'un événement est archivé\",\"gtoSzE\":\"Lorsqu'un événement est mis à jour\",\"ny2r8d\":\"Lorsqu'une commande est annulée\",\"c9RYbv\":\"Lorsqu'une commande est marquée comme payée\",\"ejMDw1\":\"Lorsqu'une commande est remboursée\",\"fVPt0F\":\"Lorsqu'une commande est mise à jour\",\"bcYlvb\":\"Quand l'enregistrement ferme\",\"XIG669\":\"Quand l'enregistrement ouvre\",\"403wpZ\":\"Lorsque cette option est activée, les nouveaux événements permettront aux participants de gérer leurs propres détails de billet via un lien sécurisé. Cela peut être remplacé par événement.\",\"blXLKj\":\"Lorsqu'elle est activée, les nouveaux événements afficheront une case d'opt-in marketing lors du paiement. Cela peut être remplacé par événement.\",\"Kj0Txn\":\"Lorsqu'activé, aucun frais d'application ne sera facturé sur les transactions Stripe Connect. Utilisez ceci pour les pays où les frais d'application ne sont pas pris en charge.\",\"tMqezN\":\"Indique si des remboursements sont en cours de traitement\",\"uchB0M\":\"Aperçu du widget\",\"uvIqcj\":\"Atelier\",\"EpknJA\":\"Écrivez votre message ici...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"an\",\"zkWmBh\":\"Annuel\",\"+BGee5\":\"ans\",\"X/azM1\":\"Oui - J'ai un numéro d'enregistrement TVA UE valide\",\"Tz5oXG\":\"Oui, annuler ma commande\",\"QlSZU0\":[\"Vous usurpez l'identité de <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Vous émettez un remboursement partiel. Le client sera remboursé de \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Vous pouvez configurer des frais de service supplémentaires et des taxes dans les paramètres de votre compte.\",\"rj3A7+\":\"Vous pourrez remplacer cette valeur pour des dates individuelles ultérieurement.\",\"paWwQ0\":\"Vous pouvez toujours proposer des billets manuellement si nécessaire.\",\"jTDzpA\":\"Vous ne pouvez pas archiver le dernier organisateur actif de votre compte.\",\"5VGIlq\":\"Vous avez atteint votre limite de messagerie.\",\"casL1O\":\"Vous avez ajouté des taxes et des frais à un produit gratuit. Voulez-vous les supprimer ?\",\"9jJNZY\":\"Vous devez reconnaître vos responsabilités avant d'enregistrer\",\"pCLes8\":\"Vous devez accepter de recevoir des messages\",\"FVTVBy\":\"Vous devez vérifier votre adresse e-mail avant de pouvoir mettre à jour le statut de l'organisateur.\",\"ze4bi/\":\"Vous devez créer au moins une séance avant de pouvoir ajouter des participants à cet événement récurrent.\",\"w65ZgF\":\"Vous devez vérifier l'e-mail de votre compte avant de pouvoir modifier les modèles d'e-mail.\",\"FRl8Jv\":\"Vous devez vérifier l'adresse e-mail de votre compte avant de pouvoir envoyer des messages.\",\"88cUW+\":\"Vous recevez\",\"O6/3cu\":\"Vous pourrez configurer les dates, les plannings et les règles de récurrence à l'étape suivante.\",\"zKAheG\":\"Vous modifiez les horaires des séances\",\"MNFIxz\":[\"Vous allez à \",[\"0\"],\" !\"],\"qGZz0m\":\"Vous êtes sur la liste d'attente !\",\"/5HL6k\":\"Une place vous a été proposée !\",\"gbjFFH\":\"Vous avez modifié l'horaire de la séance\",\"p/Sa0j\":\"Votre compte a des limites de messagerie. Pour augmenter vos limites, contactez-nous à\",\"x/xjzn\":\"Vos affiliés ont été exportés avec succès.\",\"TF37u6\":\"Vos participants ont été exportés avec succès.\",\"79lXGw\":\"Votre liste d'enregistrement a été créée avec succès. Partagez le lien ci-dessous avec votre personnel d'enregistrement.\",\"BnlG9U\":\"Votre commande actuelle sera perdue.\",\"nBqgQb\":\"Votre e-mail\",\"GG1fRP\":\"Votre événement est en ligne !\",\"ifRqmm\":\"Votre message a été envoyé avec succès !\",\"0/+Nn9\":\"Vos messages apparaîtront ici\",\"/Rj5P4\":\"Votre nom\",\"PFjJxY\":\"Votre nouveau mot de passe doit comporter au moins 8 caractères.\",\"gzrCuN\":\"Les détails de votre commande ont été mis à jour. Un e-mail de confirmation a été envoyé à la nouvelle adresse e-mail.\",\"naQW82\":\"Votre commande a été annulée.\",\"bhlHm/\":\"Votre commande est en attente de paiement\",\"XeNum6\":\"Vos commandes ont été exportées avec succès.\",\"Xd1R1a\":\"Adresse de votre organisateur\",\"WWYHKD\":\"Votre paiement est protégé par un cryptage de niveau bancaire\",\"5b3QLi\":\"Votre forfait\",\"N4Zkqc\":\"Votre filtre de date enregistré n'est plus disponible — affichage de toutes les dates.\",\"FNO5uZ\":\"Votre billet reste valide — aucune action n'est nécessaire à moins que le nouvel horaire ne vous convienne pas. Répondez à cet e-mail si vous avez des questions.\",\"CnZ3Ou\":\"Vos billets ont été confirmés.\",\"EmFsMZ\":\"Votre numéro de TVA est en file d'attente pour validation\",\"QBlhh4\":\"Votre numéro de TVA sera validé lorsque vous enregistrerez\",\"fT9VLt\":\"Votre offre de liste d'attente a expiré et nous n'avons pas pu finaliser votre commande. Veuillez rejoindre à nouveau la liste d'attente pour être notifié lorsque des places se libèrent.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Rien à afficher pour le moment'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>sorti avec succès\"],\"KMgp2+\":[[\"0\"],\" disponible\"],\"Pmr5xp\":[[\"0\"],\" créé avec succès\"],\"FImCSc\":[[\"0\"],\" mis à jour avec succès\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" jours, \",[\"hours\"],\" heures, \",[\"minutes\"],\" minutes, et \",[\"seconds\"],\" secondes\"],\"f3RdEk\":[[\"hours\"],\" heures, \",[\"minutes\"],\" minutes, et \",[\"seconds\"],\" secondes\"],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"secondes\"],\" secondes\"],\"NlQ0cx\":[\"Premier événement de \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://votre-siteweb.com\",\"qnSLLW\":\"<0>Veuillez entrer le prix hors taxes et frais.<1>Les taxes et frais peuvent être ajoutés ci-dessous.\",\"ZjMs6e\":\"<0>Le nombre de produits disponibles pour ce produit<1>Cette valeur peut être remplacée s'il existe des <2>Limites de Capacité associées à ce produit.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minute et 0 seconde\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123, rue Principale\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Un champ de date. Parfait pour demander une date de naissance, etc.\",\"6euFZ/\":[\"Un \",[\"type\"],\" par défaut est automatiquement appliqué à tous les nouveaux produits. Vous pouvez le remplacer pour chaque produit.\"],\"SMUbbQ\":\"Une entrée déroulante ne permet qu'une seule sélection\",\"qv4bfj\":\"Des frais, comme des frais de réservation ou des frais de service\",\"POT0K/\":\"Un montant fixe par produit. Par exemple, 0,50 $ par produit\",\"f4vJgj\":\"Une saisie de texte sur plusieurs lignes\",\"OIPtI5\":\"Un pourcentage du prix du produit. Par exemple, 3,5 % du prix du produit\",\"ZthcdI\":\"Un code promo sans réduction peut être utilisé pour révéler des produits cachés.\",\"AG/qmQ\":\"Une option Radio comporte plusieurs options, mais une seule peut être sélectionnée.\",\"h179TP\":\"Une brève description de l'événement qui sera affichée dans les résultats des moteurs de recherche et lors du partage sur les réseaux sociaux. Par défaut, la description de l'événement sera utilisée\",\"WKMnh4\":\"Une saisie de texte sur une seule ligne\",\"BHZbFy\":\"Une seule question par commande. Par exemple, Quelle est votre adresse de livraison ?\",\"Fuh+dI\":\"Une seule question par produit. Par exemple, Quelle est votre taille de t-shirt ?\",\"RlJmQg\":\"Une taxe standard, comme la TVA ou la TPS\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Accepter les virements bancaires, chèques ou autres méthodes de paiement hors ligne\",\"hrvLf4\":\"Accepter les paiements par carte bancaire avec Stripe\",\"bfXQ+N\":\"Accepter l'invitation\",\"AeXO77\":\"Compte\",\"lkNdiH\":\"Nom du compte\",\"Puv7+X\":\"Paramètres du compte\",\"OmylXO\":\"Compte mis à jour avec succès\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activer\",\"5T2HxQ\":\"Date d'activation\",\"F6pfE9\":\"Actif\",\"/PN1DA\":\"Ajouter une description pour cette liste de pointage\",\"0/vPdA\":\"Ajoutez des notes sur le participant. Celles-ci ne seront pas visibles par le participant.\",\"Or1CPR\":\"Ajoutez des notes sur le participant...\",\"l3sZO1\":\"Ajoutez des notes concernant la commande. Elles ne seront pas visibles par le client.\",\"xMekgu\":\"Ajoutez des notes concernant la commande...\",\"PGPGsL\":\"Ajouter une description\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Ajoutez des instructions pour les paiements hors ligne (par exemple, les détails du virement bancaire, où envoyer les chèques, les délais de paiement)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Ajouter un nouveau\",\"TZxnm8\":\"Ajouter une option\",\"24l4x6\":\"Ajouter un produit\",\"8q0EdE\":\"Ajouter un produit à la catégorie\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Ajouter une taxe ou des frais\",\"goOKRY\":\"Ajouter un niveau\",\"oZW/gT\":\"Ajouter au calendrier\",\"pn5qSs\":\"Informations supplémentaires\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adresse\",\"NY/x1b\":\"Adresse Ligne 1\",\"POdIrN\":\"Adresse Ligne 1\",\"cormHa\":\"Adresse Ligne 2\",\"gwk5gg\":\"Adresse Ligne 2\",\"U3pytU\":\"Administrateur\",\"HLDaLi\":\"Les utilisateurs administrateurs ont un accès complet aux événements et aux paramètres du compte.\",\"W7AfhC\":\"Tous les participants à cet événement\",\"cde2hc\":\"Tous les produits\",\"5CQ+r0\":\"Autoriser les participants associés à des commandes impayées à s'enregistrer\",\"ipYKgM\":\"Autoriser l'indexation des moteurs de recherche\",\"LRbt6D\":\"Autoriser les moteurs de recherche à indexer cet événement\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Incroyable, Événement, Mots-clés...\",\"hehnjM\":\"Montant\",\"R2O9Rg\":[\"Montant payé (\",[\"0\"],\")\"],\"V7MwOy\":\"Une erreur s'est produite lors du chargement de la page\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Une erreur inattendue est apparue.\",\"byKna+\":\"Une erreur inattendue est apparue. Veuillez réessayer.\",\"ubdMGz\":\"Toute question des détenteurs de produits sera envoyée à cette adresse e-mail. Elle sera également utilisée comme adresse de réponse pour tous les e-mails envoyés depuis cet événement\",\"aAIQg2\":\"Apparence\",\"Ym1gnK\":\"appliqué\",\"sy6fss\":[\"S'applique à \",[\"0\"],\" produits\"],\"kadJKg\":\"S'applique à 1 produit\",\"DB8zMK\":\"Appliquer\",\"GctSSm\":\"Appliquer le code promotionnel\",\"ARBThj\":[\"Appliquer ce \",[\"type\"],\" à tous les nouveaux produits\"],\"S0ctOE\":\"Archiver l'événement\",\"TdfEV7\":\"Archivé\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Êtes-vous sûr de vouloir activer ce participant\xA0?\",\"TvkW9+\":\"Êtes-vous sûr de vouloir archiver cet événement\xA0?\",\"/CV2x+\":\"Êtes-vous sûr de vouloir annuler ce participant\xA0? Cela annulera leur billet\",\"YgRSEE\":\"Etes-vous sûr de vouloir supprimer ce code promo ?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Êtes-vous sûr de vouloir créer un brouillon pour cet événement\xA0? Cela rendra l'événement invisible au public\",\"mEHQ8I\":\"Êtes-vous sûr de vouloir rendre cet événement public\xA0? Cela rendra l'événement visible au public\",\"s4JozW\":\"Êtes-vous sûr de vouloir restaurer cet événement\xA0? Il sera restauré en tant que brouillon.\",\"vJuISq\":\"Êtes-vous sûr de vouloir supprimer cette Affectation de Capacité?\",\"baHeCz\":\"Êtes-vous sûr de vouloir supprimer cette liste de pointage\xA0?\",\"LBLOqH\":\"Demander une fois par commande\",\"wu98dY\":\"Demander une fois par produit\",\"ss9PbX\":\"Participant\",\"m0CFV2\":\"Détails des participants\",\"QKim6l\":\"Participant non trouvé\",\"R5IT/I\":\"Notes du participant\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Billet de l'invité\",\"9SZT4E\":\"Participants\",\"iPBfZP\":\"Invités enregistrés\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Redimensionnement automatique\",\"vZ5qKF\":\"Redimensionner automatiquement la hauteur du widget en fonction du contenu. Lorsque désactivé, le widget remplira la hauteur du conteneur.\",\"4lVaWA\":\"En attente d'un paiement hors ligne\",\"2rHwhl\":\"En attente d'un paiement hors ligne\",\"3wF4Q/\":\"En attente de paiement\",\"ioG+xt\":\"En attente de paiement\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Organisateur génial Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Retour à la page de l'événement\",\"VCoEm+\":\"Retour connexion\",\"k1bLf+\":\"Couleur de fond\",\"I7xjqg\":\"Type d'arrière-plan\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Adresse de facturation\",\"/xC/im\":\"Paramètres de facturation\",\"rp/zaT\":\"Portugais brésilien\",\"whqocw\":\"En vous inscrivant, vous acceptez nos <0>Conditions d'utilisation et notre <1>Politique de confidentialité.\",\"bcCn6r\":\"Type de calcul\",\"+8bmSu\":\"Californie\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Annuler\",\"Gjt/py\":\"Annuler le changement d'e-mail\",\"tVJk4q\":\"Annuler la commande\",\"Os6n2a\":\"annuler la commande\",\"Mz7Ygx\":[\"Annuler la commande \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Annulé\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacité\",\"V6Q5RZ\":\"Affectation de Capacité créée avec succès\",\"k5p8dz\":\"Affectation de Capacité supprimée avec succès\",\"nDBs04\":\"Gestion de capacité\",\"ddha3c\":\"Les catégories vous permettent de regrouper des produits ensemble. Par exemple, vous pouvez avoir une catégorie pour \\\"Billets\\\" et une autre pour \\\"Marchandise\\\".\",\"iS0wAT\":\"Les catégories vous aident à organiser vos produits. Ce titre sera affiché sur la page publique de l'événement.\",\"eorM7z\":\"Catégories réorganisées avec succès.\",\"3EXqwa\":\"Catégorie créée avec succès\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Changer le mot de passe\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Enregistrer \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Enregistrer et marquer la commande comme payée\",\"QYLpB4\":\"Enregistrement uniquement\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Découvrez cet événement !\",\"gXcPxc\":\"Enregistrement\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Liste de pointage supprimée avec succès\",\"+hBhWk\":\"La liste de pointage a expiré\",\"mBsBHq\":\"La liste de pointage n'est pas active\",\"vPqpQG\":\"Liste de pointage non trouvée\",\"tejfAy\":\"Listes de pointage\",\"hD1ocH\":\"URL de pointage copiée dans le presse-papiers\",\"CNafaC\":\"Les options de case à cocher permettent plusieurs sélections\",\"SpabVf\":\"Cases à cocher\",\"CRu4lK\":\"Enregistré\",\"znIg+z\":\"Paiement\",\"1WnhCL\":\"Paramètres de paiement\",\"6imsQS\":\"Chinois simplifié\",\"JjkX4+\":\"Choisissez une couleur pour votre arrière-plan\",\"/Jizh9\":\"Choisissez un compte\",\"3wV73y\":\"Ville\",\"FG98gC\":\"Effacer le texte de recherche\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Cliquez pour copier\",\"yz7wBu\":\"Fermer\",\"62Ciis\":\"Fermer la barre latérale\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Le code doit comporter entre 3 et 50 caractères\",\"oqr9HB\":\"Réduire ce produit lorsque la page de l'événement est initialement chargée\",\"jZlrte\":\"Couleur\",\"Vd+LC3\":\"La couleur doit être un code couleur hexadécimal valide. Exemple\xA0: #ffffff\",\"1HfW/F\":\"Couleurs\",\"VZeG/A\":\"À venir\",\"yPI7n9\":\"Mots-clés séparés par des virgules qui décrivent l'événement. Ceux-ci seront utilisés par les moteurs de recherche pour aider à catégoriser et indexer l'événement.\",\"NPZqBL\":\"Complétez la commande\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Paiement complet\",\"qqWcBV\":\"Complété\",\"6HK5Ct\":\"Commandes terminées\",\"NWVRtl\":\"Commandes terminées\",\"DwF9eH\":\"Code du composant\",\"Tf55h7\":\"Réduction configurée\",\"7VpPHA\":\"Confirmer\",\"ZaEJZM\":\"Confirmer le changement d'e-mail\",\"yjkELF\":\"Confirmer le nouveau mot de passe\",\"xnWESi\":\"Confirmez le mot de passe\",\"p2/GCq\":\"Confirmez le mot de passe\",\"wnDgGj\":\"Confirmation de l'adresse e-mail...\",\"pbAk7a\":\"Connecter la bande\",\"UMGQOh\":\"Connectez-vous avec Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Détails de connexion\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continuer\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Texte du bouton Continuer\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copié\",\"T5rdis\":\"copié dans le presse-papier\",\"he3ygx\":\"Copie\",\"r2B2P8\":\"Copier l'URL de pointage\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copier le lien\",\"E6nRW7\":\"Copier le lien\",\"JNCzPW\":\"Pays\",\"IF7RiR\":\"Couverture\",\"hYgDIe\":\"Créer\",\"b9XOHo\":[\"Créer \",[\"0\"]],\"k9RiLi\":\"Créer un produit\",\"6kdXbW\":\"Créer un code promotionnel\",\"n5pRtF\":\"Créer un billet\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"créer un organisateur\",\"ipP6Ue\":\"Créer un participant\",\"VwdqVy\":\"Créer une Affectation de Capacité\",\"EwoMtl\":\"Créer une catégorie\",\"XletzW\":\"Créer une catégorie\",\"WVbTwK\":\"Créer une liste de pointage\",\"uN355O\":\"Créer un évènement\",\"BOqY23\":\"Créer un nouveau\",\"kpJAeS\":\"Créer un organisateur\",\"a0EjD+\":\"Créer un produit\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Créer un code promotionnel\",\"B3Mkdt\":\"Créer une question\",\"UKfi21\":\"Créer une taxe ou des frais\",\"d+F6q9\":\"Créé\",\"Q2lUR2\":\"Devise\",\"DCKkhU\":\"Mot de passe actuel\",\"uIElGP\":\"URL des cartes personnalisées\",\"UEqXyt\":\"Plage personnalisée\",\"876pfE\":\"Client\",\"QOg2Sf\":\"Personnaliser les paramètres de courrier électronique et de notification pour cet événement\",\"Y9Z/vP\":\"Personnalisez la page d'accueil de l'événement et la messagerie de paiement\",\"2E2O5H\":\"Personnaliser les divers paramètres de cet événement\",\"iJhSxe\":\"Personnalisez les paramètres SEO pour cet événement\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Zone dangereuse\",\"ZQKLI1\":\"Zone de Danger\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date et heure\",\"JJhRbH\":\"Capacité du premier jour\",\"cnGeoo\":\"Supprimer\",\"jRJZxD\":\"Supprimer la Capacité\",\"VskHIx\":\"Supprimer la catégorie\",\"Qrc8RZ\":\"Supprimer la liste de pointage\",\"WHf154\":\"Supprimer le code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Description\",\"YC3oXa\":\"Description pour le personnel de pointage\",\"URmyfc\":\"Détails\",\"1lRT3t\":\"Désactiver cette capacité suivra les ventes mais ne les arrêtera pas lorsque la limite sera atteinte\",\"H6Ma8Z\":\"Rabais\",\"ypJ62C\":\"Rabais %\",\"3LtiBI\":[\"Remise en \",[\"0\"]],\"C8JLas\":\"Type de remise\",\"1QfxQT\":\"Ignorer\",\"DZlSLn\":\"Étiquette du document\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Produit de don / Payez ce que vous voulez\",\"OvNbls\":\"Télécharger .ics\",\"kodV18\":\"Télécharger CSV\",\"CELKku\":\"Télécharger la facture\",\"LQrXcu\":\"Télécharger la facture\",\"QIodqd\":\"Télécharger le code QR\",\"yhjU+j\":\"Téléchargement de la facture\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Sélection déroulante\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Dupliquer l'événement\",\"3ogkAk\":\"Dupliquer l'événement\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Options de duplication\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Lève tôt\",\"ePK91l\":\"Modifier\",\"N6j2JH\":[\"Modifier \",[\"0\"]],\"kBkYSa\":\"Modifier la Capacité\",\"oHE9JT\":\"Modifier l'Affectation de Capacité\",\"j1Jl7s\":\"Modifier la catégorie\",\"FU1gvP\":\"Modifier la liste de pointage\",\"iFgaVN\":\"Modifier le code\",\"jrBSO1\":\"Modifier l'organisateur\",\"tdD/QN\":\"Modifier le produit\",\"n143Tq\":\"Modifier la catégorie de produit\",\"9BdS63\":\"Modifier le code promotionnel\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Modifier la question\",\"poTr35\":\"Modifier l'utilisateur\",\"GTOcxw\":\"Modifier l'utilisateur\",\"pqFrv2\":\"par exemple. 2,50 pour 2,50$\",\"3yiej1\":\"par exemple. 23,5 pour 23,5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Paramètres de courrier électronique et de notification\",\"ATGYL1\":\"Adresse e-mail\",\"hzKQCy\":\"Adresse e-mail\",\"HqP6Qf\":\"Changement d'e-mail annulé avec succès\",\"mISwW1\":\"Changement d'e-mail en attente\",\"APuxIE\":\"E-mail de confirmation renvoyé\",\"YaCgdO\":\"E-mail de confirmation renvoyé avec succès\",\"jyt+cx\":\"Message de pied de page de l'e-mail\",\"I6F3cp\":\"E-mail non vérifié\",\"NTZ/NX\":\"Code d'intégration\",\"4rnJq4\":\"Script d'intégration\",\"8oPbg1\":\"Activer la facturation\",\"j6w7d/\":\"Activer cette capacité pour arrêter les ventes de produits lorsque la limite est atteinte\",\"VFv2ZC\":\"Date de fin\",\"237hSL\":\"Terminé\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Anglais\",\"MhVoma\":\"Saisissez un montant hors taxes et frais.\",\"SlfejT\":\"Erreur\",\"3Z223G\":\"Erreur lors de la confirmation de l'adresse e-mail\",\"a6gga1\":\"Erreur lors de la confirmation du changement d'adresse e-mail\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Événement\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Date de l'Événement\",\"0Zptey\":\"Valeurs par défaut des événements\",\"QcCPs8\":\"Détails de l'événement\",\"6fuA9p\":\"Événement dupliqué avec succès\",\"AEuj2m\":\"Page d'accueil de l'événement\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Lieu de l'événement et détails du lieu\",\"OopDbA\":\"Event page\",\"4/If97\":\"La mise à jour du statut de l'événement a échoué. Veuillez réessayer plus tard\",\"btxLWj\":\"Statut de l'événement mis à jour\",\"nMU2d3\":\"URL de l'événement\",\"tst44n\":\"Événements\",\"sZg7s1\":\"Date d'expiration\",\"KnN1Tu\":\"Expire\",\"uaSvqt\":\"Date d'expiration\",\"GS+Mus\":\"Exporter\",\"9xAp/j\":\"Échec de l'annulation du participant\",\"ZpieFv\":\"Échec de l'annulation de la commande\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Échec du téléchargement de la facture. Veuillez réessayer.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Échec du chargement de la liste de pointage\",\"ZQ15eN\":\"Échec du renvoi de l'e-mail du ticket\",\"ejXy+D\":\"Échec du tri des produits\",\"PLUB/s\":\"Frais\",\"/mfICu\":\"Frais\",\"LyFC7X\":\"Filtrer les commandes\",\"cSev+j\":\"Filtres\",\"CVw2MU\":[\"Filtres (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Premier numéro de facture\",\"V1EGGU\":\"Prénom\",\"kODvZJ\":\"Prénom\",\"S+tm06\":\"Le prénom doit comporter entre 1 et 50 caractères\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Première utilisation\",\"TpqW74\":\"Fixé\",\"irpUxR\":\"Montant fixé\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Mot de passe oublié?\",\"2POOFK\":\"Gratuit\",\"P/OAYJ\":\"Produit gratuit\",\"vAbVy9\":\"Produit gratuit, aucune information de paiement requise\",\"nLC6tu\":\"Français\",\"Weq9zb\":\"Général\",\"DDcvSo\":\"Allemand\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Revenir au profil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Agenda\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Ventes brutes\",\"yRg26W\":\"Ventes brutes\",\"R4r4XO\":\"Invités\",\"26pGvx\":\"Avez vous un code de réduction?\",\"V7yhws\":\"bonjour@awesome-events.com\",\"6K/IHl\":\"Voici un exemple d'utilisation du composant dans votre application.\",\"Y1SSqh\":\"Voici le composant React que vous pouvez utiliser pour intégrer le widget dans votre application.\",\"QuhVpV\":[\"Salut \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Caché à la vue du public\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Les questions masquées ne sont visibles que par l'organisateur de l'événement et non par le client.\",\"vLyv1R\":\"Cacher\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Masquer le produit après la date de fin de vente\",\"06s3w3\":\"Masquer le produit avant la date de début de vente\",\"axVMjA\":\"Masquer le produit sauf si l'utilisateur a un code promo applicable\",\"ySQGHV\":\"Masquer le produit lorsqu'il est épuisé\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Masquer ce produit des clients\",\"Da29Y6\":\"Cacher cette question\",\"fvDQhr\":\"Masquer ce niveau aux utilisateurs\",\"lNipG+\":\"Masquer un produit empêchera les utilisateurs de le voir sur la page de l'événement.\",\"ZOBwQn\":\"Conception de la page d'accueil\",\"PRuBTd\":\"Concepteur de page d'accueil\",\"YjVNGZ\":\"Aperçu de la page d'accueil\",\"c3E/kw\":\"Homère\",\"8k8Njd\":\"De combien de minutes le client dispose pour finaliser sa commande. Nous recommandons au moins 15 minutes\",\"ySxKZe\":\"Combien de fois ce code peut-il être utilisé ?\",\"dZsDbK\":[\"Limite de caractères HTML dépassé: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://exemple-maps-service.com/...\",\"uOXLV3\":\"J'accepte les <0>termes et conditions\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Si activé, le personnel d'enregistrement peut marquer les participants comme enregistrés ou marquer la commande comme payée et enregistrer les participants. Si désactivé, les participants associés à des commandes impayées ne peuvent pas être enregistrés.\",\"muXhGi\":\"Si activé, l'organisateur recevra une notification par e-mail lorsqu'une nouvelle commande sera passée\",\"6fLyj/\":\"Si vous n'avez pas demandé ce changement, veuillez immédiatement modifier votre mot de passe.\",\"n/ZDCz\":\"Image supprimée avec succès\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image téléchargée avec succès\",\"VyUuZb\":\"URL de l'image\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactif\",\"T0K0yl\":\"Les utilisateurs inactifs ne peuvent pas se connecter.\",\"kO44sp\":\"Incluez les détails de connexion pour votre événement en ligne. Ces détails seront affichés sur la page récapitulative de la commande et sur le billet du participant.\",\"FlQKnG\":\"Inclure les taxes et les frais dans le prix\",\"Vi+BiW\":[\"Comprend \",[\"0\"],\" produits\"],\"lpm0+y\":\"Comprend 1 produit\",\"UiAk5P\":\"Insérer une image\",\"OyLdaz\":\"Invitation renvoyée\xA0!\",\"HE6KcK\":\"Invitation révoquée\xA0!\",\"SQKPvQ\":\"Inviter un utilisateur\",\"bKOYkd\":\"Facture téléchargée avec succès\",\"alD1+n\":\"Notes de facture\",\"kOtCs2\":\"Numérotation des factures\",\"UZ2GSZ\":\"Paramètres de facturation\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Article\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Étiquette\",\"vXIe7J\":\"Langue\",\"2LMsOq\":\"12 derniers mois\",\"vfe90m\":\"14 derniers jours\",\"aK4uBd\":\"Dernières 24 heures\",\"uq2BmQ\":\"30 derniers jours\",\"bB6Ram\":\"Dernières 48 heures\",\"VlnB7s\":\"6 derniers mois\",\"ct2SYD\":\"7 derniers jours\",\"XgOuA7\":\"90 derniers jours\",\"I3yitW\":\"Dernière connexion\",\"1ZaQUH\":\"Nom de famille\",\"UXBCwc\":\"Nom de famille\",\"tKCBU0\":\"Dernière utilisation\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Laisser vide pour utiliser le mot par défaut \\\"Facture\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Chargement...\",\"wJijgU\":\"Emplacement\",\"sQia9P\":\"Se connecter\",\"zUDyah\":\"Se connecter\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Se déconnecter\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Rendre l'adresse de facturation obligatoire lors du paiement\",\"MU3ijv\":\"Rendre cette question obligatoire\",\"wckWOP\":\"Gérer\",\"onpJrA\":\"Gérer le participant\",\"n4SpU5\":\"Gérer l'événement\",\"WVgSTy\":\"Gérer la commande\",\"1MAvUY\":\"Gérer les paramètres de paiement et de facturation pour cet événement.\",\"cQrNR3\":\"Gérer le profil\",\"AtXtSw\":\"Gérer les taxes et les frais qui peuvent être appliqués à vos produits\",\"ophZVW\":\"Gérer les billets\",\"DdHfeW\":\"Gérez les détails de votre compte et les paramètres par défaut\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Gérez vos utilisateurs et leurs autorisations\",\"1m+YT2\":\"Il faut répondre aux questions obligatoires avant que le client puisse passer à la caisse.\",\"Dim4LO\":\"Ajouter manuellement un participant\",\"e4KdjJ\":\"Ajouter manuellement un participant\",\"vFjEnF\":\"Marquer comme payé\",\"g9dPPQ\":\"Maximum par commande\",\"l5OcwO\":\"Message au participant\",\"Gv5AMu\":\"Message aux participants\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Message à l'acheteur\",\"tNZzFb\":\"Contenu du message\",\"lYDV/s\":\"Envoyer un message à des participants individuels\",\"V7DYWd\":\"Message envoyé\",\"t7TeQU\":\"messages\",\"xFRMlO\":\"Minimum par commande\",\"QYcUEf\":\"Prix minimum\",\"RDie0n\":\"Divers\",\"mYLhkl\":\"Paramètres divers\",\"KYveV8\":\"Zone de texte multiligne\",\"VD0iA7\":\"Options de prix multiples. Parfait pour les produits en prévente, etc.\",\"/bhMdO\":\"Mon incroyable description d'événement...\",\"vX8/tc\":\"Mon incroyable titre d'événement...\",\"hKtWk2\":\"Mon profil\",\"fj5byd\":\"N/A\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nom\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Accédez au participant\",\"qqeAJM\":\"Jamais\",\"7vhWI8\":\"nouveau mot de passe\",\"1UzENP\":\"Non\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Aucun événement archivé à afficher.\",\"q2LEDV\":\"Aucun invité trouvé pour cette commande.\",\"zlHa5R\":\"Aucun invité n'a été ajouté à cette commande.\",\"Wjz5KP\":\"Aucun participant à afficher\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Aucune Affectation de Capacité\",\"a/gMx2\":\"Pas de listes de pointage\",\"tMFDem\":\"Aucune donnée disponible\",\"6Z/F61\":\"Aucune donnée à afficher. Veuillez sélectionner une plage de dates\",\"fFeCKc\":\"Pas de rabais\",\"HFucK5\":\"Aucun événement terminé à afficher.\",\"yAlJXG\":\"Aucun événement à afficher\",\"GqvPcv\":\"Aucun filtre disponible\",\"KPWxKD\":\"Aucun message à afficher\",\"J2LkP8\":\"Aucune commande à afficher\",\"RBXXtB\":\"Aucune méthode de paiement n'est actuellement disponible. Veuillez contacter l'organisateur de l'événement pour obtenir de l'aide.\",\"ZWEfBE\":\"Aucun paiement requis\",\"ZPoHOn\":\"Aucun produit associé à cet invité.\",\"Ya1JhR\":\"Aucun produit disponible dans cette catégorie.\",\"FTfObB\":\"Pas encore de produits\",\"+Y976X\":\"Aucun code promotionnel à afficher\",\"MAavyl\":\"Aucune question n’a été répondue par ce participant.\",\"SnlQeq\":\"Aucune question n'a été posée pour cette commande.\",\"Ev2r9A\":\"Aucun résultat\",\"gk5uwN\":\"Aucun résultat de recherche\",\"RHyZUL\":\"Aucun résultat trouvé.\",\"RY2eP1\":\"Aucune taxe ou frais n'a été ajouté.\",\"EdQY6l\":\"Aucun\",\"OJx3wK\":\"Pas disponible\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notes\",\"jtrY3S\":\"Rien à montrer pour le moment\",\"hFwWnI\":\"Paramètres de notification\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Informer l'organisateur des nouvelles commandes\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Nombre de jours autorisés pour le paiement (laisser vide pour omettre les conditions de paiement sur les factures)\",\"n86jmj\":\"Préfixe de numéro\",\"mwe+2z\":\"Les commandes hors ligne ne sont pas reflétées dans les statistiques de l'événement tant que la commande n'est pas marquée comme payée.\",\"dWBrJX\":\"Le paiement hors ligne a échoué. Veuillez réessayer ou contacter l'organisateur de l'événement.\",\"fcnqjw\":\"Instructions de Paiement Hors Ligne\",\"+eZ7dp\":\"Paiements hors ligne\",\"ojDQlR\":\"Informations sur les paiements hors ligne\",\"u5oO/W\":\"Paramètres des paiements hors ligne\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"En soldes\",\"Ug4SfW\":\"Une fois que vous avez créé un événement, vous le verrez ici.\",\"ZxnK5C\":\"Une fois que vous commencerez à collecter des données, elles apparaîtront ici.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"En cours\",\"z+nuVJ\":\"Événement en ligne\",\"WKHW0N\":\"Détails de l'événement en ligne\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Ouvrir la Page d'Enregistrement\",\"OdnLE4\":\"Ouvrir la barre latérale\",\"ZZEYpT\":[\"Option\xA0\",[\"i\"]],\"oPknTP\":\"Informations supplémentaires optionnelles à apparaître sur toutes les factures (par exemple, conditions de paiement, frais de retard, politique de retour)\",\"OrXJBY\":\"Préfixe optionnel pour les numéros de facture (par exemple, INV-)\",\"0zpgxV\":\"Possibilités\",\"BzEFor\":\"ou\",\"UYUgdb\":\"Commande\",\"mm+eaX\":\"Commande N°\",\"B3gPuX\":\"Commande annulée\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Date de commande\",\"Tol4BF\":\"détails de la commande\",\"WbImlQ\":\"La commande a été annulée et le propriétaire de la commande a été informé.\",\"nAn4Oe\":\"Commande marquée comme payée\",\"uzEfRz\":\"Notes de commande\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Référence de l'achat\",\"acIJ41\":\"Statut de la commande\",\"GX6dZv\":\"Récapitulatif de la commande\",\"tDTq0D\":\"Délai d'expiration de la commande\",\"1h+RBg\":\"Ordres\",\"3y+V4p\":\"Adresse de l'organisation\",\"GVcaW6\":\"Détails de l'organisation\",\"nfnm9D\":\"Nom de l'organisation\",\"G5RhpL\":\"Organisateur\",\"mYygCM\":\"Un organisateur est requis\",\"Pa6G7v\":\"Nom de l'organisateur\",\"l894xP\":\"Les organisateurs ne peuvent gérer que les événements et les produits. Ils ne peuvent pas gérer les utilisateurs, les paramètres du compte ou les informations de facturation.\",\"fdjq4c\":\"Marge intérieure\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Page non trouvée\",\"QbrUIo\":\"Pages vues\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"payé\",\"HVW65c\":\"Produit payant\",\"ZfxaB4\":\"Partiellement remboursé\",\"8ZsakT\":\"Mot de passe\",\"TUJAyx\":\"Le mot de passe doit contenir au minimum 8 caractères\",\"vwGkYB\":\"Mot de passe doit être d'au moins 8 caractères\",\"BLTZ42\":\"Le mot de passe a été réinitialisé avec succès. Veuillez vous connecter avec votre nouveau mot de passe.\",\"f7SUun\":\"les mots de passe ne sont pas les mêmes\",\"aEDp5C\":\"Collez ceci où vous souhaitez que le widget apparaisse.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Paiement\",\"Lg+ewC\":\"Paiement et facturation\",\"DZjk8u\":\"Paramètres de paiement et de facturation\",\"lflimf\":\"Délai de paiement\",\"JhtZAK\":\"Paiement échoué\",\"JEdsvQ\":\"Instructions de paiement\",\"bLB3MJ\":\"Méthodes de paiement\",\"QzmQBG\":\"Fournisseur de paiement\",\"lsxOPC\":\"Paiement reçu\",\"wJTzyi\":\"Statut du paiement\",\"xgav5v\":\"Paiement réussi\xA0!\",\"R29lO5\":\"Conditions de paiement\",\"/roQKz\":\"Pourcentage\",\"vPJ1FI\":\"Montant en pourcentage\",\"xdA9ud\":\"Placez ceci dans le de votre site web.\",\"blK94r\":\"Veuillez ajouter au moins une option\",\"FJ9Yat\":\"Veuillez vérifier que les informations fournies sont correctes\",\"TkQVup\":\"Veuillez vérifier votre e-mail et votre mot de passe et réessayer\",\"sMiGXD\":\"Veuillez vérifier que votre email est valide\",\"Ajavq0\":\"Veuillez vérifier votre courrier électronique pour confirmer votre adresse e-mail\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Veuillez continuer dans le nouvel onglet\",\"hcX103\":\"Veuillez créer un produit\",\"cdR8d6\":\"Veuillez créer un billet\",\"x2mjl4\":\"Veuillez entrer une URL d'image valide qui pointe vers une image.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Veuillez noter\",\"C63rRe\":\"Veuillez retourner sur la page de l'événement pour recommencer.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Veuillez sélectionner au moins un produit\",\"igBrCH\":\"Veuillez vérifier votre adresse e-mail pour accéder à toutes les fonctionnalités\",\"/IzmnP\":\"Veuillez patienter pendant que nous préparons votre facture...\",\"MOERNx\":\"Portugais\",\"qCJyMx\":\"Message après le paiement\",\"g2UNkE\":\"Alimenté par\",\"Rs7IQv\":\"Message de pré-commande\",\"rdUucN\":\"Aperçu\",\"a7u1N9\":\"Prix\",\"CmoB9j\":\"Mode d'affichage des prix\",\"BI7D9d\":\"Prix non défini\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Type de prix\",\"6RmHKN\":\"Couleur primaire\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Couleur du texte primaire\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Imprimer tous les billets\",\"DKwDdj\":\"Imprimer les billets\",\"K47k8R\":\"Produit\",\"1JwlHk\":\"Catégorie de produit\",\"U61sAj\":\"Catégorie de produit mise à jour avec succès.\",\"1USFWA\":\"Produit supprimé avec succès\",\"4Y2FZT\":\"Type de prix du produit\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Ventes de produits\",\"U/R4Ng\":\"Niveau de produit\",\"sJsr1h\":\"Type de produit\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produit(s)\",\"N0qXpE\":\"Produits\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Produits vendus\",\"/u4DIx\":\"Produits vendus\",\"DJQEZc\":\"Produits triés avec succès\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Mise à jour du profil réussie\",\"cl5WYc\":[\"Code promotionnel \",[\"promo_code\"],\" appliqué\"],\"P5sgAk\":\"Code promo\",\"yKWfjC\":\"Page des codes promotionnels\",\"RVb8Fo\":\"Code de promo\",\"BZ9GWa\":\"Les codes promotionnels peuvent être utilisés pour offrir des réductions, un accès en prévente ou fournir un accès spécial à votre événement.\",\"OP094m\":\"Rapport des codes promo\",\"4kyDD5\":\"Fournissez un contexte ou des instructions supplémentaires pour cette question. Utilisez ce champ pour ajouter des conditions générales,\\ndes directives ou toute information importante que les participants doivent connaître avant de répondre.\",\"toutGW\":\"Code QR\",\"LkMOWF\":\"Quantité disponible\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Question supprimée\",\"avf0gk\":\"Description de la question\",\"oQvMPn\":\"titre de question\",\"enzGAL\":\"Des questions\",\"ROv2ZT\":\"Questions et réponses\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Option radio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Destinataire\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Remboursement échoué\",\"n10yGu\":\"Commande de remboursement\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Remboursement en attente\",\"xHpVRl\":\"Statut du remboursement\",\"/BI0y9\":\"Remboursé\",\"fgLNSM\":\"Registre\",\"9+8Vez\":\"Utilisations restantes\",\"tasfos\":\"retirer\",\"t/YqKh\":\"Retirer\",\"t9yxlZ\":\"Rapports\",\"prZGMe\":\"Adresse de facturation requise\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Renvoyer l'e-mail de confirmation\",\"wIa8Qe\":\"Renvoyer l'invitation\",\"VeKsnD\":\"Renvoyer l'e-mail de commande\",\"dFuEhO\":\"Renvoyer l'e-mail du billet\",\"o6+Y6d\":\"Renvoi...\",\"OfhWJH\":\"Réinitialiser\",\"RfwZxd\":\"Réinitialiser le mot de passe\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restaurer l'événement\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Retourner à la page de l'événement\",\"8YBH95\":\"Revenu\",\"PO/sOY\":\"Révoquer l'invitation\",\"GDvlUT\":\"Rôle\",\"ELa4O9\":\"Date de fin de vente\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Date de début de la vente\",\"hBsw5C\":\"Ventes terminées\",\"kpAzPe\":\"Début des ventes\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Sauvegarder\",\"IUwGEM\":\"Sauvegarder les modifications\",\"U65fiW\":\"Enregistrer l'organisateur\",\"UGT5vp\":\"Enregistrer les paramètres\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Recherchez par nom de participant, e-mail ou numéro de commande...\",\"+pr/FY\":\"Rechercher par nom d'événement...\",\"3zRbWw\":\"Recherchez par nom, e-mail ou numéro de commande...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Rechercher par nom...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Rechercher des affectations de capacité...\",\"r9M1hc\":\"Rechercher des listes de pointage...\",\"+0Yy2U\":\"Rechercher des produits\",\"YIix5Y\":\"Recherche...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Couleur secondaire\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Couleur du texte secondaire\",\"02ePaq\":[\"Sélectionner \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Sélectionner une catégorie...\",\"kWI/37\":\"Sélectionnez l'organisateur\",\"ixIx1f\":\"Sélectionner le produit\",\"3oSV95\":\"Sélectionner le niveau de produit\",\"C4Y1hA\":\"Sélectionner des produits\",\"hAjDQy\":\"Sélectionnez le statut\",\"QYARw/\":\"Sélectionnez un billet\",\"OMX4tH\":\"Sélectionner des billets\",\"DrwwNd\":\"Sélectionnez la période\",\"O/7I0o\":\"Sélectionner...\",\"JlFcis\":\"Envoyer\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Envoyer un message\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Envoyer un Message\",\"D7ZemV\":\"Envoyer la confirmation de commande et l'e-mail du ticket\",\"v1rRtW\":\"Envoyer le test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descriptif SEO\",\"/SIY6o\":\"Mots-clés SEO\",\"GfWoKv\":\"Paramètres de référencement\",\"rXngLf\":\"Titre SEO\",\"/jZOZa\":\"Frais de service\",\"Bj/QGQ\":\"Fixer un prix minimum et laisser les utilisateurs payer plus s'ils le souhaitent\",\"L0pJmz\":\"Définir le numéro de départ pour la numérotation des factures. Cela ne peut pas être modifié une fois que les factures ont été générées.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Paramètres\",\"Z8lGw6\":\"Partager\",\"B2V3cA\":\"Partager l'événement\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Afficher la quantité de produit disponible\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Montre plus\",\"izwOOD\":\"Afficher les taxes et les frais séparément\",\"1SbbH8\":\"Affiché au client après son paiement, sur la page récapitulative de la commande.\",\"YfHZv0\":\"Montré au client avant son paiement\",\"CBBcly\":\"Affiche les champs d'adresse courants, y compris le pays\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Zone de texte sur une seule ligne\",\"+P0Cn2\":\"Passer cette étape\",\"YSEnLE\":\"Forgeron\",\"lgFfeO\":\"Épuisé\",\"Mi1rVn\":\"Épuisé\",\"nwtY4N\":\"Une erreur s'est produite\",\"GRChTw\":\"Une erreur s'est produite lors de la suppression de la taxe ou des frais\",\"YHFrbe\":\"Quelque chose s'est mal passé\xA0! Veuillez réessayer\",\"kf83Ld\":\"Quelque chose s'est mal passé.\",\"fWsBTs\":\"Quelque chose s'est mal passé. Veuillez réessayer.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Désolé, ce code promo n'est pas reconnu\",\"65A04M\":\"Espagnol\",\"mFuBqb\":\"Produit standard avec un prix fixe\",\"D3iCkb\":\"Date de début\",\"/2by1f\":\"État ou région\",\"uAQUqI\":\"Statut\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Les paiements Stripe ne sont pas activés pour cet événement.\",\"UJmAAK\":\"Sujet\",\"X2rrlw\":\"Total\",\"zzDlyQ\":\"Succès\",\"b0HJ45\":[\"Succès! \",[\"0\"],\" recevra un e-mail sous peu.\"],\"BJIEiF\":[[\"0\"],\" participant a réussi\"],\"OtgNFx\":\"Adresse e-mail confirmée avec succès\",\"IKwyaF\":\"Changement d'e-mail confirmé avec succès\",\"zLmvhE\":\"Participant créé avec succès\",\"gP22tw\":\"Produit créé avec succès\",\"9mZEgt\":\"Code promotionnel créé avec succès\",\"aIA9C4\":\"Question créée avec succès\",\"J3RJSZ\":\"Participant mis à jour avec succès\",\"3suLF0\":\"Affectation de Capacité mise à jour avec succès\",\"Z+rnth\":\"Liste de pointage mise à jour avec succès\",\"vzJenu\":\"Paramètres de messagerie mis à jour avec succès\",\"7kOMfV\":\"Événement mis à jour avec succès\",\"G0KW+e\":\"Conception de la page d'accueil mise à jour avec succès\",\"k9m6/E\":\"Paramètres de la page d'accueil mis à jour avec succès\",\"y/NR6s\":\"Emplacement mis à jour avec succès\",\"73nxDO\":\"Paramètres divers mis à jour avec succès\",\"4H80qv\":\"Commande mise à jour avec succès\",\"6xCBVN\":\"Paramètres de paiement et de facturation mis à jour avec succès\",\"1Ycaad\":\"Produit mis à jour avec succès\",\"70dYC8\":\"Code promotionnel mis à jour avec succès\",\"F+pJnL\":\"Paramètres de référencement mis à jour avec succès\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"E-mail d'assistance\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Impôt\",\"geUFpZ\":\"Taxes et frais\",\"dFHcIn\":\"Détails fiscaux\",\"wQzCPX\":\"Informations fiscales à apparaître en bas de toutes les factures (par exemple, numéro de TVA, enregistrement fiscal)\",\"0RXCDo\":\"Taxe ou frais supprimés avec succès\",\"ZowkxF\":\"Impôts\",\"qu6/03\":\"Taxes et frais\",\"gypigA\":\"Ce code promotionnel n'est pas valide\",\"5ShqeM\":\"La liste de pointage que vous recherchez n'existe pas.\",\"QXlz+n\":\"La devise par défaut de vos événements.\",\"mnafgQ\":\"Le fuseau horaire par défaut pour vos événements.\",\"o7s5FA\":\"La langue dans laquelle le participant recevra ses courriels.\",\"NlfnUd\":\"Le lien sur lequel vous avez cliqué n'est pas valide.\",\"HsFnrk\":[\"Le nombre maximum de produits pour \",[\"0\"],\" est \",[\"1\"]],\"TSAiPM\":\"La page que vous recherchez n'existe pas\",\"MSmKHn\":\"Le prix affiché au client comprendra les taxes et frais.\",\"6zQOg1\":\"Le prix affiché au client ne comprendra pas les taxes et frais. Ils seront présentés séparément\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Le titre de l'événement qui sera affiché dans les résultats des moteurs de recherche et lors du partage sur les réseaux sociaux. Par défaut, le titre de l'événement sera utilisé\",\"wDx3FF\":\"Il n'y a pas de produits disponibles pour cet événement\",\"pNgdBv\":\"Il n'y a pas de produits disponibles dans cette catégorie\",\"rMcHYt\":\"Un remboursement est en attente. Veuillez attendre qu'il soit terminé avant de demander un autre remboursement.\",\"F89D36\":\"Une erreur est survenue lors du marquage de la commande comme payée\",\"68Axnm\":\"Il y a eu une erreur lors du traitement de votre demande. Veuillez réessayer.\",\"mVKOW6\":\"Une erreur est survenue lors de l'envoi de votre message\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Ce participant a une commande impayée.\",\"mf3FrP\":\"Cette catégorie n'a pas encore de produits.\",\"8QH2Il\":\"Cette catégorie est masquée de la vue publique\",\"xxv3BZ\":\"Cette liste de pointage a expiré\",\"Sa7w7S\":\"Cette liste de pointage a expiré et n'est plus disponible pour les enregistrements.\",\"Uicx2U\":\"Cette liste de pointage est active\",\"1k0Mp4\":\"Cette liste de pointage n'est pas encore active\",\"K6fmBI\":\"Cette liste de pointage n'est pas encore active et n'est pas disponible pour les enregistrements.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Ces informations seront affichées sur la page de paiement, la page de résumé de commande et l'e-mail de confirmation de commande.\",\"XAHqAg\":\"C'est un produit général, comme un t-shirt ou une tasse. Aucun billet ne sera délivré\",\"CNk/ro\":\"Ceci est un événement en ligne\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Ce message sera inclus dans le pied de page de tous les e-mails envoyés à partir de cet événement\",\"55i7Fa\":\"Ce message ne sera affiché que si la commande est terminée avec succès. Les commandes en attente de paiement n'afficheront pas ce message.\",\"RjwlZt\":\"Cette commande a déjà été payée.\",\"5K8REg\":\"Cette commande a déjà été remboursée.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Cette commande a été annulée.\",\"Q0zd4P\":\"Cette commande a expiré. Veuillez recommencer.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Cette commande est terminée.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Cette page de commande n'est plus disponible.\",\"i0TtkR\":\"Cela remplace tous les paramètres de visibilité et masquera le produit de tous les clients.\",\"cRRc+F\":\"Ce produit ne peut pas être supprimé car il est associé à une commande. Vous pouvez le masquer à la place.\",\"3Kzsk7\":\"Ce produit est un billet. Les acheteurs recevront un billet lors de l'achat\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Ce lien de réinitialisation du mot de passe est invalide ou a expiré.\",\"IV9xTT\":\"Cet utilisateur n'est pas actif car il n'a pas accepté son invitation.\",\"5AnPaO\":\"billet\",\"kjAL4v\":\"Billet\",\"dtGC3q\":\"L'e-mail du ticket a été renvoyé au participant\",\"54q0zp\":\"Billets pour\",\"xN9AhL\":[\"Niveau\xA0\",[\"0\"]],\"jZj9y9\":\"Produit par paliers\",\"8wITQA\":\"Les produits à niveaux vous permettent de proposer plusieurs options de prix pour le même produit. C'est parfait pour les produits en prévente ou pour proposer différentes options de prix à différents groupes de personnes.\\\" # fr\",\"nn3mSR\":\"Temps restant :\",\"s/0RpH\":\"Temps utilisés\",\"y55eMd\":\"Nombre d'utilisations\",\"40Gx0U\":\"Fuseau horaire\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Outils\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total avant réductions\",\"NRWNfv\":\"Montant total de la réduction\",\"BxsfMK\":\"Total des frais\",\"2bR+8v\":\"Total des ventes brutes\",\"mpB/d9\":\"Montant total de la commande\",\"m3FM1g\":\"Total remboursé\",\"jEbkcB\":\"Total remboursé\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Taxe total\",\"+zy2Nq\":\"Taper\",\"FMdMfZ\":\"Impossible d'enregistrer le participant\",\"bPWBLL\":\"Impossible de sortir le participant\",\"9+P7zk\":\"Impossible de créer le produit. Veuillez vérifier vos détails\",\"WLxtFC\":\"Impossible de créer le produit. Veuillez vérifier vos détails\",\"/cSMqv\":\"Impossible de créer une question. Veuillez vérifier vos coordonnées\",\"MH/lj8\":\"Impossible de mettre à jour la question. Veuillez vérifier vos coordonnées\",\"nnfSdK\":\"Clients uniques\",\"Mqy/Zy\":\"États-Unis\",\"NIuIk1\":\"Illimité\",\"/p9Fhq\":\"Disponible illimité\",\"E0q9qH\":\"Utilisations illimitées autorisées\",\"h10Wm5\":\"Commande impayée\",\"ia8YsC\":\"A venir\",\"TlEeFv\":\"Événements à venir\",\"L/gNNk\":[\"Mettre à jour \",[\"0\"]],\"+qqX74\":\"Mettre à jour le nom, la description et les dates de l'événement\",\"vXPSuB\":\"Mettre à jour le profil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copié dans le presse-papiers\",\"e5lF64\":\"Exemple d'utilisation\",\"fiV0xj\":\"Limite d'utilisation\",\"sGEOe4\":\"Utilisez une version floue de l'image de couverture comme arrière-plan\",\"OadMRm\":\"Utiliser l'image de couverture\",\"7PzzBU\":\"Utilisateur\",\"yDOdwQ\":\"Gestion des utilisateurs\",\"Sxm8rQ\":\"Utilisateurs\",\"VEsDvU\":\"Les utilisateurs peuvent modifier leur adresse e-mail dans <0>Paramètres du profil.\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"T.V.A.\",\"E/9LUk\":\"nom de la place\",\"jpctdh\":\"Voir\",\"Pte1Hv\":\"Voir les détails de l'invité\",\"/5PEQz\":\"Voir la page de l'événement\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Afficher sur Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Liste de pointage VIP\",\"tF+VVr\":\"Billet VIP\",\"2q/Q7x\":\"Visibilité\",\"vmOFL/\":\"Nous n'avons pas pu traiter votre paiement. Veuillez réessayer ou contacter l'assistance.\",\"45Srzt\":\"Nous n'avons pas pu supprimer la catégorie. Veuillez réessayer.\",\"/DNy62\":[\"Nous n'avons trouvé aucun billet correspondant à \",[\"0\"]],\"1E0vyy\":\"Nous n'avons pas pu charger les données. Veuillez réessayer.\",\"NmpGKr\":\"Nous n'avons pas pu réorganiser les catégories. Veuillez réessayer.\",\"BJtMTd\":\"Nous recommandons des dimensions de 2\xA0160\xA0px sur 1\xA0080\xA0px et une taille de fichier maximale de 5\xA0Mo.\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Nous n'avons pas pu confirmer votre paiement. Veuillez réessayer ou contacter l'assistance.\",\"Gspam9\":\"Nous traitons votre commande. S'il vous plaît, attendez...\",\"LuY52w\":\"Bienvenue à bord! Merci de vous connecter pour continuer.\",\"dVxpp5\":[\"Bon retour\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Quels sont les produits par paliers ?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Qu'est-ce qu'une catégorie ?\",\"gxeWAU\":\"À quels produits ce code s'applique-t-il ?\",\"hFHnxR\":\"À quels produits ce code s'applique-t-il ? (S'applique à tous par défaut)\",\"AeejQi\":\"À quels produits cette capacité doit-elle s'appliquer ?\",\"Rb0XUE\":\"A quelle heure arriverez-vous ?\",\"5N4wLD\":\"De quel type de question s'agit-il ?\",\"gyLUYU\":\"Lorsque activé, des factures seront générées pour les commandes de billets. Les factures seront envoyées avec l'e-mail de confirmation de commande. Les participants peuvent également télécharger leurs factures depuis la page de confirmation de commande.\",\"D3opg4\":\"Lorsque les paiements hors ligne sont activés, les utilisateurs pourront finaliser leurs commandes et recevoir leurs billets. Leurs billets indiqueront clairement que la commande n'est pas payée, et l'outil d'enregistrement informera le personnel si une commande nécessite un paiement.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Quels billets doivent être associés à cette liste de pointage\xA0?\",\"S+OdxP\":\"Qui organise cet événement ?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"À qui faut-il poser cette question ?\",\"VxFvXQ\":\"Intégrer le widget\",\"v1P7Gm\":\"Paramètres du widget\",\"b4itZn\":\"Fonctionnement\",\"hqmXmc\":\"Fonctionnement...\",\"+G/XiQ\":\"Année à ce jour\",\"l75CjT\":\"Oui\",\"QcwyCh\":\"Oui, supprime-les\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Vous changez votre adresse e-mail en <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Vous êtes hors ligne\",\"sdB7+6\":\"Vous pouvez créer un code promo qui cible ce produit sur le\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Vous ne pouvez pas changer le type de produit car des invités y sont associés.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Vous ne pouvez pas enregistrer des participants avec des commandes impayées. Ce paramètre peut être modifié dans les paramètres de l'événement.\",\"c9Evkd\":\"Vous ne pouvez pas supprimer la dernière catégorie.\",\"6uwAvx\":\"Vous ne pouvez pas supprimer ce niveau de prix car des produits ont déjà été vendus pour ce niveau. Vous pouvez le masquer à la place.\",\"tFbRKJ\":\"Vous ne pouvez pas modifier le rôle ou le statut du propriétaire du compte.\",\"fHfiEo\":\"Vous ne pouvez pas rembourser une commande créée manuellement.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Vous avez accès à plusieurs comptes. Veuillez en choisir un pour continuer.\",\"Z6q0Vl\":\"Vous avez déjà accepté cette invitation. Merci de vous connecter pour continuer.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Vous n’avez aucun changement d’e-mail en attente.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Vous avez manqué de temps pour compléter votre commande.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Vous devez reconnaître que cet e-mail n'est pas promotionnel\",\"3ZI8IL\":\"Vous devez accepter les termes et conditions\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Vous devez créer un ticket avant de pouvoir ajouter manuellement un participant.\",\"jE4Z8R\":\"Vous devez avoir au moins un niveau de prix\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Vous devrez marquer une commande comme payée manuellement. Cela peut être fait sur la page de gestion des commandes.\",\"L/+xOk\":\"Vous aurez besoin d'un billet avant de pouvoir créer une liste de pointage.\",\"Djl45M\":\"Vous aurez besoin d'un produit avant de pouvoir créer une affectation de capacité.\",\"y3qNri\":\"Vous aurez besoin d'au moins un produit pour commencer. Gratuit, payant ou laissez l'utilisateur décider du montant à payer.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Le nom de votre compte est utilisé sur les pages d'événements et dans les e-mails.\",\"veessc\":\"Vos participants apparaîtront ici une fois qu’ils se seront inscrits à votre événement. Vous pouvez également ajouter manuellement des participants.\",\"Eh5Wrd\":\"Votre super site web 🎉\",\"lkMK2r\":\"Vos détails\",\"3ENYTQ\":[\"Votre demande de modification par e-mail en <0>\",[\"0\"],\" est en attente. S'il vous plaît vérifier votre e-mail pour confirmer\"],\"yZfBoy\":\"Votre message a été envoyé\",\"KSQ8An\":\"Votre commande\",\"Jwiilf\":\"Votre commande a été annulée\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Vos commandes apparaîtront ici une fois qu’elles commenceront à arriver.\",\"9TO8nT\":\"Votre mot de passe\",\"P8hBau\":\"Votre paiement est en cours de traitement.\",\"UdY1lL\":\"Votre paiement n'a pas abouti, veuillez réessayer.\",\"fzuM26\":\"Votre paiement a échoué. Veuillez réessayer.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Votre remboursement est en cours de traitement.\",\"IFHV2p\":\"Votre billet pour\",\"x1PPdr\":\"Code postal\",\"BM/KQm\":\"Code Postal\",\"+LtVBt\":\"Code postal\",\"25QDJ1\":\"- Cliquez pour publier\",\"WOyJmc\":\"- Cliquez pour dépublier\",\"ncwQad\":\"(vide)\",\"B/gRsg\":\"(aucun)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" est déjà enregistré\"],\"3beCx0\":[[\"0\"],\" <0>enregistré\"],\"S4PqS9\":[[\"0\"],\" webhooks actifs\"],\"6MIiOI\":[[\"0\"],\" restant\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" places sur \",[\"1\"],\" sont occupées.\"],\"B7pZfX\":[[\"0\"],\" organisateurs\"],\"rZTf6P\":[[\"0\"],\" places restantes\"],\"/HkCs4\":[[\"0\"],\" billets\"],\"dtXkP9\":[[\"0\"],\" dates à venir\"],\"30bTiU\":[[\"activeCount\"],\" activés\"],\"jTs4am\":[\"Logo \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" participants sont inscrits à cette séance.\"],\"TjbIUI\":[[\"availableCount\"],\" sur \",[\"totalCount\"],\" disponibles\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" enregistrés\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"il y a \",[\"diffHr\"],\" h\"],\"NRSLBe\":[\"il y a \",[\"diffMin\"],\" min\"],\"iYfwJE\":[\"il y a \",[\"diffSec\"],\" s\"],\"OJnhhX\":[[\"eventCount\"],\" événements\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" participants sont inscrits aux séances concernées.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" types de billets\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" séances réparties sur \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" séance\"],\"other\":[\"#\",\" séances\"]}],\" par jour)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Taxes/Frais\",\"B1St2O\":\"<0>Les listes d'enregistrement vous aident à gérer l'entrée à l'événement par jour, zone ou type de billet. Vous pouvez lier des billets à des listes spécifiques telles que des zones VIP ou des pass Jour 1 et partager un lien d'enregistrement sécurisé avec le personnel. Aucun compte n'est requis. L'enregistrement fonctionne sur mobile, ordinateur ou tablette, en utilisant la caméra de l'appareil ou un scanner USB HID. \",\"v9VSIS\":\"<0>Définissez une limite de participation totale unique qui s'applique à plusieurs types de billets à la fois.<1>Par exemple, si vous liez un billet <2>Pass Journée et un billet <3>Week-end complet, ils utiliseront tous deux le même quota de places. Une fois la limite atteinte, tous les billets liés cessent automatiquement d'être vendus.\",\"vKXqag\":\"<0>Il s'agit de la quantité par défaut pour toutes les dates. La capacité de chaque date peut limiter davantage la disponibilité depuis la <1>page Planning des séances.\",\"ZnVt5v\":\"<0>Les webhooks notifient instantanément les services externes lorsqu'un événement se produit, comme l'ajout d'un nouvel inscrit à votre CRM ou à votre liste de diffusion lors de l'inscription, garantissant une automatisation fluide.<1>Utilisez des services tiers comme <2>Zapier, <3>IFTTT ou <4>Make pour créer des workflows personnalisés et automatiser des tâches.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" au taux actuel\"],\"M2DyLc\":\"1 webhook actif\",\"6hIk/x\":\"1 participant est inscrit aux séances concernées.\",\"qOyE2U\":\"1 participant est inscrit à cette séance.\",\"943BwI\":\"1 jour après la date de fin\",\"yj3N+g\":\"1 jour après la date de début\",\"Z3etYG\":\"1 jour avant l'événement\",\"szSnlj\":\"1 heure avant l'événement\",\"yTsaLw\":\"1 billet\",\"nz96Ue\":\"1 type de billet\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 semaine avant l'événement\",\"09VFYl\":\"12 billets proposés\",\"HR/cvw\":\"123 Rue Exemple\",\"dgKxZ5\":\"135+ devises et 40+ moyens de paiement\",\"kMU5aM\":\"Un avis d'annulation a été envoyé à\",\"o++0qa\":\"un changement de durée\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Un nouveau code de vérification a été envoyé à votre adresse e-mail\",\"sr2Je0\":\"un décalage des heures de début/fin\",\"/z/bH1\":\"Une brève description de votre organisateur qui sera affichée à vos utilisateurs.\",\"aS0jtz\":\"Abandonné\",\"uyJsf6\":\"À propos\",\"JvuLls\":\"Absorber les frais\",\"lk74+I\":\"Absorber les frais\",\"1uJlG9\":\"Couleur d'Accent\",\"g3UF2V\":\"Accepter\",\"K5+3xg\":\"Accepter l'invitation\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Compte · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informations du compte\",\"EHNORh\":\"Compte introuvable\",\"bPwFdf\":\"Comptes\",\"AhwTa1\":\"Action requise : Informations TVA nécessaires\",\"APyAR/\":\"Événements actifs\",\"kCl6ja\":\"Moyens de paiement actifs\",\"XJOV1Y\":\"Activité\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Ajouter une date\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Ajouter une date unique\",\"CjvTPJ\":\"Ajouter un autre horaire\",\"0XCduh\":\"Ajoutez au moins un horaire\",\"/chGpa\":\"Ajoutez les informations de connexion pour l’événement en ligne.\",\"UWWRyd\":\"Ajoutez des questions personnalisées pour collecter des informations supplémentaires lors du paiement\",\"Z/dcxc\":\"Ajouter une date\",\"Q219NT\":\"Ajouter des dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Ajouter un lieu\",\"VX6WUv\":\"Ajouter un lieu\",\"GCQlV2\":\"Ajoutez plusieurs horaires si vous organisez plusieurs séances par jour.\",\"7JF9w9\":\"Ajouter une question\",\"NLbIb6\":\"Ajouter ce participant malgré tout (dépasser la capacité)\",\"6PNlRV\":\"Ajouter cet événement à votre calendrier\",\"BGD9Yt\":\"Ajouter des billets\",\"uIv4Op\":\"Ajoutez des pixels de suivi à vos pages d'événement publiques et à la page d'accueil de l'organisateur. Une bannière de consentement aux cookies sera affichée aux visiteurs lorsque le suivi est actif.\",\"QN2F+7\":\"Ajouter un webhook\",\"NsWqSP\":\"Ajoutez vos réseaux sociaux et l'URL de votre site. Ils seront affichés sur votre page publique d'organisateur.\",\"bVjDs9\":\"Frais supplémentaires\",\"MKqSg4\":\"Accès administrateur requis\",\"0Zypnp\":\"Tableau de Bord Admin\",\"YAV57v\":\"Affilié\",\"I+utEq\":\"Le code d'affiliation ne peut pas être modifié\",\"/jHBj5\":\"Affilié créé avec succès\",\"uCFbG2\":\"Affilié supprimé avec succès\",\"ld8I+f\":\"Programme d'affiliation\",\"a41PKA\":\"Les ventes de l'affilié seront suivies\",\"mJJh2s\":\"Les ventes de l'affilié ne seront pas suivies. Cela désactivera l'affilié.\",\"jabmnm\":\"Affilié mis à jour avec succès\",\"CPXP5Z\":\"Affiliés\",\"9Wh+ug\":\"Affiliés exportés\",\"3cqmut\":\"Les affiliés vous aident à suivre les ventes générées par les partenaires et les influenceurs. Créez des codes d'affiliation et partagez-les pour surveiller les performances.\",\"z7GAMJ\":\"tout\",\"N40H+G\":\"Tous\",\"7rLTkE\":\"Tous les événements archivés\",\"gKq1fa\":\"Tous les participants\",\"63gRoO\":\"Tous les participants des séances sélectionnées\",\"uWxIoH\":\"Tous les participants de cette séance\",\"pMLul+\":\"Toutes les devises\",\"sgUdRZ\":\"Toutes les dates\",\"e4q4uO\":\"Toutes les dates\",\"ZS/D7f\":\"Tous les événements terminés\",\"QsYjci\":\"Tous les événements\",\"31KB8w\":\"Tous les travaux échoués supprimés\",\"D2g7C7\":\"Tous les travaux en file d'attente pour réessai\",\"B4RFBk\":\"Toutes les dates correspondantes\",\"F1/VgK\":\"Toutes les séances\",\"OpWjMq\":\"Toutes les séances\",\"Sxm1lO\":\"Tous les statuts\",\"dr7CWq\":\"Tous les événements à venir\",\"GpT6Uf\":\"Permettre aux participants de mettre à jour leurs informations de billet (nom, e-mail) via un lien sécurisé envoyé avec leur confirmation de commande.\",\"F3mW5G\":\"Permettre aux clients de rejoindre une liste d'attente lorsque ce produit est épuisé\",\"c4uJfc\":\"Presque terminé ! Nous attendons juste que votre paiement soit traité. Cela ne devrait prendre que quelques secondes.\",\"ocS8eq\":[\"Vous avez déjà un compte ? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Déjà arrivé\",\"/H326L\":\"Déjà remboursé\",\"USEpOK\":\"Vous utilisez déjà Stripe pour un autre organisateur ? Réutilisez cette connexion.\",\"RtxQTF\":\"Annuler également cette commande\",\"jkNgQR\":\"Rembourser également cette commande\",\"xYqsHg\":\"Toujours disponible\",\"Wvrz79\":\"Montant payé\",\"Zkymb9\":\"Une adresse e-mail à associer à cet affilié. L'affilié ne sera pas notifié.\",\"vRznIT\":\"Une erreur s'est produite lors de la vérification du statut d'exportation.\",\"eusccx\":\"Un message optionnel à afficher sur le produit en vedette, par ex. \\\"Se vend rapidement 🔥\\\" ou \\\"Meilleur rapport qualité-prix\\\"\",\"5GJuNp\":[\"et \",[\"0\"],\" de plus...\"],\"QNrkms\":\"Réponse mise à jour avec succès.\",\"+qygei\":\"Réponses\",\"GK7Lnt\":\"Réponses fournies au paiement (ex. choix du menu)\",\"lE8PgT\":\"Toutes les dates que vous avez personnalisées manuellement seront conservées.\",\"vP3Nzg\":[\"S'applique à \",[\"0\"],\" dates non annulées actuellement chargées sur cette page.\"],\"kkVyZZ\":\"S'applique aux personnes ouvrant le lien sans être connectées. Les membres connectés voient toujours tout.\",\"je4muG\":\"S'applique à chaque date non annulée de cet événement — y compris les dates non chargées actuellement.\",\"YIIQtt\":\"Appliquer les modifications\",\"NzWX1Y\":\"Appliquer à\",\"Ps5oDT\":\"Appliquer à tous les billets\",\"261RBr\":\"Approuver le message\",\"naCW6Z\":\"Avril\",\"B495Gs\":\"Archiver\",\"5sNliy\":\"Archiver l'événement\",\"BrwnrJ\":\"Archiver l'organisateur\",\"E5eghW\":\"Archivez cet événement pour le masquer au public. Vous pourrez le restaurer ultérieurement.\",\"eqFkeI\":\"Archivez cet organisateur. Cela archivera également tous les événements appartenant à cet organisateur.\",\"BzcxWv\":\"Organisateurs archivés\",\"9cQBd6\":\"Êtes-vous sûr de vouloir archiver cet événement ? Il ne sera plus visible pour le public.\",\"Trnl3E\":\"Êtes-vous sûr de vouloir archiver cet organisateur ? Cela archivera également tous les événements appartenant à cet organisateur.\",\"wOvn+e\":[\"Êtes-vous sûr de vouloir annuler \",[\"count\"],\" date(s) ? Les participants concernés seront notifiés par e-mail.\"],\"GTxE0U\":\"Êtes-vous sûr de vouloir annuler cette date ? Les participants concernés seront notifiés par e-mail.\",\"VkSk/i\":\"Êtes-vous sûr de vouloir annuler ce message programmé ?\",\"0aVEBY\":\"Êtes-vous sûr de vouloir supprimer tous les travaux échoués ?\",\"LchiNd\":\"Êtes-vous sûr de vouloir supprimer cet affilié ? Cette action ne peut pas être annulée.\",\"vPeW/6\":\"Êtes-vous sûr de vouloir supprimer cette configuration ? Cela peut affecter les comptes qui l'utilisent.\",\"h42Hc/\":\"Êtes-vous sûr de vouloir supprimer cette date ? Cette action est irréversible.\",\"JmVITJ\":\"Êtes-vous sûr de vouloir supprimer ce modèle ? Cette action ne peut pas être annulée et les e-mails reviendront au modèle par défaut.\",\"aLS+A6\":\"Êtes-vous sûr de vouloir supprimer ce modèle ? Cette action ne peut pas être annulée et les e-mails reviendront au modèle de l'organisateur ou par défaut.\",\"5H3Z78\":\"Êtes-vous sûr de vouloir supprimer ce webhook ?\",\"147G4h\":\"Êtes-vous sûr de vouloir partir ?\",\"VDWChT\":\"Êtes-vous sûr de vouloir mettre cet organisateur en brouillon ? Cela rendra la page de l'organisateur invisible au public.\",\"pWtQJM\":\"Êtes-vous sûr de vouloir rendre cet organisateur public ? Cela rendra la page de l'organisateur visible au public.\",\"EOqL/A\":\"Êtes-vous sûr de vouloir offrir une place à cette personne ? Elle recevra une notification par e-mail.\",\"yAXqWW\":\"Êtes-vous sûr de vouloir supprimer définitivement cette date ? Cette action est irréversible.\",\"WFHOlF\":\"Êtes-vous sûr de vouloir publier cet événement ? Une fois publié, il sera visible au public.\",\"4TNVdy\":\"Êtes-vous sûr de vouloir publier ce profil d'organisateur ? Une fois publié, il sera visible au public.\",\"8x0pUg\":\"Êtes-vous sûr de vouloir supprimer cette entrée de la liste d'attente ?\",\"cDtoWq\":[\"Êtes-vous sûr de vouloir renvoyer la confirmation de commande à \",[\"0\"],\" ?\"],\"xeIaKw\":[\"Êtes-vous sûr de vouloir renvoyer le billet à \",[\"0\"],\" ?\"],\"BjbocR\":\"Êtes-vous sûr de vouloir restaurer cet événement ?\",\"7MjfcR\":\"Êtes-vous sûr de vouloir restaurer cet organisateur ?\",\"ExDt3P\":\"Êtes-vous sûr de vouloir dépublier cet événement ? Il ne sera plus visible au public.\",\"5Qmxo/\":\"Êtes-vous sûr de vouloir dépublier ce profil d'organisateur ? Il ne sera plus visible au public.\",\"Uqefyd\":\"Êtes-vous assujetti à la TVA dans l'UE ?\",\"+QARA4\":\"Art\",\"tLf3yJ\":\"Comme votre entreprise est basée en Irlande, la TVA irlandaise à 23 % s'applique automatiquement à tous les frais de plateforme.\",\"tMeVa/\":\"Demander le nom et l'email pour chaque billet acheté\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Attribuer un plan\",\"xdiER7\":\"Niveau attribué\",\"F2rX0R\":\"Au moins un type d'événement doit être sélectionné\",\"BCmibk\":\"Tentatives\",\"6PecK3\":\"Présence et taux d'enregistrement pour tous les événements\",\"K2tp3v\":\"participant\",\"AJ4rvK\":\"Participant annulé\",\"qvylEK\":\"Participant créé\",\"Aspq3b\":\"Collecte des informations des participants\",\"fpb0rX\":\"Informations du participant copiées de la commande\",\"0R3Y+9\":\"Email du participant\",\"94aQMU\":\"Informations du participant\",\"KkrBiR\":\"Collecte d'informations sur les participants\",\"av+gjP\":\"Nom du participant\",\"sjPjOg\":\"Notes du participant\",\"cosfD8\":\"Statut du Participant\",\"D2qlBU\":\"Participant mis à jour\",\"22BOve\":\"Participant mis à jour avec succès\",\"x8Vnvf\":\"Le billet du participant n'est pas inclus dans cette liste\",\"/Ywywr\":\"participants\",\"zLRobu\":\"participants enregistrés\",\"k3Tngl\":\"Participants exportés\",\"UoIRW8\":\"Participants inscrits\",\"5UbY+B\":\"Participants avec un ticket spécifique\",\"4HVzhV\":\"Participants:\",\"HVkhy2\":\"Analyse d'attribution\",\"dMMjeD\":\"Répartition de l'attribution\",\"1oPDuj\":\"Valeur d'attribution\",\"DBHTm/\":\"Août\",\"JgREph\":\"L'offre automatique est activée\",\"V7Tejz\":\"Traitement automatique de la liste d'attente\",\"PZ7FTW\":\"Détecté automatiquement selon la couleur de fond, mais peut être remplacé\",\"zlnTuI\":\"Proposez automatiquement des billets à la personne suivante lorsque des places se libèrent. Si désactivé, vous pouvez traiter la liste d'attente manuellement depuis la page Liste d'attente.\",\"csDS2L\":\"Disponible\",\"clF06r\":\"Disponible pour remboursement\",\"NB5+UG\":\"Jetons disponibles\",\"L+wGOG\":\"En attente\",\"qcw2OD\":\"Paiement dû\",\"kNmmvE\":\"Awesome Events SARL\",\"iH8pgl\":\"Retour\",\"TeSaQO\":\"Retour aux comptes\",\"X7Q/iM\":\"Retour au calendrier\",\"kYqM1A\":\"Retour à l'événement\",\"s5QRF3\":\"Retour aux messages\",\"td/bh+\":\"Retour aux rapports\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Prix de base\",\"hviJef\":\"Basé sur la période de vente globale ci-dessus, et non par date\",\"jIPNJG\":\"Informations de base\",\"UabgBd\":\"Le corps est requis\",\"HWXuQK\":\"Ajoutez cette page à vos favoris pour gérer votre commande à tout moment.\",\"CUKVDt\":\"Personnalisez vos billets avec un logo, des couleurs et un message de pied de page personnalisés.\",\"4BZj5p\":\"Protection antifraude intégrée\",\"cr7kGH\":\"Modification en masse\",\"1Fbd6n\":\"Modifier les dates en masse\",\"Eq6Tu9\":\"La mise à jour en masse a échoué.\",\"9N+p+g\":\"Affaires\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nom de l'entreprise\",\"bv6RXK\":\"Libellé du bouton\",\"ChDLlO\":\"Texte du bouton\",\"BUe8Wj\":\"L'acheteur paie\",\"qF1qbA\":\"Les acheteurs voient un prix net. Les frais de plateforme sont déduits de votre paiement.\",\"dg05rc\":\"En ajoutant des pixels de suivi, vous reconnaissez que vous et cette plateforme êtes co-responsables des données collectées. Il vous incombe de vous assurer que vous disposez d'une base légale pour ce traitement au regard des lois applicables en matière de confidentialité (RGPD, CCPA, etc.).\",\"DFqasq\":[\"En continuant, vous acceptez les <0>Conditions d'utilisation de \",[\"0\"],\"\"],\"wVSa+U\":\"Par jour du mois\",\"0MnNgi\":\"Par jour de la semaine\",\"CetOZE\":\"Par type de billet\",\"lFdbRS\":\"Contourner les frais d'application\",\"AjVXBS\":\"Calendrier\",\"alkXJ5\":\"Vue calendrier\",\"2VLZwd\":\"Bouton d'appel à l'action\",\"rT2cV+\":\"Caméra\",\"7hYa9y\":\"Accès à la caméra refusé. <0>Demander à nouveau ou accordez l'accès à la caméra dans les paramètres du navigateur.\",\"D02dD9\":\"Campagne\",\"RRPA79\":\"Enregistrement impossible\",\"OcVwAd\":[\"Annuler \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Annuler tous les produits et les remettre dans le pool\",\"Py78q9\":\"Annuler la date\",\"tOXAdc\":\"L'annulation annulera tous les participants associés à cette commande et remettra les billets dans le pool disponible.\",\"vev1Jl\":\"Annulation\",\"Ha17hq\":[[\"0\"],\" date(s) annulée(s)\"],\"01sEfm\":\"Impossible de supprimer la configuration système par défaut\",\"VsM1HH\":\"Attributions de capacité\",\"9bIMVF\":\"Gestion de la capacité\",\"H7K8og\":\"La capacité doit être supérieure ou égale à 0\",\"nzao08\":\"mises à jour de capacité\",\"4cp9NP\":\"Capacité utilisée\",\"K7tIrx\":\"Catégorie\",\"o+XJ9D\":\"Modifier\",\"kJkjoB\":\"Modifier la durée\",\"J0KExZ\":\"Modifier la limite de participants\",\"CIHJJf\":\"Modifier les paramètres de liste d'attente\",\"B5icLR\":[\"Durée modifiée pour \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Encaissements\",\"2tbLdK\":\"Charité\",\"BPWGKn\":\"Enregistrer\",\"6uFFoY\":\"Annuler\",\"FjAlwK\":[\"Découvrez cet événement : \",[\"0\"]],\"v4fiSg\":\"Vérifiez votre e-mail\",\"51AsAN\":\"Vérifiez votre boîte de réception ! Si des billets sont associés à cet e-mail, vous recevrez un lien pour les consulter.\",\"Y3FYXy\":\"Enregistrement\",\"udRwQs\":\"Enregistrement créé\",\"F4SRy3\":\"Enregistrement supprimé\",\"as6XfO\":[\"Enregistrement de \",[\"0\"],\" annulé\"],\"9s/wrQ\":\"Historique d'enregistrement\",\"Wwztk4\":\"Liste d'enregistrement\",\"9gPPUY\":\"Liste d'Enregistrement Créée !\",\"dwjiJt\":\"Infos de la liste\",\"7od0PV\":\"listes d'enregistrement\",\"f2vU9t\":\"Listes d'enregistrement\",\"XprdTn\":\"Navigation d'enregistrement\",\"5tV1in\":\"Progression\",\"SHJwyq\":\"Taux d'enregistrement\",\"qCqdg6\":\"Statut d'enregistrement\",\"cKj6OE\":\"Résumé des enregistrements\",\"7B5M35\":\"Enregistrements\",\"VrmydS\":\"Enregistré\",\"DM4gBB\":\"Chinois (traditionnel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choisir une autre action\",\"fkb+y3\":\"Choisissez un lieu enregistré à appliquer.\",\"Zok1Gx\":\"Choisir un organisateur\",\"pkk46Q\":\"Choisissez un organisateur\",\"Crr3pG\":\"Choisir le calendrier\",\"LAW8Vb\":\"Choisissez le paramètre par défaut pour les nouveaux événements. Ceci peut être modifié pour chaque événement.\",\"pjp2n5\":\"Choisissez qui paie les frais de plateforme. Cela n'affecte pas les frais supplémentaires que vous avez configurés dans les paramètres de votre compte.\",\"xCJdfg\":\"Effacer\",\"QyOWu9\":\"Effacer le lieu — revenir au lieu par défaut de l’événement\",\"V8yTm6\":\"Effacer la recherche\",\"kmnKnX\":\"Effacer supprime toute substitution spécifique à une séance. Les séances concernées utiliseront le lieu par défaut de l’événement.\",\"/o+aQX\":\"Cliquez pour annuler\",\"gD7WGV\":\"Cliquez pour rouvrir aux nouvelles ventes\",\"CySr+W\":\"Cliquez pour voir les notes\",\"RG3szS\":\"fermer\",\"RWw9Lg\":\"Fermer la fenêtre\",\"XwdMMg\":\"Le code ne peut contenir que des lettres, des chiffres, des tirets et des traits de soulignement\",\"+yMJb7\":\"Le code est obligatoire\",\"m9SD3V\":\"Le code doit contenir au moins 3 caractères\",\"V1krgP\":\"Le code ne doit pas dépasser 20 caractères\",\"psqIm5\":\"Collaborez avec votre équipe pour créer ensemble des événements incroyables.\",\"4bUH9i\":\"Collectez les détails du participant pour chaque billet acheté.\",\"TkfG8v\":\"Collecter les informations par commande\",\"96ryID\":\"Collecter les informations par billet\",\"FpsvqB\":\"Mode de couleur\",\"jEu4bB\":\"Colonnes\",\"CWk59I\":\"Comédie\",\"rPA+Gc\":\"Préférences de communication\",\"zFT5rr\":\"terminé\",\"bUQMpb\":\"Terminer la configuration Stripe\",\"744BMm\":\"Finalisez votre commande pour sécuriser vos billets. Cette offre est limitée dans le temps, ne tardez pas trop.\",\"5YrKW7\":\"Finalisez votre paiement pour sécuriser vos billets.\",\"xGU92i\":\"Complétez votre profil pour rejoindre l'équipe.\",\"QOhkyl\":\"Rédiger\",\"ih35UP\":\"Centre de conférence\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration attribuée\",\"X1zdE7\":\"Configuration créée avec succès\",\"mLBUMQ\":\"Configuration supprimée avec succès\",\"UIENhw\":\"Les noms de configuration sont visibles par les utilisateurs finaux. Les frais fixes seront convertis dans la devise de la commande au taux de change actuel.\",\"eeZdaB\":\"Configuration mise à jour avec succès\",\"3cKoxx\":\"Configurations\",\"8v2LRU\":\"Configurez les détails de l'événement, le lieu, les options de paiement et les notifications par email.\",\"raw09+\":\"Configurez comment les informations des participants sont collectées lors du paiement\",\"FI60XC\":\"Configurer les taxes et frais\",\"av6ukY\":\"Configurez les produits disponibles pour cette séance et ajustez éventuellement la tarification.\",\"NGXKG/\":\"Confirmer l'adresse e-mail\",\"JRQitQ\":\"Confirmer le nouveau mot de passe\",\"Auz0Mz\":\"Confirmez votre e-mail pour accéder à toutes les fonctionnalités.\",\"7+grte\":\"E-mail de confirmation envoyé ! Veuillez vérifier votre boîte de réception.\",\"n/7+7Q\":\"Confirmation envoyée à\",\"x3wVFc\":\"Félicitations ! Votre événement est maintenant visible par le public.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Connectez Stripe pour activer l'édition des modèles d'e-mail\",\"LmvZ+E\":\"Connectez Stripe pour activer la messagerie\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contacter \",[\"0\"]],\"41BQ3k\":\"E-mail de contact\",\"KcXRN+\":\"Email de contact pour le support\",\"m8WD6t\":\"Continuer la configuration\",\"0GwUT4\":\"Passer à la caisse\",\"sBV87H\":\"Continuer vers la création d'événement\",\"nKtyYu\":\"Continuer à l'étape suivante\",\"F3/nus\":\"Continuer vers le paiement\",\"p2FRHj\":\"Contrôlez comment les frais de plateforme sont gérés pour cet événement\",\"NqfabH\":\"Contrôlez qui entre pour cette date\",\"fmYxZx\":\"Qui entre et quand\",\"1JnTgU\":\"Copié d'en haut\",\"FxVG/l\":\"Copié dans le presse-papiers\",\"PiH3UR\":\"Copié !\",\"4i7smN\":\"Copier l'ID du compte\",\"uUPbPg\":\"Copier le lien d'affiliation\",\"iVm46+\":\"Copier le code\",\"cF2ICc\":\"Copier le lien client\",\"+2ZJ7N\":\"Copier les détails vers le premier participant\",\"ZN1WLO\":\"Copier l'Email\",\"y1eoq1\":\"Copier le lien\",\"tUGbi8\":\"Copier mes informations vers:\",\"y22tv0\":\"Copiez ce lien pour le partager n'importe où\",\"/4gGIX\":\"Copier dans le presse-papiers\",\"e0f4yB\":\"Impossible de supprimer le lieu\",\"vkiDx2\":\"Impossible de préparer la mise à jour groupée.\",\"KOavaU\":\"Impossible de récupérer les détails de l'adresse\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Impossible d'enregistrer la date\",\"eeLExK\":\"Impossible d'enregistrer le lieu\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Image de couverture\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"L'image de couverture sera affichée en haut de votre page d'événement\",\"2NLjA6\":\"L'image de couverture sera affichée en haut de votre page d'organisateur\",\"GkrqoY\":\"Couvre tous les billets\",\"zg4oSu\":[\"Créer le modèle \",[\"0\"]],\"RKKhnW\":\"Créez un widget personnalisé pour vendre des billets sur votre site.\",\"6sk7PP\":\"Créer un nombre fixe\",\"PhioFp\":\"Créez une nouvelle liste d'enregistrement pour une séance active, ou contactez l'organisateur si vous pensez qu'il s'agit d'une erreur.\",\"yIRev4\":\"Créer un mot de passe\",\"j7xZ7J\":\"Créez des organisateurs supplémentaires pour gérer des marques, départements ou séries d'événements distincts sous un même compte. Chaque organisateur dispose de ses propres événements, paramètres et page publique.\",\"xfKgwv\":\"Créer un affilié\",\"tudG8q\":\"Créez et configurez des billets et des marchandises à vendre.\",\"YAl9Hg\":\"Créer une configuration\",\"BTne9e\":\"Créer des modèles d'email personnalisés pour cet événement qui remplacent les paramètres par défaut de l'organisateur\",\"YIDzi/\":\"Créer un modèle personnalisé\",\"tsGqx5\":\"Créer une date\",\"Nc3l/D\":\"Créez des réductions, des codes d'accès pour les billets cachés et des offres spéciales.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Créer pour cette date\",\"eWEV9G\":\"Créer un nouveau mot de passe\",\"wl2iai\":\"Créer le planning\",\"8AiKIu\":\"Créer un billet ou un produit\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Créez des liens traçables pour récompenser les partenaires qui font la promotion de votre événement.\",\"dkAPxi\":\"Créer un webhook\",\"5slqwZ\":\"Créez votre événement\",\"JQNMrj\":\"Créez votre premier événement\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Créez votre propre événement\",\"67NsZP\":\"Création de l'événement...\",\"H34qcM\":\"Création de l'organisateur...\",\"1YMS+X\":\"Création de votre événement en cours, veuillez patienter\",\"yiy8Jt\":\"Création de votre profil d'organisateur en cours, veuillez patienter\",\"lfLHNz\":\"Le libellé CTA est requis\",\"0xLR6W\":\"Actuellement attribué\",\"iTvh6I\":\"Actuellement disponible à l'achat\",\"A42Dqn\":\"Personnalisation visuelle\",\"Guo0lU\":\"Date et heure personnalisées\",\"mimF6c\":\"Message personnalisé après la commande\",\"WDMdn8\":\"Questions personnalisées\",\"O6mra8\":\"Questions personnalisées\",\"axv/Mi\":\"Modèle personnalisé\",\"2YeVGY\":\"Lien client copié dans le presse-papiers\",\"QMHSMS\":\"Le client recevra un e-mail confirmant le remboursement\",\"L/Qc+w\":\"Adresse email du client\",\"wpfWhJ\":\"Prénom du client\",\"GIoqtA\":\"Nom de famille du client\",\"NihQNk\":\"Clients\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Personnalisez les e-mails envoyés à vos clients en utilisant des modèles Liquid. Ces modèles seront utilisés comme valeurs par défaut pour tous les événements de votre organisation.\",\"xJaTUK\":\"Personnalisez la mise en page, les couleurs et l'image de marque de la page d'accueil de votre événement.\",\"MXZfGN\":\"Personnalisez les questions posées lors du paiement pour recueillir des informations importantes de vos participants.\",\"iX6SLo\":\"Personnalisez le texte affiché sur le bouton continuer\",\"pxNIxa\":\"Personnalisez votre modèle d'e-mail en utilisant des modèles Liquid\",\"3trPKm\":\"Personnalisez l'apparence de votre page d'organisateur\",\"U0sC6H\":\"Quotidien\",\"/gWrVZ\":\"Revenus quotidiens, taxes, frais et remboursements pour tous les événements\",\"zgCHnE\":\"Rapport des ventes quotidiennes\",\"nHm0AI\":\"Détail des ventes quotidiennes, taxes et frais\",\"1aPnDT\":\"Danse\",\"pvnfJD\":\"Sombre\",\"MaB9wW\":\"Annulation de date\",\"e6cAxJ\":\"Date annulée\",\"81jBnC\":\"Date annulée avec succès\",\"a/C/6R\":\"Date créée avec succès\",\"IW7Q+u\":\"Date supprimée\",\"rngCAz\":\"Date supprimée avec succès\",\"lnYE59\":\"Date de l'événement\",\"gnBreG\":\"Date à laquelle la commande a été passée\",\"vHbfoQ\":\"Date réactivée\",\"hvah+S\":\"Date rouverte aux nouvelles ventes\",\"Ez0YsD\":\"Date mise à jour avec succès\",\"VTsZuy\":\"Les dates et heures sont gérées sur la\",\"/ITcnz\":\"jour\",\"H7OUPr\":\"Jour\",\"JtHrX9\":\"Jour du mois\",\"J/Upwb\":\"jours\",\"vDVA2I\":\"Jours du mois\",\"rDLvlL\":\"Jours de la semaine\",\"r6zgGo\":\"Décembre\",\"jbq7j2\":\"Refuser\",\"ovBPCi\":\"Par défaut\",\"JtI4vj\":\"Collecte d'informations par défaut sur les participants\",\"ULjv90\":\"Capacité par défaut par date\",\"3R/Tu2\":\"Gestion des frais par défaut\",\"1bZAZA\":\"Le modèle par défaut sera utilisé\",\"HNlEFZ\":\"supprimer\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Supprimer les \",[\"count\"],\" date(s) sélectionnée(s) ? Les dates avec commandes seront ignorées. Cette action est irréversible.\"],\"vu7gDm\":\"Supprimer l'affilié\",\"KZN4Lc\":\"Tout supprimer\",\"6EkaOO\":\"Supprimer la date\",\"io0G93\":\"Supprimer l'événement\",\"+jw/c1\":\"Supprimer l'image\",\"hdyeZ0\":\"Supprimer le travail\",\"xxjZeP\":\"Supprimer le lieu\",\"sY3tIw\":\"Supprimer l'organisateur\",\"UBv8UK\":\"Supprimer définitivement\",\"dPyJ15\":\"Supprimer le modèle\",\"mxsm1o\":\"Supprimer cette question ? Cette action est irréversible.\",\"snMaH4\":\"Supprimer le webhook\",\"LIZZLY\":[[\"0\"],\" date(s) supprimée(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Tout désélectionner\",\"NvuEhl\":\"Éléments de Design\",\"H8kMHT\":\"Vous n'avez pas reçu le code ?\",\"G8KNgd\":\"Lieu différent\",\"E/QGRL\":\"Désactivé\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Ignorer ce message\",\"BREO0S\":\"Affiche une case permettant aux clients de s'inscrire pour recevoir des communications marketing de cet organisateur d'événements.\",\"pfa8F0\":\"Nom affiché\",\"Kdpf90\":\"N'oubliez pas !\",\"352VU2\":\"Vous n'avez pas de compte ? <0>Inscrivez-vous\",\"AXXqG+\":\"Don\",\"DPfwMq\":\"Terminé\",\"JoPiZ2\":\"Consignes pour le personnel\",\"2+O9st\":\"Téléchargez les rapports de ventes, de participants et financiers pour toutes les commandes terminées.\",\"eneWvv\":\"Brouillon\",\"Ts8hhq\":\"En raison du risque élevé de spam, vous devez connecter un compte Stripe avant de pouvoir modifier les modèles d'e-mail. Cela permet de garantir que tous les organisateurs d'événements sont vérifiés et responsables.\",\"TnzbL+\":\"En raison du risque élevé de spam, vous devez connecter un compte Stripe avant de pouvoir envoyer des messages aux participants.\\nCela permet de s'assurer que tous les organisateurs d'événements sont vérifiés et responsables.\",\"euc6Ns\":\"Dupliquer\",\"YueC+F\":\"Dupliquer la date\",\"KRmTkx\":\"Dupliquer le produit\",\"Jd3ymG\":\"La durée doit être d'au moins 1 minute.\",\"KIjvtr\":\"Néerlandais\",\"22xieU\":\"ex. 180 (3 heures)\",\"/zajIE\":\"ex. Séance du matin\",\"SPKbfM\":\"ex. : Obtenir des billets, S'inscrire maintenant\",\"fc7wGW\":\"par ex., Mise à jour importante concernant vos billets\",\"54MPqC\":\"par ex., Standard, Premium, Entreprise\",\"3RQ81z\":\"Chaque personne recevra un e-mail avec une place réservée pour finaliser son achat.\",\"5oD9f/\":\"Plus tôt\",\"LTzmgK\":[\"Modifier le modèle \",[\"0\"]],\"v4+lcZ\":\"Modifier l'affilié\",\"2iZEz7\":\"Modifier la réponse\",\"t2bbp8\":\"Modifier le participant\",\"etaWtB\":\"Modifier les détails du participant\",\"+guao5\":\"Modifier la configuration\",\"1Mp/A4\":\"Modifier la date\",\"m0ZqOT\":\"Modifier le lieu\",\"8oivFT\":\"Modifier le lieu\",\"vRWOrM\":\"Modifier les détails de la commande\",\"fW5sSv\":\"Modifier le webhook\",\"nP7CdQ\":\"Modifier le webhook\",\"MRZxAn\":\"Modifié\",\"uBAxNB\":\"Éditeur\",\"aqxYLv\":\"Éducation\",\"iiWXDL\":\"Échecs d'éligibilité\",\"zPiC+q\":\"Listes d'Enregistrement Éligibles\",\"SiVstt\":\"E-mails et messages programmés\",\"V2sk3H\":\"E-mail et Modèles\",\"hbwCKE\":\"Adresse e-mail copiée dans le presse-papiers\",\"dSyJj6\":\"Les adresses e-mail ne correspondent pas\",\"elW7Tn\":\"Corps de l'e-mail\",\"ZsZeV2\":\"L'e-mail est obligatoire\",\"Be4gD+\":\"Aperçu de l'e-mail\",\"6IwNUc\":\"Modèles d'e-mail\",\"H/UMUG\":\"Vérification de l'e-mail requise\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"E-mail vérifié avec succès !\",\"FSN4TS\":\"Widget intégré\",\"z9NkYY\":\"Widget intégrable\",\"Qj0GKe\":\"Activer le libre-service pour les participants\",\"hEtQsg\":\"Activer le libre-service pour les participants par défaut\",\"Upeg/u\":\"Activer ce modèle pour l'envoi d'e-mails\",\"7dSOhU\":\"Activer la liste d'attente\",\"RxzN1M\":\"Activé\",\"xDr/ct\":\"Fin\",\"sGjBEq\":\"Date et heure de fin (optionnel)\",\"PKXt9R\":\"La date de fin doit être postérieure à la date de début\",\"UmzbPa\":\"Date de fin de la séance\",\"ZayGC7\":\"Terminer à une date\",\"48Y16Q\":\"Heure de fin (facultatif)\",\"jpNdOC\":\"Heure de fin de la séance\",\"TbaYrr\":[\"Terminé \",[\"0\"]],\"CFgwiw\":[\"Se termine \",[\"0\"]],\"SqOIQU\":\"Saisissez une valeur de capacité ou choisissez illimité.\",\"h37gRz\":\"Saisissez un libellé ou choisissez de le supprimer.\",\"7YZofi\":\"Entrez un sujet et un corps pour voir l'aperçu\",\"khyScF\":\"Saisissez la durée du décalage.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Saisir l'e-mail de l'affilié (facultatif)\",\"ARkzso\":\"Saisir le nom de l'affilié\",\"ej4L8b\":\"Saisir la capacité\",\"6KnyG0\":\"Saisissez l'e-mail\",\"INDKM9\":\"Entrez le sujet de l'e-mail...\",\"xUgUTh\":\"Saisissez le prénom\",\"9/1YKL\":\"Saisissez le nom\",\"VpwcSk\":\"Entrez le nouveau mot de passe\",\"kWg31j\":\"Saisir un code d'affiliation unique\",\"C3nD/1\":\"Entrez votre e-mail\",\"VmXiz4\":\"Entrez votre adresse e-mail et nous vous enverrons des instructions pour réinitialiser votre mot de passe.\",\"n9V+ps\":\"Entrez votre nom\",\"IdULhL\":\"Entrez votre numéro de TVA avec le code pays, sans espaces (par ex., IE1234567A, DE123456789)\",\"o21Y+P\":\"entrées\",\"X88/6w\":\"Les inscriptions apparaîtront ici lorsque les clients rejoindront la liste d'attente pour les produits épuisés.\",\"LslKhj\":\"Erreur lors du chargement des journaux\",\"VCNHvW\":\"Événement archivé\",\"ZD0XSb\":\"Événement archivé avec succès\",\"WgD6rb\":\"Catégorie d'événement\",\"b46pt5\":\"Image de couverture de l'événement\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Événement créé\",\"1Hzev4\":\"Modèle personnalisé d'événement\",\"7u9/DO\":\"Événement supprimé avec succès\",\"imgKgl\":\"Description de l'événement\",\"kJDmsI\":\"Détails de l'événement\",\"m/N7Zq\":\"Adresse Complète de l'Événement\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Lieu de l'événement\",\"PYs3rP\":\"Nom de l'événement\",\"HhwcTQ\":\"Nom de l'événement\",\"WZZzB6\":\"Le nom de l'événement est obligatoire\",\"Wd5CDM\":\"Le nom de l'événement doit contenir moins de 150 caractères\",\"4JzCvP\":\"Événement non disponible\",\"Gh9Oqb\":\"Nom de l'organisateur de l'événement\",\"mImacG\":\"Page de l'événement\",\"Hk9Ki/\":\"Événement restauré avec succès\",\"JyD0LH\":\"Paramètres de l'événement\",\"cOePZk\":\"Heure de l'événement\",\"e8WNln\":\"Fuseau horaire de l'événement\",\"GeqWgj\":\"Fuseau Horaire de l'Événement\",\"XVLu2v\":\"Titre de l'événement\",\"OfmsI9\":\"Événement trop récent\",\"4SILkp\":\"Totaux de l'événement\",\"YDVUVl\":\"Types d'événements\",\"+HeiVx\":\"Événement mis à jour\",\"4K2OjV\":\"Lieu de l'Événement\",\"19j6uh\":\"Performance des événements\",\"PC3/fk\":\"Événements commençant dans les prochaines 24 heures\",\"nwiZdc\":[\"Tous les \",[\"0\"]],\"2LJU4o\":[\"Tous les \",[\"0\"],\" jours\"],\"yLiYx+\":[\"Tous les \",[\"0\"],\" mois\"],\"nn9ice\":[\"Toutes les \",[\"0\"],\" semaines\"],\"Cdr8f9\":[\"Toutes les \",[\"0\"],\" semaines le \",[\"1\"]],\"GVEHRk\":[\"Tous les \",[\"0\"],\" ans\"],\"fTFfOK\":\"Chaque modèle d'e-mail doit inclure un bouton d'appel à l'action qui renvoie vers la page appropriée\",\"BVinvJ\":\"Exemples : \\\"Comment avez-vous entendu parler de nous ?\\\", \\\"Nom de l'entreprise pour la facture\\\"\",\"2hGPQG\":\"Exemples : \\\"Taille de t-shirt\\\", \\\"Préférence de repas\\\", \\\"Titre du poste\\\"\",\"qNuTh3\":\"Exception\",\"M1RnFv\":\"Expiré\",\"kF8HQ7\":\"Exporter les réponses\",\"2KAI4N\":\"Exporter CSV\",\"JKfSAv\":\"Échec de l'exportation. Veuillez réessayer.\",\"SVOEsu\":\"Exportation commencée. Préparation du fichier...\",\"wuyaZh\":\"Exportation réussie\",\"9bpUSo\":\"Exportation des affiliés\",\"jtrqH9\":\"Exportation des participants\",\"R4Oqr8\":\"Exportation terminée. Téléchargement du fichier...\",\"UlAK8E\":\"Exportation des commandes\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Échoué\",\"8uOlgz\":\"Échoué le\",\"tKcbYd\":\"Travaux échoués\",\"SsI9v/\":\"Échec de l'abandon de la commande. Veuillez réessayer.\",\"LdPKPR\":\"Échec de l'attribution de la configuration\",\"PO0cfn\":\"Échec de l'annulation de la date\",\"YUX+f+\":\"Échec de l'annulation des dates\",\"SIHgVQ\":\"Échec de l'annulation du message\",\"cEFg3R\":\"Échec de la création de l'affilié\",\"dVgNF1\":\"Échec de la création de la configuration\",\"fAoRRJ\":\"Échec de la création du planning\",\"U66oUa\":\"Échec de la création du modèle\",\"aFk48v\":\"Échec de la suppression de la configuration\",\"n1CYMH\":\"Échec de la suppression de la date\",\"KXv+Qn\":\"Échec de la suppression de la date. Des commandes peuvent y être associées.\",\"JJ0uRo\":\"Échec de la suppression des dates\",\"rgoBnv\":\"Échec de la suppression de l'événement\",\"Zw6LWb\":\"Échec de la suppression du travail\",\"tq0abZ\":\"Échec de la suppression des travaux\",\"2mkc3c\":\"Échec de la suppression de l'organisateur\",\"vKMKnu\":\"Échec de la suppression de la question\",\"xFj7Yj\":\"Échec de la suppression du modèle\",\"jo3Gm6\":\"Échec de l'exportation des affiliés\",\"Jjw03p\":\"Échec de l'exportation des participants\",\"ZPwFnN\":\"Échec de l'exportation des commandes\",\"zGE3CH\":\"Échec de l'exportation du rapport. Veuillez réessayer.\",\"lS9/aZ\":\"Impossible de charger les destinataires\",\"X4o0MX\":\"Échec du chargement du webhook\",\"ETcU7q\":\"Échec de l'offre de place\",\"5670b9\":\"Échec de l'offre de billets\",\"e5KIbI\":\"Échec de la réactivation de la date\",\"7zyx8a\":\"Échec du retrait de la liste d'attente\",\"A/P7PX\":\"Échec de la suppression du remplacement\",\"ogWc1z\":\"Échec de la réouverture de la date\",\"0+iwE5\":\"Échec de la réorganisation des questions\",\"EJPAcd\":\"Échec du renvoi de la confirmation de commande\",\"DjSbj3\":\"Échec du renvoi du billet\",\"YQ3QSS\":\"Échec du renvoi du code de vérification\",\"wDioLj\":\"Échec du réessai du travail\",\"DKYTWG\":\"Échec du réessai des travaux\",\"WRREqF\":\"Échec de l'enregistrement du remplacement\",\"sj/eZA\":\"Échec de l'enregistrement du remplacement de prix\",\"780n8A\":\"Échec de l'enregistrement des paramètres du produit\",\"zTkTF3\":\"Échec de la sauvegarde du modèle\",\"l6acRV\":\"Échec de l'enregistrement des paramètres TVA. Veuillez réessayer.\",\"T6B2gk\":\"Échec de l'envoi du message. Veuillez réessayer.\",\"lKh069\":\"Échec du démarrage de l'exportation\",\"t/KVOk\":\"Échec du démarrage de l'usurpation d'identité. Veuillez réessayer.\",\"QXgjH0\":\"Échec de l'arrêt de l'usurpation d'identité. Veuillez réessayer.\",\"i0QKrm\":\"Échec de la mise à jour de l'affilié\",\"NNc33d\":\"Échec de la mise à jour de la réponse.\",\"E9jY+o\":\"Échec de la mise à jour du participant\",\"uQynyf\":\"Échec de la mise à jour de la configuration\",\"i2PFQJ\":\"Échec de la mise à jour du statut de l'événement\",\"EhlbcI\":\"Échec de la mise à jour du niveau de messagerie\",\"rpGMzC\":\"Échec de la mise à jour de la commande\",\"T2aCOV\":\"Échec de la mise à jour du statut de l'organisateur\",\"Eeo/Gy\":\"Échec de la mise à jour du paramètre\",\"kqA9lY\":\"Échec de la mise à jour des paramètres de TVA\",\"7/9RFs\":\"Échec du téléversement de l’image.\",\"nkNfWu\":\"Échec du téléchargement de l'image. Veuillez réessayer.\",\"rxy0tG\":\"Échec de la vérification de l'e-mail\",\"QRUpCk\":\"Famille\",\"5LO38w\":\"Virements rapides sur votre banque\",\"4lgLew\":\"Février\",\"9bHCo2\":\"Devise des frais\",\"/sV91a\":\"Gestion des frais\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Frais contournés\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Le fichier est trop volumineux. La taille maximale est de 5 Mo.\",\"VejKUM\":\"Remplissez d'abord vos informations ci-dessus\",\"/n6q8B\":\"Cinéma\",\"L1qbUx\":\"Filtrer les participants\",\"8OvVZZ\":\"Filtrer les Participants\",\"N/H3++\":\"Filtrer par date\",\"mvrlBO\":\"Filtrer par événement\",\"g+xRXP\":\"Terminer la configuration de Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"Premier\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Premier participant\",\"4pwejF\":\"Le prénom est obligatoire\",\"3lkYdQ\":\"Frais fixes\",\"6bBh3/\":\"Frais fixes\",\"zWqUyJ\":\"Frais fixes facturés par transaction\",\"LWL3Bs\":\"Les frais fixes doivent être égaux ou supérieurs à 0\",\"0RI8m4\":\"Flash éteint\",\"q0923e\":\"Flash allumé\",\"lWxAUo\":\"Nourriture et boissons\",\"nFm+5u\":\"Texte de Pied de Page\",\"a8nooQ\":\"Quatrième\",\"mob/am\":\"Ve\",\"wtuVU4\":\"Fréquence\",\"xVhQZV\":\"Ven\",\"39y5bn\":\"Vendredi\",\"f5UbZ0\":\"Propriété complète des données\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Remboursement complet\",\"UsIfa8\":\"Adresse complète résolue\",\"PGQLdy\":\"à venir\",\"8N/j1s\":\"Dates à venir uniquement\",\"yRx/6K\":\"Les dates à venir seront copiées avec la capacité remise à zéro\",\"T02gNN\":\"Admission Générale\",\"3ep0Gx\":\"Informations générales sur votre organisateur\",\"ziAjHi\":\"Générer\",\"exy8uo\":\"Générer un code\",\"4CETZY\":\"Itinéraire\",\"pjkEcB\":\"Recevez vos paiements\",\"lGYzP6\":\"Soyez payé avec Stripe\",\"ZDIydz\":\"Commencer\",\"u6FPxT\":\"Obtenir des billets\",\"8KDgYV\":\"Préparez votre événement\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Retour\",\"oNL5vN\":\"Aller à la page de l'événement\",\"gHSuV/\":\"Aller à la page d'accueil\",\"8+Cj55\":\"Aller au planning\",\"6nDzTl\":\"Bonne lisibilité\",\"76gPWk\":\"Compris\",\"aGWZUr\":\"Revenu brut\",\"n8IUs7\":\"Revenu brut\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestion des invités\",\"NUsTc4\":\"En cours\",\"kTSQej\":[\"Bonjour \",[\"0\"],\", gérez votre plateforme depuis ici.\"],\"dORAcs\":\"Voici tous les billets associés à votre adresse e-mail.\",\"g+2103\":\"Voici votre lien d'affiliation\",\"bVsnqU\":\"Bonjour,\",\"/iE8xx\":\"Frais Hi.Events\",\"zppscQ\":\"Frais de plateforme Hi.Events et ventilation TVA par transaction\",\"D+zLDD\":\"Masqué\",\"DRErHC\":\"Masqué aux participants - visible uniquement par les organisateurs\",\"NNnsM0\":\"Masquer les options avancées\",\"P+5Pbo\":\"Masquer les réponses\",\"VMlRqi\":\"Masquer les détails\",\"FmogyU\":\"Masquer les options\",\"gtEbeW\":\"Mettre en avant\",\"NF8sdv\":\"Message de mise en avant\",\"MXSqmS\":\"Mettre ce produit en avant\",\"7ER2sc\":\"En vedette\",\"sq7vjE\":\"Les produits mis en avant auront une couleur de fond différente pour se démarquer sur la page de l'événement.\",\"1+WSY1\":\"Loisirs\",\"yY8wAv\":\"Heures\",\"sy9anN\":\"Combien de temps un client a pour finaliser son achat après avoir reçu une offre. Laisser vide pour aucun délai.\",\"n2ilNh\":\"Quelle est la durée du planning ?\",\"DMr2XN\":\"À quelle fréquence ?\",\"AVpmAa\":\"Comment payer hors ligne\",\"cceMns\":\"Comment la TVA est appliquée aux frais de plateforme que nous vous facturons.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Hongrois\",\"8Wgd41\":\"Je reconnais mes responsabilités en tant que responsable du traitement des données\",\"O8m7VA\":\"J'accepte de recevoir des notifications par e-mail liées à cet événement\",\"YLgdk5\":\"Je confirme qu'il s'agit d'un message transactionnel lié à cet événement\",\"4/kP5a\":\"Si un nouvel onglet ne s'est pas ouvert automatiquement, veuillez cliquer sur le bouton ci-dessous pour poursuivre le paiement.\",\"W/eN+G\":\"Si vide, l'adresse sera utilisée pour générer un lien Google Maps\",\"iIEaNB\":\"Si vous avez un compte chez nous, vous recevrez un e-mail avec des instructions pour réinitialiser votre mot de passe.\",\"an5hVd\":\"Images\",\"tSVr6t\":\"Usurper l'identité\",\"TWXU0c\":\"Usurper l'utilisateur\",\"5LAZwq\":\"Usurpation d'identité démarrée\",\"IMwcdR\":\"Usurpation d'identité arrêtée\",\"0I0Hac\":\"Avis important\",\"yD3avI\":\"Important : La modification de votre adresse e-mail mettra à jour le lien d'accès à cette commande. Vous serez redirigé vers le nouveau lien de commande après l'enregistrement.\",\"jT142F\":[\"Dans \",[\"diffHours\"],\" heures\"],\"OoSyqO\":[\"Dans \",[\"diffMinutes\"],\" minutes\"],\"PdMhEx\":[\"dans les dernières \",[\"0\"],\" min\"],\"u7r0G5\":\"En présentiel — définir un lieu\",\"Ip0hl5\":\"in_person, online, unset ou mixed\",\"F1Xp97\":\"Participants individuels\",\"85e6zs\":\"Insérer un jeton Liquid\",\"38KFY0\":\"Insérer une variable\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Virements Stripe instantanés\",\"nbfdhU\":\"Intégrations\",\"I8eJ6/\":\"Notes internes sur le billet du participant\",\"B2Tpo0\":\"E-mail invalide\",\"5tT0+u\":\"Format d'e-mail invalide\",\"f9WRpE\":\"Type de fichier invalide. Veuillez télécharger une image.\",\"tnL+GP\":\"Syntaxe Liquid invalide. Veuillez la corriger et réessayer.\",\"N9JsFT\":\"Format de numéro de TVA invalide\",\"g+lLS9\":\"Inviter un membre de l'équipe\",\"1z26sk\":\"Inviter un membre de l'équipe\",\"KR0679\":\"Inviter des membres de l'équipe\",\"aH6ZIb\":\"Invitez votre équipe\",\"IuMGvq\":\"Facture\",\"Lj7sBL\":\"Italien\",\"F5/CBH\":\"article(s)\",\"BzfzPK\":\"Articles\",\"rjyWPb\":\"Janvier\",\"KmWyx0\":\"Travail\",\"o5r6b2\":\"Travail supprimé\",\"cd0jIM\":\"Détails du travail\",\"ruJO57\":\"Nom du travail\",\"YZi+Hu\":\"Travail en file d'attente pour réessai\",\"nCywLA\":\"Rejoignez de n'importe où\",\"SNzppu\":\"Rejoindre la liste d'attente\",\"dLouFI\":[\"Rejoindre la liste d'attente pour \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrit\",\"u4ex5r\":\"Juillet\",\"zeEQd/\":\"Juin\",\"MxjCqk\":\"Vous cherchez vos billets ?\",\"xOTzt5\":\"à l'instant\",\"0RihU9\":\"Vient de se terminer\",\"lB2hSG\":[\"Me tenir informé des actualités et événements de \",[\"0\"]],\"ioFA9i\":\"Gardez les bénéfices.\",\"4Sffp7\":\"Libellé de la séance\",\"o66QSP\":\"mises à jour de libellé\",\"RtKKbA\":\"Dernier\",\"DruLRc\":\"14 derniers jours\",\"ve9JTU\":\"Le nom est obligatoire\",\"h0Q9Iw\":\"Dernière réponse\",\"gw3Ur5\":\"Dernier déclenchement\",\"FIq1Ba\":\"Plus tard\",\"xvnLMP\":\"Derniers enregistrements\",\"pzAivY\":\"Latitude du lieu résolu\",\"N5TErv\":\"Laissez vide pour illimité\",\"L/hDDD\":\"Laissez vide pour appliquer cette liste d'enregistrement à toutes les séances\",\"9Pf3wk\":\"Laissez activé pour couvrir tous les billets de l'événement. Désactivez pour choisir des billets spécifiques.\",\"Hq2BzX\":\"Informez-les du changement\",\"+uexiy\":\"Informez-les des changements\",\"exYcTF\":\"Bibliothèque\",\"1njn7W\":\"Clair\",\"1qY5Ue\":\"Lien expiré ou invalide\",\"+zSD/o\":\"Lien vers la page d'accueil de l'événement\",\"psosdY\":\"Lien vers les détails de la commande\",\"6JzK4N\":\"Lien vers le billet\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Liens autorisés\",\"2BBAbc\":\"Liste\",\"5NZpX8\":\"Vue liste\",\"dF6vP6\":\"En ligne\",\"fpMs2Z\":\"EN DIRECT\",\"D9zTjx\":\"Événements en Direct\",\"C33p4q\":\"Dates chargées\",\"WdmJIX\":\"Chargement de l'aperçu...\",\"IoDI2o\":\"Chargement des jetons...\",\"G3Ge9Z\":\"Chargement des journaux de webhook...\",\"NFxlHW\":\"Chargement des webhooks\",\"E0DoRM\":\"Lieu supprimé\",\"NtLHT3\":\"Adresse formatée du lieu\",\"h4vxDc\":\"Latitude du lieu\",\"f2TMhR\":\"Longitude du lieu\",\"lnCo2f\":\"Mode du lieu\",\"8pmGFk\":\"Nom du lieu\",\"7w8lJU\":\"Lieu enregistré\",\"YsRXDD\":\"Lieu mis à jour\",\"A/kIva\":\"mises à jour de lieu\",\"VppBoU\":\"Lieux\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Couverture\",\"gddQe0\":\"Logo et image de couverture pour votre organisateur\",\"TBEnp1\":\"Le logo sera affiché dans l'en-tête\",\"Jzu30R\":\"Le logo sera affiché sur le billet\",\"zKTMTg\":\"Longitude du lieu résolu\",\"PSRm6/\":\"Rechercher mes billets\",\"yJFu/X\":\"Siège social\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Gérer \",[\"0\"]],\"wZJfA8\":\"Gérez les dates et les horaires de votre événement récurrent\",\"RlzPUE\":\"Gérer sur Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Gérer le planning\",\"zXuaxY\":\"Gérez la liste d'attente de votre événement, consultez les statistiques et proposez des billets aux participants.\",\"BWTzAb\":\"Manuel\",\"g2npA5\":\"Offre manuelle\",\"hg6l4j\":\"Mars\",\"pqRBOz\":\"Marquer comme validé (remplacement administrateur)\",\"2L3vle\":\"Max messages / 24h\",\"Qp4HWD\":\"Max destinataires / message\",\"3JzsDb\":\"Mai\",\"agPptk\":\"Support\",\"xDAtGP\":\"Message\",\"bECJqy\":\"Message approuvé avec succès\",\"1jRD0v\":\"Envoyez des messages aux participants avec des billets spécifiques\",\"uQLXbS\":\"Message annulé\",\"48rf3i\":\"Le message ne peut pas dépasser 5000 caractères\",\"ZPj0Q8\":\"Détails du message\",\"Vjat/X\":\"Le message est obligatoire\",\"0/yJtP\":\"Envoyer un message aux propriétaires de commandes avec des produits spécifiques\",\"saG4At\":\"Message programmé\",\"mFdA+i\":\"Niveau de messagerie\",\"v7xKtM\":\"Niveau de messagerie mis à jour avec succès\",\"H9HlDe\":\"minutes\",\"agRWc1\":\"Minutes\",\"YYzBv9\":\"Lu\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Lun\",\"hty0d5\":\"Lundi\",\"JbIgPz\":\"Les valeurs monétaires sont des totaux approximatifs pour toutes les devises\",\"qvF+MT\":\"Surveiller et gérer les travaux de fond échoués\",\"kY2ll9\":\"mois\",\"HajiZl\":\"Mois\",\"+8Nek/\":\"Mensuel\",\"1LkxnU\":\"Schéma mensuel\",\"6jefe3\":\"mois\",\"f8jrkd\":\"plus\",\"JcD7qf\":\"Plus d'actions\",\"w36OkR\":\"Événements les plus vus (14 derniers jours)\",\"+Y/na7\":\"Décaler toutes les dates plus tôt ou plus tard\",\"3DIpY0\":\"Plusieurs lieux\",\"g9cQCP\":\"Plusieurs types de billets\",\"GfaxEk\":\"Musique\",\"oVGCGh\":\"Mes Billets\",\"8/brI5\":\"Le nom est obligatoire\",\"sFFArG\":\"Le nom doit comporter moins de 255 caractères\",\"sCV5Yc\":\"Nom de l'événement\",\"xxU3NX\":\"Revenu net\",\"7I8LlL\":\"Nouvelle capacité\",\"n1GRql\":\"Nouveau libellé\",\"y0Fcpd\":\"Nouveau lieu\",\"ArHT/C\":\"Nouvelles inscriptions\",\"uK7xWf\":\"Nouvel horaire :\",\"veT5Br\":\"Prochaine séance\",\"WXtl5X\":[\"Prochaine : \",[\"nextFormatted\"]],\"eWRECP\":\"Vie nocturne\",\"HSw5l3\":\"Non - Je suis un particulier ou une entreprise non assujettie à la TVA\",\"VHfLAW\":\"Aucun compte\",\"+jIeoh\":\"Aucun compte trouvé\",\"074+X8\":\"Aucun webhook actif\",\"zxnup4\":\"Aucun affilié à afficher\",\"Dwf4dR\":\"Pas encore de questions pour les participants\",\"th7rdT\":\"Aucun participant\",\"PKySlW\":\"Aucun participant pour cette date pour le moment.\",\"/UC6qk\":\"Aucune donnée d'attribution trouvée\",\"E2vYsO\":\"Stripe n'a encore signalé aucune fonctionnalité.\",\"amMkpL\":\"Aucune capacité\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Aucune liste d'enregistrement disponible pour cet événement.\",\"wG+knX\":\"Aucun enregistrement\",\"+dAKxg\":\"Aucune configuration trouvée\",\"LiLk8u\":\"Aucune connexion disponible\",\"eb47T5\":\"Aucune donnée trouvée pour les filtres sélectionnés. Essayez d'ajuster la plage de dates ou la devise.\",\"lFVUyx\":\"Aucune liste d'enregistrement spécifique à la date\",\"I8mtzP\":\"Aucune date disponible ce mois-ci. Essayez de naviguer vers un autre mois.\",\"yDukIL\":\"Aucune date ne correspond aux filtres actuels.\",\"B7phdj\":\"Aucune date ne correspond à vos filtres\",\"/ZB4Um\":\"Aucune date ne correspond à votre recherche\",\"gEdNe8\":\"Aucune date planifiée pour le moment\",\"27GYXJ\":\"Aucune date planifiée.\",\"pZNOT9\":\"Pas de date de fin\",\"dW40Uz\":\"Aucun événement trouvé\",\"8pQ3NJ\":\"Aucun événement ne commence dans les prochaines 24 heures\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Aucun travail échoué\",\"EpvBAp\":\"Pas de facture\",\"XZkeaI\":\"Aucun journal trouvé\",\"nrSs2u\":\"Aucun message trouvé\",\"Rj99yx\":\"Aucune séance disponible\",\"IFU1IG\":\"Aucune séance à cette date\",\"OVFwlg\":\"Pas encore de questions de commande\",\"EJ7bVz\":\"Aucune commande trouvée\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Aucune commande pour cette date pour le moment.\",\"wUv5xQ\":\"Aucune activité d'organisateur au cours des 14 derniers jours\",\"vLd1tV\":\"Aucun contexte d’organisateur disponible.\",\"B7w4KY\":\"Aucun autre organisateur disponible\",\"PChXMe\":\"Aucune commande payée\",\"6jYQGG\":\"Aucun événement passé\",\"CHzaTD\":\"Aucun événement populaire au cours des 14 derniers jours\",\"zK/+ef\":\"Aucun produit disponible pour la sélection\",\"M1/lXs\":\"Aucun produit configuré pour cet événement.\",\"kY7XDn\":\"Aucun produit n'a d'entrées en liste d'attente\",\"wYiAtV\":\"Aucune inscription récente\",\"UW90md\":\"Aucun destinataire trouvé\",\"QoAi8D\":\"Aucune réponse\",\"JeO7SI\":\"Aucune réponse\",\"EK/G11\":\"Aucune réponse pour le moment\",\"7J5OKy\":\"Aucun lieu enregistré pour l’instant\",\"wpCjcf\":\"Aucun lieu enregistré pour le moment. Ils apparaîtront ici à mesure que vous créez des événements avec des adresses.\",\"mPdY6W\":\"Aucune suggestion\",\"3sRuiW\":\"Aucun billet trouvé\",\"k2C0ZR\":\"Aucune date à venir\",\"yM5c0q\":\"Aucun événement à venir\",\"qpC74J\":\"Aucun utilisateur trouvé\",\"8wgkoi\":\"Aucun événement vu au cours des 14 derniers jours\",\"Arzxc1\":\"Aucune inscription sur la liste d'attente\",\"n5vdm2\":\"Aucun événement webhook n'a encore été enregistré pour ce point de terminaison. Les événements apparaîtront ici une fois qu'ils seront déclenchés.\",\"4GhX3c\":\"Aucun webhook\",\"4+am6b\":\"Non, rester ici\",\"4JVMUi\":\"non modifié\",\"Itw24Q\":\"Non enregistré\",\"x5+Lcz\":\"Non Enregistré\",\"8n10sz\":\"Non Éligible\",\"kLvU3F\":\"Notifier les participants et arrêter les ventes\",\"t9QlBd\":\"Novembre\",\"kAREMN\":\"Nombre de dates à créer\",\"6u1B3O\":\"Séance\",\"mmoE62\":\"Séance annulée\",\"UYWXdN\":\"Date de fin de la séance\",\"k7dZT5\":\"Heure de fin de la séance\",\"Opinaj\":\"Libellé de la séance\",\"V9flmL\":\"Planning des séances\",\"NUTUUs\":\"page Planning des séances\",\"AT8UKD\":\"Date de début de la séance\",\"Um8bvD\":\"Heure de début de la séance\",\"Kh3WO8\":\"Résumé de la séance\",\"byXCTu\":\"Séances\",\"KATw3p\":\"Séances (à venir uniquement)\",\"85rTR2\":\"Les séances peuvent être configurées après la création\",\"dzQfDY\":\"Octobre\",\"BwJKBw\":\"de\",\"9h7RDh\":\"Offrir\",\"EfK2O6\":\"Offrir une place\",\"3sVRey\":\"Proposer des billets\",\"2O7Ybb\":\"Délai de l'offre\",\"1jUg5D\":\"Proposé\",\"l+/HS6\":[\"Les offres expirent après \",[\"timeoutHours\"],\" heures.\"],\"lQgMLn\":\"Nom du bureau ou du lieu\",\"6Aih4U\":\"Hors ligne\",\"Z6gBGW\":\"Paiement hors ligne\",\"nO3VbP\":[\"En vente \",[\"0\"]],\"oXOSPE\":\"En ligne\",\"aqmy5k\":\"En ligne — fournir les informations de connexion\",\"LuZBbx\":\"En ligne et en présentiel\",\"IXuOqt\":\"En ligne et en présentiel — voir le planning\",\"w3DG44\":\"Détails de connexion en ligne\",\"WjSpu5\":\"Événement en ligne\",\"TP6jss\":\"Détails de connexion à l'événement en ligne\",\"NdOxqr\":\"Seuls les administrateurs de compte peuvent supprimer ou archiver des événements. Contactez votre administrateur de compte pour obtenir de l'aide.\",\"rnoDMF\":\"Seuls les administrateurs de compte peuvent supprimer ou archiver des organisateurs. Contactez votre administrateur de compte pour obtenir de l'aide.\",\"bU7oUm\":\"Envoyer uniquement aux commandes avec ces statuts\",\"M2w1ni\":\"Visible uniquement avec un code promo\",\"y8Bm7C\":\"Ouvrir l'enregistrement\",\"RLz7P+\":\"Ouvrir la séance\",\"cDSdPb\":\"Surnom facultatif affiché dans les sélecteurs, ex. \\\"Salle de conférence du siège\\\"\",\"HXMJxH\":\"Texte optionnel pour les avertissements, informations de contact ou notes de remerciement (une seule ligne)\",\"L565X2\":\"options\",\"8m9emP\":\"ou ajoutez une date unique\",\"dSeVIm\":\"commande\",\"c/TIyD\":\"Commande et billet\",\"H5qWhm\":\"Commande annulée\",\"b6+Y+n\":\"Commande terminée\",\"x4MLWE\":\"Confirmation de commande\",\"CsTTH0\":\"Confirmation de commande renvoyée avec succès\",\"ppuQR4\":\"Commande créée\",\"0UZTSq\":\"Devise de la Commande\",\"xtQzag\":\"Détails de la commande\",\"HdmwrI\":\"Email de commande\",\"bwBlJv\":\"Prénom de la commande\",\"vrSW9M\":\"La commande a été annulée et remboursée. Le propriétaire de la commande a été notifié.\",\"rzw+wS\":\"Titulaires de commandes\",\"oI/hGR\":\"ID de commande\",\"Pc729f\":\"Commande en Attente de Paiement Hors Ligne\",\"F4NXOl\":\"Nom de famille de la commande\",\"RQCXz6\":\"Limites de commande\",\"SO9AEF\":\"Limites de commande définies\",\"5RDEEn\":\"Langue de la Commande\",\"vu6Arl\":\"Commande marquée comme payée\",\"sLbJQz\":\"Commande introuvable\",\"kvYpYu\":\"Commande introuvable\",\"i8VBuv\":\"Numéro de commande\",\"eJ8SvM\":\"N° de commande, date d'achat, email de l'acheteur\",\"FaPYw+\":\"Propriétaire de la commande\",\"eB5vce\":\"Propriétaires de commandes avec un produit spécifique\",\"CxLoxM\":\"Propriétaires de commandes avec des produits\",\"DoH3fD\":\"Paiement de la Commande en Attente\",\"UkHo4c\":\"Réf. commande\",\"EZy55F\":\"Commande remboursée\",\"6eSHqs\":\"Statuts des commandes\",\"oW5877\":\"Total de la commande\",\"e7eZuA\":\"Commande mise à jour\",\"1SQRYo\":\"Commande mise à jour avec succès\",\"KndP6g\":\"URL de la commande\",\"3NT0Ck\":\"La commande a été annulée\",\"V5khLm\":\"commandes\",\"sd5IMt\":\"Commandes terminées\",\"5It1cQ\":\"Commandes exportées\",\"tlKX/S\":\"Les commandes couvrant plusieurs dates seront signalées pour examen manuel.\",\"UQ0ACV\":\"Total des commandes\",\"B/EBQv\":\"Commandes:\",\"qtGTNu\":\"Comptes organiques\",\"ucgZ0o\":\"Organisation\",\"P/JHA4\":\"Organisateur archivé avec succès\",\"S3CZ5M\":\"Tableau de bord de l'organisateur\",\"GzjTd0\":\"Organisateur supprimé avec succès\",\"Uu0hZq\":\"E-mail de l'organisateur\",\"Gy7BA3\":\"Adresse e-mail de l'organisateur\",\"SQqJd8\":\"Organisateur introuvable\",\"HF8Bxa\":\"Organisateur restauré avec succès\",\"wpj63n\":\"Paramètres de l'organisateur\",\"o1my93\":\"Échec de la mise à jour du statut de l'organisateur. Veuillez réessayer plus tard\",\"rLHma1\":\"Statut de l'organisateur mis à jour\",\"LqBITi\":\"Le modèle de l'organisateur/par défaut sera utilisé\",\"q4zH+l\":\"Organisateurs\",\"/IX/7x\":\"Autre\",\"RsiDDQ\":\"Autres Listes (Billet Non Inclus)\",\"aDfajK\":\"En plein air\",\"qMASRF\":\"Messages sortants\",\"iCOVQO\":\"Remplacer\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Remplacer le prix\",\"cnVIpl\":\"Remplacement supprimé\",\"6/dCYd\":\"Aperçu\",\"6WdDG7\":\"Page\",\"8uqsE5\":\"Page plus disponible\",\"QkLf4H\":\"URL de la page\",\"sF+Xp9\":\"Vues de page\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Comptes payants\",\"5F7SYw\":\"Remboursement partiel\",\"fFYotW\":[\"Partiellement remboursé : \",[\"0\"]],\"i8day5\":\"Répercuter les frais sur l'acheteur\",\"k4FLBQ\":\"Répercuter sur l'acheteur\",\"Ff0Dor\":\"Passé\",\"BFjW8X\":\"En retard\",\"xTPjSy\":\"Événements passés\",\"/l/ckQ\":\"Coller l’URL\",\"URAE3q\":\"En pause\",\"4fL/V7\":\"Payer\",\"OZK07J\":\"Payer pour déverrouiller\",\"c2/9VE\":\"Charge utile\",\"5cxUwd\":\"Date de paiement\",\"ENEPLY\":\"Mode de paiement\",\"8Lx2X7\":\"Paiement reçu\",\"fx8BTd\":\"Paiements non disponibles\",\"C+ylwF\":\"Virements\",\"UbRKMZ\":\"En attente\",\"UkM20g\":\"En attente de révision\",\"dPYu1F\":\"Par participant\",\"mQV/nJ\":\"par min\",\"VlXNyK\":\"Par commande\",\"hauDFf\":\"Par billet\",\"mnF83a\":\"Frais en pourcentage\",\"TNLuRD\":\"Frais en pourcentage (%)\",\"MixU2P\":\"Le pourcentage doit être compris entre 0 et 100\",\"MkuVAZ\":\"Pourcentage du montant de la transaction\",\"/Bh+7r\":\"Performance\",\"fIp56F\":\"Supprimez définitivement cet événement et toutes ses données associées.\",\"nJeeX7\":\"Supprimez définitivement cet organisateur et tous ses événements.\",\"wfCTgK\":\"Supprimer définitivement cette date\",\"6kPk3+\":\"Informations personnelles\",\"zmwvG2\":\"Téléphone\",\"SdM+Q1\":\"Choisir un lieu\",\"tSR/oe\":\"Choisir une date de fin\",\"e8kzpp\":\"Choisissez au moins un jour du mois\",\"35C8QZ\":\"Choisissez au moins un jour de la semaine\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Passée le\",\"wBJR8i\":\"Planifier un événement ?\",\"J3lhKT\":\"Frais de plateforme\",\"RD51+P\":[\"Frais de plateforme de \",[\"0\"],\" déduits de votre paiement\"],\"br3Y/y\":\"Frais de plateforme\",\"3buiaw\":\"Rapport des frais de plateforme\",\"kv9dM4\":\"Revenus de la plateforme\",\"PJ3Ykr\":\"Veuillez vérifier votre billet pour connaître les nouveaux horaires. Vos billets restent valides — aucune action n'est nécessaire à moins que les nouveaux horaires ne vous conviennent pas. Répondez à cet e-mail si vous avez des questions.\",\"OtjenF\":\"Veuillez saisir une adresse e-mail valide\",\"jEw0Mr\":\"Veuillez entrer une URL valide\",\"n8+Ng/\":\"Veuillez saisir le code à 5 chiffres\",\"r+lQXT\":\"Veuillez entrer votre numéro de TVA\",\"Dvq0wf\":\"Veuillez fournir une image.\",\"2cUopP\":\"Veuillez recommencer le processus de commande.\",\"GoXxOA\":\"Veuillez sélectionner une date et une heure\",\"8KmsFa\":\"Veuillez sélectionner une plage de dates\",\"EFq6EG\":\"Veuillez sélectionner une image.\",\"fuwKpE\":\"Veuillez réessayer.\",\"klWBeI\":\"Veuillez patienter avant de demander un autre code\",\"hfHhaa\":\"Veuillez patienter pendant que nous préparons vos affiliés pour l'exportation...\",\"o+tJN/\":\"Veuillez patienter pendant que nous préparons l'exportation de vos participants...\",\"+5Mlle\":\"Veuillez patienter pendant que nous préparons l'exportation de vos commandes...\",\"trnWaw\":\"Polonais\",\"luHAJY\":\"Événements populaires (14 derniers jours)\",\"p/78dY\":\"Position\",\"TjX7xL\":\"Message Post-Commande\",\"OESu7I\":\"Évitez la survente en partageant l'inventaire entre plusieurs types de billets.\",\"NgVUL2\":\"Aperçu du formulaire de paiement\",\"cs5muu\":\"Aperçu de la page de l’événement\",\"+4yRWM\":\"Prix du billet\",\"Jm2AC3\":\"Niveau de prix\",\"a5jvSX\":\"Niveaux de prix\",\"ReihZ7\":\"Aperçu avant Impression\",\"JnuPvH\":\"Imprimer le billet\",\"tYF4Zq\":\"Imprimer en PDF\",\"LcET2C\":\"Politique de confidentialité\",\"8z6Y5D\":\"Traiter le remboursement\",\"JcejNJ\":\"Traitement de la commande\",\"EWCLpZ\":\"Produit créé\",\"XkFYVB\":\"Produit supprimé\",\"YMwcbR\":\"Détail des ventes de produits, revenus et taxes\",\"ls0mTC\":\"Les paramètres du produit ne peuvent pas être modifiés pour les dates annulées.\",\"2339ej\":\"Paramètres du produit enregistrés avec succès\",\"ldVIlB\":\"Produit mis à jour\",\"CP3D8G\":\"Progression\",\"JoKGiJ\":\"Code promo\",\"k3wH7i\":\"Utilisation des codes promo et détail des réductions\",\"tZqL0q\":\"codes promo\",\"oCHiz3\":\"Codes promo\",\"uEhdRh\":\"Promo seulement\",\"dLm8V5\":\"Les e-mails promotionnels peuvent entraîner la suspension du compte\",\"XoEWtl\":\"Renseignez au moins un champ d’adresse pour le nouveau lieu.\",\"2W/7Gz\":\"Fournissez les informations suivantes avant la prochaine vérification de Stripe pour continuer à recevoir des virements.\",\"aemBRq\":\"Fournisseur\",\"EEYbdt\":\"Publier\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Acheté\",\"JunetL\":\"Acheteur\",\"phmeUH\":\"Email de l'acheteur\",\"ywR4ZL\":\"Enregistrement par code QR\",\"oWXNE5\":\"Qté\",\"biEyJ4\":\"Réponses\",\"k/bJj0\":\"Questions réorganisées\",\"b24kPi\":\"File d'attente\",\"lTPqpM\":\"Astuce rapide\",\"fqDzSu\":\"Taux\",\"mnUGVC\":\"Limite de débit dépassée. Veuillez réessayer plus tard.\",\"t41hVI\":\"Réoffrir une place\",\"TNclgc\":\"Réactiver cette date ? Elle sera rouverte aux ventes futures.\",\"uqoRbb\":\"Analytiques en temps réel\",\"xzRvs4\":[\"Recevoir les mises à jour produits de \",[\"0\"],\".\"],\"pLXbi8\":\"Inscriptions récentes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Participants récents\",\"qhfiwV\":\"Derniers enregistrements\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Commandes récentes\",\"7hPBBn\":\"destinataire\",\"jp5bq8\":\"destinataires\",\"yPrbsy\":\"Destinataires\",\"E1F5Ji\":\"Les destinataires sont disponibles après l'envoi du message\",\"wuhHPE\":\"Récurrent\",\"asLqwt\":\"Événement récurrent\",\"D0tAMe\":\"Événements récurrents\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirection vers Stripe...\",\"pnoTN5\":\"Comptes de parrainage\",\"ACKu03\":\"Actualiser l'aperçu\",\"vuFYA6\":\"Rembourser toutes les commandes de ces dates\",\"4cRUK3\":\"Rembourser toutes les commandes de cette date\",\"fKn/k6\":\"Montant du remboursement\",\"qY4rpA\":\"Remboursement échoué\",\"TspTcZ\":\"Remboursement émis\",\"FaK/8G\":[\"Rembourser la commande \",[\"0\"]],\"MGbi9P\":\"Remboursement en attente\",\"BDSRuX\":[\"Remboursé : \",[\"0\"]],\"bU4bS1\":\"Remboursements\",\"rYXfOA\":\"Paramètres régionaux\",\"5tl0Bp\":\"Questions d'inscription\",\"ZNo5k1\":\"Restant\",\"EMnuA4\":\"Rappel programmé\",\"Bjh87R\":\"Retirer le libellé de toutes les dates\",\"KkJtVK\":\"Rouvrir aux nouvelles ventes\",\"XJwWJp\":\"Rouvrir cette date aux nouvelles ventes ? Les billets précédemment annulés ne seront pas restaurés — les participants concernés restent annulés et les remboursements déjà émis ne seront pas annulés.\",\"bAwDQs\":\"Répéter tous les\",\"CQeZT8\":\"Rapport non trouvé\",\"JEPMXN\":\"Demander un nouveau lien\",\"TMLAx2\":\"Requis\",\"mdeIOH\":\"Renvoyer le code\",\"sQxe68\":\"Renvoyer la confirmation\",\"bxoWpz\":\"Renvoyer l'e-mail de confirmation\",\"G42SNI\":\"Renvoyer l'e-mail\",\"TTpXL3\":[\"Renvoyer dans \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Renvoyer le billet\",\"Uwsg2F\":\"Réservé\",\"8wUjGl\":\"Réservé jusqu'au\",\"a5z8mb\":\"Réinitialiser au prix de base\",\"kCn6wb\":\"Réinitialisation...\",\"404zLK\":\"Lieu résolu ou nom du site\",\"ZlCDf+\":\"Réponse\",\"bsydMp\":\"Détails de la réponse\",\"yKu/3Y\":\"Restaurer\",\"RokrZf\":\"Restaurer l'événement\",\"/JyMGh\":\"Restaurer l'organisateur\",\"HFvFRb\":\"Restaurez cet événement pour le rendre à nouveau visible.\",\"DDIcqy\":\"Restaurez cet organisateur et rendez-le à nouveau actif.\",\"mO8KLE\":\"résultats\",\"6gRgw8\":\"Réessayer\",\"1BG8ga\":\"Tout réessayer\",\"rDC+T6\":\"Réessayer le travail\",\"CbnrWb\":\"Retour à l'événement\",\"mdQ0zb\":\"Lieux réutilisables pour vos événements. Les lieux créés depuis l'autocomplétion sont enregistrés ici automatiquement.\",\"XFOPle\":\"Réutiliser\",\"1Zehp4\":\"Réutilisez une connexion Stripe d'un autre organisateur de ce compte.\",\"Oo/PLb\":\"Résumé des revenus\",\"O/8Ceg\":\"Revenus du jour\",\"CfuueU\":\"Révoquer l'offre\",\"RIgKv+\":\"Exécuter jusqu'à une date précise\",\"JYRqp5\":\"Sa\",\"dFFW9L\":[\"Vente terminée \",[\"0\"]],\"loCKGB\":[\"Vente se termine \",[\"0\"]],\"wlfBad\":\"Période de vente\",\"qi81Jg\":\"Les dates de la période de vente s'appliquent à toutes les dates de votre planning. Pour contrôler la tarification et la disponibilité de dates individuelles, utilisez les remplacements depuis la <0>page Planning des séances.\",\"5CDM6r\":\"Période de vente définie\",\"ftzaMf\":\"Période de vente, limites de commande, visibilité\",\"zpekWp\":[\"Vente commence \",[\"0\"]],\"mUv9U4\":\"Ventes\",\"9KnRdL\":\"Ventes en pause\",\"JC3J0k\":\"Répartition des ventes, de la participation et des enregistrements par séance\",\"3VnlS9\":\"Ventes, commandes et indicateurs de performance pour tous les événements\",\"3Q1AWe\":\"Ventes:\",\"LeuERW\":\"Identique à l'événement\",\"B4nE3N\":\"Prix du billet exemple\",\"8BRPoH\":\"Lieu Exemple\",\"PiK6Ld\":\"Sam\",\"+5kO8P\":\"Samedi\",\"zJiuDn\":\"Enregistrer le remplacement de frais\",\"NB8Uxt\":\"Enregistrer le planning\",\"KZrfYJ\":\"Enregistrer les liens sociaux\",\"9Y3hAT\":\"Sauvegarder le modèle\",\"C8ne4X\":\"Enregistrer le Design du Billet\",\"cTI8IK\":\"Enregistrer les paramètres de TVA\",\"6/TNCd\":\"Enregistrer les paramètres TVA\",\"4RvD9q\":\"Lieu enregistré\",\"cgw0cL\":\"Lieux enregistrés\",\"lvSrsT\":\"Lieux enregistrés\",\"Fbqm/I\":\"L'enregistrement d'un remplacement crée une configuration dédiée pour cet organisateur s'il utilise actuellement la valeur par défaut du système.\",\"I+FvbD\":\"Scanner\",\"0zd6Nm\":\"Scannez un billet pour enregistrer un participant\",\"bQG7Qk\":\"Les billets scannés apparaîtront ici\",\"WDYSLJ\":\"Mode scanner\",\"gmB6oO\":\"Planning\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Planning créé avec succès\",\"YP7frt\":\"Le planning se termine le\",\"QS1Nla\":\"Programmer pour plus tard\",\"NAzVVw\":\"Programmer le message\",\"Fz09JP\":\"La planification commence le\",\"4ba0NE\":\"Planifié\",\"qcP/8K\":\"Heure programmée\",\"A1taO8\":\"Rechercher\",\"ftNXma\":\"Rechercher des affiliés...\",\"VMU+zM\":\"Rechercher des participants\",\"VY+Bdn\":\"Rechercher par nom de compte ou e-mail...\",\"VX+B3I\":\"Rechercher par titre d'événement ou organisateur...\",\"R0wEyA\":\"Rechercher par nom de travail ou exception...\",\"VT+urE\":\"Rechercher par nom ou e-mail...\",\"GHdjuo\":\"Rechercher par nom, e-mail ou compte...\",\"4mBFO7\":\"Rechercher par nom, n° commande, n° billet ou email\",\"20ce0U\":\"Rechercher par ID de commande, nom du client ou e-mail...\",\"4DSz7Z\":\"Rechercher par sujet, événement ou compte...\",\"nQC7Z9\":\"Rechercher des dates...\",\"iRtEpV\":\"Rechercher des dates…\",\"JRM7ao\":\"Rechercher une adresse\",\"BWF1kC\":\"Rechercher des messages...\",\"3aD3GF\":\"Saisonnier\",\"ku//5b\":\"Deuxième\",\"Mck5ht\":\"Paiement sécurisé\",\"s7tXqF\":\"Voir le planning\",\"JFap6u\":\"Voir ce qu'il manque à Stripe\",\"p7xUrt\":\"Sélectionner une catégorie\",\"hTKQwS\":\"Sélectionner une date et une heure\",\"e4L7bF\":\"Sélectionnez un message pour voir son contenu\",\"zPRPMf\":\"Sélectionner un niveau\",\"uqpVri\":\"Sélectionner un horaire\",\"BFRSTT\":\"Sélectionner un compte\",\"wgNoIs\":\"Tout sélectionner\",\"mCB6Je\":\"Tout sélectionner\",\"aCEysm\":[\"Tout sélectionner le \",[\"0\"]],\"a6+167\":\"Sélectionner un événement\",\"CFbaPk\":\"Sélectionner un groupe de participants\",\"88a49s\":\"Choisir la caméra\",\"tVW/yo\":\"Sélectionner la devise\",\"SJQM1I\":\"Sélectionner la date\",\"n9ZhRa\":\"Sélectionnez la date et l'heure de fin\",\"gTN6Ws\":\"Sélectionner l'heure de fin\",\"0U6E9W\":\"Sélectionner la catégorie d'événement\",\"j9cPeF\":\"Sélectionner les types d'événements\",\"ypTjHL\":\"Sélectionner la séance\",\"KizCK7\":\"Sélectionnez la date et l'heure de début\",\"dJZTv2\":\"Sélectionner l'heure de début\",\"x8XMsJ\":\"Sélectionnez le niveau de messagerie pour ce compte. Cela contrôle les limites de messages et les autorisations de liens.\",\"aT3jZX\":\"Sélectionner le fuseau horaire\",\"TxfvH2\":\"Sélectionnez les participants qui doivent recevoir ce message\",\"Ropvj0\":\"Sélectionnez les événements qui déclencheront ce webhook\",\"+6YAwo\":\"sélectionné\",\"ylXj1N\":\"Sélectionné\",\"uq3CXQ\":\"Vendez tous les billets de votre événement.\",\"j9b/iy\":\"Se vend vite 🔥\",\"73qYgo\":\"Envoyer en test\",\"HMAqFK\":\"Envoyer des e-mails aux participants, détenteurs de billets ou propriétaires de commandes. Les messages peuvent être envoyés immédiatement ou programmés pour plus tard.\",\"22Itl6\":\"M'envoyer une copie\",\"NpEm3p\":\"Envoyer maintenant\",\"nOBvex\":\"Envoyez les données de commande et de participants en temps réel vers vos systèmes externes.\",\"1lNPhX\":\"Envoyer l'e-mail de notification de remboursement\",\"eaUTwS\":\"Envoyer le lien de réinitialisation\",\"5cV4PY\":\"Envoyer à toutes les séances, ou choisir une séance spécifique\",\"QEQlnV\":\"Envoyez votre premier message\",\"3nMAVT\":\"Envoi dans 2 j 4 h\",\"IoAuJG\":\"Envoi...\",\"h69WC6\":\"Envoyé\",\"BVu2Hz\":\"Envoyé par\",\"ZFa8wv\":\"Envoyé aux participants lorsqu'une date programmée est annulée\",\"SPdzrs\":\"Envoyé aux clients lorsqu'ils passent une commande\",\"LxSN5F\":\"Envoyé à chaque participant avec les détails de son billet\",\"hgvbYY\":\"Septembre\",\"5sN96e\":\"Séance annulée\",\"89xaFU\":\"Définissez les paramètres de frais de plateforme par défaut pour les nouveaux événements créés sous cet organisateur.\",\"eXssj5\":\"Définir les paramètres par défaut pour les nouveaux événements créés sous cet organisateur.\",\"uPe5p8\":\"Définir la durée de chaque date\",\"xNsRxU\":\"Définir le nombre de dates\",\"ODuUEi\":\"Définir ou effacer le libellé de la date\",\"buHACR\":\"Définissez l'heure de fin de chaque date à cette durée après son heure de début.\",\"TaeFgl\":\"Définir sur illimité (supprimer la limite)\",\"pd6SSe\":\"Configurez un planning récurrent pour créer automatiquement des dates, ou ajoutez-les une à une.\",\"s0FkEx\":\"Configurez des listes d'enregistrement pour différentes entrées, sessions ou jours.\",\"TaWVGe\":\"Configurer les virements\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Configurer le planning\",\"xMO+Ao\":\"Configurer votre organisation\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Configurez votre planning\",\"ETC76A\":\"Définir, modifier ou supprimer le lieu ou les informations en ligne de la séance\",\"C3htzi\":\"Paramètre mis à jour\",\"Ohn74G\":\"Configuration et design\",\"1W5XyZ\":\"La configuration ne prend que quelques minutes — vous n'avez pas besoin d'un compte Stripe existant. Stripe gère les cartes, les portefeuilles, les moyens de paiement régionaux et la protection antifraude pour vous laisser vous concentrer sur votre événement.\",\"GG7qDw\":\"Partager le lien d'affiliation\",\"hL7sDJ\":\"Partager la page de l'organisateur\",\"jy6QDF\":\"Gestion de capacité partagée\",\"jDNHW4\":\"Décaler les horaires\",\"tPfIaW\":[\"Horaires décalés pour \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Afficher les options avancées\",\"cMW+gm\":[\"Afficher toutes les plateformes (\",[\"0\"],\" autres avec des valeurs)\"],\"wXi9pZ\":\"Afficher les notes au personnel non connecté\",\"UVPI5D\":\"Afficher moins de plateformes\",\"Eu/N/d\":\"Afficher la case d'opt-in marketing\",\"SXzpzO\":\"Afficher la case d'opt-in marketing par défaut\",\"57tTk5\":\"Afficher plus de dates\",\"b33PL9\":\"Afficher plus de plateformes\",\"Eut7p9\":\"Afficher les détails au personnel non connecté\",\"+RoWKN\":\"Afficher les réponses au personnel non connecté\",\"t1LIQW\":[\"Affichage de \",[\"0\"],\" sur \",[\"totalRows\"],\" enregistrements\"],\"E717U9\":[\"Affichage de \",[\"0\"],\"–\",[\"1\"],\" sur \",[\"2\"]],\"5rzhBQ\":[\"Affichage de \",[\"MAX_VISIBLE\"],\" sur \",[\"totalAvailable\"],\" dates. Saisissez pour rechercher.\"],\"WSt3op\":[\"Affichage des \",[\"0\"],\" premières — les \",[\"1\"],\" séance(s) restante(s) seront tout de même ciblées lors de l'envoi du message.\"],\"OJLTEL\":\"Affiché au personnel lors de la première ouverture de la page.\",\"jVRHeq\":\"Inscrit\",\"5C7J+P\":\"Événement unique\",\"E//btK\":\"Ignorer les dates modifiées manuellement\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Liens sociaux\",\"j/TOB3\":\"Liens sociaux & site web\",\"s9KGXU\":\"Vendu\",\"iACSrw\":\"Certains détails sont masqués pour l'accès public. Connectez-vous pour tout voir.\",\"KTxc6k\":\"Une erreur s'est produite, veuillez réessayer ou contacter le support si le problème persiste\",\"lkE00/\":\"Une erreur s'est produite. Veuillez réessayer plus tard.\",\"wdxz7K\":\"Source\",\"fDG2by\":\"Spiritualité\",\"oPaRES\":\"Séparez les enregistrements par jour, zone ou type de billet. Partagez le lien avec le personnel — sans compte.\",\"7JFNej\":\"Sports\",\"/bfV1Y\":\"Consignes pour le personnel\",\"tXkhj/\":\"Début\",\"JcQp9p\":\"Date et heure de début\",\"0m/ekX\":\"Date et heure de début\",\"izRfYP\":\"La date de début est obligatoire\",\"tuO4fV\":\"Date de début de la séance\",\"2R1+Rv\":\"Heure de début de l'événement\",\"2Olov3\":\"Heure de début de la séance\",\"n9ZrDo\":\"Commencez à saisir un lieu ou une adresse...\",\"qeFVhN\":[\"Commence dans \",[\"diffDays\"],\" jours\"],\"AOqtxN\":[\"Commence dans \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Commence dans \",[\"h\"],\" h \",[\"m\"],\" m\"],\"Lo49in\":[\"Commence dans \",[\"seconds\"],\" s\"],\"NqChgF\":\"Commence demain\",\"2NbyY/\":\"Statistiques\",\"GVUxAX\":\"Les statistiques sont basées sur la date de création du compte\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Toujours requis\",\"wuV0bK\":\"Arrêter l'usurpation\",\"s/KaDb\":\"Stripe connecté\",\"Bk06QI\":\"Stripe connecté\",\"akZMv8\":[\"Connexion Stripe copiée depuis \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe n'a pas renvoyé de lien de configuration. Veuillez réessayer.\",\"aKtF0O\":\"Stripe non connecté\",\"9i0++A\":\"ID de paiement Stripe\",\"R1lIMV\":\"Stripe aura bientôt besoin d'informations supplémentaires\",\"FzcCHA\":\"Stripe vous guidera à travers quelques questions rapides pour finaliser la configuration.\",\"eYbd7b\":\"Di\",\"ii0qn/\":\"Le sujet est requis\",\"M7Uapz\":\"Le sujet apparaîtra ici\",\"6aXq+t\":\"Sujet :\",\"JwTmB6\":\"Produit dupliqué avec succès\",\"WUOCgI\":\"Place offerte avec succès\",\"IvxA4G\":[\"Billets proposés avec succès à \",[\"count\"],\" personnes\"],\"kKpkzy\":\"Billets proposés avec succès à 1 personne\",\"Zi3Sbw\":\"Retiré de la liste d'attente avec succès\",\"RuaKfn\":\"Adresse mise à jour avec succès\",\"kzx0uD\":\"Paramètres par défaut de l'événement mis à jour avec succès\",\"5n+Wwp\":\"Organisateur mis à jour avec succès\",\"DMCX/I\":\"Paramètres de frais de plateforme par défaut mis à jour avec succès\",\"URUYHc\":\"Paramètres des frais de plateforme mis à jour avec succès\",\"0Dk/l8\":\"Paramètres SEO mis à jour avec succès\",\"S8Tua9\":\"Paramètres mis à jour avec succès\",\"MhOoLQ\":\"Liens sociaux mis à jour avec succès\",\"CNSSfp\":\"Paramètres de suivi mis à jour avec succès\",\"kj7zYe\":\"Webhook mis à jour avec succès\",\"dXoieq\":\"Résumé\",\"/RfJXt\":[\"Festival de musique d'été \",[\"0\"]],\"CWOPIK\":\"Festival de Musique d'Été 2025\",\"D89zck\":\"Dim\",\"DBC3t5\":\"Dimanche\",\"UaISq3\":\"Suédois\",\"JZTQI0\":\"Changer d'organisateur\",\"9YHrNC\":\"Par défaut du système\",\"lruQkA\":\"Touchez l'écran pour reprendre le scan\",\"TJUrME\":[\"Ciblage des participants sur \",[\"0\"],\" séances sélectionnées.\"],\"yT6dQ8\":\"Taxes collectées groupées par type de taxe et événement\",\"Ye321X\":\"Nom de la taxe\",\"WyCBRt\":\"Résumé des taxes\",\"GkH0Pq\":\"Taxes et frais appliqués\",\"Rwiyt2\":\"Taxes configurées\",\"iQZff7\":\"Taxes, frais, visibilité, période de vente, mise en avant des produits et limites de commande\",\"SXvRWU\":\"Collaboration d'équipe\",\"vlf/In\":\"Technologie\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Dites aux gens à quoi s'attendre lors de votre événement\",\"NiIUyb\":\"Parlez-nous de votre événement\",\"DovcfC\":\"Parlez-nous de votre organisation. Ces informations seront affichées sur vos pages d'événement.\",\"69GWRq\":\"Indiquez-nous à quelle fréquence votre événement se répète et nous créerons toutes les dates pour vous.\",\"mXPbwY\":\"Indiquez votre statut d'enregistrement à la TVA pour que nous appliquions le bon traitement TVA aux frais de plateforme.\",\"7wtpH5\":\"Modèle actif\",\"QHhZeE\":\"Modèle créé avec succès\",\"xrWdPR\":\"Modèle supprimé avec succès\",\"G04Zjt\":\"Modèle sauvegardé avec succès\",\"xowcRf\":\"Conditions d'utilisation\",\"6K0GjX\":\"Le texte peut être difficile à lire\",\"u0F1Ey\":\"Je\",\"nm3Iz/\":\"Merci pour votre présence !\",\"pYwj0k\":\"Merci,\",\"k3IitN\":\"C'est terminé\",\"KfmPRW\":\"La couleur de fond de la page. Lors de l'utilisation d'une image de couverture, ceci est appliqué en superposition.\",\"MDNyJz\":\"Le code expirera dans 10 minutes. Vérifiez votre dossier spam si vous ne voyez pas l'e-mail.\",\"AIF7J2\":\"La devise dans laquelle les frais fixes sont définis. Elle sera convertie dans la devise de la commande lors du paiement.\",\"MJm4Tq\":\"La devise de la commande\",\"cDHM1d\":\"L'adresse e-mail a été modifiée. Le participant recevra un nouveau billet à l'adresse e-mail mise à jour.\",\"I/NNtI\":\"Le lieu de l'événement\",\"tXadb0\":\"L'événement que vous recherchez n'est pas disponible pour le moment. Il a peut-être été supprimé, expiré ou l'URL est incorrecte.\",\"5fPdZe\":\"La première date à partir de laquelle cette planification sera générée.\",\"EBzPwC\":\"L'adresse complète de l'événement\",\"sxKqBm\":\"Le montant total de la commande sera remboursé sur le mode de paiement original du client.\",\"KgDp6G\":\"Le lien que vous essayez d'accéder a expiré ou n'est plus valide. Veuillez vérifier votre e-mail pour obtenir un lien mis à jour pour gérer votre commande.\",\"5OmEal\":\"La langue du client\",\"Np4eLs\":[\"Le maximum est de \",[\"MAX_PREVIEW\"],\" séances. Veuillez réduire la plage de dates, la fréquence ou le nombre de séances par jour.\"],\"sYLeDq\":\"L'organisateur que vous recherchez est introuvable. La page a peut-être été déplacée, supprimée ou l'URL est incorrecte.\",\"PCr4zw\":\"Le remplacement est enregistré dans le journal d'audit de la commande.\",\"C4nQe5\":\"Les frais de plateforme sont ajoutés au prix du billet. Les acheteurs paient plus, mais vous recevez le prix complet du billet.\",\"HxxXZO\":\"La couleur principale de la marque utilisée pour les boutons et les éléments en surbrillance\",\"z0KrIG\":\"L'heure programmée est requise\",\"EWErQh\":\"L'heure programmée doit être dans le futur\",\"UNd0OU\":[\"La séance de \\\"\",[\"title\"],\"\\\" initialement prévue le \",[\"0\"],\" a été reprogrammée.\"],\"DEcpfp\":\"Le corps du modèle contient une syntaxe Liquid invalide. Veuillez la corriger et réessayer.\",\"injXD7\":\"Le numéro de TVA n'a pas pu être validé. Veuillez vérifier le numéro et réessayer.\",\"A4UmDy\":\"Théâtre\",\"tDwYhx\":\"Thème et couleurs\",\"O7g4eR\":\"Il n'y a aucune date à venir pour cet événement\",\"HrIl0p\":[\"Aucune liste d'enregistrement n'est limitée à cette date. La liste \\\"\",[\"0\"],\"\\\" enregistre les participants pour toutes les dates — le personnel scannant un billet pour une autre date réussira tout de même.\"],\"dt3TwA\":\"Voici les prix et quantités par défaut pour toutes les dates. Les dates de vente des paliers s'appliquent globalement. Vous pouvez remplacer les prix et les quantités pour des dates individuelles depuis la <0>page Planning des séances.\",\"062KsE\":\"Ces détails sont affichés sur le billet du participant et le résumé de la commande pour cette date uniquement.\",\"5Eu+tn\":\"Ces détails ne seront affichés que si la commande est finalisée avec succès.\",\"jQjwR+\":\"Ces informations remplaceront tout lieu existant pour les séances concernées et apparaîtront sur les billets des participants.\",\"QP3gP+\":\"Ces paramètres s'appliquent uniquement au code d'intégration copié et ne seront pas enregistrés.\",\"HirZe8\":\"Ces modèles seront utilisés comme valeurs par défaut pour tous les événements de votre organisation. Les événements individuels peuvent remplacer ces modèles par leurs propres versions personnalisées.\",\"lzAaG5\":\"Ces modèles remplaceront les paramètres par défaut de l'organisateur pour cet événement uniquement. Si aucun modèle personnalisé n'est défini ici, le modèle de l'organisateur sera utilisé à la place.\",\"UlykKR\":\"Troisième\",\"wkP5FM\":\"Cela s'applique à chaque date correspondante de l'événement, y compris les dates non visibles actuellement. Les participants inscrits à l'une de ces dates seront joignables depuis le composeur de messages une fois la mise à jour terminée.\",\"SOmGDa\":\"Cette liste d'enregistrement est limitée à une séance qui a été annulée, elle ne peut donc plus être utilisée pour les enregistrements.\",\"XBNC3E\":\"Ce code sera utilisé pour suivre les ventes. Seuls les lettres, chiffres, tirets et traits de soulignement sont autorisés.\",\"AaP0M+\":\"Cette combinaison de couleurs peut être difficile à lire pour certains utilisateurs\",\"o1phK/\":[\"Cette date comporte \",[\"orderCount\"],\" commande(s) qui seront concernées.\"],\"F/UtGt\":\"Cette date a été annulée. Vous pouvez toujours la supprimer pour la retirer définitivement.\",\"BLZ7pX\":\"Cette date est dans le passé. Elle sera créée mais ne sera pas visible par les participants dans les dates à venir.\",\"7IIY0z\":\"Cette date est marquée comme épuisée.\",\"bddWMP\":\"Cette date n'est plus disponible. Veuillez sélectionner une autre date.\",\"RzEvf5\":\"Cet événement est terminé\",\"YClrdK\":\"Cet événement n'est pas encore publié\",\"dFJnia\":\"Ceci est le nom de votre organisateur qui sera affiché à vos utilisateurs.\",\"vt7jiq\":\"C'est la seule fois que le secret de signature sera affiché. Veuillez le copier maintenant et le stocker en lieu sûr.\",\"L7dIM7\":\"Ce lien est invalide ou a expiré.\",\"MR5ygV\":\"Ce lien n'est plus valide\",\"9LEqK0\":\"Ce nom est visible par les utilisateurs finaux\",\"QdUMM9\":\"Cette séance est complète\",\"j5FdeA\":\"Cette commande est en cours de traitement.\",\"sjNPMw\":\"Cette commande a été abandonnée. Vous pouvez commencer une nouvelle commande à tout moment.\",\"OhCesD\":\"Cette commande a été annulée. Vous pouvez passer une nouvelle commande à tout moment.\",\"lyD7rQ\":\"Ce profil d'organisateur n'est pas encore publié\",\"9b5956\":\"Cet aperçu montre à quoi ressemblera votre e-mail avec des données d'exemple. Les vrais e-mails utiliseront de vraies valeurs.\",\"uM9Alj\":\"Ce produit est mis en vedette sur la page de l'événement\",\"RqSKdX\":\"Ce produit est épuisé\",\"W12OdJ\":\"Ce rapport est fourni à titre informatif uniquement. Consultez toujours un professionnel de la fiscalité avant d'utiliser ces données à des fins comptables ou fiscales. Veuillez vérifier avec votre tableau de bord Stripe car Hi.Events peut manquer de données historiques.\",\"0Ew0uk\":\"Ce billet vient d'être scanné. Veuillez attendre avant de scanner à nouveau.\",\"FYXq7k\":[\"Cela affectera \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"Ceci sera utilisé pour les notifications et la communication avec vos utilisateurs.\",\"rhsath\":\"Ceci ne sera pas visible pour les clients, mais vous aide à identifier l'affilié.\",\"hV6FeJ\":\"Cadence\",\"+FjWgX\":\"Jeu\",\"kkDQ8m\":\"Jeudi\",\"0GSPnc\":\"Design du Billet\",\"EZC/Cu\":\"Design du billet enregistré avec succès\",\"bbslmb\":\"Concepteur de billets\",\"1BPctx\":\"Billet pour\",\"bgqf+K\":\"Email du détenteur du billet\",\"oR7zL3\":\"Nom du détenteur du billet\",\"HGuXjF\":\"Détenteurs de billets\",\"CMUt3Y\":\"Titulaires de billets\",\"awHmAT\":\"ID du billet\",\"6czJik\":\"Logo du Billet\",\"OkRZ4Z\":\"Nom du billet\",\"t79rDv\":\"Billet introuvable\",\"6tmWch\":\"Billet ou produit\",\"1tfWrD\":\"Aperçu du billet pour\",\"KnjoUA\":\"Prix du billet\",\"tGCY6d\":\"Prix du billet\",\"pGZOcL\":\"Billet renvoyé avec succès\",\"o02GZM\":\"La vente de billets pour cet événement est terminée\",\"8jLPgH\":\"Type de Billet\",\"X26cQf\":\"URL du billet\",\"8qsbZ5\":\"Billetterie et ventes\",\"zNECqg\":\"billets\",\"6GQNLE\":\"Billets\",\"NRhrIB\":\"Billets et produits\",\"OrWHoZ\":\"Les billets sont automatiquement proposés aux clients en liste d'attente lorsque des places se libèrent.\",\"EUnesn\":\"Billets disponibles\",\"AGRilS\":\"Billets Vendus\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Heure\",\"dMtLDE\":\"à\",\"/jQctM\":\"À\",\"tiI71C\":\"Pour augmenter vos limites, contactez-nous à\",\"ecUA8p\":\"Aujourd'hui\",\"W428WC\":\"Basculer les colonnes\",\"BRMXj0\":\"Demain\",\"UBSG1X\":\"Meilleurs organisateurs (14 derniers jours)\",\"3sZ0xx\":\"Comptes Totaux\",\"EaAPbv\":\"Montant total payé\",\"SMDzqJ\":\"Total des participants\",\"orBECM\":\"Total collecté\",\"k5CU8c\":\"Total des inscriptions\",\"4B7oCp\":\"Frais total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Utilisateurs Totaux\",\"oJjplO\":\"Vues totales\",\"rBZ9pz\":\"Visites\",\"orluER\":\"Suivez la croissance et les performances des comptes par source d'attribution\",\"YwKzpH\":\"Suivi et analytiques\",\"uKOFO5\":\"Vrai si paiement hors ligne\",\"9GsDR2\":\"Vrai si paiement en attente\",\"GUA0Jy\":\"Essayez un autre terme ou filtre\",\"2P/OWN\":\"Essayez d'ajuster vos filtres pour voir plus de dates.\",\"ouM5IM\":\"Essayer un autre e-mail\",\"3DZvE7\":\"Essayer Hi.Events gratuitement\",\"7P/9OY\":\"Ma\",\"vq2WxD\":\"Mar\",\"G3myU+\":\"Mardi\",\"Kz91g/\":\"Turc\",\"GdOhw6\":\"Désactiver le son\",\"KUOhTy\":\"Activer le son\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Tapez \\\"supprimer\\\" pour confirmer\",\"XxecLm\":\"Type de billet\",\"IrVSu+\":\"Impossible de dupliquer le produit. Veuillez vérifier vos informations\",\"Vx2J6x\":\"Impossible de récupérer le participant\",\"h0dx5e\":\"Impossible de rejoindre la liste d'attente\",\"DaE0Hg\":\"Impossible de charger les détails du participant.\",\"GlnD5Y\":\"Impossible de charger les produits pour cette date. Veuillez réessayer.\",\"17VbmV\":\"Impossible d'annuler l'enregistrement\",\"n57zCW\":\"Comptes non attribués\",\"9uI/rE\":\"Annuler\",\"b9SN9q\":\"Référence de commande unique\",\"Ef7StM\":\"Inconnu\",\"ZBAScj\":\"Participant inconnu\",\"MEIAzV\":\"Sans nom\",\"K6L5Mx\":\"Lieu sans nom\",\"X13xGn\":\"Non fiable\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Mettre à jour l'affilié\",\"59qHrb\":\"Mettre à jour la capacité\",\"Gaem9v\":\"Mettre à jour le nom et la description de l'événement\",\"7EhE4k\":\"Mettre à jour le libellé\",\"NPQWj8\":\"Mettre à jour le lieu\",\"75+lpR\":[\"Mise à jour : \",[\"subjectTitle\"],\" — modifications du planning\"],\"UOGHdA\":[\"Mise à jour : \",[\"subjectTitle\"],\" — horaire de la séance modifié\"],\"ogoTrw\":[[\"count\"],\" date(s) mise(s) à jour\"],\"dDuona\":[\"Capacité mise à jour pour \",[\"count\"],\" date(s)\"],\"FT3LSc\":[\"Libellé mis à jour pour \",[\"count\"],\" date(s)\"],\"8EcY1g\":[\"Lieu mis à jour pour \",[\"count\"],\" séance(s)\"],\"gJQsLv\":\"Téléchargez une image de couverture pour votre organisateur\",\"4kEGqW\":\"Téléchargez un logo pour votre organisateur\",\"lnCMdg\":\"Téléverser l’image\",\"29w7p6\":\"Téléchargement de l'image...\",\"HtrFfw\":\"L'URL est requise\",\"vzWC39\":\"USB\",\"td5pxI\":\"Scanner USB actif\",\"dyTklH\":\"Scanner USB en pause\",\"OHJXlK\":\"Utilisez <0>les modèles Liquid pour personnaliser vos e-mails\",\"g0WJMu\":\"Utiliser la liste toutes dates\",\"0k4cdb\":\"Utiliser les détails de commande pour tous les participants. Les noms et e-mails des participants correspondront aux informations de l'acheteur.\",\"MKK5oI\":\"Utiliser la liste toutes dates, ou créer une liste pour cette date ?\",\"bA31T4\":\"Utiliser les informations de l'acheteur pour tous les participants\",\"rnoQsz\":\"Utilisé pour les bordures, les surlignages et le style du code QR\",\"BV4L/Q\":\"Analytique UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validation de votre numéro de TVA...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Numéro de TVA\",\"pnVh83\":\"Numéro de TVA\",\"CabI04\":\"Le numéro de TVA ne doit pas contenir d'espaces\",\"PMhxAR\":\"Le numéro de TVA doit commencer par un code pays de 2 lettres suivi de 8 à 15 caractères alphanumériques (par ex., DE123456789)\",\"gPgdNV\":\"Numéro de TVA validé avec succès\",\"RUMiLy\":\"La validation du numéro de TVA a échoué\",\"vqji3Y\":\"La validation du numéro de TVA a échoué. Veuillez vérifier votre numéro de TVA.\",\"8dENF9\":\"TVA sur les frais\",\"ZutOKU\":\"Taux de TVA\",\"+KJZt3\":\"Assujetti à la TVA\",\"Nfbg76\":\"Paramètres TVA enregistrés avec succès\",\"UvYql/\":\"Paramètres TVA enregistrés. Nous validons votre numéro de TVA en arrière-plan.\",\"bXn1Jz\":\"Paramètres de TVA mis à jour\",\"tJylUv\":\"Traitement TVA pour les frais de plateforme\",\"FlGprQ\":\"Traitement TVA pour les frais de plateforme : les entreprises enregistrées à la TVA dans l'UE peuvent utiliser le mécanisme d'autoliquidation (0 % - Article 196 de la Directive TVA 2006/112/CE). Les entreprises non enregistrées à la TVA sont soumises à la TVA irlandaise à 23 %.\",\"516oLj\":\"Service de validation TVA temporairement indisponible\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"TVA : non assujetti\",\"AdWhjZ\":\"Code de vérification\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Vérifié\",\"wCKkSr\":\"Vérifier l'e-mail\",\"/IBv6X\":\"Vérifiez votre e-mail\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Vérification...\",\"fROFIL\":\"Vietnamien\",\"p5nYkr\":\"Tout voir\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Voir toutes les fonctionnalités\",\"RnvnDc\":\"Voir tous les messages envoyés sur la plateforme\",\"+WFMis\":\"Consultez et téléchargez des rapports pour tous vos événements. Seules les commandes terminées sont incluses.\",\"c7VN/A\":\"Voir les réponses\",\"SZw9tS\":\"Voir les détails\",\"9+84uW\":[\"Voir les détails de \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Voir l'événement\",\"c6SXHN\":\"Voir la page de l'événement\",\"n6EaWL\":\"Voir les journaux\",\"OaKTzt\":\"Voir la carte\",\"zNZNMs\":\"Voir le message\",\"67OJ7t\":\"Voir la commande\",\"tKKZn0\":\"Voir les détails de la commande\",\"KeCXJu\":\"Consultez les détails des commandes, effectuez des remboursements et renvoyez les confirmations.\",\"9jnAcN\":\"Voir la page d'accueil de l'organisateur\",\"1J/AWD\":\"Voir le billet\",\"N9FyyW\":\"Consultez, modifiez et exportez vos participants inscrits.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"En attente\",\"quR8Qp\":\"En attente de paiement\",\"KrurBH\":\"En attente de scan…\",\"u0n+wz\":\"Liste d'attente\",\"3RXFtE\":\"Liste d'attente activée\",\"TwnTPy\":\"Offre de liste d'attente expirée\",\"NzIvKm\":\"Liste d'attente déclenchée\",\"aUi/Dz\":\"Attention : Il s'agit de la configuration par défaut du système. Les modifications affecteront tous les comptes auxquels aucune configuration spécifique n'est assignée.\",\"qeygIa\":\"Me\",\"aT/44s\":\"Nous n'avons pas pu copier cette connexion Stripe. Veuillez réessayer.\",\"RRZDED\":\"Nous n'avons trouvé aucune commande associée à cette adresse e-mail.\",\"2RZK9x\":\"Nous n'avons pas trouvé la commande que vous recherchez. Le lien a peut-être expiré ou les détails de la commande ont changé.\",\"nefMIK\":\"Nous n'avons pas trouvé le billet que vous recherchez. Le lien a peut-être expiré ou les détails du billet ont changé.\",\"miysJh\":\"Nous n'avons pas pu trouver cette commande. Elle a peut-être été supprimée.\",\"ADsQ23\":\"Nous n'avons pas pu joindre Stripe à l'instant. Veuillez réessayer dans un moment.\",\"HJKdzP\":\"Un problème est survenu lors du chargement de cette page. Veuillez réessayer.\",\"jegrvW\":\"Nous nous appuyons sur Stripe pour vous verser directement sur votre compte bancaire.\",\"IfN2Qo\":\"Nous recommandons un logo carré avec des dimensions minimales de 200x200px\",\"wJzo/w\":\"Nous recommandons des dimensions de 400px par 400px et une taille maximale de 5 Mo\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Nous utilisons des cookies pour comprendre comment le site est utilisé et améliorer votre expérience.\",\"x8rEDQ\":\"Nous n'avons pas pu valider votre numéro de TVA après plusieurs tentatives. Nous continuerons d'essayer en arrière-plan. Veuillez revérifier plus tard.\",\"iy+M+c\":[\"Nous vous préviendrons par e-mail si une place se libère pour \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Nous ouvrirons un composeur de message avec un modèle pré-rempli après l'enregistrement. Vous le vérifiez et l'envoyez — rien n'est envoyé automatiquement.\",\"q1BizZ\":\"Nous enverrons vos billets à cet e-mail\",\"ZOmUYW\":\"Nous validerons votre numéro de TVA en arrière-plan. S'il y a des problèmes, nous vous en informerons.\",\"LKjHr4\":[\"Nous avons modifié le planning de \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affectant \",[\"affectedCount\"],\" séance(s).\"],\"Fq/Nx7\":\"Nous avons envoyé un code de vérification à 5 chiffres à :\",\"GdWB+V\":\"Webhook créé avec succès\",\"2X4ecw\":\"Webhook supprimé avec succès\",\"ndBv0v\":\"Intégrations webhook\",\"CThMKa\":\"Journaux du Webhook\",\"I0adYQ\":\"Secret de signature du Webhook\",\"nuh/Wq\":\"URL du Webhook\",\"8BMPMe\":\"Le webhook n'enverra pas de notifications\",\"FSaY52\":\"Le webhook enverra des notifications\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Site web\",\"0f7U0k\":\"Mer\",\"VAcXNz\":\"Mercredi\",\"64X6l4\":\"semaine\",\"4XSc4l\":\"Hebdomadaire\",\"IAUiSh\":\"semaines\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bon retour\",\"QDWsl9\":[\"Bienvenue sur \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bienvenue sur \",[\"0\"],\", voici une liste de tous vos événements\"],\"DDbx7K\":\"Bien-être\",\"ywRaYa\":\"À quelle heure ?\",\"FaSXqR\":\"Quel type d'événement ?\",\"0WyYF4\":\"Ce que voit le personnel non authentifié\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Lorsqu'un enregistrement est supprimé\",\"RPe6bE\":\"Lorsqu'une date est annulée sur un événement récurrent\",\"Gmd0hv\":\"Lorsqu'un nouveau participant est créé\",\"zyIyPe\":\"Lorsqu'un nouvel événement est créé\",\"Lc18qn\":\"Lorsqu'une nouvelle commande est créée\",\"dfkQIO\":\"Lorsqu'un nouveau produit est créé\",\"8OhzyY\":\"Lorsqu'un produit est supprimé\",\"tRXdQ9\":\"Lorsqu'un produit est mis à jour\",\"9L9/28\":\"Lorsqu'un produit est épuisé, les clients peuvent rejoindre une liste d'attente pour être notifiés dès que des places se libèrent.\",\"Q7CWxp\":\"Lorsqu'un participant est annulé\",\"IuUoyV\":\"Lorsqu'un participant est enregistré\",\"nBVOd7\":\"Lorsqu'un participant est mis à jour\",\"t7cuMp\":\"Lorsqu'un événement est archivé\",\"gtoSzE\":\"Lorsqu'un événement est mis à jour\",\"ny2r8d\":\"Lorsqu'une commande est annulée\",\"c9RYbv\":\"Lorsqu'une commande est marquée comme payée\",\"ejMDw1\":\"Lorsqu'une commande est remboursée\",\"fVPt0F\":\"Lorsqu'une commande est mise à jour\",\"bcYlvb\":\"Quand l'enregistrement ferme\",\"XIG669\":\"Quand l'enregistrement ouvre\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"Lorsque cette option est activée, les nouveaux événements permettront aux participants de gérer leurs propres détails de billet via un lien sécurisé. Cela peut être remplacé par événement.\",\"blXLKj\":\"Lorsqu'elle est activée, les nouveaux événements afficheront une case d'opt-in marketing lors du paiement. Cela peut être remplacé par événement.\",\"Kj0Txn\":\"Lorsqu'activé, aucun frais d'application ne sera facturé sur les transactions Stripe Connect. Utilisez ceci pour les pays où les frais d'application ne sont pas pris en charge.\",\"tMqezN\":\"Indique si des remboursements sont en cours de traitement\",\"uchB0M\":\"Aperçu du widget\",\"uvIqcj\":\"Atelier\",\"EpknJA\":\"Écrivez votre message ici...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"an\",\"zkWmBh\":\"Annuel\",\"+BGee5\":\"ans\",\"X/azM1\":\"Oui - J'ai un numéro d'enregistrement TVA UE valide\",\"Tz5oXG\":\"Oui, annuler ma commande\",\"QlSZU0\":[\"Vous usurpez l'identité de <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Vous émettez un remboursement partiel. Le client sera remboursé de \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Vous pouvez configurer des frais de service supplémentaires et des taxes dans les paramètres de votre compte.\",\"rj3A7+\":\"Vous pourrez remplacer cette valeur pour des dates individuelles ultérieurement.\",\"paWwQ0\":\"Vous pouvez toujours proposer des billets manuellement si nécessaire.\",\"jTDzpA\":\"Vous ne pouvez pas archiver le dernier organisateur actif de votre compte.\",\"5VGIlq\":\"Vous avez atteint votre limite de messagerie.\",\"casL1O\":\"Vous avez ajouté des taxes et des frais à un produit gratuit. Voulez-vous les supprimer ?\",\"9jJNZY\":\"Vous devez reconnaître vos responsabilités avant d'enregistrer\",\"pCLes8\":\"Vous devez accepter de recevoir des messages\",\"FVTVBy\":\"Vous devez vérifier votre adresse e-mail avant de pouvoir mettre à jour le statut de l'organisateur.\",\"ze4bi/\":\"Vous devez créer au moins une séance avant de pouvoir ajouter des participants à cet événement récurrent.\",\"w65ZgF\":\"Vous devez vérifier l'e-mail de votre compte avant de pouvoir modifier les modèles d'e-mail.\",\"FRl8Jv\":\"Vous devez vérifier l'adresse e-mail de votre compte avant de pouvoir envoyer des messages.\",\"88cUW+\":\"Vous recevez\",\"O6/3cu\":\"Vous pourrez configurer les dates, les plannings et les règles de récurrence à l'étape suivante.\",\"zKAheG\":\"Vous modifiez les horaires des séances\",\"MNFIxz\":[\"Vous allez à \",[\"0\"],\" !\"],\"qGZz0m\":\"Vous êtes sur la liste d'attente !\",\"/5HL6k\":\"Une place vous a été proposée !\",\"gbjFFH\":\"Vous avez modifié l'horaire de la séance\",\"p/Sa0j\":\"Votre compte a des limites de messagerie. Pour augmenter vos limites, contactez-nous à\",\"x/xjzn\":\"Vos affiliés ont été exportés avec succès.\",\"TF37u6\":\"Vos participants ont été exportés avec succès.\",\"79lXGw\":\"Votre liste d'enregistrement a été créée avec succès. Partagez le lien ci-dessous avec votre personnel d'enregistrement.\",\"BnlG9U\":\"Votre commande actuelle sera perdue.\",\"nBqgQb\":\"Votre e-mail\",\"GG1fRP\":\"Votre événement est en ligne !\",\"ifRqmm\":\"Votre message a été envoyé avec succès !\",\"0/+Nn9\":\"Vos messages apparaîtront ici\",\"/Rj5P4\":\"Votre nom\",\"PFjJxY\":\"Votre nouveau mot de passe doit comporter au moins 8 caractères.\",\"gzrCuN\":\"Les détails de votre commande ont été mis à jour. Un e-mail de confirmation a été envoyé à la nouvelle adresse e-mail.\",\"naQW82\":\"Votre commande a été annulée.\",\"bhlHm/\":\"Votre commande est en attente de paiement\",\"XeNum6\":\"Vos commandes ont été exportées avec succès.\",\"Xd1R1a\":\"Adresse de votre organisateur\",\"WWYHKD\":\"Votre paiement est protégé par un cryptage de niveau bancaire\",\"5b3QLi\":\"Votre forfait\",\"N4Zkqc\":\"Votre filtre de date enregistré n'est plus disponible — affichage de toutes les dates.\",\"FNO5uZ\":\"Votre billet reste valide — aucune action n'est nécessaire à moins que le nouvel horaire ne vous convienne pas. Répondez à cet e-mail si vous avez des questions.\",\"CnZ3Ou\":\"Vos billets ont été confirmés.\",\"EmFsMZ\":\"Votre numéro de TVA est en file d'attente pour validation\",\"QBlhh4\":\"Votre numéro de TVA sera validé lorsque vous enregistrerez\",\"fT9VLt\":\"Votre offre de liste d'attente a expiré et nous n'avons pas pu finaliser votre commande. Veuillez rejoindre à nouveau la liste d'attente pour être notifié lorsque des places se libèrent.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/fr.po b/frontend/src/locales/fr.po index 4d96a6be66..5c784034b7 100644 --- a/frontend/src/locales/fr.po +++ b/frontend/src/locales/fr.po @@ -60,7 +60,7 @@ msgstr "{0} <0>sorti avec succès" msgid "{0} Active Webhooks" msgstr "{0} webhooks actifs" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} disponible" @@ -78,7 +78,7 @@ msgstr "{0} restant" msgid "{0} logo" msgstr "Logo {0}" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{0} places sur {1} sont occupées." @@ -90,7 +90,7 @@ msgstr "{0} organisateurs" msgid "{0} spots left" msgstr "{0} places restantes" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} billets" @@ -114,7 +114,7 @@ msgstr "Logo {appName}" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} participants sont inscrits à cette séance." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} sur {totalCount} disponibles" @@ -122,7 +122,7 @@ msgstr "{availableCount} sur {totalCount} disponibles" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} enregistrés" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} événements" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} heures, {minutes} minutes, et {seconds} secondes" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "{loadedAffectedAttendees} participants sont inscrits aux séances concernées." @@ -163,11 +163,11 @@ msgstr "{minutes} minutes et {secondes} secondes" msgid "{organizerName}'s first event" msgstr "Premier événement de {organizerName}" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} types de billets" @@ -230,7 +230,7 @@ msgstr "0 minute et 0 seconde" msgid "1 Active Webhook" msgstr "1 webhook actif" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "1 participant est inscrit aux séances concernées." @@ -238,35 +238,35 @@ msgstr "1 participant est inscrit aux séances concernées." msgid "1 attendee is registered for this session." msgstr "1 participant est inscrit à cette séance." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 jour après la date de fin" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 jour après la date de début" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 jour avant l'événement" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 heure avant l'événement" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 billet" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 type de billet" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 semaine avant l'événement" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "Un avis d'annulation a été envoyé à" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "un changement de durée" @@ -321,7 +321,7 @@ msgstr "Une entrée déroulante ne permet qu'une seule sélection" msgid "A fee, like a booking fee or a service fee" msgstr "Des frais, comme des frais de réservation ou des frais de service" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "Un code promo sans réduction peut être utilisé pour révéler des pro msgid "A Radio option has multiple options but only one can be selected." msgstr "Une option Radio comporte plusieurs options, mais une seule peut être sélectionnée." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "un décalage des heures de début/fin" @@ -465,7 +465,7 @@ msgstr "Compte mis à jour avec succès" msgid "Accounts" msgstr "Comptes" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Action requise : Informations TVA nécessaires" @@ -493,10 +493,10 @@ msgstr "Date d'activation" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Moyens de paiement actifs" msgid "Activity" msgstr "Activité" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Ajouter une date" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "Ajoutez des notes concernant la commande..." msgid "Add at least one time" msgstr "Ajoutez au moins un horaire" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Ajoutez les informations de connexion pour l’événement en ligne." @@ -572,15 +576,19 @@ msgstr "Ajouter une date" msgid "Add Dates" msgstr "Ajouter des dates" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Ajouter une description" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "Ajouter une question" msgid "Add Tax or Fee" msgstr "Ajouter une taxe ou des frais" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Ajouter ce participant malgré tout (dépasser la capacité)" @@ -634,8 +642,8 @@ msgstr "Ajouter ce participant malgré tout (dépasser la capacité)" msgid "Add this event to your calendar" msgstr "Ajouter cet événement à votre calendrier" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Ajouter des billets" @@ -649,7 +657,7 @@ msgstr "Ajouter un niveau" msgid "Add to Calendar" msgstr "Ajouter au calendrier" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Ajoutez des pixels de suivi à vos pages d'événement publiques et à la page d'accueil de l'organisateur. Une bannière de consentement aux cookies sera affichée aux visiteurs lorsque le suivi est actif." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Adresse Ligne 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Adresse Ligne 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Adresse Ligne 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Adresse Ligne 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Administrateur" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Accès administrateur requis" @@ -725,7 +733,7 @@ msgstr "Accès administrateur requis" msgid "Admin Dashboard" msgstr "Tableau de Bord Admin" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Les utilisateurs administrateurs ont un accès complet aux événements et aux paramètres du compte." @@ -776,7 +784,7 @@ msgstr "Affiliés exportés" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Les affiliés vous aident à suivre les ventes générées par les partenaires et les influenceurs. Créez des codes d'affiliation et partagez-les pour surveiller les performances." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "tout" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "Tous les événements archivés" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Tous les participants" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "Tous les participants des séances sélectionnées" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Tous les participants à cet événement" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Tous les participants de cette séance" @@ -838,12 +846,12 @@ msgstr "Tous les travaux échoués supprimés" msgid "All jobs queued for retry" msgstr "Tous les travaux en file d'attente pour réessai" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Toutes les dates correspondantes" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Toutes les séances" @@ -897,7 +905,7 @@ msgstr "Vous avez déjà un compte ? <0>{0}" msgid "Already in" msgstr "Déjà arrivé" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Déjà remboursé" @@ -905,11 +913,11 @@ msgstr "Déjà remboursé" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Vous utilisez déjà Stripe pour un autre organisateur ? Réutilisez cette connexion." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Annuler également cette commande" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Rembourser également cette commande" @@ -932,7 +940,7 @@ msgstr "Montant" msgid "Amount Paid" msgstr "Montant payé" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Montant payé ({0})" @@ -952,7 +960,7 @@ msgstr "Une erreur s'est produite lors du chargement de la page" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Un message optionnel à afficher sur le produit en vedette, par ex. \"Se vend rapidement 🔥\" ou \"Meilleur rapport qualité-prix\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Une erreur inattendue est apparue." @@ -988,7 +996,7 @@ msgstr "Toute question des détenteurs de produits sera envoyée à cette adress msgid "Appearance" msgstr "Apparence" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "appliqué" @@ -996,7 +1004,7 @@ msgstr "appliqué" msgid "Applies to {0} products" msgstr "S'applique à {0} produits" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "S'applique à {0} dates non annulées actuellement chargées sur cette page." @@ -1008,7 +1016,7 @@ msgstr "S'applique à 1 produit" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "S'applique aux personnes ouvrant le lien sans être connectées. Les membres connectés voient toujours tout." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "S'applique à chaque date non annulée de cet événement — y compris les dates non chargées actuellement." @@ -1016,11 +1024,11 @@ msgstr "S'applique à chaque date non annulée de cet événement — y compris msgid "Apply" msgstr "Appliquer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Appliquer les modifications" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Appliquer le code promotionnel" @@ -1028,7 +1036,7 @@ msgstr "Appliquer le code promotionnel" msgid "Apply this {type} to all new products" msgstr "Appliquer ce {type} à tous les nouveaux produits" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Appliquer à" @@ -1044,36 +1052,35 @@ msgstr "Approuver le message" msgid "April" msgstr "Avril" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Archiver" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Archiver l'événement" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Archiver l'événement" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Archiver l'organisateur" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Archivez cet événement pour le masquer au public. Vous pourrez le restaurer ultérieurement." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Archivez cet organisateur. Cela archivera également tous les événements appartenant à cet organisateur." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Archivé" @@ -1085,15 +1092,15 @@ msgstr "Organisateurs archivés" msgid "Are you sure you want to activate this attendee?" msgstr "Êtes-vous sûr de vouloir activer ce participant ?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Êtes-vous sûr de vouloir archiver cet événement ?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Êtes-vous sûr de vouloir archiver cet événement ? Il ne sera plus visible pour le public." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Êtes-vous sûr de vouloir archiver cet organisateur ? Cela archivera également tous les événements appartenant à cet organisateur." @@ -1123,7 +1130,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer tous les travaux échoués ?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Êtes-vous sûr de vouloir supprimer cet affilié ? Cette action ne peut pas être annulée." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Êtes-vous sûr de vouloir supprimer cette configuration ? Cela peut affecter les comptes qui l'utilisent." @@ -1137,11 +1144,11 @@ msgstr "Êtes-vous sûr de vouloir supprimer cette date ? Cette action est irré msgid "Are you sure you want to delete this promo code?" msgstr "Etes-vous sûr de vouloir supprimer ce code promo ?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Êtes-vous sûr de vouloir supprimer ce modèle ? Cette action ne peut pas être annulée et les e-mails reviendront au modèle par défaut." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Êtes-vous sûr de vouloir supprimer ce modèle ? Cette action ne peut pas être annulée et les e-mails reviendront au modèle de l'organisateur ou par défaut." @@ -1150,17 +1157,17 @@ msgstr "Êtes-vous sûr de vouloir supprimer ce modèle ? Cette action ne peut p msgid "Are you sure you want to delete this webhook?" msgstr "Êtes-vous sûr de vouloir supprimer ce webhook ?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Êtes-vous sûr de vouloir partir ?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Êtes-vous sûr de vouloir créer un brouillon pour cet événement ? Cela rendra l'événement invisible au public" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Êtes-vous sûr de vouloir rendre cet événement public ? Cela rendra l'événement visible au public" @@ -1200,15 +1207,15 @@ msgstr "Êtes-vous sûr de vouloir renvoyer la confirmation de commande à {0} ? msgid "Are you sure you want to resend the ticket to {0}?" msgstr "Êtes-vous sûr de vouloir renvoyer le billet à {0} ?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Êtes-vous sûr de vouloir restaurer cet événement ?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Êtes-vous sûr de vouloir restaurer cet événement ? Il sera restauré en tant que brouillon." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Êtes-vous sûr de vouloir restaurer cet organisateur ?" @@ -1229,7 +1236,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer cette Affectation de Capacité?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "Êtes-vous sûr de vouloir supprimer cette liste de pointage ?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "Êtes-vous assujetti à la TVA dans l'UE ?" @@ -1237,7 +1244,7 @@ msgstr "Êtes-vous assujetti à la TVA dans l'UE ?" msgid "Art" msgstr "Art" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "Comme votre entreprise est basée en Irlande, la TVA irlandaise à 23 % s'applique automatiquement à tous les frais de plateforme." @@ -1270,7 +1277,7 @@ msgstr "Niveau attribué" msgid "At least one event type must be selected" msgstr "Au moins un type d'événement doit être sélectionné" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Tentatives" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Présence et taux d'enregistrement pour tous les événements" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "participant" @@ -1287,7 +1293,7 @@ msgstr "participant" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Participant" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Statut du Participant" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Billet de l'invité" @@ -1364,13 +1370,13 @@ msgstr "Le billet du participant n'est pas inclus dans cette liste" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "participants" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "participants" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Participants" @@ -1393,16 +1399,16 @@ msgstr "participants enregistrés" msgid "Attendees Exported" msgstr "Participants exportés" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Participants inscrits" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Invités enregistrés" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Participants avec un ticket spécifique" @@ -1454,7 +1460,7 @@ msgstr "Redimensionner automatiquement la hauteur du widget en fonction du conte msgid "Available" msgstr "Disponible" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Disponible pour remboursement" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "En attente" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "En attente d'un paiement hors ligne" @@ -1482,7 +1488,7 @@ msgstr "Paiement dû" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "En attente de paiement" @@ -1513,14 +1519,14 @@ msgstr "Retour aux comptes" msgid "Back to calendar" msgstr "Retour au calendrier" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Retour à l'événement" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Retour à la page de l'événement" @@ -1548,7 +1554,7 @@ msgstr "Couleur de fond" msgid "Background Type" msgstr "Type d'arrière-plan" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "Basé sur la période de vente globale ci-dessus, et non par date" msgid "Basic Information" msgstr "Informations de base" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Adresse de facturation" @@ -1599,11 +1605,11 @@ msgstr "Protection antifraude intégrée" msgid "Bulk Edit" msgstr "Modification en masse" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Modifier les dates en masse" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "La mise à jour en masse a échoué." @@ -1635,11 +1641,11 @@ msgstr "L'acheteur paie" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Les acheteurs voient un prix net. Les frais de plateforme sont déduits de votre paiement." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "En ajoutant des pixels de suivi, vous reconnaissez que vous et cette plateforme êtes co-responsables des données collectées. Il vous incombe de vous assurer que vous disposez d'une base légale pour ce traitement au regard des lois applicables en matière de confidentialité (RGPD, CCPA, etc.)." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "En continuant, vous acceptez les <0>Conditions d'utilisation de {0}" @@ -1660,7 +1666,7 @@ msgstr "En vous inscrivant, vous acceptez nos <0>Conditions d'utilisation et msgid "By ticket type" msgstr "Par type de billet" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Contourner les frais d'application" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "Enregistrement impossible" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Annuler" @@ -1729,7 +1735,7 @@ msgstr "Annuler" msgid "Cancel {count} date(s)" msgstr "Annuler {count} date(s)" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Annuler tous les produits et les remettre dans le pool" @@ -1743,7 +1749,7 @@ msgstr "Annuler tous les produits et les remettre dans le pool" msgid "Cancel Date" msgstr "Annuler la date" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "Annuler le changement d'e-mail" @@ -1751,7 +1757,7 @@ msgstr "Annuler le changement d'e-mail" msgid "Cancel order" msgstr "Annuler la commande" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "annuler la commande" @@ -1759,7 +1765,7 @@ msgstr "annuler la commande" msgid "Cancel Order {0}" msgstr "Annuler la commande {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "L'annulation annulera tous les participants associés à cette commande et remettra les billets dans le pool disponible." @@ -1781,7 +1787,7 @@ msgstr "Annulation" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "Annulé" msgid "Cancelled {0} date(s)" msgstr "{0} date(s) annulée(s)" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "Impossible de supprimer la configuration système par défaut" @@ -1825,7 +1831,7 @@ msgstr "Gestion de capacité" msgid "Capacity must be 0 or greater" msgstr "La capacité doit être supérieure ou égale à 0" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "mises à jour de capacité" @@ -1833,7 +1839,7 @@ msgstr "mises à jour de capacité" msgid "Capacity Used" msgstr "Capacité utilisée" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "Les catégories vous permettent de regrouper des produits ensemble. Par exemple, vous pouvez avoir une catégorie pour \"Billets\" et une autre pour \"Marchandise\"." @@ -1854,19 +1860,19 @@ msgstr "Catégorie" msgid "Category Created Successfully" msgstr "Catégorie créée avec succès" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Modifier" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Modifier la durée" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Changer le mot de passe" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Modifier la limite de participants" @@ -1874,7 +1880,7 @@ msgstr "Modifier la limite de participants" msgid "Change waitlist settings" msgstr "Modifier les paramètres de liste d'attente" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "Durée modifiée pour {count} date(s)" @@ -1891,15 +1897,15 @@ msgstr "Charité" msgid "Check in" msgstr "Enregistrer" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Enregistrer {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Enregistrer et marquer la commande comme payée" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Enregistrement uniquement" @@ -1913,7 +1919,7 @@ msgstr "Annuler" msgid "Check out this event: {0}" msgstr "Découvrez cet événement : {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Découvrez cet événement !" @@ -1994,7 +2000,7 @@ msgstr "Listes d'enregistrement" msgid "Check-In Lists" msgstr "Listes de pointage" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Navigation d'enregistrement" @@ -2074,11 +2080,11 @@ msgstr "Choisissez une couleur pour votre arrière-plan" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Choisir une autre action" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Choisissez un lieu enregistré à appliquer." @@ -2108,12 +2114,12 @@ msgstr "Choisissez qui paie les frais de plateforme. Cela n'affecte pas les frai #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Ville" @@ -2122,7 +2128,7 @@ msgstr "Ville" msgid "Clear" msgstr "Effacer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Effacer le lieu — revenir au lieu par défaut de l’événement" @@ -2134,7 +2140,7 @@ msgstr "Effacer la recherche" msgid "Clear Search Text" msgstr "Effacer le texte de recherche" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "Effacer supprime toute substitution spécifique à une séance. Les séances concernées utiliseront le lieu par défaut de l’événement." @@ -2154,7 +2160,7 @@ msgstr "Cliquez pour rouvrir aux nouvelles ventes" msgid "Click to view notes" msgstr "Cliquez pour voir les notes" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "fermer" @@ -2162,8 +2168,8 @@ msgstr "fermer" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Fermer" @@ -2259,7 +2265,7 @@ msgstr "À venir" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Mots-clés séparés par des virgules qui décrivent l'événement. Ceux-ci seront utilisés par les moteurs de recherche pour aider à catégoriser et indexer l'événement." -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Préférences de communication" @@ -2267,11 +2273,11 @@ msgstr "Préférences de communication" msgid "complete" msgstr "terminé" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Complétez la commande" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Paiement complet" @@ -2280,11 +2286,11 @@ msgstr "Paiement complet" msgid "Complete Stripe setup" msgstr "Terminer la configuration Stripe" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Finalisez votre commande pour sécuriser vos billets. Cette offre est limitée dans le temps, ne tardez pas trop." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Finalisez votre paiement pour sécuriser vos billets." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Complétez votre profil pour rejoindre l'équipe." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Complété" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Commandes terminées" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Commandes terminées" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Rédiger" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Configuration attribuée" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Configuration créée avec succès" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Configuration supprimée avec succès" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "Les noms de configuration sont visibles par les utilisateurs finaux. Les frais fixes seront convertis dans la devise de la commande au taux de change actuel." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Configuration mise à jour avec succès" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Configurations" @@ -2377,10 +2383,10 @@ msgstr "Réduction configurée" msgid "Confirm" msgstr "Confirmer" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "Confirmer l'adresse e-mail" @@ -2393,7 +2399,7 @@ msgstr "Confirmer le changement d'e-mail" msgid "Confirm new password" msgstr "Confirmer le nouveau mot de passe" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Confirmer le nouveau mot de passe" @@ -2428,16 +2434,16 @@ msgstr "Confirmation de l'adresse e-mail..." msgid "Congratulations! Your event is now visible to the public." msgstr "Félicitations ! Votre événement est maintenant visible par le public." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Connecter la bande" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Connectez Stripe pour activer l'édition des modèles d'e-mail" @@ -2445,7 +2451,7 @@ msgstr "Connectez Stripe pour activer l'édition des modèles d'e-mail" msgid "Connect Stripe to enable messaging" msgstr "Connectez Stripe pour activer la messagerie" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Connectez-vous avec Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "Email de contact pour le support" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Continuer" @@ -2508,7 +2514,7 @@ msgstr "Texte du bouton Continuer" msgid "Continue Setup" msgstr "Continuer la configuration" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Passer à la caisse" @@ -2520,7 +2526,7 @@ msgstr "Continuer vers la création d'événement" msgid "Continue to next step" msgstr "Continuer à l'étape suivante" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Continuer vers le paiement" @@ -2545,7 +2551,7 @@ msgstr "Qui entre et quand" msgid "Copied" msgstr "Copié" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Copié d'en haut" @@ -2591,7 +2597,7 @@ msgstr "Copier le code" msgid "Copy customer link" msgstr "Copier le lien client" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Copier les détails vers le premier participant" @@ -2609,7 +2615,7 @@ msgstr "Copier le lien" msgid "Copy Link" msgstr "Copier le lien" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Copier mes informations vers:" @@ -2630,7 +2636,7 @@ msgstr "Copier le lien" msgid "Could not delete location" msgstr "Impossible de supprimer le lieu" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Impossible de préparer la mise à jour groupée." @@ -2652,13 +2658,17 @@ msgstr "Impossible d'enregistrer la date" msgid "Could not save location" msgstr "Impossible d'enregistrer le lieu" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "Pays" @@ -2671,6 +2681,10 @@ msgstr "Couverture" msgid "Cover Image" msgstr "Image de couverture" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "L'image de couverture sera affichée en haut de votre page d'événement" @@ -2743,7 +2757,7 @@ msgstr "créer un organisateur" msgid "Create and configure tickets and merchandise for sale." msgstr "Créez et configurez des billets et des marchandises à vendre." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Créer un participant" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Créer une catégorie" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Créer une catégorie" @@ -2771,17 +2785,17 @@ msgstr "Créer une catégorie" msgid "Create Check-In List" msgstr "Créer une liste de pointage" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Créer une configuration" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Créer des modèles d'email personnalisés pour cet événement qui remplacent les paramètres par défaut de l'organisateur" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Créer un modèle personnalisé" @@ -2793,16 +2807,16 @@ msgstr "Créer une date" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Créez des réductions, des codes d'accès pour les billets cachés et des offres spéciales." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Créer un évènement" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Créer pour cette date" @@ -2849,7 +2863,7 @@ msgstr "Créer une taxe ou des frais" msgid "Create Ticket or Product" msgstr "Créer un billet ou un produit" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "Créez votre événement" msgid "Create your first event" msgstr "Créez votre premier événement" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "Le libellé CTA est requis" msgid "Currency" msgstr "Devise" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Mot de passe actuel" @@ -2931,7 +2949,7 @@ msgstr "Actuellement disponible à l'achat" msgid "Custom branding" msgstr "Personnalisation visuelle" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Date et heure personnalisées" @@ -2957,7 +2975,7 @@ msgstr "Questions personnalisées" msgid "Custom Range" msgstr "Plage personnalisée" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Modèle personnalisé" @@ -2970,7 +2988,7 @@ msgstr "Client" msgid "Customer link copied to clipboard" msgstr "Lien client copié dans le presse-papiers" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "Le client recevra un e-mail confirmant le remboursement" @@ -2990,11 +3008,15 @@ msgstr "Nom de famille du client" msgid "Customers" msgstr "Clients" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Personnaliser les paramètres de courrier électronique et de notification pour cet événement" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Personnalisez les e-mails envoyés à vos clients en utilisant des modèles Liquid. Ces modèles seront utilisés comme valeurs par défaut pour tous les événements de votre organisation." @@ -3027,6 +3049,10 @@ msgstr "Personnalisez le texte affiché sur le bouton continuer" msgid "Customize your email template using Liquid templating" msgstr "Personnalisez votre modèle d'e-mail en utilisant des modèles Liquid" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Personnalisez l'apparence de votre page d'organisateur" @@ -3079,7 +3105,7 @@ msgstr "Sombre" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Dashboard" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Date et heure" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Annulation de date" @@ -3208,12 +3234,12 @@ msgstr "Capacité par défaut par date" msgid "Default Fee Handling" msgstr "Gestion des frais par défaut" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Le modèle par défaut sera utilisé" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "supprimer" @@ -3267,8 +3293,8 @@ msgstr "Supprimer le code" msgid "Delete Date" msgstr "Supprimer la date" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Supprimer l'événement" @@ -3285,8 +3311,8 @@ msgstr "Supprimer le travail" msgid "Delete location" msgstr "Supprimer le lieu" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Supprimer l'organisateur" @@ -3294,7 +3320,7 @@ msgstr "Supprimer l'organisateur" msgid "Delete Permanently" msgstr "Supprimer définitivement" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Supprimer le modèle" @@ -3319,7 +3345,7 @@ msgstr "{0} date(s) supprimée(s)" msgid "Description" msgstr "Description" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "Remise en {0}" msgid "Discount Type" msgstr "Type de remise" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Ignorer" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Ignorer ce message" @@ -3441,7 +3467,7 @@ msgstr "Télécharger CSV" msgid "Download invoice" msgstr "Télécharger la facture" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Télécharger la facture" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Téléchargez les rapports de ventes, de participants et financiers pour toutes les commandes terminées." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "Téléchargement de la facture" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Brouillon" @@ -3469,7 +3494,7 @@ msgstr "Brouillon" msgid "Dropdown selection" msgstr "Sélection déroulante" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "En raison du risque élevé de spam, vous devez connecter un compte Stripe avant de pouvoir modifier les modèles d'e-mail. Cela permet de garantir que tous les organisateurs d'événements sont vérifiés et responsables." @@ -3490,7 +3515,7 @@ msgstr "Dupliquer" msgid "Duplicate Date" msgstr "Dupliquer la date" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Dupliquer l'événement" @@ -3508,7 +3533,7 @@ msgstr "Options de duplication" msgid "Duplicate Product" msgstr "Dupliquer le produit" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "La durée doit être d'au moins 1 minute." @@ -3520,7 +3545,7 @@ msgstr "Néerlandais" msgid "e.g. 180 (3 hours)" msgstr "ex. 180 (3 heures)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "ex. Séance du matin" msgid "e.g., Get Tickets, Register Now" msgstr "ex. : Obtenir des billets, S'inscrire maintenant" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "par ex., Mise à jour importante concernant vos billets" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "par ex., Standard, Premium, Entreprise" @@ -3542,7 +3567,7 @@ msgstr "par ex., Standard, Premium, Entreprise" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Chaque personne recevra un e-mail avec une place réservée pour finaliser son achat." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Plus tôt" @@ -3611,7 +3636,7 @@ msgstr "Modifier la liste de pointage" msgid "Edit Code" msgstr "Modifier le code" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Modifier la configuration" @@ -3659,8 +3684,8 @@ msgstr "Modifier la question" msgid "Edit user" msgstr "Modifier l'utilisateur" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Modifier l'utilisateur" @@ -3708,7 +3733,7 @@ msgstr "Listes d'Enregistrement Éligibles" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Listes d'Enregistrement Éligibles" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "E-mail" @@ -3743,10 +3768,10 @@ msgstr "E-mail et Modèles" msgid "Email address" msgstr "Adresse e-mail" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "Adresse e-mail" @@ -3755,8 +3780,8 @@ msgstr "Adresse e-mail" msgid "Email address copied to clipboard" msgstr "Adresse e-mail copiée dans le presse-papiers" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "Les adresses e-mail ne correspondent pas" @@ -3764,21 +3789,21 @@ msgstr "Les adresses e-mail ne correspondent pas" msgid "Email Body" msgstr "Corps de l'e-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "Changement d'e-mail annulé avec succès" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "Changement d'e-mail en attente" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "E-mail de confirmation renvoyé" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "E-mail de confirmation renvoyé avec succès" @@ -3792,7 +3817,7 @@ msgstr "Message de pied de page de l'e-mail" msgid "Email is required" msgstr "L'e-mail est obligatoire" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "E-mail non vérifié" @@ -3800,7 +3825,7 @@ msgstr "E-mail non vérifié" msgid "Email Preview" msgstr "Aperçu de l'e-mail" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "Modèles d'e-mail" @@ -3809,6 +3834,10 @@ msgstr "Modèles d'e-mail" msgid "Email Verification Required" msgstr "Vérification de l'e-mail requise" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "E-mail vérifié avec succès !" @@ -3897,12 +3926,11 @@ msgstr "Heure de fin (facultatif)" msgid "End time of the occurrence" msgstr "Heure de fin de la séance" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Terminé" @@ -3920,11 +3948,11 @@ msgstr "Se termine {0}" msgid "English" msgstr "Anglais" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Saisissez une valeur de capacité ou choisissez illimité." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Saisissez un libellé ou choisissez de le supprimer." @@ -3932,7 +3960,7 @@ msgstr "Saisissez un libellé ou choisissez de le supprimer." msgid "Enter a subject and body to see the preview" msgstr "Entrez un sujet et un corps pour voir l'aperçu" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Saisissez la durée du décalage." @@ -3949,11 +3977,11 @@ msgstr "Saisir l'e-mail de l'affilié (facultatif)" msgid "Enter affiliate name" msgstr "Saisir le nom de l'affilié" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Saisissez un montant hors taxes et frais." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Saisir la capacité" @@ -3998,7 +4026,7 @@ msgstr "Entrez votre adresse e-mail et nous vous enverrons des instructions pour msgid "Enter your name" msgstr "Entrez votre nom" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Entrez votre numéro de TVA avec le code pays, sans espaces (par ex., IE1234567A, DE123456789)" @@ -4012,7 +4040,7 @@ msgstr "Les inscriptions apparaîtront ici lorsque les clients rejoindront la li #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Erreur" @@ -4074,7 +4102,7 @@ msgstr "Événement" msgid "Event Archived" msgstr "Événement archivé" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Événement archivé avec succès" @@ -4086,7 +4114,7 @@ msgstr "Catégorie d'événement" msgid "Event Cover Image" msgstr "Image de couverture de l'événement" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4094,7 +4122,7 @@ msgstr "" msgid "Event Created" msgstr "Événement créé" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Modèle personnalisé d'événement" @@ -4113,7 +4141,7 @@ msgstr "Date de l'Événement" msgid "Event Defaults" msgstr "Valeurs par défaut des événements" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Événement supprimé avec succès" @@ -4145,10 +4173,14 @@ msgstr "Événement dupliqué avec succès" msgid "Event Full Address" msgstr "Adresse Complète de l'Événement" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Page d'accueil de l'événement" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Lieu de l'événement" @@ -4188,7 +4220,7 @@ msgstr "Nom de l'organisateur de l'événement" msgid "Event Page" msgstr "Page de l'événement" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Événement restauré avec succès" @@ -4197,17 +4229,17 @@ msgstr "Événement restauré avec succès" msgid "Event Settings" msgstr "Paramètres de l'événement" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "La mise à jour du statut de l'événement a échoué. Veuillez réessayer plus tard" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Statut de l'événement mis à jour" @@ -4240,7 +4272,7 @@ msgstr "Titre de l'événement" msgid "Event Too New" msgstr "Événement trop récent" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Totaux de l'événement" @@ -4405,7 +4437,7 @@ msgstr "Échoué le" msgid "Failed Jobs" msgstr "Travaux échoués" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "Échec de l'abandon de la commande. Veuillez réessayer." @@ -4439,7 +4471,7 @@ msgstr "Échec de l'annulation de la commande" msgid "Failed to create affiliate" msgstr "Échec de la création de l'affilié" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Échec de la création de la configuration" @@ -4447,12 +4479,12 @@ msgstr "Échec de la création de la configuration" msgid "Failed to create schedule" msgstr "Échec de la création du planning" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Échec de la création du modèle" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Échec de la suppression de la configuration" @@ -4470,7 +4502,7 @@ msgstr "Échec de la suppression de la date. Des commandes peuvent y être assoc msgid "Failed to delete dates" msgstr "Échec de la suppression des dates" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Échec de la suppression de l'événement" @@ -4482,7 +4514,7 @@ msgstr "Échec de la suppression du travail" msgid "Failed to delete jobs" msgstr "Échec de la suppression des travaux" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Échec de la suppression de l'organisateur" @@ -4490,13 +4522,13 @@ msgstr "Échec de la suppression de l'organisateur" msgid "Failed to delete question" msgstr "Échec de la suppression de la question" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Échec de la suppression du modèle" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Échec du téléchargement de la facture. Veuillez réessayer." @@ -4594,14 +4626,14 @@ msgstr "Échec de l'enregistrement du remplacement de prix" msgid "Failed to save product settings" msgstr "Échec de l'enregistrement des paramètres du produit" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Échec de la sauvegarde du modèle" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Échec de l'enregistrement des paramètres TVA. Veuillez réessayer." @@ -4639,11 +4671,11 @@ msgstr "Échec de la mise à jour de la réponse." msgid "Failed to update attendee" msgstr "Échec de la mise à jour du participant" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Échec de la mise à jour de la configuration" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Échec de la mise à jour du statut de l'événement" @@ -4655,7 +4687,7 @@ msgstr "Échec de la mise à jour du niveau de messagerie" msgid "Failed to update order" msgstr "Échec de la mise à jour de la commande" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Échec de la mise à jour du statut de l'organisateur" @@ -4701,7 +4733,7 @@ msgstr "Février" msgid "Fee" msgstr "Frais" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Devise des frais" @@ -4720,7 +4752,7 @@ msgstr "" msgid "Fees" msgstr "Frais" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Frais contournés" @@ -4732,8 +4764,8 @@ msgstr "Festival" msgid "File is too large. Maximum size is 5MB." msgstr "Le fichier est trop volumineux. La taille maximale est de 5 Mo." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Remplissez d'abord vos informations ci-dessus" @@ -4754,7 +4786,7 @@ msgstr "Filtrer les Participants" msgid "Filter by date" msgstr "Filtrer par date" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Filtrer par événement" @@ -4775,19 +4807,27 @@ msgstr "Filtres ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Terminer la configuration de Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "Premier" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "Premier participant" @@ -4798,22 +4838,22 @@ msgstr "Premier numéro de facture" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Prénom" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Prénom" @@ -4843,16 +4883,16 @@ msgstr "Montant fixé" msgid "Fixed fee" msgstr "Frais fixes" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Frais fixes" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Frais fixes facturés par transaction" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "Les frais fixes doivent être égaux ou supérieurs à 0" @@ -4923,7 +4963,11 @@ msgstr "Vendredi" msgid "Full data ownership" msgstr "Propriété complète des données" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Remboursement complet" @@ -4931,11 +4975,11 @@ msgstr "Remboursement complet" msgid "Full resolved address" msgstr "Adresse complète résolue" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "à venir" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Dates à venir uniquement" @@ -4992,7 +5036,7 @@ msgstr "Commencer" msgid "Get Tickets" msgstr "Obtenir des billets" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Préparez votre événement" @@ -5013,7 +5057,7 @@ msgstr "Retour" msgid "Go back to profile" msgstr "Revenir au profil" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Aller à la page de l'événement" @@ -5037,7 +5081,7 @@ msgstr "Google Agenda" msgid "Got it" msgstr "Compris" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Revenu brut" @@ -5045,22 +5089,22 @@ msgstr "Revenu brut" msgid "Gross Revenue" msgstr "Revenu brut" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Ventes brutes" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Ventes brutes" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5077,7 +5121,7 @@ msgstr "Invités" msgid "Happening now" msgstr "En cours" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Avez vous un code de réduction?" @@ -5106,7 +5150,7 @@ msgstr "Voici le composant React que vous pouvez utiliser pour intégrer le widg msgid "Here is your affiliate link" msgstr "Voici votre lien d'affiliation" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Salut {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Caché à la vue du public" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "Les questions masquées ne sont visibles que par l'organisateur de l'événement et non par le client." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Cacher" @@ -5239,8 +5283,8 @@ msgstr "Aperçu de la page d'accueil" msgid "Homer" msgstr "Homère" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Heures" @@ -5269,11 +5313,11 @@ msgstr "À quelle fréquence ?" msgid "How to pay offline" msgstr "Comment payer hors ligne" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "Comment la TVA est appliquée aux frais de plateforme que nous vous facturons." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "Limite de caractères HTML dépassé: {htmlLength}/{maxLength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Hongrois" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Je reconnais mes responsabilités en tant que responsable du traitement des données" @@ -5305,11 +5349,11 @@ msgstr "J'accepte de recevoir des notifications par e-mail liées à cet événe msgid "I agree to the <0>terms and conditions" msgstr "J'accepte les <0>termes et conditions" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Je confirme qu'il s'agit d'un message transactionnel lié à cet événement" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Si un nouvel onglet ne s'est pas ouvert automatiquement, veuillez cliquer sur le bouton ci-dessous pour poursuivre le paiement." @@ -5325,7 +5369,7 @@ msgstr "Si activé, le personnel d'enregistrement peut marquer les participants msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Si activé, l'organisateur recevra une notification par e-mail lorsqu'une nouvelle commande sera passée" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Si vous n'avez pas demandé ce changement, veuillez immédiatement modifier votre mot de passe." @@ -5370,11 +5414,11 @@ msgstr "Usurpation d'identité démarrée" msgid "Impersonation stopped" msgstr "Usurpation d'identité arrêtée" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Avis important" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Important : La modification de votre adresse e-mail mettra à jour le lien d'accès à cette commande. Vous serez redirigé vers le nouveau lien de commande après l'enregistrement." @@ -5390,7 +5434,7 @@ msgstr "Dans {diffMinutes} minutes" msgid "in last {0} min" msgstr "dans les dernières {0} min" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "En présentiel — définir un lieu" @@ -5401,15 +5445,15 @@ msgstr "in_person, online, unset ou mixed" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Inactif" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Les utilisateurs inactifs ne peuvent pas se connecter." @@ -5483,12 +5527,12 @@ msgstr "Format d'e-mail invalide" msgid "Invalid file type. Please upload an image." msgstr "Type de fichier invalide. Veuillez télécharger une image." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Syntaxe Liquid invalide. Veuillez la corriger et réessayer." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Format de numéro de TVA invalide" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Facture" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Facture téléchargée avec succès" @@ -5545,7 +5589,7 @@ msgstr "Paramètres de facturation" msgid "Italian" msgstr "Italien" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Article" @@ -5628,7 +5672,7 @@ msgstr "à l'instant" msgid "Just wrapped" msgstr "Vient de se terminer" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Me tenir informé des actualités et événements de {0}" @@ -5647,13 +5691,13 @@ msgstr "Étiquette" msgid "Label for the occurrence" msgstr "Libellé de la séance" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "mises à jour de libellé" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Langue" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "Dernières 24 heures" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "30 derniers jours" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "6 derniers mois" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "7 derniers jours" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "90 derniers jours" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Nom de famille" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Nom de famille" @@ -5753,7 +5797,7 @@ msgstr "Dernier déclenchement" msgid "Last Used" msgstr "Dernière utilisation" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Plus tard" @@ -5786,7 +5830,7 @@ msgstr "Laissez activé pour couvrir tous les billets de l'événement. Désacti msgid "Let them know about the change" msgstr "Informez-les du changement" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Informez-les des changements" @@ -5830,12 +5874,11 @@ msgstr "Liste" msgid "List view" msgstr "Vue liste" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "En ligne" @@ -5848,7 +5891,7 @@ msgstr "EN DIRECT" msgid "Live Events" msgstr "Événements en Direct" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Dates chargées" @@ -5872,8 +5915,8 @@ msgstr "Chargement des webhooks" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Chargement..." @@ -5926,7 +5969,7 @@ msgstr "Lieu enregistré" msgid "Location updated" msgstr "Lieu mis à jour" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "mises à jour de lieu" @@ -5990,7 +6033,7 @@ msgstr "Siège social" msgid "Make billing address mandatory during checkout" msgstr "Rendre l'adresse de facturation obligatoire lors du paiement" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "Gérer le participant" msgid "Manage dates and times for your recurring event" msgstr "Gérez les dates et les horaires de votre événement récurrent" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Gérer l'événement" @@ -6039,10 +6082,14 @@ msgstr "Gérer la commande" msgid "Manage payment and invoicing settings for this event." msgstr "Gérer les paramètres de paiement et de facturation pour cet événement." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Gérer le profil" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Gérer le planning" @@ -6124,7 +6171,7 @@ msgstr "Support" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Message" @@ -6141,7 +6188,7 @@ msgstr "Message au participant" msgid "Message Attendees" msgstr "Message aux participants" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Envoyez des messages aux participants avec des billets spécifiques" @@ -6165,7 +6212,7 @@ msgstr "Contenu du message" msgid "Message Details" msgstr "Détails du message" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Envoyer un message à des participants individuels" @@ -6173,15 +6220,15 @@ msgstr "Envoyer un message à des participants individuels" msgid "Message is required" msgstr "Le message est obligatoire" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Envoyer un message aux propriétaires de commandes avec des produits spécifiques" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Message programmé" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Message envoyé" @@ -6212,8 +6259,8 @@ msgstr "Prix minimum" msgid "minutes" msgstr "minutes" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Minutes" @@ -6229,7 +6276,7 @@ msgstr "Paramètres divers" msgid "Mo" msgstr "Lu" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Mode" @@ -6282,7 +6329,7 @@ msgstr "Plus d'actions" msgid "Most Viewed Events (Last 14 Days)" msgstr "Événements les plus vus (14 derniers jours)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Décaler toutes les dates plus tôt ou plus tard" @@ -6290,7 +6337,7 @@ msgstr "Décaler toutes les dates plus tôt ou plus tard" msgid "Multi line text box" msgstr "Zone de texte multiligne" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Nom" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "Le nom est obligatoire" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "Le nom doit comporter moins de 255 caractères" @@ -6384,21 +6431,21 @@ msgstr "Revenu net" msgid "Never" msgstr "Jamais" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Nouvelle capacité" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Nouveau libellé" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Nouveau lieu" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "nouveau mot de passe" @@ -6426,7 +6473,7 @@ msgstr "Vie nocturne" msgid "No" msgstr "Non" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "Non - Je suis un particulier ou une entreprise non assujettie à la TVA" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "Aucune Affectation de Capacité" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "Aucune liste d'enregistrement disponible pour cet événement." msgid "No check-ins yet" msgstr "Aucun enregistrement" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "Aucune configuration trouvée" @@ -6537,7 +6584,7 @@ msgstr "Aucune liste d'enregistrement spécifique à la date" msgid "No dates available this month. Try navigating to another month." msgstr "Aucune date disponible ce mois-ci. Essayez de naviguer vers un autre mois." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "Aucune date ne correspond aux filtres actuels." @@ -6582,8 +6629,8 @@ msgstr "Aucun événement ne commence dans les prochaines 24 heures" msgid "No events to show" msgstr "Aucun événement à afficher" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "Aucune commande trouvée" msgid "No orders to show" msgstr "Aucune commande à afficher" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "Aucune commande pour cette date pour le moment." msgid "No organizer activity in the last 14 days" msgstr "Aucune activité d'organisateur au cours des 14 derniers jours" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "Aucun contexte d’organisateur disponible." @@ -6733,7 +6780,7 @@ msgstr "Aucune réponse pour le moment" msgid "No results" msgstr "Aucun résultat" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Aucun lieu enregistré pour l’instant" @@ -6793,16 +6840,16 @@ msgstr "Aucun événement webhook n'a encore été enregistré pour ce point de msgid "No Webhooks" msgstr "Aucun webhook" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "Non, rester ici" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "non modifié" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Aucun" @@ -6870,7 +6917,7 @@ msgstr "Préfixe de numéro" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Séance" @@ -7005,7 +7052,7 @@ msgstr "Informations sur les paiements hors ligne" msgid "Offline Payments Settings" msgstr "Paramètres des paiements hors ligne" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "Une fois que vous commencerez à collecter des données, elles apparaît msgid "Ongoing" msgstr "En cours" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "En cours" msgid "Online" msgstr "En ligne" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "En ligne — fournir les informations de connexion" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "En ligne et en présentiel" @@ -7070,15 +7117,15 @@ msgstr "Détails de connexion à l'événement en ligne" msgid "Online Event Details" msgstr "Détails de l'événement en ligne" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Seuls les administrateurs de compte peuvent supprimer ou archiver des événements. Contactez votre administrateur de compte pour obtenir de l'aide." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Seuls les administrateurs de compte peuvent supprimer ou archiver des organisateurs. Contactez votre administrateur de compte pour obtenir de l'aide." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Envoyer uniquement aux commandes avec ces statuts" @@ -7173,7 +7220,7 @@ msgstr "Commande et billet" msgid "Order #" msgstr "Commande N°" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Commande annulée" @@ -7182,13 +7229,13 @@ msgstr "Commande annulée" msgid "Order Cancelled" msgstr "Commande annulée" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Commande terminée" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Confirmation de commande" @@ -7273,7 +7320,7 @@ msgstr "Commande marquée comme payée" msgid "Order Marked as Paid" msgstr "Commande marquée comme payée" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Commande introuvable" @@ -7297,7 +7344,7 @@ msgstr "N° de commande, date d'achat, email de l'acheteur" msgid "Order owner" msgstr "Propriétaire de la commande" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Propriétaires de commandes avec un produit spécifique" @@ -7327,7 +7374,7 @@ msgstr "Commande remboursée" msgid "Order Status" msgstr "Statut de la commande" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Statuts des commandes" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Délai d'expiration de la commande" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Total de la commande" @@ -7357,7 +7404,7 @@ msgstr "Commande mise à jour avec succès" msgid "Order URL" msgstr "URL de la commande" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "La commande a été annulée" @@ -7374,8 +7421,8 @@ msgstr "commandes" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Nom de l'organisation" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Nom de l'organisation" msgid "Organizer" msgstr "Organisateur" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Organisateur archivé avec succès" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Tableau de bord de l'organisateur" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Organisateur supprimé avec succès" @@ -7486,7 +7533,7 @@ msgstr "Nom de l'organisateur" msgid "Organizer Not Found" msgstr "Organisateur introuvable" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Organisateur restauré avec succès" @@ -7504,7 +7551,7 @@ msgstr "Échec de la mise à jour du statut de l'organisateur. Veuillez réessay msgid "Organizer status updated" msgstr "Statut de l'organisateur mis à jour" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Le modèle de l'organisateur/par défaut sera utilisé" @@ -7512,7 +7559,7 @@ msgstr "Le modèle de l'organisateur/par défaut sera utilisé" msgid "Organizers" msgstr "Organisateurs" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Les organisateurs ne peuvent gérer que les événements et les produits. Ils ne peuvent pas gérer les utilisateurs, les paramètres du compte ou les informations de facturation." @@ -7563,7 +7610,7 @@ msgstr "Marge intérieure" msgid "Page" msgstr "Page" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Page plus disponible" @@ -7575,7 +7622,7 @@ msgstr "Page non trouvée" msgid "Page URL" msgstr "URL de la page" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Pages vues" @@ -7583,11 +7630,11 @@ msgstr "Pages vues" msgid "Page Views" msgstr "Vues de page" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "payé" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "Comptes payants" msgid "Paid Product" msgstr "Produit payant" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Remboursement partiel" @@ -7623,7 +7670,7 @@ msgstr "Répercuter sur l'acheteur" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Mot de passe" @@ -7694,7 +7741,7 @@ msgstr "Charge utile" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Paiement" @@ -7735,7 +7782,7 @@ msgstr "Méthodes de paiement" msgid "Payment provider" msgstr "Fournisseur de paiement" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Paiement reçu" @@ -7747,7 +7794,7 @@ msgstr "Paiement reçu" msgid "Payment Status" msgstr "Statut du paiement" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "Paiement réussi !" @@ -7761,11 +7808,11 @@ msgstr "Paiements non disponibles" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Virements" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "En attente" @@ -7801,8 +7848,8 @@ msgstr "Pourcentage" msgid "Percentage Amount" msgstr "Montant en pourcentage" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Frais en pourcentage" @@ -7810,11 +7857,11 @@ msgstr "Frais en pourcentage" msgid "Percentage fee (%)" msgstr "Frais en pourcentage (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "Le pourcentage doit être compris entre 0 et 100" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Pourcentage du montant de la transaction" @@ -7822,11 +7869,11 @@ msgstr "Pourcentage du montant de la transaction" msgid "Performance" msgstr "Performance" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Supprimez définitivement cet événement et toutes ses données associées." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Supprimez définitivement cet organisateur et tous ses événements." @@ -7834,7 +7881,7 @@ msgstr "Supprimez définitivement cet organisateur et tous ses événements." msgid "Permanently remove this date" msgstr "Supprimer définitivement cette date" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Informations personnelles" @@ -7842,7 +7889,7 @@ msgstr "Informations personnelles" msgid "Phone" msgstr "Téléphone" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Choisir un lieu" @@ -7892,7 +7939,7 @@ msgstr "Frais de plateforme de {0} déduits de votre paiement" msgid "Platform Fees" msgstr "Frais de plateforme" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Rapport des frais de plateforme" @@ -7918,7 +7965,7 @@ msgstr "Veuillez vérifier votre e-mail et votre mot de passe et réessayer" msgid "Please check your email is valid" msgstr "Veuillez vérifier que votre email est valide" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Veuillez vérifier votre courrier électronique pour confirmer votre adresse e-mail" @@ -7926,7 +7973,7 @@ msgstr "Veuillez vérifier votre courrier électronique pour confirmer votre adr msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Veuillez vérifier votre billet pour connaître les nouveaux horaires. Vos billets restent valides — aucune action n'est nécessaire à moins que les nouveaux horaires ne vous conviennent pas. Répondez à cet e-mail si vous avez des questions." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Veuillez continuer dans le nouvel onglet" @@ -7955,7 +8002,7 @@ msgstr "Veuillez entrer une URL valide" msgid "Please enter the 5-digit code" msgstr "Veuillez saisir le code à 5 chiffres" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Veuillez entrer votre numéro de TVA" @@ -7971,11 +8018,11 @@ msgstr "Veuillez fournir une image." msgid "Please restart the checkout process." msgstr "Veuillez recommencer le processus de commande." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Veuillez retourner sur la page de l'événement pour recommencer." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Veuillez sélectionner une date et une heure" @@ -7987,7 +8034,7 @@ msgstr "Veuillez sélectionner une plage de dates" msgid "Please select an image." msgstr "Veuillez sélectionner une image." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Veuillez sélectionner au moins un produit" @@ -7998,7 +8045,7 @@ msgstr "Veuillez sélectionner au moins un produit" msgid "Please try again." msgstr "Veuillez réessayer." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Veuillez vérifier votre adresse e-mail pour accéder à toutes les fonctionnalités" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Veuillez patienter pendant que nous préparons l'exportation de vos participants..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Veuillez patienter pendant que nous préparons votre facture..." @@ -8124,7 +8171,7 @@ msgstr "Aperçu avant Impression" msgid "Print Ticket" msgstr "Imprimer le billet" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Imprimer les billets" @@ -8139,7 +8186,7 @@ msgstr "Imprimer en PDF" msgid "Privacy Policy" msgstr "Politique de confidentialité" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Traiter le remboursement" @@ -8180,7 +8227,7 @@ msgstr "Produit supprimé avec succès" msgid "Product Price Type" msgstr "Type de prix du produit" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Produit(s)" msgid "Products" msgstr "Produits" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Produits vendus" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Produits vendus" msgid "Products sorted successfully" msgstr "Produits triés avec succès" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Profil" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Mise à jour du profil réussie" @@ -8251,7 +8298,7 @@ msgstr "Mise à jour du profil réussie" msgid "Progress" msgstr "Progression" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Code promotionnel {promo_code} appliqué" @@ -8298,7 +8345,7 @@ msgstr "Rapport des codes promo" msgid "Promo Only" msgstr "Promo seulement" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "Les e-mails promotionnels peuvent entraîner la suspension du compte" @@ -8310,11 +8357,11 @@ msgstr "" "Fournissez un contexte ou des instructions supplémentaires pour cette question. Utilisez ce champ pour ajouter des conditions générales,\n" "des directives ou toute information importante que les participants doivent connaître avant de répondre." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Renseignez au moins un champ d’adresse pour le nouveau lieu." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Fournissez les informations suivantes avant la prochaine vérification de Stripe pour continuer à recevoir des virements." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Fournisseur" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Publier" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "Analytiques en temps réel" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Recevoir les mises à jour produits de {0}." @@ -8439,6 +8486,10 @@ msgstr "Recevoir les mises à jour produits de {0}." msgid "Recent Account Signups" msgstr "Inscriptions récentes" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Participants récents" @@ -8447,7 +8498,7 @@ msgstr "Participants récents" msgid "Recent check-ins" msgstr "Derniers enregistrements" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "Commandes récentes" msgid "recipient" msgstr "destinataire" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Destinataire" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "destinataires" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Destinataires" msgid "Recipients are available after the message is sent" msgstr "Les destinataires sont disponibles après l'envoi du message" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Récurrent" @@ -8517,7 +8569,7 @@ msgstr "Rembourser toutes les commandes de ces dates" msgid "Refund all orders for this date" msgstr "Rembourser toutes les commandes de cette date" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Montant du remboursement" @@ -8537,7 +8589,7 @@ msgstr "Remboursement émis" msgid "Refund order" msgstr "Commande de remboursement" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Rembourser la commande {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "Statut du remboursement" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Remboursé" @@ -8571,7 +8623,7 @@ msgstr "Remboursé : {0}" msgid "Refunds" msgstr "Remboursements" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Paramètres régionaux" @@ -8598,18 +8650,18 @@ msgstr "Utilisations restantes" msgid "Reminder scheduled" msgstr "Rappel programmé" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "retirer" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Retirer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Retirer le libellé de toutes les dates" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Renvoyer l'e-mail de confirmation" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "Renvoyer l'e-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "Renvoyer l'e-mail de confirmation" @@ -8688,7 +8741,7 @@ msgstr "Renvoyer le billet" msgid "Resend ticket email" msgstr "Renvoyer l'e-mail du billet" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Renvoi..." @@ -8729,30 +8782,30 @@ msgstr "Réponse" msgid "Response Details" msgstr "Détails de la réponse" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Restaurer" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Restaurer l'événement" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Restaurer l'événement" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Restaurer l'organisateur" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Restaurez cet événement pour le rendre à nouveau visible." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Restaurez cet organisateur et rendez-le à nouveau actif." @@ -8777,7 +8830,7 @@ msgstr "Réessayer le travail" msgid "Return to Event" msgstr "Retour à l'événement" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Retourner à la page de l'événement" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Réutilisez une connexion Stripe d'un autre organisateur de ce compte." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Revenu" @@ -8818,7 +8872,7 @@ msgstr "Révoquer l'invitation" msgid "Revoke Offer" msgstr "Révoquer l'offre" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Vente commence {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Ventes" @@ -8930,7 +8984,7 @@ msgstr "Samedi" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Samedi" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Sauvegarder" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Enregistrer le Design du Billet" msgid "Save VAT settings" msgstr "Enregistrer les paramètres de TVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "Enregistrer les paramètres TVA" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Lieu enregistré" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Lieux enregistrés" @@ -9015,7 +9069,7 @@ msgstr "Lieux enregistrés" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "L'enregistrement d'un remplacement crée une configuration dédiée pour cet organisateur s'il utilise actuellement la valeur par défaut du système." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Scanner" @@ -9035,6 +9089,10 @@ msgstr "Mode scanner" msgid "Schedule" msgstr "Planning" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Planning créé avec succès" @@ -9043,11 +9101,11 @@ msgstr "Planning créé avec succès" msgid "Schedule ends on" msgstr "Le planning se termine le" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Programmer pour plus tard" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Programmer le message" @@ -9061,11 +9119,11 @@ msgstr "La planification commence le" msgid "Scheduled" msgstr "Planifié" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Heure programmée" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Rechercher" @@ -9228,11 +9286,11 @@ msgstr "Tout sélectionner" msgid "Select all on {0}" msgstr "Tout sélectionner le {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Sélectionner un événement" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Sélectionner un groupe de participants" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Sélectionner le niveau de produit" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Sélectionner des produits" @@ -9298,7 +9356,7 @@ msgstr "Sélectionnez la date et l'heure de début" msgid "Select start time" msgstr "Sélectionner l'heure de début" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Sélectionnez le statut" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Sélectionnez un billet" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Sélectionner des billets" @@ -9325,7 +9383,7 @@ msgstr "Sélectionnez la période" msgid "Select timezone" msgstr "Sélectionner le fuseau horaire" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Sélectionnez les participants qui doivent recevoir ce message" @@ -9359,11 +9417,11 @@ msgstr "Se vend vite 🔥" msgid "Send" msgstr "Envoyer" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Envoyer un message" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Envoyer en test" @@ -9371,20 +9429,20 @@ msgstr "Envoyer en test" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "Envoyer des e-mails aux participants, détenteurs de billets ou propriétaires de commandes. Les messages peuvent être envoyés immédiatement ou programmés pour plus tard." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "M'envoyer une copie" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Envoyer un Message" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Envoyer maintenant" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Envoyer la confirmation de commande et l'e-mail du ticket" @@ -9392,7 +9450,7 @@ msgstr "Envoyer la confirmation de commande et l'e-mail du ticket" msgid "Send real-time order and attendee data to your external systems." msgstr "Envoyez les données de commande et de participants en temps réel vers vos systèmes externes." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Envoyer l'e-mail de notification de remboursement" @@ -9400,11 +9458,11 @@ msgstr "Envoyer l'e-mail de notification de remboursement" msgid "Send reset link" msgstr "Envoyer le lien de réinitialisation" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Envoyer le test" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Envoyer à toutes les séances, ou choisir une séance spécifique" @@ -9429,15 +9487,15 @@ msgstr "Envoyé" msgid "Sent By" msgstr "Envoyé par" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Envoyé aux participants lorsqu'une date programmée est annulée" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Envoyé aux clients lorsqu'ils passent une commande" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Envoyé à chaque participant avec les détails de son billet" @@ -9490,7 +9548,7 @@ msgstr "Définissez les paramètres de frais de plateforme par défaut pour les msgid "Set default settings for new events created under this organizer." msgstr "Définir les paramètres par défaut pour les nouveaux événements créés sous cet organisateur." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Définir la durée de chaque date" @@ -9498,11 +9556,11 @@ msgstr "Définir la durée de chaque date" msgid "Set number of dates" msgstr "Définir le nombre de dates" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Définir ou effacer le libellé de la date" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Définissez l'heure de fin de chaque date à cette durée après son heure de début." @@ -9510,7 +9568,7 @@ msgstr "Définissez l'heure de fin de chaque date à cette durée après son heu msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Définir le numéro de départ pour la numérotation des factures. Cela ne peut pas être modifié une fois que les factures ont été générées." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Définir sur illimité (supprimer la limite)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Configurez des listes d'enregistrement pour différentes entrées, sessions ou jours." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Configurer les virements" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Configurer le planning" msgid "Set up your organization" msgstr "Configurer votre organisation" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Configurez votre planning" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Définir, modifier ou supprimer le lieu ou les informations en ligne de la séance" @@ -9599,11 +9665,11 @@ msgstr "Partager la page de l'organisateur" msgid "Shared Capacity Management" msgstr "Gestion de capacité partagée" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Décaler les horaires" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "Horaires décalés pour {count} date(s)" @@ -9635,8 +9701,8 @@ msgstr "Afficher la case d'opt-in marketing" msgid "Show marketing opt-in checkbox by default" msgstr "Afficher la case d'opt-in marketing par défaut" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Montre plus" @@ -9673,7 +9739,7 @@ msgstr "Affichage de {0}–{1} sur {2}" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "Affichage de {MAX_VISIBLE} sur {totalAvailable} dates. Saisissez pour rechercher." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "Affichage des {0} premières — les {1} séance(s) restante(s) seront tout de même ciblées lors de l'envoi du message." @@ -9710,7 +9776,7 @@ msgstr "Événement unique" msgid "Single line text box" msgstr "Zone de texte sur une seule ligne" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Ignorer les dates modifiées manuellement" @@ -9745,7 +9811,7 @@ msgstr "Liens sociaux & site web" msgid "Sold" msgstr "Vendu" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Certains détails sont masqués pour l'accès public. Connectez-vous pou #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Une erreur s'est produite" @@ -9784,7 +9850,7 @@ msgstr "Une erreur s'est produite, veuillez réessayer ou contacter le support s msgid "Something went wrong! Please try again" msgstr "Quelque chose s'est mal passé ! Veuillez réessayer" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Quelque chose s'est mal passé." @@ -9796,12 +9862,12 @@ msgstr "Une erreur s'est produite. Veuillez réessayer plus tard." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Quelque chose s'est mal passé. Veuillez réessayer." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Désolé, ce code promo n'est pas reconnu" @@ -9897,12 +9963,12 @@ msgstr "Commence demain" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "État ou région" @@ -9914,7 +9980,7 @@ msgstr "Statistiques" msgid "Statistics are based on account creation date" msgstr "Les statistiques sont basées sur la date de création du compte" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Stats" @@ -9931,7 +9997,7 @@ msgstr "Stats" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "ID de paiement Stripe" msgid "Stripe payments are not enabled for this event." msgstr "Les paiements Stripe ne sont pas activés pour cet événement." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Stripe aura bientôt besoin d'informations supplémentaires" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "Di" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "Le sujet est requis" msgid "Subject will appear here" msgstr "Le sujet apparaîtra ici" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Sujet :" @@ -10024,11 +10090,11 @@ msgstr "Total" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Succès" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Succès! {0} recevra un e-mail sous peu." @@ -10173,7 +10239,7 @@ msgstr "Paramètres mis à jour avec succès" msgid "Successfully Updated Social Links" msgstr "Liens sociaux mis à jour avec succès" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Paramètres de suivi mis à jour avec succès" @@ -10226,7 +10292,7 @@ msgstr "Suédois" msgid "Switch Organizer" msgstr "Changer d'organisateur" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Par défaut du système" @@ -10238,7 +10304,7 @@ msgstr "T-shirt" msgid "Tap this screen to resume scanning" msgstr "Touchez l'écran pour reprendre le scan" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "Ciblage des participants sur {0} séances sélectionnées." @@ -10336,7 +10402,7 @@ msgstr "Parlez-nous de votre organisation. Ces informations seront affichées su msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Indiquez-nous à quelle fréquence votre événement se répète et nous créerons toutes les dates pour vous." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Indiquez votre statut d'enregistrement à la TVA pour que nous appliquions le bon traitement TVA aux frais de plateforme." @@ -10344,15 +10410,15 @@ msgstr "Indiquez votre statut d'enregistrement à la TVA pour que nous appliquio msgid "Template Active" msgstr "Modèle actif" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Modèle créé avec succès" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Modèle supprimé avec succès" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Modèle sauvegardé avec succès" @@ -10378,8 +10444,8 @@ msgstr "Merci pour votre présence !" msgid "Thanks," msgstr "Merci," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Ce code promotionnel n'est pas valide" @@ -10399,7 +10465,7 @@ msgstr "La liste de pointage que vous recherchez n'existe pas." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "Le code expirera dans 10 minutes. Vérifiez votre dossier spam si vous ne voyez pas l'e-mail." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "La devise dans laquelle les frais fixes sont définis. Elle sera convertie dans la devise de la commande lors du paiement." @@ -10417,7 +10483,7 @@ msgstr "La devise par défaut de vos événements." msgid "The default timezone for your events." msgstr "Le fuseau horaire par défaut pour vos événements." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "L'adresse e-mail a été modifiée. Le participant recevra un nouveau billet à l'adresse e-mail mise à jour." @@ -10442,7 +10508,7 @@ msgstr "La première date à partir de laquelle cette planification sera génér msgid "The full event address" msgstr "L'adresse complète de l'événement" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "Le montant total de la commande sera remboursé sur le mode de paiement original du client." @@ -10466,7 +10532,7 @@ msgstr "La langue du client" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "Le maximum est de {MAX_PREVIEW} séances. Veuillez réduire la plage de dates, la fréquence ou le nombre de séances par jour." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "Le nombre maximum de produits pour {0} est {1}" @@ -10475,7 +10541,7 @@ msgstr "Le nombre maximum de produits pour {0} est {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "L'organisateur que vous recherchez est introuvable. La page a peut-être été déplacée, supprimée ou l'URL est incorrecte." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "Le remplacement est enregistré dans le journal d'audit de la commande." @@ -10499,11 +10565,11 @@ msgstr "Le prix affiché au client ne comprendra pas les taxes et frais. Ils ser msgid "The primary brand color used for buttons and highlights" msgstr "La couleur principale de la marque utilisée pour les boutons et les éléments en surbrillance" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "L'heure programmée est requise" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "L'heure programmée doit être dans le futur" @@ -10511,8 +10577,8 @@ msgstr "L'heure programmée doit être dans le futur" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "La séance de \"{title}\" initialement prévue le {0} a été reprogrammée." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "Le corps du modèle contient une syntaxe Liquid invalide. Veuillez la corriger et réessayer." @@ -10521,7 +10587,7 @@ msgstr "Le corps du modèle contient une syntaxe Liquid invalide. Veuillez la co msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "Le titre de l'événement qui sera affiché dans les résultats des moteurs de recherche et lors du partage sur les réseaux sociaux. Par défaut, le titre de l'événement sera utilisé" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "Le numéro de TVA n'a pas pu être validé. Veuillez vérifier le numéro et réessayer." @@ -10534,19 +10600,19 @@ msgstr "Théâtre" msgid "Theme & Colors" msgstr "Thème et couleurs" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "Il n'y a pas de produits disponibles pour cet événement" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "Il n'y a pas de produits disponibles dans cette catégorie" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "Il n'y a aucune date à venir pour cet événement" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "Un remboursement est en attente. Veuillez attendre qu'il soit terminé avant de demander un autre remboursement." @@ -10578,7 +10644,7 @@ msgstr "Ces détails sont affichés sur le billet du participant et le résumé msgid "These details will only be shown if the order is completed successfully." msgstr "Ces détails ne seront affichés que si la commande est finalisée avec succès." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Ces informations remplaceront tout lieu existant pour les séances concernées et apparaîtront sur les billets des participants." @@ -10586,11 +10652,11 @@ msgstr "Ces informations remplaceront tout lieu existant pour les séances conce msgid "These settings apply only to copied embed code and won't be stored." msgstr "Ces paramètres s'appliquent uniquement au code d'intégration copié et ne seront pas enregistrés." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Ces modèles seront utilisés comme valeurs par défaut pour tous les événements de votre organisation. Les événements individuels peuvent remplacer ces modèles par leurs propres versions personnalisées." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Ces modèles remplaceront les paramètres par défaut de l'organisateur pour cet événement uniquement. Si aucun modèle personnalisé n'est défini ici, le modèle de l'organisateur sera utilisé à la place." @@ -10598,11 +10664,11 @@ msgstr "Ces modèles remplaceront les paramètres par défaut de l'organisateur msgid "Third" msgstr "Troisième" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Cela s'applique à chaque date correspondante de l'événement, y compris les dates non visibles actuellement. Les participants inscrits à l'une de ces dates seront joignables depuis le composeur de messages une fois la mise à jour terminée." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Ce participant a une commande impayée." @@ -10660,11 +10726,11 @@ msgstr "Cette date a été annulée. Vous pouvez toujours la supprimer pour la r msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Cette date est dans le passé. Elle sera créée mais ne sera pas visible par les participants dans les dates à venir." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Cette date est marquée comme épuisée." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Cette date n'est plus disponible. Veuillez sélectionner une autre date." @@ -10713,19 +10779,19 @@ msgstr "Ce message sera inclus dans le pied de page de tous les e-mails envoyés msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Ce message ne sera affiché que si la commande est terminée avec succès. Les commandes en attente de paiement n'afficheront pas ce message." -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Ce nom est visible par les utilisateurs finaux" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Cette séance est complète" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "Cette commande a déjà été payée." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "Cette commande a déjà été remboursée." @@ -10733,7 +10799,7 @@ msgstr "Cette commande a déjà été remboursée." msgid "This order has been cancelled." msgstr "Cette commande a été annulée." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "Cette commande a expiré. Veuillez recommencer." @@ -10745,15 +10811,15 @@ msgstr "Cette commande est en cours de traitement." msgid "This order is complete." msgstr "Cette commande est terminée." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Cette page de commande n'est plus disponible." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "Cette commande a été abandonnée. Vous pouvez commencer une nouvelle commande à tout moment." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "Cette commande a été annulée. Vous pouvez passer une nouvelle commande à tout moment." @@ -10785,7 +10851,7 @@ msgstr "Ce produit est mis en vedette sur la page de l'événement" msgid "This product is sold out" msgstr "Ce produit est épuisé" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Ce rapport est fourni à titre informatif uniquement. Consultez toujours un professionnel de la fiscalité avant d'utiliser ces données à des fins comptables ou fiscales. Veuillez vérifier avec votre tableau de bord Stripe car Hi.Events peut manquer de données historiques." @@ -10797,11 +10863,11 @@ msgstr "Ce lien de réinitialisation du mot de passe est invalide ou a expiré." msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Ce billet vient d'être scanné. Veuillez attendre avant de scanner à nouveau." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Cet utilisateur n'est pas actif car il n'a pas accepté son invitation." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Cela affectera {loadedAffectedCount} date(s)." @@ -10913,6 +10979,10 @@ msgstr "Prix du billet" msgid "Ticket resent successfully" msgstr "Billet renvoyé avec succès" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "La vente de billets pour cet événement est terminée" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Heure" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Temps restant :" @@ -10994,7 +11064,7 @@ msgstr "Nombre d'utilisations" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Fuseau horaire" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "Pour augmenter vos limites, contactez-nous à" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "Meilleurs organisateurs (14 derniers jours)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Total" @@ -11075,11 +11146,11 @@ msgstr "Total des inscriptions" msgid "Total Fee" msgstr "Frais total" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Total des ventes brutes" msgid "Total order amount" msgstr "Montant total de la commande" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "Total remboursé" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Total remboursé" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Suivez la croissance et les performances des comptes par source d'attribution" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "Suivi et analytiques" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Taper" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Tapez \"supprimer\" pour confirmer" @@ -11222,7 +11293,7 @@ msgstr "Impossible de sortir le participant" msgid "Unable to create product. Please check the your details" msgstr "Impossible de créer le produit. Veuillez vérifier vos détails" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Impossible de créer le produit. Veuillez vérifier vos détails" @@ -11246,7 +11317,7 @@ msgstr "Impossible de rejoindre la liste d'attente" msgid "Unable to load attendee details." msgstr "Impossible de charger les détails du participant." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Impossible de charger les produits pour cette date. Veuillez réessayer." @@ -11284,7 +11355,7 @@ msgstr "États-Unis" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Inconnu" @@ -11304,7 +11375,7 @@ msgstr "Participant inconnu" msgid "Unlimited" msgstr "Illimité" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Disponible illimité" @@ -11316,12 +11387,12 @@ msgstr "Utilisations illimitées autorisées" msgid "Unnamed" msgstr "Sans nom" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Lieu sans nom" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Commande impayée" @@ -11337,7 +11408,7 @@ msgstr "Non fiable" msgid "Upcoming" msgstr "A venir" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "Mettre à jour {0}" msgid "Update Affiliate" msgstr "Mettre à jour l'affilié" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Mettre à jour la capacité" @@ -11365,15 +11436,15 @@ msgstr "Mettre à jour le nom et la description de l'événement" msgid "Update event name, description and dates" msgstr "Mettre à jour le nom, la description et les dates de l'événement" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Mettre à jour le libellé" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Mettre à jour le lieu" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Mettre à jour le profil" @@ -11385,19 +11456,19 @@ msgstr "Mise à jour : {subjectTitle} — modifications du planning" msgid "Update: {subjectTitle} — session time changed" msgstr "Mise à jour : {subjectTitle} — horaire de la séance modifié" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "{count} date(s) mise(s) à jour" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "Capacité mise à jour pour {count} date(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "Libellé mis à jour pour {count} date(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Lieu mis à jour pour {count} séance(s)" @@ -11507,14 +11578,14 @@ msgstr "Gestion des utilisateurs" msgid "Users" msgstr "Utilisateurs" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Les utilisateurs peuvent modifier leur adresse e-mail dans <0>Paramètres du profil." #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11526,13 +11597,13 @@ msgstr "Analytique UTM" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "Validation de votre numéro de TVA..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "T.V.A." @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "Numéro de TVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "Numéro de TVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "Le numéro de TVA ne doit pas contenir d'espaces" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "Le numéro de TVA doit commencer par un code pays de 2 lettres suivi de 8 à 15 caractères alphanumériques (par ex., DE123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "Numéro de TVA validé avec succès" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "La validation du numéro de TVA a échoué" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "La validation du numéro de TVA a échoué. Veuillez vérifier votre numéro de TVA." @@ -11581,12 +11652,12 @@ msgstr "Taux de TVA" msgid "VAT registered" msgstr "Assujetti à la TVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "Paramètres TVA enregistrés avec succès" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "Paramètres TVA enregistrés. Nous validons votre numéro de TVA en arrière-plan." @@ -11594,15 +11665,15 @@ msgstr "Paramètres TVA enregistrés. Nous validons votre numéro de TVA en arri msgid "VAT settings updated" msgstr "Paramètres de TVA mis à jour" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "Traitement TVA pour les frais de plateforme" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "Traitement TVA pour les frais de plateforme : les entreprises enregistrées à la TVA dans l'UE peuvent utiliser le mécanisme d'autoliquidation (0 % - Article 196 de la Directive TVA 2006/112/CE). Les entreprises non enregistrées à la TVA sont soumises à la TVA irlandaise à 23 %." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "Service de validation TVA temporairement indisponible" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "TVA : non assujetti" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "nom de la place" msgid "Verification code" msgstr "Code de vérification" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "Vérifier l'e-mail" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Vérifiez votre e-mail" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "Vérification..." @@ -11655,8 +11735,7 @@ msgstr "Voir" msgid "View All" msgstr "Tout voir" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "Voir les détails de {0} {1}" msgid "View Event" msgstr "Voir l'événement" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Voir la page de l'événement" @@ -11729,8 +11808,8 @@ msgstr "Afficher sur Google Maps" msgid "View Order" msgstr "Voir la commande" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Voir les détails de la commande" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "En attente" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "En attente de paiement" @@ -11800,7 +11879,7 @@ msgstr "Liste d'attente" msgid "Waitlist Enabled" msgstr "Liste d'attente activée" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "Offre de liste d'attente expirée" @@ -11808,7 +11887,7 @@ msgstr "Offre de liste d'attente expirée" msgid "Waitlist triggered" msgstr "Liste d'attente déclenchée" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Attention : Il s'agit de la configuration par défaut du système. Les modifications affecteront tous les comptes auxquels aucune configuration spécifique n'est assignée." @@ -11844,7 +11923,7 @@ msgstr "Nous n'avons pas trouvé la commande que vous recherchez. Le lien a peut msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "Nous n'avons pas trouvé le billet que vous recherchez. Le lien a peut-être expiré ou les détails du billet ont changé." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "Nous n'avons pas pu trouver cette commande. Elle a peut-être été supprimée." @@ -11860,7 +11939,7 @@ msgstr "Nous n'avons pas pu joindre Stripe à l'instant. Veuillez réessayer dan msgid "We couldn't reorder the categories. Please try again." msgstr "Nous n'avons pas pu réorganiser les catégories. Veuillez réessayer." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Un problème est survenu lors du chargement de cette page. Veuillez réessayer." @@ -11881,6 +11960,10 @@ msgstr "Nous recommandons des dimensions de 2 160 px sur 1 080 px et une tai msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "Nous recommandons des dimensions de 400px par 400px et une taille maximale de 5 Mo" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "Nous utilisons des cookies pour comprendre comment le site est utilisé et améliorer votre expérience." @@ -11889,7 +11972,7 @@ msgstr "Nous utilisons des cookies pour comprendre comment le site est utilisé msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "Nous n'avons pas pu confirmer votre paiement. Veuillez réessayer ou contacter l'assistance." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "Nous n'avons pas pu valider votre numéro de TVA après plusieurs tentatives. Nous continuerons d'essayer en arrière-plan. Veuillez revérifier plus tard." @@ -11897,16 +11980,16 @@ msgstr "Nous n'avons pas pu valider votre numéro de TVA après plusieurs tentat msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "Nous vous préviendrons par e-mail si une place se libère pour {productDisplayName}." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Nous ouvrirons un composeur de message avec un modèle pré-rempli après l'enregistrement. Vous le vérifiez et l'envoyez — rien n'est envoyé automatiquement." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "Nous enverrons vos billets à cet e-mail" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "Nous validerons votre numéro de TVA en arrière-plan. S'il y a des problèmes, nous vous en informerons." @@ -12003,7 +12086,7 @@ msgstr "Bienvenue à bord! Merci de vous connecter pour continuer." msgid "Welcome back" msgstr "Bon retour" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Bon retour{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Bien-être" msgid "What are Tiered Products?" msgstr "Quels sont les produits par paliers ?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "Qu'est-ce qu'une catégorie ?" @@ -12143,6 +12226,10 @@ msgstr "Quand l'enregistrement ferme" msgid "When check-in opens" msgstr "Quand l'enregistrement ouvre" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "Lorsque activé, des factures seront générées pour les commandes de billets. Les factures seront envoyées avec l'e-mail de confirmation de commande. Les participants peuvent également télécharger leurs factures depuis la page de confirmation de commande." @@ -12155,7 +12242,7 @@ msgstr "Lorsque cette option est activée, les nouveaux événements permettront msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "Lorsqu'elle est activée, les nouveaux événements afficheront une case d'opt-in marketing lors du paiement. Cela peut être remplacé par événement." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "Lorsqu'activé, aucun frais d'application ne sera facturé sur les transactions Stripe Connect. Utilisez ceci pour les pays où les frais d'application ne sont pas pris en charge." @@ -12191,11 +12278,11 @@ msgstr "Aperçu du widget" msgid "Widget Settings" msgstr "Paramètres du widget" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "Fonctionnement" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "an" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Année à ce jour" @@ -12247,11 +12334,11 @@ msgstr "ans" msgid "Yes" msgstr "Oui" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Oui - J'ai un numéro d'enregistrement TVA UE valide" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Oui, annuler ma commande" @@ -12267,7 +12354,7 @@ msgstr "Vous changez votre adresse e-mail en <0>{0}." msgid "You are impersonating <0>{0} ({1})" msgstr "Vous usurpez l'identité de <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Vous émettez un remboursement partiel. Le client sera remboursé de {0} {1}." @@ -12292,7 +12379,7 @@ msgstr "Vous pourrez remplacer cette valeur pour des dates individuelles ultéri msgid "You can still manually offer tickets if needed." msgstr "Vous pouvez toujours proposer des billets manuellement si nécessaire." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "Vous ne pouvez pas archiver le dernier organisateur actif de votre compte." @@ -12313,11 +12400,11 @@ msgstr "Vous ne pouvez pas supprimer la dernière catégorie." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "Vous ne pouvez pas supprimer ce niveau de prix car des produits ont déjà été vendus pour ce niveau. Vous pouvez le masquer à la place." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "Vous ne pouvez pas modifier le rôle ou le statut du propriétaire du compte." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "Vous ne pouvez pas rembourser une commande créée manuellement." @@ -12333,11 +12420,11 @@ msgstr "Vous avez déjà accepté cette invitation. Merci de vous connecter pour msgid "You have no pending email change." msgstr "Vous n’avez aucun changement d’e-mail en attente." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "Vous avez atteint votre limite de messagerie." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "Vous avez manqué de temps pour compléter votre commande." @@ -12345,11 +12432,11 @@ msgstr "Vous avez manqué de temps pour compléter votre commande." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Vous avez ajouté des taxes et des frais à un produit gratuit. Voulez-vous les supprimer ?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "Vous devez reconnaître que cet e-mail n'est pas promotionnel" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Vous devez reconnaître vos responsabilités avant d'enregistrer" @@ -12409,7 +12496,7 @@ msgstr "Vous aurez besoin d'un produit avant de pouvoir créer une affectation d msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Vous aurez besoin d'au moins un produit pour commencer. Gratuit, payant ou laissez l'utilisateur décider du montant à payer." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Vous modifiez les horaires des séances" @@ -12421,7 +12508,7 @@ msgstr "Vous allez à {0} !" msgid "You're on the waitlist!" msgstr "Vous êtes sur la liste d'attente !" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "Une place vous a été proposée !" @@ -12429,7 +12516,7 @@ msgstr "Une place vous a été proposée !" msgid "You've changed the session time" msgstr "Vous avez modifié l'horaire de la séance" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Votre compte a des limites de messagerie. Pour augmenter vos limites, contactez-nous à" @@ -12457,11 +12544,11 @@ msgstr "Votre super site web 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "Votre liste d'enregistrement a été créée avec succès. Partagez le lien ci-dessous avec votre personnel d'enregistrement." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "Votre commande actuelle sera perdue." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Vos détails" @@ -12469,7 +12556,7 @@ msgstr "Vos détails" msgid "Your Email" msgstr "Votre e-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "Votre demande de modification par e-mail en <0>{0} est en attente. S'il vous plaît vérifier votre e-mail pour confirmer" @@ -12497,7 +12584,7 @@ msgstr "Votre nom" msgid "Your new password must be at least 8 characters long." msgstr "Votre nouveau mot de passe doit comporter au moins 8 caractères." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Votre commande" @@ -12509,7 +12596,7 @@ msgstr "Les détails de votre commande ont été mis à jour. Un e-mail de confi msgid "Your order has been cancelled" msgstr "Votre commande a été annulée" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "Votre commande a été annulée." @@ -12534,7 +12621,7 @@ msgstr "Adresse de votre organisateur" msgid "Your password" msgstr "Votre mot de passe" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Votre paiement est en cours de traitement." @@ -12542,11 +12629,11 @@ msgstr "Votre paiement est en cours de traitement." msgid "Your payment is protected with bank-level encryption" msgstr "Votre paiement est protégé par un cryptage de niveau bancaire" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Votre paiement n'a pas abouti, veuillez réessayer." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Votre paiement a échoué. Veuillez réessayer." @@ -12554,7 +12641,7 @@ msgstr "Votre paiement a échoué. Veuillez réessayer." msgid "Your Plan" msgstr "Votre forfait" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Votre remboursement est en cours de traitement." @@ -12570,19 +12657,19 @@ msgstr "Votre billet pour" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "Votre billet reste valide — aucune action n'est nécessaire à moins que le nouvel horaire ne vous convienne pas. Répondez à cet e-mail si vous avez des questions." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "Vos billets ont été confirmés." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "Votre numéro de TVA est en file d'attente pour validation" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "Votre numéro de TVA sera validé lorsque vous enregistrerez" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "Votre offre de liste d'attente a expiré et nous n'avons pas pu finaliser votre commande. Veuillez rejoindre à nouveau la liste d'attente pour être notifié lorsque des places se libèrent." @@ -12590,19 +12677,19 @@ msgstr "Votre offre de liste d'attente a expiré et nous n'avons pas pu finalise msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "Code postal" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "Code Postal" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "Code postal" diff --git a/frontend/src/locales/hu.js b/frontend/src/locales/hu.js index f4b26f4a95..40ddb8979c 100644 --- a/frontend/src/locales/hu.js +++ b/frontend/src/locales/hu.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Még nincs megjeleníthető tartalom'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>sikeresen kijelentkezett\"],\"KMgp2+\":[[\"0\"],\" elérhető\"],\"Pmr5xp\":[[\"0\"],\" sikeresen létrehozva\"],\"FImCSc\":[[\"0\"],\" sikeresen frissítve\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" nap, \",[\"hours\"],\" óra, \",[\"minutes\"],\" perc, és \",[\"seconds\"],\" másodperc\"],\"f3RdEk\":[[\"hours\"],\" óra, \",[\"minutes\"],\" perc, és \",[\"seconds\"],\" másodperc\"],\"fyE7Au\":[[\"minutes\"],\" perc és \",[\"seconds\"],\" másodperc\"],\"NlQ0cx\":[[\"organizerName\"],\" első eseménye\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://az-ön-weboldala.com\",\"qnSLLW\":\"<0>Kérjük, adja meg az árat adók és díjak nélkül.<1>Az adók és díjak alább adhatók hozzá.\",\"ZjMs6e\":\"<0>A termékhez elérhető termékek száma<1>Ez az érték felülírható, ha a termékhez <2>Kapacitáskorlátok vannak társítva.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 perc és 0 másodperc\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Fő utca\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Dátum beviteli mező. Tökéletes születési dátum stb. kérésére.\",\"6euFZ/\":[\"Az összes új termékre automatikusan alkalmazásra kerül egy alapértelmezett \",[\"type\"],\" típus. Ezt termékenként felülírhatja.\"],\"SMUbbQ\":\"A legördülő menü csak egy kiválasztást tesz lehetővé\",\"qv4bfj\":\"Díj, például foglalási díj vagy szolgáltatási díj\",\"POT0K/\":\"Fix összeg termékenként. Pl. 0,50 dollár termékenként\",\"f4vJgj\":\"Többsoros szövegbevitel\",\"OIPtI5\":\"A termék árának százaléka. Pl. a termék árának 3,5%-a\",\"ZthcdI\":\"A kedvezmény nélküli promóciós kód elrejtett termékek felfedésére használható.\",\"AG/qmQ\":\"A rádió opció több lehetőséget kínál, de csak egy választható ki.\",\"h179TP\":\"Az esemény rövid leírása, amely megjelenik a keresőmotorok találatai között és a közösségi médiában való megosztáskor. Alapértelmezés szerint az esemény leírása kerül felhasználásra.\",\"WKMnh4\":\"Egysoros szövegbevitel\",\"BHZbFy\":\"Egyetlen kérdés megrendelésenként. Pl. Mi a szállítási címe?\",\"Fuh+dI\":\"Egyetlen kérdés termékenként. Pl. Mi a póló mérete?\",\"RlJmQg\":\"Standard adó, mint az ÁFA vagy a GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Banki átutalások, csekkek vagy egyéb offline fizetési módok elfogadása\",\"hrvLf4\":\"Hitelkártyás fizetések elfogadása a Stripe-pal\",\"bfXQ+N\":\"Meghívó elfogadása\",\"AeXO77\":\"Fiók\",\"lkNdiH\":\"Fióknév\",\"Puv7+X\":\"Fiókbeállítások\",\"OmylXO\":\"Fiók sikeresen frissítve\",\"7L01XJ\":\"Műveletek\",\"FQBaXG\":\"Aktiválás\",\"5T2HxQ\":\"Aktiválás dátuma\",\"F6pfE9\":\"Aktív\",\"/PN1DA\":\"Adjon leírást ehhez a bejelentkezési listához\",\"0/vPdA\":\"Adjon hozzá bármilyen megjegyzést a résztvevőhöz. Ezek nem lesznek láthatók a résztvevő számára.\",\"Or1CPR\":\"Adjon hozzá bármilyen megjegyzést a résztvevőhöz...\",\"l3sZO1\":\"Adjon hozzá bármilyen megjegyzést a megrendeléshez. Ezek nem lesznek láthatók az ügyfél számára.\",\"xMekgu\":\"Adjon hozzá bármilyen megjegyzést a megrendeléshez...\",\"PGPGsL\":\"Leírás hozzáadása\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Adjon hozzá utasításokat az offline fizetésekhez (pl. banki átutalás részletei, hová küldje a csekkeket, fizetési határidők)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Új hozzáadása\",\"TZxnm8\":\"Opció hozzáadása\",\"24l4x6\":\"Termék hozzáadása\",\"8q0EdE\":\"Termék hozzáadása kategóriához\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Adó vagy díj hozzáadása\",\"goOKRY\":\"Szint hozzáadása\",\"oZW/gT\":\"Hozzáadás a naptárhoz\",\"pn5qSs\":\"További információk\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Cím\",\"NY/x1b\":\"Cím 1. sor\",\"POdIrN\":\"Cím 1. sor\",\"cormHa\":\"Cím 2. sor\",\"gwk5gg\":\"Cím 2. sor\",\"U3pytU\":\"Adminisztrátor\",\"HLDaLi\":\"Az adminisztrátor felhasználók teljes hozzáféréssel rendelkeznek az eseményekhez és a fiókbeállításokhoz.\",\"W7AfhC\":\"Az esemény összes résztvevője\",\"cde2hc\":\"Minden termék\",\"5CQ+r0\":\"Engedélyezze a be nem fizetett megrendelésekhez társított résztvevők bejelentkezését\",\"ipYKgM\":\"Keresőmotor indexelésének engedélyezése\",\"LRbt6D\":\"Engedélyezze a keresőmotoroknak az esemény indexelését\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Csodálatos, esemény, kulcsszavak...\",\"hehnjM\":\"Összeg\",\"R2O9Rg\":[\"Fizetett összeg (\",[\"0\"],\")\"],\"V7MwOy\":\"Hiba történt az oldal betöltésekor\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Váratlan hiba történt.\",\"byKna+\":\"Váratlan hiba történt. Kérjük, próbálja újra.\",\"ubdMGz\":\"A terméktulajdonosoktól érkező bármilyen kérdés erre az e-mail címre kerül elküldésre. Ez lesz az „válasz” cím is az eseményről küldött összes e-mailhez.\",\"aAIQg2\":\"Megjelenés\",\"Ym1gnK\":\"alkalmazva\",\"sy6fss\":[\"Alkalmazható \",[\"0\"],\" termékre\"],\"kadJKg\":\"1 termékre vonatkozik\",\"DB8zMK\":\"Alkalmaz\",\"GctSSm\":\"Promóciós kód alkalmazása\",\"ARBThj\":[\"Alkalmazza ezt a \",[\"type\"],\" típust minden új termékre\"],\"S0ctOE\":\"Esemény archiválása\",\"TdfEV7\":\"Archivált\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Biztosan aktiválni szeretné ezt a résztvevőt?\",\"TvkW9+\":\"Biztosan archiválni szeretné ezt az eseményt?\",\"/CV2x+\":\"Biztosan törölni szeretné ezt a résztvevőt? Ez érvényteleníti a jegyét.\",\"YgRSEE\":\"Biztosan törölni szeretné ezt a promóciós kódot?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Biztosan piszkozatba szeretné tenni ezt az eseményt? Ezzel az esemény láthatatlanná válik a nyilvánosság számára.\",\"mEHQ8I\":\"Biztosan nyilvánossá szeretné tenni ezt az eseményt? Ezzel az esemény láthatóvá válik a nyilvánosság számára.\",\"s4JozW\":\"Biztosan vissza szeretné állítani ezt az eseményt? Piszkozatként lesz visszaállítva.\",\"vJuISq\":\"Biztosan törölni szeretné ezt a kapacitás-hozzárendelést?\",\"baHeCz\":\"Biztosan törölni szeretné ezt a bejelentkezési listát?\",\"LBLOqH\":\"Kérdezze meg egyszer megrendelésenként\",\"wu98dY\":\"Kérdezze meg egyszer termékenként\",\"ss9PbX\":\"Résztvevő\",\"m0CFV2\":\"Résztvevő adatai\",\"QKim6l\":\"Résztvevő nem található\",\"R5IT/I\":\"Résztvevő megjegyzései\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Résztvevői jegy\",\"9SZT4E\":\"Résztvevők\",\"iPBfZP\":\"Regisztrált résztvevők\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatikus átméretezés\",\"vZ5qKF\":\"Automatikusan átméretezi a widget magasságát a tartalom alapján. Ha le van tiltva, a widget kitölti a tároló magasságát.\",\"4lVaWA\":\"Offline fizetésre vár\",\"2rHwhl\":\"Offline fizetésre vár\",\"3wF4Q/\":\"Fizetésre vár\",\"ioG+xt\":\"Fizetésre vár\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Kft.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Vissza az esemény oldalára\",\"VCoEm+\":\"Vissza a bejelentkezéshez\",\"k1bLf+\":\"Háttérszín\",\"I7xjqg\":\"Háttér típusa\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Számlázási cím\",\"/xC/im\":\"Számlázási beállítások\",\"rp/zaT\":\"Brazíliai portugál\",\"whqocw\":\"A regisztrációval elfogadja <0>Szolgáltatási feltételeinket és <1>Adatvédelmi irányelveinket.\",\"bcCn6r\":\"Számítás típusa\",\"+8bmSu\":\"Kalifornia\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Mégsem\",\"Gjt/py\":\"E-mail cím módosításának visszavonása\",\"tVJk4q\":\"Megrendelés törlése\",\"Os6n2a\":\"Megrendelés törlése\",\"Mz7Ygx\":[\"Megrendelés törlése \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Törölve\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Kapacitás\",\"V6Q5RZ\":\"Kapacitás-hozzárendelés sikeresen létrehozva\",\"k5p8dz\":\"Kapacitás-hozzárendelés sikeresen törölve\",\"nDBs04\":\"Kapacitás kezelése\",\"ddha3c\":\"A kategóriák lehetővé teszik a termékek csoportosítását. Például létrehozhat egy kategóriát „Jegyek” néven, és egy másikat „Árucikkek” néven.\",\"iS0wAT\":\"A kategóriák segítenek a termékek rendszerezésében. Ez a cím megjelenik a nyilvános eseményoldalon.\",\"eorM7z\":\"Kategóriák sikeresen átrendezve.\",\"3EXqwa\":\"Kategória sikeresen létrehozva\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Jelszó módosítása\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Bejelentkezés \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Bejelentkezés és megrendelés fizetettként jelölése\",\"QYLpB4\":\"Csak bejelentkezés\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Nézze meg ezt az eseményt!\",\"gXcPxc\":\"Beléptetés\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Bejelentkezési lista sikeresen törölve\",\"+hBhWk\":\"A bejelentkezési lista lejárt\",\"mBsBHq\":\"A bejelentkezési lista nem aktív\",\"vPqpQG\":\"Bejelentkezési lista nem található\",\"tejfAy\":\"Bejelentkezési listák\",\"hD1ocH\":\"Bejelentkezési URL a vágólapra másolva\",\"CNafaC\":\"A jelölőnégyzet opciók több kiválasztást is lehetővé tesznek\",\"SpabVf\":\"Jelölőnégyzetek\",\"CRu4lK\":\"Bejelentkezve\",\"znIg+z\":\"Fizetés\",\"1WnhCL\":\"Fizetési beállítások\",\"6imsQS\":\"Kínai (egyszerűsített)\",\"JjkX4+\":\"Válasszon színt a háttérhez\",\"/Jizh9\":\"Válasszon fiókot\",\"3wV73y\":\"Város\",\"FG98gC\":\"Keresési szöveg törlése\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Kattintson a másoláshoz\",\"yz7wBu\":\"Bezárás\",\"62Ciis\":\"Oldalsáv bezárása\",\"EWPtMO\":\"Kód\",\"ercTDX\":\"A kódnak 3 és 50 karakter között kell lennie\",\"oqr9HB\":\"Összecsukja ezt a terméket, amikor az eseményoldal kezdetben betöltődik\",\"jZlrte\":\"Szín\",\"Vd+LC3\":\"A színnek érvényes hexadecimális színkódnak kell lennie. Példa: #ffffff\",\"1HfW/F\":\"Színek\",\"VZeG/A\":\"Hamarosan érkezik\",\"yPI7n9\":\"Vesszővel elválasztott kulcsszavak, amelyek leírják az eseményt. Ezeket a keresőmotorok használják az esemény kategorizálásához és indexeléséhez.\",\"NPZqBL\":\"Megrendelés befejezése\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Fizetés befejezése\",\"qqWcBV\":\"Befejezett\",\"6HK5Ct\":\"Befejezett megrendelések\",\"NWVRtl\":\"Befejezett megrendelések\",\"DwF9eH\":\"Komponens kód\",\"Tf55h7\":\"Konfigurált kedvezmény\",\"7VpPHA\":\"Megerősítés\",\"ZaEJZM\":\"E-mail cím módosításának megerősítése\",\"yjkELF\":\"Új jelszó megerősítése\",\"xnWESi\":\"Jelszó megerősítése\",\"p2/GCq\":\"Jelszó megerősítése\",\"wnDgGj\":\"E-mail cím megerősítése...\",\"pbAk7a\":\"Stripe csatlakoztatása\",\"UMGQOh\":\"Csatlakozás a Stripe-hoz\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Csatlakozási adatok\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Folytatás\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Folytatás gomb szövege\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Másolva\",\"T5rdis\":\"vágólapra másolva\",\"he3ygx\":\"Másolás\",\"r2B2P8\":\"Bejelentkezési URL másolása\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Link másolása\",\"E6nRW7\":\"URL másolása\",\"JNCzPW\":\"Ország\",\"IF7RiR\":\"Borító\",\"hYgDIe\":\"Létrehozás\",\"b9XOHo\":[\"Létrehozás \",[\"0\"]],\"k9RiLi\":\"Termék létrehozása\",\"6kdXbW\":\"Promóciós kód létrehozása\",\"n5pRtF\":\"Jegy létrehozása\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"szervező létrehozása\",\"ipP6Ue\":\"Résztvevő létrehozása\",\"VwdqVy\":\"Kapacitás-hozzárendelés létrehozása\",\"EwoMtl\":\"Kategória létrehozása\",\"XletzW\":\"Kategória létrehozása\",\"WVbTwK\":\"Bejelentkezési lista létrehozása\",\"uN355O\":\"Esemény létrehozása\",\"BOqY23\":\"Új létrehozása\",\"kpJAeS\":\"Szervező létrehozása\",\"a0EjD+\":\"Termék létrehozása\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Promóciós kód létrehozása\",\"B3Mkdt\":\"Kérdés létrehozása\",\"UKfi21\":\"Adó vagy díj létrehozása\",\"d+F6q9\":\"Létrehozva\",\"Q2lUR2\":\"Pénznem\",\"DCKkhU\":\"Jelenlegi jelszó\",\"uIElGP\":\"Egyedi térképek URL\",\"UEqXyt\":\"Egyedi tartomány\",\"876pfE\":\"Ügyfél\",\"QOg2Sf\":\"Testreszabhatja az esemény e-mail és értesítési beállításait.\",\"Y9Z/vP\":\"Testreszabhatja az esemény honlapját és a fizetési üzeneteket.\",\"2E2O5H\":\"Testreszabhatja az esemény egyéb beállításait.\",\"iJhSxe\":\"Testreszabhatja az esemény SEO beállításait.\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Veszélyzóna\",\"ZQKLI1\":\"Veszélyzóna\",\"7p5kLi\":\"Irányítópult\",\"mYGY3B\":\"Dátum\",\"JvUngl\":\"Dátum és idő\",\"JJhRbH\":\"Első nap kapacitás\",\"cnGeoo\":\"Törlés\",\"jRJZxD\":\"Kapacitás törlése\",\"VskHIx\":\"Kategória törlése\",\"Qrc8RZ\":\"Bejelentkezési lista törlése\",\"WHf154\":\"Kód törlése\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Leírás\",\"YC3oXa\":\"Leírás a bejelentkezési személyzet számára\",\"URmyfc\":\"Részletek\",\"1lRT3t\":\"Ezen kapacitás letiltása nyomon követi az értékesítéseket, de nem állítja le őket, amikor a limit elérte a határt.\",\"H6Ma8Z\":\"Kedvezmény\",\"ypJ62C\":\"Kedvezmény %\",\"3LtiBI\":[\"Kedvezmény \",[\"0\"],\"-ban\"],\"C8JLas\":\"Kedvezmény típusa\",\"1QfxQT\":\"Elvet\",\"DZlSLn\":\"Dokumentum címke\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Adomány / Fizess, amennyit szeretnél termék\",\"OvNbls\":\".ics letöltése\",\"kodV18\":\"CSV letöltése\",\"CELKku\":\"Számla letöltése\",\"LQrXcu\":\"Számla letöltése\",\"QIodqd\":\"QR kód letöltése\",\"yhjU+j\":\"Számla letöltése\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Legördülő menü kiválasztása\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Esemény másolása\",\"3ogkAk\":\"Esemény másolása\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Opciók másolása\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Korai madár\",\"ePK91l\":\"Szerkesztés\",\"N6j2JH\":[\"Szerkesztés \",[\"0\"]],\"kBkYSa\":\"Kapacitás szerkesztése\",\"oHE9JT\":\"Kapacitás-hozzárendelés szerkesztése\",\"j1Jl7s\":\"Kategória szerkesztése\",\"FU1gvP\":\"Bejelentkezési lista szerkesztése\",\"iFgaVN\":\"Kód szerkesztése\",\"jrBSO1\":\"Szervező szerkesztése\",\"tdD/QN\":\"Termék szerkesztése\",\"n143Tq\":\"Termékkategória szerkesztése\",\"9BdS63\":\"Promóciós kód szerkesztése\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Kérdés szerkesztése\",\"poTr35\":\"Felhasználó szerkesztése\",\"GTOcxw\":\"Felhasználó szerkesztése\",\"pqFrv2\":\"pl. 2.50 2.50 dollárért\",\"3yiej1\":\"pl. 23.5 23.5%-ért\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"E-mail és értesítési beállítások\",\"ATGYL1\":\"E-mail cím\",\"hzKQCy\":\"E-mail cím\",\"HqP6Qf\":\"E-mail cím módosítása sikeresen törölve\",\"mISwW1\":\"E-mail cím módosítása függőben\",\"APuxIE\":\"E-mail megerősítés újraküldve\",\"YaCgdO\":\"E-mail megerősítés sikeresen újraküldve\",\"jyt+cx\":\"E-mail lábléc üzenet\",\"I6F3cp\":\"E-mail nem ellenőrzött\",\"NTZ/NX\":\"Beágyazási kód\",\"4rnJq4\":\"Beágyazási szkript\",\"8oPbg1\":\"Számlázás engedélyezése\",\"j6w7d/\":\"Engedélyezze ezt a kapacitást, hogy leállítsa a termékértékesítést, amikor a limit elérte a határt.\",\"VFv2ZC\":\"Befejezés dátuma\",\"237hSL\":\"Befejezett\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Angol\",\"MhVoma\":\"Adjon meg egy összeget adók és díjak nélkül.\",\"SlfejT\":\"Hiba\",\"3Z223G\":\"Hiba az e-mail cím megerősítésekor\",\"a6gga1\":\"Hiba az e-mail cím módosításának megerősítésekor\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Esemény\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Esemény dátuma\",\"0Zptey\":\"Esemény alapértelmezett beállításai\",\"QcCPs8\":\"Esemény részletei\",\"6fuA9p\":\"Esemény sikeresen másolva\",\"AEuj2m\":\"Esemény honlapja\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Esemény helyszíne és helyszín adatai\",\"OopDbA\":\"Event page\",\"4/If97\":\"Esemény állapotának frissítése sikertelen. Kérjük, próbálja újra később.\",\"btxLWj\":\"Esemény állapota frissítve\",\"nMU2d3\":\"Esemény URL-je\",\"tst44n\":\"Események\",\"sZg7s1\":\"Lejárati dátum\",\"KnN1Tu\":\"Lejár\",\"uaSvqt\":\"Lejárati dátum\",\"GS+Mus\":\"Exportálás\",\"9xAp/j\":\"Nem sikerült törölni a résztvevőt.\",\"ZpieFv\":\"Nem sikerült törölni a megrendelést.\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Nem sikerült letölteni a számlát. Kérjük, próbálja újra.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Bejelentkezési lista betöltése sikertelen\",\"ZQ15eN\":\"Jegy e-mail újraküldése sikertelen\",\"ejXy+D\":\"Termékek rendezése sikertelen\",\"PLUB/s\":\"Díj\",\"/mfICu\":\"Díjak\",\"LyFC7X\":\"Megrendelések szűrése\",\"cSev+j\":\"Szűrők\",\"CVw2MU\":[\"Szűrők (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Első számla száma\",\"V1EGGU\":\"Keresztnév\",\"kODvZJ\":\"Keresztnév\",\"S+tm06\":\"A keresztnévnek 1 és 50 karakter között kell lennie.\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Először használva\",\"TpqW74\":\"Fix\",\"irpUxR\":\"Fix összeg\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Elfelejtette jelszavát?\",\"2POOFK\":\"Ingyenes\",\"P/OAYJ\":\"Ingyenes termék\",\"vAbVy9\":\"Ingyenes termék, fizetési információ nem szükséges\",\"nLC6tu\":\"Francia\",\"Weq9zb\":\"Általános\",\"DDcvSo\":\"Német\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Vissza a profilhoz\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Naptár\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Bruttó értékesítés\",\"yRg26W\":\"Bruttó értékesítés\",\"R4r4XO\":\"Résztvevők\",\"26pGvx\":\"Van promóciós kódja?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Íme egy példa, hogyan használhatja a komponenst az alkalmazásában.\",\"Y1SSqh\":\"Íme a React komponens, amelyet a widget beágyazásához használhatja az alkalmazásában.\",\"QuhVpV\":[\"Szia \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Rejtett a nyilvánosság elől\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"A rejtett kérdések csak az eseményszervező számára láthatók, az ügyfél számára nem.\",\"vLyv1R\":\"Elrejtés\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Termék elrejtése az értékesítés befejezési dátuma után\",\"06s3w3\":\"Termék elrejtése az értékesítés kezdési dátuma előtt\",\"axVMjA\":\"Termék elrejtése, kivéve, ha a felhasználónak van érvényes promóciós kódja\",\"ySQGHV\":\"Termék elrejtése, ha elfogyott\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Termék elrejtése az ügyfelek elől\",\"Da29Y6\":\"Kérdés elrejtése\",\"fvDQhr\":\"Szint elrejtése a felhasználók elől\",\"lNipG+\":\"Egy termék elrejtése megakadályozza, hogy a felhasználók lássák azt az eseményoldalon.\",\"ZOBwQn\":\"Honlaptervezés\",\"PRuBTd\":\"Honlaptervező\",\"YjVNGZ\":\"Honlap előnézet\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Hány perc áll az ügyfél rendelkezésére a megrendelés befejezéséhez? Legalább 15 percet javaslunk.\",\"ySxKZe\":\"Hányszor használható fel ez a kód?\",\"dZsDbK\":[\"HTML karakterkorlát túllépve: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Elfogadom az <0>általános szerződési feltételeket\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Ha engedélyezve van, a bejelentkezési személyzet bejelentkezettként jelölheti meg a résztvevőket, vagy fizetettként jelölheti meg a megrendelést, és bejelentkezhet a résztvevők. Ha le van tiltva, a fizetetlen megrendelésekhez társított résztvevők nem jelentkezhetnek be.\",\"muXhGi\":\"Ha engedélyezve van, a szervező e-mail értesítést kap, amikor új megrendelés érkezik.\",\"6fLyj/\":\"Ha nem Ön kérte ezt a módosítást, kérjük, azonnal változtassa meg jelszavát.\",\"n/ZDCz\":\"Kép sikeresen törölve\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Kép sikeresen feltöltve\",\"VyUuZb\":\"Kép URL-címe\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inaktív\",\"T0K0yl\":\"Az inaktív felhasználók nem tudnak bejelentkezni.\",\"kO44sp\":\"Adja meg az online esemény csatlakozási adatait. Ezek az adatok megjelennek a megrendelés összefoglaló oldalán és a résztvevő jegy oldalán.\",\"FlQKnG\":\"Adó és díjak belefoglalása az árba\",\"Vi+BiW\":[[\"0\"],\" terméket tartalmaz\"],\"lpm0+y\":\"1 terméket tartalmaz\",\"UiAk5P\":\"Kép beszúrása\",\"OyLdaz\":\"Meghívó újraküldve!\",\"HE6KcK\":\"Meghívó visszavonva!\",\"SQKPvQ\":\"Felhasználó meghívása\",\"bKOYkd\":\"Számla sikeresen letöltve\",\"alD1+n\":\"Számlamegjegyzések\",\"kOtCs2\":\"Számlaszámozás\",\"UZ2GSZ\":\"Számla beállítások\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Tétel\",\"KFXip/\":\"János\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Címke\",\"vXIe7J\":\"Nyelv\",\"2LMsOq\":\"Utolsó 12 hónap\",\"vfe90m\":\"Utolsó 14 nap\",\"aK4uBd\":\"Utolsó 24 óra\",\"uq2BmQ\":\"Utolsó 30 nap\",\"bB6Ram\":\"Utolsó 48 óra\",\"VlnB7s\":\"Utolsó 6 hónap\",\"ct2SYD\":\"Utolsó 7 nap\",\"XgOuA7\":\"Utolsó 90 nap\",\"I3yitW\":\"Utolsó bejelentkezés\",\"1ZaQUH\":\"Vezetéknév\",\"UXBCwc\":\"Vezetéknév\",\"tKCBU0\":\"Utoljára használva\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Hagyja üresen az alapértelmezett „Számla” szó használatához\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Betöltés...\",\"wJijgU\":\"Helyszín\",\"sQia9P\":\"Bejelentkezés\",\"zUDyah\":\"Bejelentkezés...\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Kijelentkezés\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Tegye kötelezővé a számlázási címet a fizetés során\",\"MU3ijv\":\"Tegye kötelezővé ezt a kérdést\",\"wckWOP\":\"Kezelés\",\"onpJrA\":\"Résztvevő kezelése\",\"n4SpU5\":\"Esemény kezelése\",\"WVgSTy\":\"Megrendelés kezelése\",\"1MAvUY\":\"Kezelje az esemény fizetési és számlázási beállításait.\",\"cQrNR3\":\"Profil kezelése\",\"AtXtSw\":\"Kezelje az adókat és díjakat, amelyek alkalmazhatók a termékeire.\",\"ophZVW\":\"Jegyek kezelése\",\"DdHfeW\":\"Kezelje fiókadatait és alapértelmezett beállításait.\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Kezelje felhasználóit és engedélyeiket.\",\"1m+YT2\":\"A kötelező kérdésekre válaszolni kell, mielőtt az ügyfél fizethetne.\",\"Dim4LO\":\"Résztvevő manuális hozzáadása\",\"e4KdjJ\":\"Résztvevő manuális hozzáadása\",\"vFjEnF\":\"Fizetettként jelölés\",\"g9dPPQ\":\"Maximum megrendelésenként\",\"l5OcwO\":\"Üzenet a résztvevőnek\",\"Gv5AMu\":\"Üzenet a résztvevőknek\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Üzenet a vásárlónak\",\"tNZzFb\":\"Üzenet tartalma\",\"lYDV/s\":\"Egyéni résztvevők üzenete\",\"V7DYWd\":\"Üzenet elküldve\",\"t7TeQU\":\"Üzenetek\",\"xFRMlO\":\"Minimum megrendelésenként\",\"QYcUEf\":\"Minimális ár\",\"RDie0n\":\"Egyéb\",\"mYLhkl\":\"Egyéb beállítások\",\"KYveV8\":\"Többsoros szövegdoboz\",\"VD0iA7\":\"Több árlehetőség. Tökéletes a korai madár termékekhez stb.\",\"/bhMdO\":\"Az én csodálatos eseményem leírása...\",\"vX8/tc\":\"Az én csodálatos eseményem címe...\",\"hKtWk2\":\"Profilom\",\"fj5byd\":\"N/A\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Név\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigálás a résztvevőhöz\",\"qqeAJM\":\"Soha\",\"7vhWI8\":\"Új jelszó\",\"1UzENP\":\"Nem\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Nincs megjeleníthető archivált esemény.\",\"q2LEDV\":\"Nincsenek résztvevők ehhez a megrendeléshez.\",\"zlHa5R\":\"Ehhez a megrendeléshez nem adtak hozzá résztvevőket.\",\"Wjz5KP\":\"Nincs megjeleníthető résztvevő\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Nincs kapacitás-hozzárendelés\",\"a/gMx2\":\"Nincsenek bejelentkezési listák\",\"tMFDem\":\"Nincs adat\",\"6Z/F61\":\"Nincs megjeleníthető adat. Kérjük, válasszon dátumtartományt.\",\"fFeCKc\":\"Nincs kedvezmény\",\"HFucK5\":\"Nincs megjeleníthető befejezett esemény.\",\"yAlJXG\":\"Nincs megjeleníthető esemény\",\"GqvPcv\":\"Nincsenek elérhető szűrők\",\"KPWxKD\":\"Nincs megjeleníthető üzenet\",\"J2LkP8\":\"Nincs megjeleníthető megrendelés\",\"RBXXtB\":\"Jelenleg nem állnak rendelkezésre fizetési módok. Kérjük, vegye fel a kapcsolatot az eseményszervezővel segítségért.\",\"ZWEfBE\":\"Fizetés nem szükséges\",\"ZPoHOn\":\"Nincs termék ehhez a résztvevőhöz társítva.\",\"Ya1JhR\":\"Nincsenek termékek ebben a kategóriában.\",\"FTfObB\":\"Még nincsenek termékek\",\"+Y976X\":\"Nincs megjeleníthető promóciós kód\",\"MAavyl\":\"Ehhez a résztvevőhöz nem érkezett válasz.\",\"SnlQeq\":\"Ehhez a megrendeléshez nem tettek fel kérdéseket.\",\"Ev2r9A\":\"Nincs találat\",\"gk5uwN\":\"Nincs találat\",\"RHyZUL\":\"Nincs találat.\",\"RY2eP1\":\"Nem adtak hozzá adókat vagy díjakat.\",\"EdQY6l\":\"Egyik sem\",\"OJx3wK\":\"Nem elérhető\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Jegyzetek\",\"jtrY3S\":\"Még nincs mit mutatni\",\"hFwWnI\":\"Értesítési beállítások\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Szervező értesítése új megrendelésekről\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Engedélyezett napok száma a fizetésre (hagyja üresen a fizetési feltételek kihagyásához a számlákról)\",\"n86jmj\":\"Szám előtag\",\"mwe+2z\":\"Az offline megrendelések nem jelennek meg az esemény statisztikáiban, amíg a megrendelés nem kerül fizetettként megjelölésre.\",\"dWBrJX\":\"Offline fizetés sikertelen. Kérjük, próbálja újra, vagy lépjen kapcsolatba az eseményszervezővel.\",\"fcnqjw\":\"Offline fizetési utasítások\",\"+eZ7dp\":\"Offline fizetések\",\"ojDQlR\":\"Offline fizetési információk\",\"u5oO/W\":\"Offline fizetési beállítások\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"Eladó\",\"Ug4SfW\":\"Miután létrehozott egy eseményt, itt fogja látni.\",\"ZxnK5C\":\"Miután elkezd gyűjteni adatokat, itt fogja látni.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Folyamatban\",\"z+nuVJ\":\"Online esemény\",\"WKHW0N\":\"Online esemény részletei\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Bejelentkezési oldal megnyitása\",\"OdnLE4\":\"Oldalsáv megnyitása\",\"ZZEYpT\":[\"Opció \",[\"i\"]],\"oPknTP\":\"Opcionális további információk, amelyek megjelennek minden számlán (pl. fizetési feltételek, késedelmi díjak, visszatérítési szabályzat).\",\"OrXJBY\":\"Opcionális előtag a számlaszámokhoz (pl. INV-)\",\"0zpgxV\":\"Opciók\",\"BzEFor\":\"vagy\",\"UYUgdb\":\"Megrendelés\",\"mm+eaX\":\"Rendelés szám\",\"B3gPuX\":\"Megrendelés törölve\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Megrendelés dátuma\",\"Tol4BF\":\"Megrendelés részletei\",\"WbImlQ\":\"A megrendelés törölve lett, és a megrendelő értesítést kapott.\",\"nAn4Oe\":\"Megrendelés fizetettként megjelölve\",\"uzEfRz\":\"Megrendelés jegyzetek\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Rendelésszám\",\"acIJ41\":\"Megrendelés állapota\",\"GX6dZv\":\"Megrendelés összefoglaló\",\"tDTq0D\":\"Megrendelés időtúllépés\",\"1h+RBg\":\"Megrendelések\",\"3y+V4p\":\"Szervezet címe\",\"GVcaW6\":\"Szervezet részletei\",\"nfnm9D\":\"Szervezet neve\",\"G5RhpL\":\"Szervező\",\"mYygCM\":\"Szervező kötelező\",\"Pa6G7v\":\"Szervező neve\",\"l894xP\":\"A szervezők csak eseményeket és termékeket kezelhetnek. Nem kezelhetik a felhasználókat, fiókbeállításokat vagy számlázási információkat.\",\"fdjq4c\":\"Kitöltés\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Oldal nem található\",\"QbrUIo\":\"Oldalmegtekintések\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"fizetett\",\"HVW65c\":\"Fizetős termék\",\"ZfxaB4\":\"Részben visszatérítve\",\"8ZsakT\":\"Jelszó\",\"TUJAyx\":\"A jelszónak legalább 8 karakterből kell állnia\",\"vwGkYB\":\"A jelszónak legalább 8 karakter hosszúnak kell lennie.\",\"BLTZ42\":\"Jelszó sikeresen visszaállítva. Kérjük, jelentkezzen be új jelszavával.\",\"f7SUun\":\"A jelszavak nem egyeznek.\",\"aEDp5C\":\"Illessze be ezt oda, ahová a widgetet szeretné.\",\"+23bI/\":\"Patrik\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Fizetés\",\"Lg+ewC\":\"Fizetés és számlázás\",\"DZjk8u\":\"Fizetési és számlázási beállítások\",\"lflimf\":\"Fizetési határidő\",\"JhtZAK\":\"Fizetés sikertelen\",\"JEdsvQ\":\"Fizetési utasítások\",\"bLB3MJ\":\"Fizetési módok\",\"QzmQBG\":\"Fizetési szolgáltató\",\"lsxOPC\":\"Fizetés beérkezett\",\"wJTzyi\":\"Fizetési állapot\",\"xgav5v\":\"Fizetés sikeres!\",\"R29lO5\":\"Fizetési feltételek\",\"/roQKz\":\"Százalék\",\"vPJ1FI\":\"Százalékos összeg\",\"xdA9ud\":\"Helyezze ezt a weboldalának részébe.\",\"blK94r\":\"Kérjük, adjon hozzá legalább egy opciót.\",\"FJ9Yat\":\"Kérjük, ellenőrizze, hogy a megadott információk helyesek-e.\",\"TkQVup\":\"Kérjük, ellenőrizze e-mail címét és jelszavát, majd próbálja újra.\",\"sMiGXD\":\"Kérjük, ellenőrizze, hogy az e-mail címe érvényes-e.\",\"Ajavq0\":\"Kérjük, ellenőrizze e-mail címét az e-mail cím megerősítéséhez.\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Kérjük, folytassa az új lapon.\",\"hcX103\":\"Kérjük, hozzon létre egy terméket.\",\"cdR8d6\":\"Kérjük, hozzon létre egy jegyet.\",\"x2mjl4\":\"Kérjük, adjon meg egy érvényes kép URL-t, amely egy képre mutat.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Kérjük, vegye figyelembe\",\"C63rRe\":\"Kérjük, térjen vissza az esemény oldalára az újrakezdéshez.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Kérjük, válasszon ki legalább egy terméket.\",\"igBrCH\":\"Kérjük, erősítse meg e-mail címét az összes funkció eléréséhez.\",\"/IzmnP\":\"Kérjük, várjon, amíg előkészítjük számláját...\",\"MOERNx\":\"Portugál\",\"qCJyMx\":\"Fizetés utáni üzenet\",\"g2UNkE\":\"Működteti:\",\"Rs7IQv\":\"Fizetés előtti üzenet\",\"rdUucN\":\"Előnézet\",\"a7u1N9\":\"Ár\",\"CmoB9j\":\"Ármegjelenítési mód\",\"BI7D9d\":\"Ár nincs beállítva\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Ár típusa\",\"6RmHKN\":\"Elsődleges szín\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Elsődleges szövegszín\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Összes jegy nyomtatása\",\"DKwDdj\":\"Jegyek nyomtatása\",\"K47k8R\":\"Termék\",\"1JwlHk\":\"Termékkategória\",\"U61sAj\":\"Termékkategória sikeresen frissítve.\",\"1USFWA\":\"Termék sikeresen törölve\",\"4Y2FZT\":\"Termék ár típusa\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Termék értékesítés\",\"U/R4Ng\":\"Terméksor\",\"sJsr1h\":\"Termék típusa\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Termék(ek)\",\"N0qXpE\":\"Termékek\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Eladott termékek\",\"/u4DIx\":\"Eladott termékek\",\"DJQEZc\":\"Termékek sikeresen rendezve\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil sikeresen frissítve\",\"cl5WYc\":[\"Promóciós kód \",[\"promo_code\"],\" alkalmazva\"],\"P5sgAk\":\"Promóciós kód\",\"yKWfjC\":\"Promóciós kód oldal\",\"RVb8Fo\":\"Promóciós kódok\",\"BZ9GWa\":\"A promóciós kódok kedvezmények, előzetes hozzáférés vagy különleges hozzáférés biztosítására használhatók az eseményéhez.\",\"OP094m\":\"Promóciós kódok jelentés\",\"4kyDD5\":\"Adjon meg további kontextust vagy utasításokat ehhez a kérdéshez. Használja ezt a mezőt feltételek\\nés kikötések, irányelvek vagy bármilyen fontos információ hozzáadásához, amit a résztvevőknek tudniuk kell a válasz előtt.\",\"toutGW\":\"QR kód\",\"LkMOWF\":\"Elérhető mennyiség\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Kérdés törölve\",\"avf0gk\":\"Kérdés leírása\",\"oQvMPn\":\"Kérdés címe\",\"enzGAL\":\"Kérdések\",\"ROv2ZT\":\"Kérdések és válaszok\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Rádió opció\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Címzett\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Visszatérítés sikertelen\",\"n10yGu\":\"Megrendelés visszatérítése\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Visszatérítés függőben\",\"xHpVRl\":\"Visszatérítés állapota\",\"/BI0y9\":\"Visszatérítve\",\"fgLNSM\":\"Regisztráció\",\"9+8Vez\":\"Fennmaradó felhasználások\",\"tasfos\":\"eltávolítás\",\"t/YqKh\":\"Eltávolítás\",\"t9yxlZ\":\"Jelentések\",\"prZGMe\":\"Számlázási cím kötelező\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"E-mail megerősítés újraküldése\",\"wIa8Qe\":\"Meghívó újraküldése\",\"VeKsnD\":\"Megrendelés e-mail újraküldése\",\"dFuEhO\":\"Jegy e-mail újraküldése\",\"o6+Y6d\":\"Újraküldés...\",\"OfhWJH\":\"Visszaállítás\",\"RfwZxd\":\"Jelszó visszaállítása\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Esemény visszaállítása\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Vissza az esemény oldalára\",\"8YBH95\":\"Bevétel\",\"PO/sOY\":\"Meghívó visszavonása\",\"GDvlUT\":\"Szerep\",\"ELa4O9\":\"Értékesítés befejezési dátuma\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Értékesítés kezdési dátuma\",\"hBsw5C\":\"Értékesítés befejezve\",\"kpAzPe\":\"Értékesítés kezdete\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Mentés\",\"IUwGEM\":\"Változások mentése\",\"U65fiW\":\"Szervező mentése\",\"UGT5vp\":\"Beállítások mentése\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Keresés résztvevő neve, e-mail címe vagy rendelési száma alapján...\",\"+pr/FY\":\"Keresés eseménynév alapján...\",\"3zRbWw\":\"Keresés név, e-mail vagy rendelési szám alapján...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Keresés név alapján...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Kapacitás-hozzárendelések keresése...\",\"r9M1hc\":\"Bejelentkezési listák keresése...\",\"+0Yy2U\":\"Termékek keresése\",\"YIix5Y\":\"Keresés...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Másodlagos szín\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Másodlagos szövegszín\",\"02ePaq\":[\"Válasszon \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Kategória kiválasztása...\",\"kWI/37\":\"Szervező kiválasztása\",\"ixIx1f\":\"Termék kiválasztása\",\"3oSV95\":\"Terméksor kiválasztása\",\"C4Y1hA\":\"Termékek kiválasztása\",\"hAjDQy\":\"Állapot kiválasztása\",\"QYARw/\":\"Jegy kiválasztása\",\"OMX4tH\":\"Jegyek kiválasztása\",\"DrwwNd\":\"Időszak kiválasztása\",\"O/7I0o\":\"Válasszon...\",\"JlFcis\":\"Küldés\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Üzenet küldése\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Üzenet küldése\",\"D7ZemV\":\"Rendelés visszaigazoló és jegy e-mail küldése\",\"v1rRtW\":\"Teszt küldése\",\"4Ml90q\":\"Keresőoptimalizálás\",\"j1VfcT\":\"Keresőoptimalizálási leírás\",\"/SIY6o\":\"Keresőoptimalizálási kulcsszavak\",\"GfWoKv\":\"Keresőoptimalizálási beállítások\",\"rXngLf\":\"Keresőoptimalizálási cím\",\"/jZOZa\":\"Szolgáltatási díj\",\"Bj/QGQ\":\"Adjon meg minimális árat, és hagyja, hogy a felhasználók többet fizessenek, ha úgy döntenek.\",\"L0pJmz\":\"Állítsa be a számlaszámozás kezdő számát. Ez nem módosítható, amint a számlák elkészültek.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Beállítások\",\"Z8lGw6\":\"Megosztás\",\"B2V3cA\":\"Esemény megosztása\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Elérhető termékmennyiség megjelenítése\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Több mutatása\",\"izwOOD\":\"Adó és díjak külön megjelenítése\",\"1SbbH8\":\"Az ügyfélnek a fizetés után, a rendelésösszegző oldalon jelenik meg.\",\"YfHZv0\":\"Az ügyfélnek a fizetés előtt jelenik meg.\",\"CBBcly\":\"Gyakori címmezőket mutat, beleértve az országot is.\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Egysoros szövegmező\",\"+P0Cn2\":\"Lépés kihagyása\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Elfogyott\",\"Mi1rVn\":\"Elfogyott\",\"nwtY4N\":\"Valami hiba történt\",\"GRChTw\":\"Hiba történt az adó vagy díj törlésekor\",\"YHFrbe\":\"Valami hiba történt! Kérjük, próbálja újra.\",\"kf83Ld\":\"Valami hiba történt.\",\"fWsBTs\":\"Valami hiba történt. Kérjük, próbálja újra.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Sajnáljuk, ez a promóciós kód nem felismerhető.\",\"65A04M\":\"Spanyol\",\"mFuBqb\":\"Standard termék fix árral\",\"D3iCkb\":\"Kezdés dátuma\",\"/2by1f\":\"Állam vagy régió\",\"uAQUqI\":\"Állapot\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"A Stripe fizetések nincsenek engedélyezve ehhez az eseményhez.\",\"UJmAAK\":\"Tárgy\",\"X2rrlw\":\"Részösszeg\",\"zzDlyQ\":\"Sikeres\",\"b0HJ45\":[\"Sikeres! \",[\"0\"],\" hamarosan e-mailt kap.\"],\"BJIEiF\":[\"Sikeresen \",[\"0\"],\" résztvevő\"],\"OtgNFx\":\"E-mail cím sikeresen megerősítve\",\"IKwyaF\":\"E-mail cím módosítás sikeresen megerősítve\",\"zLmvhE\":\"Résztvevő sikeresen létrehozva\",\"gP22tw\":\"Termék sikeresen létrehozva\",\"9mZEgt\":\"Promóciós kód sikeresen létrehozva\",\"aIA9C4\":\"Kérdés sikeresen létrehozva\",\"J3RJSZ\":\"Résztvevő sikeresen frissítve\",\"3suLF0\":\"Kapacitás-hozzárendelés sikeresen frissítve\",\"Z+rnth\":\"Bejelentkezési lista sikeresen frissítve\",\"vzJenu\":\"E-mail beállítások sikeresen frissítve\",\"7kOMfV\":\"Esemény sikeresen frissítve\",\"G0KW+e\":\"Honlapterv sikeresen frissítve\",\"k9m6/E\":\"Honlapbeállítások sikeresen frissítve\",\"y/NR6s\":\"Helyszín sikeresen frissítve\",\"73nxDO\":\"Egyéb beállítások sikeresen frissítve\",\"4H80qv\":\"Megrendelés sikeresen frissítve\",\"6xCBVN\":\"Fizetési és számlázási beállítások sikeresen frissítve\",\"1Ycaad\":\"Termék sikeresen frissítve\",\"70dYC8\":\"Promóciós kód sikeresen frissítve\",\"F+pJnL\":\"Keresőoptimalizálási beállítások sikeresen frissítve\",\"DXZRk5\":\"100-as lakosztály\",\"GNcfRk\":\"Támogatási e-mail\",\"uRfugr\":\"Póló\",\"JpohL9\":\"Adó\",\"geUFpZ\":\"Adó és díjak\",\"dFHcIn\":\"Adó adatok\",\"wQzCPX\":\"Adózási információk, amelyek minden számla alján megjelennek (pl. adószám, adóazonosító szám).\",\"0RXCDo\":\"Adó vagy díj sikeresen törölve\",\"ZowkxF\":\"Adók\",\"qu6/03\":\"Adók és díjak\",\"gypigA\":\"Ez a promóciós kód érvénytelen.\",\"5ShqeM\":\"A keresett bejelentkezési lista nem létezik.\",\"QXlz+n\":\"Az események alapértelmezett pénzneme.\",\"mnafgQ\":\"Az események alapértelmezett időzónája.\",\"o7s5FA\":\"Az a nyelv, amelyen a résztvevő e-maileket kap.\",\"NlfnUd\":\"A link, amire kattintott, érvénytelen.\",\"HsFnrk\":[\"A termékek maximális száma \",[\"0\"],\" számára \",[\"1\"]],\"TSAiPM\":\"A keresett oldal nem létezik.\",\"MSmKHn\":\"Az ügyfélnek megjelenő ár tartalmazza az adókat és díjakat.\",\"6zQOg1\":\"Az ügyfélnek megjelenő ár nem tartalmazza az adókat és díjakat. Külön lesznek feltüntetve.\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Az esemény címe, amely megjelenik a keresőmotorok találatai között és a közösségi médiában való megosztáskor. Alapértelmezés szerint az esemény címe kerül felhasználásra.\",\"wDx3FF\":\"Nincsenek elérhető termékek ehhez az eseményhez.\",\"pNgdBv\":\"Nincsenek elérhető termékek ebben a kategóriában.\",\"rMcHYt\":\"Függőben lévő visszatérítés van. Kérjük, várja meg a befejezését, mielőtt újabb visszatérítést kérne.\",\"F89D36\":\"Hiba történt a megrendelés fizetettként való megjelölésekor.\",\"68Axnm\":\"Hiba történt a kérés feldolgozása során. Kérjük, próbálja újra.\",\"mVKOW6\":\"Hiba történt az üzenet küldésekor.\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Ennek a résztvevőnek van egy kifizetetlen megrendelése.\",\"mf3FrP\":\"Ez a kategória még nem tartalmaz termékeket.\",\"8QH2Il\":\"Ez a kategória el van rejtve a nyilvánosság elől.\",\"xxv3BZ\":\"Ez a bejelentkezési lista lejárt.\",\"Sa7w7S\":\"Ez a bejelentkezési lista lejárt, és már nem használható bejelentkezéshez.\",\"Uicx2U\":\"Ez a bejelentkezési lista aktív.\",\"1k0Mp4\":\"Ez a bejelentkezési lista még nem aktív.\",\"K6fmBI\":\"Ez a bejelentkezési lista még nem aktív, és nem használható bejelentkezéshez.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Ez az információ megjelenik a fizetési oldalon, a megrendelés összefoglaló oldalán és a megrendelés visszaigazoló e-mailben.\",\"XAHqAg\":\"Ez egy általános termék, mint egy póló vagy egy bögre. Nem kerül jegy kiállításra.\",\"CNk/ro\":\"Ez egy online esemény.\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Ez az üzenet szerepelni fog az eseményről küldött összes e-mail láblécében.\",\"55i7Fa\":\"Ez az üzenet csak akkor jelenik meg, ha a megrendelés sikeresen befejeződött. A fizetésre váró megrendelések nem jelenítik meg ezt az üzenetet.\",\"RjwlZt\":\"Ez a megrendelés már ki lett fizetve.\",\"5K8REg\":\"Ez a megrendelés már visszatérítésre került.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Ez a megrendelés törölve lett.\",\"Q0zd4P\":\"Ez a megrendelés lejárt. Kérjük, kezdje újra.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Ez a megrendelés kész.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Ez a megrendelési oldal már nem elérhető.\",\"i0TtkR\":\"Ez felülírja az összes láthatósági beállítást, és elrejti a terméket minden ügyfél elől.\",\"cRRc+F\":\"Ez a termék nem törölhető, mert megrendeléshez van társítva. Helyette elrejtheti.\",\"3Kzsk7\":\"Ez a termék egy jegy. A vásárlók jegyet kapnak a vásárláskor.\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Ez a jelszó-visszaállító link érvénytelen vagy lejárt.\",\"IV9xTT\":\"Ez a felhasználó nem aktív, mivel nem fogadta el a meghívóját.\",\"5AnPaO\":\"jegy\",\"kjAL4v\":\"Jegy\",\"dtGC3q\":\"Jegy e-mailt újraküldték a résztvevőnek.\",\"54q0zp\":\"Jegyek ehhez:\",\"xN9AhL\":[\"Szint \",[\"0\"]],\"jZj9y9\":\"Többszintű termék\",\"8wITQA\":\"A többszintű termékek lehetővé teszik, hogy ugyanahhoz a termékhez több árlehetőséget kínáljon. Ez tökéletes a korai madár termékekhez, vagy különböző árlehetőségek kínálásához különböző embercsoportok számára.\",\"nn3mSR\":\"Hátralévő idő:\",\"s/0RpH\":\"Felhasználások száma\",\"y55eMd\":\"Felhasználások száma\",\"40Gx0U\":\"Időzóna\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Eszközök\",\"72c5Qo\":\"Összesen\",\"YXx+fG\":\"Összesen kedvezmények előtt\",\"NRWNfv\":\"Összes kedvezmény összege\",\"BxsfMK\":\"Összes díj\",\"2bR+8v\":\"Összes bruttó értékesítés\",\"mpB/d9\":\"Teljes megrendelési összeg\",\"m3FM1g\":\"Összes visszatérített\",\"jEbkcB\":\"Összes visszatérített\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Összes adó\",\"+zy2Nq\":\"Típus\",\"FMdMfZ\":\"Nem sikerült bejelentkezni a résztvevőnek.\",\"bPWBLL\":\"Nem sikerült kijelentkezni a résztvevőnek.\",\"9+P7zk\":\"Nem sikerült létrehozni a terméket. Kérjük, ellenőrizze adatait.\",\"WLxtFC\":\"Nem sikerült létrehozni a terméket. Kérjük, ellenőrizze adatait.\",\"/cSMqv\":\"Nem sikerült kérdést létrehozni. Kérjük, ellenőrizze adatait.\",\"MH/lj8\":\"Nem sikerült frissíteni a kérdést. Kérjük, ellenőrizze adatait.\",\"nnfSdK\":\"Egyedi ügyfelek\",\"Mqy/Zy\":\"Egyesült Államok\",\"NIuIk1\":\"Korlátlan\",\"/p9Fhq\":\"Korlátlanul elérhető\",\"E0q9qH\":\"Korlátlan felhasználás engedélyezett\",\"h10Wm5\":\"Kifizetetlen megrendelés\",\"ia8YsC\":\"Közelgő\",\"TlEeFv\":\"Közelgő események\",\"L/gNNk\":[\"Frissítés \",[\"0\"]],\"+qqX74\":\"Eseménynév, leírás és dátumok frissítése\",\"vXPSuB\":\"Profil frissítése\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL a vágólapra másolva\",\"e5lF64\":\"Használati példa\",\"fiV0xj\":\"Használati limit\",\"sGEOe4\":\"Használja a borítókép elmosódott változatát háttérként.\",\"OadMRm\":\"Borítókép használata\",\"7PzzBU\":\"Felhasználó\",\"yDOdwQ\":\"Felhasználókezelés\",\"Sxm8rQ\":\"Felhasználók\",\"VEsDvU\":\"A felhasználók módosíthatják e-mail címüket a <0>Profilbeállítások menüpontban.\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"ÁFA\",\"E/9LUk\":\"Helyszín neve\",\"jpctdh\":\"Megtekintés\",\"Pte1Hv\":\"Résztvevő adatainak megtekintése\",\"/5PEQz\":\"Eseményoldal megtekintése\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Megtekintés a Google Térképen\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP bejelentkezési lista\",\"tF+VVr\":\"VIP jegy\",\"2q/Q7x\":\"Láthatóság\",\"vmOFL/\":\"Nem sikerült feldolgozni a fizetését. Kérjük, próbálja újra, vagy lépjen kapcsolatba a támogatással.\",\"45Srzt\":\"Nem sikerült törölni a kategóriát. Kérjük, próbálja újra.\",\"/DNy62\":[\"Nem találtunk jegyeket, amelyek megfelelnek a következőnek: \",[\"0\"]],\"1E0vyy\":\"Nem sikerült betölteni az adatokat. Kérjük, próbálja újra.\",\"NmpGKr\":\"Nem sikerült átrendezni a kategóriákat. Kérjük, próbálja újra.\",\"BJtMTd\":\"Javasolt méretek: 1950px x 650px, 3:1 arány, maximális fájlméret: 5MB.\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Nem sikerült megerősíteni a fizetését. Kérjük, próbálja újra, vagy lépjen kapcsolatba a támogatással.\",\"Gspam9\":\"Megrendelését feldolgozzuk. Kérjük, várjon...\",\"LuY52w\":\"Üdv a fedélzeten! Kérjük, jelentkezzen be a folytatáshoz.\",\"dVxpp5\":[\"Üdv újra, \",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Mik azok a többszintű termékek?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Mi az a kategória?\",\"gxeWAU\":\"Mely termékekre vonatkozik ez a kód?\",\"hFHnxR\":\"Mely termékekre vonatkozik ez a kód? (Alapértelmezés szerint mindenre vonatkozik)\",\"AeejQi\":\"Mely termékekre kell vonatkoznia ennek a kapacitásnak?\",\"Rb0XUE\":\"Mikor érkezik?\",\"5N4wLD\":\"Milyen típusú kérdés ez?\",\"gyLUYU\":\"Ha engedélyezve van, számlák készülnek a jegyrendelésekről. A számlákat a rendelés visszaigazoló e-maillel együtt küldjük el. A résztvevők a rendelés visszaigazoló oldaláról is letölthetik számláikat.\",\"D3opg4\":\"Ha az offline fizetések engedélyezve vannak, a felhasználók befejezhetik megrendeléseiket és megkaphatják jegyeiket. Jegyükön egyértelműen fel lesz tüntetve, hogy a megrendelés nincs kifizetve, és a bejelentkezési eszköz értesíti a bejelentkezési személyzetet, ha egy megrendelés fizetést igényel.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Mely jegyeket kell ehhez a bejelentkezési listához társítani?\",\"S+OdxP\":\"Ki szervezi ezt az eseményt?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Kinek kell feltenni ezt a kérdést?\",\"VxFvXQ\":\"Widget beágyazása\",\"v1P7Gm\":\"Widget beállítások\",\"b4itZn\":\"Dolgozik\",\"hqmXmc\":\"Dolgozik...\",\"+G/XiQ\":\"Év elejétől napjainkig\",\"l75CjT\":\"Igen\",\"QcwyCh\":\"Igen, távolítsa el őket.\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"E-mail címét <0>\",[\"0\"],\" címre módosítja.\"],\"gGhBmF\":\"Offline állapotban van.\",\"sdB7+6\":\"Létrehozhat egy promóciós kódot, amely ezt a terméket célozza meg a\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Nem módosíthatja a terméktípust, mivel ehhez a termékhez résztvevők vannak társítva.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Nem jelentkezhet be kifizetetlen megrendeléssel rendelkező résztvevőket. Ez a beállítás az eseménybeállításokban módosítható.\",\"c9Evkd\":\"Nem törölheti az utolsó kategóriát.\",\"6uwAvx\":\"Nem törölheti ezt az árszintet, mert már eladtak termékeket ehhez a szinthez. Helyette elrejtheti.\",\"tFbRKJ\":\"Nem szerkesztheti a fióktulajdonos szerepét vagy állapotát.\",\"fHfiEo\":\"Nem téríthet vissza manuálisan létrehozott megrendelést.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Több fiókhoz is hozzáfér. Kérjük, válasszon egyet a folytatáshoz.\",\"Z6q0Vl\":\"Ezt a meghívót már elfogadta. Kérjük, jelentkezzen be a folytatáshoz.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Nincs függőben lévő e-mail cím módosítás.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Kifutott az időből a megrendelés befejezéséhez.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"El kell ismernie, hogy ez az e-mail nem promóciós.\",\"3ZI8IL\":\"El kell fogadnia a feltételeket.\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Jegy létrehozása kötelező, mielőtt manuálisan hozzáadhatna egy résztvevőt.\",\"jE4Z8R\":\"Legalább egy árszintre szüksége van.\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Manuálisan kell fizetettként megjelölnie egy megrendelést. Ez a megrendelés kezelése oldalon tehető meg.\",\"L/+xOk\":\"Szüksége lesz egy jegyre, mielőtt létrehozhat egy bejelentkezési listát.\",\"Djl45M\":\"Szüksége lesz egy termékre, mielőtt létrehozhat egy kapacitás-hozzárendelést.\",\"y3qNri\":\"Legalább egy termékre szüksége lesz a kezdéshez. Ingyenes, fizetős, vagy hagyja, hogy a felhasználó döntse el, mennyit fizet.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Fióknevét az eseményoldalakon és az e-mailekben használják.\",\"veessc\":\"Résztvevői itt jelennek meg, miután regisztráltak az eseményére. Manuálisan is hozzáadhat résztvevőket.\",\"Eh5Wrd\":\"Az Ön csodálatos weboldala 🎉\",\"lkMK2r\":\"Az Ön adatai\",\"3ENYTQ\":[\"E-mail cím módosítási kérelme a következőre: <0>\",[\"0\"],\" függőben. Kérjük, ellenőrizze e-mail címét a megerősítéshez.\"],\"yZfBoy\":\"Üzenetét elküldtük.\",\"KSQ8An\":\"Az Ön megrendelése\",\"Jwiilf\":\"Az Ön megrendelése törölve lett.\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Megrendelései itt fognak megjelenni, amint beérkeznek.\",\"9TO8nT\":\"Az Ön jelszava\",\"P8hBau\":\"Fizetése feldolgozás alatt áll.\",\"UdY1lL\":\"Fizetése sikertelen volt, kérjük, próbálja újra.\",\"fzuM26\":\"Fizetése sikertelen volt. Kérjük, próbálja újra.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Visszatérítése feldolgozás alatt áll.\",\"IFHV2p\":\"Jegyéhez:\",\"x1PPdr\":\"Irányítószám / Postai irányítószám\",\"BM/KQm\":\"Irányítószám vagy postai irányítószám\",\"+LtVBt\":\"Irányítószám vagy postai irányítószám\",\"25QDJ1\":\"- Kattintson a közzétételhez\",\"WOyJmc\":\"- Kattintson a visszavonáshoz\",\"ncwQad\":\"(üres)\",\"B/gRsg\":\"(nincs)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" már bejelentkezett\"],\"3beCx0\":[[\"0\"],\" <0>beléptetve\"],\"S4PqS9\":[[\"0\"],\" aktív webhook\"],\"6MIiOI\":[[\"0\"],\" maradt\"],\"COnw8D\":[[\"0\"],\" logó\"],\"xG9N0H\":[[\"0\"],\" / \",[\"1\"],\" hely foglalt.\"],\"B7pZfX\":[[\"0\"],\" szervező\"],\"rZTf6P\":[[\"0\"],\" hely maradt\"],\"/HkCs4\":[[\"0\"],\" jegy\"],\"dtXkP9\":[[\"0\"],\" közelgő időpont\"],\"30bTiU\":[[\"activeCount\"],\" engedélyezve\"],\"jTs4am\":[[\"appName\"],\" logó\"],\"gbJOk9\":[[\"attendeeCount\"],\" résztvevő van regisztrálva erre az alkalomra.\"],\"TjbIUI\":[[\"availableCount\"],\" / \",[\"totalCount\"],\" elérhető\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" beléptetve\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" órája\"],\"NRSLBe\":[[\"diffMin\"],\" perce\"],\"iYfwJE\":[[\"diffSec\"],\" másodperce\"],\"OJnhhX\":[[\"eventCount\"],\" esemény\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" résztvevő van regisztrálva az érintett alkalmakra.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" jegytípus\"],\"0cLzoF\":[[\"totalOccurrences\"],\" időpont\"],\"AEGc4t\":[[\"totalOccurrences\"],\" alkalom \",[\"0\"],\" napon (\",[\"1\",\"plural\",{\"one\":[\"#\",\" alkalom\"],\"other\":[\"#\",\" alkalom\"]}],\" naponta)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Adó/Díjak\",\"B1St2O\":\"<0>A bejelentkezési listák segítenek az esemény belépésének kezelésében nap, terület vagy jegytípus szerint. Összekapcsolhatja a jegyeket konkrét listákkal, például VIP zónákkal vagy 1. napi bérletek, és megoszthat egy biztonságos bejelentkezési linket a személyzettel. Nincs szükség fiókra. A bejelentkezés mobil, asztali vagy táblagépen működik, eszköz kamerával vagy HID USB szkennerrel. \",\"v9VSIS\":\"<0>Állítson be egyetlen összesített látogatói limitet, amely egyszerre több jegytípusra vonatkozik.<1>Például, ha összekapcsol egy <2>Napi bérlet és egy <3>Teljes hétvége jegyet, mindkettő ugyanabból a helykeretből merít. Amint eléri a limitet, az összes kapcsolt jegy automatikusan leáll az értékesítéssel.\",\"vKXqag\":\"<0>Ez az alapértelmezett mennyiség minden időpontra. Az egyes időpontok kapacitása tovább korlátozhatja az elérhetőséget az <1>Időpont-ütemezés oldalon.\",\"ZnVt5v\":\"<0>A webhookok azonnal értesítik a külső szolgáltatásokat, amikor események történnek, például új résztvevő hozzáadása a CRM-hez vagy levelezési listához regisztrációkor, biztosítva a zökkenőmentes automatizálást.<1>Használjon harmadik féltől származó szolgáltatásokat, mint a <2>Zapier, <3>IFTTT vagy <4>Make egyedi munkafolyamatok létrehozásához és feladatok automatizálásához.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" az aktuális árfolyamon\"],\"M2DyLc\":\"1 aktív webhook\",\"6hIk/x\":\"1 résztvevő van regisztrálva az érintett alkalmakra.\",\"qOyE2U\":\"1 résztvevő van regisztrálva erre az alkalomra.\",\"943BwI\":\"1 nappal a befejezési dátum után\",\"yj3N+g\":\"1 nappal a kezdési dátum után\",\"Z3etYG\":\"1 nappal az esemény előtt\",\"szSnlj\":\"1 órával az esemény előtt\",\"yTsaLw\":\"1 jegy\",\"nz96Ue\":\"1 jegytípus\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 héttel az esemény előtt\",\"09VFYl\":\"12 jegy felajánlva\",\"HR/cvw\":\"Minta utca 123\",\"dgKxZ5\":\"135+ pénznem és 40+ fizetési mód\",\"kMU5aM\":\"Lemondási értesítés elküldve ide:\",\"o++0qa\":\"időtartam-változás\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Új ellenőrző kód került elküldésre az e-mail címére.\",\"sr2Je0\":\"kezdési/befejezési idő eltolás\",\"/z/bH1\":\"A szervező rövid leírása, amely megjelenik a felhasználók számára.\",\"aS0jtz\":\"Elhagyott\",\"uyJsf6\":\"Rólunk\",\"JvuLls\":\"Díj átvállalása\",\"lk74+I\":\"Díj átvállalása\",\"1uJlG9\":\"Kiemelő szín\",\"g3UF2V\":\"Elfogadom\",\"K5+3xg\":\"Meghívó elfogadása\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Fiók · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Fiók információk\",\"EHNORh\":\"Fiók nem található\",\"bPwFdf\":\"Fiókok\",\"AhwTa1\":\"Beavatkozás szükséges: ÁFA információ szükséges\",\"APyAR/\":\"Aktív események\",\"kCl6ja\":\"Aktív fizetési módok\",\"XJOV1Y\":\"Tevékenység\",\"0YEoxS\":\"Időpont hozzáadása\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Egyetlen időpont hozzáadása\",\"CjvTPJ\":\"További időpont hozzáadása\",\"0XCduh\":\"Adjon meg legalább egy időpontot\",\"/chGpa\":\"Add meg az online esemény csatlakozási adatait.\",\"UWWRyd\":\"Egyedi kérdések hozzáadása további információk gyűjtéséhez a pénztárnál\",\"Z/dcxc\":\"Időpont hozzáadása\",\"Q219NT\":\"Időpontok hozzáadása\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Helyszín hozzáadása\",\"VX6WUv\":\"Helyszín hozzáadása\",\"GCQlV2\":\"Adjon meg több időpontot, ha naponta több alkalmat tart.\",\"7JF9w9\":\"Kérdés hozzáadása\",\"NLbIb6\":\"Mégis hozzáadom ezt a résztvevőt (kapacitás felülírása)\",\"6PNlRV\":\"Adja hozzá ezt az eseményt a naptárához\",\"BGD9Yt\":\"Jegyek hozzáadása\",\"uIv4Op\":\"Adjon hozzá követőpixeleket a nyilvános eseményoldalaihoz és a szervezői főoldalhoz. Aktív követés esetén a látogatók süti-beleegyezési sávot fognak látni.\",\"QN2F+7\":\"Webhook hozzáadása\",\"NsWqSP\":\"Adja hozzá közösségi média hivatkozásait és weboldalának URL-jét. Ezek megjelennek a nyilvános szervezői oldalán.\",\"bVjDs9\":\"További díjak\",\"MKqSg4\":\"Rendszergazdai hozzáférés szükséges\",\"0Zypnp\":\"Admin vezérlőpult\",\"YAV57v\":\"Partner\",\"I+utEq\":\"A partnerkód nem módosítható.\",\"/jHBj5\":\"Partner sikeresen létrehozva\",\"uCFbG2\":\"Partner sikeresen törölve\",\"ld8I+f\":\"Partnerprogram\",\"a41PKA\":\"Partneri értékesítések nyomon követése\",\"mJJh2s\":\"A partneri értékesítések nem kerülnek nyomon követésre. Ez inaktiválja a partnert.\",\"jabmnm\":\"Partner sikeresen frissítve\",\"CPXP5Z\":\"Partnerek\",\"9Wh+ug\":\"Partnerek exportálva\",\"3cqmut\":\"A partnerek segítenek nyomon követni a partnerek és befolyásolók által generált értékesítéseket. Hozzon létre partnerkódokat és ossza meg őket a teljesítmény nyomon követéséhez.\",\"z7GAMJ\":\"összes\",\"N40H+G\":\"Összes\",\"7rLTkE\":\"Összes archivált esemény\",\"gKq1fa\":\"Minden résztvevő\",\"63gRoO\":\"A kiválasztott alkalmak összes résztvevője\",\"uWxIoH\":\"Ennek az alkalomnak az összes résztvevője\",\"pMLul+\":\"Minden pénznem\",\"sgUdRZ\":\"Összes időpont\",\"e4q4uO\":\"Összes időpont\",\"ZS/D7f\":\"Összes befejezett esemény\",\"QsYjci\":\"Összes esemény\",\"31KB8w\":\"Minden sikertelen feladat törölve\",\"D2g7C7\":\"Minden feladat újrapróbálásra sorba állítva\",\"B4RFBk\":\"Az összes megfelelő időpont\",\"F1/VgK\":\"Összes alkalom\",\"OpWjMq\":\"Összes alkalom\",\"Sxm1lO\":\"Minden állapot\",\"dr7CWq\":\"Összes közelgő esemény\",\"GpT6Uf\":\"Engedélyezi a résztvevőknek, hogy frissítsék jegyinformációikat (név, e-mail) a rendelés visszaigazolásával küldött biztonságos linken keresztül.\",\"F3mW5G\":\"Lehetővé teszi az ügyfelek számára, hogy feliratkozzanak a várólistára, ha ez a termék elfogyott\",\"c4uJfc\":\"Majdnem kész! Csak a fizetés feldolgozására várunk. Ez csak néhány másodpercet vesz igénybe.\",\"ocS8eq\":[\"Már van fiókja? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Már bent\",\"/H326L\":\"Már visszatérítve\",\"USEpOK\":\"Már használod a Stripe-ot egy másik szervezőnél? Használd újra azt a kapcsolatot.\",\"RtxQTF\":\"A megrendelés lemondása is\",\"jkNgQR\":\"A megrendelés visszatérítése is\",\"xYqsHg\":\"Mindig elérhető\",\"Wvrz79\":\"Fizetett összeg\",\"Zkymb9\":\"E-mail cím, amelyet ehhez a partnerhez társít. A partner nem kap értesítést.\",\"vRznIT\":\"Hiba történt az exportálási állapot ellenőrzésekor.\",\"eusccx\":\"Opcionális üzenet a kiemelt termék megjelenítéséhez, pl. \\\"Gyorsan fogy 🔥\\\" vagy \\\"Legjobb ár\\\"\",\"5GJuNp\":[\"és még \",[\"0\"],\"...\"],\"QNrkms\":\"Válasz sikeresen frissítve.\",\"+qygei\":\"Válaszok\",\"GK7Lnt\":\"Fizetésnél adott válaszok (pl. menü választás)\",\"lE8PgT\":\"A manuálisan testreszabott időpontok megmaradnak.\",\"vP3Nzg\":[\"Az ezen az oldalon jelenleg betöltött, \",[\"0\"],\" nem törölt időpontra vonatkozik.\"],\"kkVyZZ\":\"Mindenkire vonatkozik, aki a linket bejelentkezés nélkül nyitja meg. A bejelentkezett csapattagok mindig mindent látnak.\",\"je4muG\":[\"Az esemény minden \",[\"0\"],\", nem törölt időpontjára vonatkozik — beleértve a jelenleg be nem töltött időpontokat is.\"],\"YIIQtt\":\"Változások alkalmazása\",\"NzWX1Y\":\"Alkalmazás erre\",\"Ps5oDT\":\"Alkalmazás az összes jegyre\",\"261RBr\":\"Üzenet jóváhagyása\",\"naCW6Z\":\"Április\",\"B495Gs\":\"Archiválás\",\"5sNliy\":\"Esemény archiválása\",\"BrwnrJ\":\"Szervező archiválása\",\"E5eghW\":\"Archiválja ezt az eseményt, hogy elrejtse a nyilvánosság elől. Később visszaállíthatja.\",\"eqFkeI\":\"Archiválja ezt a szervezőt. Ez a szervező összes eseményét is archiválja.\",\"BzcxWv\":\"Archivált szervezők\",\"9cQBd6\":\"Biztosan archiválja ezt az eseményt? Nem lesz többé látható a nyilvánosság számára.\",\"Trnl3E\":\"Biztosan archiválja ezt a szervezőt? Ez a szervező összes eseményét is archiválja.\",\"wOvn+e\":[\"Biztosan le szeretne mondani \",[\"count\"],\" időpontot? Az érintett résztvevőket e-mailben értesítjük.\"],\"GTxE0U\":\"Biztosan le szeretné mondani ezt az időpontot? Az érintett résztvevőket e-mailben értesítjük.\",\"VkSk/i\":\"Biztosan törölni szeretné ezt az ütemezett üzenetet?\",\"0aVEBY\":\"Biztosan törölni szeretné az összes sikertelen feladatot?\",\"LchiNd\":\"Biztosan törölni szeretné ezt a partnert? Ez a művelet nem vonható vissza.\",\"vPeW/6\":\"Biztosan törölni szeretné ezt a konfigurációt? Ez hatással lehet az azt használó fiókokra.\",\"h42Hc/\":\"Biztosan törölni szeretné ezt az időpontot? Ez a művelet nem vonható vissza.\",\"JmVITJ\":\"Biztosan törli ezt a sablont? Ez a művelet nem vonható vissza, és az e-mailek az alapértelmezett sablont fogják használni.\",\"aLS+A6\":\"Biztosan törli ezt a sablont? Ez a művelet nem vonható vissza, és az e-mailek a szervező vagy az alapértelmezett sablont fogják használni.\",\"5H3Z78\":\"Biztosan törölni szeretné ezt a webhookot?\",\"147G4h\":\"Biztos, hogy el akarsz menni?\",\"VDWChT\":\"Biztosan piszkozatba szeretné tenni ezt a szervezőt? Ezzel a szervezői oldal láthatatlanná válik a nyilvánosság számára.\",\"pWtQJM\":\"Biztosan nyilvánossá szeretné tenni ezt a szervezőt? Ezzel a szervezői oldal láthatóvá válik a nyilvánosság számára.\",\"EOqL/A\":\"Biztosan szeretne helyet ajánlani ennek a személynek? E-mail értesítést fog kapni.\",\"yAXqWW\":\"Biztosan véglegesen törölni szeretné ezt az időpontot? Ez nem vonható vissza.\",\"WFHOlF\":\"Biztosan közzé szeretné tenni ezt az eseményt? A közzététel után láthatóvá válik a nyilvánosság számára.\",\"4TNVdy\":\"Biztosan közzé szeretné tenni ezt a szervezői profilt? A közzététel után láthatóvá válik a nyilvánosság számára.\",\"8x0pUg\":\"Biztosan el szeretné távolítani ezt a bejegyzést a várólistáról?\",\"cDtoWq\":[\"Biztosan újra szeretné küldeni a rendelés visszaigazolását a következő címre: \",[\"0\"],\"?\"],\"xeIaKw\":[\"Biztosan újra szeretné küldeni a jegyet a következő címre: \",[\"0\"],\"?\"],\"BjbocR\":\"Biztosan visszaállítja ezt az eseményt?\",\"7MjfcR\":\"Biztosan visszaállítja ezt a szervezőt?\",\"ExDt3P\":\"Biztosan visszavonja ennek az eseménynek a közzétételét? Ezzel már nem lesz látható a nyilvánosság számára.\",\"5Qmxo/\":\"Biztosan visszavonja ennek a szervezői profilnak a közzétételét? Ezzel már nem lesz látható a nyilvánosság számára.\",\"Uqefyd\":\"ÁFA regisztrált az EU-ban?\",\"+QARA4\":\"Művészet\",\"tLf3yJ\":\"Mivel vállalkozása Írországban található, az ír 23%-os ÁFA automatikusan vonatkozik minden platformdíjra.\",\"tMeVa/\":\"Név és e-mail bekérése minden megvásárolt jegyhez\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Csomag hozzárendelése\",\"xdiER7\":\"Hozzárendelt szint\",\"F2rX0R\":\"Legalább egy eseménytípust ki kell választani.\",\"BCmibk\":\"Próbálkozások\",\"6PecK3\":\"Részvétel és bejelentkezési arányok minden eseményen\",\"K2tp3v\":\"résztvevő\",\"AJ4rvK\":\"Résztvevő törölve\",\"qvylEK\":\"Résztvevő létrehozva\",\"Aspq3b\":\"Résztvevő adatok gyűjtése\",\"fpb0rX\":\"Résztvevő adatok másolva a rendelésből\",\"0R3Y+9\":\"Résztvevő e-mail\",\"94aQMU\":\"Résztvevő információk\",\"KkrBiR\":\"Résztvevői információk gyűjtése\",\"av+gjP\":\"Résztvevő neve\",\"sjPjOg\":\"Résztvevő megjegyzések\",\"cosfD8\":\"Résztvevő állapota\",\"D2qlBU\":\"Résztvevő frissítve\",\"22BOve\":\"A résztvevő sikeresen frissítve\",\"x8Vnvf\":\"A résztvevő jegye nincs ebben a listában\",\"/Ywywr\":\"résztvevők\",\"zLRobu\":\"résztvevő beléptetve\",\"k3Tngl\":\"Résztvevők exportálva\",\"UoIRW8\":\"Regisztrált résztvevők\",\"5UbY+B\":\"Résztvevők meghatározott jeggyel\",\"4HVzhV\":\"Résztvevők:\",\"HVkhy2\":\"Hozzárendelési elemzés\",\"dMMjeD\":\"Hozzárendelési bontás\",\"1oPDuj\":\"Hozzárendelési érték\",\"DBHTm/\":\"Augusztus\",\"JgREph\":\"Az automatikus ajánlat engedélyezve van\",\"V7Tejz\":\"Várólista automatikus feldolgozása\",\"PZ7FTW\":\"Automatikusan észlelve a háttérszín alapján, de felülbírálható\",\"zlnTuI\":\"Automatikusan jegyet ajánl fel a következő személynek, amikor felszabadul a kapacitás. Ha ki van kapcsolva, a várólistát manuálisan kezelheti a Várólista oldalon.\",\"csDS2L\":\"Elérhető\",\"clF06r\":\"Visszatérítésre elérhető\",\"NB5+UG\":\"Elérhető tokenek\",\"L+wGOG\":\"Függőben\",\"qcw2OD\":\"Fizetés vár\",\"kNmmvE\":\"Awesome Events Kft.\",\"iH8pgl\":\"Vissza\",\"TeSaQO\":\"Vissza a fiókokhoz\",\"X7Q/iM\":\"Vissza a naptárhoz\",\"kYqM1A\":\"Vissza az eseményhez\",\"s5QRF3\":\"Vissza az üzenetekhez\",\"td/bh+\":\"Vissza a jelentésekhez\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Alapár\",\"hviJef\":\"A fenti globális értékesítési időszak alapján, nem időpontonként\",\"jIPNJG\":\"Alapvető információk\",\"UabgBd\":\"A törzs kötelező\",\"HWXuQK\":\"Könyvjelzőzze ezt az oldalt, hogy bármikor kezelhesse rendelését.\",\"CUKVDt\":\"Márkajelzés a jegyeken egyedi logóval, színekkel és lábléc üzenettel.\",\"4BZj5p\":\"Beépített csalásvédelem\",\"cr7kGH\":\"Tömeges szerkesztés\",\"1Fbd6n\":\"Időpontok tömeges szerkesztése\",\"Eq6Tu9\":\"A tömeges frissítés sikertelen.\",\"9N+p+g\":\"Üzlet\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Cégnév\",\"bv6RXK\":\"Gomb felirat\",\"ChDLlO\":\"Gomb szövege\",\"BUe8Wj\":\"A vevő fizet\",\"qF1qbA\":\"A vevők tiszta árat látnak. A platformdíjat a kifizetésből vonjuk le.\",\"dg05rc\":\"A követőpixelek hozzáadásával elismeri, hogy Ön és ez a platform közös adatkezelők a gyűjtött adatok tekintetében. Az Ön felelőssége, hogy biztosítsa az adatkezelés jogalapját az alkalmazandó adatvédelmi jogszabályok (GDPR, CCPA stb.) alapján.\",\"DFqasq\":[\"A folytatással elfogadja a(z) <0>\",[\"0\"],\" Szolgáltatási feltételeket\"],\"wVSa+U\":\"A hónap napja szerint\",\"0MnNgi\":\"A hét napja szerint\",\"CetOZE\":\"Jegytípus szerint\",\"lFdbRS\":\"Alkalmazási díjak megkerülése\",\"AjVXBS\":\"Naptár\",\"alkXJ5\":\"Naptárnézet\",\"2VLZwd\":\"Cselekvésre ösztönző gomb\",\"rT2cV+\":\"Kamera\",\"7hYa9y\":\"A kamera engedélyét megtagadták. <0>Engedély kérése újra, vagy engedélyezze a kamera hozzáférést a böngésző beállításaiban.\",\"D02dD9\":\"Kampány\",\"RRPA79\":\"Nem lehet beléptetni\",\"OcVwAd\":[[\"count\"],\" időpont lemondása\"],\"H4nE+E\":\"Minden termék törlése és visszahelyezése a készletbe\",\"Py78q9\":\"Időpont lemondása\",\"tOXAdc\":\"A törlés törli az összes ehhez a rendeléshez tartozó résztvevőt, és visszahelyezi a jegyeket az elérhető készletbe.\",\"vev1Jl\":\"Lemondás\",\"Ha17hq\":[[\"0\"],\" időpont lemondva\"],\"01sEfm\":\"A rendszer alapértelmezett konfigurációja nem törölhető\",\"VsM1HH\":\"Kapacitás-hozzárendelések\",\"9bIMVF\":\"Kapacitáskezelés\",\"H7K8og\":\"A kapacitásnak 0 vagy annál nagyobbnak kell lennie\",\"nzao08\":\"kapacitás-frissítések\",\"4cp9NP\":\"Felhasznált kapacitás\",\"K7tIrx\":\"Kategória\",\"o+XJ9D\":\"Módosítás\",\"kJkjoB\":\"Időtartam módosítása\",\"J0KExZ\":\"A résztvevői limit módosítása\",\"CIHJJf\":\"Várólistás beállítások módosítása\",\"B5icLR\":[[\"count\"],\" időpont időtartama módosítva\"],\"Kb+0BT\":\"Terhelések\",\"2tbLdK\":\"Jótékonyság\",\"BPWGKn\":\"Beléptetés\",\"6uFFoY\":\"Kiléptetés\",\"FjAlwK\":[\"Nézze meg ezt az eseményt: \",[\"0\"]],\"v4fiSg\":\"Ellenőrizze e-mail címét\",\"51AsAN\":\"Nézze meg a postafiókját! Ha ehhez az e-mail címhez jegyek tartoznak, kap egy linket a megtekintésükhöz.\",\"Y3FYXy\":\"Beléptetés\",\"udRwQs\":\"Bejelentkezés létrehozva\",\"F4SRy3\":\"Bejelentkezés törölve\",\"as6XfO\":[[\"0\"],\" beléptetése visszavonva\"],\"9s/wrQ\":\"Beléptetési előzmények\",\"Wwztk4\":\"Beléptetési lista\",\"9gPPUY\":\"Bejelentkezési lista létrehozva\",\"dwjiJt\":\"Beléptetési lista info\",\"7od0PV\":\"beléptetési listák\",\"f2vU9t\":\"Bejelentkezési listák\",\"XprdTn\":\"Beléptetési navigáció\",\"5tV1in\":\"Beléptetés állapota\",\"SHJwyq\":\"Bejelentkezési arány\",\"qCqdg6\":\"Bejelentkezési állapot\",\"cKj6OE\":\"Bejelentkezési összefoglaló\",\"7B5M35\":\"Bejelentkezések\",\"VrmydS\":\"Beléptetve\",\"DM4gBB\":\"Kínai (hagyományos)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Válasszon másik műveletet\",\"fkb+y3\":\"Válassz egy mentett helyszínt az alkalmazáshoz.\",\"Zok1Gx\":\"Válassz szervezőt\",\"pkk46Q\":\"Válasszon szervezőt\",\"Crr3pG\":\"Naptár kiválasztása\",\"LAW8Vb\":\"Válassza ki az alapértelmezett beállítást az új eseményekhez. Ez felülírható az egyes eseményeknél.\",\"pjp2n5\":\"Válassza ki, ki fizeti a platformdíjat. Ez nem érinti a fiókbeállításokban konfigurált további díjakat.\",\"xCJdfg\":\"Törlés\",\"QyOWu9\":\"Helyszín törlése — visszaesik az esemény alapértelmezett értékére\",\"V8yTm6\":\"Keresés törlése\",\"kmnKnX\":\"A törlés eltávolít minden alkalomspecifikus felülírást. Az érintett alkalmak az esemény alapértelmezett helyszínére váltanak.\",\"/o+aQX\":\"Kattintson a lemondáshoz\",\"gD7WGV\":\"Kattintson az új értékesítésre való újranyitáshoz\",\"CySr+W\":\"Kattintson a jegyzet megtekintéséhez\",\"RG3szS\":\"bezárás\",\"RWw9Lg\":\"Modális ablak bezárása\",\"XwdMMg\":\"A kód csak betűket, számokat, kötőjeleket és aláhúzásokat tartalmazhat\",\"+yMJb7\":\"Kód kötelező\",\"m9SD3V\":\"A kódnak legalább 3 karakter hosszúnak kell lennie\",\"V1krgP\":\"A kód legfeljebb 20 karakter hosszúságú lehet\",\"psqIm5\":\"Kollaboráljon csapatával, hogy csodálatos eseményeket hozzanak létre együtt.\",\"4bUH9i\":\"Résztvevő adatok gyűjtése minden megvásárolt jegyhez.\",\"TkfG8v\":\"Adatok gyűjtése rendelésenként\",\"96ryID\":\"Adatok gyűjtése jegyenként\",\"FpsvqB\":\"Színmód\",\"jEu4bB\":\"Oszlopok\",\"CWk59I\":\"Vígjáték\",\"rPA+Gc\":\"Kommunikációs beállítások\",\"zFT5rr\":\"kész\",\"bUQMpb\":\"Stripe beállítás befejezése\",\"744BMm\":\"Fejezd be a rendelésed a jegyek biztosításához. Ez az ajánlat időkorlátozott, ne várj túl sokáig.\",\"5YrKW7\":\"Fejezze be a fizetést a jegyek biztosításához.\",\"xGU92i\":\"Töltse ki a profilját a csapathoz való csatlakozáshoz.\",\"QOhkyl\":\"Írás\",\"ih35UP\":\"Konferencia Központ\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Konfiguráció hozzárendelve\",\"X1zdE7\":\"Konfiguráció sikeresen létrehozva\",\"mLBUMQ\":\"Konfiguráció sikeresen törölve\",\"UIENhw\":\"A konfigurációs nevek láthatók a végfelhasználók számára. A fix díjak az aktuális árfolyamon kerülnek átváltásra a megrendelés pénznemére.\",\"eeZdaB\":\"Konfiguráció sikeresen frissítve\",\"3cKoxx\":\"Konfigurációk\",\"8v2LRU\":\"Esemény részletek, helyszín, pénztári beállítások és e-mail értesítések konfigurálása.\",\"raw09+\":\"Állítsa be, hogyan gyűjtse a résztvevők adatait a pénztárnál\",\"FI60XC\":\"Adók és díjak beállítása\",\"av6ukY\":\"Állítsa be, mely termékek érhetők el ehhez az alkalomhoz, és szükség esetén módosítsa az árakat.\",\"NGXKG/\":\"E-mail cím megerősítése\",\"JRQitQ\":\"Új jelszó megerősítése\",\"Auz0Mz\":\"Erősítse meg e-mail címét az összes funkció eléréséhez.\",\"7+grte\":\"Megerősítő e-mail elküldve! Kérjük, ellenőrizze postaládáját.\",\"n/7+7Q\":\"Megerősítés elküldve a következő címre:\",\"x3wVFc\":\"Gratulálunk! Az eseményed mostantól látható a nyilvánosság számára.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Kapcsolja be a Stripe-ot az e-mail sablon szerkesztéséhez\",\"LmvZ+E\":\"Kapcsolja be a Stripe-ot az üzenetküldéshez\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Kapcsolat\",\"LOFgda\":[\"Kapcsolatfelvétel \",[\"0\"]],\"41BQ3k\":\"Kapcsolattartási e-mail\",\"KcXRN+\":\"Kapcsolati e-mail címünk az ügyfélszolgálathoz\",\"m8WD6t\":\"Beállítás folytatása\",\"0GwUT4\":\"Folytatás\",\"sBV87H\":\"Folytatás az esemény létrehozásához\",\"nKtyYu\":\"Folytatás a következő lépésre\",\"F3/nus\":\"Tovább a fizetéshez\",\"p2FRHj\":\"Szabályozza, hogyan kezelje a platformdíjakat ezen eseménynél\",\"NqfabH\":\"Szabályozza, ki léphet be erre az időpontra\",\"fmYxZx\":\"Ki mikor léphet be\",\"1JnTgU\":\"Másolva a fentiekből\",\"FxVG/l\":\"Vágólapra másolva\",\"PiH3UR\":\"Másolva!\",\"4i7smN\":\"Fiókazonosító másolása\",\"uUPbPg\":\"Partneri link másolása\",\"iVm46+\":\"Kód másolása\",\"cF2ICc\":\"Vásárlói link másolása\",\"+2ZJ7N\":\"Adatok másolása az első résztvevőhöz\",\"ZN1WLO\":\"E-mail másolása\",\"y1eoq1\":\"Link másolása\",\"tUGbi8\":\"Adataim másolása:\",\"y22tv0\":\"Másolja ezt a linket a megosztáshoz bárhol\",\"/4gGIX\":\"Vágólapra másolás\",\"e0f4yB\":\"A helyszín törlése nem sikerült\",\"vkiDx2\":\"Nem sikerült előkészíteni a tömeges frissítést.\",\"KOavaU\":\"A cím részleteinek lekérése nem sikerült\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Az időpont mentése nem sikerült\",\"eeLExK\":\"A helyszín mentése nem sikerült\",\"P0rbCt\":\"Borítókép\",\"60u+dQ\":\"A borítókép az eseményoldal tetején jelenik meg\",\"2NLjA6\":\"A borítókép a szervezői oldal tetején jelenik meg\",\"GkrqoY\":\"Minden jegyre kiterjed\",\"zg4oSu\":[[\"0\"],\" sablon létrehozása\"],\"RKKhnW\":\"Hozzon létre egyedi widgetet jegyek értékesítéséhez a webhelyén.\",\"6sk7PP\":\"Adott számú létrehozása\",\"PhioFp\":\"Hozzon létre új beléptetési listát egy aktív alkalomhoz, vagy lépjen kapcsolatba a szervezővel, ha úgy gondolja, hogy ez tévedés.\",\"yIRev4\":\"Jelszó létrehozása\",\"j7xZ7J\":\"Hozzon létre további szervezőket, hogy egy fiók alatt különböző márkákat, osztályokat vagy eseménysorozatokat kezeljen. Minden szervezőnek saját eseményei, beállításai és nyilvános oldala van.\",\"xfKgwv\":\"Partner létrehozása\",\"tudG8q\":\"Jegyek és árucikkek létrehozása és konfigurálása értékesítéshez.\",\"YAl9Hg\":\"Konfiguráció létrehozása\",\"BTne9e\":\"Hozzon létre egyedi e-mail sablonokat ehhez az eseményhez, amelyek felülírják a szervező alapértelmezéseit\",\"YIDzi/\":\"Egyedi sablon létrehozása\",\"tsGqx5\":\"Időpont létrehozása\",\"Nc3l/D\":\"Kedvezmények, hozzáférési kódok rejtett jegyekhez és különleges ajánlatok létrehozása.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Létrehozás ehhez az időponthoz\",\"eWEV9G\":\"Új jelszó létrehozása\",\"wl2iai\":\"Ütemezés létrehozása\",\"8AiKIu\":\"Jegy vagy termék létrehozása\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Követhető linkek létrehozása a partnerek jutalmazásához, akik népszerűsítik az eseményét.\",\"dkAPxi\":\"Webhook létrehozása\",\"5slqwZ\":\"Hozza létre eseményét\",\"JQNMrj\":\"Hozza létre első eseményét\",\"ZCSSd+\":\"Hozza létre saját eseményét\",\"67NsZP\":\"Esemény létrehozása...\",\"H34qcM\":\"Szervező létrehozása...\",\"1YMS+X\":\"Esemény létrehozása, kérjük, várjon.\",\"yiy8Jt\":\"Szervezői profil létrehozása, kérjük, várjon.\",\"lfLHNz\":\"CTA címke kötelező\",\"0xLR6W\":\"Jelenleg hozzárendelt\",\"iTvh6I\":\"Jelenleg megvásárolható\",\"A42Dqn\":\"Egyedi arculat\",\"Guo0lU\":\"Egyéni dátum és idő\",\"mimF6c\":\"Egyedi üzenet a pénztár után\",\"WDMdn8\":\"Egyedi kérdések\",\"O6mra8\":\"Egyedi kérdések\",\"axv/Mi\":\"Egyedi sablon\",\"2YeVGY\":\"Vásárlói link a vágólapra másolva\",\"QMHSMS\":\"A vásárló e-mailt kap a visszatérítés megerősítéséről\",\"L/Qc+w\":\"Vásárló e-mail címe\",\"wpfWhJ\":\"Vásárló keresztneve\",\"GIoqtA\":\"Vásárló vezetékneve\",\"NihQNk\":\"Vásárlók\",\"7gsjkI\":\"Testreszabhatja az ügyfeleknek küldött e-maileket Liquid sablonok használatával. Ezek a sablonok alapértelmezettként lesznek használva a szervezet összes eseményéhez.\",\"xJaTUK\":\"Testreszabhatja az esemény kezdőlapjának elrendezését, színeit és márkajelzését.\",\"MXZfGN\":\"Testreszabhatja a pénztárban feltett kérdéseket, hogy fontos információkat gyűjtsön a résztvevőktől.\",\"iX6SLo\":\"Testreszabhatja a folytatás gomb szövegét.\",\"pxNIxa\":\"Testreszabhatja az e-mail sablonját Liquid sablonok használatával\",\"3trPKm\":\"Testreszabhatja szervezői oldalának megjelenését.\",\"U0sC6H\":\"Naponta\",\"/gWrVZ\":\"Napi bevétel, adók, díjak és visszatérítések az összes eseményen\",\"zgCHnE\":\"Napi értékesítési jelentés\",\"nHm0AI\":\"Napi értékesítési, adó- és díj bontás.\",\"1aPnDT\":\"Tánc\",\"pvnfJD\":\"Sötét\",\"MaB9wW\":\"Időpont lemondása\",\"e6cAxJ\":\"Időpont lemondva\",\"81jBnC\":\"Időpont sikeresen lemondva\",\"a/C/6R\":\"Időpont sikeresen létrehozva\",\"IW7Q+u\":\"Időpont törölve\",\"rngCAz\":\"Időpont sikeresen törölve\",\"lnYE59\":\"Az esemény dátuma\",\"gnBreG\":\"Rendelés leadásának dátuma\",\"vHbfoQ\":\"Időpont újraaktiválva\",\"hvah+S\":\"Dátum újranyitva új értékesítéshez\",\"Ez0YsD\":\"Időpont sikeresen frissítve\",\"VTsZuy\":\"Az időpontok és időpontok kezelése itt történik:\",\"/ITcnz\":\"nap\",\"H7OUPr\":\"Nap\",\"JtHrX9\":\"A hónap napja\",\"J/Upwb\":\"nap\",\"vDVA2I\":\"A hónap napjai\",\"rDLvlL\":\"A hét napjai\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Elutasítás\",\"ovBPCi\":\"Alapértelmezett\",\"JtI4vj\":\"Alapértelmezett résztvevői információgyűjtés\",\"ULjv90\":\"Alapértelmezett kapacitás időpontonként\",\"3R/Tu2\":\"Alapértelmezett díjkezelés\",\"1bZAZA\":\"Alapértelmezett sablon lesz használva\",\"HNlEFZ\":\"törlés\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Törli a kiválasztott \",[\"count\"],\" időpontot? A rendelést tartalmazó időpontok kihagyásra kerülnek. Ez nem vonható vissza.\"],\"vu7gDm\":\"Partner törlése\",\"KZN4Lc\":\"Összes törlése\",\"6EkaOO\":\"Időpont törlése\",\"io0G93\":\"Esemény törlése\",\"+jw/c1\":\"Kép törlése\",\"hdyeZ0\":\"Feladat törlése\",\"xxjZeP\":\"Helyszín törlése\",\"sY3tIw\":\"Szervező törlése\",\"UBv8UK\":\"Végleges törlés\",\"dPyJ15\":\"Sablon törlése\",\"mxsm1o\":\"Törli ezt a kérdést? Ez nem vonható vissza.\",\"snMaH4\":\"Webhook törlése\",\"LIZZLY\":[[\"0\"],\" időpont törölve\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Összes kijelölés megszüntetése\",\"NvuEhl\":\"Tervezési elemek\",\"H8kMHT\":\"Nem kapta meg a kódot?\",\"G8KNgd\":\"Másik helyszín\",\"E/QGRL\":\"Letiltva\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Üzenet elvetése\",\"BREO0S\":\"Jelölőnégyzet megjelenítése, amely lehetővé teszi az ügyfelek számára, hogy feliratkozzanak a rendezvényszervező marketing kommunikációira.\",\"pfa8F0\":\"Megjelenítendő név\",\"Kdpf90\":\"Ne felejtse el!\",\"352VU2\":\"Nincs fiókja? <0>Regisztráljon\",\"AXXqG+\":\"Adomány\",\"DPfwMq\":\"Kész\",\"JoPiZ2\":\"Utasítások a személyzetnek\",\"2+O9st\":\"Értékesítési, résztvevői és pénzügyi jelentések letöltése minden befejezett rendeléshez.\",\"eneWvv\":\"Piszkozat\",\"Ts8hhq\":\"A spam magas kockázata miatt csatlakoztatnia kell egy Stripe fiókot, mielőtt módosíthatná az e-mail sablonokat. Ez biztosítja, hogy minden eseményszervező ellenőrzött és felelősségre vonható legyen.\",\"TnzbL+\":\"A spam magas kockázata miatt csatlakoztatnia kell egy Stripe fiókot, mielőtt üzeneteket küldhetne a résztvevőknek.\\nEz biztosítja, hogy minden eseményszervező ellenőrzött és felelősségre vonható legyen.\",\"euc6Ns\":\"Duplikálás\",\"YueC+F\":\"Időpont duplikálása\",\"KRmTkx\":\"Termék másolása\",\"Jd3ymG\":\"Az időtartamnak legalább 1 percnek kell lennie.\",\"KIjvtr\":\"Holland\",\"22xieU\":\"pl. 180 (3 óra)\",\"/zajIE\":\"pl. Reggeli alkalom\",\"SPKbfM\":\"pl. Jegyek beszerzése, Regisztráció most\",\"fc7wGW\":\"pl. Fontos frissítés a jegyeiről\",\"54MPqC\":\"pl. Alap, Prémium, Vállalati\",\"3RQ81z\":\"Minden személy e-mailt kap egy foglalt hellyel a vásárlás befejezéséhez.\",\"5oD9f/\":\"Korábban\",\"LTzmgK\":[[\"0\"],\" sablon szerkesztése\"],\"v4+lcZ\":\"Partner szerkesztése\",\"2iZEz7\":\"Válasz szerkesztése\",\"t2bbp8\":\"Résztvevő szerkesztése\",\"etaWtB\":\"Résztvevő adatainak szerkesztése\",\"+guao5\":\"Konfiguráció szerkesztése\",\"1Mp/A4\":\"Időpont szerkesztése\",\"m0ZqOT\":\"Helyszín szerkesztése\",\"8oivFT\":\"Helyszín szerkesztése\",\"vRWOrM\":\"Rendelés részleteinek szerkesztése\",\"fW5sSv\":\"Webhook szerkesztése\",\"nP7CdQ\":\"Webhook szerkesztése\",\"MRZxAn\":\"Szerkesztve\",\"uBAxNB\":\"Szerkesztő\",\"aqxYLv\":\"Oktatás\",\"iiWXDL\":\"Jogosultsági hibák\",\"zPiC+q\":\"Jogosult bejelentkezési listák\",\"SiVstt\":\"E-mail és ütemezett üzenetek\",\"V2sk3H\":\"E-mail és sablonok\",\"hbwCKE\":\"E-mail cím vágólapra másolva\",\"dSyJj6\":\"Az e-mail címek nem egyeznek\",\"elW7Tn\":\"E-mail törzse\",\"ZsZeV2\":\"E-mail cím kötelező\",\"Be4gD+\":\"E-mail előnézet\",\"6IwNUc\":\"E-mail sablonok\",\"H/UMUG\":\"E-mail ellenőrzés szükséges\",\"L86zy2\":\"E-mail sikeresen ellenőrizve!\",\"FSN4TS\":\"Widget beágyazása\",\"z9NkYY\":\"Beágyazható widget\",\"Qj0GKe\":\"Résztvevői önkiszolgálás engedélyezése\",\"hEtQsg\":\"Résztvevői önkiszolgálás alapértelmezett engedélyezése\",\"Upeg/u\":\"Sablon engedélyezése e-mailek küldéséhez\",\"7dSOhU\":\"Várólista engedélyezése\",\"RxzN1M\":\"Engedélyezve\",\"xDr/ct\":\"Vége\",\"sGjBEq\":\"Befejezés dátuma és ideje (opcionális)\",\"PKXt9R\":\"A befejezés dátumának a kezdő dátum után kell lennie.\",\"UmzbPa\":\"Az alkalom befejezési dátuma\",\"ZayGC7\":\"Befejezés egy adott dátumon\",\"48Y16Q\":\"Befejezés ideje (opcionális)\",\"jpNdOC\":\"Az alkalom befejezési ideje\",\"TbaYrr\":[\"Befejeződött: \",[\"0\"]],\"CFgwiw\":[\"Befejeződik: \",[\"0\"]],\"SqOIQU\":\"Adjon meg egy kapacitásértéket, vagy válassza a korlátlan opciót.\",\"h37gRz\":\"Adjon meg egy címkét, vagy válassza az eltávolítást.\",\"7YZofi\":\"Írjon be egy tárgyat és törzset az előnézet megtekintéséhez\",\"khyScF\":\"Adja meg az eltolás mértékét.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Adja meg a partner e-mail címét (opcionális)\",\"ARkzso\":\"Adja meg a partner nevét\",\"ej4L8b\":\"Adja meg a kapacitást\",\"6KnyG0\":\"E-mail megadása\",\"INDKM9\":\"Írja be az e-mail tárgyát...\",\"xUgUTh\":\"Keresztnév megadása\",\"9/1YKL\":\"Vezetéknév megadása\",\"VpwcSk\":\"Írja be az új jelszót\",\"kWg31j\":\"Adjon meg egyedi partnerkódot\",\"C3nD/1\":\"Adja meg e-mail címét\",\"VmXiz4\":\"Írja be az e-mail címét és elküldjük a jelszó visszaállításához szükséges utasításokat.\",\"n9V+ps\":\"Adja meg nevét\",\"IdULhL\":\"Írja be az ÁFA számát az országkóddal együtt, szóközök nélkül (pl. IE1234567A, DE123456789)\",\"o21Y+P\":\"bejegyzések\",\"X88/6w\":\"A bejegyzések itt jelennek meg, amikor az ügyfelek csatlakoznak az elfogyott termékek várólistájához.\",\"LslKhj\":\"Hiba a naplók betöltésekor\",\"VCNHvW\":\"Esemény archiválva\",\"ZD0XSb\":\"Az esemény sikeresen archiválva\",\"WgD6rb\":\"Eseménykategória\",\"b46pt5\":\"Esemény borítóképe\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Esemény létrehozva\",\"1Hzev4\":\"Esemény egyedi sablon\",\"7u9/DO\":\"Az esemény sikeresen törölve\",\"imgKgl\":\"Esemény leírása\",\"kJDmsI\":\"Esemény részletei\",\"m/N7Zq\":\"Esemény teljes címe\",\"Nl1ZtM\":\"Esemény helyszíne\",\"PYs3rP\":\"Esemény neve\",\"HhwcTQ\":\"Esemény neve\",\"WZZzB6\":\"Esemény neve kötelező\",\"Wd5CDM\":\"Az esemény nevének 150 karakternél rövidebbnek kell lennie.\",\"4JzCvP\":\"Esemény nem elérhető\",\"Gh9Oqb\":\"Eseményszervező neve\",\"mImacG\":\"Eseményoldal\",\"Hk9Ki/\":\"Az esemény sikeresen visszaállítva\",\"JyD0LH\":\"Esemény beállítások\",\"cOePZk\":\"Esemény időpontja\",\"e8WNln\":\"Esemény időzóna\",\"GeqWgj\":\"Esemény időzóna\",\"XVLu2v\":\"Esemény címe\",\"OfmsI9\":\"Az esemény túl új\",\"4SILkp\":\"Esemény összesítései\",\"YDVUVl\":\"Eseménytípusok\",\"+HeiVx\":\"Esemény frissítve\",\"4K2OjV\":\"Esemény helyszíne\",\"19j6uh\":\"Események teljesítménye\",\"PC3/fk\":\"Következő 24 órában kezdődő események\",\"nwiZdc\":[\"Minden \",[\"0\"]],\"2LJU4o\":[\"Minden \",[\"0\"],\" napban\"],\"yLiYx+\":[\"Minden \",[\"0\"],\" hónapban\"],\"nn9ice\":[\"Minden \",[\"0\"],\" hétben\"],\"Cdr8f9\":[\"Minden \",[\"0\"],\" hétben, \",[\"1\"]],\"GVEHRk\":[\"Minden \",[\"0\"],\" évben\"],\"fTFfOK\":\"Minden e-mail sablonnak tartalmaznia kell egy cselekvésre ösztönző gombot, amely a megfelelő oldalra vezet\",\"BVinvJ\":\"Példák: \\\"Honnan hallott rólunk?\\\", \\\"Cégnév számlához\\\"\",\"2hGPQG\":\"Példák: \\\"Póló méret\\\", \\\"Étkezési preferencia\\\", \\\"Munkakör\\\"\",\"qNuTh3\":\"Kivétel\",\"M1RnFv\":\"Lejárt\",\"kF8HQ7\":\"Válaszok exportálása\",\"2KAI4N\":\"CSV exportálása\",\"JKfSAv\":\"Exportálás sikertelen. Kérjük, próbálja újra.\",\"SVOEsu\":\"Exportálás elindítva. Fájl előkészítése...\",\"wuyaZh\":\"Exportálás sikeres\",\"9bpUSo\":\"Partnerek exportálása\",\"jtrqH9\":\"Résztvevők exportálása\",\"R4Oqr8\":\"Exportálás befejezve. Fájl letöltése...\",\"UlAK8E\":\"Megrendelések exportálása\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Sikertelen\",\"8uOlgz\":\"Sikertelen időpontja\",\"tKcbYd\":\"Sikertelen feladatok\",\"SsI9v/\":\"A rendelés feladása sikertelen. Kérjük, próbálja újra.\",\"LdPKPR\":\"A konfiguráció hozzárendelése nem sikerült\",\"PO0cfn\":\"Az időpont lemondása nem sikerült\",\"YUX+f+\":\"Az időpontok lemondása nem sikerült\",\"SIHgVQ\":\"Nem sikerült törölni az üzenetet\",\"cEFg3R\":\"Nem sikerült létrehozni a partnert.\",\"dVgNF1\":\"A konfiguráció létrehozása sikertelen\",\"fAoRRJ\":\"Az ütemezés létrehozása nem sikerült\",\"U66oUa\":\"A sablon létrehozása sikertelen\",\"aFk48v\":\"A konfiguráció törlése sikertelen\",\"n1CYMH\":\"Az időpont törlése nem sikerült\",\"KXv+Qn\":\"Az időpont törlése nem sikerült. Lehetséges, hogy meglévő rendelései vannak.\",\"JJ0uRo\":\"Az időpontok törlése nem sikerült\",\"rgoBnv\":\"Nem sikerült törölni az eseményt\",\"Zw6LWb\":\"A feladat törlése sikertelen\",\"tq0abZ\":\"A feladatok törlése sikertelen\",\"2mkc3c\":\"Nem sikerült törölni a szervezőt\",\"vKMKnu\":\"A kérdés törlése sikertelen\",\"xFj7Yj\":\"A sablon törlése sikertelen\",\"jo3Gm6\":\"Nem sikerült exportálni a partnereket.\",\"Jjw03p\":\"Résztvevők exportálása sikertelen\",\"ZPwFnN\":\"Megrendelések exportálása sikertelen\",\"zGE3CH\":\"A jelentés exportálása sikertelen. Kérjük, próbálja újra.\",\"lS9/aZ\":\"Nem sikerült betölteni a címzetteket\",\"X4o0MX\":\"Webhook betöltése sikertelen\",\"ETcU7q\":\"Nem sikerült helyet felajánlani\",\"5670b9\":\"Nem sikerült jegyeket felajánlani\",\"e5KIbI\":\"Az időpont újraaktiválása nem sikerült\",\"7zyx8a\":\"Az eltávolítás a várólistáról nem sikerült\",\"A/P7PX\":\"A felülírás eltávolítása nem sikerült\",\"ogWc1z\":\"A dátum újranyitása sikertelen\",\"0+iwE5\":\"A kérdések újrarendezése sikertelen\",\"EJPAcd\":\"A rendelés visszaigazolásának újraküldése sikertelen\",\"DjSbj3\":\"A jegy újraküldése sikertelen\",\"YQ3QSS\":\"Ellenőrző kód újraküldése sikertelen\",\"wDioLj\":\"A feladat újrapróbálása sikertelen\",\"DKYTWG\":\"A feladatok újrapróbálása sikertelen\",\"WRREqF\":\"A felülírás mentése nem sikerült\",\"sj/eZA\":\"Az ár felülírásának mentése nem sikerült\",\"780n8A\":\"A termékbeállítások mentése nem sikerült\",\"zTkTF3\":\"A sablon mentése sikertelen\",\"l6acRV\":\"Az ÁFA beállítások mentése sikertelen. Kérjük, próbálja újra.\",\"T6B2gk\":\"Üzenet küldése sikertelen. Kérjük, próbálja újra.\",\"lKh069\":\"Exportálási feladat indítása sikertelen\",\"t/KVOk\":\"A megszemélyesítés indítása sikertelen. Kérjük, próbálja újra.\",\"QXgjH0\":\"A megszemélyesítés leállítása sikertelen. Kérjük, próbálja újra.\",\"i0QKrm\":\"Partner frissítése sikertelen\",\"NNc33d\":\"Válasz frissítése sikertelen.\",\"E9jY+o\":\"A résztvevő frissítése sikertelen\",\"uQynyf\":\"A konfiguráció frissítése sikertelen\",\"i2PFQJ\":\"Nem sikerült frissíteni az esemény állapotát\",\"EhlbcI\":\"Az üzenetküldési szint frissítése sikertelen\",\"rpGMzC\":\"A rendelés frissítése sikertelen\",\"T2aCOV\":\"Nem sikerült frissíteni a szervező állapotát\",\"Eeo/Gy\":\"A beállítás frissítése sikertelen\",\"kqA9lY\":\"Az ÁFA-beállítások frissítése nem sikerült\",\"7/9RFs\":\"Kép feltöltése sikertelen.\",\"nkNfWu\":\"Kép feltöltése sikertelen. Kérjük, próbálja újra.\",\"rxy0tG\":\"E-mail ellenőrzése sikertelen\",\"QRUpCk\":\"Család\",\"5LO38w\":\"Gyors kifizetés a bankodba\",\"4lgLew\":\"Február\",\"9bHCo2\":\"Díj pénzneme\",\"/sV91a\":\"Díjkezelés\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Díjak megkerülve\",\"cf35MA\":\"Fesztivál\",\"pAey+4\":\"A fájl túl nagy. Maximális méret: 5MB.\",\"VejKUM\":\"Először töltse ki az adatait fentebb\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Résztvevők szűrése\",\"8OvVZZ\":\"Résztvevők szűrése\",\"N/H3++\":\"Szűrés időpont szerint\",\"mvrlBO\":\"Szűrés esemény szerint\",\"g+xRXP\":\"Fejezd be a Stripe beállítását\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"Első\",\"1vBhpG\":\"Első résztvevő\",\"4pwejF\":\"A keresztnév kötelező\",\"3lkYdQ\":\"Fix díj\",\"6bBh3/\":\"Fix díj\",\"zWqUyJ\":\"Tranzakciónkénti fix díj\",\"LWL3Bs\":\"A fix díjnak 0 vagy nagyobbnak kell lennie\",\"0RI8m4\":\"Vaku ki\",\"q0923e\":\"Vaku be\",\"lWxAUo\":\"Étel és ital\",\"nFm+5u\":\"Lábléc szövege\",\"a8nooQ\":\"Negyedik\",\"mob/am\":\"P\",\"wtuVU4\":\"Gyakoriság\",\"xVhQZV\":\"Pén\",\"39y5bn\":\"Péntek\",\"f5UbZ0\":\"Teljes adatbirtoklás\",\"MY2SVM\":\"Teljes visszatérítés\",\"UsIfa8\":\"Teljes feloldott cím\",\"PGQLdy\":\"jövőbeli\",\"8N/j1s\":\"Csak jövőbeli időpontok\",\"yRx/6K\":\"A jövőbeli időpontok másolásakor a kapacitás nullára áll vissza\",\"T02gNN\":\"Általános belépés\",\"3ep0Gx\":\"Általános információk a szervezőjéről\",\"ziAjHi\":\"Generálás\",\"exy8uo\":\"Kód generálása\",\"4CETZY\":\"Útvonal\",\"pjkEcB\":\"Fizetés fogadása\",\"lGYzP6\":\"Fogadj kifizetést a Stripe-on keresztül\",\"ZDIydz\":\"Kezdés\",\"u6FPxT\":\"Jegyek vásárlása\",\"8KDgYV\":\"Készítse elő eseményét\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Vissza\",\"oNL5vN\":\"Esemény oldalra\",\"gHSuV/\":\"Ugrás a főoldalra\",\"8+Cj55\":\"Ugrás az ütemezéshez\",\"6nDzTl\":\"Jó olvashatóság\",\"76gPWk\":\"Értem\",\"aGWZUr\":\"Bruttó bevétel\",\"n8IUs7\":\"Bruttó bevétel\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Vendégkezelés\",\"NUsTc4\":\"Most zajlik\",\"kTSQej\":[\"Helló \",[\"0\"],\", innen kezelheti a platformot.\"],\"dORAcs\":\"Itt vannak az e-mail címéhez tartozó összes jegyek.\",\"g+2103\":\"Íme az affiliate linkje\",\"bVsnqU\":\"Üdv,\",\"/iE8xx\":\"Hi.Events díj\",\"zppscQ\":\"Hi.Events platform díjak és ÁFA bontás tranzakciónként\",\"D+zLDD\":\"Rejtett\",\"DRErHC\":\"Rejtett a résztvevők elől - csak a szervezők látják\",\"NNnsM0\":\"Speciális beállítások elrejtése\",\"P+5Pbo\":\"Válaszok elrejtése\",\"VMlRqi\":\"Részletek elrejtése\",\"FmogyU\":\"Opciók elrejtése\",\"gtEbeW\":\"Kiemelés\",\"NF8sdv\":\"Kiemelt üzenet\",\"MXSqmS\":\"Termék kiemelése\",\"7ER2sc\":\"Kiemelt\",\"sq7vjE\":\"A kiemelt termékek eltérő háttérszínnel jelennek meg, hogy kiemelkedjenek az esemény oldalán.\",\"1+WSY1\":\"Hobbi\",\"yY8wAv\":\"Óra\",\"sy9anN\":\"Mennyi ideje van az ügyfélnek a vásárlás befejezésére az ajánlat kézhezvétele után. Hagyja üresen, ha nincs időkorlát.\",\"n2ilNh\":\"Meddig tart az ütemezés?\",\"DMr2XN\":\"Milyen gyakran?\",\"AVpmAa\":\"Hogyan fizessen offline\",\"cceMns\":\"Hogyan számítjuk fel az ÁFA-t a platformdíjakhoz.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Magyar\",\"8Wgd41\":\"Tudomásul veszem adatkezelői felelősségemet\",\"O8m7VA\":\"Elfogadom az eseménnyel kapcsolatos e-mail értesítések fogadását\",\"YLgdk5\":\"Megerősítem, hogy ez egy tranzakciós üzenet az eseményhez kapcsolódóan\",\"4/kP5a\":\"Ha nem nyílt meg automatikusan új lap, kérjük, kattintson az alábbi gombra a fizetés folytatásához.\",\"W/eN+G\":\"Ha üres, a cím egy Google Maps link generálásához lesz felhasználva\",\"iIEaNB\":\"Ha van nálunk fiókja, e-mailt fog kapni a jelszó visszaállításához szükséges utasításokkal.\",\"an5hVd\":\"Képek\",\"tSVr6t\":\"Megszemélyesítés\",\"TWXU0c\":\"Felhasználó megszemélyesítése\",\"5LAZwq\":\"Megszemélyesítés elindítva\",\"IMwcdR\":\"Megszemélyesítés leállítva\",\"0I0Hac\":\"Fontos megjegyzés\",\"yD3avI\":\"Fontos: Az e-mail cím módosítása frissíti a rendeléshez való hozzáférés linkjét. Mentés után átirányítjuk az új rendelési linkre.\",\"jT142F\":[[\"diffHours\"],\" óra múlva\"],\"OoSyqO\":[[\"diffMinutes\"],\" perc múlva\"],\"PdMhEx\":[\"az elmúlt \",[\"0\"],\" percben\"],\"u7r0G5\":\"Személyes — helyszín megadása\",\"Ip0hl5\":\"személyes, online, nincs beállítva, vagy vegyes\",\"F1Xp97\":\"Egyéni résztvevők\",\"85e6zs\":\"Liquid token beszúrása\",\"38KFY0\":\"Változó beszúrása\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Azonnali Stripe kifizetések\",\"nbfdhU\":\"Integrációk\",\"I8eJ6/\":\"Belső megjegyzések a résztvevő jegyén\",\"B2Tpo0\":\"Érvénytelen e-mail\",\"5tT0+u\":\"Érvénytelen e-mail formátum\",\"f9WRpE\":\"Érvénytelen fájltípus. Kérjük, töltsön fel egy képet.\",\"tnL+GP\":\"Érvénytelen Liquid szintaxis. Kérjük, javítsa ki és próbálja újra.\",\"N9JsFT\":\"Érvénytelen ÁFA szám formátum\",\"g+lLS9\":\"Csapattag meghívása\",\"1z26sk\":\"Csapattag meghívása\",\"KR0679\":\"Csapattagok meghívása\",\"aH6ZIb\":\"Hívja meg csapatát\",\"IuMGvq\":\"Számla\",\"Lj7sBL\":\"Olasz\",\"F5/CBH\":\"tétel(ek)\",\"BzfzPK\":\"Tételek\",\"rjyWPb\":\"Január\",\"KmWyx0\":\"Feladat\",\"o5r6b2\":\"Feladat törölve\",\"cd0jIM\":\"Feladat részletei\",\"ruJO57\":\"Feladat neve\",\"YZi+Hu\":\"Feladat újrapróbálásra sorba állítva\",\"nCywLA\":\"Csatlakozzon bárhonnan\",\"SNzppu\":\"Csatlakozás a várólistához\",\"dLouFI\":[\"Feliratkozás a várólistára: \",[\"productDisplayName\"]],\"2gMuHR\":\"Csatlakozott\",\"u4ex5r\":\"Július\",\"zeEQd/\":\"Június\",\"MxjCqk\":\"Csak a jegyeit keresi?\",\"xOTzt5\":\"épp most\",\"0RihU9\":\"Most fejeződött be\",\"lB2hSG\":[\"Tartsanak naprakészen a \",[\"0\"],\" híreivel és eseményeivel\"],\"ioFA9i\":\"Tartsa meg a profitot.\",\"4Sffp7\":\"Az alkalom címkéje\",\"o66QSP\":\"címkefrissítések\",\"RtKKbA\":\"Utolsó\",\"DruLRc\":\"Elmúlt 14 nap\",\"ve9JTU\":\"A vezetéknév kötelező\",\"h0Q9Iw\":\"Utolsó válasz\",\"gw3Ur5\":\"Utoljára aktiválva\",\"FIq1Ba\":\"Később\",\"xvnLMP\":\"Legutóbbi beléptetések\",\"pzAivY\":\"A feloldott helyszín szélességi foka\",\"N5TErv\":\"Hagyja üresen a korlátlanhoz\",\"L/hDDD\":\"Hagyja üresen, hogy ezt a beléptetési listát minden alkalomra alkalmazza\",\"9Pf3wk\":\"Hagyja bekapcsolva, hogy minden jegyre kiterjedjen az eseményen. Kapcsolja ki, ha konkrét jegyeket szeretne kiválasztani.\",\"Hq2BzX\":\"Tájékoztassa őket a változásról\",\"+uexiy\":\"Tájékoztassa őket a változásokról\",\"exYcTF\":\"Könyvtár\",\"1njn7W\":\"Világos\",\"1qY5Ue\":\"A link lejárt vagy érvénytelen\",\"+zSD/o\":\"Hivatkozás az esemény főoldalára\",\"psosdY\":\"Link a rendelés részleteihez\",\"6JzK4N\":\"Link a jegyhez\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Linkek engedélyezve\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Listanézet\",\"dF6vP6\":\"Élő\",\"fpMs2Z\":\"ÉLŐ\",\"D9zTjx\":\"Élő események\",\"C33p4q\":\"Betöltött időpontok\",\"WdmJIX\":\"Előnézet betöltése...\",\"IoDI2o\":\"Tokenek betöltése...\",\"G3Ge9Z\":\"Webhook-naplók betöltése...\",\"NFxlHW\":\"Webhookok betöltése\",\"E0DoRM\":\"Helyszín törölve\",\"NtLHT3\":\"Helyszín formázott címe\",\"h4vxDc\":\"Helyszín szélességi foka\",\"f2TMhR\":\"Helyszín hosszúsági foka\",\"lnCo2f\":\"Helyszín módja\",\"8pmGFk\":\"Helyszín neve\",\"7w8lJU\":\"Helyszín mentve\",\"YsRXDD\":\"Helyszín frissítve\",\"A/kIva\":\"helyszín frissítések\",\"VppBoU\":\"Helyszínek\",\"iG7KNr\":\"Logó\",\"vu7ZGG\":\"Logó és borítókép\",\"gddQe0\":\"Logó és borítókép a szervezőjéhez\",\"TBEnp1\":\"A logó a fejlécben jelenik meg\",\"Jzu30R\":\"A logó megjelenik a jegyen\",\"zKTMTg\":\"A feloldott helyszín hosszúsági foka\",\"PSRm6/\":\"Jegyeim keresése\",\"yJFu/X\":\"Központi iroda\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[[\"0\"],\" kezelése\"],\"wZJfA8\":\"Az ismétlődő esemény időpontjainak kezelése\",\"RlzPUE\":\"Kezelés a Stripe-on\",\"6NXJRK\":\"Ütemezés kezelése\",\"zXuaxY\":\"Kezelje az esemény várólistáját, tekintse meg a statisztikákat, és ajánljon fel jegyeket a résztvevőknek.\",\"BWTzAb\":\"Manuális\",\"g2npA5\":\"Manuális ajánlat\",\"hg6l4j\":\"Március\",\"pqRBOz\":\"Megjelölés érvényesítettként (admin felülírás)\",\"2L3vle\":\"Max üzenetek / 24ó\",\"Qp4HWD\":\"Max címzettek / üzenet\",\"3JzsDb\":\"Május\",\"agPptk\":\"Médium\",\"xDAtGP\":\"Üzenet\",\"bECJqy\":\"Üzenet sikeresen jóváhagyva\",\"1jRD0v\":\"Üzenet a résztvevőknek meghatározott jegyekkel\",\"uQLXbS\":\"Üzenet törölve\",\"48rf3i\":\"Az üzenet nem haladhatja meg az 5000 karaktert\",\"ZPj0Q8\":\"Üzenet részletei\",\"Vjat/X\":\"Üzenet kötelező\",\"0/yJtP\":\"Üzenet a megrendelőknek meghatározott termékekkel\",\"saG4At\":\"Üzenet ütemezve\",\"mFdA+i\":\"Üzenetküldési szint\",\"v7xKtM\":\"Üzenetküldési szint sikeresen frissítve\",\"H9HlDe\":\"perc\",\"agRWc1\":\"Perc\",\"YYzBv9\":\"H\",\"zz/Wd/\":\"Mód\",\"fpMgHS\":\"Hét\",\"hty0d5\":\"Hétfő\",\"JbIgPz\":\"A pénzértékek az összes pénznem hozzávetőleges összegei\",\"qvF+MT\":\"Sikertelen háttérfeladatok figyelése és kezelése\",\"kY2ll9\":\"hónap\",\"HajiZl\":\"Hónap\",\"+8Nek/\":\"Havonta\",\"1LkxnU\":\"Havi minta\",\"6jefe3\":\"hónap\",\"f8jrkd\":\"több\",\"JcD7qf\":\"További műveletek\",\"w36OkR\":\"Legnézettebb események (Elmúlt 14 nap)\",\"+Y/na7\":\"Az összes időpont előbbre vagy későbbre helyezése\",\"3DIpY0\":\"Több helyszín\",\"g9cQCP\":\"Több jegytípus\",\"GfaxEk\":\"Zene\",\"oVGCGh\":\"Jegyeim\",\"8/brI5\":\"Név kötelező\",\"sFFArG\":\"A névnek rövidebbnek kell lennie 255 karakternél\",\"sCV5Yc\":\"Az esemény neve\",\"xxU3NX\":\"Nettó bevétel\",\"7I8LlL\":\"Új kapacitás\",\"n1GRql\":\"Új címke\",\"y0Fcpd\":\"Új helyszín\",\"ArHT/C\":\"Új regisztrációk\",\"uK7xWf\":\"Új időpont:\",\"veT5Br\":\"Következő alkalom\",\"WXtl5X\":[\"Következő: \",[\"nextFormatted\"]],\"eWRECP\":\"Éjszakai élet\",\"HSw5l3\":\"Nem - Magánszemély vagyok vagy nem ÁFA-s vállalkozás\",\"VHfLAW\":\"Nincsenek fiókok\",\"+jIeoh\":\"Nem találhatók fiókok\",\"074+X8\":\"Nincsenek aktív webhookok\",\"zxnup4\":\"Nincs megjeleníthető partner\",\"Dwf4dR\":\"Még nincsenek résztvevői kérdések\",\"th7rdT\":\"Nincs megjeleníthető résztvevő\",\"PKySlW\":\"Még nincs résztvevő ehhez az időponthoz.\",\"/UC6qk\":\"Nem található hozzárendelési adat\",\"E2vYsO\":\"A Stripe még nem jelentett képességet.\",\"amMkpL\":\"Nincs kapacitás\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nincs elérhető bejelentkezési lista ehhez az eseményhez.\",\"wG+knX\":\"Még nincs beléptetés\",\"+dAKxg\":\"Nem találhatók konfigurációk\",\"LiLk8u\":\"Nincs elérhető kapcsolat\",\"eb47T5\":\"Nincs adat a kiválasztott szűrőkhöz. Próbálja meg módosítani a dátumtartományt vagy a pénznemet.\",\"lFVUyx\":\"Nincs időpontspecifikus beléptetési lista\",\"I8mtzP\":\"Ebben a hónapban nincs elérhető időpont. Próbáljon másik hónapra lépni.\",\"yDukIL\":\"Egyetlen időpont sem felel meg a jelenlegi szűrőknek.\",\"B7phdj\":\"Egyetlen időpont sem felel meg a szűrőknek\",\"/ZB4Um\":\"Egyetlen időpont sem felel meg a keresésnek\",\"gEdNe8\":\"Még nincsenek ütemezett időpontok\",\"27GYXJ\":\"Nincsenek ütemezett időpontok.\",\"pZNOT9\":\"Nincs befejezési dátum\",\"dW40Uz\":\"Nem találhatók események\",\"8pQ3NJ\":\"Nincs esemény, amely a következő 24 órában kezdődne\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Nincs sikertelen feladat\",\"EpvBAp\":\"Nincs számla\",\"XZkeaI\":\"Nem található napló\",\"nrSs2u\":\"Nem található üzenet\",\"Rj99yx\":\"Nincsenek elérhető alkalmak\",\"IFU1IG\":\"Ezen a napon nincsenek alkalmak\",\"OVFwlg\":\"Még nincsenek rendelési kérdések\",\"EJ7bVz\":\"Nem találhatók rendelések\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Még nincs rendelés ehhez az időponthoz.\",\"wUv5xQ\":\"Nincs szervezői tevékenység az elmúlt 14 napban\",\"vLd1tV\":\"Nincs elérhető szervezői kontextus.\",\"B7w4KY\":\"Nincsenek más szervezők\",\"PChXMe\":\"Nincsenek fizetett rendelések\",\"6jYQGG\":\"Nincsenek múltbeli események\",\"CHzaTD\":\"Nincs népszerű esemény az elmúlt 14 napban\",\"zK/+ef\":\"Nincsenek kiválasztható termékek\",\"M1/lXs\":\"Ehhez az eseményhez nincsenek beállított termékek.\",\"kY7XDn\":\"Nincs várólistás bejegyzéssel rendelkező termék\",\"wYiAtV\":\"Nincs új fiók regisztráció\",\"UW90md\":\"Nem találhatók címzettek\",\"QoAi8D\":\"Nincs válasz\",\"JeO7SI\":\"Nincs válasz\",\"EK/G11\":\"Még nincsenek válaszok\",\"7J5OKy\":\"Még nincsenek mentett helyszínek\",\"wpCjcf\":\"Még nincsenek mentett helyszínek. Itt jelennek meg, ahogy címekkel rendelkező eseményeket hoz létre.\",\"mPdY6W\":\"Nincsenek javaslatok\",\"3sRuiW\":\"Nem találhatók jegyek\",\"k2C0ZR\":\"Nincsenek közelgő időpontok\",\"yM5c0q\":\"Nincsenek közelgő események\",\"qpC74J\":\"Nem találhatók felhasználók\",\"8wgkoi\":\"Nincs megtekintett esemény az elmúlt 14 napban\",\"Arzxc1\":\"Nincsenek várólistás bejegyzések\",\"n5vdm2\":\"Ehhez a végponthoz még nem rögzítettek webhook eseményeket. Az események itt jelennek meg, amint aktiválódnak.\",\"4GhX3c\":\"Nincsenek Webhookok\",\"4+am6b\":\"Nem, maradok itt\",\"4JVMUi\":\"nem szerkesztett\",\"Itw24Q\":\"Nincs beléptetve\",\"x5+Lcz\":\"Nincs bejelentkezve\",\"8n10sz\":\"Nem jogosult\",\"kLvU3F\":\"Résztvevők értesítése és az értékesítés leállítása\",\"t9QlBd\":\"November\",\"kAREMN\":\"Létrehozandó időpontok száma\",\"6u1B3O\":\"Alkalom\",\"mmoE62\":\"Alkalom lemondva\",\"UYWXdN\":\"Alkalom befejezési dátuma\",\"k7dZT5\":\"Alkalom befejezési ideje\",\"Opinaj\":\"Alkalom címkéje\",\"V9flmL\":\"Alkalom-ütemezés\",\"NUTUUs\":\"Alkalom-ütemezés oldal\",\"AT8UKD\":\"Alkalom kezdési dátuma\",\"Um8bvD\":\"Alkalom kezdési ideje\",\"Kh3WO8\":\"Alkalom összegzése\",\"byXCTu\":\"Alkalmak\",\"KATw3p\":\"Alkalmak (csak jövőbeli)\",\"85rTR2\":\"Az alkalmak a létrehozás után konfigurálhatók\",\"dzQfDY\":\"Október\",\"BwJKBw\":\"/\",\"9h7RDh\":\"Felajánlás\",\"EfK2O6\":\"Hely felajánlása\",\"3sVRey\":\"Jegyek felajánlása\",\"2O7Ybb\":\"Ajánlat időkorlát\",\"1jUg5D\":\"Felajánlva\",\"l+/HS6\":[\"Az ajánlatok \",[\"timeoutHours\"],\" óra után lejárnak.\"],\"lQgMLn\":\"Iroda vagy helyszín neve\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offline fizetés\",\"nO3VbP\":[\"Értékesítésben \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — add meg a csatlakozási adatokat\",\"LuZBbx\":\"Online és személyes\",\"IXuOqt\":\"Online és személyes — lásd az ütemezést\",\"w3DG44\":\"Online kapcsolódási adatok\",\"WjSpu5\":\"Online esemény\",\"TP6jss\":\"Online esemény kapcsolódási adatai\",\"NdOxqr\":\"Csak a fiókadminisztrátorok törölhetnek vagy archiválhatnak eseményeket. Segítségért forduljon a fiókadminisztrátorhoz.\",\"rnoDMF\":\"Csak a fiókadminisztrátorok törölhetnek vagy archiválhatnak szervezőket. Segítségért forduljon a fiókadminisztrátorhoz.\",\"bU7oUm\":\"Csak az ilyen státuszú megrendelésekre küldje el\",\"M2w1ni\":\"Csak promóciós kóddal látható\",\"y8Bm7C\":\"Beléptetés megnyitása\",\"RLz7P+\":\"Alkalom megnyitása\",\"cDSdPb\":\"Választható becenév, amely a választókban jelenik meg, pl. \\\"Központi tárgyaló\\\"\",\"HXMJxH\":\"Opcionális szöveg jogi nyilatkozatokhoz, kapcsolattartási információkhoz vagy köszönetnyilvánításhoz (csak egy sor)\",\"L565X2\":\"opciók\",\"8m9emP\":\"vagy adjon hozzá egyetlen időpontot\",\"dSeVIm\":\"rendelés\",\"c/TIyD\":\"Rendelés és jegy\",\"H5qWhm\":\"Rendelés törölve\",\"b6+Y+n\":\"Rendelés befejezve\",\"x4MLWE\":\"Rendelés megerősítése\",\"CsTTH0\":\"Rendelés visszaigazolása sikeresen újraküldve\",\"ppuQR4\":\"Megrendelés létrehozva\",\"0UZTSq\":\"Rendelés pénzneme\",\"xtQzag\":\"Rendelés adatai\",\"HdmwrI\":\"Rendelés e-mail\",\"bwBlJv\":\"Rendelés keresztnév\",\"vrSW9M\":\"A rendelés törölve és visszatérítve lett. A rendelés tulajdonosa értesítve lett.\",\"rzw+wS\":\"Rendelés tulajdonosok\",\"oI/hGR\":\"Rendelésszám\",\"Pc729f\":\"A rendelés offline fizetésre vár\",\"F4NXOl\":\"Rendelés vezetéknév\",\"RQCXz6\":\"Rendelési limitek\",\"SO9AEF\":\"Rendelési limitek beállítva\",\"5RDEEn\":\"Rendelés nyelve\",\"vu6Arl\":\"Megrendelés fizetettként megjelölve\",\"sLbJQz\":\"Rendelés nem található\",\"kvYpYu\":\"Rendelés nem található\",\"i8VBuv\":\"Rendelésszám\",\"eJ8SvM\":\"Rendelésszám, vásárlás dátuma, vásárló e-mailje\",\"FaPYw+\":\"Megrendelő\",\"eB5vce\":\"Megrendelők meghatározott termékkel\",\"CxLoxM\":\"Megrendelők termékekkel\",\"DoH3fD\":\"Rendelés fizetésre vár\",\"UkHo4c\":\"Rendelés hiv.\",\"EZy55F\":\"Megrendelés visszatérítve\",\"6eSHqs\":\"Megrendelés állapotok\",\"oW5877\":\"Rendelés összege\",\"e7eZuA\":\"Megrendelés frissítve\",\"1SQRYo\":\"A rendelés sikeresen frissítve\",\"KndP6g\":\"Rendelés URL\",\"3NT0Ck\":\"Rendelés törölve lett\",\"V5khLm\":\"rendelések\",\"sd5IMt\":\"Befejezett rendelések\",\"5It1cQ\":\"Exportált megrendelések\",\"tlKX/S\":\"A több időpontot átfogó rendeléseket kézi felülvizsgálatra megjelöljük.\",\"UQ0ACV\":\"Rendelések összesen\",\"B/EBQv\":\"Rendelések:\",\"qtGTNu\":\"Organikus fiókok\",\"ucgZ0o\":\"Szervezet\",\"P/JHA4\":\"A szervező sikeresen archiválva\",\"S3CZ5M\":\"Szervezői irányítópult\",\"GzjTd0\":\"A szervező sikeresen törölve\",\"Uu0hZq\":\"Szervező e-mail\",\"Gy7BA3\":\"Szervező e-mail címe\",\"SQqJd8\":\"Szervező nem található\",\"HF8Bxa\":\"A szervező sikeresen visszaállítva\",\"wpj63n\":\"Szervezői beállítások\",\"o1my93\":\"Szervező állapotának frissítése sikertelen. Kérjük, próbálja újra később.\",\"rLHma1\":\"Szervező állapota frissítve\",\"LqBITi\":\"Szervező/alapértelmezett sablon lesz használva\",\"q4zH+l\":\"Szervezők\",\"/IX/7x\":\"Egyéb\",\"RsiDDQ\":\"Egyéb listák (Jegy nem szerepel)\",\"aDfajK\":\"Szabadtéri\",\"qMASRF\":\"Kimenő üzenetek\",\"iCOVQO\":\"Felülírás\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Ár felülírása\",\"cnVIpl\":\"Felülírás eltávolítva\",\"6/dCYd\":\"Áttekintés\",\"6WdDG7\":\"Oldal\",\"8uqsE5\":\"Az oldal már nem elérhető\",\"QkLf4H\":\"Oldal URL-címe\",\"sF+Xp9\":\"Oldal megtekintések\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Fizetett fiókok\",\"5F7SYw\":\"Részleges visszatérítés\",\"fFYotW\":[\"Részben visszatérítve: \",[\"0\"]],\"i8day5\":\"Díj áthárítása a vevőre\",\"k4FLBQ\":\"Áthárítás a vevőre\",\"Ff0Dor\":\"Múlt\",\"BFjW8X\":\"Lejárt\",\"xTPjSy\":\"Múltbeli események\",\"/l/ckQ\":\"URL beillesztése\",\"URAE3q\":\"Szüneteltetve\",\"4fL/V7\":\"Fizetés\",\"OZK07J\":\"Fizessen a feloldáshoz\",\"c2/9VE\":\"Adattartalom\",\"5cxUwd\":\"Fizetés dátuma\",\"ENEPLY\":\"Fizetési mód\",\"8Lx2X7\":\"Fizetés megérkezett\",\"fx8BTd\":\"Fizetések nem elérhetők\",\"C+ylwF\":\"Kifizetések\",\"UbRKMZ\":\"Függőben\",\"UkM20g\":\"Áttekintésre vár\",\"dPYu1F\":\"Résztvevőnként\",\"mQV/nJ\":\"percenként\",\"VlXNyK\":\"Rendelésenként\",\"hauDFf\":\"Jegyenként\",\"mnF83a\":\"Százalékos díj\",\"TNLuRD\":\"Százalékos díj (%)\",\"MixU2P\":\"A százaléknak 0 és 100 között kell lennie\",\"MkuVAZ\":\"Tranzakció összegének százaléka\",\"/Bh+7r\":\"Teljesítmény\",\"fIp56F\":\"Véglegesen törölje ezt az eseményt és az összes kapcsolódó adatot.\",\"nJeeX7\":\"Véglegesen törölje ezt a szervezőt és az összes eseményét.\",\"wfCTgK\":\"Időpont végleges eltávolítása\",\"6kPk3+\":\"Személyes adatok\",\"zmwvG2\":\"Telefon\",\"SdM+Q1\":\"Válassz egy helyszínt\",\"tSR/oe\":\"Válasszon befejezési dátumot\",\"e8kzpp\":\"Válasszon legalább egy napot a hónapból\",\"35C8QZ\":\"Válasszon legalább egy napot a hétből\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Leadva\",\"wBJR8i\":\"Eseményt tervez?\",\"J3lhKT\":\"Platformdíj\",\"RD51+P\":[[\"0\"],\" platformdíj levonva a kifizetésből\"],\"br3Y/y\":\"Platform díjak\",\"3buiaw\":\"Platform díjak jelentés\",\"kv9dM4\":\"Platform bevétel\",\"PJ3Ykr\":\"Kérjük, ellenőrizze a jegyén a frissített időpontot. A jegyei továbbra is érvényesek — nincs szükség teendőre, hacsak az új időpontok nem felelnek meg Önnek. Bármilyen kérdés esetén válaszoljon erre az e-mailre.\",\"OtjenF\":\"Kérjük, adjon meg egy érvényes e-mail címet\",\"jEw0Mr\":\"Kérjük, adjon meg érvényes URL-t.\",\"n8+Ng/\":\"Kérjük, adja meg az 5 jegyű kódot.\",\"r+lQXT\":\"Kérjük, adja meg ÁFA számát\",\"Dvq0wf\":\"Kérjük, adjon meg egy képet.\",\"2cUopP\":\"Kérjük, indítsa újra a pénztári folyamatot.\",\"GoXxOA\":\"Kérjük, válasszon dátumot és időpontot\",\"8KmsFa\":\"Kérjük, válasszon dátumtartományt\",\"EFq6EG\":\"Kérjük, válasszon egy képet.\",\"fuwKpE\":\"Kérjük, próbálja újra.\",\"klWBeI\":\"Kérjük, várjon, mielőtt újabb kódot kér.\",\"hfHhaa\":\"Kérjük, várjon, amíg előkészítjük partnereit az exportálásra...\",\"o+tJN/\":\"Kérjük, várjon, amíg előkészítjük résztvevőit az exportálásra...\",\"+5Mlle\":\"Kérjük, várjon, amíg előkészítjük megrendeléseit az exportálásra...\",\"trnWaw\":\"Lengyel\",\"luHAJY\":\"Népszerű események (Elmúlt 14 nap)\",\"p/78dY\":\"Pozíció\",\"TjX7xL\":\"Pénztár utáni üzenet\",\"OESu7I\":\"Megelőzheti a túlértékesítést azáltal, hogy megosztja a készletet több jegytípus között.\",\"NgVUL2\":\"Pénztári űrlap előnézete\",\"cs5muu\":\"Eseményoldal előnézete\",\"+4yRWM\":\"Jegy ára\",\"Jm2AC3\":\"Árszint\",\"a5jvSX\":\"Ár szintek\",\"ReihZ7\":\"Nyomtatási előnézet\",\"JnuPvH\":\"Jegy nyomtatása\",\"tYF4Zq\":\"Nyomtatás PDF-be\",\"LcET2C\":\"Adatvédelmi irányelvek\",\"8z6Y5D\":\"Visszatérítés feldolgozása\",\"JcejNJ\":\"Rendelés feldolgozása\",\"EWCLpZ\":\"Termék létrehozva\",\"XkFYVB\":\"Termék törölve\",\"YMwcbR\":\"Termék értékesítés, bevétel és adó bontás\",\"ls0mTC\":\"A termékbeállítások nem szerkeszthetők lemondott időpontoknál.\",\"2339ej\":\"Termékbeállítások sikeresen mentve\",\"ldVIlB\":\"Termék frissítve\",\"CP3D8G\":\"Folyamat\",\"JoKGiJ\":\"Promóciós kód\",\"k3wH7i\":\"Promóciós kód felhasználás és kedvezmény bontás\",\"tZqL0q\":\"promóciós kódok\",\"oCHiz3\":\"Promóciós kódok\",\"uEhdRh\":\"Csak promócióval\",\"dLm8V5\":\"A promóciós e-mailek fiók felfüggesztéshez vezethetnek\",\"XoEWtl\":\"Adj meg legalább egy címmezőt az új helyszínhez.\",\"2W/7Gz\":\"Add meg az alábbiakat a Stripe következő ellenőrzése előtt, hogy a kifizetések folyamatosak maradjanak.\",\"aemBRq\":\"Szolgáltató\",\"EEYbdt\":\"Közzététel\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Megvásárolt\",\"JunetL\":\"Vásárló\",\"phmeUH\":\"Vásárló e-mail\",\"ywR4ZL\":\"QR-kódos beléptetés\",\"oWXNE5\":\"Menny.\",\"biEyJ4\":\"Válaszok\",\"k/bJj0\":\"Kérdések átrendezve\",\"b24kPi\":\"Várakozási sor\",\"lTPqpM\":\"Gyors tipp\",\"fqDzSu\":\"Arány\",\"mnUGVC\":\"Túllépte a korlátot. Kérjük, próbálja újra később.\",\"t41hVI\":\"Hely újbóli felajánlása\",\"TNclgc\":\"Újraaktiválja ezt az időpontot? Újra megnyílik a jövőbeli értékesítések számára.\",\"uqoRbb\":\"Valós idejű analitika\",\"xzRvs4\":[\"Termékfrissítések fogadása a \",[\"0\"],\"-től.\"],\"pLXbi8\":\"Legutóbbi fiók regisztrációk\",\"3kJ0gv\":\"Legutóbbi résztvevők\",\"qhfiwV\":\"Legutóbbi beléptetések\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Legutóbbi megrendelések\",\"7hPBBn\":\"címzett\",\"jp5bq8\":\"címzett\",\"yPrbsy\":\"Címzettek\",\"E1F5Ji\":\"A címzettek a küldés után érhetők el\",\"wuhHPE\":\"Ismétlődő\",\"asLqwt\":\"Ismétlődő esemény\",\"D0tAMe\":\"Ismétlődő események\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Átirányítás a Stripe-ra...\",\"pnoTN5\":\"Ajánlási fiókok\",\"ACKu03\":\"Előnézet frissítése\",\"vuFYA6\":\"Az ezen időpontokhoz tartozó összes rendelés visszatérítése\",\"4cRUK3\":\"Az ezen időponthoz tartozó összes rendelés visszatérítése\",\"fKn/k6\":\"Visszatérítés összege\",\"qY4rpA\":\"Visszatérítés sikertelen\",\"TspTcZ\":\"Visszatérítés kiadva\",\"FaK/8G\":[\"Rendelés visszatérítése \",[\"0\"]],\"MGbi9P\":\"Visszatérítés folyamatban\",\"BDSRuX\":[\"Visszatérítve: \",[\"0\"]],\"bU4bS1\":\"Visszatérítések\",\"rYXfOA\":\"Regionális beállítások\",\"5tl0Bp\":\"Regisztrációs kérdések\",\"ZNo5k1\":\"Hátralévő\",\"EMnuA4\":\"Emlékeztető ütemezve\",\"Bjh87R\":\"Címke eltávolítása az összes időpontról\",\"KkJtVK\":\"Újranyitás új értékesítéshez\",\"XJwWJp\":\"Újranyitja ezt a dátumot új értékesítéshez? A korábban lemondott jegyek nem kerülnek visszaállításra — az érintett résztvevők lemondva maradnak, és a már kiadott visszatérítések nem kerülnek visszavonásra.\",\"bAwDQs\":\"Ismétlés minden\",\"CQeZT8\":\"Jelentés nem található\",\"JEPMXN\":\"Új link kérése\",\"TMLAx2\":\"Kötelező\",\"mdeIOH\":\"Kód újraküldése\",\"sQxe68\":\"Visszaigazolás újraküldése\",\"bxoWpz\":\"Megerősítő e-mail újraküldése\",\"G42SNI\":\"E-mail újraküldése\",\"TTpXL3\":[\"Újraküldés \",[\"resendCooldown\"],\" másodperc múlva\"],\"5CiNPm\":\"Jegy újraküldése\",\"Uwsg2F\":\"Lefoglalva\",\"8wUjGl\":\"Lefoglalva eddig:\",\"a5z8mb\":\"Visszaállítás alapárra\",\"kCn6wb\":\"Visszaállítás...\",\"404zLK\":\"Feloldott helyszín vagy helyszín neve\",\"ZlCDf+\":\"Válasz\",\"bsydMp\":\"Válasz részletei\",\"yKu/3Y\":\"Visszaállítás\",\"RokrZf\":\"Esemény visszaállítása\",\"/JyMGh\":\"Szervező visszaállítása\",\"HFvFRb\":\"Állítsa vissza ezt az eseményt, hogy ismét látható legyen.\",\"DDIcqy\":\"Állítsa vissza ezt a szervezőt, és tegye ismét aktívvá.\",\"mO8KLE\":\"találat\",\"6gRgw8\":\"Újrapróbálás\",\"1BG8ga\":\"Összes újrapróbálása\",\"rDC+T6\":\"Feladat újrapróbálása\",\"CbnrWb\":\"Vissza az eseményhez\",\"mdQ0zb\":\"Újrafelhasználható helyszínek az eseményeihez. Az automatikus kiegészítésből létrehozott helyszínek automatikusan ide kerülnek.\",\"XFOPle\":\"Újrahasználat\",\"1Zehp4\":\"Használj újra egy Stripe-kapcsolatot a fiók másik szervezőjétől.\",\"Oo/PLb\":\"Bevételi összefoglaló\",\"O/8Ceg\":\"Mai bevétel\",\"CfuueU\":\"Ajánlat visszavonása\",\"RIgKv+\":\"Egy adott dátumig fut\",\"JYRqp5\":\"Szo\",\"dFFW9L\":[\"Értékesítés véget ért \",[\"0\"]],\"loCKGB\":[\"Értékesítés vége \",[\"0\"]],\"wlfBad\":\"Értékesítési időszak\",\"qi81Jg\":\"Az értékesítési időszak dátumai az ütemezés összes időpontjára érvényesek. Az egyes időpontok árazásának és elérhetőségének szabályozásához használja a felülírásokat az <0>Alkalom-ütemezés oldalon.\",\"5CDM6r\":\"Értékesítési időszak beállítva\",\"ftzaMf\":\"Értékesítési időszak, rendelési limitek, láthatóság\",\"zpekWp\":[\"Értékesítés kezdete \",[\"0\"]],\"mUv9U4\":\"Értékesítések\",\"9KnRdL\":\"Értékesítés szüneteltetve\",\"JC3J0k\":\"Értékesítési, részvételi és beléptetési bontás alkalmanként\",\"3VnlS9\":\"Értékesítések, rendelések és teljesítménymutatók minden eseményhez\",\"3Q1AWe\":\"Értékesítések:\",\"LeuERW\":\"Megegyezik az eseménnyel\",\"B4nE3N\":\"Minta jegyár\",\"8BRPoH\":\"Minta helyszín\",\"PiK6Ld\":\"Szo\",\"+5kO8P\":\"Szombat\",\"zJiuDn\":\"Díj felülírásának mentése\",\"NB8Uxt\":\"Ütemezés mentése\",\"KZrfYJ\":\"Közösségi linkek mentése\",\"9Y3hAT\":\"Sablon mentése\",\"C8ne4X\":\"Jegytervezés mentése\",\"cTI8IK\":\"ÁFA-beállítások mentése\",\"6/TNCd\":\"ÁFA beállítások mentése\",\"4RvD9q\":\"Mentett helyszín\",\"cgw0cL\":\"Mentett helyszínek\",\"lvSrsT\":\"Mentett helyszínek\",\"Fbqm/I\":\"A felülírás mentése dedikált konfigurációt hoz létre ennek a szervezőnek, ha jelenleg a rendszer alapértelmezett beállítását használja.\",\"I+FvbD\":\"Beolvasás\",\"0zd6Nm\":\"Olvass be egy jegyet a résztvevő beléptetéséhez\",\"bQG7Qk\":\"A beolvasott jegyek itt jelennek meg\",\"WDYSLJ\":\"Olvasó mód\",\"gmB6oO\":\"Ütemezés\",\"j6NnBq\":\"Ütemezés sikeresen létrehozva\",\"YP7frt\":\"Az ütemezés ekkor ér véget\",\"QS1Nla\":\"Ütemezés későbbre\",\"NAzVVw\":\"Üzenet ütemezése\",\"Fz09JP\":\"Az ütemezés kezdete\",\"4ba0NE\":\"Ütemezett\",\"qcP/8K\":\"Ütemezett időpont\",\"A1taO8\":\"Keresés\",\"ftNXma\":\"Partnerek keresése...\",\"VMU+zM\":\"Résztvevők keresése\",\"VY+Bdn\":\"Keresés fióknév vagy e-mail alapján...\",\"VX+B3I\":\"Keresés esemény cím vagy szervező alapján...\",\"R0wEyA\":\"Keresés feladat neve vagy kivétel alapján...\",\"VT+urE\":\"Keresés név vagy e-mail alapján...\",\"GHdjuo\":\"Keresés név, e-mail vagy fiók alapján...\",\"4mBFO7\":\"Keresés név, rendelés, jegy vagy email alapján\",\"20ce0U\":\"Keresés rendelésszám, vásárló név vagy e-mail alapján...\",\"4DSz7Z\":\"Keresés tárgy, esemény vagy fiók alapján...\",\"nQC7Z9\":\"Időpontok keresése...\",\"iRtEpV\":\"Időpontok keresése…\",\"JRM7ao\":\"Cím keresése\",\"BWF1kC\":\"Üzenetek keresése...\",\"3aD3GF\":\"Szezonális\",\"ku//5b\":\"Második\",\"Mck5ht\":\"Biztonságos pénztár\",\"s7tXqF\":\"Ütemezés megtekintése\",\"JFap6u\":\"Mit kér még a Stripe\",\"p7xUrt\":\"Válasszon egy kategóriát\",\"hTKQwS\":\"Válasszon dátumot és időpontot\",\"e4L7bF\":\"Válasszon egy üzenetet a tartalom megtekintéséhez\",\"zPRPMf\":\"Válasszon szintet\",\"uqpVri\":\"Válasszon időpontot\",\"BFRSTT\":\"Fiók kiválasztása\",\"wgNoIs\":\"Összes kijelölése\",\"mCB6Je\":\"Összes kiválasztása\",\"aCEysm\":[\"Az összes kiválasztása itt: \",[\"0\"]],\"a6+167\":\"Válasszon eseményt\",\"CFbaPk\":\"Résztvevő csoport kiválasztása\",\"88a49s\":\"Kamera választása\",\"tVW/yo\":\"Pénznem kiválasztása\",\"SJQM1I\":\"Időpont kiválasztása\",\"n9ZhRa\":\"Befejezés dátumának és idejének kiválasztása\",\"gTN6Ws\":\"Befejezési idő kiválasztása\",\"0U6E9W\":\"Eseménykategória kiválasztása\",\"j9cPeF\":\"Eseménytípusok kiválasztása\",\"ypTjHL\":\"Alkalom kiválasztása\",\"KizCK7\":\"Kezdés dátumának és idejének kiválasztása\",\"dJZTv2\":\"Kezdési idő kiválasztása\",\"x8XMsJ\":\"Válassza ki az üzenetküldési szintet ehhez a fiókhoz. Ez szabályozza az üzenetkorlátokat és a link engedélyeket.\",\"aT3jZX\":\"Időzóna kiválasztása\",\"TxfvH2\":\"Válassza ki, mely résztvevők kapják meg ezt az üzenetet\",\"Ropvj0\":\"Válassza ki, mely események indítják el ezt a webhookot.\",\"+6YAwo\":\"kiválasztva\",\"ylXj1N\":\"Kiválasztva\",\"uq3CXQ\":\"Adja el az eseményt teljesen.\",\"j9b/iy\":\"Gyorsan fogy 🔥\",\"73qYgo\":\"Küldés tesztként\",\"HMAqFK\":\"E-mailek küldése résztvevőknek, jegytulajdonosoknak vagy rendelés tulajdonosoknak. Az üzenetek azonnal elküldhetők vagy későbbre ütemezhetők.\",\"22Itl6\":\"Küldjön nekem egy másolatot\",\"NpEm3p\":\"Küldés most\",\"nOBvex\":\"Valós idejű rendelési és résztvevői adatok küldése a külső rendszereibe.\",\"1lNPhX\":\"Visszatérítési értesítő e-mail küldése\",\"eaUTwS\":\"Visszaállítási link küldése\",\"5cV4PY\":\"Küldés minden alkalomra, vagy válasszon egy konkrétat\",\"QEQlnV\":\"Küldje el első üzenetét\",\"3nMAVT\":\"Küldés 2n 4ó múlva\",\"IoAuJG\":\"Küldés...\",\"h69WC6\":\"Elküldve\",\"BVu2Hz\":\"Küldte\",\"ZFa8wv\":\"Akkor kerül elküldésre a résztvevőknek, ha egy ütemezett időpont lemondásra kerül\",\"SPdzrs\":\"Elküldve a vásárlóknak, amikor rendelést adnak le\",\"LxSN5F\":\"Elküldve minden résztvevőnek a jegy részleteivel\",\"hgvbYY\":\"Szeptember\",\"5sN96e\":\"Alkalom lemondva\",\"89xaFU\":\"Állítsa be az alapértelmezett platformdíj-beállításokat az ezen szervező alatt létrehozott új eseményekhez.\",\"eXssj5\":\"Alapértelmezett beállítások megadása az e szervező alatt létrehozott új eseményekhez.\",\"uPe5p8\":\"Állítsa be, meddig tart minden egyes időpont\",\"xNsRxU\":\"Időpontok számának beállítása\",\"ODuUEi\":\"Időpont címkéjének beállítása vagy törlése\",\"buHACR\":\"Állítsa be, hogy minden időpont befejezési ideje ennyivel a kezdési ideje után legyen.\",\"TaeFgl\":\"Beállítás korlátlanra (limit eltávolítása)\",\"pd6SSe\":\"Állítson be egy ismétlődő ütemezést az időpontok automatikus létrehozásához, vagy adja hozzá őket egyenként.\",\"s0FkEx\":\"Bejelentkezési listák beállítása különböző bejáratokhoz, munkamenetekhez vagy napokhoz.\",\"TaWVGe\":\"Kifizetések beállítása\",\"gzXY7l\":\"Ütemezés beállítása\",\"xMO+Ao\":\"Állítsa be szervezetét\",\"h/9JiC\":\"Az ütemezés beállítása\",\"ETC76A\":\"Az alkalom helyszínének vagy online adatainak beállítása, módosítása vagy eltávolítása\",\"C3htzi\":\"Beállítás frissítve\",\"Ohn74G\":\"Beállítás és tervezés\",\"1W5XyZ\":\"A beállítás csak pár percig tart — nincs szükséged meglévő Stripe-fiókra. A Stripe kezeli a kártyákat, tárcákat, regionális fizetési módokat és a csalásvédelmet, hogy az eseményre tudj koncentrálni.\",\"GG7qDw\":\"Partnerlink megosztása\",\"hL7sDJ\":\"Szervezői oldal megosztása\",\"jy6QDF\":\"Megosztott kapacitás kezelés\",\"jDNHW4\":\"Időpontok eltolása\",\"tPfIaW\":[[\"count\"],\" időpont időpontjai eltolva\"],\"WwlM8F\":\"Speciális beállítások\",\"cMW+gm\":[\"Összes platform megjelenítése (további \",[\"0\"],\" értékkel)\"],\"wXi9pZ\":\"Megjegyzések bejelentkezés nélküli személyzetnek\",\"UVPI5D\":\"Kevesebb platform megjelenítése\",\"Eu/N/d\":\"Marketing opt-in jelölőnégyzet megjelenítése\",\"SXzpzO\":\"Marketing opt-in jelölőnégyzet alapértelmezés szerinti megjelenítése\",\"57tTk5\":\"Több időpont megjelenítése\",\"b33PL9\":\"Több platform megjelenítése\",\"Eut7p9\":\"Rendelés adatai bejelentkezés nélküli személyzetnek\",\"+RoWKN\":\"Válaszok bejelentkezés nélküli személyzetnek\",\"t1LIQW\":[[\"0\"],\" / \",[\"totalRows\"],\" rekord megjelenítése\"],\"E717U9\":[\"Megjelenítve: \",[\"0\"],\"–\",[\"1\"],\" / \",[\"2\"]],\"5rzhBQ\":[\"Megjelenítve: \",[\"MAX_VISIBLE\"],\" / \",[\"totalAvailable\"],\" időpont. Gépeljen a kereséshez.\"],\"WSt3op\":[\"Az első \",[\"0\"],\" jelenik meg — a fennmaradó \",[\"1\"],\" alkalom továbbra is célpontja lesz az üzenetnek a küldéskor.\"],\"OJLTEL\":\"A személyzet első megnyitáskor látja.\",\"jVRHeq\":\"Regisztrált\",\"5C7J+P\":\"Egyszeri esemény\",\"E//btK\":\"A manuálisan szerkesztett időpontok kihagyása\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Közösségi\",\"d0rUsW\":\"Közösségi linkek\",\"j/TOB3\":\"Közösségi linkek és weboldal\",\"s9KGXU\":\"Eladva\",\"iACSrw\":\"Néhány adat nem látható nyilvánosan. Jelentkezz be, hogy mindent láss.\",\"KTxc6k\":\"Valami hiba történt, kérjük, próbálja újra, vagy vegye fel a kapcsolatot az ügyfélszolgálattal, ha a probléma továbbra is fennáll.\",\"lkE00/\":\"Valami hiba történt. Kérjük, próbálja újra később.\",\"wdxz7K\":\"Forrás\",\"fDG2by\":\"Spiritualitás\",\"oPaRES\":\"Osszd a beléptetést napok, területek vagy jegytípusok szerint. Oszd meg a linket — fiók nem szükséges.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Személyzeti utasítások\",\"tXkhj/\":\"Kezdés\",\"JcQp9p\":\"Kezdés dátuma és ideje\",\"0m/ekX\":\"Kezdés dátuma és ideje\",\"izRfYP\":\"Kezdés dátuma kötelező\",\"tuO4fV\":\"Az alkalom kezdési dátuma\",\"2R1+Rv\":\"Az esemény kezdési ideje\",\"2Olov3\":\"Az alkalom kezdési ideje\",\"n9ZrDo\":\"Kezdjen el gépelni egy helyszínt vagy címet...\",\"qeFVhN\":[\"Kezdés \",[\"diffDays\"],\" nap múlva\"],\"AOqtxN\":[\"Kezdés \",[\"diffMinutes\"],\" perc múlva\"],\"Otg8Oh\":[\"Kezdés \",[\"h\"],\" ó \",[\"m\"],\" p múlva\"],\"Lo49in\":[\"Kezdés \",[\"seconds\"],\" másodperc múlva\"],\"NqChgF\":\"Holnap kezdődik\",\"2NbyY/\":\"Statisztikák\",\"GVUxAX\":\"A statisztikák a fiók létrehozásának dátumán alapulnak\",\"29Hx9U\":\"Statisztika\",\"5ia+r6\":\"Még szükséges\",\"wuV0bK\":\"Megszemélyesítés leállítása\",\"s/KaDb\":\"Stripe csatlakoztatva\",\"Bk06QI\":\"Stripe csatlakoztatva\",\"akZMv8\":[\"A Stripe-kapcsolat átmásolva innen: \",[\"0\"],\".\"],\"v0aRY1\":\"A Stripe nem küldött beállítási hivatkozást. Próbáld újra.\",\"aKtF0O\":\"Stripe nincs csatlakoztatva\",\"9i0++A\":\"Stripe fizetési azonosító\",\"R1lIMV\":\"A Stripe-nak hamarosan további adatokra lesz szüksége\",\"FzcCHA\":\"A Stripe néhány gyors kérdéssel végigvezet a beállítás befejezésén.\",\"eYbd7b\":\"V\",\"ii0qn/\":\"Tárgy kötelező\",\"M7Uapz\":\"A tárgy itt fog megjelenni\",\"6aXq+t\":\"Tárgy:\",\"JwTmB6\":\"Termék sikeresen másolva\",\"WUOCgI\":\"Hely sikeresen felajánlva\",\"IvxA4G\":[\"Sikeresen felajánlva jegyek \",[\"count\"],\" személynek\"],\"kKpkzy\":\"Sikeresen felajánlva jegyek 1 személynek\",\"Zi3Sbw\":\"Sikeresen eltávolítva a várólistáról\",\"RuaKfn\":\"Cím sikeresen frissítve\",\"kzx0uD\":\"Esemény alapértelmezések sikeresen frissítve\",\"5n+Wwp\":\"Szervező sikeresen frissítve\",\"DMCX/I\":\"Platformdíj alapértékek sikeresen frissítve\",\"URUYHc\":\"Platformdíj beállítások sikeresen frissítve\",\"0Dk/l8\":\"Keresőoptimalizálási beállítások sikeresen frissítve\",\"S8Tua9\":\"Beállítások sikeresen frissítve\",\"MhOoLQ\":\"Közösségi linkek sikeresen frissítve\",\"CNSSfp\":\"Követési beállítások sikeresen frissítve\",\"kj7zYe\":\"Webhook sikeresen frissítve\",\"dXoieq\":\"Összefoglaló\",\"/RfJXt\":[\"Nyári Zenei Fesztivál \",[\"0\"]],\"CWOPIK\":\"Nyári Zenei Fesztivál 2025\",\"D89zck\":\"Vas\",\"DBC3t5\":\"Vasárnap\",\"UaISq3\":\"Svéd\",\"JZTQI0\":\"Szervező váltása\",\"9YHrNC\":\"Rendszer alapértelmezett\",\"lruQkA\":\"Érintsd meg a képernyőt a folytatáshoz\",\"TJUrME\":[[\"0\"],\" kiválasztott alkalom résztvevőit célozza meg.\"],\"yT6dQ8\":\"Beszedett adók adótípus és esemény szerint csoportosítva\",\"Ye321X\":\"Adó neve\",\"WyCBRt\":\"Adó összefoglaló\",\"GkH0Pq\":\"Adók és díjak alkalmazva\",\"Rwiyt2\":\"Adók konfigurálva\",\"iQZff7\":\"Adók, díjak, láthatóság, értékesítési időszak, termék kiemelés és rendelési limitek\",\"SXvRWU\":\"Csapatmunka\",\"vlf/In\":\"Technológia\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Mondja el az embereknek, mire számíthatnak az eseményén.\",\"NiIUyb\":\"Meséljen nekünk az eseményéről.\",\"DovcfC\":\"Meséljen nekünk a szervezetéről. Ez az információ megjelenik az eseményoldalain.\",\"69GWRq\":\"Mondja el, milyen gyakran ismétlődik az eseménye, és mi létrehozzuk az összes időpontot.\",\"mXPbwY\":\"Add meg az ÁFA-regisztrációs státuszodat, hogy a megfelelő ÁFA-kezelést alkalmazhassuk a platformdíjakra.\",\"7wtpH5\":\"Sablon aktív\",\"QHhZeE\":\"Sablon sikeresen létrehozva\",\"xrWdPR\":\"Sablon sikeresen törölve\",\"G04Zjt\":\"Sablon sikeresen mentve\",\"xowcRf\":\"Szolgáltatási feltételek\",\"6K0GjX\":\"A szöveg nehezen olvasható lehet\",\"u0F1Ey\":\"Cs\",\"nm3Iz/\":\"Köszönjük, hogy részt vett!\",\"pYwj0k\":\"Köszönjük,\",\"k3IitN\":\"Vége\",\"KfmPRW\":\"Az oldal háttérszíne. Borítókép használatakor ez átfedésként kerül alkalmazásra.\",\"MDNyJz\":\"A kód 10 percen belül lejár. Ellenőrizze a spam mappáját, ha nem látja az e-mailt.\",\"AIF7J2\":\"Az a pénznem, amelyben a fix díj van meghatározva. A fizetéskor az order pénznemére lesz átváltva.\",\"MJm4Tq\":\"A rendelés pénzneme\",\"cDHM1d\":\"Az e-mail cím megváltozott. A résztvevő új jegyet kap a frissített e-mail címre.\",\"I/NNtI\":\"Az esemény helyszíne\",\"tXadb0\":\"A keresett esemény jelenleg nem elérhető. Lehet, hogy eltávolították, lejárt, vagy az URL hibás.\",\"5fPdZe\":\"Az első dátum, amelytől ez az ütemezés generálódik.\",\"EBzPwC\":\"Az esemény teljes címe\",\"sxKqBm\":\"A teljes rendelési összeg visszatérítésre kerül a vásárló eredeti fizetési módjára.\",\"KgDp6G\":\"A link, amelyet meg próbál nyitni, lejárt vagy már nem érvényes. Kérjük, ellenőrizze az e-mailjét a rendelés kezeléséhez szükséges frissített linkért.\",\"5OmEal\":\"A vásárló nyelve\",\"Np4eLs\":[\"A maximum \",[\"MAX_PREVIEW\"],\" alkalom. Kérjük, csökkentse a dátumtartományt, a gyakoriságot vagy a naponta tartott alkalmak számát.\"],\"sYLeDq\":\"A keresett szervező nem található. Lehet, hogy az oldalt áthelyezték, törölték, vagy az URL hibás.\",\"PCr4zw\":\"A felülírás rögzítésre kerül a rendelés naplójában.\",\"C4nQe5\":\"A platformdíj hozzáadódik a jegyárhoz. A vevők többet fizetnek, de Ön megkapja a teljes jegyárat.\",\"HxxXZO\":\"Az elsődleges márka szín a gombokhoz és kiemelésekhez\",\"z0KrIG\":\"Az ütemezett időpont megadása kötelező\",\"EWErQh\":\"Az ütemezett időpontnak a jövőben kell lennie\",\"UNd0OU\":[\"A(z) \\\"\",[\"title\"],\"\\\" eredetileg \",[\"0\"],\" időpontra ütemezett alkalma át lett ütemezve.\"],\"DEcpfp\":\"A sablon törzse érvénytelen Liquid szintaxist tartalmaz. Kérjük, javítsa ki és próbálja újra.\",\"injXD7\":\"Az ÁFA szám nem érvényesíthető. Kérjük, ellenőrizze a számot és próbálja újra.\",\"A4UmDy\":\"Színház\",\"tDwYhx\":\"Téma és színek\",\"O7g4eR\":\"Ehhez az eseményhez nincsenek közelgő időpontok\",\"HrIl0p\":[\"Nincs erre az időpontra szűkített beléptetési lista. A(z) \\\"\",[\"0\"],\"\\\" lista minden időpont résztvevőit beengedi — a személyzet más időpontra szóló jegy szkennelésekor is sikeres lesz.\"],\"dt3TwA\":\"Ezek az alapértelmezett árak és mennyiségek minden időpontra. A szintekre vonatkozó értékesítési dátumok globálisan érvényesek. Az egyes időpontok árait és mennyiségeit az <0>Alkalom-ütemezés oldalon írhatja felül.\",\"062KsE\":\"Ezek a részletek csak erre az időpontra jelennek meg a résztvevő jegyén és a rendelés összegzésén.\",\"5Eu+tn\":\"Ezek a részletek csak akkor jelennek meg, ha a rendelés sikeresen befejeződik.\",\"jQjwR+\":\"Ezek az adatok felülírnak minden meglévő helyszínt az érintett alkalmaknál, és megjelennek a résztvevők jegyein.\",\"QP3gP+\":\"Ezek a beállítások csak a másolt beágyazási kódra vonatkoznak és nem lesznek mentve.\",\"HirZe8\":\"Ezek a sablonok alapértelmezettként lesznek használva a szervezet összes eseményéhez. Az egyes események felülírhatják ezeket a sablonokat saját egyedi verzióikkal.\",\"lzAaG5\":\"Ezek a sablonok csak ennél az eseménynél írják felül a szervező alapértelmezéseit. Ha itt nincs egyedi sablon beállítva, a szervező sablonját használjuk helyette.\",\"UlykKR\":\"Harmadik\",\"wkP5FM\":\"Ez az esemény minden megfelelő időpontjára érvényes, beleértve a jelenleg nem látható időpontokat is. A frissítés befejezése után az ezeken az időpontokon regisztrált résztvevők elérhetők lesznek az üzenetszerkesztőn keresztül.\",\"SOmGDa\":\"Ez a beléptetési lista egy lemondott alkalomhoz tartozik, ezért már nem használható beléptetésre.\",\"XBNC3E\":\"Ezt a kódot az értékesítések nyomon követésére használjuk. Csak betűk, számok, kötőjelek és aláhúzások engedélyezettek.\",\"AaP0M+\":\"Ez a színkombináció nehezen olvasható lehet egyes felhasználók számára\",\"o1phK/\":[\"Ennek az időpontnak \",[\"orderCount\"],\" érintett rendelése van.\"],\"F/UtGt\":\"Ez az időpont lemondásra került. Még törölheti, hogy véglegesen eltávolítsa.\",\"BLZ7pX\":\"Ez az időpont a múltban van. Létrehozzuk, de nem jelenik meg a résztvevők számára a közelgő időpontok között.\",\"7IIY0z\":\"Ez az időpont kifogyottként van megjelölve.\",\"bddWMP\":\"Ez az időpont már nem elérhető. Kérjük, válasszon másikat.\",\"RzEvf5\":\"Ez az esemény véget ért\",\"YClrdK\":\"Ez az esemény még nem került közzétételre.\",\"dFJnia\":\"Ez a szervezőjének neve, amely megjelenik a felhasználók számára.\",\"vt7jiq\":\"Az aláírási titok csak most jelenik meg. Kérjük, másolja ki most, és tárolja biztonságosan.\",\"L7dIM7\":\"Ez a link érvénytelen vagy lejárt.\",\"MR5ygV\":\"Ez a link már nem érvényes\",\"9LEqK0\":\"Ez a név látható a végfelhasználók számára\",\"QdUMM9\":\"Ez az alkalom megtelt\",\"j5FdeA\":\"Ez a rendelés feldolgozás alatt áll.\",\"sjNPMw\":\"Ez a rendelés elhagyásra került. Bármikor kezdhet új rendelést.\",\"OhCesD\":\"Ez a rendelés törölve lett. Bármikor kezdhet új rendelést.\",\"lyD7rQ\":\"Ez a szervezői profil még nem került közzétételre.\",\"9b5956\":\"Ez az előnézet mutatja, hogyan fog kinézni az e-mail mintaadatokkal. A tényleges e-mailek valódi értékeket fognak használni.\",\"uM9Alj\":\"Ez a termék kiemelten szerepel az esemény oldalán\",\"RqSKdX\":\"Ez a termék elfogyott\",\"W12OdJ\":\"Ez a jelentés csak tájékoztató jellegű. Mindig konzultáljon adószakértővel, mielőtt ezeket az adatokat számviteli vagy adózási célokra használná. Kérjük, ellenőrizze a Stripe irányítópultjával, mivel a Hi.Events esetleg hiányos előzményadatokkal rendelkezik.\",\"0Ew0uk\":\"Ez a jegy most lett beolvasva. Kérjük, várjon mielőtt újra beolvassa.\",\"FYXq7k\":[\"Ez \",[\"loadedAffectedCount\"],\" időpontot érint.\"],\"kvpxIU\":\"Ez értesítésekhez és a felhasználókkal való kommunikációhoz lesz használva.\",\"rhsath\":\"Ez nem lesz látható az ügyfelek számára, de segít azonosítani a partnert.\",\"hV6FeJ\":\"Áramlás\",\"+FjWgX\":\"Csü\",\"kkDQ8m\":\"Csütörtök\",\"0GSPnc\":\"Jegy tervezés\",\"EZC/Cu\":\"Jegy tervezés sikeresen mentve\",\"bbslmb\":\"Jegy tervező\",\"1BPctx\":\"Jegy ehhez:\",\"bgqf+K\":\"Jegytulajdonos e-mail címe\",\"oR7zL3\":\"Jegytulajdonos neve\",\"HGuXjF\":\"Jegytulajdonosok\",\"CMUt3Y\":\"Jegytulajdonosok\",\"awHmAT\":\"Jegy azonosító\",\"6czJik\":\"Jegy logó\",\"OkRZ4Z\":\"Jegy neve\",\"t79rDv\":\"Jegy nem található\",\"6tmWch\":\"Jegy vagy termék\",\"1tfWrD\":\"Jegy előnézet ehhez:\",\"KnjoUA\":\"Jegyár\",\"tGCY6d\":\"Jegy ára\",\"pGZOcL\":\"Jegy sikeresen újraküldve\",\"8jLPgH\":\"Jegy típusa\",\"X26cQf\":\"Jegy URL\",\"8qsbZ5\":\"Jegyértékesítés\",\"zNECqg\":\"jegyek\",\"6GQNLE\":\"Jegyek\",\"NRhrIB\":\"Jegyek és termékek\",\"OrWHoZ\":\"A jegyek automatikusan felajánlásra kerülnek a várólistán lévő ügyfeleknek, amikor felszabadul a kapacitás.\",\"EUnesn\":\"Elérhető jegyek\",\"AGRilS\":\"Eladott jegyek\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Idő\",\"dMtLDE\":\"ezt\",\"/jQctM\":\"Címzett\",\"tiI71C\":\"A korlátozások emeléséhez lépjen kapcsolatba velünk\",\"ecUA8p\":\"Ma\",\"W428WC\":\"Oszlopok kapcsolása\",\"BRMXj0\":\"Holnap\",\"UBSG1X\":\"Legjobb szervezők (Elmúlt 14 nap)\",\"3sZ0xx\":\"Összes fiók\",\"EaAPbv\":\"Fizetett teljes összeg\",\"SMDzqJ\":\"Összes résztvevő\",\"orBECM\":\"Összesen beszedve\",\"k5CU8c\":\"Összes bejegyzés\",\"4B7oCp\":\"Összesített díj\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Összes felhasználó\",\"oJjplO\":\"Összes megtekintés\",\"rBZ9pz\":\"Túrák\",\"orluER\":\"Kövesse nyomon a fióknövekedést és teljesítményt hozzárendelési forrás szerint\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Igaz, ha offline fizetés\",\"9GsDR2\":\"Igaz, ha fizetés folyamatban\",\"GUA0Jy\":\"Próbálj más keresést vagy szűrőt\",\"2P/OWN\":\"Próbálja módosítani a szűrőket, hogy több időpontot lásson.\",\"ouM5IM\":\"Próbáljon másik e-mailt\",\"3DZvE7\":\"Próbálja ki a Hi.Events-et ingyen\",\"7P/9OY\":\"K\",\"vq2WxD\":\"Ked\",\"G3myU+\":\"Kedd\",\"Kz91g/\":\"Török\",\"GdOhw6\":\"Hang kikapcsolása\",\"KUOhTy\":\"Hang bekapcsolása\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Írja be a \\\"törlés\\\" szót a megerősítéshez\",\"XxecLm\":\"Jegy típusa\",\"IrVSu+\":\"Nem sikerült másolni a terméket. Kérjük, ellenőrizze adatait.\",\"Vx2J6x\":\"Nem sikerült lekérni a résztvevőt.\",\"h0dx5e\":\"Nem sikerült csatlakozni a várólistához\",\"DaE0Hg\":\"A résztvevő adatai nem tölthetők be.\",\"GlnD5Y\":\"Nem sikerült betölteni a termékeket ehhez az időponthoz. Kérjük, próbálja újra.\",\"17VbmV\":\"A beléptetés nem vonható vissza\",\"n57zCW\":\"Nem hozzárendelt fiókok\",\"9uI/rE\":\"Visszavon\",\"b9SN9q\":\"Egyedi rendelési hivatkozás\",\"Ef7StM\":\"Ismeretlen\",\"ZBAScj\":\"Ismeretlen résztvevő\",\"MEIAzV\":\"Névtelen\",\"K6L5Mx\":\"Névtelen helyszín\",\"X13xGn\":\"Nem megbízható\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Partner frissítése\",\"59qHrb\":\"Kapacitás frissítése\",\"Gaem9v\":\"Esemény nevének és leírásának frissítése\",\"7EhE4k\":\"Címke frissítése\",\"NPQWj8\":\"Helyszín frissítése\",\"75+lpR\":[\"Frissítés: \",[\"subjectTitle\"],\" — ütemezési változások\"],\"UOGHdA\":[\"Frissítés: \",[\"subjectTitle\"],\" — alkalom időpontja megváltozott\"],\"ogoTrw\":[[\"count\"],\" időpont frissítve\"],\"dDuona\":[[\"count\"],\" időpont kapacitása frissítve\"],\"FT3LSc\":[[\"count\"],\" időpont címkéje frissítve\"],\"8EcY1g\":[\"Helyszín frissítve \",[\"count\"],\" alkalomhoz\"],\"gJQsLv\":\"Borítókép feltöltése a szervezőhöz\",\"4kEGqW\":\"Logó feltöltése a szervezőhöz\",\"lnCMdg\":\"Kép feltöltése\",\"29w7p6\":\"Kép feltöltése...\",\"HtrFfw\":\"URL kötelező\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB olvasó aktív\",\"dyTklH\":\"USB olvasó szünetel\",\"OHJXlK\":\"Használjon <0>Liquid sablonokat az e-mailek személyre szabásához\",\"g0WJMu\":\"Minden időpontra vonatkozó lista használata\",\"0k4cdb\":\"Rendelési adatok használata minden résztvevőhöz. A résztvevők nevei és e-mail címei meg fognak egyezni a vásárló információival.\",\"MKK5oI\":\"Használja az összes időpontra vonatkozó listát, vagy hozzon létre egyet ehhez az időponthoz?\",\"bA31T4\":\"Vásárló adatainak használata minden résztvevőhöz\",\"rnoQsz\":\"Határok, kiemelések és QR kód stílusához használva\",\"BV4L/Q\":\"UTM elemzés\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"ÁFA szám érvényesítése...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"ÁFA-szám\",\"pnVh83\":\"ÁFA szám\",\"CabI04\":\"Az ÁFA szám nem tartalmazhat szóközöket\",\"PMhxAR\":\"Az ÁFA számnak 2 betűs országkóddal kell kezdődnie, amelyet 8-15 alfanumerikus karakter követ (pl. DE123456789)\",\"gPgdNV\":\"ÁFA szám sikeresen érvényesítve\",\"RUMiLy\":\"ÁFA szám érvényesítése sikertelen\",\"vqji3Y\":\"ÁFA szám érvényesítése sikertelen. Kérjük, ellenőrizze az ÁFA számát.\",\"8dENF9\":\"ÁFA a díjon\",\"ZutOKU\":\"ÁFA kulcs\",\"+KJZt3\":\"ÁFA-regisztrált\",\"Nfbg76\":\"ÁFA beállítások sikeresen mentve\",\"UvYql/\":\"ÁFA beállítások mentve. Az ÁFA számot a háttérben érvényesítjük.\",\"bXn1Jz\":\"ÁFA-beállítások frissítve\",\"tJylUv\":\"ÁFA kezelés a platform díjaknál\",\"FlGprQ\":\"ÁFA kezelés a platform díjaknál: EU ÁFA-s vállalkozások használhatják a fordított adózást (0% - ÁFA irányelv 2006/112/EK 196. cikke). Nem ÁFA-s vállalkozásoknál 23%-os ír ÁFA kerül felszámításra.\",\"516oLj\":\"ÁFA érvényesítési szolgáltatás átmenetileg nem elérhető\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"ÁFA: nem regisztrált\",\"AdWhjZ\":\"Ellenőrző kód\",\"QDEWii\":\"Ellenőrzött\",\"wCKkSr\":\"E-mail ellenőrzése\",\"/IBv6X\":\"Ellenőrizze e-mail címét\",\"e/cvV1\":\"Ellenőrzés...\",\"fROFIL\":\"Vietnámi\",\"p5nYkr\":\"Összes megtekintése\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Az összes képesség megtekintése\",\"RnvnDc\":\"Platformon küldött összes üzenet megtekintése\",\"+WFMis\":\"Jelentések megtekintése és letöltése az összes eseményéhez. Csak a befejezett rendelések szerepelnek.\",\"c7VN/A\":\"Válaszok megtekintése\",\"SZw9tS\":\"Részletek megtekintése\",\"9+84uW\":[[\"0\"],\" \",[\"1\"],\" adatainak megtekintése\"],\"FCVmuU\":\"Esemény megtekintése\",\"c6SXHN\":\"Esemény oldal megtekintése\",\"n6EaWL\":\"Naplók megtekintése\",\"OaKTzt\":\"Térkép megtekintése\",\"zNZNMs\":\"Üzenet megtekintése\",\"67OJ7t\":\"Rendelés megtekintése\",\"tKKZn0\":\"Rendelés részleteinek megtekintése\",\"KeCXJu\":\"Rendelési részletek megtekintése, visszatérítések kibocsátása és megerősítések újraküldése.\",\"9jnAcN\":\"Szervezői honlap megtekintése\",\"1J/AWD\":\"Jegy megtekintése\",\"N9FyyW\":\"Regisztrált résztvevők megtekintése, szerkesztése és exportálása.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Várakozik\",\"quR8Qp\":\"Fizetésre vár\",\"KrurBH\":\"Várakozás beolvasásra…\",\"u0n+wz\":\"Várólista\",\"3RXFtE\":\"Várólista engedélyezve\",\"TwnTPy\":\"A várólista-ajánlat lejárt\",\"NzIvKm\":\"Várólista aktiválva\",\"aUi/Dz\":\"Figyelmeztetés: Ez a rendszer alapértelmezett konfigurációja. A módosítások minden olyan fiókot érintenek, amelyhez nincs konkrét konfiguráció hozzárendelve.\",\"qeygIa\":\"Sze\",\"aT/44s\":\"Nem sikerült átmásolni a Stripe-kapcsolatot. Próbáld újra.\",\"RRZDED\":\"Nem találtunk ehhez az e-mail címhez tartozó rendeléseket.\",\"2RZK9x\":\"Nem találtuk a keresett rendelést. A link lejárhatott, vagy a rendelés adatai megváltozhattak.\",\"nefMIK\":\"Nem találtuk a keresett jegyet. A link lejárhatott, vagy a jegy adatai megváltozhattak.\",\"miysJh\":\"Nem találtuk ezt a rendelést. Lehet, hogy el lett távolítva.\",\"ADsQ23\":\"Most nem tudtuk elérni a Stripe-ot. Próbáld újra egy pillanat múlva.\",\"HJKdzP\":\"Hiba történt az oldal betöltésekor. Kérjük, próbálja újra.\",\"jegrvW\":\"A Stripe-pal együttműködve közvetlenül a bankszámládra utaljuk a kifizetéseket.\",\"IfN2Qo\":\"Négyzet alakú logót javasolunk minimum 200x200px mérettel\",\"wJzo/w\":\"Javasolt méretek: 400px x 400px, maximális fájlméret: 5MB.\",\"KRCDqH\":\"Sütiket használunk, hogy jobban megértsük az oldal használatát, és javítsuk az Ön élményét.\",\"x8rEDQ\":\"Több próbálkozás után sem tudtuk érvényesíteni az ÁFA számát. A háttérben folytatjuk a próbálkozást. Kérjük, nézzen vissza később.\",\"iy+M+c\":[\"E-mailben értesítjük, ha hely szabadul fel a következőhöz: \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Mentés után megnyitunk egy üzenetszerkesztőt egy előre kitöltött sablonnal. Ön ellenőrzi és elküldi — automatikusan semmi nem kerül elküldésre.\",\"q1BizZ\":\"Erre az e-mail címre küldjük a jegyeit\",\"ZOmUYW\":\"Az ÁFA számot a háttérben érvényesítjük. Ha bármilyen probléma merül fel, értesítjük.\",\"LKjHr4\":[\"Módosítottuk a(z) \\\"\",[\"title\"],\"\\\" ütemezését — \",[\"description\"],\", amely \",[\"affectedCount\"],\" alkalmat érint.\"],\"Fq/Nx7\":\"Öt számjegyű ellenőrző kódot küldtünk ide:\",\"GdWB+V\":\"Webhook sikeresen létrehozva\",\"2X4ecw\":\"Webhook sikeresen törölve\",\"ndBv0v\":\"Webhook-integrációk\",\"CThMKa\":\"Webhook naplók\",\"I0adYQ\":\"Webhook aláírási titok\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"A Webhook nem küld értesítéseket.\",\"FSaY52\":\"A Webhook értesítéseket küld.\",\"v1kQyJ\":\"Webhookok\",\"On0aF2\":\"Weboldal\",\"0f7U0k\":\"Sze\",\"VAcXNz\":\"Szerda\",\"64X6l4\":\"hét\",\"4XSc4l\":\"Hetente\",\"IAUiSh\":\"hét\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Üdvözöljük újra\",\"QDWsl9\":[\"Üdvözöljük a \",[\"0\"],\" oldalon, \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Üdv a \",[\"0\"],\" oldalon, itt található az összes eseménye.\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"Hány órakor?\",\"FaSXqR\":\"Milyen típusú esemény?\",\"0WyYF4\":\"Mit láthat a bejelentkezés nélküli személyzet\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Amikor egy bejelentkezés törölve lett\",\"RPe6bE\":\"Amikor egy ismétlődő esemény egy időpontja lemondásra kerül\",\"Gmd0hv\":\"Amikor új résztvevő jön létre\",\"zyIyPe\":\"Amikor új esemény jön létre\",\"Lc18qn\":\"Amikor új megrendelés jön létre\",\"dfkQIO\":\"Amikor új termék jön létre\",\"8OhzyY\":\"Amikor egy termék törölve lett\",\"tRXdQ9\":\"Amikor egy termék frissül\",\"9L9/28\":\"Amikor egy termék elfogy, az ügyfelek feliratkozhatnak a várólistára, hogy értesítést kapjanak, ha hely szabadul fel.\",\"Q7CWxp\":\"Amikor egy résztvevő le lett mondva\",\"IuUoyV\":\"Amikor egy résztvevő bejelentkezett\",\"nBVOd7\":\"Amikor egy résztvevő frissül\",\"t7cuMp\":\"Amikor egy eseményt archiválnak\",\"gtoSzE\":\"Amikor egy eseményt frissítenek\",\"ny2r8d\":\"Amikor egy megrendelés törölve lett\",\"c9RYbv\":\"Amikor egy megrendelés fizetettként lett megjelölve\",\"ejMDw1\":\"Amikor egy megrendelés visszatérítésre került\",\"fVPt0F\":\"Amikor egy megrendelés frissül\",\"bcYlvb\":\"Amikor a bejelentkezés lezárul\",\"XIG669\":\"Amikor a bejelentkezés megnyílik\",\"403wpZ\":\"Ha engedélyezve van, az új események lehetővé teszik a résztvevőknek, hogy saját jegyük adatait egy biztonságos linken keresztül kezeljék. Ez eseményenként felülírható.\",\"blXLKj\":\"Ha engedélyezve van, az új események marketing opt-in jelölőnégyzetet jelenítenek meg a fizetés során. Ez eseményenként felülírható.\",\"Kj0Txn\":\"Ha engedélyezve van, a Stripe Connect tranzakciókra nem számítanak fel alkalmazási díjakat. Használja olyan országokban, ahol az alkalmazási díjak nem támogatottak.\",\"tMqezN\":\"A visszatérítések feldolgozás alatt állnak-e\",\"uchB0M\":\"Widget előnézet\",\"uvIqcj\":\"Műhely\",\"EpknJA\":\"Írja ide üzenetét...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"év\",\"zkWmBh\":\"Évente\",\"+BGee5\":\"év\",\"X/azM1\":\"Igen - Van érvényes EU ÁFA regisztrációs számom\",\"Tz5oXG\":\"Igen, rendelés törlése\",\"QlSZU0\":[\"<0>\",[\"0\"],\" megszemélyesítése (\",[\"1\"],\")\"],\"s14PLh\":[\"Részleges visszatérítést bocsát ki. A vásárló \",[\"0\"],\" \",[\"1\"],\" összeget kap vissza.\"],\"o7LgX6\":\"További szolgáltatási díjakat és adókat konfigurálhat a fiókbeállításokban.\",\"rj3A7+\":\"Ezt később egyes időpontoknál felülírhatja.\",\"paWwQ0\":\"Szükség esetén továbbra is manuálisan ajánlhat fel jegyeket.\",\"jTDzpA\":\"Nem archiválhatja a fiókján lévő utolsó aktív szervezőt.\",\"5VGIlq\":\"Elérte az üzenetküldési korlátot.\",\"casL1O\":\"Adók és díjak vannak hozzáadva egy ingyenes termékhez. Szeretné eltávolítani őket?\",\"9jJNZY\":\"Mentés előtt el kell ismernie a felelősségeit\",\"pCLes8\":\"Hozzá kell járulnia az üzenetek fogadásához\",\"FVTVBy\":\"Megerősítenie kell e-mail címét, mielőtt frissítheti a szervezői státuszt.\",\"ze4bi/\":\"Legalább egy alkalmat létre kell hoznia, mielőtt résztvevőket adhatna hozzá ehhez az ismétlődő eseményhez.\",\"w65ZgF\":\"Ellenőriznie kell a fiók e-mail címét, mielőtt módosíthatná az e-mail sablonokat.\",\"FRl8Jv\":\"Ellenőriznie kell fiókja e-mail címét, mielőtt üzeneteket küldhet.\",\"88cUW+\":\"Ön kap\",\"O6/3cu\":\"A következő lépésben beállíthatja az időpontokat, az ütemezést és az ismétlődési szabályokat.\",\"zKAheG\":\"Alkalmak időpontjait módosítja\",\"MNFIxz\":[\"El fog menni ide: \",[\"0\"],\"!\"],\"qGZz0m\":\"Felkerült a várólistára!\",\"/5HL6k\":\"Helyet ajánlottak neked!\",\"gbjFFH\":\"Megváltoztatta az alkalom időpontját\",\"p/Sa0j\":\"Fiókjának üzenetküldési korlátai vannak. A korlátozások emeléséhez lépjen kapcsolatba velünk\",\"x/xjzn\":\"Partnerei sikeresen exportálva.\",\"TF37u6\":\"Résztvevői sikeresen exportálva.\",\"79lXGw\":\"A bejelentkezési lista sikeresen létrehozva. Ossza meg az alábbi linket a bejelentkezési személyzettel.\",\"BnlG9U\":\"A jelenlegi rendelésed el fog veszni.\",\"nBqgQb\":\"Az Ön e-mail címe\",\"GG1fRP\":\"Az eseményed élőben van!\",\"ifRqmm\":\"Üzenetét sikeresen elküldtük!\",\"0/+Nn9\":\"Az üzenetei itt fognak megjelenni\",\"/Rj5P4\":\"Az Ön neve\",\"PFjJxY\":\"Az új jelszónak legalább 8 karakter hosszúnak kell lennie.\",\"gzrCuN\":\"A rendelés adatai frissültek. Megerősítő e-mailt küldtünk az új e-mail címre.\",\"naQW82\":\"A rendelésed törlésre került.\",\"bhlHm/\":\"A rendelése fizetésre vár\",\"XeNum6\":\"Megrendelései sikeresen exportálva.\",\"Xd1R1a\":\"Szervezői címe\",\"WWYHKD\":\"A fizetése banki szintű titkosítással védett\",\"5b3QLi\":\"Az Ön csomagja\",\"N4Zkqc\":\"A mentett időpontszűrője már nem érhető el — az összes időpontot megjelenítjük.\",\"FNO5uZ\":\"A jegye továbbra is érvényes — nincs szükség teendőre, hacsak az új időpont nem felel meg Önnek. Bármilyen kérdés esetén kérjük, válaszoljon erre az e-mailre.\",\"CnZ3Ou\":\"A jegyei megerősítésre kerültek.\",\"EmFsMZ\":\"Az ÁFA száma sorban áll az érvényesítésre\",\"QBlhh4\":\"Az ÁFA száma mentéskor lesz érvényesítve\",\"fT9VLt\":\"A várólista-ajánlata lejárt, és nem tudtuk teljesíteni a rendelését. Kérjük, iratkozzon fel újra a várólistára, hogy értesítést kapjon, amikor újabb helyek szabadulnak fel.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Még nincs megjeleníthető tartalom'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>sikeresen kijelentkezett\"],\"KMgp2+\":[[\"0\"],\" elérhető\"],\"Pmr5xp\":[[\"0\"],\" sikeresen létrehozva\"],\"FImCSc\":[[\"0\"],\" sikeresen frissítve\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" nap, \",[\"hours\"],\" óra, \",[\"minutes\"],\" perc, és \",[\"seconds\"],\" másodperc\"],\"f3RdEk\":[[\"hours\"],\" óra, \",[\"minutes\"],\" perc, és \",[\"seconds\"],\" másodperc\"],\"fyE7Au\":[[\"minutes\"],\" perc és \",[\"seconds\"],\" másodperc\"],\"NlQ0cx\":[[\"organizerName\"],\" első eseménye\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://az-ön-weboldala.com\",\"qnSLLW\":\"<0>Kérjük, adja meg az árat adók és díjak nélkül.<1>Az adók és díjak alább adhatók hozzá.\",\"ZjMs6e\":\"<0>A termékhez elérhető termékek száma<1>Ez az érték felülírható, ha a termékhez <2>Kapacitáskorlátok vannak társítva.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 perc és 0 másodperc\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Fő utca\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Dátum beviteli mező. Tökéletes születési dátum stb. kérésére.\",\"6euFZ/\":[\"Az összes új termékre automatikusan alkalmazásra kerül egy alapértelmezett \",[\"type\"],\" típus. Ezt termékenként felülírhatja.\"],\"SMUbbQ\":\"A legördülő menü csak egy kiválasztást tesz lehetővé\",\"qv4bfj\":\"Díj, például foglalási díj vagy szolgáltatási díj\",\"POT0K/\":\"Fix összeg termékenként. Pl. 0,50 dollár termékenként\",\"f4vJgj\":\"Többsoros szövegbevitel\",\"OIPtI5\":\"A termék árának százaléka. Pl. a termék árának 3,5%-a\",\"ZthcdI\":\"A kedvezmény nélküli promóciós kód elrejtett termékek felfedésére használható.\",\"AG/qmQ\":\"A rádió opció több lehetőséget kínál, de csak egy választható ki.\",\"h179TP\":\"Az esemény rövid leírása, amely megjelenik a keresőmotorok találatai között és a közösségi médiában való megosztáskor. Alapértelmezés szerint az esemény leírása kerül felhasználásra.\",\"WKMnh4\":\"Egysoros szövegbevitel\",\"BHZbFy\":\"Egyetlen kérdés megrendelésenként. Pl. Mi a szállítási címe?\",\"Fuh+dI\":\"Egyetlen kérdés termékenként. Pl. Mi a póló mérete?\",\"RlJmQg\":\"Standard adó, mint az ÁFA vagy a GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Banki átutalások, csekkek vagy egyéb offline fizetési módok elfogadása\",\"hrvLf4\":\"Hitelkártyás fizetések elfogadása a Stripe-pal\",\"bfXQ+N\":\"Meghívó elfogadása\",\"AeXO77\":\"Fiók\",\"lkNdiH\":\"Fióknév\",\"Puv7+X\":\"Fiókbeállítások\",\"OmylXO\":\"Fiók sikeresen frissítve\",\"7L01XJ\":\"Műveletek\",\"FQBaXG\":\"Aktiválás\",\"5T2HxQ\":\"Aktiválás dátuma\",\"F6pfE9\":\"Aktív\",\"/PN1DA\":\"Adjon leírást ehhez a bejelentkezési listához\",\"0/vPdA\":\"Adjon hozzá bármilyen megjegyzést a résztvevőhöz. Ezek nem lesznek láthatók a résztvevő számára.\",\"Or1CPR\":\"Adjon hozzá bármilyen megjegyzést a résztvevőhöz...\",\"l3sZO1\":\"Adjon hozzá bármilyen megjegyzést a megrendeléshez. Ezek nem lesznek láthatók az ügyfél számára.\",\"xMekgu\":\"Adjon hozzá bármilyen megjegyzést a megrendeléshez...\",\"PGPGsL\":\"Leírás hozzáadása\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Adjon hozzá utasításokat az offline fizetésekhez (pl. banki átutalás részletei, hová küldje a csekkeket, fizetési határidők)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Új hozzáadása\",\"TZxnm8\":\"Opció hozzáadása\",\"24l4x6\":\"Termék hozzáadása\",\"8q0EdE\":\"Termék hozzáadása kategóriához\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Adó vagy díj hozzáadása\",\"goOKRY\":\"Szint hozzáadása\",\"oZW/gT\":\"Hozzáadás a naptárhoz\",\"pn5qSs\":\"További információk\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Cím\",\"NY/x1b\":\"Cím 1. sor\",\"POdIrN\":\"Cím 1. sor\",\"cormHa\":\"Cím 2. sor\",\"gwk5gg\":\"Cím 2. sor\",\"U3pytU\":\"Adminisztrátor\",\"HLDaLi\":\"Az adminisztrátor felhasználók teljes hozzáféréssel rendelkeznek az eseményekhez és a fiókbeállításokhoz.\",\"W7AfhC\":\"Az esemény összes résztvevője\",\"cde2hc\":\"Minden termék\",\"5CQ+r0\":\"Engedélyezze a be nem fizetett megrendelésekhez társított résztvevők bejelentkezését\",\"ipYKgM\":\"Keresőmotor indexelésének engedélyezése\",\"LRbt6D\":\"Engedélyezze a keresőmotoroknak az esemény indexelését\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Csodálatos, esemény, kulcsszavak...\",\"hehnjM\":\"Összeg\",\"R2O9Rg\":[\"Fizetett összeg (\",[\"0\"],\")\"],\"V7MwOy\":\"Hiba történt az oldal betöltésekor\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Váratlan hiba történt.\",\"byKna+\":\"Váratlan hiba történt. Kérjük, próbálja újra.\",\"ubdMGz\":\"A terméktulajdonosoktól érkező bármilyen kérdés erre az e-mail címre kerül elküldésre. Ez lesz az „válasz” cím is az eseményről küldött összes e-mailhez.\",\"aAIQg2\":\"Megjelenés\",\"Ym1gnK\":\"alkalmazva\",\"sy6fss\":[\"Alkalmazható \",[\"0\"],\" termékre\"],\"kadJKg\":\"1 termékre vonatkozik\",\"DB8zMK\":\"Alkalmaz\",\"GctSSm\":\"Promóciós kód alkalmazása\",\"ARBThj\":[\"Alkalmazza ezt a \",[\"type\"],\" típust minden új termékre\"],\"S0ctOE\":\"Esemény archiválása\",\"TdfEV7\":\"Archivált\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Biztosan aktiválni szeretné ezt a résztvevőt?\",\"TvkW9+\":\"Biztosan archiválni szeretné ezt az eseményt?\",\"/CV2x+\":\"Biztosan törölni szeretné ezt a résztvevőt? Ez érvényteleníti a jegyét.\",\"YgRSEE\":\"Biztosan törölni szeretné ezt a promóciós kódot?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Biztosan piszkozatba szeretné tenni ezt az eseményt? Ezzel az esemény láthatatlanná válik a nyilvánosság számára.\",\"mEHQ8I\":\"Biztosan nyilvánossá szeretné tenni ezt az eseményt? Ezzel az esemény láthatóvá válik a nyilvánosság számára.\",\"s4JozW\":\"Biztosan vissza szeretné állítani ezt az eseményt? Piszkozatként lesz visszaállítva.\",\"vJuISq\":\"Biztosan törölni szeretné ezt a kapacitás-hozzárendelést?\",\"baHeCz\":\"Biztosan törölni szeretné ezt a bejelentkezési listát?\",\"LBLOqH\":\"Kérdezze meg egyszer megrendelésenként\",\"wu98dY\":\"Kérdezze meg egyszer termékenként\",\"ss9PbX\":\"Résztvevő\",\"m0CFV2\":\"Résztvevő adatai\",\"QKim6l\":\"Résztvevő nem található\",\"R5IT/I\":\"Résztvevő megjegyzései\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Résztvevői jegy\",\"9SZT4E\":\"Résztvevők\",\"iPBfZP\":\"Regisztrált résztvevők\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatikus átméretezés\",\"vZ5qKF\":\"Automatikusan átméretezi a widget magasságát a tartalom alapján. Ha le van tiltva, a widget kitölti a tároló magasságát.\",\"4lVaWA\":\"Offline fizetésre vár\",\"2rHwhl\":\"Offline fizetésre vár\",\"3wF4Q/\":\"Fizetésre vár\",\"ioG+xt\":\"Fizetésre vár\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Kft.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Vissza az esemény oldalára\",\"VCoEm+\":\"Vissza a bejelentkezéshez\",\"k1bLf+\":\"Háttérszín\",\"I7xjqg\":\"Háttér típusa\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Számlázási cím\",\"/xC/im\":\"Számlázási beállítások\",\"rp/zaT\":\"Brazíliai portugál\",\"whqocw\":\"A regisztrációval elfogadja <0>Szolgáltatási feltételeinket és <1>Adatvédelmi irányelveinket.\",\"bcCn6r\":\"Számítás típusa\",\"+8bmSu\":\"Kalifornia\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Mégsem\",\"Gjt/py\":\"E-mail cím módosításának visszavonása\",\"tVJk4q\":\"Megrendelés törlése\",\"Os6n2a\":\"Megrendelés törlése\",\"Mz7Ygx\":[\"Megrendelés törlése \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Törölve\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Kapacitás\",\"V6Q5RZ\":\"Kapacitás-hozzárendelés sikeresen létrehozva\",\"k5p8dz\":\"Kapacitás-hozzárendelés sikeresen törölve\",\"nDBs04\":\"Kapacitás kezelése\",\"ddha3c\":\"A kategóriák lehetővé teszik a termékek csoportosítását. Például létrehozhat egy kategóriát „Jegyek” néven, és egy másikat „Árucikkek” néven.\",\"iS0wAT\":\"A kategóriák segítenek a termékek rendszerezésében. Ez a cím megjelenik a nyilvános eseményoldalon.\",\"eorM7z\":\"Kategóriák sikeresen átrendezve.\",\"3EXqwa\":\"Kategória sikeresen létrehozva\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Jelszó módosítása\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Bejelentkezés \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Bejelentkezés és megrendelés fizetettként jelölése\",\"QYLpB4\":\"Csak bejelentkezés\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Nézze meg ezt az eseményt!\",\"gXcPxc\":\"Beléptetés\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Bejelentkezési lista sikeresen törölve\",\"+hBhWk\":\"A bejelentkezési lista lejárt\",\"mBsBHq\":\"A bejelentkezési lista nem aktív\",\"vPqpQG\":\"Bejelentkezési lista nem található\",\"tejfAy\":\"Bejelentkezési listák\",\"hD1ocH\":\"Bejelentkezési URL a vágólapra másolva\",\"CNafaC\":\"A jelölőnégyzet opciók több kiválasztást is lehetővé tesznek\",\"SpabVf\":\"Jelölőnégyzetek\",\"CRu4lK\":\"Bejelentkezve\",\"znIg+z\":\"Fizetés\",\"1WnhCL\":\"Fizetési beállítások\",\"6imsQS\":\"Kínai (egyszerűsített)\",\"JjkX4+\":\"Válasszon színt a háttérhez\",\"/Jizh9\":\"Válasszon fiókot\",\"3wV73y\":\"Város\",\"FG98gC\":\"Keresési szöveg törlése\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Kattintson a másoláshoz\",\"yz7wBu\":\"Bezárás\",\"62Ciis\":\"Oldalsáv bezárása\",\"EWPtMO\":\"Kód\",\"ercTDX\":\"A kódnak 3 és 50 karakter között kell lennie\",\"oqr9HB\":\"Összecsukja ezt a terméket, amikor az eseményoldal kezdetben betöltődik\",\"jZlrte\":\"Szín\",\"Vd+LC3\":\"A színnek érvényes hexadecimális színkódnak kell lennie. Példa: #ffffff\",\"1HfW/F\":\"Színek\",\"VZeG/A\":\"Hamarosan érkezik\",\"yPI7n9\":\"Vesszővel elválasztott kulcsszavak, amelyek leírják az eseményt. Ezeket a keresőmotorok használják az esemény kategorizálásához és indexeléséhez.\",\"NPZqBL\":\"Megrendelés befejezése\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Fizetés befejezése\",\"qqWcBV\":\"Befejezett\",\"6HK5Ct\":\"Befejezett megrendelések\",\"NWVRtl\":\"Befejezett megrendelések\",\"DwF9eH\":\"Komponens kód\",\"Tf55h7\":\"Konfigurált kedvezmény\",\"7VpPHA\":\"Megerősítés\",\"ZaEJZM\":\"E-mail cím módosításának megerősítése\",\"yjkELF\":\"Új jelszó megerősítése\",\"xnWESi\":\"Jelszó megerősítése\",\"p2/GCq\":\"Jelszó megerősítése\",\"wnDgGj\":\"E-mail cím megerősítése...\",\"pbAk7a\":\"Stripe csatlakoztatása\",\"UMGQOh\":\"Csatlakozás a Stripe-hoz\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Csatlakozási adatok\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Folytatás\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Folytatás gomb szövege\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Másolva\",\"T5rdis\":\"vágólapra másolva\",\"he3ygx\":\"Másolás\",\"r2B2P8\":\"Bejelentkezési URL másolása\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Link másolása\",\"E6nRW7\":\"URL másolása\",\"JNCzPW\":\"Ország\",\"IF7RiR\":\"Borító\",\"hYgDIe\":\"Létrehozás\",\"b9XOHo\":[\"Létrehozás \",[\"0\"]],\"k9RiLi\":\"Termék létrehozása\",\"6kdXbW\":\"Promóciós kód létrehozása\",\"n5pRtF\":\"Jegy létrehozása\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"szervező létrehozása\",\"ipP6Ue\":\"Résztvevő létrehozása\",\"VwdqVy\":\"Kapacitás-hozzárendelés létrehozása\",\"EwoMtl\":\"Kategória létrehozása\",\"XletzW\":\"Kategória létrehozása\",\"WVbTwK\":\"Bejelentkezési lista létrehozása\",\"uN355O\":\"Esemény létrehozása\",\"BOqY23\":\"Új létrehozása\",\"kpJAeS\":\"Szervező létrehozása\",\"a0EjD+\":\"Termék létrehozása\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Promóciós kód létrehozása\",\"B3Mkdt\":\"Kérdés létrehozása\",\"UKfi21\":\"Adó vagy díj létrehozása\",\"d+F6q9\":\"Létrehozva\",\"Q2lUR2\":\"Pénznem\",\"DCKkhU\":\"Jelenlegi jelszó\",\"uIElGP\":\"Egyedi térképek URL\",\"UEqXyt\":\"Egyedi tartomány\",\"876pfE\":\"Ügyfél\",\"QOg2Sf\":\"Testreszabhatja az esemény e-mail és értesítési beállításait.\",\"Y9Z/vP\":\"Testreszabhatja az esemény honlapját és a fizetési üzeneteket.\",\"2E2O5H\":\"Testreszabhatja az esemény egyéb beállításait.\",\"iJhSxe\":\"Testreszabhatja az esemény SEO beállításait.\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Veszélyzóna\",\"ZQKLI1\":\"Veszélyzóna\",\"7p5kLi\":\"Irányítópult\",\"mYGY3B\":\"Dátum\",\"JvUngl\":\"Dátum és idő\",\"JJhRbH\":\"Első nap kapacitás\",\"cnGeoo\":\"Törlés\",\"jRJZxD\":\"Kapacitás törlése\",\"VskHIx\":\"Kategória törlése\",\"Qrc8RZ\":\"Bejelentkezési lista törlése\",\"WHf154\":\"Kód törlése\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Leírás\",\"YC3oXa\":\"Leírás a bejelentkezési személyzet számára\",\"URmyfc\":\"Részletek\",\"1lRT3t\":\"Ezen kapacitás letiltása nyomon követi az értékesítéseket, de nem állítja le őket, amikor a limit elérte a határt.\",\"H6Ma8Z\":\"Kedvezmény\",\"ypJ62C\":\"Kedvezmény %\",\"3LtiBI\":[\"Kedvezmény \",[\"0\"],\"-ban\"],\"C8JLas\":\"Kedvezmény típusa\",\"1QfxQT\":\"Elvet\",\"DZlSLn\":\"Dokumentum címke\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Adomány / Fizess, amennyit szeretnél termék\",\"OvNbls\":\".ics letöltése\",\"kodV18\":\"CSV letöltése\",\"CELKku\":\"Számla letöltése\",\"LQrXcu\":\"Számla letöltése\",\"QIodqd\":\"QR kód letöltése\",\"yhjU+j\":\"Számla letöltése\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Legördülő menü kiválasztása\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Esemény másolása\",\"3ogkAk\":\"Esemény másolása\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Opciók másolása\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Korai madár\",\"ePK91l\":\"Szerkesztés\",\"N6j2JH\":[\"Szerkesztés \",[\"0\"]],\"kBkYSa\":\"Kapacitás szerkesztése\",\"oHE9JT\":\"Kapacitás-hozzárendelés szerkesztése\",\"j1Jl7s\":\"Kategória szerkesztése\",\"FU1gvP\":\"Bejelentkezési lista szerkesztése\",\"iFgaVN\":\"Kód szerkesztése\",\"jrBSO1\":\"Szervező szerkesztése\",\"tdD/QN\":\"Termék szerkesztése\",\"n143Tq\":\"Termékkategória szerkesztése\",\"9BdS63\":\"Promóciós kód szerkesztése\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Kérdés szerkesztése\",\"poTr35\":\"Felhasználó szerkesztése\",\"GTOcxw\":\"Felhasználó szerkesztése\",\"pqFrv2\":\"pl. 2.50 2.50 dollárért\",\"3yiej1\":\"pl. 23.5 23.5%-ért\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"E-mail és értesítési beállítások\",\"ATGYL1\":\"E-mail cím\",\"hzKQCy\":\"E-mail cím\",\"HqP6Qf\":\"E-mail cím módosítása sikeresen törölve\",\"mISwW1\":\"E-mail cím módosítása függőben\",\"APuxIE\":\"E-mail megerősítés újraküldve\",\"YaCgdO\":\"E-mail megerősítés sikeresen újraküldve\",\"jyt+cx\":\"E-mail lábléc üzenet\",\"I6F3cp\":\"E-mail nem ellenőrzött\",\"NTZ/NX\":\"Beágyazási kód\",\"4rnJq4\":\"Beágyazási szkript\",\"8oPbg1\":\"Számlázás engedélyezése\",\"j6w7d/\":\"Engedélyezze ezt a kapacitást, hogy leállítsa a termékértékesítést, amikor a limit elérte a határt.\",\"VFv2ZC\":\"Befejezés dátuma\",\"237hSL\":\"Befejezett\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Angol\",\"MhVoma\":\"Adjon meg egy összeget adók és díjak nélkül.\",\"SlfejT\":\"Hiba\",\"3Z223G\":\"Hiba az e-mail cím megerősítésekor\",\"a6gga1\":\"Hiba az e-mail cím módosításának megerősítésekor\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Esemény\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Esemény dátuma\",\"0Zptey\":\"Esemény alapértelmezett beállításai\",\"QcCPs8\":\"Esemény részletei\",\"6fuA9p\":\"Esemény sikeresen másolva\",\"AEuj2m\":\"Esemény honlapja\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Esemény helyszíne és helyszín adatai\",\"OopDbA\":\"Event page\",\"4/If97\":\"Esemény állapotának frissítése sikertelen. Kérjük, próbálja újra később.\",\"btxLWj\":\"Esemény állapota frissítve\",\"nMU2d3\":\"Esemény URL-je\",\"tst44n\":\"Események\",\"sZg7s1\":\"Lejárati dátum\",\"KnN1Tu\":\"Lejár\",\"uaSvqt\":\"Lejárati dátum\",\"GS+Mus\":\"Exportálás\",\"9xAp/j\":\"Nem sikerült törölni a résztvevőt.\",\"ZpieFv\":\"Nem sikerült törölni a megrendelést.\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Nem sikerült letölteni a számlát. Kérjük, próbálja újra.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Bejelentkezési lista betöltése sikertelen\",\"ZQ15eN\":\"Jegy e-mail újraküldése sikertelen\",\"ejXy+D\":\"Termékek rendezése sikertelen\",\"PLUB/s\":\"Díj\",\"/mfICu\":\"Díjak\",\"LyFC7X\":\"Megrendelések szűrése\",\"cSev+j\":\"Szűrők\",\"CVw2MU\":[\"Szűrők (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Első számla száma\",\"V1EGGU\":\"Keresztnév\",\"kODvZJ\":\"Keresztnév\",\"S+tm06\":\"A keresztnévnek 1 és 50 karakter között kell lennie.\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Először használva\",\"TpqW74\":\"Fix\",\"irpUxR\":\"Fix összeg\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Elfelejtette jelszavát?\",\"2POOFK\":\"Ingyenes\",\"P/OAYJ\":\"Ingyenes termék\",\"vAbVy9\":\"Ingyenes termék, fizetési információ nem szükséges\",\"nLC6tu\":\"Francia\",\"Weq9zb\":\"Általános\",\"DDcvSo\":\"Német\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Vissza a profilhoz\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Naptár\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Bruttó értékesítés\",\"yRg26W\":\"Bruttó értékesítés\",\"R4r4XO\":\"Résztvevők\",\"26pGvx\":\"Van promóciós kódja?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Íme egy példa, hogyan használhatja a komponenst az alkalmazásában.\",\"Y1SSqh\":\"Íme a React komponens, amelyet a widget beágyazásához használhatja az alkalmazásában.\",\"QuhVpV\":[\"Szia \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Rejtett a nyilvánosság elől\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"A rejtett kérdések csak az eseményszervező számára láthatók, az ügyfél számára nem.\",\"vLyv1R\":\"Elrejtés\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Termék elrejtése az értékesítés befejezési dátuma után\",\"06s3w3\":\"Termék elrejtése az értékesítés kezdési dátuma előtt\",\"axVMjA\":\"Termék elrejtése, kivéve, ha a felhasználónak van érvényes promóciós kódja\",\"ySQGHV\":\"Termék elrejtése, ha elfogyott\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Termék elrejtése az ügyfelek elől\",\"Da29Y6\":\"Kérdés elrejtése\",\"fvDQhr\":\"Szint elrejtése a felhasználók elől\",\"lNipG+\":\"Egy termék elrejtése megakadályozza, hogy a felhasználók lássák azt az eseményoldalon.\",\"ZOBwQn\":\"Honlaptervezés\",\"PRuBTd\":\"Honlaptervező\",\"YjVNGZ\":\"Honlap előnézet\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Hány perc áll az ügyfél rendelkezésére a megrendelés befejezéséhez? Legalább 15 percet javaslunk.\",\"ySxKZe\":\"Hányszor használható fel ez a kód?\",\"dZsDbK\":[\"HTML karakterkorlát túllépve: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Elfogadom az <0>általános szerződési feltételeket\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Ha engedélyezve van, a bejelentkezési személyzet bejelentkezettként jelölheti meg a résztvevőket, vagy fizetettként jelölheti meg a megrendelést, és bejelentkezhet a résztvevők. Ha le van tiltva, a fizetetlen megrendelésekhez társított résztvevők nem jelentkezhetnek be.\",\"muXhGi\":\"Ha engedélyezve van, a szervező e-mail értesítést kap, amikor új megrendelés érkezik.\",\"6fLyj/\":\"Ha nem Ön kérte ezt a módosítást, kérjük, azonnal változtassa meg jelszavát.\",\"n/ZDCz\":\"Kép sikeresen törölve\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Kép sikeresen feltöltve\",\"VyUuZb\":\"Kép URL-címe\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inaktív\",\"T0K0yl\":\"Az inaktív felhasználók nem tudnak bejelentkezni.\",\"kO44sp\":\"Adja meg az online esemény csatlakozási adatait. Ezek az adatok megjelennek a megrendelés összefoglaló oldalán és a résztvevő jegy oldalán.\",\"FlQKnG\":\"Adó és díjak belefoglalása az árba\",\"Vi+BiW\":[[\"0\"],\" terméket tartalmaz\"],\"lpm0+y\":\"1 terméket tartalmaz\",\"UiAk5P\":\"Kép beszúrása\",\"OyLdaz\":\"Meghívó újraküldve!\",\"HE6KcK\":\"Meghívó visszavonva!\",\"SQKPvQ\":\"Felhasználó meghívása\",\"bKOYkd\":\"Számla sikeresen letöltve\",\"alD1+n\":\"Számlamegjegyzések\",\"kOtCs2\":\"Számlaszámozás\",\"UZ2GSZ\":\"Számla beállítások\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Tétel\",\"KFXip/\":\"János\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Címke\",\"vXIe7J\":\"Nyelv\",\"2LMsOq\":\"Utolsó 12 hónap\",\"vfe90m\":\"Utolsó 14 nap\",\"aK4uBd\":\"Utolsó 24 óra\",\"uq2BmQ\":\"Utolsó 30 nap\",\"bB6Ram\":\"Utolsó 48 óra\",\"VlnB7s\":\"Utolsó 6 hónap\",\"ct2SYD\":\"Utolsó 7 nap\",\"XgOuA7\":\"Utolsó 90 nap\",\"I3yitW\":\"Utolsó bejelentkezés\",\"1ZaQUH\":\"Vezetéknév\",\"UXBCwc\":\"Vezetéknév\",\"tKCBU0\":\"Utoljára használva\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Hagyja üresen az alapértelmezett „Számla” szó használatához\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Betöltés...\",\"wJijgU\":\"Helyszín\",\"sQia9P\":\"Bejelentkezés\",\"zUDyah\":\"Bejelentkezés...\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Kijelentkezés\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Tegye kötelezővé a számlázási címet a fizetés során\",\"MU3ijv\":\"Tegye kötelezővé ezt a kérdést\",\"wckWOP\":\"Kezelés\",\"onpJrA\":\"Résztvevő kezelése\",\"n4SpU5\":\"Esemény kezelése\",\"WVgSTy\":\"Megrendelés kezelése\",\"1MAvUY\":\"Kezelje az esemény fizetési és számlázási beállításait.\",\"cQrNR3\":\"Profil kezelése\",\"AtXtSw\":\"Kezelje az adókat és díjakat, amelyek alkalmazhatók a termékeire.\",\"ophZVW\":\"Jegyek kezelése\",\"DdHfeW\":\"Kezelje fiókadatait és alapértelmezett beállításait.\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Kezelje felhasználóit és engedélyeiket.\",\"1m+YT2\":\"A kötelező kérdésekre válaszolni kell, mielőtt az ügyfél fizethetne.\",\"Dim4LO\":\"Résztvevő manuális hozzáadása\",\"e4KdjJ\":\"Résztvevő manuális hozzáadása\",\"vFjEnF\":\"Fizetettként jelölés\",\"g9dPPQ\":\"Maximum megrendelésenként\",\"l5OcwO\":\"Üzenet a résztvevőnek\",\"Gv5AMu\":\"Üzenet a résztvevőknek\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Üzenet a vásárlónak\",\"tNZzFb\":\"Üzenet tartalma\",\"lYDV/s\":\"Egyéni résztvevők üzenete\",\"V7DYWd\":\"Üzenet elküldve\",\"t7TeQU\":\"Üzenetek\",\"xFRMlO\":\"Minimum megrendelésenként\",\"QYcUEf\":\"Minimális ár\",\"RDie0n\":\"Egyéb\",\"mYLhkl\":\"Egyéb beállítások\",\"KYveV8\":\"Többsoros szövegdoboz\",\"VD0iA7\":\"Több árlehetőség. Tökéletes a korai madár termékekhez stb.\",\"/bhMdO\":\"Az én csodálatos eseményem leírása...\",\"vX8/tc\":\"Az én csodálatos eseményem címe...\",\"hKtWk2\":\"Profilom\",\"fj5byd\":\"N/A\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Név\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigálás a résztvevőhöz\",\"qqeAJM\":\"Soha\",\"7vhWI8\":\"Új jelszó\",\"1UzENP\":\"Nem\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Nincs megjeleníthető archivált esemény.\",\"q2LEDV\":\"Nincsenek résztvevők ehhez a megrendeléshez.\",\"zlHa5R\":\"Ehhez a megrendeléshez nem adtak hozzá résztvevőket.\",\"Wjz5KP\":\"Nincs megjeleníthető résztvevő\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Nincs kapacitás-hozzárendelés\",\"a/gMx2\":\"Nincsenek bejelentkezési listák\",\"tMFDem\":\"Nincs adat\",\"6Z/F61\":\"Nincs megjeleníthető adat. Kérjük, válasszon dátumtartományt.\",\"fFeCKc\":\"Nincs kedvezmény\",\"HFucK5\":\"Nincs megjeleníthető befejezett esemény.\",\"yAlJXG\":\"Nincs megjeleníthető esemény\",\"GqvPcv\":\"Nincsenek elérhető szűrők\",\"KPWxKD\":\"Nincs megjeleníthető üzenet\",\"J2LkP8\":\"Nincs megjeleníthető megrendelés\",\"RBXXtB\":\"Jelenleg nem állnak rendelkezésre fizetési módok. Kérjük, vegye fel a kapcsolatot az eseményszervezővel segítségért.\",\"ZWEfBE\":\"Fizetés nem szükséges\",\"ZPoHOn\":\"Nincs termék ehhez a résztvevőhöz társítva.\",\"Ya1JhR\":\"Nincsenek termékek ebben a kategóriában.\",\"FTfObB\":\"Még nincsenek termékek\",\"+Y976X\":\"Nincs megjeleníthető promóciós kód\",\"MAavyl\":\"Ehhez a résztvevőhöz nem érkezett válasz.\",\"SnlQeq\":\"Ehhez a megrendeléshez nem tettek fel kérdéseket.\",\"Ev2r9A\":\"Nincs találat\",\"gk5uwN\":\"Nincs találat\",\"RHyZUL\":\"Nincs találat.\",\"RY2eP1\":\"Nem adtak hozzá adókat vagy díjakat.\",\"EdQY6l\":\"Egyik sem\",\"OJx3wK\":\"Nem elérhető\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Jegyzetek\",\"jtrY3S\":\"Még nincs mit mutatni\",\"hFwWnI\":\"Értesítési beállítások\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Szervező értesítése új megrendelésekről\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Engedélyezett napok száma a fizetésre (hagyja üresen a fizetési feltételek kihagyásához a számlákról)\",\"n86jmj\":\"Szám előtag\",\"mwe+2z\":\"Az offline megrendelések nem jelennek meg az esemény statisztikáiban, amíg a megrendelés nem kerül fizetettként megjelölésre.\",\"dWBrJX\":\"Offline fizetés sikertelen. Kérjük, próbálja újra, vagy lépjen kapcsolatba az eseményszervezővel.\",\"fcnqjw\":\"Offline fizetési utasítások\",\"+eZ7dp\":\"Offline fizetések\",\"ojDQlR\":\"Offline fizetési információk\",\"u5oO/W\":\"Offline fizetési beállítások\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"Eladó\",\"Ug4SfW\":\"Miután létrehozott egy eseményt, itt fogja látni.\",\"ZxnK5C\":\"Miután elkezd gyűjteni adatokat, itt fogja látni.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Folyamatban\",\"z+nuVJ\":\"Online esemény\",\"WKHW0N\":\"Online esemény részletei\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Bejelentkezési oldal megnyitása\",\"OdnLE4\":\"Oldalsáv megnyitása\",\"ZZEYpT\":[\"Opció \",[\"i\"]],\"oPknTP\":\"Opcionális további információk, amelyek megjelennek minden számlán (pl. fizetési feltételek, késedelmi díjak, visszatérítési szabályzat).\",\"OrXJBY\":\"Opcionális előtag a számlaszámokhoz (pl. INV-)\",\"0zpgxV\":\"Opciók\",\"BzEFor\":\"vagy\",\"UYUgdb\":\"Megrendelés\",\"mm+eaX\":\"Rendelés szám\",\"B3gPuX\":\"Megrendelés törölve\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Megrendelés dátuma\",\"Tol4BF\":\"Megrendelés részletei\",\"WbImlQ\":\"A megrendelés törölve lett, és a megrendelő értesítést kapott.\",\"nAn4Oe\":\"Megrendelés fizetettként megjelölve\",\"uzEfRz\":\"Megrendelés jegyzetek\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Rendelésszám\",\"acIJ41\":\"Megrendelés állapota\",\"GX6dZv\":\"Megrendelés összefoglaló\",\"tDTq0D\":\"Megrendelés időtúllépés\",\"1h+RBg\":\"Megrendelések\",\"3y+V4p\":\"Szervezet címe\",\"GVcaW6\":\"Szervezet részletei\",\"nfnm9D\":\"Szervezet neve\",\"G5RhpL\":\"Szervező\",\"mYygCM\":\"Szervező kötelező\",\"Pa6G7v\":\"Szervező neve\",\"l894xP\":\"A szervezők csak eseményeket és termékeket kezelhetnek. Nem kezelhetik a felhasználókat, fiókbeállításokat vagy számlázási információkat.\",\"fdjq4c\":\"Kitöltés\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Oldal nem található\",\"QbrUIo\":\"Oldalmegtekintések\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"fizetett\",\"HVW65c\":\"Fizetős termék\",\"ZfxaB4\":\"Részben visszatérítve\",\"8ZsakT\":\"Jelszó\",\"TUJAyx\":\"A jelszónak legalább 8 karakterből kell állnia\",\"vwGkYB\":\"A jelszónak legalább 8 karakter hosszúnak kell lennie.\",\"BLTZ42\":\"Jelszó sikeresen visszaállítva. Kérjük, jelentkezzen be új jelszavával.\",\"f7SUun\":\"A jelszavak nem egyeznek.\",\"aEDp5C\":\"Illessze be ezt oda, ahová a widgetet szeretné.\",\"+23bI/\":\"Patrik\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Fizetés\",\"Lg+ewC\":\"Fizetés és számlázás\",\"DZjk8u\":\"Fizetési és számlázási beállítások\",\"lflimf\":\"Fizetési határidő\",\"JhtZAK\":\"Fizetés sikertelen\",\"JEdsvQ\":\"Fizetési utasítások\",\"bLB3MJ\":\"Fizetési módok\",\"QzmQBG\":\"Fizetési szolgáltató\",\"lsxOPC\":\"Fizetés beérkezett\",\"wJTzyi\":\"Fizetési állapot\",\"xgav5v\":\"Fizetés sikeres!\",\"R29lO5\":\"Fizetési feltételek\",\"/roQKz\":\"Százalék\",\"vPJ1FI\":\"Százalékos összeg\",\"xdA9ud\":\"Helyezze ezt a weboldalának részébe.\",\"blK94r\":\"Kérjük, adjon hozzá legalább egy opciót.\",\"FJ9Yat\":\"Kérjük, ellenőrizze, hogy a megadott információk helyesek-e.\",\"TkQVup\":\"Kérjük, ellenőrizze e-mail címét és jelszavát, majd próbálja újra.\",\"sMiGXD\":\"Kérjük, ellenőrizze, hogy az e-mail címe érvényes-e.\",\"Ajavq0\":\"Kérjük, ellenőrizze e-mail címét az e-mail cím megerősítéséhez.\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Kérjük, folytassa az új lapon.\",\"hcX103\":\"Kérjük, hozzon létre egy terméket.\",\"cdR8d6\":\"Kérjük, hozzon létre egy jegyet.\",\"x2mjl4\":\"Kérjük, adjon meg egy érvényes kép URL-t, amely egy képre mutat.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Kérjük, vegye figyelembe\",\"C63rRe\":\"Kérjük, térjen vissza az esemény oldalára az újrakezdéshez.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Kérjük, válasszon ki legalább egy terméket.\",\"igBrCH\":\"Kérjük, erősítse meg e-mail címét az összes funkció eléréséhez.\",\"/IzmnP\":\"Kérjük, várjon, amíg előkészítjük számláját...\",\"MOERNx\":\"Portugál\",\"qCJyMx\":\"Fizetés utáni üzenet\",\"g2UNkE\":\"Működteti:\",\"Rs7IQv\":\"Fizetés előtti üzenet\",\"rdUucN\":\"Előnézet\",\"a7u1N9\":\"Ár\",\"CmoB9j\":\"Ármegjelenítési mód\",\"BI7D9d\":\"Ár nincs beállítva\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Ár típusa\",\"6RmHKN\":\"Elsődleges szín\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Elsődleges szövegszín\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Összes jegy nyomtatása\",\"DKwDdj\":\"Jegyek nyomtatása\",\"K47k8R\":\"Termék\",\"1JwlHk\":\"Termékkategória\",\"U61sAj\":\"Termékkategória sikeresen frissítve.\",\"1USFWA\":\"Termék sikeresen törölve\",\"4Y2FZT\":\"Termék ár típusa\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Termék értékesítés\",\"U/R4Ng\":\"Terméksor\",\"sJsr1h\":\"Termék típusa\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Termék(ek)\",\"N0qXpE\":\"Termékek\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Eladott termékek\",\"/u4DIx\":\"Eladott termékek\",\"DJQEZc\":\"Termékek sikeresen rendezve\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil sikeresen frissítve\",\"cl5WYc\":[\"Promóciós kód \",[\"promo_code\"],\" alkalmazva\"],\"P5sgAk\":\"Promóciós kód\",\"yKWfjC\":\"Promóciós kód oldal\",\"RVb8Fo\":\"Promóciós kódok\",\"BZ9GWa\":\"A promóciós kódok kedvezmények, előzetes hozzáférés vagy különleges hozzáférés biztosítására használhatók az eseményéhez.\",\"OP094m\":\"Promóciós kódok jelentés\",\"4kyDD5\":\"Adjon meg további kontextust vagy utasításokat ehhez a kérdéshez. Használja ezt a mezőt feltételek\\nés kikötések, irányelvek vagy bármilyen fontos információ hozzáadásához, amit a résztvevőknek tudniuk kell a válasz előtt.\",\"toutGW\":\"QR kód\",\"LkMOWF\":\"Elérhető mennyiség\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Kérdés törölve\",\"avf0gk\":\"Kérdés leírása\",\"oQvMPn\":\"Kérdés címe\",\"enzGAL\":\"Kérdések\",\"ROv2ZT\":\"Kérdések és válaszok\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Rádió opció\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Címzett\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Visszatérítés sikertelen\",\"n10yGu\":\"Megrendelés visszatérítése\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Visszatérítés függőben\",\"xHpVRl\":\"Visszatérítés állapota\",\"/BI0y9\":\"Visszatérítve\",\"fgLNSM\":\"Regisztráció\",\"9+8Vez\":\"Fennmaradó felhasználások\",\"tasfos\":\"eltávolítás\",\"t/YqKh\":\"Eltávolítás\",\"t9yxlZ\":\"Jelentések\",\"prZGMe\":\"Számlázási cím kötelező\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"E-mail megerősítés újraküldése\",\"wIa8Qe\":\"Meghívó újraküldése\",\"VeKsnD\":\"Megrendelés e-mail újraküldése\",\"dFuEhO\":\"Jegy e-mail újraküldése\",\"o6+Y6d\":\"Újraküldés...\",\"OfhWJH\":\"Visszaállítás\",\"RfwZxd\":\"Jelszó visszaállítása\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Esemény visszaállítása\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Vissza az esemény oldalára\",\"8YBH95\":\"Bevétel\",\"PO/sOY\":\"Meghívó visszavonása\",\"GDvlUT\":\"Szerep\",\"ELa4O9\":\"Értékesítés befejezési dátuma\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Értékesítés kezdési dátuma\",\"hBsw5C\":\"Értékesítés befejezve\",\"kpAzPe\":\"Értékesítés kezdete\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Mentés\",\"IUwGEM\":\"Változások mentése\",\"U65fiW\":\"Szervező mentése\",\"UGT5vp\":\"Beállítások mentése\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Keresés résztvevő neve, e-mail címe vagy rendelési száma alapján...\",\"+pr/FY\":\"Keresés eseménynév alapján...\",\"3zRbWw\":\"Keresés név, e-mail vagy rendelési szám alapján...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Keresés név alapján...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Kapacitás-hozzárendelések keresése...\",\"r9M1hc\":\"Bejelentkezési listák keresése...\",\"+0Yy2U\":\"Termékek keresése\",\"YIix5Y\":\"Keresés...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Másodlagos szín\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Másodlagos szövegszín\",\"02ePaq\":[\"Válasszon \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Kategória kiválasztása...\",\"kWI/37\":\"Szervező kiválasztása\",\"ixIx1f\":\"Termék kiválasztása\",\"3oSV95\":\"Terméksor kiválasztása\",\"C4Y1hA\":\"Termékek kiválasztása\",\"hAjDQy\":\"Állapot kiválasztása\",\"QYARw/\":\"Jegy kiválasztása\",\"OMX4tH\":\"Jegyek kiválasztása\",\"DrwwNd\":\"Időszak kiválasztása\",\"O/7I0o\":\"Válasszon...\",\"JlFcis\":\"Küldés\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Üzenet küldése\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Üzenet küldése\",\"D7ZemV\":\"Rendelés visszaigazoló és jegy e-mail küldése\",\"v1rRtW\":\"Teszt küldése\",\"4Ml90q\":\"Keresőoptimalizálás\",\"j1VfcT\":\"Keresőoptimalizálási leírás\",\"/SIY6o\":\"Keresőoptimalizálási kulcsszavak\",\"GfWoKv\":\"Keresőoptimalizálási beállítások\",\"rXngLf\":\"Keresőoptimalizálási cím\",\"/jZOZa\":\"Szolgáltatási díj\",\"Bj/QGQ\":\"Adjon meg minimális árat, és hagyja, hogy a felhasználók többet fizessenek, ha úgy döntenek.\",\"L0pJmz\":\"Állítsa be a számlaszámozás kezdő számát. Ez nem módosítható, amint a számlák elkészültek.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Beállítások\",\"Z8lGw6\":\"Megosztás\",\"B2V3cA\":\"Esemény megosztása\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Elérhető termékmennyiség megjelenítése\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Több mutatása\",\"izwOOD\":\"Adó és díjak külön megjelenítése\",\"1SbbH8\":\"Az ügyfélnek a fizetés után, a rendelésösszegző oldalon jelenik meg.\",\"YfHZv0\":\"Az ügyfélnek a fizetés előtt jelenik meg.\",\"CBBcly\":\"Gyakori címmezőket mutat, beleértve az országot is.\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Egysoros szövegmező\",\"+P0Cn2\":\"Lépés kihagyása\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Elfogyott\",\"Mi1rVn\":\"Elfogyott\",\"nwtY4N\":\"Valami hiba történt\",\"GRChTw\":\"Hiba történt az adó vagy díj törlésekor\",\"YHFrbe\":\"Valami hiba történt! Kérjük, próbálja újra.\",\"kf83Ld\":\"Valami hiba történt.\",\"fWsBTs\":\"Valami hiba történt. Kérjük, próbálja újra.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Sajnáljuk, ez a promóciós kód nem felismerhető.\",\"65A04M\":\"Spanyol\",\"mFuBqb\":\"Standard termék fix árral\",\"D3iCkb\":\"Kezdés dátuma\",\"/2by1f\":\"Állam vagy régió\",\"uAQUqI\":\"Állapot\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"A Stripe fizetések nincsenek engedélyezve ehhez az eseményhez.\",\"UJmAAK\":\"Tárgy\",\"X2rrlw\":\"Részösszeg\",\"zzDlyQ\":\"Sikeres\",\"b0HJ45\":[\"Sikeres! \",[\"0\"],\" hamarosan e-mailt kap.\"],\"BJIEiF\":[\"Sikeresen \",[\"0\"],\" résztvevő\"],\"OtgNFx\":\"E-mail cím sikeresen megerősítve\",\"IKwyaF\":\"E-mail cím módosítás sikeresen megerősítve\",\"zLmvhE\":\"Résztvevő sikeresen létrehozva\",\"gP22tw\":\"Termék sikeresen létrehozva\",\"9mZEgt\":\"Promóciós kód sikeresen létrehozva\",\"aIA9C4\":\"Kérdés sikeresen létrehozva\",\"J3RJSZ\":\"Résztvevő sikeresen frissítve\",\"3suLF0\":\"Kapacitás-hozzárendelés sikeresen frissítve\",\"Z+rnth\":\"Bejelentkezési lista sikeresen frissítve\",\"vzJenu\":\"E-mail beállítások sikeresen frissítve\",\"7kOMfV\":\"Esemény sikeresen frissítve\",\"G0KW+e\":\"Honlapterv sikeresen frissítve\",\"k9m6/E\":\"Honlapbeállítások sikeresen frissítve\",\"y/NR6s\":\"Helyszín sikeresen frissítve\",\"73nxDO\":\"Egyéb beállítások sikeresen frissítve\",\"4H80qv\":\"Megrendelés sikeresen frissítve\",\"6xCBVN\":\"Fizetési és számlázási beállítások sikeresen frissítve\",\"1Ycaad\":\"Termék sikeresen frissítve\",\"70dYC8\":\"Promóciós kód sikeresen frissítve\",\"F+pJnL\":\"Keresőoptimalizálási beállítások sikeresen frissítve\",\"DXZRk5\":\"100-as lakosztály\",\"GNcfRk\":\"Támogatási e-mail\",\"uRfugr\":\"Póló\",\"JpohL9\":\"Adó\",\"geUFpZ\":\"Adó és díjak\",\"dFHcIn\":\"Adó adatok\",\"wQzCPX\":\"Adózási információk, amelyek minden számla alján megjelennek (pl. adószám, adóazonosító szám).\",\"0RXCDo\":\"Adó vagy díj sikeresen törölve\",\"ZowkxF\":\"Adók\",\"qu6/03\":\"Adók és díjak\",\"gypigA\":\"Ez a promóciós kód érvénytelen.\",\"5ShqeM\":\"A keresett bejelentkezési lista nem létezik.\",\"QXlz+n\":\"Az események alapértelmezett pénzneme.\",\"mnafgQ\":\"Az események alapértelmezett időzónája.\",\"o7s5FA\":\"Az a nyelv, amelyen a résztvevő e-maileket kap.\",\"NlfnUd\":\"A link, amire kattintott, érvénytelen.\",\"HsFnrk\":[\"A termékek maximális száma \",[\"0\"],\" számára \",[\"1\"]],\"TSAiPM\":\"A keresett oldal nem létezik.\",\"MSmKHn\":\"Az ügyfélnek megjelenő ár tartalmazza az adókat és díjakat.\",\"6zQOg1\":\"Az ügyfélnek megjelenő ár nem tartalmazza az adókat és díjakat. Külön lesznek feltüntetve.\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Az esemény címe, amely megjelenik a keresőmotorok találatai között és a közösségi médiában való megosztáskor. Alapértelmezés szerint az esemény címe kerül felhasználásra.\",\"wDx3FF\":\"Nincsenek elérhető termékek ehhez az eseményhez.\",\"pNgdBv\":\"Nincsenek elérhető termékek ebben a kategóriában.\",\"rMcHYt\":\"Függőben lévő visszatérítés van. Kérjük, várja meg a befejezését, mielőtt újabb visszatérítést kérne.\",\"F89D36\":\"Hiba történt a megrendelés fizetettként való megjelölésekor.\",\"68Axnm\":\"Hiba történt a kérés feldolgozása során. Kérjük, próbálja újra.\",\"mVKOW6\":\"Hiba történt az üzenet küldésekor.\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Ennek a résztvevőnek van egy kifizetetlen megrendelése.\",\"mf3FrP\":\"Ez a kategória még nem tartalmaz termékeket.\",\"8QH2Il\":\"Ez a kategória el van rejtve a nyilvánosság elől.\",\"xxv3BZ\":\"Ez a bejelentkezési lista lejárt.\",\"Sa7w7S\":\"Ez a bejelentkezési lista lejárt, és már nem használható bejelentkezéshez.\",\"Uicx2U\":\"Ez a bejelentkezési lista aktív.\",\"1k0Mp4\":\"Ez a bejelentkezési lista még nem aktív.\",\"K6fmBI\":\"Ez a bejelentkezési lista még nem aktív, és nem használható bejelentkezéshez.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Ez az információ megjelenik a fizetési oldalon, a megrendelés összefoglaló oldalán és a megrendelés visszaigazoló e-mailben.\",\"XAHqAg\":\"Ez egy általános termék, mint egy póló vagy egy bögre. Nem kerül jegy kiállításra.\",\"CNk/ro\":\"Ez egy online esemény.\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Ez az üzenet szerepelni fog az eseményről küldött összes e-mail láblécében.\",\"55i7Fa\":\"Ez az üzenet csak akkor jelenik meg, ha a megrendelés sikeresen befejeződött. A fizetésre váró megrendelések nem jelenítik meg ezt az üzenetet.\",\"RjwlZt\":\"Ez a megrendelés már ki lett fizetve.\",\"5K8REg\":\"Ez a megrendelés már visszatérítésre került.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Ez a megrendelés törölve lett.\",\"Q0zd4P\":\"Ez a megrendelés lejárt. Kérjük, kezdje újra.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Ez a megrendelés kész.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Ez a megrendelési oldal már nem elérhető.\",\"i0TtkR\":\"Ez felülírja az összes láthatósági beállítást, és elrejti a terméket minden ügyfél elől.\",\"cRRc+F\":\"Ez a termék nem törölhető, mert megrendeléshez van társítva. Helyette elrejtheti.\",\"3Kzsk7\":\"Ez a termék egy jegy. A vásárlók jegyet kapnak a vásárláskor.\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Ez a jelszó-visszaállító link érvénytelen vagy lejárt.\",\"IV9xTT\":\"Ez a felhasználó nem aktív, mivel nem fogadta el a meghívóját.\",\"5AnPaO\":\"jegy\",\"kjAL4v\":\"Jegy\",\"dtGC3q\":\"Jegy e-mailt újraküldték a résztvevőnek.\",\"54q0zp\":\"Jegyek ehhez:\",\"xN9AhL\":[\"Szint \",[\"0\"]],\"jZj9y9\":\"Többszintű termék\",\"8wITQA\":\"A többszintű termékek lehetővé teszik, hogy ugyanahhoz a termékhez több árlehetőséget kínáljon. Ez tökéletes a korai madár termékekhez, vagy különböző árlehetőségek kínálásához különböző embercsoportok számára.\",\"nn3mSR\":\"Hátralévő idő:\",\"s/0RpH\":\"Felhasználások száma\",\"y55eMd\":\"Felhasználások száma\",\"40Gx0U\":\"Időzóna\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Eszközök\",\"72c5Qo\":\"Összesen\",\"YXx+fG\":\"Összesen kedvezmények előtt\",\"NRWNfv\":\"Összes kedvezmény összege\",\"BxsfMK\":\"Összes díj\",\"2bR+8v\":\"Összes bruttó értékesítés\",\"mpB/d9\":\"Teljes megrendelési összeg\",\"m3FM1g\":\"Összes visszatérített\",\"jEbkcB\":\"Összes visszatérített\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Összes adó\",\"+zy2Nq\":\"Típus\",\"FMdMfZ\":\"Nem sikerült bejelentkezni a résztvevőnek.\",\"bPWBLL\":\"Nem sikerült kijelentkezni a résztvevőnek.\",\"9+P7zk\":\"Nem sikerült létrehozni a terméket. Kérjük, ellenőrizze adatait.\",\"WLxtFC\":\"Nem sikerült létrehozni a terméket. Kérjük, ellenőrizze adatait.\",\"/cSMqv\":\"Nem sikerült kérdést létrehozni. Kérjük, ellenőrizze adatait.\",\"MH/lj8\":\"Nem sikerült frissíteni a kérdést. Kérjük, ellenőrizze adatait.\",\"nnfSdK\":\"Egyedi ügyfelek\",\"Mqy/Zy\":\"Egyesült Államok\",\"NIuIk1\":\"Korlátlan\",\"/p9Fhq\":\"Korlátlanul elérhető\",\"E0q9qH\":\"Korlátlan felhasználás engedélyezett\",\"h10Wm5\":\"Kifizetetlen megrendelés\",\"ia8YsC\":\"Közelgő\",\"TlEeFv\":\"Közelgő események\",\"L/gNNk\":[\"Frissítés \",[\"0\"]],\"+qqX74\":\"Eseménynév, leírás és dátumok frissítése\",\"vXPSuB\":\"Profil frissítése\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL a vágólapra másolva\",\"e5lF64\":\"Használati példa\",\"fiV0xj\":\"Használati limit\",\"sGEOe4\":\"Használja a borítókép elmosódott változatát háttérként.\",\"OadMRm\":\"Borítókép használata\",\"7PzzBU\":\"Felhasználó\",\"yDOdwQ\":\"Felhasználókezelés\",\"Sxm8rQ\":\"Felhasználók\",\"VEsDvU\":\"A felhasználók módosíthatják e-mail címüket a <0>Profilbeállítások menüpontban.\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"ÁFA\",\"E/9LUk\":\"Helyszín neve\",\"jpctdh\":\"Megtekintés\",\"Pte1Hv\":\"Résztvevő adatainak megtekintése\",\"/5PEQz\":\"Eseményoldal megtekintése\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Megtekintés a Google Térképen\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP bejelentkezési lista\",\"tF+VVr\":\"VIP jegy\",\"2q/Q7x\":\"Láthatóság\",\"vmOFL/\":\"Nem sikerült feldolgozni a fizetését. Kérjük, próbálja újra, vagy lépjen kapcsolatba a támogatással.\",\"45Srzt\":\"Nem sikerült törölni a kategóriát. Kérjük, próbálja újra.\",\"/DNy62\":[\"Nem találtunk jegyeket, amelyek megfelelnek a következőnek: \",[\"0\"]],\"1E0vyy\":\"Nem sikerült betölteni az adatokat. Kérjük, próbálja újra.\",\"NmpGKr\":\"Nem sikerült átrendezni a kategóriákat. Kérjük, próbálja újra.\",\"BJtMTd\":\"Javasolt méretek: 1950px x 650px, 3:1 arány, maximális fájlméret: 5MB.\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Nem sikerült megerősíteni a fizetését. Kérjük, próbálja újra, vagy lépjen kapcsolatba a támogatással.\",\"Gspam9\":\"Megrendelését feldolgozzuk. Kérjük, várjon...\",\"LuY52w\":\"Üdv a fedélzeten! Kérjük, jelentkezzen be a folytatáshoz.\",\"dVxpp5\":[\"Üdv újra, \",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Mik azok a többszintű termékek?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Mi az a kategória?\",\"gxeWAU\":\"Mely termékekre vonatkozik ez a kód?\",\"hFHnxR\":\"Mely termékekre vonatkozik ez a kód? (Alapértelmezés szerint mindenre vonatkozik)\",\"AeejQi\":\"Mely termékekre kell vonatkoznia ennek a kapacitásnak?\",\"Rb0XUE\":\"Mikor érkezik?\",\"5N4wLD\":\"Milyen típusú kérdés ez?\",\"gyLUYU\":\"Ha engedélyezve van, számlák készülnek a jegyrendelésekről. A számlákat a rendelés visszaigazoló e-maillel együtt küldjük el. A résztvevők a rendelés visszaigazoló oldaláról is letölthetik számláikat.\",\"D3opg4\":\"Ha az offline fizetések engedélyezve vannak, a felhasználók befejezhetik megrendeléseiket és megkaphatják jegyeiket. Jegyükön egyértelműen fel lesz tüntetve, hogy a megrendelés nincs kifizetve, és a bejelentkezési eszköz értesíti a bejelentkezési személyzetet, ha egy megrendelés fizetést igényel.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Mely jegyeket kell ehhez a bejelentkezési listához társítani?\",\"S+OdxP\":\"Ki szervezi ezt az eseményt?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Kinek kell feltenni ezt a kérdést?\",\"VxFvXQ\":\"Widget beágyazása\",\"v1P7Gm\":\"Widget beállítások\",\"b4itZn\":\"Dolgozik\",\"hqmXmc\":\"Dolgozik...\",\"+G/XiQ\":\"Év elejétől napjainkig\",\"l75CjT\":\"Igen\",\"QcwyCh\":\"Igen, távolítsa el őket.\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"E-mail címét <0>\",[\"0\"],\" címre módosítja.\"],\"gGhBmF\":\"Offline állapotban van.\",\"sdB7+6\":\"Létrehozhat egy promóciós kódot, amely ezt a terméket célozza meg a\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Nem módosíthatja a terméktípust, mivel ehhez a termékhez résztvevők vannak társítva.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Nem jelentkezhet be kifizetetlen megrendeléssel rendelkező résztvevőket. Ez a beállítás az eseménybeállításokban módosítható.\",\"c9Evkd\":\"Nem törölheti az utolsó kategóriát.\",\"6uwAvx\":\"Nem törölheti ezt az árszintet, mert már eladtak termékeket ehhez a szinthez. Helyette elrejtheti.\",\"tFbRKJ\":\"Nem szerkesztheti a fióktulajdonos szerepét vagy állapotát.\",\"fHfiEo\":\"Nem téríthet vissza manuálisan létrehozott megrendelést.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Több fiókhoz is hozzáfér. Kérjük, válasszon egyet a folytatáshoz.\",\"Z6q0Vl\":\"Ezt a meghívót már elfogadta. Kérjük, jelentkezzen be a folytatáshoz.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Nincs függőben lévő e-mail cím módosítás.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Kifutott az időből a megrendelés befejezéséhez.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"El kell ismernie, hogy ez az e-mail nem promóciós.\",\"3ZI8IL\":\"El kell fogadnia a feltételeket.\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Jegy létrehozása kötelező, mielőtt manuálisan hozzáadhatna egy résztvevőt.\",\"jE4Z8R\":\"Legalább egy árszintre szüksége van.\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Manuálisan kell fizetettként megjelölnie egy megrendelést. Ez a megrendelés kezelése oldalon tehető meg.\",\"L/+xOk\":\"Szüksége lesz egy jegyre, mielőtt létrehozhat egy bejelentkezési listát.\",\"Djl45M\":\"Szüksége lesz egy termékre, mielőtt létrehozhat egy kapacitás-hozzárendelést.\",\"y3qNri\":\"Legalább egy termékre szüksége lesz a kezdéshez. Ingyenes, fizetős, vagy hagyja, hogy a felhasználó döntse el, mennyit fizet.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Fióknevét az eseményoldalakon és az e-mailekben használják.\",\"veessc\":\"Résztvevői itt jelennek meg, miután regisztráltak az eseményére. Manuálisan is hozzáadhat résztvevőket.\",\"Eh5Wrd\":\"Az Ön csodálatos weboldala 🎉\",\"lkMK2r\":\"Az Ön adatai\",\"3ENYTQ\":[\"E-mail cím módosítási kérelme a következőre: <0>\",[\"0\"],\" függőben. Kérjük, ellenőrizze e-mail címét a megerősítéshez.\"],\"yZfBoy\":\"Üzenetét elküldtük.\",\"KSQ8An\":\"Az Ön megrendelése\",\"Jwiilf\":\"Az Ön megrendelése törölve lett.\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Megrendelései itt fognak megjelenni, amint beérkeznek.\",\"9TO8nT\":\"Az Ön jelszava\",\"P8hBau\":\"Fizetése feldolgozás alatt áll.\",\"UdY1lL\":\"Fizetése sikertelen volt, kérjük, próbálja újra.\",\"fzuM26\":\"Fizetése sikertelen volt. Kérjük, próbálja újra.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Visszatérítése feldolgozás alatt áll.\",\"IFHV2p\":\"Jegyéhez:\",\"x1PPdr\":\"Irányítószám / Postai irányítószám\",\"BM/KQm\":\"Irányítószám vagy postai irányítószám\",\"+LtVBt\":\"Irányítószám vagy postai irányítószám\",\"25QDJ1\":\"- Kattintson a közzétételhez\",\"WOyJmc\":\"- Kattintson a visszavonáshoz\",\"ncwQad\":\"(üres)\",\"B/gRsg\":\"(nincs)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" már bejelentkezett\"],\"3beCx0\":[[\"0\"],\" <0>beléptetve\"],\"S4PqS9\":[[\"0\"],\" aktív webhook\"],\"6MIiOI\":[[\"0\"],\" maradt\"],\"COnw8D\":[[\"0\"],\" logó\"],\"xG9N0H\":[[\"0\"],\" / \",[\"1\"],\" hely foglalt.\"],\"B7pZfX\":[[\"0\"],\" szervező\"],\"rZTf6P\":[[\"0\"],\" hely maradt\"],\"/HkCs4\":[[\"0\"],\" jegy\"],\"dtXkP9\":[[\"0\"],\" közelgő időpont\"],\"30bTiU\":[[\"activeCount\"],\" engedélyezve\"],\"jTs4am\":[[\"appName\"],\" logó\"],\"gbJOk9\":[[\"attendeeCount\"],\" résztvevő van regisztrálva erre az alkalomra.\"],\"TjbIUI\":[[\"availableCount\"],\" / \",[\"totalCount\"],\" elérhető\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" beléptetve\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" órája\"],\"NRSLBe\":[[\"diffMin\"],\" perce\"],\"iYfwJE\":[[\"diffSec\"],\" másodperce\"],\"OJnhhX\":[[\"eventCount\"],\" esemény\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" résztvevő van regisztrálva az érintett alkalmakra.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" jegytípus\"],\"0cLzoF\":[[\"totalOccurrences\"],\" időpont\"],\"AEGc4t\":[[\"totalOccurrences\"],\" alkalom \",[\"0\"],\" napon (\",[\"1\",\"plural\",{\"one\":[\"#\",\" alkalom\"],\"other\":[\"#\",\" alkalom\"]}],\" naponta)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Adó/Díjak\",\"B1St2O\":\"<0>A bejelentkezési listák segítenek az esemény belépésének kezelésében nap, terület vagy jegytípus szerint. Összekapcsolhatja a jegyeket konkrét listákkal, például VIP zónákkal vagy 1. napi bérletek, és megoszthat egy biztonságos bejelentkezési linket a személyzettel. Nincs szükség fiókra. A bejelentkezés mobil, asztali vagy táblagépen működik, eszköz kamerával vagy HID USB szkennerrel. \",\"v9VSIS\":\"<0>Állítson be egyetlen összesített látogatói limitet, amely egyszerre több jegytípusra vonatkozik.<1>Például, ha összekapcsol egy <2>Napi bérlet és egy <3>Teljes hétvége jegyet, mindkettő ugyanabból a helykeretből merít. Amint eléri a limitet, az összes kapcsolt jegy automatikusan leáll az értékesítéssel.\",\"vKXqag\":\"<0>Ez az alapértelmezett mennyiség minden időpontra. Az egyes időpontok kapacitása tovább korlátozhatja az elérhetőséget az <1>Időpont-ütemezés oldalon.\",\"ZnVt5v\":\"<0>A webhookok azonnal értesítik a külső szolgáltatásokat, amikor események történnek, például új résztvevő hozzáadása a CRM-hez vagy levelezési listához regisztrációkor, biztosítva a zökkenőmentes automatizálást.<1>Használjon harmadik féltől származó szolgáltatásokat, mint a <2>Zapier, <3>IFTTT vagy <4>Make egyedi munkafolyamatok létrehozásához és feladatok automatizálásához.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" az aktuális árfolyamon\"],\"M2DyLc\":\"1 aktív webhook\",\"6hIk/x\":\"1 résztvevő van regisztrálva az érintett alkalmakra.\",\"qOyE2U\":\"1 résztvevő van regisztrálva erre az alkalomra.\",\"943BwI\":\"1 nappal a befejezési dátum után\",\"yj3N+g\":\"1 nappal a kezdési dátum után\",\"Z3etYG\":\"1 nappal az esemény előtt\",\"szSnlj\":\"1 órával az esemény előtt\",\"yTsaLw\":\"1 jegy\",\"nz96Ue\":\"1 jegytípus\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 héttel az esemény előtt\",\"09VFYl\":\"12 jegy felajánlva\",\"HR/cvw\":\"Minta utca 123\",\"dgKxZ5\":\"135+ pénznem és 40+ fizetési mód\",\"kMU5aM\":\"Lemondási értesítés elküldve ide:\",\"o++0qa\":\"időtartam-változás\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Új ellenőrző kód került elküldésre az e-mail címére.\",\"sr2Je0\":\"kezdési/befejezési idő eltolás\",\"/z/bH1\":\"A szervező rövid leírása, amely megjelenik a felhasználók számára.\",\"aS0jtz\":\"Elhagyott\",\"uyJsf6\":\"Rólunk\",\"JvuLls\":\"Díj átvállalása\",\"lk74+I\":\"Díj átvállalása\",\"1uJlG9\":\"Kiemelő szín\",\"g3UF2V\":\"Elfogadom\",\"K5+3xg\":\"Meghívó elfogadása\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Fiók · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Fiók információk\",\"EHNORh\":\"Fiók nem található\",\"bPwFdf\":\"Fiókok\",\"AhwTa1\":\"Beavatkozás szükséges: ÁFA információ szükséges\",\"APyAR/\":\"Aktív események\",\"kCl6ja\":\"Aktív fizetési módok\",\"XJOV1Y\":\"Tevékenység\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Időpont hozzáadása\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Egyetlen időpont hozzáadása\",\"CjvTPJ\":\"További időpont hozzáadása\",\"0XCduh\":\"Adjon meg legalább egy időpontot\",\"/chGpa\":\"Add meg az online esemény csatlakozási adatait.\",\"UWWRyd\":\"Egyedi kérdések hozzáadása további információk gyűjtéséhez a pénztárnál\",\"Z/dcxc\":\"Időpont hozzáadása\",\"Q219NT\":\"Időpontok hozzáadása\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Helyszín hozzáadása\",\"VX6WUv\":\"Helyszín hozzáadása\",\"GCQlV2\":\"Adjon meg több időpontot, ha naponta több alkalmat tart.\",\"7JF9w9\":\"Kérdés hozzáadása\",\"NLbIb6\":\"Mégis hozzáadom ezt a résztvevőt (kapacitás felülírása)\",\"6PNlRV\":\"Adja hozzá ezt az eseményt a naptárához\",\"BGD9Yt\":\"Jegyek hozzáadása\",\"uIv4Op\":\"Adjon hozzá követőpixeleket a nyilvános eseményoldalaihoz és a szervezői főoldalhoz. Aktív követés esetén a látogatók süti-beleegyezési sávot fognak látni.\",\"QN2F+7\":\"Webhook hozzáadása\",\"NsWqSP\":\"Adja hozzá közösségi média hivatkozásait és weboldalának URL-jét. Ezek megjelennek a nyilvános szervezői oldalán.\",\"bVjDs9\":\"További díjak\",\"MKqSg4\":\"Rendszergazdai hozzáférés szükséges\",\"0Zypnp\":\"Admin vezérlőpult\",\"YAV57v\":\"Partner\",\"I+utEq\":\"A partnerkód nem módosítható.\",\"/jHBj5\":\"Partner sikeresen létrehozva\",\"uCFbG2\":\"Partner sikeresen törölve\",\"ld8I+f\":\"Partnerprogram\",\"a41PKA\":\"Partneri értékesítések nyomon követése\",\"mJJh2s\":\"A partneri értékesítések nem kerülnek nyomon követésre. Ez inaktiválja a partnert.\",\"jabmnm\":\"Partner sikeresen frissítve\",\"CPXP5Z\":\"Partnerek\",\"9Wh+ug\":\"Partnerek exportálva\",\"3cqmut\":\"A partnerek segítenek nyomon követni a partnerek és befolyásolók által generált értékesítéseket. Hozzon létre partnerkódokat és ossza meg őket a teljesítmény nyomon követéséhez.\",\"z7GAMJ\":\"összes\",\"N40H+G\":\"Összes\",\"7rLTkE\":\"Összes archivált esemény\",\"gKq1fa\":\"Minden résztvevő\",\"63gRoO\":\"A kiválasztott alkalmak összes résztvevője\",\"uWxIoH\":\"Ennek az alkalomnak az összes résztvevője\",\"pMLul+\":\"Minden pénznem\",\"sgUdRZ\":\"Összes időpont\",\"e4q4uO\":\"Összes időpont\",\"ZS/D7f\":\"Összes befejezett esemény\",\"QsYjci\":\"Összes esemény\",\"31KB8w\":\"Minden sikertelen feladat törölve\",\"D2g7C7\":\"Minden feladat újrapróbálásra sorba állítva\",\"B4RFBk\":\"Az összes megfelelő időpont\",\"F1/VgK\":\"Összes alkalom\",\"OpWjMq\":\"Összes alkalom\",\"Sxm1lO\":\"Minden állapot\",\"dr7CWq\":\"Összes közelgő esemény\",\"GpT6Uf\":\"Engedélyezi a résztvevőknek, hogy frissítsék jegyinformációikat (név, e-mail) a rendelés visszaigazolásával küldött biztonságos linken keresztül.\",\"F3mW5G\":\"Lehetővé teszi az ügyfelek számára, hogy feliratkozzanak a várólistára, ha ez a termék elfogyott\",\"c4uJfc\":\"Majdnem kész! Csak a fizetés feldolgozására várunk. Ez csak néhány másodpercet vesz igénybe.\",\"ocS8eq\":[\"Már van fiókja? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Már bent\",\"/H326L\":\"Már visszatérítve\",\"USEpOK\":\"Már használod a Stripe-ot egy másik szervezőnél? Használd újra azt a kapcsolatot.\",\"RtxQTF\":\"A megrendelés lemondása is\",\"jkNgQR\":\"A megrendelés visszatérítése is\",\"xYqsHg\":\"Mindig elérhető\",\"Wvrz79\":\"Fizetett összeg\",\"Zkymb9\":\"E-mail cím, amelyet ehhez a partnerhez társít. A partner nem kap értesítést.\",\"vRznIT\":\"Hiba történt az exportálási állapot ellenőrzésekor.\",\"eusccx\":\"Opcionális üzenet a kiemelt termék megjelenítéséhez, pl. \\\"Gyorsan fogy 🔥\\\" vagy \\\"Legjobb ár\\\"\",\"5GJuNp\":[\"és még \",[\"0\"],\"...\"],\"QNrkms\":\"Válasz sikeresen frissítve.\",\"+qygei\":\"Válaszok\",\"GK7Lnt\":\"Fizetésnél adott válaszok (pl. menü választás)\",\"lE8PgT\":\"A manuálisan testreszabott időpontok megmaradnak.\",\"vP3Nzg\":[\"Az ezen az oldalon jelenleg betöltött, \",[\"0\"],\" nem törölt időpontra vonatkozik.\"],\"kkVyZZ\":\"Mindenkire vonatkozik, aki a linket bejelentkezés nélkül nyitja meg. A bejelentkezett csapattagok mindig mindent látnak.\",\"je4muG\":[\"Az esemény minden \",[\"0\"],\", nem törölt időpontjára vonatkozik — beleértve a jelenleg be nem töltött időpontokat is.\"],\"YIIQtt\":\"Változások alkalmazása\",\"NzWX1Y\":\"Alkalmazás erre\",\"Ps5oDT\":\"Alkalmazás az összes jegyre\",\"261RBr\":\"Üzenet jóváhagyása\",\"naCW6Z\":\"Április\",\"B495Gs\":\"Archiválás\",\"5sNliy\":\"Esemény archiválása\",\"BrwnrJ\":\"Szervező archiválása\",\"E5eghW\":\"Archiválja ezt az eseményt, hogy elrejtse a nyilvánosság elől. Később visszaállíthatja.\",\"eqFkeI\":\"Archiválja ezt a szervezőt. Ez a szervező összes eseményét is archiválja.\",\"BzcxWv\":\"Archivált szervezők\",\"9cQBd6\":\"Biztosan archiválja ezt az eseményt? Nem lesz többé látható a nyilvánosság számára.\",\"Trnl3E\":\"Biztosan archiválja ezt a szervezőt? Ez a szervező összes eseményét is archiválja.\",\"wOvn+e\":[\"Biztosan le szeretne mondani \",[\"count\"],\" időpontot? Az érintett résztvevőket e-mailben értesítjük.\"],\"GTxE0U\":\"Biztosan le szeretné mondani ezt az időpontot? Az érintett résztvevőket e-mailben értesítjük.\",\"VkSk/i\":\"Biztosan törölni szeretné ezt az ütemezett üzenetet?\",\"0aVEBY\":\"Biztosan törölni szeretné az összes sikertelen feladatot?\",\"LchiNd\":\"Biztosan törölni szeretné ezt a partnert? Ez a művelet nem vonható vissza.\",\"vPeW/6\":\"Biztosan törölni szeretné ezt a konfigurációt? Ez hatással lehet az azt használó fiókokra.\",\"h42Hc/\":\"Biztosan törölni szeretné ezt az időpontot? Ez a művelet nem vonható vissza.\",\"JmVITJ\":\"Biztosan törli ezt a sablont? Ez a művelet nem vonható vissza, és az e-mailek az alapértelmezett sablont fogják használni.\",\"aLS+A6\":\"Biztosan törli ezt a sablont? Ez a művelet nem vonható vissza, és az e-mailek a szervező vagy az alapértelmezett sablont fogják használni.\",\"5H3Z78\":\"Biztosan törölni szeretné ezt a webhookot?\",\"147G4h\":\"Biztos, hogy el akarsz menni?\",\"VDWChT\":\"Biztosan piszkozatba szeretné tenni ezt a szervezőt? Ezzel a szervezői oldal láthatatlanná válik a nyilvánosság számára.\",\"pWtQJM\":\"Biztosan nyilvánossá szeretné tenni ezt a szervezőt? Ezzel a szervezői oldal láthatóvá válik a nyilvánosság számára.\",\"EOqL/A\":\"Biztosan szeretne helyet ajánlani ennek a személynek? E-mail értesítést fog kapni.\",\"yAXqWW\":\"Biztosan véglegesen törölni szeretné ezt az időpontot? Ez nem vonható vissza.\",\"WFHOlF\":\"Biztosan közzé szeretné tenni ezt az eseményt? A közzététel után láthatóvá válik a nyilvánosság számára.\",\"4TNVdy\":\"Biztosan közzé szeretné tenni ezt a szervezői profilt? A közzététel után láthatóvá válik a nyilvánosság számára.\",\"8x0pUg\":\"Biztosan el szeretné távolítani ezt a bejegyzést a várólistáról?\",\"cDtoWq\":[\"Biztosan újra szeretné küldeni a rendelés visszaigazolását a következő címre: \",[\"0\"],\"?\"],\"xeIaKw\":[\"Biztosan újra szeretné küldeni a jegyet a következő címre: \",[\"0\"],\"?\"],\"BjbocR\":\"Biztosan visszaállítja ezt az eseményt?\",\"7MjfcR\":\"Biztosan visszaállítja ezt a szervezőt?\",\"ExDt3P\":\"Biztosan visszavonja ennek az eseménynek a közzétételét? Ezzel már nem lesz látható a nyilvánosság számára.\",\"5Qmxo/\":\"Biztosan visszavonja ennek a szervezői profilnak a közzétételét? Ezzel már nem lesz látható a nyilvánosság számára.\",\"Uqefyd\":\"ÁFA regisztrált az EU-ban?\",\"+QARA4\":\"Művészet\",\"tLf3yJ\":\"Mivel vállalkozása Írországban található, az ír 23%-os ÁFA automatikusan vonatkozik minden platformdíjra.\",\"tMeVa/\":\"Név és e-mail bekérése minden megvásárolt jegyhez\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Csomag hozzárendelése\",\"xdiER7\":\"Hozzárendelt szint\",\"F2rX0R\":\"Legalább egy eseménytípust ki kell választani.\",\"BCmibk\":\"Próbálkozások\",\"6PecK3\":\"Részvétel és bejelentkezési arányok minden eseményen\",\"K2tp3v\":\"résztvevő\",\"AJ4rvK\":\"Résztvevő törölve\",\"qvylEK\":\"Résztvevő létrehozva\",\"Aspq3b\":\"Résztvevő adatok gyűjtése\",\"fpb0rX\":\"Résztvevő adatok másolva a rendelésből\",\"0R3Y+9\":\"Résztvevő e-mail\",\"94aQMU\":\"Résztvevő információk\",\"KkrBiR\":\"Résztvevői információk gyűjtése\",\"av+gjP\":\"Résztvevő neve\",\"sjPjOg\":\"Résztvevő megjegyzések\",\"cosfD8\":\"Résztvevő állapota\",\"D2qlBU\":\"Résztvevő frissítve\",\"22BOve\":\"A résztvevő sikeresen frissítve\",\"x8Vnvf\":\"A résztvevő jegye nincs ebben a listában\",\"/Ywywr\":\"résztvevők\",\"zLRobu\":\"résztvevő beléptetve\",\"k3Tngl\":\"Résztvevők exportálva\",\"UoIRW8\":\"Regisztrált résztvevők\",\"5UbY+B\":\"Résztvevők meghatározott jeggyel\",\"4HVzhV\":\"Résztvevők:\",\"HVkhy2\":\"Hozzárendelési elemzés\",\"dMMjeD\":\"Hozzárendelési bontás\",\"1oPDuj\":\"Hozzárendelési érték\",\"DBHTm/\":\"Augusztus\",\"JgREph\":\"Az automatikus ajánlat engedélyezve van\",\"V7Tejz\":\"Várólista automatikus feldolgozása\",\"PZ7FTW\":\"Automatikusan észlelve a háttérszín alapján, de felülbírálható\",\"zlnTuI\":\"Automatikusan jegyet ajánl fel a következő személynek, amikor felszabadul a kapacitás. Ha ki van kapcsolva, a várólistát manuálisan kezelheti a Várólista oldalon.\",\"csDS2L\":\"Elérhető\",\"clF06r\":\"Visszatérítésre elérhető\",\"NB5+UG\":\"Elérhető tokenek\",\"L+wGOG\":\"Függőben\",\"qcw2OD\":\"Fizetés vár\",\"kNmmvE\":\"Awesome Events Kft.\",\"iH8pgl\":\"Vissza\",\"TeSaQO\":\"Vissza a fiókokhoz\",\"X7Q/iM\":\"Vissza a naptárhoz\",\"kYqM1A\":\"Vissza az eseményhez\",\"s5QRF3\":\"Vissza az üzenetekhez\",\"td/bh+\":\"Vissza a jelentésekhez\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Alapár\",\"hviJef\":\"A fenti globális értékesítési időszak alapján, nem időpontonként\",\"jIPNJG\":\"Alapvető információk\",\"UabgBd\":\"A törzs kötelező\",\"HWXuQK\":\"Könyvjelzőzze ezt az oldalt, hogy bármikor kezelhesse rendelését.\",\"CUKVDt\":\"Márkajelzés a jegyeken egyedi logóval, színekkel és lábléc üzenettel.\",\"4BZj5p\":\"Beépített csalásvédelem\",\"cr7kGH\":\"Tömeges szerkesztés\",\"1Fbd6n\":\"Időpontok tömeges szerkesztése\",\"Eq6Tu9\":\"A tömeges frissítés sikertelen.\",\"9N+p+g\":\"Üzlet\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Cégnév\",\"bv6RXK\":\"Gomb felirat\",\"ChDLlO\":\"Gomb szövege\",\"BUe8Wj\":\"A vevő fizet\",\"qF1qbA\":\"A vevők tiszta árat látnak. A platformdíjat a kifizetésből vonjuk le.\",\"dg05rc\":\"A követőpixelek hozzáadásával elismeri, hogy Ön és ez a platform közös adatkezelők a gyűjtött adatok tekintetében. Az Ön felelőssége, hogy biztosítsa az adatkezelés jogalapját az alkalmazandó adatvédelmi jogszabályok (GDPR, CCPA stb.) alapján.\",\"DFqasq\":[\"A folytatással elfogadja a(z) <0>\",[\"0\"],\" Szolgáltatási feltételeket\"],\"wVSa+U\":\"A hónap napja szerint\",\"0MnNgi\":\"A hét napja szerint\",\"CetOZE\":\"Jegytípus szerint\",\"lFdbRS\":\"Alkalmazási díjak megkerülése\",\"AjVXBS\":\"Naptár\",\"alkXJ5\":\"Naptárnézet\",\"2VLZwd\":\"Cselekvésre ösztönző gomb\",\"rT2cV+\":\"Kamera\",\"7hYa9y\":\"A kamera engedélyét megtagadták. <0>Engedély kérése újra, vagy engedélyezze a kamera hozzáférést a böngésző beállításaiban.\",\"D02dD9\":\"Kampány\",\"RRPA79\":\"Nem lehet beléptetni\",\"OcVwAd\":[[\"count\"],\" időpont lemondása\"],\"H4nE+E\":\"Minden termék törlése és visszahelyezése a készletbe\",\"Py78q9\":\"Időpont lemondása\",\"tOXAdc\":\"A törlés törli az összes ehhez a rendeléshez tartozó résztvevőt, és visszahelyezi a jegyeket az elérhető készletbe.\",\"vev1Jl\":\"Lemondás\",\"Ha17hq\":[[\"0\"],\" időpont lemondva\"],\"01sEfm\":\"A rendszer alapértelmezett konfigurációja nem törölhető\",\"VsM1HH\":\"Kapacitás-hozzárendelések\",\"9bIMVF\":\"Kapacitáskezelés\",\"H7K8og\":\"A kapacitásnak 0 vagy annál nagyobbnak kell lennie\",\"nzao08\":\"kapacitás-frissítések\",\"4cp9NP\":\"Felhasznált kapacitás\",\"K7tIrx\":\"Kategória\",\"o+XJ9D\":\"Módosítás\",\"kJkjoB\":\"Időtartam módosítása\",\"J0KExZ\":\"A résztvevői limit módosítása\",\"CIHJJf\":\"Várólistás beállítások módosítása\",\"B5icLR\":[[\"count\"],\" időpont időtartama módosítva\"],\"Kb+0BT\":\"Terhelések\",\"2tbLdK\":\"Jótékonyság\",\"BPWGKn\":\"Beléptetés\",\"6uFFoY\":\"Kiléptetés\",\"FjAlwK\":[\"Nézze meg ezt az eseményt: \",[\"0\"]],\"v4fiSg\":\"Ellenőrizze e-mail címét\",\"51AsAN\":\"Nézze meg a postafiókját! Ha ehhez az e-mail címhez jegyek tartoznak, kap egy linket a megtekintésükhöz.\",\"Y3FYXy\":\"Beléptetés\",\"udRwQs\":\"Bejelentkezés létrehozva\",\"F4SRy3\":\"Bejelentkezés törölve\",\"as6XfO\":[[\"0\"],\" beléptetése visszavonva\"],\"9s/wrQ\":\"Beléptetési előzmények\",\"Wwztk4\":\"Beléptetési lista\",\"9gPPUY\":\"Bejelentkezési lista létrehozva\",\"dwjiJt\":\"Beléptetési lista info\",\"7od0PV\":\"beléptetési listák\",\"f2vU9t\":\"Bejelentkezési listák\",\"XprdTn\":\"Beléptetési navigáció\",\"5tV1in\":\"Beléptetés állapota\",\"SHJwyq\":\"Bejelentkezési arány\",\"qCqdg6\":\"Bejelentkezési állapot\",\"cKj6OE\":\"Bejelentkezési összefoglaló\",\"7B5M35\":\"Bejelentkezések\",\"VrmydS\":\"Beléptetve\",\"DM4gBB\":\"Kínai (hagyományos)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Válasszon másik műveletet\",\"fkb+y3\":\"Válassz egy mentett helyszínt az alkalmazáshoz.\",\"Zok1Gx\":\"Válassz szervezőt\",\"pkk46Q\":\"Válasszon szervezőt\",\"Crr3pG\":\"Naptár kiválasztása\",\"LAW8Vb\":\"Válassza ki az alapértelmezett beállítást az új eseményekhez. Ez felülírható az egyes eseményeknél.\",\"pjp2n5\":\"Válassza ki, ki fizeti a platformdíjat. Ez nem érinti a fiókbeállításokban konfigurált további díjakat.\",\"xCJdfg\":\"Törlés\",\"QyOWu9\":\"Helyszín törlése — visszaesik az esemény alapértelmezett értékére\",\"V8yTm6\":\"Keresés törlése\",\"kmnKnX\":\"A törlés eltávolít minden alkalomspecifikus felülírást. Az érintett alkalmak az esemény alapértelmezett helyszínére váltanak.\",\"/o+aQX\":\"Kattintson a lemondáshoz\",\"gD7WGV\":\"Kattintson az új értékesítésre való újranyitáshoz\",\"CySr+W\":\"Kattintson a jegyzet megtekintéséhez\",\"RG3szS\":\"bezárás\",\"RWw9Lg\":\"Modális ablak bezárása\",\"XwdMMg\":\"A kód csak betűket, számokat, kötőjeleket és aláhúzásokat tartalmazhat\",\"+yMJb7\":\"Kód kötelező\",\"m9SD3V\":\"A kódnak legalább 3 karakter hosszúnak kell lennie\",\"V1krgP\":\"A kód legfeljebb 20 karakter hosszúságú lehet\",\"psqIm5\":\"Kollaboráljon csapatával, hogy csodálatos eseményeket hozzanak létre együtt.\",\"4bUH9i\":\"Résztvevő adatok gyűjtése minden megvásárolt jegyhez.\",\"TkfG8v\":\"Adatok gyűjtése rendelésenként\",\"96ryID\":\"Adatok gyűjtése jegyenként\",\"FpsvqB\":\"Színmód\",\"jEu4bB\":\"Oszlopok\",\"CWk59I\":\"Vígjáték\",\"rPA+Gc\":\"Kommunikációs beállítások\",\"zFT5rr\":\"kész\",\"bUQMpb\":\"Stripe beállítás befejezése\",\"744BMm\":\"Fejezd be a rendelésed a jegyek biztosításához. Ez az ajánlat időkorlátozott, ne várj túl sokáig.\",\"5YrKW7\":\"Fejezze be a fizetést a jegyek biztosításához.\",\"xGU92i\":\"Töltse ki a profilját a csapathoz való csatlakozáshoz.\",\"QOhkyl\":\"Írás\",\"ih35UP\":\"Konferencia Központ\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Konfiguráció hozzárendelve\",\"X1zdE7\":\"Konfiguráció sikeresen létrehozva\",\"mLBUMQ\":\"Konfiguráció sikeresen törölve\",\"UIENhw\":\"A konfigurációs nevek láthatók a végfelhasználók számára. A fix díjak az aktuális árfolyamon kerülnek átváltásra a megrendelés pénznemére.\",\"eeZdaB\":\"Konfiguráció sikeresen frissítve\",\"3cKoxx\":\"Konfigurációk\",\"8v2LRU\":\"Esemény részletek, helyszín, pénztári beállítások és e-mail értesítések konfigurálása.\",\"raw09+\":\"Állítsa be, hogyan gyűjtse a résztvevők adatait a pénztárnál\",\"FI60XC\":\"Adók és díjak beállítása\",\"av6ukY\":\"Állítsa be, mely termékek érhetők el ehhez az alkalomhoz, és szükség esetén módosítsa az árakat.\",\"NGXKG/\":\"E-mail cím megerősítése\",\"JRQitQ\":\"Új jelszó megerősítése\",\"Auz0Mz\":\"Erősítse meg e-mail címét az összes funkció eléréséhez.\",\"7+grte\":\"Megerősítő e-mail elküldve! Kérjük, ellenőrizze postaládáját.\",\"n/7+7Q\":\"Megerősítés elküldve a következő címre:\",\"x3wVFc\":\"Gratulálunk! Az eseményed mostantól látható a nyilvánosság számára.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Kapcsolja be a Stripe-ot az e-mail sablon szerkesztéséhez\",\"LmvZ+E\":\"Kapcsolja be a Stripe-ot az üzenetküldéshez\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Kapcsolat\",\"LOFgda\":[\"Kapcsolatfelvétel \",[\"0\"]],\"41BQ3k\":\"Kapcsolattartási e-mail\",\"KcXRN+\":\"Kapcsolati e-mail címünk az ügyfélszolgálathoz\",\"m8WD6t\":\"Beállítás folytatása\",\"0GwUT4\":\"Folytatás\",\"sBV87H\":\"Folytatás az esemény létrehozásához\",\"nKtyYu\":\"Folytatás a következő lépésre\",\"F3/nus\":\"Tovább a fizetéshez\",\"p2FRHj\":\"Szabályozza, hogyan kezelje a platformdíjakat ezen eseménynél\",\"NqfabH\":\"Szabályozza, ki léphet be erre az időpontra\",\"fmYxZx\":\"Ki mikor léphet be\",\"1JnTgU\":\"Másolva a fentiekből\",\"FxVG/l\":\"Vágólapra másolva\",\"PiH3UR\":\"Másolva!\",\"4i7smN\":\"Fiókazonosító másolása\",\"uUPbPg\":\"Partneri link másolása\",\"iVm46+\":\"Kód másolása\",\"cF2ICc\":\"Vásárlói link másolása\",\"+2ZJ7N\":\"Adatok másolása az első résztvevőhöz\",\"ZN1WLO\":\"E-mail másolása\",\"y1eoq1\":\"Link másolása\",\"tUGbi8\":\"Adataim másolása:\",\"y22tv0\":\"Másolja ezt a linket a megosztáshoz bárhol\",\"/4gGIX\":\"Vágólapra másolás\",\"e0f4yB\":\"A helyszín törlése nem sikerült\",\"vkiDx2\":\"Nem sikerült előkészíteni a tömeges frissítést.\",\"KOavaU\":\"A cím részleteinek lekérése nem sikerült\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Az időpont mentése nem sikerült\",\"eeLExK\":\"A helyszín mentése nem sikerült\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Borítókép\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"A borítókép az eseményoldal tetején jelenik meg\",\"2NLjA6\":\"A borítókép a szervezői oldal tetején jelenik meg\",\"GkrqoY\":\"Minden jegyre kiterjed\",\"zg4oSu\":[[\"0\"],\" sablon létrehozása\"],\"RKKhnW\":\"Hozzon létre egyedi widgetet jegyek értékesítéséhez a webhelyén.\",\"6sk7PP\":\"Adott számú létrehozása\",\"PhioFp\":\"Hozzon létre új beléptetési listát egy aktív alkalomhoz, vagy lépjen kapcsolatba a szervezővel, ha úgy gondolja, hogy ez tévedés.\",\"yIRev4\":\"Jelszó létrehozása\",\"j7xZ7J\":\"Hozzon létre további szervezőket, hogy egy fiók alatt különböző márkákat, osztályokat vagy eseménysorozatokat kezeljen. Minden szervezőnek saját eseményei, beállításai és nyilvános oldala van.\",\"xfKgwv\":\"Partner létrehozása\",\"tudG8q\":\"Jegyek és árucikkek létrehozása és konfigurálása értékesítéshez.\",\"YAl9Hg\":\"Konfiguráció létrehozása\",\"BTne9e\":\"Hozzon létre egyedi e-mail sablonokat ehhez az eseményhez, amelyek felülírják a szervező alapértelmezéseit\",\"YIDzi/\":\"Egyedi sablon létrehozása\",\"tsGqx5\":\"Időpont létrehozása\",\"Nc3l/D\":\"Kedvezmények, hozzáférési kódok rejtett jegyekhez és különleges ajánlatok létrehozása.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Létrehozás ehhez az időponthoz\",\"eWEV9G\":\"Új jelszó létrehozása\",\"wl2iai\":\"Ütemezés létrehozása\",\"8AiKIu\":\"Jegy vagy termék létrehozása\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Követhető linkek létrehozása a partnerek jutalmazásához, akik népszerűsítik az eseményét.\",\"dkAPxi\":\"Webhook létrehozása\",\"5slqwZ\":\"Hozza létre eseményét\",\"JQNMrj\":\"Hozza létre első eseményét\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Hozza létre saját eseményét\",\"67NsZP\":\"Esemény létrehozása...\",\"H34qcM\":\"Szervező létrehozása...\",\"1YMS+X\":\"Esemény létrehozása, kérjük, várjon.\",\"yiy8Jt\":\"Szervezői profil létrehozása, kérjük, várjon.\",\"lfLHNz\":\"CTA címke kötelező\",\"0xLR6W\":\"Jelenleg hozzárendelt\",\"iTvh6I\":\"Jelenleg megvásárolható\",\"A42Dqn\":\"Egyedi arculat\",\"Guo0lU\":\"Egyéni dátum és idő\",\"mimF6c\":\"Egyedi üzenet a pénztár után\",\"WDMdn8\":\"Egyedi kérdések\",\"O6mra8\":\"Egyedi kérdések\",\"axv/Mi\":\"Egyedi sablon\",\"2YeVGY\":\"Vásárlói link a vágólapra másolva\",\"QMHSMS\":\"A vásárló e-mailt kap a visszatérítés megerősítéséről\",\"L/Qc+w\":\"Vásárló e-mail címe\",\"wpfWhJ\":\"Vásárló keresztneve\",\"GIoqtA\":\"Vásárló vezetékneve\",\"NihQNk\":\"Vásárlók\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Testreszabhatja az ügyfeleknek küldött e-maileket Liquid sablonok használatával. Ezek a sablonok alapértelmezettként lesznek használva a szervezet összes eseményéhez.\",\"xJaTUK\":\"Testreszabhatja az esemény kezdőlapjának elrendezését, színeit és márkajelzését.\",\"MXZfGN\":\"Testreszabhatja a pénztárban feltett kérdéseket, hogy fontos információkat gyűjtsön a résztvevőktől.\",\"iX6SLo\":\"Testreszabhatja a folytatás gomb szövegét.\",\"pxNIxa\":\"Testreszabhatja az e-mail sablonját Liquid sablonok használatával\",\"3trPKm\":\"Testreszabhatja szervezői oldalának megjelenését.\",\"U0sC6H\":\"Naponta\",\"/gWrVZ\":\"Napi bevétel, adók, díjak és visszatérítések az összes eseményen\",\"zgCHnE\":\"Napi értékesítési jelentés\",\"nHm0AI\":\"Napi értékesítési, adó- és díj bontás.\",\"1aPnDT\":\"Tánc\",\"pvnfJD\":\"Sötét\",\"MaB9wW\":\"Időpont lemondása\",\"e6cAxJ\":\"Időpont lemondva\",\"81jBnC\":\"Időpont sikeresen lemondva\",\"a/C/6R\":\"Időpont sikeresen létrehozva\",\"IW7Q+u\":\"Időpont törölve\",\"rngCAz\":\"Időpont sikeresen törölve\",\"lnYE59\":\"Az esemény dátuma\",\"gnBreG\":\"Rendelés leadásának dátuma\",\"vHbfoQ\":\"Időpont újraaktiválva\",\"hvah+S\":\"Dátum újranyitva új értékesítéshez\",\"Ez0YsD\":\"Időpont sikeresen frissítve\",\"VTsZuy\":\"Az időpontok és időpontok kezelése itt történik:\",\"/ITcnz\":\"nap\",\"H7OUPr\":\"Nap\",\"JtHrX9\":\"A hónap napja\",\"J/Upwb\":\"nap\",\"vDVA2I\":\"A hónap napjai\",\"rDLvlL\":\"A hét napjai\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Elutasítás\",\"ovBPCi\":\"Alapértelmezett\",\"JtI4vj\":\"Alapértelmezett résztvevői információgyűjtés\",\"ULjv90\":\"Alapértelmezett kapacitás időpontonként\",\"3R/Tu2\":\"Alapértelmezett díjkezelés\",\"1bZAZA\":\"Alapértelmezett sablon lesz használva\",\"HNlEFZ\":\"törlés\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Törli a kiválasztott \",[\"count\"],\" időpontot? A rendelést tartalmazó időpontok kihagyásra kerülnek. Ez nem vonható vissza.\"],\"vu7gDm\":\"Partner törlése\",\"KZN4Lc\":\"Összes törlése\",\"6EkaOO\":\"Időpont törlése\",\"io0G93\":\"Esemény törlése\",\"+jw/c1\":\"Kép törlése\",\"hdyeZ0\":\"Feladat törlése\",\"xxjZeP\":\"Helyszín törlése\",\"sY3tIw\":\"Szervező törlése\",\"UBv8UK\":\"Végleges törlés\",\"dPyJ15\":\"Sablon törlése\",\"mxsm1o\":\"Törli ezt a kérdést? Ez nem vonható vissza.\",\"snMaH4\":\"Webhook törlése\",\"LIZZLY\":[[\"0\"],\" időpont törölve\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Összes kijelölés megszüntetése\",\"NvuEhl\":\"Tervezési elemek\",\"H8kMHT\":\"Nem kapta meg a kódot?\",\"G8KNgd\":\"Másik helyszín\",\"E/QGRL\":\"Letiltva\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Üzenet elvetése\",\"BREO0S\":\"Jelölőnégyzet megjelenítése, amely lehetővé teszi az ügyfelek számára, hogy feliratkozzanak a rendezvényszervező marketing kommunikációira.\",\"pfa8F0\":\"Megjelenítendő név\",\"Kdpf90\":\"Ne felejtse el!\",\"352VU2\":\"Nincs fiókja? <0>Regisztráljon\",\"AXXqG+\":\"Adomány\",\"DPfwMq\":\"Kész\",\"JoPiZ2\":\"Utasítások a személyzetnek\",\"2+O9st\":\"Értékesítési, résztvevői és pénzügyi jelentések letöltése minden befejezett rendeléshez.\",\"eneWvv\":\"Piszkozat\",\"Ts8hhq\":\"A spam magas kockázata miatt csatlakoztatnia kell egy Stripe fiókot, mielőtt módosíthatná az e-mail sablonokat. Ez biztosítja, hogy minden eseményszervező ellenőrzött és felelősségre vonható legyen.\",\"TnzbL+\":\"A spam magas kockázata miatt csatlakoztatnia kell egy Stripe fiókot, mielőtt üzeneteket küldhetne a résztvevőknek.\\nEz biztosítja, hogy minden eseményszervező ellenőrzött és felelősségre vonható legyen.\",\"euc6Ns\":\"Duplikálás\",\"YueC+F\":\"Időpont duplikálása\",\"KRmTkx\":\"Termék másolása\",\"Jd3ymG\":\"Az időtartamnak legalább 1 percnek kell lennie.\",\"KIjvtr\":\"Holland\",\"22xieU\":\"pl. 180 (3 óra)\",\"/zajIE\":\"pl. Reggeli alkalom\",\"SPKbfM\":\"pl. Jegyek beszerzése, Regisztráció most\",\"fc7wGW\":\"pl. Fontos frissítés a jegyeiről\",\"54MPqC\":\"pl. Alap, Prémium, Vállalati\",\"3RQ81z\":\"Minden személy e-mailt kap egy foglalt hellyel a vásárlás befejezéséhez.\",\"5oD9f/\":\"Korábban\",\"LTzmgK\":[[\"0\"],\" sablon szerkesztése\"],\"v4+lcZ\":\"Partner szerkesztése\",\"2iZEz7\":\"Válasz szerkesztése\",\"t2bbp8\":\"Résztvevő szerkesztése\",\"etaWtB\":\"Résztvevő adatainak szerkesztése\",\"+guao5\":\"Konfiguráció szerkesztése\",\"1Mp/A4\":\"Időpont szerkesztése\",\"m0ZqOT\":\"Helyszín szerkesztése\",\"8oivFT\":\"Helyszín szerkesztése\",\"vRWOrM\":\"Rendelés részleteinek szerkesztése\",\"fW5sSv\":\"Webhook szerkesztése\",\"nP7CdQ\":\"Webhook szerkesztése\",\"MRZxAn\":\"Szerkesztve\",\"uBAxNB\":\"Szerkesztő\",\"aqxYLv\":\"Oktatás\",\"iiWXDL\":\"Jogosultsági hibák\",\"zPiC+q\":\"Jogosult bejelentkezési listák\",\"SiVstt\":\"E-mail és ütemezett üzenetek\",\"V2sk3H\":\"E-mail és sablonok\",\"hbwCKE\":\"E-mail cím vágólapra másolva\",\"dSyJj6\":\"Az e-mail címek nem egyeznek\",\"elW7Tn\":\"E-mail törzse\",\"ZsZeV2\":\"E-mail cím kötelező\",\"Be4gD+\":\"E-mail előnézet\",\"6IwNUc\":\"E-mail sablonok\",\"H/UMUG\":\"E-mail ellenőrzés szükséges\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"E-mail sikeresen ellenőrizve!\",\"FSN4TS\":\"Widget beágyazása\",\"z9NkYY\":\"Beágyazható widget\",\"Qj0GKe\":\"Résztvevői önkiszolgálás engedélyezése\",\"hEtQsg\":\"Résztvevői önkiszolgálás alapértelmezett engedélyezése\",\"Upeg/u\":\"Sablon engedélyezése e-mailek küldéséhez\",\"7dSOhU\":\"Várólista engedélyezése\",\"RxzN1M\":\"Engedélyezve\",\"xDr/ct\":\"Vége\",\"sGjBEq\":\"Befejezés dátuma és ideje (opcionális)\",\"PKXt9R\":\"A befejezés dátumának a kezdő dátum után kell lennie.\",\"UmzbPa\":\"Az alkalom befejezési dátuma\",\"ZayGC7\":\"Befejezés egy adott dátumon\",\"48Y16Q\":\"Befejezés ideje (opcionális)\",\"jpNdOC\":\"Az alkalom befejezési ideje\",\"TbaYrr\":[\"Befejeződött: \",[\"0\"]],\"CFgwiw\":[\"Befejeződik: \",[\"0\"]],\"SqOIQU\":\"Adjon meg egy kapacitásértéket, vagy válassza a korlátlan opciót.\",\"h37gRz\":\"Adjon meg egy címkét, vagy válassza az eltávolítást.\",\"7YZofi\":\"Írjon be egy tárgyat és törzset az előnézet megtekintéséhez\",\"khyScF\":\"Adja meg az eltolás mértékét.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Adja meg a partner e-mail címét (opcionális)\",\"ARkzso\":\"Adja meg a partner nevét\",\"ej4L8b\":\"Adja meg a kapacitást\",\"6KnyG0\":\"E-mail megadása\",\"INDKM9\":\"Írja be az e-mail tárgyát...\",\"xUgUTh\":\"Keresztnév megadása\",\"9/1YKL\":\"Vezetéknév megadása\",\"VpwcSk\":\"Írja be az új jelszót\",\"kWg31j\":\"Adjon meg egyedi partnerkódot\",\"C3nD/1\":\"Adja meg e-mail címét\",\"VmXiz4\":\"Írja be az e-mail címét és elküldjük a jelszó visszaállításához szükséges utasításokat.\",\"n9V+ps\":\"Adja meg nevét\",\"IdULhL\":\"Írja be az ÁFA számát az országkóddal együtt, szóközök nélkül (pl. IE1234567A, DE123456789)\",\"o21Y+P\":\"bejegyzések\",\"X88/6w\":\"A bejegyzések itt jelennek meg, amikor az ügyfelek csatlakoznak az elfogyott termékek várólistájához.\",\"LslKhj\":\"Hiba a naplók betöltésekor\",\"VCNHvW\":\"Esemény archiválva\",\"ZD0XSb\":\"Az esemény sikeresen archiválva\",\"WgD6rb\":\"Eseménykategória\",\"b46pt5\":\"Esemény borítóképe\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Esemény létrehozva\",\"1Hzev4\":\"Esemény egyedi sablon\",\"7u9/DO\":\"Az esemény sikeresen törölve\",\"imgKgl\":\"Esemény leírása\",\"kJDmsI\":\"Esemény részletei\",\"m/N7Zq\":\"Esemény teljes címe\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Esemény helyszíne\",\"PYs3rP\":\"Esemény neve\",\"HhwcTQ\":\"Esemény neve\",\"WZZzB6\":\"Esemény neve kötelező\",\"Wd5CDM\":\"Az esemény nevének 150 karakternél rövidebbnek kell lennie.\",\"4JzCvP\":\"Esemény nem elérhető\",\"Gh9Oqb\":\"Eseményszervező neve\",\"mImacG\":\"Eseményoldal\",\"Hk9Ki/\":\"Az esemény sikeresen visszaállítva\",\"JyD0LH\":\"Esemény beállítások\",\"cOePZk\":\"Esemény időpontja\",\"e8WNln\":\"Esemény időzóna\",\"GeqWgj\":\"Esemény időzóna\",\"XVLu2v\":\"Esemény címe\",\"OfmsI9\":\"Az esemény túl új\",\"4SILkp\":\"Esemény összesítései\",\"YDVUVl\":\"Eseménytípusok\",\"+HeiVx\":\"Esemény frissítve\",\"4K2OjV\":\"Esemény helyszíne\",\"19j6uh\":\"Események teljesítménye\",\"PC3/fk\":\"Következő 24 órában kezdődő események\",\"nwiZdc\":[\"Minden \",[\"0\"]],\"2LJU4o\":[\"Minden \",[\"0\"],\" napban\"],\"yLiYx+\":[\"Minden \",[\"0\"],\" hónapban\"],\"nn9ice\":[\"Minden \",[\"0\"],\" hétben\"],\"Cdr8f9\":[\"Minden \",[\"0\"],\" hétben, \",[\"1\"]],\"GVEHRk\":[\"Minden \",[\"0\"],\" évben\"],\"fTFfOK\":\"Minden e-mail sablonnak tartalmaznia kell egy cselekvésre ösztönző gombot, amely a megfelelő oldalra vezet\",\"BVinvJ\":\"Példák: \\\"Honnan hallott rólunk?\\\", \\\"Cégnév számlához\\\"\",\"2hGPQG\":\"Példák: \\\"Póló méret\\\", \\\"Étkezési preferencia\\\", \\\"Munkakör\\\"\",\"qNuTh3\":\"Kivétel\",\"M1RnFv\":\"Lejárt\",\"kF8HQ7\":\"Válaszok exportálása\",\"2KAI4N\":\"CSV exportálása\",\"JKfSAv\":\"Exportálás sikertelen. Kérjük, próbálja újra.\",\"SVOEsu\":\"Exportálás elindítva. Fájl előkészítése...\",\"wuyaZh\":\"Exportálás sikeres\",\"9bpUSo\":\"Partnerek exportálása\",\"jtrqH9\":\"Résztvevők exportálása\",\"R4Oqr8\":\"Exportálás befejezve. Fájl letöltése...\",\"UlAK8E\":\"Megrendelések exportálása\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Sikertelen\",\"8uOlgz\":\"Sikertelen időpontja\",\"tKcbYd\":\"Sikertelen feladatok\",\"SsI9v/\":\"A rendelés feladása sikertelen. Kérjük, próbálja újra.\",\"LdPKPR\":\"A konfiguráció hozzárendelése nem sikerült\",\"PO0cfn\":\"Az időpont lemondása nem sikerült\",\"YUX+f+\":\"Az időpontok lemondása nem sikerült\",\"SIHgVQ\":\"Nem sikerült törölni az üzenetet\",\"cEFg3R\":\"Nem sikerült létrehozni a partnert.\",\"dVgNF1\":\"A konfiguráció létrehozása sikertelen\",\"fAoRRJ\":\"Az ütemezés létrehozása nem sikerült\",\"U66oUa\":\"A sablon létrehozása sikertelen\",\"aFk48v\":\"A konfiguráció törlése sikertelen\",\"n1CYMH\":\"Az időpont törlése nem sikerült\",\"KXv+Qn\":\"Az időpont törlése nem sikerült. Lehetséges, hogy meglévő rendelései vannak.\",\"JJ0uRo\":\"Az időpontok törlése nem sikerült\",\"rgoBnv\":\"Nem sikerült törölni az eseményt\",\"Zw6LWb\":\"A feladat törlése sikertelen\",\"tq0abZ\":\"A feladatok törlése sikertelen\",\"2mkc3c\":\"Nem sikerült törölni a szervezőt\",\"vKMKnu\":\"A kérdés törlése sikertelen\",\"xFj7Yj\":\"A sablon törlése sikertelen\",\"jo3Gm6\":\"Nem sikerült exportálni a partnereket.\",\"Jjw03p\":\"Résztvevők exportálása sikertelen\",\"ZPwFnN\":\"Megrendelések exportálása sikertelen\",\"zGE3CH\":\"A jelentés exportálása sikertelen. Kérjük, próbálja újra.\",\"lS9/aZ\":\"Nem sikerült betölteni a címzetteket\",\"X4o0MX\":\"Webhook betöltése sikertelen\",\"ETcU7q\":\"Nem sikerült helyet felajánlani\",\"5670b9\":\"Nem sikerült jegyeket felajánlani\",\"e5KIbI\":\"Az időpont újraaktiválása nem sikerült\",\"7zyx8a\":\"Az eltávolítás a várólistáról nem sikerült\",\"A/P7PX\":\"A felülírás eltávolítása nem sikerült\",\"ogWc1z\":\"A dátum újranyitása sikertelen\",\"0+iwE5\":\"A kérdések újrarendezése sikertelen\",\"EJPAcd\":\"A rendelés visszaigazolásának újraküldése sikertelen\",\"DjSbj3\":\"A jegy újraküldése sikertelen\",\"YQ3QSS\":\"Ellenőrző kód újraküldése sikertelen\",\"wDioLj\":\"A feladat újrapróbálása sikertelen\",\"DKYTWG\":\"A feladatok újrapróbálása sikertelen\",\"WRREqF\":\"A felülírás mentése nem sikerült\",\"sj/eZA\":\"Az ár felülírásának mentése nem sikerült\",\"780n8A\":\"A termékbeállítások mentése nem sikerült\",\"zTkTF3\":\"A sablon mentése sikertelen\",\"l6acRV\":\"Az ÁFA beállítások mentése sikertelen. Kérjük, próbálja újra.\",\"T6B2gk\":\"Üzenet küldése sikertelen. Kérjük, próbálja újra.\",\"lKh069\":\"Exportálási feladat indítása sikertelen\",\"t/KVOk\":\"A megszemélyesítés indítása sikertelen. Kérjük, próbálja újra.\",\"QXgjH0\":\"A megszemélyesítés leállítása sikertelen. Kérjük, próbálja újra.\",\"i0QKrm\":\"Partner frissítése sikertelen\",\"NNc33d\":\"Válasz frissítése sikertelen.\",\"E9jY+o\":\"A résztvevő frissítése sikertelen\",\"uQynyf\":\"A konfiguráció frissítése sikertelen\",\"i2PFQJ\":\"Nem sikerült frissíteni az esemény állapotát\",\"EhlbcI\":\"Az üzenetküldési szint frissítése sikertelen\",\"rpGMzC\":\"A rendelés frissítése sikertelen\",\"T2aCOV\":\"Nem sikerült frissíteni a szervező állapotát\",\"Eeo/Gy\":\"A beállítás frissítése sikertelen\",\"kqA9lY\":\"Az ÁFA-beállítások frissítése nem sikerült\",\"7/9RFs\":\"Kép feltöltése sikertelen.\",\"nkNfWu\":\"Kép feltöltése sikertelen. Kérjük, próbálja újra.\",\"rxy0tG\":\"E-mail ellenőrzése sikertelen\",\"QRUpCk\":\"Család\",\"5LO38w\":\"Gyors kifizetés a bankodba\",\"4lgLew\":\"Február\",\"9bHCo2\":\"Díj pénzneme\",\"/sV91a\":\"Díjkezelés\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Díjak megkerülve\",\"cf35MA\":\"Fesztivál\",\"pAey+4\":\"A fájl túl nagy. Maximális méret: 5MB.\",\"VejKUM\":\"Először töltse ki az adatait fentebb\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Résztvevők szűrése\",\"8OvVZZ\":\"Résztvevők szűrése\",\"N/H3++\":\"Szűrés időpont szerint\",\"mvrlBO\":\"Szűrés esemény szerint\",\"g+xRXP\":\"Fejezd be a Stripe beállítását\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"Első\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Első résztvevő\",\"4pwejF\":\"A keresztnév kötelező\",\"3lkYdQ\":\"Fix díj\",\"6bBh3/\":\"Fix díj\",\"zWqUyJ\":\"Tranzakciónkénti fix díj\",\"LWL3Bs\":\"A fix díjnak 0 vagy nagyobbnak kell lennie\",\"0RI8m4\":\"Vaku ki\",\"q0923e\":\"Vaku be\",\"lWxAUo\":\"Étel és ital\",\"nFm+5u\":\"Lábléc szövege\",\"a8nooQ\":\"Negyedik\",\"mob/am\":\"P\",\"wtuVU4\":\"Gyakoriság\",\"xVhQZV\":\"Pén\",\"39y5bn\":\"Péntek\",\"f5UbZ0\":\"Teljes adatbirtoklás\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Teljes visszatérítés\",\"UsIfa8\":\"Teljes feloldott cím\",\"PGQLdy\":\"jövőbeli\",\"8N/j1s\":\"Csak jövőbeli időpontok\",\"yRx/6K\":\"A jövőbeli időpontok másolásakor a kapacitás nullára áll vissza\",\"T02gNN\":\"Általános belépés\",\"3ep0Gx\":\"Általános információk a szervezőjéről\",\"ziAjHi\":\"Generálás\",\"exy8uo\":\"Kód generálása\",\"4CETZY\":\"Útvonal\",\"pjkEcB\":\"Fizetés fogadása\",\"lGYzP6\":\"Fogadj kifizetést a Stripe-on keresztül\",\"ZDIydz\":\"Kezdés\",\"u6FPxT\":\"Jegyek vásárlása\",\"8KDgYV\":\"Készítse elő eseményét\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Vissza\",\"oNL5vN\":\"Esemény oldalra\",\"gHSuV/\":\"Ugrás a főoldalra\",\"8+Cj55\":\"Ugrás az ütemezéshez\",\"6nDzTl\":\"Jó olvashatóság\",\"76gPWk\":\"Értem\",\"aGWZUr\":\"Bruttó bevétel\",\"n8IUs7\":\"Bruttó bevétel\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Vendégkezelés\",\"NUsTc4\":\"Most zajlik\",\"kTSQej\":[\"Helló \",[\"0\"],\", innen kezelheti a platformot.\"],\"dORAcs\":\"Itt vannak az e-mail címéhez tartozó összes jegyek.\",\"g+2103\":\"Íme az affiliate linkje\",\"bVsnqU\":\"Üdv,\",\"/iE8xx\":\"Hi.Events díj\",\"zppscQ\":\"Hi.Events platform díjak és ÁFA bontás tranzakciónként\",\"D+zLDD\":\"Rejtett\",\"DRErHC\":\"Rejtett a résztvevők elől - csak a szervezők látják\",\"NNnsM0\":\"Speciális beállítások elrejtése\",\"P+5Pbo\":\"Válaszok elrejtése\",\"VMlRqi\":\"Részletek elrejtése\",\"FmogyU\":\"Opciók elrejtése\",\"gtEbeW\":\"Kiemelés\",\"NF8sdv\":\"Kiemelt üzenet\",\"MXSqmS\":\"Termék kiemelése\",\"7ER2sc\":\"Kiemelt\",\"sq7vjE\":\"A kiemelt termékek eltérő háttérszínnel jelennek meg, hogy kiemelkedjenek az esemény oldalán.\",\"1+WSY1\":\"Hobbi\",\"yY8wAv\":\"Óra\",\"sy9anN\":\"Mennyi ideje van az ügyfélnek a vásárlás befejezésére az ajánlat kézhezvétele után. Hagyja üresen, ha nincs időkorlát.\",\"n2ilNh\":\"Meddig tart az ütemezés?\",\"DMr2XN\":\"Milyen gyakran?\",\"AVpmAa\":\"Hogyan fizessen offline\",\"cceMns\":\"Hogyan számítjuk fel az ÁFA-t a platformdíjakhoz.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Magyar\",\"8Wgd41\":\"Tudomásul veszem adatkezelői felelősségemet\",\"O8m7VA\":\"Elfogadom az eseménnyel kapcsolatos e-mail értesítések fogadását\",\"YLgdk5\":\"Megerősítem, hogy ez egy tranzakciós üzenet az eseményhez kapcsolódóan\",\"4/kP5a\":\"Ha nem nyílt meg automatikusan új lap, kérjük, kattintson az alábbi gombra a fizetés folytatásához.\",\"W/eN+G\":\"Ha üres, a cím egy Google Maps link generálásához lesz felhasználva\",\"iIEaNB\":\"Ha van nálunk fiókja, e-mailt fog kapni a jelszó visszaállításához szükséges utasításokkal.\",\"an5hVd\":\"Képek\",\"tSVr6t\":\"Megszemélyesítés\",\"TWXU0c\":\"Felhasználó megszemélyesítése\",\"5LAZwq\":\"Megszemélyesítés elindítva\",\"IMwcdR\":\"Megszemélyesítés leállítva\",\"0I0Hac\":\"Fontos megjegyzés\",\"yD3avI\":\"Fontos: Az e-mail cím módosítása frissíti a rendeléshez való hozzáférés linkjét. Mentés után átirányítjuk az új rendelési linkre.\",\"jT142F\":[[\"diffHours\"],\" óra múlva\"],\"OoSyqO\":[[\"diffMinutes\"],\" perc múlva\"],\"PdMhEx\":[\"az elmúlt \",[\"0\"],\" percben\"],\"u7r0G5\":\"Személyes — helyszín megadása\",\"Ip0hl5\":\"személyes, online, nincs beállítva, vagy vegyes\",\"F1Xp97\":\"Egyéni résztvevők\",\"85e6zs\":\"Liquid token beszúrása\",\"38KFY0\":\"Változó beszúrása\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Azonnali Stripe kifizetések\",\"nbfdhU\":\"Integrációk\",\"I8eJ6/\":\"Belső megjegyzések a résztvevő jegyén\",\"B2Tpo0\":\"Érvénytelen e-mail\",\"5tT0+u\":\"Érvénytelen e-mail formátum\",\"f9WRpE\":\"Érvénytelen fájltípus. Kérjük, töltsön fel egy képet.\",\"tnL+GP\":\"Érvénytelen Liquid szintaxis. Kérjük, javítsa ki és próbálja újra.\",\"N9JsFT\":\"Érvénytelen ÁFA szám formátum\",\"g+lLS9\":\"Csapattag meghívása\",\"1z26sk\":\"Csapattag meghívása\",\"KR0679\":\"Csapattagok meghívása\",\"aH6ZIb\":\"Hívja meg csapatát\",\"IuMGvq\":\"Számla\",\"Lj7sBL\":\"Olasz\",\"F5/CBH\":\"tétel(ek)\",\"BzfzPK\":\"Tételek\",\"rjyWPb\":\"Január\",\"KmWyx0\":\"Feladat\",\"o5r6b2\":\"Feladat törölve\",\"cd0jIM\":\"Feladat részletei\",\"ruJO57\":\"Feladat neve\",\"YZi+Hu\":\"Feladat újrapróbálásra sorba állítva\",\"nCywLA\":\"Csatlakozzon bárhonnan\",\"SNzppu\":\"Csatlakozás a várólistához\",\"dLouFI\":[\"Feliratkozás a várólistára: \",[\"productDisplayName\"]],\"2gMuHR\":\"Csatlakozott\",\"u4ex5r\":\"Július\",\"zeEQd/\":\"Június\",\"MxjCqk\":\"Csak a jegyeit keresi?\",\"xOTzt5\":\"épp most\",\"0RihU9\":\"Most fejeződött be\",\"lB2hSG\":[\"Tartsanak naprakészen a \",[\"0\"],\" híreivel és eseményeivel\"],\"ioFA9i\":\"Tartsa meg a profitot.\",\"4Sffp7\":\"Az alkalom címkéje\",\"o66QSP\":\"címkefrissítések\",\"RtKKbA\":\"Utolsó\",\"DruLRc\":\"Elmúlt 14 nap\",\"ve9JTU\":\"A vezetéknév kötelező\",\"h0Q9Iw\":\"Utolsó válasz\",\"gw3Ur5\":\"Utoljára aktiválva\",\"FIq1Ba\":\"Később\",\"xvnLMP\":\"Legutóbbi beléptetések\",\"pzAivY\":\"A feloldott helyszín szélességi foka\",\"N5TErv\":\"Hagyja üresen a korlátlanhoz\",\"L/hDDD\":\"Hagyja üresen, hogy ezt a beléptetési listát minden alkalomra alkalmazza\",\"9Pf3wk\":\"Hagyja bekapcsolva, hogy minden jegyre kiterjedjen az eseményen. Kapcsolja ki, ha konkrét jegyeket szeretne kiválasztani.\",\"Hq2BzX\":\"Tájékoztassa őket a változásról\",\"+uexiy\":\"Tájékoztassa őket a változásokról\",\"exYcTF\":\"Könyvtár\",\"1njn7W\":\"Világos\",\"1qY5Ue\":\"A link lejárt vagy érvénytelen\",\"+zSD/o\":\"Hivatkozás az esemény főoldalára\",\"psosdY\":\"Link a rendelés részleteihez\",\"6JzK4N\":\"Link a jegyhez\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Linkek engedélyezve\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Listanézet\",\"dF6vP6\":\"Élő\",\"fpMs2Z\":\"ÉLŐ\",\"D9zTjx\":\"Élő események\",\"C33p4q\":\"Betöltött időpontok\",\"WdmJIX\":\"Előnézet betöltése...\",\"IoDI2o\":\"Tokenek betöltése...\",\"G3Ge9Z\":\"Webhook-naplók betöltése...\",\"NFxlHW\":\"Webhookok betöltése\",\"E0DoRM\":\"Helyszín törölve\",\"NtLHT3\":\"Helyszín formázott címe\",\"h4vxDc\":\"Helyszín szélességi foka\",\"f2TMhR\":\"Helyszín hosszúsági foka\",\"lnCo2f\":\"Helyszín módja\",\"8pmGFk\":\"Helyszín neve\",\"7w8lJU\":\"Helyszín mentve\",\"YsRXDD\":\"Helyszín frissítve\",\"A/kIva\":\"helyszín frissítések\",\"VppBoU\":\"Helyszínek\",\"iG7KNr\":\"Logó\",\"vu7ZGG\":\"Logó és borítókép\",\"gddQe0\":\"Logó és borítókép a szervezőjéhez\",\"TBEnp1\":\"A logó a fejlécben jelenik meg\",\"Jzu30R\":\"A logó megjelenik a jegyen\",\"zKTMTg\":\"A feloldott helyszín hosszúsági foka\",\"PSRm6/\":\"Jegyeim keresése\",\"yJFu/X\":\"Központi iroda\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[[\"0\"],\" kezelése\"],\"wZJfA8\":\"Az ismétlődő esemény időpontjainak kezelése\",\"RlzPUE\":\"Kezelés a Stripe-on\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Ütemezés kezelése\",\"zXuaxY\":\"Kezelje az esemény várólistáját, tekintse meg a statisztikákat, és ajánljon fel jegyeket a résztvevőknek.\",\"BWTzAb\":\"Manuális\",\"g2npA5\":\"Manuális ajánlat\",\"hg6l4j\":\"Március\",\"pqRBOz\":\"Megjelölés érvényesítettként (admin felülírás)\",\"2L3vle\":\"Max üzenetek / 24ó\",\"Qp4HWD\":\"Max címzettek / üzenet\",\"3JzsDb\":\"Május\",\"agPptk\":\"Médium\",\"xDAtGP\":\"Üzenet\",\"bECJqy\":\"Üzenet sikeresen jóváhagyva\",\"1jRD0v\":\"Üzenet a résztvevőknek meghatározott jegyekkel\",\"uQLXbS\":\"Üzenet törölve\",\"48rf3i\":\"Az üzenet nem haladhatja meg az 5000 karaktert\",\"ZPj0Q8\":\"Üzenet részletei\",\"Vjat/X\":\"Üzenet kötelező\",\"0/yJtP\":\"Üzenet a megrendelőknek meghatározott termékekkel\",\"saG4At\":\"Üzenet ütemezve\",\"mFdA+i\":\"Üzenetküldési szint\",\"v7xKtM\":\"Üzenetküldési szint sikeresen frissítve\",\"H9HlDe\":\"perc\",\"agRWc1\":\"Perc\",\"YYzBv9\":\"H\",\"zz/Wd/\":\"Mód\",\"fpMgHS\":\"Hét\",\"hty0d5\":\"Hétfő\",\"JbIgPz\":\"A pénzértékek az összes pénznem hozzávetőleges összegei\",\"qvF+MT\":\"Sikertelen háttérfeladatok figyelése és kezelése\",\"kY2ll9\":\"hónap\",\"HajiZl\":\"Hónap\",\"+8Nek/\":\"Havonta\",\"1LkxnU\":\"Havi minta\",\"6jefe3\":\"hónap\",\"f8jrkd\":\"több\",\"JcD7qf\":\"További műveletek\",\"w36OkR\":\"Legnézettebb események (Elmúlt 14 nap)\",\"+Y/na7\":\"Az összes időpont előbbre vagy későbbre helyezése\",\"3DIpY0\":\"Több helyszín\",\"g9cQCP\":\"Több jegytípus\",\"GfaxEk\":\"Zene\",\"oVGCGh\":\"Jegyeim\",\"8/brI5\":\"Név kötelező\",\"sFFArG\":\"A névnek rövidebbnek kell lennie 255 karakternél\",\"sCV5Yc\":\"Az esemény neve\",\"xxU3NX\":\"Nettó bevétel\",\"7I8LlL\":\"Új kapacitás\",\"n1GRql\":\"Új címke\",\"y0Fcpd\":\"Új helyszín\",\"ArHT/C\":\"Új regisztrációk\",\"uK7xWf\":\"Új időpont:\",\"veT5Br\":\"Következő alkalom\",\"WXtl5X\":[\"Következő: \",[\"nextFormatted\"]],\"eWRECP\":\"Éjszakai élet\",\"HSw5l3\":\"Nem - Magánszemély vagyok vagy nem ÁFA-s vállalkozás\",\"VHfLAW\":\"Nincsenek fiókok\",\"+jIeoh\":\"Nem találhatók fiókok\",\"074+X8\":\"Nincsenek aktív webhookok\",\"zxnup4\":\"Nincs megjeleníthető partner\",\"Dwf4dR\":\"Még nincsenek résztvevői kérdések\",\"th7rdT\":\"Nincs megjeleníthető résztvevő\",\"PKySlW\":\"Még nincs résztvevő ehhez az időponthoz.\",\"/UC6qk\":\"Nem található hozzárendelési adat\",\"E2vYsO\":\"A Stripe még nem jelentett képességet.\",\"amMkpL\":\"Nincs kapacitás\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nincs elérhető bejelentkezési lista ehhez az eseményhez.\",\"wG+knX\":\"Még nincs beléptetés\",\"+dAKxg\":\"Nem találhatók konfigurációk\",\"LiLk8u\":\"Nincs elérhető kapcsolat\",\"eb47T5\":\"Nincs adat a kiválasztott szűrőkhöz. Próbálja meg módosítani a dátumtartományt vagy a pénznemet.\",\"lFVUyx\":\"Nincs időpontspecifikus beléptetési lista\",\"I8mtzP\":\"Ebben a hónapban nincs elérhető időpont. Próbáljon másik hónapra lépni.\",\"yDukIL\":\"Egyetlen időpont sem felel meg a jelenlegi szűrőknek.\",\"B7phdj\":\"Egyetlen időpont sem felel meg a szűrőknek\",\"/ZB4Um\":\"Egyetlen időpont sem felel meg a keresésnek\",\"gEdNe8\":\"Még nincsenek ütemezett időpontok\",\"27GYXJ\":\"Nincsenek ütemezett időpontok.\",\"pZNOT9\":\"Nincs befejezési dátum\",\"dW40Uz\":\"Nem találhatók események\",\"8pQ3NJ\":\"Nincs esemény, amely a következő 24 órában kezdődne\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Nincs sikertelen feladat\",\"EpvBAp\":\"Nincs számla\",\"XZkeaI\":\"Nem található napló\",\"nrSs2u\":\"Nem található üzenet\",\"Rj99yx\":\"Nincsenek elérhető alkalmak\",\"IFU1IG\":\"Ezen a napon nincsenek alkalmak\",\"OVFwlg\":\"Még nincsenek rendelési kérdések\",\"EJ7bVz\":\"Nem találhatók rendelések\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Még nincs rendelés ehhez az időponthoz.\",\"wUv5xQ\":\"Nincs szervezői tevékenység az elmúlt 14 napban\",\"vLd1tV\":\"Nincs elérhető szervezői kontextus.\",\"B7w4KY\":\"Nincsenek más szervezők\",\"PChXMe\":\"Nincsenek fizetett rendelések\",\"6jYQGG\":\"Nincsenek múltbeli események\",\"CHzaTD\":\"Nincs népszerű esemény az elmúlt 14 napban\",\"zK/+ef\":\"Nincsenek kiválasztható termékek\",\"M1/lXs\":\"Ehhez az eseményhez nincsenek beállított termékek.\",\"kY7XDn\":\"Nincs várólistás bejegyzéssel rendelkező termék\",\"wYiAtV\":\"Nincs új fiók regisztráció\",\"UW90md\":\"Nem találhatók címzettek\",\"QoAi8D\":\"Nincs válasz\",\"JeO7SI\":\"Nincs válasz\",\"EK/G11\":\"Még nincsenek válaszok\",\"7J5OKy\":\"Még nincsenek mentett helyszínek\",\"wpCjcf\":\"Még nincsenek mentett helyszínek. Itt jelennek meg, ahogy címekkel rendelkező eseményeket hoz létre.\",\"mPdY6W\":\"Nincsenek javaslatok\",\"3sRuiW\":\"Nem találhatók jegyek\",\"k2C0ZR\":\"Nincsenek közelgő időpontok\",\"yM5c0q\":\"Nincsenek közelgő események\",\"qpC74J\":\"Nem találhatók felhasználók\",\"8wgkoi\":\"Nincs megtekintett esemény az elmúlt 14 napban\",\"Arzxc1\":\"Nincsenek várólistás bejegyzések\",\"n5vdm2\":\"Ehhez a végponthoz még nem rögzítettek webhook eseményeket. Az események itt jelennek meg, amint aktiválódnak.\",\"4GhX3c\":\"Nincsenek Webhookok\",\"4+am6b\":\"Nem, maradok itt\",\"4JVMUi\":\"nem szerkesztett\",\"Itw24Q\":\"Nincs beléptetve\",\"x5+Lcz\":\"Nincs bejelentkezve\",\"8n10sz\":\"Nem jogosult\",\"kLvU3F\":\"Résztvevők értesítése és az értékesítés leállítása\",\"t9QlBd\":\"November\",\"kAREMN\":\"Létrehozandó időpontok száma\",\"6u1B3O\":\"Alkalom\",\"mmoE62\":\"Alkalom lemondva\",\"UYWXdN\":\"Alkalom befejezési dátuma\",\"k7dZT5\":\"Alkalom befejezési ideje\",\"Opinaj\":\"Alkalom címkéje\",\"V9flmL\":\"Alkalom-ütemezés\",\"NUTUUs\":\"Alkalom-ütemezés oldal\",\"AT8UKD\":\"Alkalom kezdési dátuma\",\"Um8bvD\":\"Alkalom kezdési ideje\",\"Kh3WO8\":\"Alkalom összegzése\",\"byXCTu\":\"Alkalmak\",\"KATw3p\":\"Alkalmak (csak jövőbeli)\",\"85rTR2\":\"Az alkalmak a létrehozás után konfigurálhatók\",\"dzQfDY\":\"Október\",\"BwJKBw\":\"/\",\"9h7RDh\":\"Felajánlás\",\"EfK2O6\":\"Hely felajánlása\",\"3sVRey\":\"Jegyek felajánlása\",\"2O7Ybb\":\"Ajánlat időkorlát\",\"1jUg5D\":\"Felajánlva\",\"l+/HS6\":[\"Az ajánlatok \",[\"timeoutHours\"],\" óra után lejárnak.\"],\"lQgMLn\":\"Iroda vagy helyszín neve\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offline fizetés\",\"nO3VbP\":[\"Értékesítésben \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — add meg a csatlakozási adatokat\",\"LuZBbx\":\"Online és személyes\",\"IXuOqt\":\"Online és személyes — lásd az ütemezést\",\"w3DG44\":\"Online kapcsolódási adatok\",\"WjSpu5\":\"Online esemény\",\"TP6jss\":\"Online esemény kapcsolódási adatai\",\"NdOxqr\":\"Csak a fiókadminisztrátorok törölhetnek vagy archiválhatnak eseményeket. Segítségért forduljon a fiókadminisztrátorhoz.\",\"rnoDMF\":\"Csak a fiókadminisztrátorok törölhetnek vagy archiválhatnak szervezőket. Segítségért forduljon a fiókadminisztrátorhoz.\",\"bU7oUm\":\"Csak az ilyen státuszú megrendelésekre küldje el\",\"M2w1ni\":\"Csak promóciós kóddal látható\",\"y8Bm7C\":\"Beléptetés megnyitása\",\"RLz7P+\":\"Alkalom megnyitása\",\"cDSdPb\":\"Választható becenév, amely a választókban jelenik meg, pl. \\\"Központi tárgyaló\\\"\",\"HXMJxH\":\"Opcionális szöveg jogi nyilatkozatokhoz, kapcsolattartási információkhoz vagy köszönetnyilvánításhoz (csak egy sor)\",\"L565X2\":\"opciók\",\"8m9emP\":\"vagy adjon hozzá egyetlen időpontot\",\"dSeVIm\":\"rendelés\",\"c/TIyD\":\"Rendelés és jegy\",\"H5qWhm\":\"Rendelés törölve\",\"b6+Y+n\":\"Rendelés befejezve\",\"x4MLWE\":\"Rendelés megerősítése\",\"CsTTH0\":\"Rendelés visszaigazolása sikeresen újraküldve\",\"ppuQR4\":\"Megrendelés létrehozva\",\"0UZTSq\":\"Rendelés pénzneme\",\"xtQzag\":\"Rendelés adatai\",\"HdmwrI\":\"Rendelés e-mail\",\"bwBlJv\":\"Rendelés keresztnév\",\"vrSW9M\":\"A rendelés törölve és visszatérítve lett. A rendelés tulajdonosa értesítve lett.\",\"rzw+wS\":\"Rendelés tulajdonosok\",\"oI/hGR\":\"Rendelésszám\",\"Pc729f\":\"A rendelés offline fizetésre vár\",\"F4NXOl\":\"Rendelés vezetéknév\",\"RQCXz6\":\"Rendelési limitek\",\"SO9AEF\":\"Rendelési limitek beállítva\",\"5RDEEn\":\"Rendelés nyelve\",\"vu6Arl\":\"Megrendelés fizetettként megjelölve\",\"sLbJQz\":\"Rendelés nem található\",\"kvYpYu\":\"Rendelés nem található\",\"i8VBuv\":\"Rendelésszám\",\"eJ8SvM\":\"Rendelésszám, vásárlás dátuma, vásárló e-mailje\",\"FaPYw+\":\"Megrendelő\",\"eB5vce\":\"Megrendelők meghatározott termékkel\",\"CxLoxM\":\"Megrendelők termékekkel\",\"DoH3fD\":\"Rendelés fizetésre vár\",\"UkHo4c\":\"Rendelés hiv.\",\"EZy55F\":\"Megrendelés visszatérítve\",\"6eSHqs\":\"Megrendelés állapotok\",\"oW5877\":\"Rendelés összege\",\"e7eZuA\":\"Megrendelés frissítve\",\"1SQRYo\":\"A rendelés sikeresen frissítve\",\"KndP6g\":\"Rendelés URL\",\"3NT0Ck\":\"Rendelés törölve lett\",\"V5khLm\":\"rendelések\",\"sd5IMt\":\"Befejezett rendelések\",\"5It1cQ\":\"Exportált megrendelések\",\"tlKX/S\":\"A több időpontot átfogó rendeléseket kézi felülvizsgálatra megjelöljük.\",\"UQ0ACV\":\"Rendelések összesen\",\"B/EBQv\":\"Rendelések:\",\"qtGTNu\":\"Organikus fiókok\",\"ucgZ0o\":\"Szervezet\",\"P/JHA4\":\"A szervező sikeresen archiválva\",\"S3CZ5M\":\"Szervezői irányítópult\",\"GzjTd0\":\"A szervező sikeresen törölve\",\"Uu0hZq\":\"Szervező e-mail\",\"Gy7BA3\":\"Szervező e-mail címe\",\"SQqJd8\":\"Szervező nem található\",\"HF8Bxa\":\"A szervező sikeresen visszaállítva\",\"wpj63n\":\"Szervezői beállítások\",\"o1my93\":\"Szervező állapotának frissítése sikertelen. Kérjük, próbálja újra később.\",\"rLHma1\":\"Szervező állapota frissítve\",\"LqBITi\":\"Szervező/alapértelmezett sablon lesz használva\",\"q4zH+l\":\"Szervezők\",\"/IX/7x\":\"Egyéb\",\"RsiDDQ\":\"Egyéb listák (Jegy nem szerepel)\",\"aDfajK\":\"Szabadtéri\",\"qMASRF\":\"Kimenő üzenetek\",\"iCOVQO\":\"Felülírás\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Ár felülírása\",\"cnVIpl\":\"Felülírás eltávolítva\",\"6/dCYd\":\"Áttekintés\",\"6WdDG7\":\"Oldal\",\"8uqsE5\":\"Az oldal már nem elérhető\",\"QkLf4H\":\"Oldal URL-címe\",\"sF+Xp9\":\"Oldal megtekintések\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Fizetett fiókok\",\"5F7SYw\":\"Részleges visszatérítés\",\"fFYotW\":[\"Részben visszatérítve: \",[\"0\"]],\"i8day5\":\"Díj áthárítása a vevőre\",\"k4FLBQ\":\"Áthárítás a vevőre\",\"Ff0Dor\":\"Múlt\",\"BFjW8X\":\"Lejárt\",\"xTPjSy\":\"Múltbeli események\",\"/l/ckQ\":\"URL beillesztése\",\"URAE3q\":\"Szüneteltetve\",\"4fL/V7\":\"Fizetés\",\"OZK07J\":\"Fizessen a feloldáshoz\",\"c2/9VE\":\"Adattartalom\",\"5cxUwd\":\"Fizetés dátuma\",\"ENEPLY\":\"Fizetési mód\",\"8Lx2X7\":\"Fizetés megérkezett\",\"fx8BTd\":\"Fizetések nem elérhetők\",\"C+ylwF\":\"Kifizetések\",\"UbRKMZ\":\"Függőben\",\"UkM20g\":\"Áttekintésre vár\",\"dPYu1F\":\"Résztvevőnként\",\"mQV/nJ\":\"percenként\",\"VlXNyK\":\"Rendelésenként\",\"hauDFf\":\"Jegyenként\",\"mnF83a\":\"Százalékos díj\",\"TNLuRD\":\"Százalékos díj (%)\",\"MixU2P\":\"A százaléknak 0 és 100 között kell lennie\",\"MkuVAZ\":\"Tranzakció összegének százaléka\",\"/Bh+7r\":\"Teljesítmény\",\"fIp56F\":\"Véglegesen törölje ezt az eseményt és az összes kapcsolódó adatot.\",\"nJeeX7\":\"Véglegesen törölje ezt a szervezőt és az összes eseményét.\",\"wfCTgK\":\"Időpont végleges eltávolítása\",\"6kPk3+\":\"Személyes adatok\",\"zmwvG2\":\"Telefon\",\"SdM+Q1\":\"Válassz egy helyszínt\",\"tSR/oe\":\"Válasszon befejezési dátumot\",\"e8kzpp\":\"Válasszon legalább egy napot a hónapból\",\"35C8QZ\":\"Válasszon legalább egy napot a hétből\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Leadva\",\"wBJR8i\":\"Eseményt tervez?\",\"J3lhKT\":\"Platformdíj\",\"RD51+P\":[[\"0\"],\" platformdíj levonva a kifizetésből\"],\"br3Y/y\":\"Platform díjak\",\"3buiaw\":\"Platform díjak jelentés\",\"kv9dM4\":\"Platform bevétel\",\"PJ3Ykr\":\"Kérjük, ellenőrizze a jegyén a frissített időpontot. A jegyei továbbra is érvényesek — nincs szükség teendőre, hacsak az új időpontok nem felelnek meg Önnek. Bármilyen kérdés esetén válaszoljon erre az e-mailre.\",\"OtjenF\":\"Kérjük, adjon meg egy érvényes e-mail címet\",\"jEw0Mr\":\"Kérjük, adjon meg érvényes URL-t.\",\"n8+Ng/\":\"Kérjük, adja meg az 5 jegyű kódot.\",\"r+lQXT\":\"Kérjük, adja meg ÁFA számát\",\"Dvq0wf\":\"Kérjük, adjon meg egy képet.\",\"2cUopP\":\"Kérjük, indítsa újra a pénztári folyamatot.\",\"GoXxOA\":\"Kérjük, válasszon dátumot és időpontot\",\"8KmsFa\":\"Kérjük, válasszon dátumtartományt\",\"EFq6EG\":\"Kérjük, válasszon egy képet.\",\"fuwKpE\":\"Kérjük, próbálja újra.\",\"klWBeI\":\"Kérjük, várjon, mielőtt újabb kódot kér.\",\"hfHhaa\":\"Kérjük, várjon, amíg előkészítjük partnereit az exportálásra...\",\"o+tJN/\":\"Kérjük, várjon, amíg előkészítjük résztvevőit az exportálásra...\",\"+5Mlle\":\"Kérjük, várjon, amíg előkészítjük megrendeléseit az exportálásra...\",\"trnWaw\":\"Lengyel\",\"luHAJY\":\"Népszerű események (Elmúlt 14 nap)\",\"p/78dY\":\"Pozíció\",\"TjX7xL\":\"Pénztár utáni üzenet\",\"OESu7I\":\"Megelőzheti a túlértékesítést azáltal, hogy megosztja a készletet több jegytípus között.\",\"NgVUL2\":\"Pénztári űrlap előnézete\",\"cs5muu\":\"Eseményoldal előnézete\",\"+4yRWM\":\"Jegy ára\",\"Jm2AC3\":\"Árszint\",\"a5jvSX\":\"Ár szintek\",\"ReihZ7\":\"Nyomtatási előnézet\",\"JnuPvH\":\"Jegy nyomtatása\",\"tYF4Zq\":\"Nyomtatás PDF-be\",\"LcET2C\":\"Adatvédelmi irányelvek\",\"8z6Y5D\":\"Visszatérítés feldolgozása\",\"JcejNJ\":\"Rendelés feldolgozása\",\"EWCLpZ\":\"Termék létrehozva\",\"XkFYVB\":\"Termék törölve\",\"YMwcbR\":\"Termék értékesítés, bevétel és adó bontás\",\"ls0mTC\":\"A termékbeállítások nem szerkeszthetők lemondott időpontoknál.\",\"2339ej\":\"Termékbeállítások sikeresen mentve\",\"ldVIlB\":\"Termék frissítve\",\"CP3D8G\":\"Folyamat\",\"JoKGiJ\":\"Promóciós kód\",\"k3wH7i\":\"Promóciós kód felhasználás és kedvezmény bontás\",\"tZqL0q\":\"promóciós kódok\",\"oCHiz3\":\"Promóciós kódok\",\"uEhdRh\":\"Csak promócióval\",\"dLm8V5\":\"A promóciós e-mailek fiók felfüggesztéshez vezethetnek\",\"XoEWtl\":\"Adj meg legalább egy címmezőt az új helyszínhez.\",\"2W/7Gz\":\"Add meg az alábbiakat a Stripe következő ellenőrzése előtt, hogy a kifizetések folyamatosak maradjanak.\",\"aemBRq\":\"Szolgáltató\",\"EEYbdt\":\"Közzététel\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Megvásárolt\",\"JunetL\":\"Vásárló\",\"phmeUH\":\"Vásárló e-mail\",\"ywR4ZL\":\"QR-kódos beléptetés\",\"oWXNE5\":\"Menny.\",\"biEyJ4\":\"Válaszok\",\"k/bJj0\":\"Kérdések átrendezve\",\"b24kPi\":\"Várakozási sor\",\"lTPqpM\":\"Gyors tipp\",\"fqDzSu\":\"Arány\",\"mnUGVC\":\"Túllépte a korlátot. Kérjük, próbálja újra később.\",\"t41hVI\":\"Hely újbóli felajánlása\",\"TNclgc\":\"Újraaktiválja ezt az időpontot? Újra megnyílik a jövőbeli értékesítések számára.\",\"uqoRbb\":\"Valós idejű analitika\",\"xzRvs4\":[\"Termékfrissítések fogadása a \",[\"0\"],\"-től.\"],\"pLXbi8\":\"Legutóbbi fiók regisztrációk\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Legutóbbi résztvevők\",\"qhfiwV\":\"Legutóbbi beléptetések\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Legutóbbi megrendelések\",\"7hPBBn\":\"címzett\",\"jp5bq8\":\"címzett\",\"yPrbsy\":\"Címzettek\",\"E1F5Ji\":\"A címzettek a küldés után érhetők el\",\"wuhHPE\":\"Ismétlődő\",\"asLqwt\":\"Ismétlődő esemény\",\"D0tAMe\":\"Ismétlődő események\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Átirányítás a Stripe-ra...\",\"pnoTN5\":\"Ajánlási fiókok\",\"ACKu03\":\"Előnézet frissítése\",\"vuFYA6\":\"Az ezen időpontokhoz tartozó összes rendelés visszatérítése\",\"4cRUK3\":\"Az ezen időponthoz tartozó összes rendelés visszatérítése\",\"fKn/k6\":\"Visszatérítés összege\",\"qY4rpA\":\"Visszatérítés sikertelen\",\"TspTcZ\":\"Visszatérítés kiadva\",\"FaK/8G\":[\"Rendelés visszatérítése \",[\"0\"]],\"MGbi9P\":\"Visszatérítés folyamatban\",\"BDSRuX\":[\"Visszatérítve: \",[\"0\"]],\"bU4bS1\":\"Visszatérítések\",\"rYXfOA\":\"Regionális beállítások\",\"5tl0Bp\":\"Regisztrációs kérdések\",\"ZNo5k1\":\"Hátralévő\",\"EMnuA4\":\"Emlékeztető ütemezve\",\"Bjh87R\":\"Címke eltávolítása az összes időpontról\",\"KkJtVK\":\"Újranyitás új értékesítéshez\",\"XJwWJp\":\"Újranyitja ezt a dátumot új értékesítéshez? A korábban lemondott jegyek nem kerülnek visszaállításra — az érintett résztvevők lemondva maradnak, és a már kiadott visszatérítések nem kerülnek visszavonásra.\",\"bAwDQs\":\"Ismétlés minden\",\"CQeZT8\":\"Jelentés nem található\",\"JEPMXN\":\"Új link kérése\",\"TMLAx2\":\"Kötelező\",\"mdeIOH\":\"Kód újraküldése\",\"sQxe68\":\"Visszaigazolás újraküldése\",\"bxoWpz\":\"Megerősítő e-mail újraküldése\",\"G42SNI\":\"E-mail újraküldése\",\"TTpXL3\":[\"Újraküldés \",[\"resendCooldown\"],\" másodperc múlva\"],\"5CiNPm\":\"Jegy újraküldése\",\"Uwsg2F\":\"Lefoglalva\",\"8wUjGl\":\"Lefoglalva eddig:\",\"a5z8mb\":\"Visszaállítás alapárra\",\"kCn6wb\":\"Visszaállítás...\",\"404zLK\":\"Feloldott helyszín vagy helyszín neve\",\"ZlCDf+\":\"Válasz\",\"bsydMp\":\"Válasz részletei\",\"yKu/3Y\":\"Visszaállítás\",\"RokrZf\":\"Esemény visszaállítása\",\"/JyMGh\":\"Szervező visszaállítása\",\"HFvFRb\":\"Állítsa vissza ezt az eseményt, hogy ismét látható legyen.\",\"DDIcqy\":\"Állítsa vissza ezt a szervezőt, és tegye ismét aktívvá.\",\"mO8KLE\":\"találat\",\"6gRgw8\":\"Újrapróbálás\",\"1BG8ga\":\"Összes újrapróbálása\",\"rDC+T6\":\"Feladat újrapróbálása\",\"CbnrWb\":\"Vissza az eseményhez\",\"mdQ0zb\":\"Újrafelhasználható helyszínek az eseményeihez. Az automatikus kiegészítésből létrehozott helyszínek automatikusan ide kerülnek.\",\"XFOPle\":\"Újrahasználat\",\"1Zehp4\":\"Használj újra egy Stripe-kapcsolatot a fiók másik szervezőjétől.\",\"Oo/PLb\":\"Bevételi összefoglaló\",\"O/8Ceg\":\"Mai bevétel\",\"CfuueU\":\"Ajánlat visszavonása\",\"RIgKv+\":\"Egy adott dátumig fut\",\"JYRqp5\":\"Szo\",\"dFFW9L\":[\"Értékesítés véget ért \",[\"0\"]],\"loCKGB\":[\"Értékesítés vége \",[\"0\"]],\"wlfBad\":\"Értékesítési időszak\",\"qi81Jg\":\"Az értékesítési időszak dátumai az ütemezés összes időpontjára érvényesek. Az egyes időpontok árazásának és elérhetőségének szabályozásához használja a felülírásokat az <0>Alkalom-ütemezés oldalon.\",\"5CDM6r\":\"Értékesítési időszak beállítva\",\"ftzaMf\":\"Értékesítési időszak, rendelési limitek, láthatóság\",\"zpekWp\":[\"Értékesítés kezdete \",[\"0\"]],\"mUv9U4\":\"Értékesítések\",\"9KnRdL\":\"Értékesítés szüneteltetve\",\"JC3J0k\":\"Értékesítési, részvételi és beléptetési bontás alkalmanként\",\"3VnlS9\":\"Értékesítések, rendelések és teljesítménymutatók minden eseményhez\",\"3Q1AWe\":\"Értékesítések:\",\"LeuERW\":\"Megegyezik az eseménnyel\",\"B4nE3N\":\"Minta jegyár\",\"8BRPoH\":\"Minta helyszín\",\"PiK6Ld\":\"Szo\",\"+5kO8P\":\"Szombat\",\"zJiuDn\":\"Díj felülírásának mentése\",\"NB8Uxt\":\"Ütemezés mentése\",\"KZrfYJ\":\"Közösségi linkek mentése\",\"9Y3hAT\":\"Sablon mentése\",\"C8ne4X\":\"Jegytervezés mentése\",\"cTI8IK\":\"ÁFA-beállítások mentése\",\"6/TNCd\":\"ÁFA beállítások mentése\",\"4RvD9q\":\"Mentett helyszín\",\"cgw0cL\":\"Mentett helyszínek\",\"lvSrsT\":\"Mentett helyszínek\",\"Fbqm/I\":\"A felülírás mentése dedikált konfigurációt hoz létre ennek a szervezőnek, ha jelenleg a rendszer alapértelmezett beállítását használja.\",\"I+FvbD\":\"Beolvasás\",\"0zd6Nm\":\"Olvass be egy jegyet a résztvevő beléptetéséhez\",\"bQG7Qk\":\"A beolvasott jegyek itt jelennek meg\",\"WDYSLJ\":\"Olvasó mód\",\"gmB6oO\":\"Ütemezés\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Ütemezés sikeresen létrehozva\",\"YP7frt\":\"Az ütemezés ekkor ér véget\",\"QS1Nla\":\"Ütemezés későbbre\",\"NAzVVw\":\"Üzenet ütemezése\",\"Fz09JP\":\"Az ütemezés kezdete\",\"4ba0NE\":\"Ütemezett\",\"qcP/8K\":\"Ütemezett időpont\",\"A1taO8\":\"Keresés\",\"ftNXma\":\"Partnerek keresése...\",\"VMU+zM\":\"Résztvevők keresése\",\"VY+Bdn\":\"Keresés fióknév vagy e-mail alapján...\",\"VX+B3I\":\"Keresés esemény cím vagy szervező alapján...\",\"R0wEyA\":\"Keresés feladat neve vagy kivétel alapján...\",\"VT+urE\":\"Keresés név vagy e-mail alapján...\",\"GHdjuo\":\"Keresés név, e-mail vagy fiók alapján...\",\"4mBFO7\":\"Keresés név, rendelés, jegy vagy email alapján\",\"20ce0U\":\"Keresés rendelésszám, vásárló név vagy e-mail alapján...\",\"4DSz7Z\":\"Keresés tárgy, esemény vagy fiók alapján...\",\"nQC7Z9\":\"Időpontok keresése...\",\"iRtEpV\":\"Időpontok keresése…\",\"JRM7ao\":\"Cím keresése\",\"BWF1kC\":\"Üzenetek keresése...\",\"3aD3GF\":\"Szezonális\",\"ku//5b\":\"Második\",\"Mck5ht\":\"Biztonságos pénztár\",\"s7tXqF\":\"Ütemezés megtekintése\",\"JFap6u\":\"Mit kér még a Stripe\",\"p7xUrt\":\"Válasszon egy kategóriát\",\"hTKQwS\":\"Válasszon dátumot és időpontot\",\"e4L7bF\":\"Válasszon egy üzenetet a tartalom megtekintéséhez\",\"zPRPMf\":\"Válasszon szintet\",\"uqpVri\":\"Válasszon időpontot\",\"BFRSTT\":\"Fiók kiválasztása\",\"wgNoIs\":\"Összes kijelölése\",\"mCB6Je\":\"Összes kiválasztása\",\"aCEysm\":[\"Az összes kiválasztása itt: \",[\"0\"]],\"a6+167\":\"Válasszon eseményt\",\"CFbaPk\":\"Résztvevő csoport kiválasztása\",\"88a49s\":\"Kamera választása\",\"tVW/yo\":\"Pénznem kiválasztása\",\"SJQM1I\":\"Időpont kiválasztása\",\"n9ZhRa\":\"Befejezés dátumának és idejének kiválasztása\",\"gTN6Ws\":\"Befejezési idő kiválasztása\",\"0U6E9W\":\"Eseménykategória kiválasztása\",\"j9cPeF\":\"Eseménytípusok kiválasztása\",\"ypTjHL\":\"Alkalom kiválasztása\",\"KizCK7\":\"Kezdés dátumának és idejének kiválasztása\",\"dJZTv2\":\"Kezdési idő kiválasztása\",\"x8XMsJ\":\"Válassza ki az üzenetküldési szintet ehhez a fiókhoz. Ez szabályozza az üzenetkorlátokat és a link engedélyeket.\",\"aT3jZX\":\"Időzóna kiválasztása\",\"TxfvH2\":\"Válassza ki, mely résztvevők kapják meg ezt az üzenetet\",\"Ropvj0\":\"Válassza ki, mely események indítják el ezt a webhookot.\",\"+6YAwo\":\"kiválasztva\",\"ylXj1N\":\"Kiválasztva\",\"uq3CXQ\":\"Adja el az eseményt teljesen.\",\"j9b/iy\":\"Gyorsan fogy 🔥\",\"73qYgo\":\"Küldés tesztként\",\"HMAqFK\":\"E-mailek küldése résztvevőknek, jegytulajdonosoknak vagy rendelés tulajdonosoknak. Az üzenetek azonnal elküldhetők vagy későbbre ütemezhetők.\",\"22Itl6\":\"Küldjön nekem egy másolatot\",\"NpEm3p\":\"Küldés most\",\"nOBvex\":\"Valós idejű rendelési és résztvevői adatok küldése a külső rendszereibe.\",\"1lNPhX\":\"Visszatérítési értesítő e-mail küldése\",\"eaUTwS\":\"Visszaállítási link küldése\",\"5cV4PY\":\"Küldés minden alkalomra, vagy válasszon egy konkrétat\",\"QEQlnV\":\"Küldje el első üzenetét\",\"3nMAVT\":\"Küldés 2n 4ó múlva\",\"IoAuJG\":\"Küldés...\",\"h69WC6\":\"Elküldve\",\"BVu2Hz\":\"Küldte\",\"ZFa8wv\":\"Akkor kerül elküldésre a résztvevőknek, ha egy ütemezett időpont lemondásra kerül\",\"SPdzrs\":\"Elküldve a vásárlóknak, amikor rendelést adnak le\",\"LxSN5F\":\"Elküldve minden résztvevőnek a jegy részleteivel\",\"hgvbYY\":\"Szeptember\",\"5sN96e\":\"Alkalom lemondva\",\"89xaFU\":\"Állítsa be az alapértelmezett platformdíj-beállításokat az ezen szervező alatt létrehozott új eseményekhez.\",\"eXssj5\":\"Alapértelmezett beállítások megadása az e szervező alatt létrehozott új eseményekhez.\",\"uPe5p8\":\"Állítsa be, meddig tart minden egyes időpont\",\"xNsRxU\":\"Időpontok számának beállítása\",\"ODuUEi\":\"Időpont címkéjének beállítása vagy törlése\",\"buHACR\":\"Állítsa be, hogy minden időpont befejezési ideje ennyivel a kezdési ideje után legyen.\",\"TaeFgl\":\"Beállítás korlátlanra (limit eltávolítása)\",\"pd6SSe\":\"Állítson be egy ismétlődő ütemezést az időpontok automatikus létrehozásához, vagy adja hozzá őket egyenként.\",\"s0FkEx\":\"Bejelentkezési listák beállítása különböző bejáratokhoz, munkamenetekhez vagy napokhoz.\",\"TaWVGe\":\"Kifizetések beállítása\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Ütemezés beállítása\",\"xMO+Ao\":\"Állítsa be szervezetét\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Az ütemezés beállítása\",\"ETC76A\":\"Az alkalom helyszínének vagy online adatainak beállítása, módosítása vagy eltávolítása\",\"C3htzi\":\"Beállítás frissítve\",\"Ohn74G\":\"Beállítás és tervezés\",\"1W5XyZ\":\"A beállítás csak pár percig tart — nincs szükséged meglévő Stripe-fiókra. A Stripe kezeli a kártyákat, tárcákat, regionális fizetési módokat és a csalásvédelmet, hogy az eseményre tudj koncentrálni.\",\"GG7qDw\":\"Partnerlink megosztása\",\"hL7sDJ\":\"Szervezői oldal megosztása\",\"jy6QDF\":\"Megosztott kapacitás kezelés\",\"jDNHW4\":\"Időpontok eltolása\",\"tPfIaW\":[[\"count\"],\" időpont időpontjai eltolva\"],\"WwlM8F\":\"Speciális beállítások\",\"cMW+gm\":[\"Összes platform megjelenítése (további \",[\"0\"],\" értékkel)\"],\"wXi9pZ\":\"Megjegyzések bejelentkezés nélküli személyzetnek\",\"UVPI5D\":\"Kevesebb platform megjelenítése\",\"Eu/N/d\":\"Marketing opt-in jelölőnégyzet megjelenítése\",\"SXzpzO\":\"Marketing opt-in jelölőnégyzet alapértelmezés szerinti megjelenítése\",\"57tTk5\":\"Több időpont megjelenítése\",\"b33PL9\":\"Több platform megjelenítése\",\"Eut7p9\":\"Rendelés adatai bejelentkezés nélküli személyzetnek\",\"+RoWKN\":\"Válaszok bejelentkezés nélküli személyzetnek\",\"t1LIQW\":[[\"0\"],\" / \",[\"totalRows\"],\" rekord megjelenítése\"],\"E717U9\":[\"Megjelenítve: \",[\"0\"],\"–\",[\"1\"],\" / \",[\"2\"]],\"5rzhBQ\":[\"Megjelenítve: \",[\"MAX_VISIBLE\"],\" / \",[\"totalAvailable\"],\" időpont. Gépeljen a kereséshez.\"],\"WSt3op\":[\"Az első \",[\"0\"],\" jelenik meg — a fennmaradó \",[\"1\"],\" alkalom továbbra is célpontja lesz az üzenetnek a küldéskor.\"],\"OJLTEL\":\"A személyzet első megnyitáskor látja.\",\"jVRHeq\":\"Regisztrált\",\"5C7J+P\":\"Egyszeri esemény\",\"E//btK\":\"A manuálisan szerkesztett időpontok kihagyása\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Közösségi\",\"d0rUsW\":\"Közösségi linkek\",\"j/TOB3\":\"Közösségi linkek és weboldal\",\"s9KGXU\":\"Eladva\",\"iACSrw\":\"Néhány adat nem látható nyilvánosan. Jelentkezz be, hogy mindent láss.\",\"KTxc6k\":\"Valami hiba történt, kérjük, próbálja újra, vagy vegye fel a kapcsolatot az ügyfélszolgálattal, ha a probléma továbbra is fennáll.\",\"lkE00/\":\"Valami hiba történt. Kérjük, próbálja újra később.\",\"wdxz7K\":\"Forrás\",\"fDG2by\":\"Spiritualitás\",\"oPaRES\":\"Osszd a beléptetést napok, területek vagy jegytípusok szerint. Oszd meg a linket — fiók nem szükséges.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Személyzeti utasítások\",\"tXkhj/\":\"Kezdés\",\"JcQp9p\":\"Kezdés dátuma és ideje\",\"0m/ekX\":\"Kezdés dátuma és ideje\",\"izRfYP\":\"Kezdés dátuma kötelező\",\"tuO4fV\":\"Az alkalom kezdési dátuma\",\"2R1+Rv\":\"Az esemény kezdési ideje\",\"2Olov3\":\"Az alkalom kezdési ideje\",\"n9ZrDo\":\"Kezdjen el gépelni egy helyszínt vagy címet...\",\"qeFVhN\":[\"Kezdés \",[\"diffDays\"],\" nap múlva\"],\"AOqtxN\":[\"Kezdés \",[\"diffMinutes\"],\" perc múlva\"],\"Otg8Oh\":[\"Kezdés \",[\"h\"],\" ó \",[\"m\"],\" p múlva\"],\"Lo49in\":[\"Kezdés \",[\"seconds\"],\" másodperc múlva\"],\"NqChgF\":\"Holnap kezdődik\",\"2NbyY/\":\"Statisztikák\",\"GVUxAX\":\"A statisztikák a fiók létrehozásának dátumán alapulnak\",\"29Hx9U\":\"Statisztika\",\"5ia+r6\":\"Még szükséges\",\"wuV0bK\":\"Megszemélyesítés leállítása\",\"s/KaDb\":\"Stripe csatlakoztatva\",\"Bk06QI\":\"Stripe csatlakoztatva\",\"akZMv8\":[\"A Stripe-kapcsolat átmásolva innen: \",[\"0\"],\".\"],\"v0aRY1\":\"A Stripe nem küldött beállítási hivatkozást. Próbáld újra.\",\"aKtF0O\":\"Stripe nincs csatlakoztatva\",\"9i0++A\":\"Stripe fizetési azonosító\",\"R1lIMV\":\"A Stripe-nak hamarosan további adatokra lesz szüksége\",\"FzcCHA\":\"A Stripe néhány gyors kérdéssel végigvezet a beállítás befejezésén.\",\"eYbd7b\":\"V\",\"ii0qn/\":\"Tárgy kötelező\",\"M7Uapz\":\"A tárgy itt fog megjelenni\",\"6aXq+t\":\"Tárgy:\",\"JwTmB6\":\"Termék sikeresen másolva\",\"WUOCgI\":\"Hely sikeresen felajánlva\",\"IvxA4G\":[\"Sikeresen felajánlva jegyek \",[\"count\"],\" személynek\"],\"kKpkzy\":\"Sikeresen felajánlva jegyek 1 személynek\",\"Zi3Sbw\":\"Sikeresen eltávolítva a várólistáról\",\"RuaKfn\":\"Cím sikeresen frissítve\",\"kzx0uD\":\"Esemény alapértelmezések sikeresen frissítve\",\"5n+Wwp\":\"Szervező sikeresen frissítve\",\"DMCX/I\":\"Platformdíj alapértékek sikeresen frissítve\",\"URUYHc\":\"Platformdíj beállítások sikeresen frissítve\",\"0Dk/l8\":\"Keresőoptimalizálási beállítások sikeresen frissítve\",\"S8Tua9\":\"Beállítások sikeresen frissítve\",\"MhOoLQ\":\"Közösségi linkek sikeresen frissítve\",\"CNSSfp\":\"Követési beállítások sikeresen frissítve\",\"kj7zYe\":\"Webhook sikeresen frissítve\",\"dXoieq\":\"Összefoglaló\",\"/RfJXt\":[\"Nyári Zenei Fesztivál \",[\"0\"]],\"CWOPIK\":\"Nyári Zenei Fesztivál 2025\",\"D89zck\":\"Vas\",\"DBC3t5\":\"Vasárnap\",\"UaISq3\":\"Svéd\",\"JZTQI0\":\"Szervező váltása\",\"9YHrNC\":\"Rendszer alapértelmezett\",\"lruQkA\":\"Érintsd meg a képernyőt a folytatáshoz\",\"TJUrME\":[[\"0\"],\" kiválasztott alkalom résztvevőit célozza meg.\"],\"yT6dQ8\":\"Beszedett adók adótípus és esemény szerint csoportosítva\",\"Ye321X\":\"Adó neve\",\"WyCBRt\":\"Adó összefoglaló\",\"GkH0Pq\":\"Adók és díjak alkalmazva\",\"Rwiyt2\":\"Adók konfigurálva\",\"iQZff7\":\"Adók, díjak, láthatóság, értékesítési időszak, termék kiemelés és rendelési limitek\",\"SXvRWU\":\"Csapatmunka\",\"vlf/In\":\"Technológia\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Mondja el az embereknek, mire számíthatnak az eseményén.\",\"NiIUyb\":\"Meséljen nekünk az eseményéről.\",\"DovcfC\":\"Meséljen nekünk a szervezetéről. Ez az információ megjelenik az eseményoldalain.\",\"69GWRq\":\"Mondja el, milyen gyakran ismétlődik az eseménye, és mi létrehozzuk az összes időpontot.\",\"mXPbwY\":\"Add meg az ÁFA-regisztrációs státuszodat, hogy a megfelelő ÁFA-kezelést alkalmazhassuk a platformdíjakra.\",\"7wtpH5\":\"Sablon aktív\",\"QHhZeE\":\"Sablon sikeresen létrehozva\",\"xrWdPR\":\"Sablon sikeresen törölve\",\"G04Zjt\":\"Sablon sikeresen mentve\",\"xowcRf\":\"Szolgáltatási feltételek\",\"6K0GjX\":\"A szöveg nehezen olvasható lehet\",\"u0F1Ey\":\"Cs\",\"nm3Iz/\":\"Köszönjük, hogy részt vett!\",\"pYwj0k\":\"Köszönjük,\",\"k3IitN\":\"Vége\",\"KfmPRW\":\"Az oldal háttérszíne. Borítókép használatakor ez átfedésként kerül alkalmazásra.\",\"MDNyJz\":\"A kód 10 percen belül lejár. Ellenőrizze a spam mappáját, ha nem látja az e-mailt.\",\"AIF7J2\":\"Az a pénznem, amelyben a fix díj van meghatározva. A fizetéskor az order pénznemére lesz átváltva.\",\"MJm4Tq\":\"A rendelés pénzneme\",\"cDHM1d\":\"Az e-mail cím megváltozott. A résztvevő új jegyet kap a frissített e-mail címre.\",\"I/NNtI\":\"Az esemény helyszíne\",\"tXadb0\":\"A keresett esemény jelenleg nem elérhető. Lehet, hogy eltávolították, lejárt, vagy az URL hibás.\",\"5fPdZe\":\"Az első dátum, amelytől ez az ütemezés generálódik.\",\"EBzPwC\":\"Az esemény teljes címe\",\"sxKqBm\":\"A teljes rendelési összeg visszatérítésre kerül a vásárló eredeti fizetési módjára.\",\"KgDp6G\":\"A link, amelyet meg próbál nyitni, lejárt vagy már nem érvényes. Kérjük, ellenőrizze az e-mailjét a rendelés kezeléséhez szükséges frissített linkért.\",\"5OmEal\":\"A vásárló nyelve\",\"Np4eLs\":[\"A maximum \",[\"MAX_PREVIEW\"],\" alkalom. Kérjük, csökkentse a dátumtartományt, a gyakoriságot vagy a naponta tartott alkalmak számát.\"],\"sYLeDq\":\"A keresett szervező nem található. Lehet, hogy az oldalt áthelyezték, törölték, vagy az URL hibás.\",\"PCr4zw\":\"A felülírás rögzítésre kerül a rendelés naplójában.\",\"C4nQe5\":\"A platformdíj hozzáadódik a jegyárhoz. A vevők többet fizetnek, de Ön megkapja a teljes jegyárat.\",\"HxxXZO\":\"Az elsődleges márka szín a gombokhoz és kiemelésekhez\",\"z0KrIG\":\"Az ütemezett időpont megadása kötelező\",\"EWErQh\":\"Az ütemezett időpontnak a jövőben kell lennie\",\"UNd0OU\":[\"A(z) \\\"\",[\"title\"],\"\\\" eredetileg \",[\"0\"],\" időpontra ütemezett alkalma át lett ütemezve.\"],\"DEcpfp\":\"A sablon törzse érvénytelen Liquid szintaxist tartalmaz. Kérjük, javítsa ki és próbálja újra.\",\"injXD7\":\"Az ÁFA szám nem érvényesíthető. Kérjük, ellenőrizze a számot és próbálja újra.\",\"A4UmDy\":\"Színház\",\"tDwYhx\":\"Téma és színek\",\"O7g4eR\":\"Ehhez az eseményhez nincsenek közelgő időpontok\",\"HrIl0p\":[\"Nincs erre az időpontra szűkített beléptetési lista. A(z) \\\"\",[\"0\"],\"\\\" lista minden időpont résztvevőit beengedi — a személyzet más időpontra szóló jegy szkennelésekor is sikeres lesz.\"],\"dt3TwA\":\"Ezek az alapértelmezett árak és mennyiségek minden időpontra. A szintekre vonatkozó értékesítési dátumok globálisan érvényesek. Az egyes időpontok árait és mennyiségeit az <0>Alkalom-ütemezés oldalon írhatja felül.\",\"062KsE\":\"Ezek a részletek csak erre az időpontra jelennek meg a résztvevő jegyén és a rendelés összegzésén.\",\"5Eu+tn\":\"Ezek a részletek csak akkor jelennek meg, ha a rendelés sikeresen befejeződik.\",\"jQjwR+\":\"Ezek az adatok felülírnak minden meglévő helyszínt az érintett alkalmaknál, és megjelennek a résztvevők jegyein.\",\"QP3gP+\":\"Ezek a beállítások csak a másolt beágyazási kódra vonatkoznak és nem lesznek mentve.\",\"HirZe8\":\"Ezek a sablonok alapértelmezettként lesznek használva a szervezet összes eseményéhez. Az egyes események felülírhatják ezeket a sablonokat saját egyedi verzióikkal.\",\"lzAaG5\":\"Ezek a sablonok csak ennél az eseménynél írják felül a szervező alapértelmezéseit. Ha itt nincs egyedi sablon beállítva, a szervező sablonját használjuk helyette.\",\"UlykKR\":\"Harmadik\",\"wkP5FM\":\"Ez az esemény minden megfelelő időpontjára érvényes, beleértve a jelenleg nem látható időpontokat is. A frissítés befejezése után az ezeken az időpontokon regisztrált résztvevők elérhetők lesznek az üzenetszerkesztőn keresztül.\",\"SOmGDa\":\"Ez a beléptetési lista egy lemondott alkalomhoz tartozik, ezért már nem használható beléptetésre.\",\"XBNC3E\":\"Ezt a kódot az értékesítések nyomon követésére használjuk. Csak betűk, számok, kötőjelek és aláhúzások engedélyezettek.\",\"AaP0M+\":\"Ez a színkombináció nehezen olvasható lehet egyes felhasználók számára\",\"o1phK/\":[\"Ennek az időpontnak \",[\"orderCount\"],\" érintett rendelése van.\"],\"F/UtGt\":\"Ez az időpont lemondásra került. Még törölheti, hogy véglegesen eltávolítsa.\",\"BLZ7pX\":\"Ez az időpont a múltban van. Létrehozzuk, de nem jelenik meg a résztvevők számára a közelgő időpontok között.\",\"7IIY0z\":\"Ez az időpont kifogyottként van megjelölve.\",\"bddWMP\":\"Ez az időpont már nem elérhető. Kérjük, válasszon másikat.\",\"RzEvf5\":\"Ez az esemény véget ért\",\"YClrdK\":\"Ez az esemény még nem került közzétételre.\",\"dFJnia\":\"Ez a szervezőjének neve, amely megjelenik a felhasználók számára.\",\"vt7jiq\":\"Az aláírási titok csak most jelenik meg. Kérjük, másolja ki most, és tárolja biztonságosan.\",\"L7dIM7\":\"Ez a link érvénytelen vagy lejárt.\",\"MR5ygV\":\"Ez a link már nem érvényes\",\"9LEqK0\":\"Ez a név látható a végfelhasználók számára\",\"QdUMM9\":\"Ez az alkalom megtelt\",\"j5FdeA\":\"Ez a rendelés feldolgozás alatt áll.\",\"sjNPMw\":\"Ez a rendelés elhagyásra került. Bármikor kezdhet új rendelést.\",\"OhCesD\":\"Ez a rendelés törölve lett. Bármikor kezdhet új rendelést.\",\"lyD7rQ\":\"Ez a szervezői profil még nem került közzétételre.\",\"9b5956\":\"Ez az előnézet mutatja, hogyan fog kinézni az e-mail mintaadatokkal. A tényleges e-mailek valódi értékeket fognak használni.\",\"uM9Alj\":\"Ez a termék kiemelten szerepel az esemény oldalán\",\"RqSKdX\":\"Ez a termék elfogyott\",\"W12OdJ\":\"Ez a jelentés csak tájékoztató jellegű. Mindig konzultáljon adószakértővel, mielőtt ezeket az adatokat számviteli vagy adózási célokra használná. Kérjük, ellenőrizze a Stripe irányítópultjával, mivel a Hi.Events esetleg hiányos előzményadatokkal rendelkezik.\",\"0Ew0uk\":\"Ez a jegy most lett beolvasva. Kérjük, várjon mielőtt újra beolvassa.\",\"FYXq7k\":[\"Ez \",[\"loadedAffectedCount\"],\" időpontot érint.\"],\"kvpxIU\":\"Ez értesítésekhez és a felhasználókkal való kommunikációhoz lesz használva.\",\"rhsath\":\"Ez nem lesz látható az ügyfelek számára, de segít azonosítani a partnert.\",\"hV6FeJ\":\"Áramlás\",\"+FjWgX\":\"Csü\",\"kkDQ8m\":\"Csütörtök\",\"0GSPnc\":\"Jegy tervezés\",\"EZC/Cu\":\"Jegy tervezés sikeresen mentve\",\"bbslmb\":\"Jegy tervező\",\"1BPctx\":\"Jegy ehhez:\",\"bgqf+K\":\"Jegytulajdonos e-mail címe\",\"oR7zL3\":\"Jegytulajdonos neve\",\"HGuXjF\":\"Jegytulajdonosok\",\"CMUt3Y\":\"Jegytulajdonosok\",\"awHmAT\":\"Jegy azonosító\",\"6czJik\":\"Jegy logó\",\"OkRZ4Z\":\"Jegy neve\",\"t79rDv\":\"Jegy nem található\",\"6tmWch\":\"Jegy vagy termék\",\"1tfWrD\":\"Jegy előnézet ehhez:\",\"KnjoUA\":\"Jegyár\",\"tGCY6d\":\"Jegy ára\",\"pGZOcL\":\"Jegy sikeresen újraküldve\",\"o02GZM\":\"Az erre az eseményre szóló jegyértékesítés lezárult\",\"8jLPgH\":\"Jegy típusa\",\"X26cQf\":\"Jegy URL\",\"8qsbZ5\":\"Jegyértékesítés\",\"zNECqg\":\"jegyek\",\"6GQNLE\":\"Jegyek\",\"NRhrIB\":\"Jegyek és termékek\",\"OrWHoZ\":\"A jegyek automatikusan felajánlásra kerülnek a várólistán lévő ügyfeleknek, amikor felszabadul a kapacitás.\",\"EUnesn\":\"Elérhető jegyek\",\"AGRilS\":\"Eladott jegyek\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Idő\",\"dMtLDE\":\"ezt\",\"/jQctM\":\"Címzett\",\"tiI71C\":\"A korlátozások emeléséhez lépjen kapcsolatba velünk\",\"ecUA8p\":\"Ma\",\"W428WC\":\"Oszlopok kapcsolása\",\"BRMXj0\":\"Holnap\",\"UBSG1X\":\"Legjobb szervezők (Elmúlt 14 nap)\",\"3sZ0xx\":\"Összes fiók\",\"EaAPbv\":\"Fizetett teljes összeg\",\"SMDzqJ\":\"Összes résztvevő\",\"orBECM\":\"Összesen beszedve\",\"k5CU8c\":\"Összes bejegyzés\",\"4B7oCp\":\"Összesített díj\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Összes felhasználó\",\"oJjplO\":\"Összes megtekintés\",\"rBZ9pz\":\"Túrák\",\"orluER\":\"Kövesse nyomon a fióknövekedést és teljesítményt hozzárendelési forrás szerint\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Igaz, ha offline fizetés\",\"9GsDR2\":\"Igaz, ha fizetés folyamatban\",\"GUA0Jy\":\"Próbálj más keresést vagy szűrőt\",\"2P/OWN\":\"Próbálja módosítani a szűrőket, hogy több időpontot lásson.\",\"ouM5IM\":\"Próbáljon másik e-mailt\",\"3DZvE7\":\"Próbálja ki a Hi.Events-et ingyen\",\"7P/9OY\":\"K\",\"vq2WxD\":\"Ked\",\"G3myU+\":\"Kedd\",\"Kz91g/\":\"Török\",\"GdOhw6\":\"Hang kikapcsolása\",\"KUOhTy\":\"Hang bekapcsolása\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Írja be a \\\"törlés\\\" szót a megerősítéshez\",\"XxecLm\":\"Jegy típusa\",\"IrVSu+\":\"Nem sikerült másolni a terméket. Kérjük, ellenőrizze adatait.\",\"Vx2J6x\":\"Nem sikerült lekérni a résztvevőt.\",\"h0dx5e\":\"Nem sikerült csatlakozni a várólistához\",\"DaE0Hg\":\"A résztvevő adatai nem tölthetők be.\",\"GlnD5Y\":\"Nem sikerült betölteni a termékeket ehhez az időponthoz. Kérjük, próbálja újra.\",\"17VbmV\":\"A beléptetés nem vonható vissza\",\"n57zCW\":\"Nem hozzárendelt fiókok\",\"9uI/rE\":\"Visszavon\",\"b9SN9q\":\"Egyedi rendelési hivatkozás\",\"Ef7StM\":\"Ismeretlen\",\"ZBAScj\":\"Ismeretlen résztvevő\",\"MEIAzV\":\"Névtelen\",\"K6L5Mx\":\"Névtelen helyszín\",\"X13xGn\":\"Nem megbízható\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Partner frissítése\",\"59qHrb\":\"Kapacitás frissítése\",\"Gaem9v\":\"Esemény nevének és leírásának frissítése\",\"7EhE4k\":\"Címke frissítése\",\"NPQWj8\":\"Helyszín frissítése\",\"75+lpR\":[\"Frissítés: \",[\"subjectTitle\"],\" — ütemezési változások\"],\"UOGHdA\":[\"Frissítés: \",[\"subjectTitle\"],\" — alkalom időpontja megváltozott\"],\"ogoTrw\":[[\"count\"],\" időpont frissítve\"],\"dDuona\":[[\"count\"],\" időpont kapacitása frissítve\"],\"FT3LSc\":[[\"count\"],\" időpont címkéje frissítve\"],\"8EcY1g\":[\"Helyszín frissítve \",[\"count\"],\" alkalomhoz\"],\"gJQsLv\":\"Borítókép feltöltése a szervezőhöz\",\"4kEGqW\":\"Logó feltöltése a szervezőhöz\",\"lnCMdg\":\"Kép feltöltése\",\"29w7p6\":\"Kép feltöltése...\",\"HtrFfw\":\"URL kötelező\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB olvasó aktív\",\"dyTklH\":\"USB olvasó szünetel\",\"OHJXlK\":\"Használjon <0>Liquid sablonokat az e-mailek személyre szabásához\",\"g0WJMu\":\"Minden időpontra vonatkozó lista használata\",\"0k4cdb\":\"Rendelési adatok használata minden résztvevőhöz. A résztvevők nevei és e-mail címei meg fognak egyezni a vásárló információival.\",\"MKK5oI\":\"Használja az összes időpontra vonatkozó listát, vagy hozzon létre egyet ehhez az időponthoz?\",\"bA31T4\":\"Vásárló adatainak használata minden résztvevőhöz\",\"rnoQsz\":\"Határok, kiemelések és QR kód stílusához használva\",\"BV4L/Q\":\"UTM elemzés\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"ÁFA szám érvényesítése...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"ÁFA-szám\",\"pnVh83\":\"ÁFA szám\",\"CabI04\":\"Az ÁFA szám nem tartalmazhat szóközöket\",\"PMhxAR\":\"Az ÁFA számnak 2 betűs országkóddal kell kezdődnie, amelyet 8-15 alfanumerikus karakter követ (pl. DE123456789)\",\"gPgdNV\":\"ÁFA szám sikeresen érvényesítve\",\"RUMiLy\":\"ÁFA szám érvényesítése sikertelen\",\"vqji3Y\":\"ÁFA szám érvényesítése sikertelen. Kérjük, ellenőrizze az ÁFA számát.\",\"8dENF9\":\"ÁFA a díjon\",\"ZutOKU\":\"ÁFA kulcs\",\"+KJZt3\":\"ÁFA-regisztrált\",\"Nfbg76\":\"ÁFA beállítások sikeresen mentve\",\"UvYql/\":\"ÁFA beállítások mentve. Az ÁFA számot a háttérben érvényesítjük.\",\"bXn1Jz\":\"ÁFA-beállítások frissítve\",\"tJylUv\":\"ÁFA kezelés a platform díjaknál\",\"FlGprQ\":\"ÁFA kezelés a platform díjaknál: EU ÁFA-s vállalkozások használhatják a fordított adózást (0% - ÁFA irányelv 2006/112/EK 196. cikke). Nem ÁFA-s vállalkozásoknál 23%-os ír ÁFA kerül felszámításra.\",\"516oLj\":\"ÁFA érvényesítési szolgáltatás átmenetileg nem elérhető\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"ÁFA: nem regisztrált\",\"AdWhjZ\":\"Ellenőrző kód\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Ellenőrzött\",\"wCKkSr\":\"E-mail ellenőrzése\",\"/IBv6X\":\"Ellenőrizze e-mail címét\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Ellenőrzés...\",\"fROFIL\":\"Vietnámi\",\"p5nYkr\":\"Összes megtekintése\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Az összes képesség megtekintése\",\"RnvnDc\":\"Platformon küldött összes üzenet megtekintése\",\"+WFMis\":\"Jelentések megtekintése és letöltése az összes eseményéhez. Csak a befejezett rendelések szerepelnek.\",\"c7VN/A\":\"Válaszok megtekintése\",\"SZw9tS\":\"Részletek megtekintése\",\"9+84uW\":[[\"0\"],\" \",[\"1\"],\" adatainak megtekintése\"],\"FCVmuU\":\"Esemény megtekintése\",\"c6SXHN\":\"Esemény oldal megtekintése\",\"n6EaWL\":\"Naplók megtekintése\",\"OaKTzt\":\"Térkép megtekintése\",\"zNZNMs\":\"Üzenet megtekintése\",\"67OJ7t\":\"Rendelés megtekintése\",\"tKKZn0\":\"Rendelés részleteinek megtekintése\",\"KeCXJu\":\"Rendelési részletek megtekintése, visszatérítések kibocsátása és megerősítések újraküldése.\",\"9jnAcN\":\"Szervezői honlap megtekintése\",\"1J/AWD\":\"Jegy megtekintése\",\"N9FyyW\":\"Regisztrált résztvevők megtekintése, szerkesztése és exportálása.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Várakozik\",\"quR8Qp\":\"Fizetésre vár\",\"KrurBH\":\"Várakozás beolvasásra…\",\"u0n+wz\":\"Várólista\",\"3RXFtE\":\"Várólista engedélyezve\",\"TwnTPy\":\"A várólista-ajánlat lejárt\",\"NzIvKm\":\"Várólista aktiválva\",\"aUi/Dz\":\"Figyelmeztetés: Ez a rendszer alapértelmezett konfigurációja. A módosítások minden olyan fiókot érintenek, amelyhez nincs konkrét konfiguráció hozzárendelve.\",\"qeygIa\":\"Sze\",\"aT/44s\":\"Nem sikerült átmásolni a Stripe-kapcsolatot. Próbáld újra.\",\"RRZDED\":\"Nem találtunk ehhez az e-mail címhez tartozó rendeléseket.\",\"2RZK9x\":\"Nem találtuk a keresett rendelést. A link lejárhatott, vagy a rendelés adatai megváltozhattak.\",\"nefMIK\":\"Nem találtuk a keresett jegyet. A link lejárhatott, vagy a jegy adatai megváltozhattak.\",\"miysJh\":\"Nem találtuk ezt a rendelést. Lehet, hogy el lett távolítva.\",\"ADsQ23\":\"Most nem tudtuk elérni a Stripe-ot. Próbáld újra egy pillanat múlva.\",\"HJKdzP\":\"Hiba történt az oldal betöltésekor. Kérjük, próbálja újra.\",\"jegrvW\":\"A Stripe-pal együttműködve közvetlenül a bankszámládra utaljuk a kifizetéseket.\",\"IfN2Qo\":\"Négyzet alakú logót javasolunk minimum 200x200px mérettel\",\"wJzo/w\":\"Javasolt méretek: 400px x 400px, maximális fájlméret: 5MB.\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Sütiket használunk, hogy jobban megértsük az oldal használatát, és javítsuk az Ön élményét.\",\"x8rEDQ\":\"Több próbálkozás után sem tudtuk érvényesíteni az ÁFA számát. A háttérben folytatjuk a próbálkozást. Kérjük, nézzen vissza később.\",\"iy+M+c\":[\"E-mailben értesítjük, ha hely szabadul fel a következőhöz: \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Mentés után megnyitunk egy üzenetszerkesztőt egy előre kitöltött sablonnal. Ön ellenőrzi és elküldi — automatikusan semmi nem kerül elküldésre.\",\"q1BizZ\":\"Erre az e-mail címre küldjük a jegyeit\",\"ZOmUYW\":\"Az ÁFA számot a háttérben érvényesítjük. Ha bármilyen probléma merül fel, értesítjük.\",\"LKjHr4\":[\"Módosítottuk a(z) \\\"\",[\"title\"],\"\\\" ütemezését — \",[\"description\"],\", amely \",[\"affectedCount\"],\" alkalmat érint.\"],\"Fq/Nx7\":\"Öt számjegyű ellenőrző kódot küldtünk ide:\",\"GdWB+V\":\"Webhook sikeresen létrehozva\",\"2X4ecw\":\"Webhook sikeresen törölve\",\"ndBv0v\":\"Webhook-integrációk\",\"CThMKa\":\"Webhook naplók\",\"I0adYQ\":\"Webhook aláírási titok\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"A Webhook nem küld értesítéseket.\",\"FSaY52\":\"A Webhook értesítéseket küld.\",\"v1kQyJ\":\"Webhookok\",\"On0aF2\":\"Weboldal\",\"0f7U0k\":\"Sze\",\"VAcXNz\":\"Szerda\",\"64X6l4\":\"hét\",\"4XSc4l\":\"Hetente\",\"IAUiSh\":\"hét\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Üdvözöljük újra\",\"QDWsl9\":[\"Üdvözöljük a \",[\"0\"],\" oldalon, \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Üdv a \",[\"0\"],\" oldalon, itt található az összes eseménye.\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"Hány órakor?\",\"FaSXqR\":\"Milyen típusú esemény?\",\"0WyYF4\":\"Mit láthat a bejelentkezés nélküli személyzet\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Amikor egy bejelentkezés törölve lett\",\"RPe6bE\":\"Amikor egy ismétlődő esemény egy időpontja lemondásra kerül\",\"Gmd0hv\":\"Amikor új résztvevő jön létre\",\"zyIyPe\":\"Amikor új esemény jön létre\",\"Lc18qn\":\"Amikor új megrendelés jön létre\",\"dfkQIO\":\"Amikor új termék jön létre\",\"8OhzyY\":\"Amikor egy termék törölve lett\",\"tRXdQ9\":\"Amikor egy termék frissül\",\"9L9/28\":\"Amikor egy termék elfogy, az ügyfelek feliratkozhatnak a várólistára, hogy értesítést kapjanak, ha hely szabadul fel.\",\"Q7CWxp\":\"Amikor egy résztvevő le lett mondva\",\"IuUoyV\":\"Amikor egy résztvevő bejelentkezett\",\"nBVOd7\":\"Amikor egy résztvevő frissül\",\"t7cuMp\":\"Amikor egy eseményt archiválnak\",\"gtoSzE\":\"Amikor egy eseményt frissítenek\",\"ny2r8d\":\"Amikor egy megrendelés törölve lett\",\"c9RYbv\":\"Amikor egy megrendelés fizetettként lett megjelölve\",\"ejMDw1\":\"Amikor egy megrendelés visszatérítésre került\",\"fVPt0F\":\"Amikor egy megrendelés frissül\",\"bcYlvb\":\"Amikor a bejelentkezés lezárul\",\"XIG669\":\"Amikor a bejelentkezés megnyílik\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"Ha engedélyezve van, az új események lehetővé teszik a résztvevőknek, hogy saját jegyük adatait egy biztonságos linken keresztül kezeljék. Ez eseményenként felülírható.\",\"blXLKj\":\"Ha engedélyezve van, az új események marketing opt-in jelölőnégyzetet jelenítenek meg a fizetés során. Ez eseményenként felülírható.\",\"Kj0Txn\":\"Ha engedélyezve van, a Stripe Connect tranzakciókra nem számítanak fel alkalmazási díjakat. Használja olyan országokban, ahol az alkalmazási díjak nem támogatottak.\",\"tMqezN\":\"A visszatérítések feldolgozás alatt állnak-e\",\"uchB0M\":\"Widget előnézet\",\"uvIqcj\":\"Műhely\",\"EpknJA\":\"Írja ide üzenetét...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"év\",\"zkWmBh\":\"Évente\",\"+BGee5\":\"év\",\"X/azM1\":\"Igen - Van érvényes EU ÁFA regisztrációs számom\",\"Tz5oXG\":\"Igen, rendelés törlése\",\"QlSZU0\":[\"<0>\",[\"0\"],\" megszemélyesítése (\",[\"1\"],\")\"],\"s14PLh\":[\"Részleges visszatérítést bocsát ki. A vásárló \",[\"0\"],\" \",[\"1\"],\" összeget kap vissza.\"],\"o7LgX6\":\"További szolgáltatási díjakat és adókat konfigurálhat a fiókbeállításokban.\",\"rj3A7+\":\"Ezt később egyes időpontoknál felülírhatja.\",\"paWwQ0\":\"Szükség esetén továbbra is manuálisan ajánlhat fel jegyeket.\",\"jTDzpA\":\"Nem archiválhatja a fiókján lévő utolsó aktív szervezőt.\",\"5VGIlq\":\"Elérte az üzenetküldési korlátot.\",\"casL1O\":\"Adók és díjak vannak hozzáadva egy ingyenes termékhez. Szeretné eltávolítani őket?\",\"9jJNZY\":\"Mentés előtt el kell ismernie a felelősségeit\",\"pCLes8\":\"Hozzá kell járulnia az üzenetek fogadásához\",\"FVTVBy\":\"Megerősítenie kell e-mail címét, mielőtt frissítheti a szervezői státuszt.\",\"ze4bi/\":\"Legalább egy alkalmat létre kell hoznia, mielőtt résztvevőket adhatna hozzá ehhez az ismétlődő eseményhez.\",\"w65ZgF\":\"Ellenőriznie kell a fiók e-mail címét, mielőtt módosíthatná az e-mail sablonokat.\",\"FRl8Jv\":\"Ellenőriznie kell fiókja e-mail címét, mielőtt üzeneteket küldhet.\",\"88cUW+\":\"Ön kap\",\"O6/3cu\":\"A következő lépésben beállíthatja az időpontokat, az ütemezést és az ismétlődési szabályokat.\",\"zKAheG\":\"Alkalmak időpontjait módosítja\",\"MNFIxz\":[\"El fog menni ide: \",[\"0\"],\"!\"],\"qGZz0m\":\"Felkerült a várólistára!\",\"/5HL6k\":\"Helyet ajánlottak neked!\",\"gbjFFH\":\"Megváltoztatta az alkalom időpontját\",\"p/Sa0j\":\"Fiókjának üzenetküldési korlátai vannak. A korlátozások emeléséhez lépjen kapcsolatba velünk\",\"x/xjzn\":\"Partnerei sikeresen exportálva.\",\"TF37u6\":\"Résztvevői sikeresen exportálva.\",\"79lXGw\":\"A bejelentkezési lista sikeresen létrehozva. Ossza meg az alábbi linket a bejelentkezési személyzettel.\",\"BnlG9U\":\"A jelenlegi rendelésed el fog veszni.\",\"nBqgQb\":\"Az Ön e-mail címe\",\"GG1fRP\":\"Az eseményed élőben van!\",\"ifRqmm\":\"Üzenetét sikeresen elküldtük!\",\"0/+Nn9\":\"Az üzenetei itt fognak megjelenni\",\"/Rj5P4\":\"Az Ön neve\",\"PFjJxY\":\"Az új jelszónak legalább 8 karakter hosszúnak kell lennie.\",\"gzrCuN\":\"A rendelés adatai frissültek. Megerősítő e-mailt küldtünk az új e-mail címre.\",\"naQW82\":\"A rendelésed törlésre került.\",\"bhlHm/\":\"A rendelése fizetésre vár\",\"XeNum6\":\"Megrendelései sikeresen exportálva.\",\"Xd1R1a\":\"Szervezői címe\",\"WWYHKD\":\"A fizetése banki szintű titkosítással védett\",\"5b3QLi\":\"Az Ön csomagja\",\"N4Zkqc\":\"A mentett időpontszűrője már nem érhető el — az összes időpontot megjelenítjük.\",\"FNO5uZ\":\"A jegye továbbra is érvényes — nincs szükség teendőre, hacsak az új időpont nem felel meg Önnek. Bármilyen kérdés esetén kérjük, válaszoljon erre az e-mailre.\",\"CnZ3Ou\":\"A jegyei megerősítésre kerültek.\",\"EmFsMZ\":\"Az ÁFA száma sorban áll az érvényesítésre\",\"QBlhh4\":\"Az ÁFA száma mentéskor lesz érvényesítve\",\"fT9VLt\":\"A várólista-ajánlata lejárt, és nem tudtuk teljesíteni a rendelését. Kérjük, iratkozzon fel újra a várólistára, hogy értesítést kapjon, amikor újabb helyek szabadulnak fel.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/hu.po b/frontend/src/locales/hu.po index 7b6a4c0ba6..d79e6ece12 100644 --- a/frontend/src/locales/hu.po +++ b/frontend/src/locales/hu.po @@ -60,7 +60,7 @@ msgstr "{0} <0>sikeresen kijelentkezett" msgid "{0} Active Webhooks" msgstr "{0} aktív webhook" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} elérhető" @@ -78,7 +78,7 @@ msgstr "{0} maradt" msgid "{0} logo" msgstr "{0} logó" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{0} / {1} hely foglalt." @@ -90,7 +90,7 @@ msgstr "{0} szervező" msgid "{0} spots left" msgstr "{0} hely maradt" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} jegy" @@ -114,7 +114,7 @@ msgstr "{appName} logó" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} résztvevő van regisztrálva erre az alkalomra." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} / {totalCount} elérhető" @@ -122,7 +122,7 @@ msgstr "{availableCount} / {totalCount} elérhető" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} beléptetve" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} esemény" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} óra, {minutes} perc, és {seconds} másodperc" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "{loadedAffectedAttendees} résztvevő van regisztrálva az érintett alkalmakra." @@ -163,11 +163,11 @@ msgstr "{minutes} perc és {seconds} másodperc" msgid "{organizerName}'s first event" msgstr "{organizerName} első eseménye" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} jegytípus" @@ -230,7 +230,7 @@ msgstr "0 perc és 0 másodperc" msgid "1 Active Webhook" msgstr "1 aktív webhook" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "1 résztvevő van regisztrálva az érintett alkalmakra." @@ -238,35 +238,35 @@ msgstr "1 résztvevő van regisztrálva az érintett alkalmakra." msgid "1 attendee is registered for this session." msgstr "1 résztvevő van regisztrálva erre az alkalomra." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 nappal a befejezési dátum után" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 nappal a kezdési dátum után" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 nappal az esemény előtt" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 órával az esemény előtt" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 jegy" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 jegytípus" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 héttel az esemény előtt" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "Lemondási értesítés elküldve ide:" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "időtartam-változás" @@ -321,7 +321,7 @@ msgstr "A legördülő menü csak egy kiválasztást tesz lehetővé" msgid "A fee, like a booking fee or a service fee" msgstr "Díj, például foglalási díj vagy szolgáltatási díj" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "A kedvezmény nélküli promóciós kód elrejtett termékek felfedésé msgid "A Radio option has multiple options but only one can be selected." msgstr "A rádió opció több lehetőséget kínál, de csak egy választható ki." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "kezdési/befejezési idő eltolás" @@ -465,7 +465,7 @@ msgstr "Fiók sikeresen frissítve" msgid "Accounts" msgstr "Fiókok" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Beavatkozás szükséges: ÁFA információ szükséges" @@ -493,10 +493,10 @@ msgstr "Aktiválás dátuma" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Aktív fizetési módok" msgid "Activity" msgstr "Tevékenység" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Időpont hozzáadása" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "Adjon hozzá bármilyen megjegyzést a megrendeléshez..." msgid "Add at least one time" msgstr "Adjon meg legalább egy időpontot" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Add meg az online esemény csatlakozási adatait." @@ -572,15 +576,19 @@ msgstr "Időpont hozzáadása" msgid "Add Dates" msgstr "Időpontok hozzáadása" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Leírás hozzáadása" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "Kérdés hozzáadása" msgid "Add Tax or Fee" msgstr "Adó vagy díj hozzáadása" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Mégis hozzáadom ezt a résztvevőt (kapacitás felülírása)" @@ -634,8 +642,8 @@ msgstr "Mégis hozzáadom ezt a résztvevőt (kapacitás felülírása)" msgid "Add this event to your calendar" msgstr "Adja hozzá ezt az eseményt a naptárához" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Jegyek hozzáadása" @@ -649,7 +657,7 @@ msgstr "Szint hozzáadása" msgid "Add to Calendar" msgstr "Hozzáadás a naptárhoz" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Adjon hozzá követőpixeleket a nyilvános eseményoldalaihoz és a szervezői főoldalhoz. Aktív követés esetén a látogatók süti-beleegyezési sávot fognak látni." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Cím 1. sor" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Cím 1. sor" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Cím 2. sor" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Cím 2. sor" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Adminisztrátor" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Rendszergazdai hozzáférés szükséges" @@ -725,7 +733,7 @@ msgstr "Rendszergazdai hozzáférés szükséges" msgid "Admin Dashboard" msgstr "Admin vezérlőpult" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Az adminisztrátor felhasználók teljes hozzáféréssel rendelkeznek az eseményekhez és a fiókbeállításokhoz." @@ -776,7 +784,7 @@ msgstr "Partnerek exportálva" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "A partnerek segítenek nyomon követni a partnerek és befolyásolók által generált értékesítéseket. Hozzon létre partnerkódokat és ossza meg őket a teljesítmény nyomon követéséhez." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "összes" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "Összes archivált esemény" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Minden résztvevő" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "A kiválasztott alkalmak összes résztvevője" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Az esemény összes résztvevője" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Ennek az alkalomnak az összes résztvevője" @@ -838,12 +846,12 @@ msgstr "Minden sikertelen feladat törölve" msgid "All jobs queued for retry" msgstr "Minden feladat újrapróbálásra sorba állítva" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Az összes megfelelő időpont" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Összes alkalom" @@ -897,7 +905,7 @@ msgstr "Már van fiókja? <0>{0}" msgid "Already in" msgstr "Már bent" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Már visszatérítve" @@ -905,11 +913,11 @@ msgstr "Már visszatérítve" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Már használod a Stripe-ot egy másik szervezőnél? Használd újra azt a kapcsolatot." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "A megrendelés lemondása is" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "A megrendelés visszatérítése is" @@ -932,7 +940,7 @@ msgstr "Összeg" msgid "Amount Paid" msgstr "Fizetett összeg" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Fizetett összeg ({0})" @@ -952,7 +960,7 @@ msgstr "Hiba történt az oldal betöltésekor" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Opcionális üzenet a kiemelt termék megjelenítéséhez, pl. \"Gyorsan fogy 🔥\" vagy \"Legjobb ár\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Váratlan hiba történt." @@ -988,7 +996,7 @@ msgstr "A terméktulajdonosoktól érkező bármilyen kérdés erre az e-mail c msgid "Appearance" msgstr "Megjelenés" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "alkalmazva" @@ -996,7 +1004,7 @@ msgstr "alkalmazva" msgid "Applies to {0} products" msgstr "Alkalmazható {0} termékre" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Az ezen az oldalon jelenleg betöltött, {0} nem törölt időpontra vonatkozik." @@ -1008,7 +1016,7 @@ msgstr "1 termékre vonatkozik" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Mindenkire vonatkozik, aki a linket bejelentkezés nélkül nyitja meg. A bejelentkezett csapattagok mindig mindent látnak." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Az esemény minden {0}, nem törölt időpontjára vonatkozik — beleértve a jelenleg be nem töltött időpontokat is." @@ -1016,11 +1024,11 @@ msgstr "Az esemény minden {0}, nem törölt időpontjára vonatkozik — beleé msgid "Apply" msgstr "Alkalmaz" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Változások alkalmazása" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Promóciós kód alkalmazása" @@ -1028,7 +1036,7 @@ msgstr "Promóciós kód alkalmazása" msgid "Apply this {type} to all new products" msgstr "Alkalmazza ezt a {type} típust minden új termékre" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Alkalmazás erre" @@ -1044,36 +1052,35 @@ msgstr "Üzenet jóváhagyása" msgid "April" msgstr "Április" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Archiválás" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Esemény archiválása" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Esemény archiválása" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Szervező archiválása" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Archiválja ezt az eseményt, hogy elrejtse a nyilvánosság elől. Később visszaállíthatja." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Archiválja ezt a szervezőt. Ez a szervező összes eseményét is archiválja." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Archivált" @@ -1085,15 +1092,15 @@ msgstr "Archivált szervezők" msgid "Are you sure you want to activate this attendee?" msgstr "Biztosan aktiválni szeretné ezt a résztvevőt?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Biztosan archiválni szeretné ezt az eseményt?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Biztosan archiválja ezt az eseményt? Nem lesz többé látható a nyilvánosság számára." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Biztosan archiválja ezt a szervezőt? Ez a szervező összes eseményét is archiválja." @@ -1123,7 +1130,7 @@ msgstr "Biztosan törölni szeretné az összes sikertelen feladatot?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Biztosan törölni szeretné ezt a partnert? Ez a művelet nem vonható vissza." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Biztosan törölni szeretné ezt a konfigurációt? Ez hatással lehet az azt használó fiókokra." @@ -1137,11 +1144,11 @@ msgstr "Biztosan törölni szeretné ezt az időpontot? Ez a művelet nem vonhat msgid "Are you sure you want to delete this promo code?" msgstr "Biztosan törölni szeretné ezt a promóciós kódot?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Biztosan törli ezt a sablont? Ez a művelet nem vonható vissza, és az e-mailek az alapértelmezett sablont fogják használni." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Biztosan törli ezt a sablont? Ez a művelet nem vonható vissza, és az e-mailek a szervező vagy az alapértelmezett sablont fogják használni." @@ -1150,17 +1157,17 @@ msgstr "Biztosan törli ezt a sablont? Ez a művelet nem vonható vissza, és az msgid "Are you sure you want to delete this webhook?" msgstr "Biztosan törölni szeretné ezt a webhookot?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Biztos, hogy el akarsz menni?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Biztosan piszkozatba szeretné tenni ezt az eseményt? Ezzel az esemény láthatatlanná válik a nyilvánosság számára." #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Biztosan nyilvánossá szeretné tenni ezt az eseményt? Ezzel az esemény láthatóvá válik a nyilvánosság számára." @@ -1200,15 +1207,15 @@ msgstr "Biztosan újra szeretné küldeni a rendelés visszaigazolását a köve msgid "Are you sure you want to resend the ticket to {0}?" msgstr "Biztosan újra szeretné küldeni a jegyet a következő címre: {0}?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Biztosan visszaállítja ezt az eseményt?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Biztosan vissza szeretné állítani ezt az eseményt? Piszkozatként lesz visszaállítva." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Biztosan visszaállítja ezt a szervezőt?" @@ -1229,7 +1236,7 @@ msgstr "Biztosan törölni szeretné ezt a kapacitás-hozzárendelést?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "Biztosan törölni szeretné ezt a bejelentkezési listát?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "ÁFA regisztrált az EU-ban?" @@ -1237,7 +1244,7 @@ msgstr "ÁFA regisztrált az EU-ban?" msgid "Art" msgstr "Művészet" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "Mivel vállalkozása Írországban található, az ír 23%-os ÁFA automatikusan vonatkozik minden platformdíjra." @@ -1270,7 +1277,7 @@ msgstr "Hozzárendelt szint" msgid "At least one event type must be selected" msgstr "Legalább egy eseménytípust ki kell választani." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Próbálkozások" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Részvétel és bejelentkezési arányok minden eseményen" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "résztvevő" @@ -1287,7 +1293,7 @@ msgstr "résztvevő" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Résztvevő" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Résztvevő állapota" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Résztvevői jegy" @@ -1364,13 +1370,13 @@ msgstr "A résztvevő jegye nincs ebben a listában" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "résztvevők" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "résztvevők" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Résztvevők" @@ -1393,16 +1399,16 @@ msgstr "résztvevő beléptetve" msgid "Attendees Exported" msgstr "Résztvevők exportálva" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Regisztrált résztvevők" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Regisztrált résztvevők" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Résztvevők meghatározott jeggyel" @@ -1454,7 +1460,7 @@ msgstr "Automatikusan átméretezi a widget magasságát a tartalom alapján. Ha msgid "Available" msgstr "Elérhető" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Visszatérítésre elérhető" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "Függőben" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "Offline fizetésre vár" @@ -1482,7 +1488,7 @@ msgstr "Fizetés vár" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "Fizetésre vár" @@ -1513,14 +1519,14 @@ msgstr "Vissza a fiókokhoz" msgid "Back to calendar" msgstr "Vissza a naptárhoz" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Vissza az eseményhez" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Vissza az esemény oldalára" @@ -1548,7 +1554,7 @@ msgstr "Háttérszín" msgid "Background Type" msgstr "Háttér típusa" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "A fenti globális értékesítési időszak alapján, nem időpontonkén msgid "Basic Information" msgstr "Alapvető információk" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Számlázási cím" @@ -1599,11 +1605,11 @@ msgstr "Beépített csalásvédelem" msgid "Bulk Edit" msgstr "Tömeges szerkesztés" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Időpontok tömeges szerkesztése" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "A tömeges frissítés sikertelen." @@ -1635,11 +1641,11 @@ msgstr "A vevő fizet" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "A vevők tiszta árat látnak. A platformdíjat a kifizetésből vonjuk le." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "A követőpixelek hozzáadásával elismeri, hogy Ön és ez a platform közös adatkezelők a gyűjtött adatok tekintetében. Az Ön felelőssége, hogy biztosítsa az adatkezelés jogalapját az alkalmazandó adatvédelmi jogszabályok (GDPR, CCPA stb.) alapján." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "A folytatással elfogadja a(z) <0>{0} Szolgáltatási feltételeket" @@ -1660,7 +1666,7 @@ msgstr "A regisztrációval elfogadja <0>Szolgáltatási feltételeinket és msgid "By ticket type" msgstr "Jegytípus szerint" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Alkalmazási díjak megkerülése" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "Nem lehet beléptetni" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Mégsem" @@ -1729,7 +1735,7 @@ msgstr "Mégsem" msgid "Cancel {count} date(s)" msgstr "{count} időpont lemondása" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Minden termék törlése és visszahelyezése a készletbe" @@ -1743,7 +1749,7 @@ msgstr "Minden termék törlése és visszahelyezése a készletbe" msgid "Cancel Date" msgstr "Időpont lemondása" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "E-mail cím módosításának visszavonása" @@ -1751,7 +1757,7 @@ msgstr "E-mail cím módosításának visszavonása" msgid "Cancel order" msgstr "Megrendelés törlése" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Megrendelés törlése" @@ -1759,7 +1765,7 @@ msgstr "Megrendelés törlése" msgid "Cancel Order {0}" msgstr "Megrendelés törlése {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "A törlés törli az összes ehhez a rendeléshez tartozó résztvevőt, és visszahelyezi a jegyeket az elérhető készletbe." @@ -1781,7 +1787,7 @@ msgstr "Lemondás" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "Törölve" msgid "Cancelled {0} date(s)" msgstr "{0} időpont lemondva" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "A rendszer alapértelmezett konfigurációja nem törölhető" @@ -1825,7 +1831,7 @@ msgstr "Kapacitás kezelése" msgid "Capacity must be 0 or greater" msgstr "A kapacitásnak 0 vagy annál nagyobbnak kell lennie" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "kapacitás-frissítések" @@ -1833,7 +1839,7 @@ msgstr "kapacitás-frissítések" msgid "Capacity Used" msgstr "Felhasznált kapacitás" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "A kategóriák lehetővé teszik a termékek csoportosítását. Például létrehozhat egy kategóriát „Jegyek” néven, és egy másikat „Árucikkek” néven." @@ -1854,19 +1860,19 @@ msgstr "Kategória" msgid "Category Created Successfully" msgstr "Kategória sikeresen létrehozva" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Módosítás" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Időtartam módosítása" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Jelszó módosítása" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "A résztvevői limit módosítása" @@ -1874,7 +1880,7 @@ msgstr "A résztvevői limit módosítása" msgid "Change waitlist settings" msgstr "Várólistás beállítások módosítása" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "{count} időpont időtartama módosítva" @@ -1891,15 +1897,15 @@ msgstr "Jótékonyság" msgid "Check in" msgstr "Beléptetés" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Bejelentkezés {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Bejelentkezés és megrendelés fizetettként jelölése" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Csak bejelentkezés" @@ -1913,7 +1919,7 @@ msgstr "Kiléptetés" msgid "Check out this event: {0}" msgstr "Nézze meg ezt az eseményt: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Nézze meg ezt az eseményt!" @@ -1994,7 +2000,7 @@ msgstr "Bejelentkezési listák" msgid "Check-In Lists" msgstr "Bejelentkezési listák" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Beléptetési navigáció" @@ -2074,11 +2080,11 @@ msgstr "Válasszon színt a háttérhez" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Válasszon másik műveletet" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Válassz egy mentett helyszínt az alkalmazáshoz." @@ -2108,12 +2114,12 @@ msgstr "Válassza ki, ki fizeti a platformdíjat. Ez nem érinti a fiókbeállí #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Város" @@ -2122,7 +2128,7 @@ msgstr "Város" msgid "Clear" msgstr "Törlés" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Helyszín törlése — visszaesik az esemény alapértelmezett értékére" @@ -2134,7 +2140,7 @@ msgstr "Keresés törlése" msgid "Clear Search Text" msgstr "Keresési szöveg törlése" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "A törlés eltávolít minden alkalomspecifikus felülírást. Az érintett alkalmak az esemény alapértelmezett helyszínére váltanak." @@ -2154,7 +2160,7 @@ msgstr "Kattintson az új értékesítésre való újranyitáshoz" msgid "Click to view notes" msgstr "Kattintson a jegyzet megtekintéséhez" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "bezárás" @@ -2162,8 +2168,8 @@ msgstr "bezárás" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Bezárás" @@ -2259,7 +2265,7 @@ msgstr "Hamarosan érkezik" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Vesszővel elválasztott kulcsszavak, amelyek leírják az eseményt. Ezeket a keresőmotorok használják az esemény kategorizálásához és indexeléséhez." -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Kommunikációs beállítások" @@ -2267,11 +2273,11 @@ msgstr "Kommunikációs beállítások" msgid "complete" msgstr "kész" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Megrendelés befejezése" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Fizetés befejezése" @@ -2280,11 +2286,11 @@ msgstr "Fizetés befejezése" msgid "Complete Stripe setup" msgstr "Stripe beállítás befejezése" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Fejezd be a rendelésed a jegyek biztosításához. Ez az ajánlat időkorlátozott, ne várj túl sokáig." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Fejezze be a fizetést a jegyek biztosításához." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Töltse ki a profilját a csapathoz való csatlakozáshoz." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Befejezett" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Befejezett megrendelések" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Befejezett megrendelések" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Írás" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Konfiguráció hozzárendelve" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Konfiguráció sikeresen létrehozva" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Konfiguráció sikeresen törölve" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "A konfigurációs nevek láthatók a végfelhasználók számára. A fix díjak az aktuális árfolyamon kerülnek átváltásra a megrendelés pénznemére." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Konfiguráció sikeresen frissítve" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Konfigurációk" @@ -2377,10 +2383,10 @@ msgstr "Konfigurált kedvezmény" msgid "Confirm" msgstr "Megerősítés" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "E-mail cím megerősítése" @@ -2393,7 +2399,7 @@ msgstr "E-mail cím módosításának megerősítése" msgid "Confirm new password" msgstr "Új jelszó megerősítése" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Új jelszó megerősítése" @@ -2428,16 +2434,16 @@ msgstr "E-mail cím megerősítése..." msgid "Congratulations! Your event is now visible to the public." msgstr "Gratulálunk! Az eseményed mostantól látható a nyilvánosság számára." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Stripe csatlakoztatása" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Kapcsolja be a Stripe-ot az e-mail sablon szerkesztéséhez" @@ -2445,7 +2451,7 @@ msgstr "Kapcsolja be a Stripe-ot az e-mail sablon szerkesztéséhez" msgid "Connect Stripe to enable messaging" msgstr "Kapcsolja be a Stripe-ot az üzenetküldéshez" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Csatlakozás a Stripe-hoz" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "Kapcsolati e-mail címünk az ügyfélszolgálathoz" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Folytatás" @@ -2508,7 +2514,7 @@ msgstr "Folytatás gomb szövege" msgid "Continue Setup" msgstr "Beállítás folytatása" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Folytatás" @@ -2520,7 +2526,7 @@ msgstr "Folytatás az esemény létrehozásához" msgid "Continue to next step" msgstr "Folytatás a következő lépésre" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Tovább a fizetéshez" @@ -2545,7 +2551,7 @@ msgstr "Ki mikor léphet be" msgid "Copied" msgstr "Másolva" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Másolva a fentiekből" @@ -2591,7 +2597,7 @@ msgstr "Kód másolása" msgid "Copy customer link" msgstr "Vásárlói link másolása" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Adatok másolása az első résztvevőhöz" @@ -2609,7 +2615,7 @@ msgstr "Link másolása" msgid "Copy Link" msgstr "Link másolása" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Adataim másolása:" @@ -2630,7 +2636,7 @@ msgstr "URL másolása" msgid "Could not delete location" msgstr "A helyszín törlése nem sikerült" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Nem sikerült előkészíteni a tömeges frissítést." @@ -2652,13 +2658,17 @@ msgstr "Az időpont mentése nem sikerült" msgid "Could not save location" msgstr "A helyszín mentése nem sikerült" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "Ország" @@ -2671,6 +2681,10 @@ msgstr "Borító" msgid "Cover Image" msgstr "Borítókép" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "A borítókép az eseményoldal tetején jelenik meg" @@ -2743,7 +2757,7 @@ msgstr "szervező létrehozása" msgid "Create and configure tickets and merchandise for sale." msgstr "Jegyek és árucikkek létrehozása és konfigurálása értékesítéshez." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Résztvevő létrehozása" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Kategória létrehozása" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Kategória létrehozása" @@ -2771,17 +2785,17 @@ msgstr "Kategória létrehozása" msgid "Create Check-In List" msgstr "Bejelentkezési lista létrehozása" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Konfiguráció létrehozása" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Hozzon létre egyedi e-mail sablonokat ehhez az eseményhez, amelyek felülírják a szervező alapértelmezéseit" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Egyedi sablon létrehozása" @@ -2793,16 +2807,16 @@ msgstr "Időpont létrehozása" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Kedvezmények, hozzáférési kódok rejtett jegyekhez és különleges ajánlatok létrehozása." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Esemény létrehozása" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Létrehozás ehhez az időponthoz" @@ -2849,7 +2863,7 @@ msgstr "Adó vagy díj létrehozása" msgid "Create Ticket or Product" msgstr "Jegy vagy termék létrehozása" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "Hozza létre eseményét" msgid "Create your first event" msgstr "Hozza létre első eseményét" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "CTA címke kötelező" msgid "Currency" msgstr "Pénznem" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Jelenlegi jelszó" @@ -2931,7 +2949,7 @@ msgstr "Jelenleg megvásárolható" msgid "Custom branding" msgstr "Egyedi arculat" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Egyéni dátum és idő" @@ -2957,7 +2975,7 @@ msgstr "Egyedi kérdések" msgid "Custom Range" msgstr "Egyedi tartomány" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Egyedi sablon" @@ -2970,7 +2988,7 @@ msgstr "Ügyfél" msgid "Customer link copied to clipboard" msgstr "Vásárlói link a vágólapra másolva" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "A vásárló e-mailt kap a visszatérítés megerősítéséről" @@ -2990,11 +3008,15 @@ msgstr "Vásárló vezetékneve" msgid "Customers" msgstr "Vásárlók" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Testreszabhatja az esemény e-mail és értesítési beállításait." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Testreszabhatja az ügyfeleknek küldött e-maileket Liquid sablonok használatával. Ezek a sablonok alapértelmezettként lesznek használva a szervezet összes eseményéhez." @@ -3027,6 +3049,10 @@ msgstr "Testreszabhatja a folytatás gomb szövegét." msgid "Customize your email template using Liquid templating" msgstr "Testreszabhatja az e-mail sablonját Liquid sablonok használatával" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Testreszabhatja szervezői oldalának megjelenését." @@ -3079,7 +3105,7 @@ msgstr "Sötét" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Irányítópult" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Dátum és idő" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Időpont lemondása" @@ -3208,12 +3234,12 @@ msgstr "Alapértelmezett kapacitás időpontonként" msgid "Default Fee Handling" msgstr "Alapértelmezett díjkezelés" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Alapértelmezett sablon lesz használva" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "törlés" @@ -3267,8 +3293,8 @@ msgstr "Kód törlése" msgid "Delete Date" msgstr "Időpont törlése" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Esemény törlése" @@ -3285,8 +3311,8 @@ msgstr "Feladat törlése" msgid "Delete location" msgstr "Helyszín törlése" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Szervező törlése" @@ -3294,7 +3320,7 @@ msgstr "Szervező törlése" msgid "Delete Permanently" msgstr "Végleges törlés" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Sablon törlése" @@ -3319,7 +3345,7 @@ msgstr "{0} időpont törölve" msgid "Description" msgstr "Leírás" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "Kedvezmény {0}-ban" msgid "Discount Type" msgstr "Kedvezmény típusa" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Elvet" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Üzenet elvetése" @@ -3441,7 +3467,7 @@ msgstr "CSV letöltése" msgid "Download invoice" msgstr "Számla letöltése" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Számla letöltése" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Értékesítési, résztvevői és pénzügyi jelentések letöltése minden befejezett rendeléshez." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "Számla letöltése" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Piszkozat" @@ -3469,7 +3494,7 @@ msgstr "Piszkozat" msgid "Dropdown selection" msgstr "Legördülő menü kiválasztása" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "A spam magas kockázata miatt csatlakoztatnia kell egy Stripe fiókot, mielőtt módosíthatná az e-mail sablonokat. Ez biztosítja, hogy minden eseményszervező ellenőrzött és felelősségre vonható legyen." @@ -3490,7 +3515,7 @@ msgstr "Duplikálás" msgid "Duplicate Date" msgstr "Időpont duplikálása" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Esemény másolása" @@ -3508,7 +3533,7 @@ msgstr "Opciók másolása" msgid "Duplicate Product" msgstr "Termék másolása" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "Az időtartamnak legalább 1 percnek kell lennie." @@ -3520,7 +3545,7 @@ msgstr "Holland" msgid "e.g. 180 (3 hours)" msgstr "pl. 180 (3 óra)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "pl. Reggeli alkalom" msgid "e.g., Get Tickets, Register Now" msgstr "pl. Jegyek beszerzése, Regisztráció most" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "pl. Fontos frissítés a jegyeiről" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "pl. Alap, Prémium, Vállalati" @@ -3542,7 +3567,7 @@ msgstr "pl. Alap, Prémium, Vállalati" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Minden személy e-mailt kap egy foglalt hellyel a vásárlás befejezéséhez." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Korábban" @@ -3611,7 +3636,7 @@ msgstr "Bejelentkezési lista szerkesztése" msgid "Edit Code" msgstr "Kód szerkesztése" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Konfiguráció szerkesztése" @@ -3659,8 +3684,8 @@ msgstr "Kérdés szerkesztése" msgid "Edit user" msgstr "Felhasználó szerkesztése" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Felhasználó szerkesztése" @@ -3708,7 +3733,7 @@ msgstr "Jogosult bejelentkezési listák" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Jogosult bejelentkezési listák" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "E-mail" @@ -3743,10 +3768,10 @@ msgstr "E-mail és sablonok" msgid "Email address" msgstr "E-mail cím" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "E-mail cím" @@ -3755,8 +3780,8 @@ msgstr "E-mail cím" msgid "Email address copied to clipboard" msgstr "E-mail cím vágólapra másolva" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "Az e-mail címek nem egyeznek" @@ -3764,21 +3789,21 @@ msgstr "Az e-mail címek nem egyeznek" msgid "Email Body" msgstr "E-mail törzse" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "E-mail cím módosítása sikeresen törölve" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "E-mail cím módosítása függőben" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "E-mail megerősítés újraküldve" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "E-mail megerősítés sikeresen újraküldve" @@ -3792,7 +3817,7 @@ msgstr "E-mail lábléc üzenet" msgid "Email is required" msgstr "E-mail cím kötelező" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "E-mail nem ellenőrzött" @@ -3800,7 +3825,7 @@ msgstr "E-mail nem ellenőrzött" msgid "Email Preview" msgstr "E-mail előnézet" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "E-mail sablonok" @@ -3809,6 +3834,10 @@ msgstr "E-mail sablonok" msgid "Email Verification Required" msgstr "E-mail ellenőrzés szükséges" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "E-mail sikeresen ellenőrizve!" @@ -3897,12 +3926,11 @@ msgstr "Befejezés ideje (opcionális)" msgid "End time of the occurrence" msgstr "Az alkalom befejezési ideje" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Befejezett" @@ -3920,11 +3948,11 @@ msgstr "Befejeződik: {0}" msgid "English" msgstr "Angol" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Adjon meg egy kapacitásértéket, vagy válassza a korlátlan opciót." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Adjon meg egy címkét, vagy válassza az eltávolítást." @@ -3932,7 +3960,7 @@ msgstr "Adjon meg egy címkét, vagy válassza az eltávolítást." msgid "Enter a subject and body to see the preview" msgstr "Írjon be egy tárgyat és törzset az előnézet megtekintéséhez" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Adja meg az eltolás mértékét." @@ -3949,11 +3977,11 @@ msgstr "Adja meg a partner e-mail címét (opcionális)" msgid "Enter affiliate name" msgstr "Adja meg a partner nevét" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Adjon meg egy összeget adók és díjak nélkül." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Adja meg a kapacitást" @@ -3998,7 +4026,7 @@ msgstr "Írja be az e-mail címét és elküldjük a jelszó visszaállításáh msgid "Enter your name" msgstr "Adja meg nevét" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Írja be az ÁFA számát az országkóddal együtt, szóközök nélkül (pl. IE1234567A, DE123456789)" @@ -4012,7 +4040,7 @@ msgstr "A bejegyzések itt jelennek meg, amikor az ügyfelek csatlakoznak az elf #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Hiba" @@ -4074,7 +4102,7 @@ msgstr "Esemény" msgid "Event Archived" msgstr "Esemény archiválva" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Az esemény sikeresen archiválva" @@ -4086,7 +4114,7 @@ msgstr "Eseménykategória" msgid "Event Cover Image" msgstr "Esemény borítóképe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4094,7 +4122,7 @@ msgstr "" msgid "Event Created" msgstr "Esemény létrehozva" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Esemény egyedi sablon" @@ -4113,7 +4141,7 @@ msgstr "Esemény dátuma" msgid "Event Defaults" msgstr "Esemény alapértelmezett beállításai" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Az esemény sikeresen törölve" @@ -4145,10 +4173,14 @@ msgstr "Esemény sikeresen másolva" msgid "Event Full Address" msgstr "Esemény teljes címe" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Esemény honlapja" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Esemény helyszíne" @@ -4188,7 +4220,7 @@ msgstr "Eseményszervező neve" msgid "Event Page" msgstr "Eseményoldal" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Az esemény sikeresen visszaállítva" @@ -4197,17 +4229,17 @@ msgstr "Az esemény sikeresen visszaállítva" msgid "Event Settings" msgstr "Esemény beállítások" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Esemény állapotának frissítése sikertelen. Kérjük, próbálja újra később." -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Esemény állapota frissítve" @@ -4240,7 +4272,7 @@ msgstr "Esemény címe" msgid "Event Too New" msgstr "Az esemény túl új" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Esemény összesítései" @@ -4405,7 +4437,7 @@ msgstr "Sikertelen időpontja" msgid "Failed Jobs" msgstr "Sikertelen feladatok" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "A rendelés feladása sikertelen. Kérjük, próbálja újra." @@ -4439,7 +4471,7 @@ msgstr "Nem sikerült törölni a megrendelést." msgid "Failed to create affiliate" msgstr "Nem sikerült létrehozni a partnert." -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "A konfiguráció létrehozása sikertelen" @@ -4447,12 +4479,12 @@ msgstr "A konfiguráció létrehozása sikertelen" msgid "Failed to create schedule" msgstr "Az ütemezés létrehozása nem sikerült" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "A sablon létrehozása sikertelen" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "A konfiguráció törlése sikertelen" @@ -4470,7 +4502,7 @@ msgstr "Az időpont törlése nem sikerült. Lehetséges, hogy meglévő rendel msgid "Failed to delete dates" msgstr "Az időpontok törlése nem sikerült" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Nem sikerült törölni az eseményt" @@ -4482,7 +4514,7 @@ msgstr "A feladat törlése sikertelen" msgid "Failed to delete jobs" msgstr "A feladatok törlése sikertelen" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Nem sikerült törölni a szervezőt" @@ -4490,13 +4522,13 @@ msgstr "Nem sikerült törölni a szervezőt" msgid "Failed to delete question" msgstr "A kérdés törlése sikertelen" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "A sablon törlése sikertelen" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Nem sikerült letölteni a számlát. Kérjük, próbálja újra." @@ -4594,14 +4626,14 @@ msgstr "Az ár felülírásának mentése nem sikerült" msgid "Failed to save product settings" msgstr "A termékbeállítások mentése nem sikerült" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "A sablon mentése sikertelen" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Az ÁFA beállítások mentése sikertelen. Kérjük, próbálja újra." @@ -4639,11 +4671,11 @@ msgstr "Válasz frissítése sikertelen." msgid "Failed to update attendee" msgstr "A résztvevő frissítése sikertelen" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "A konfiguráció frissítése sikertelen" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Nem sikerült frissíteni az esemény állapotát" @@ -4655,7 +4687,7 @@ msgstr "Az üzenetküldési szint frissítése sikertelen" msgid "Failed to update order" msgstr "A rendelés frissítése sikertelen" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Nem sikerült frissíteni a szervező állapotát" @@ -4701,7 +4733,7 @@ msgstr "Február" msgid "Fee" msgstr "Díj" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Díj pénzneme" @@ -4720,7 +4752,7 @@ msgstr "" msgid "Fees" msgstr "Díjak" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Díjak megkerülve" @@ -4732,8 +4764,8 @@ msgstr "Fesztivál" msgid "File is too large. Maximum size is 5MB." msgstr "A fájl túl nagy. Maximális méret: 5MB." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Először töltse ki az adatait fentebb" @@ -4754,7 +4786,7 @@ msgstr "Résztvevők szűrése" msgid "Filter by date" msgstr "Szűrés időpont szerint" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Szűrés esemény szerint" @@ -4775,19 +4807,27 @@ msgstr "Szűrők ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Fejezd be a Stripe beállítását" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "Első" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "Első résztvevő" @@ -4798,22 +4838,22 @@ msgstr "Első számla száma" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Keresztnév" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Keresztnév" @@ -4843,16 +4883,16 @@ msgstr "Fix összeg" msgid "Fixed fee" msgstr "Fix díj" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Fix díj" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Tranzakciónkénti fix díj" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "A fix díjnak 0 vagy nagyobbnak kell lennie" @@ -4923,7 +4963,11 @@ msgstr "Péntek" msgid "Full data ownership" msgstr "Teljes adatbirtoklás" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Teljes visszatérítés" @@ -4931,11 +4975,11 @@ msgstr "Teljes visszatérítés" msgid "Full resolved address" msgstr "Teljes feloldott cím" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "jövőbeli" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Csak jövőbeli időpontok" @@ -4992,7 +5036,7 @@ msgstr "Kezdés" msgid "Get Tickets" msgstr "Jegyek vásárlása" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Készítse elő eseményét" @@ -5013,7 +5057,7 @@ msgstr "Vissza" msgid "Go back to profile" msgstr "Vissza a profilhoz" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Esemény oldalra" @@ -5037,7 +5081,7 @@ msgstr "Google Naptár" msgid "Got it" msgstr "Értem" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Bruttó bevétel" @@ -5045,22 +5089,22 @@ msgstr "Bruttó bevétel" msgid "Gross Revenue" msgstr "Bruttó bevétel" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Bruttó értékesítés" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Bruttó értékesítés" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5077,7 +5121,7 @@ msgstr "Résztvevők" msgid "Happening now" msgstr "Most zajlik" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Van promóciós kódja?" @@ -5106,7 +5150,7 @@ msgstr "Íme a React komponens, amelyet a widget beágyazásához használhatja msgid "Here is your affiliate link" msgstr "Íme az affiliate linkje" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Szia {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Rejtett a nyilvánosság elől" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "A rejtett kérdések csak az eseményszervező számára láthatók, az ügyfél számára nem." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Elrejtés" @@ -5239,8 +5283,8 @@ msgstr "Honlap előnézet" msgid "Homer" msgstr "Homer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Óra" @@ -5269,11 +5313,11 @@ msgstr "Milyen gyakran?" msgid "How to pay offline" msgstr "Hogyan fizessen offline" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "Hogyan számítjuk fel az ÁFA-t a platformdíjakhoz." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "HTML karakterkorlát túllépve: {htmlLength}/{maxLength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Magyar" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Tudomásul veszem adatkezelői felelősségemet" @@ -5305,11 +5349,11 @@ msgstr "Elfogadom az eseménnyel kapcsolatos e-mail értesítések fogadását" msgid "I agree to the <0>terms and conditions" msgstr "Elfogadom az <0>általános szerződési feltételeket" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Megerősítem, hogy ez egy tranzakciós üzenet az eseményhez kapcsolódóan" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Ha nem nyílt meg automatikusan új lap, kérjük, kattintson az alábbi gombra a fizetés folytatásához." @@ -5325,7 +5369,7 @@ msgstr "Ha engedélyezve van, a bejelentkezési személyzet bejelentkezettként msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Ha engedélyezve van, a szervező e-mail értesítést kap, amikor új megrendelés érkezik." -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Ha nem Ön kérte ezt a módosítást, kérjük, azonnal változtassa meg jelszavát." @@ -5370,11 +5414,11 @@ msgstr "Megszemélyesítés elindítva" msgid "Impersonation stopped" msgstr "Megszemélyesítés leállítva" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Fontos megjegyzés" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Fontos: Az e-mail cím módosítása frissíti a rendeléshez való hozzáférés linkjét. Mentés után átirányítjuk az új rendelési linkre." @@ -5390,7 +5434,7 @@ msgstr "{diffMinutes} perc múlva" msgid "in last {0} min" msgstr "az elmúlt {0} percben" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "Személyes — helyszín megadása" @@ -5401,15 +5445,15 @@ msgstr "személyes, online, nincs beállítva, vagy vegyes" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Inaktív" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Az inaktív felhasználók nem tudnak bejelentkezni." @@ -5483,12 +5527,12 @@ msgstr "Érvénytelen e-mail formátum" msgid "Invalid file type. Please upload an image." msgstr "Érvénytelen fájltípus. Kérjük, töltsön fel egy képet." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Érvénytelen Liquid szintaxis. Kérjük, javítsa ki és próbálja újra." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Érvénytelen ÁFA szám formátum" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Számla" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Számla sikeresen letöltve" @@ -5545,7 +5589,7 @@ msgstr "Számla beállítások" msgid "Italian" msgstr "Olasz" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Tétel" @@ -5628,7 +5672,7 @@ msgstr "épp most" msgid "Just wrapped" msgstr "Most fejeződött be" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Tartsanak naprakészen a {0} híreivel és eseményeivel" @@ -5647,13 +5691,13 @@ msgstr "Címke" msgid "Label for the occurrence" msgstr "Az alkalom címkéje" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "címkefrissítések" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Nyelv" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "Utolsó 24 óra" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "Utolsó 30 nap" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "Utolsó 6 hónap" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "Utolsó 7 nap" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "Utolsó 90 nap" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Vezetéknév" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Vezetéknév" @@ -5753,7 +5797,7 @@ msgstr "Utoljára aktiválva" msgid "Last Used" msgstr "Utoljára használva" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Később" @@ -5786,7 +5830,7 @@ msgstr "Hagyja bekapcsolva, hogy minden jegyre kiterjedjen az eseményen. Kapcso msgid "Let them know about the change" msgstr "Tájékoztassa őket a változásról" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Tájékoztassa őket a változásokról" @@ -5830,12 +5874,11 @@ msgstr "Lista" msgid "List view" msgstr "Listanézet" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "Élő" @@ -5848,7 +5891,7 @@ msgstr "ÉLŐ" msgid "Live Events" msgstr "Élő események" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Betöltött időpontok" @@ -5872,8 +5915,8 @@ msgstr "Webhookok betöltése" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Betöltés..." @@ -5926,7 +5969,7 @@ msgstr "Helyszín mentve" msgid "Location updated" msgstr "Helyszín frissítve" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "helyszín frissítések" @@ -5990,7 +6033,7 @@ msgstr "Központi iroda" msgid "Make billing address mandatory during checkout" msgstr "Tegye kötelezővé a számlázási címet a fizetés során" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "Résztvevő kezelése" msgid "Manage dates and times for your recurring event" msgstr "Az ismétlődő esemény időpontjainak kezelése" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Esemény kezelése" @@ -6039,10 +6082,14 @@ msgstr "Megrendelés kezelése" msgid "Manage payment and invoicing settings for this event." msgstr "Kezelje az esemény fizetési és számlázási beállításait." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Profil kezelése" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Ütemezés kezelése" @@ -6124,7 +6171,7 @@ msgstr "Médium" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Üzenet" @@ -6141,7 +6188,7 @@ msgstr "Üzenet a résztvevőnek" msgid "Message Attendees" msgstr "Üzenet a résztvevőknek" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Üzenet a résztvevőknek meghatározott jegyekkel" @@ -6165,7 +6212,7 @@ msgstr "Üzenet tartalma" msgid "Message Details" msgstr "Üzenet részletei" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Egyéni résztvevők üzenete" @@ -6173,15 +6220,15 @@ msgstr "Egyéni résztvevők üzenete" msgid "Message is required" msgstr "Üzenet kötelező" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Üzenet a megrendelőknek meghatározott termékekkel" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Üzenet ütemezve" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Üzenet elküldve" @@ -6212,8 +6259,8 @@ msgstr "Minimális ár" msgid "minutes" msgstr "perc" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Perc" @@ -6229,7 +6276,7 @@ msgstr "Egyéb beállítások" msgid "Mo" msgstr "H" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Mód" @@ -6282,7 +6329,7 @@ msgstr "További műveletek" msgid "Most Viewed Events (Last 14 Days)" msgstr "Legnézettebb események (Elmúlt 14 nap)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Az összes időpont előbbre vagy későbbre helyezése" @@ -6290,7 +6337,7 @@ msgstr "Az összes időpont előbbre vagy későbbre helyezése" msgid "Multi line text box" msgstr "Többsoros szövegdoboz" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Név" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "Név kötelező" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "A névnek rövidebbnek kell lennie 255 karakternél" @@ -6384,21 +6431,21 @@ msgstr "Nettó bevétel" msgid "Never" msgstr "Soha" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Új kapacitás" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Új címke" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Új helyszín" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "Új jelszó" @@ -6426,7 +6473,7 @@ msgstr "Éjszakai élet" msgid "No" msgstr "Nem" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "Nem - Magánszemély vagyok vagy nem ÁFA-s vállalkozás" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "Nincs kapacitás-hozzárendelés" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "Nincs elérhető bejelentkezési lista ehhez az eseményhez." msgid "No check-ins yet" msgstr "Még nincs beléptetés" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "Nem találhatók konfigurációk" @@ -6537,7 +6584,7 @@ msgstr "Nincs időpontspecifikus beléptetési lista" msgid "No dates available this month. Try navigating to another month." msgstr "Ebben a hónapban nincs elérhető időpont. Próbáljon másik hónapra lépni." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "Egyetlen időpont sem felel meg a jelenlegi szűrőknek." @@ -6582,8 +6629,8 @@ msgstr "Nincs esemény, amely a következő 24 órában kezdődne" msgid "No events to show" msgstr "Nincs megjeleníthető esemény" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "Nem találhatók rendelések" msgid "No orders to show" msgstr "Nincs megjeleníthető megrendelés" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "Még nincs rendelés ehhez az időponthoz." msgid "No organizer activity in the last 14 days" msgstr "Nincs szervezői tevékenység az elmúlt 14 napban" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "Nincs elérhető szervezői kontextus." @@ -6733,7 +6780,7 @@ msgstr "Még nincsenek válaszok" msgid "No results" msgstr "Nincs találat" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Még nincsenek mentett helyszínek" @@ -6793,16 +6840,16 @@ msgstr "Ehhez a végponthoz még nem rögzítettek webhook eseményeket. Az esem msgid "No Webhooks" msgstr "Nincsenek Webhookok" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "Nem, maradok itt" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "nem szerkesztett" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Egyik sem" @@ -6870,7 +6917,7 @@ msgstr "Szám előtag" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Alkalom" @@ -7005,7 +7052,7 @@ msgstr "Offline fizetési információk" msgid "Offline Payments Settings" msgstr "Offline fizetési beállítások" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "Miután elkezd gyűjteni adatokat, itt fogja látni." msgid "Ongoing" msgstr "Folyamatban" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "Folyamatban" msgid "Online" msgstr "Online" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "Online — add meg a csatlakozási adatokat" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Online és személyes" @@ -7070,15 +7117,15 @@ msgstr "Online esemény kapcsolódási adatai" msgid "Online Event Details" msgstr "Online esemény részletei" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Csak a fiókadminisztrátorok törölhetnek vagy archiválhatnak eseményeket. Segítségért forduljon a fiókadminisztrátorhoz." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Csak a fiókadminisztrátorok törölhetnek vagy archiválhatnak szervezőket. Segítségért forduljon a fiókadminisztrátorhoz." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Csak az ilyen státuszú megrendelésekre küldje el" @@ -7173,7 +7220,7 @@ msgstr "Rendelés és jegy" msgid "Order #" msgstr "Rendelés szám" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Rendelés törölve" @@ -7182,13 +7229,13 @@ msgstr "Rendelés törölve" msgid "Order Cancelled" msgstr "Megrendelés törölve" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Rendelés befejezve" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Rendelés megerősítése" @@ -7273,7 +7320,7 @@ msgstr "Megrendelés fizetettként megjelölve" msgid "Order Marked as Paid" msgstr "Megrendelés fizetettként megjelölve" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Rendelés nem található" @@ -7297,7 +7344,7 @@ msgstr "Rendelésszám, vásárlás dátuma, vásárló e-mailje" msgid "Order owner" msgstr "Megrendelő" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Megrendelők meghatározott termékkel" @@ -7327,7 +7374,7 @@ msgstr "Megrendelés visszatérítve" msgid "Order Status" msgstr "Megrendelés állapota" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Megrendelés állapotok" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Megrendelés időtúllépés" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Rendelés összege" @@ -7357,7 +7404,7 @@ msgstr "A rendelés sikeresen frissítve" msgid "Order URL" msgstr "Rendelés URL" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "Rendelés törölve lett" @@ -7374,8 +7421,8 @@ msgstr "rendelések" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Szervezet neve" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Szervezet neve" msgid "Organizer" msgstr "Szervező" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "A szervező sikeresen archiválva" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Szervezői irányítópult" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "A szervező sikeresen törölve" @@ -7486,7 +7533,7 @@ msgstr "Szervező neve" msgid "Organizer Not Found" msgstr "Szervező nem található" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "A szervező sikeresen visszaállítva" @@ -7504,7 +7551,7 @@ msgstr "Szervező állapotának frissítése sikertelen. Kérjük, próbálja ú msgid "Organizer status updated" msgstr "Szervező állapota frissítve" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Szervező/alapértelmezett sablon lesz használva" @@ -7512,7 +7559,7 @@ msgstr "Szervező/alapértelmezett sablon lesz használva" msgid "Organizers" msgstr "Szervezők" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "A szervezők csak eseményeket és termékeket kezelhetnek. Nem kezelhetik a felhasználókat, fiókbeállításokat vagy számlázási információkat." @@ -7563,7 +7610,7 @@ msgstr "Kitöltés" msgid "Page" msgstr "Oldal" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Az oldal már nem elérhető" @@ -7575,7 +7622,7 @@ msgstr "Oldal nem található" msgid "Page URL" msgstr "Oldal URL-címe" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Oldalmegtekintések" @@ -7583,11 +7630,11 @@ msgstr "Oldalmegtekintések" msgid "Page Views" msgstr "Oldal megtekintések" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "fizetett" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "Fizetett fiókok" msgid "Paid Product" msgstr "Fizetős termék" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Részleges visszatérítés" @@ -7623,7 +7670,7 @@ msgstr "Áthárítás a vevőre" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Jelszó" @@ -7694,7 +7741,7 @@ msgstr "Adattartalom" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Fizetés" @@ -7735,7 +7782,7 @@ msgstr "Fizetési módok" msgid "Payment provider" msgstr "Fizetési szolgáltató" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Fizetés megérkezett" @@ -7747,7 +7794,7 @@ msgstr "Fizetés beérkezett" msgid "Payment Status" msgstr "Fizetési állapot" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "Fizetés sikeres!" @@ -7761,11 +7808,11 @@ msgstr "Fizetések nem elérhetők" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Kifizetések" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "Függőben" @@ -7801,8 +7848,8 @@ msgstr "Százalék" msgid "Percentage Amount" msgstr "Százalékos összeg" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Százalékos díj" @@ -7810,11 +7857,11 @@ msgstr "Százalékos díj" msgid "Percentage fee (%)" msgstr "Százalékos díj (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "A százaléknak 0 és 100 között kell lennie" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Tranzakció összegének százaléka" @@ -7822,11 +7869,11 @@ msgstr "Tranzakció összegének százaléka" msgid "Performance" msgstr "Teljesítmény" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Véglegesen törölje ezt az eseményt és az összes kapcsolódó adatot." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Véglegesen törölje ezt a szervezőt és az összes eseményét." @@ -7834,7 +7881,7 @@ msgstr "Véglegesen törölje ezt a szervezőt és az összes eseményét." msgid "Permanently remove this date" msgstr "Időpont végleges eltávolítása" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Személyes adatok" @@ -7842,7 +7889,7 @@ msgstr "Személyes adatok" msgid "Phone" msgstr "Telefon" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Válassz egy helyszínt" @@ -7892,7 +7939,7 @@ msgstr "{0} platformdíj levonva a kifizetésből" msgid "Platform Fees" msgstr "Platform díjak" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Platform díjak jelentés" @@ -7918,7 +7965,7 @@ msgstr "Kérjük, ellenőrizze e-mail címét és jelszavát, majd próbálja ú msgid "Please check your email is valid" msgstr "Kérjük, ellenőrizze, hogy az e-mail címe érvényes-e." -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Kérjük, ellenőrizze e-mail címét az e-mail cím megerősítéséhez." @@ -7926,7 +7973,7 @@ msgstr "Kérjük, ellenőrizze e-mail címét az e-mail cím megerősítéséhez msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Kérjük, ellenőrizze a jegyén a frissített időpontot. A jegyei továbbra is érvényesek — nincs szükség teendőre, hacsak az új időpontok nem felelnek meg Önnek. Bármilyen kérdés esetén válaszoljon erre az e-mailre." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Kérjük, folytassa az új lapon." @@ -7955,7 +8002,7 @@ msgstr "Kérjük, adjon meg érvényes URL-t." msgid "Please enter the 5-digit code" msgstr "Kérjük, adja meg az 5 jegyű kódot." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Kérjük, adja meg ÁFA számát" @@ -7971,11 +8018,11 @@ msgstr "Kérjük, adjon meg egy képet." msgid "Please restart the checkout process." msgstr "Kérjük, indítsa újra a pénztári folyamatot." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Kérjük, térjen vissza az esemény oldalára az újrakezdéshez." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Kérjük, válasszon dátumot és időpontot" @@ -7987,7 +8034,7 @@ msgstr "Kérjük, válasszon dátumtartományt" msgid "Please select an image." msgstr "Kérjük, válasszon egy képet." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Kérjük, válasszon ki legalább egy terméket." @@ -7998,7 +8045,7 @@ msgstr "Kérjük, válasszon ki legalább egy terméket." msgid "Please try again." msgstr "Kérjük, próbálja újra." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Kérjük, erősítse meg e-mail címét az összes funkció eléréséhez." @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Kérjük, várjon, amíg előkészítjük résztvevőit az exportálásra..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Kérjük, várjon, amíg előkészítjük számláját..." @@ -8124,7 +8171,7 @@ msgstr "Nyomtatási előnézet" msgid "Print Ticket" msgstr "Jegy nyomtatása" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Jegyek nyomtatása" @@ -8139,7 +8186,7 @@ msgstr "Nyomtatás PDF-be" msgid "Privacy Policy" msgstr "Adatvédelmi irányelvek" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Visszatérítés feldolgozása" @@ -8180,7 +8227,7 @@ msgstr "Termék sikeresen törölve" msgid "Product Price Type" msgstr "Termék ár típusa" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Termék(ek)" msgid "Products" msgstr "Termékek" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Eladott termékek" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Eladott termékek" msgid "Products sorted successfully" msgstr "Termékek sikeresen rendezve" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Profil" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Profil sikeresen frissítve" @@ -8251,7 +8298,7 @@ msgstr "Profil sikeresen frissítve" msgid "Progress" msgstr "Folyamat" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Promóciós kód {promo_code} alkalmazva" @@ -8298,7 +8345,7 @@ msgstr "Promóciós kódok jelentés" msgid "Promo Only" msgstr "Csak promócióval" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "A promóciós e-mailek fiók felfüggesztéshez vezethetnek" @@ -8310,11 +8357,11 @@ msgstr "" "Adjon meg további kontextust vagy utasításokat ehhez a kérdéshez. Használja ezt a mezőt feltételek\n" "és kikötések, irányelvek vagy bármilyen fontos információ hozzáadásához, amit a résztvevőknek tudniuk kell a válasz előtt." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Adj meg legalább egy címmezőt az új helyszínhez." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Add meg az alábbiakat a Stripe következő ellenőrzése előtt, hogy a kifizetések folyamatosak maradjanak." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Szolgáltató" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Közzététel" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "Valós idejű analitika" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Termékfrissítések fogadása a {0}-től." @@ -8439,6 +8486,10 @@ msgstr "Termékfrissítések fogadása a {0}-től." msgid "Recent Account Signups" msgstr "Legutóbbi fiók regisztrációk" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Legutóbbi résztvevők" @@ -8447,7 +8498,7 @@ msgstr "Legutóbbi résztvevők" msgid "Recent check-ins" msgstr "Legutóbbi beléptetések" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "Legutóbbi megrendelések" msgid "recipient" msgstr "címzett" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Címzett" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "címzett" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Címzettek" msgid "Recipients are available after the message is sent" msgstr "A címzettek a küldés után érhetők el" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Ismétlődő" @@ -8517,7 +8569,7 @@ msgstr "Az ezen időpontokhoz tartozó összes rendelés visszatérítése" msgid "Refund all orders for this date" msgstr "Az ezen időponthoz tartozó összes rendelés visszatérítése" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Visszatérítés összege" @@ -8537,7 +8589,7 @@ msgstr "Visszatérítés kiadva" msgid "Refund order" msgstr "Megrendelés visszatérítése" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Rendelés visszatérítése {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "Visszatérítés állapota" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Visszatérítve" @@ -8571,7 +8623,7 @@ msgstr "Visszatérítve: {0}" msgid "Refunds" msgstr "Visszatérítések" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Regionális beállítások" @@ -8598,18 +8650,18 @@ msgstr "Fennmaradó felhasználások" msgid "Reminder scheduled" msgstr "Emlékeztető ütemezve" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "eltávolítás" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Eltávolítás" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Címke eltávolítása az összes időpontról" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Megerősítő e-mail újraküldése" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "E-mail újraküldése" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "E-mail megerősítés újraküldése" @@ -8688,7 +8741,7 @@ msgstr "Jegy újraküldése" msgid "Resend ticket email" msgstr "Jegy e-mail újraküldése" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Újraküldés..." @@ -8729,30 +8782,30 @@ msgstr "Válasz" msgid "Response Details" msgstr "Válasz részletei" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Visszaállítás" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Esemény visszaállítása" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Esemény visszaállítása" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Szervező visszaállítása" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Állítsa vissza ezt az eseményt, hogy ismét látható legyen." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Állítsa vissza ezt a szervezőt, és tegye ismét aktívvá." @@ -8777,7 +8830,7 @@ msgstr "Feladat újrapróbálása" msgid "Return to Event" msgstr "Vissza az eseményhez" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Vissza az esemény oldalára" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Használj újra egy Stripe-kapcsolatot a fiók másik szervezőjétől." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Bevétel" @@ -8818,7 +8872,7 @@ msgstr "Meghívó visszavonása" msgid "Revoke Offer" msgstr "Ajánlat visszavonása" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Értékesítés kezdete {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Értékesítések" @@ -8930,7 +8984,7 @@ msgstr "Szombat" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Szombat" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Mentés" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Jegytervezés mentése" msgid "Save VAT settings" msgstr "ÁFA-beállítások mentése" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "ÁFA beállítások mentése" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Mentett helyszín" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Mentett helyszínek" @@ -9015,7 +9069,7 @@ msgstr "Mentett helyszínek" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "A felülírás mentése dedikált konfigurációt hoz létre ennek a szervezőnek, ha jelenleg a rendszer alapértelmezett beállítását használja." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Beolvasás" @@ -9035,6 +9089,10 @@ msgstr "Olvasó mód" msgid "Schedule" msgstr "Ütemezés" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Ütemezés sikeresen létrehozva" @@ -9043,11 +9101,11 @@ msgstr "Ütemezés sikeresen létrehozva" msgid "Schedule ends on" msgstr "Az ütemezés ekkor ér véget" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Ütemezés későbbre" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Üzenet ütemezése" @@ -9061,11 +9119,11 @@ msgstr "Az ütemezés kezdete" msgid "Scheduled" msgstr "Ütemezett" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Ütemezett időpont" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Keresés" @@ -9228,11 +9286,11 @@ msgstr "Összes kiválasztása" msgid "Select all on {0}" msgstr "Az összes kiválasztása itt: {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Válasszon eseményt" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Résztvevő csoport kiválasztása" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Terméksor kiválasztása" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Termékek kiválasztása" @@ -9298,7 +9356,7 @@ msgstr "Kezdés dátumának és idejének kiválasztása" msgid "Select start time" msgstr "Kezdési idő kiválasztása" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Állapot kiválasztása" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Jegy kiválasztása" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Jegyek kiválasztása" @@ -9325,7 +9383,7 @@ msgstr "Időszak kiválasztása" msgid "Select timezone" msgstr "Időzóna kiválasztása" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Válassza ki, mely résztvevők kapják meg ezt az üzenetet" @@ -9359,11 +9417,11 @@ msgstr "Gyorsan fogy 🔥" msgid "Send" msgstr "Küldés" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Üzenet küldése" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Küldés tesztként" @@ -9371,20 +9429,20 @@ msgstr "Küldés tesztként" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "E-mailek küldése résztvevőknek, jegytulajdonosoknak vagy rendelés tulajdonosoknak. Az üzenetek azonnal elküldhetők vagy későbbre ütemezhetők." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Küldjön nekem egy másolatot" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Üzenet küldése" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Küldés most" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Rendelés visszaigazoló és jegy e-mail küldése" @@ -9392,7 +9450,7 @@ msgstr "Rendelés visszaigazoló és jegy e-mail küldése" msgid "Send real-time order and attendee data to your external systems." msgstr "Valós idejű rendelési és résztvevői adatok küldése a külső rendszereibe." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Visszatérítési értesítő e-mail küldése" @@ -9400,11 +9458,11 @@ msgstr "Visszatérítési értesítő e-mail küldése" msgid "Send reset link" msgstr "Visszaállítási link küldése" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Teszt küldése" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Küldés minden alkalomra, vagy válasszon egy konkrétat" @@ -9429,15 +9487,15 @@ msgstr "Elküldve" msgid "Sent By" msgstr "Küldte" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Akkor kerül elküldésre a résztvevőknek, ha egy ütemezett időpont lemondásra kerül" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Elküldve a vásárlóknak, amikor rendelést adnak le" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Elküldve minden résztvevőnek a jegy részleteivel" @@ -9490,7 +9548,7 @@ msgstr "Állítsa be az alapértelmezett platformdíj-beállításokat az ezen s msgid "Set default settings for new events created under this organizer." msgstr "Alapértelmezett beállítások megadása az e szervező alatt létrehozott új eseményekhez." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Állítsa be, meddig tart minden egyes időpont" @@ -9498,11 +9556,11 @@ msgstr "Állítsa be, meddig tart minden egyes időpont" msgid "Set number of dates" msgstr "Időpontok számának beállítása" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Időpont címkéjének beállítása vagy törlése" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Állítsa be, hogy minden időpont befejezési ideje ennyivel a kezdési ideje után legyen." @@ -9510,7 +9568,7 @@ msgstr "Állítsa be, hogy minden időpont befejezési ideje ennyivel a kezdési msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Állítsa be a számlaszámozás kezdő számát. Ez nem módosítható, amint a számlák elkészültek." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Beállítás korlátlanra (limit eltávolítása)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Bejelentkezési listák beállítása különböző bejáratokhoz, munkamenetekhez vagy napokhoz." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Kifizetések beállítása" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Ütemezés beállítása" msgid "Set up your organization" msgstr "Állítsa be szervezetét" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Az ütemezés beállítása" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Az alkalom helyszínének vagy online adatainak beállítása, módosítása vagy eltávolítása" @@ -9599,11 +9665,11 @@ msgstr "Szervezői oldal megosztása" msgid "Shared Capacity Management" msgstr "Megosztott kapacitás kezelés" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Időpontok eltolása" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "{count} időpont időpontjai eltolva" @@ -9635,8 +9701,8 @@ msgstr "Marketing opt-in jelölőnégyzet megjelenítése" msgid "Show marketing opt-in checkbox by default" msgstr "Marketing opt-in jelölőnégyzet alapértelmezés szerinti megjelenítése" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Több mutatása" @@ -9673,7 +9739,7 @@ msgstr "Megjelenítve: {0}–{1} / {2}" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "Megjelenítve: {MAX_VISIBLE} / {totalAvailable} időpont. Gépeljen a kereséshez." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "Az első {0} jelenik meg — a fennmaradó {1} alkalom továbbra is célpontja lesz az üzenetnek a küldéskor." @@ -9710,7 +9776,7 @@ msgstr "Egyszeri esemény" msgid "Single line text box" msgstr "Egysoros szövegmező" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "A manuálisan szerkesztett időpontok kihagyása" @@ -9745,7 +9811,7 @@ msgstr "Közösségi linkek és weboldal" msgid "Sold" msgstr "Eladva" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Néhány adat nem látható nyilvánosan. Jelentkezz be, hogy mindent l #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Valami hiba történt" @@ -9784,7 +9850,7 @@ msgstr "Valami hiba történt, kérjük, próbálja újra, vagy vegye fel a kapc msgid "Something went wrong! Please try again" msgstr "Valami hiba történt! Kérjük, próbálja újra." -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Valami hiba történt." @@ -9796,12 +9862,12 @@ msgstr "Valami hiba történt. Kérjük, próbálja újra később." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Valami hiba történt. Kérjük, próbálja újra." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Sajnáljuk, ez a promóciós kód nem felismerhető." @@ -9897,12 +9963,12 @@ msgstr "Holnap kezdődik" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "Állam vagy régió" @@ -9914,7 +9980,7 @@ msgstr "Statisztikák" msgid "Statistics are based on account creation date" msgstr "A statisztikák a fiók létrehozásának dátumán alapulnak" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Statisztika" @@ -9931,7 +9997,7 @@ msgstr "Statisztika" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "Stripe fizetési azonosító" msgid "Stripe payments are not enabled for this event." msgstr "A Stripe fizetések nincsenek engedélyezve ehhez az eseményhez." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "A Stripe-nak hamarosan további adatokra lesz szüksége" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "V" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "Tárgy kötelező" msgid "Subject will appear here" msgstr "A tárgy itt fog megjelenni" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Tárgy:" @@ -10024,11 +10090,11 @@ msgstr "Részösszeg" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Sikeres" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Sikeres! {0} hamarosan e-mailt kap." @@ -10173,7 +10239,7 @@ msgstr "Beállítások sikeresen frissítve" msgid "Successfully Updated Social Links" msgstr "Közösségi linkek sikeresen frissítve" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Követési beállítások sikeresen frissítve" @@ -10226,7 +10292,7 @@ msgstr "Svéd" msgid "Switch Organizer" msgstr "Szervező váltása" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Rendszer alapértelmezett" @@ -10238,7 +10304,7 @@ msgstr "Póló" msgid "Tap this screen to resume scanning" msgstr "Érintsd meg a képernyőt a folytatáshoz" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "{0} kiválasztott alkalom résztvevőit célozza meg." @@ -10336,7 +10402,7 @@ msgstr "Meséljen nekünk a szervezetéről. Ez az információ megjelenik az es msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Mondja el, milyen gyakran ismétlődik az eseménye, és mi létrehozzuk az összes időpontot." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Add meg az ÁFA-regisztrációs státuszodat, hogy a megfelelő ÁFA-kezelést alkalmazhassuk a platformdíjakra." @@ -10344,15 +10410,15 @@ msgstr "Add meg az ÁFA-regisztrációs státuszodat, hogy a megfelelő ÁFA-kez msgid "Template Active" msgstr "Sablon aktív" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Sablon sikeresen létrehozva" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Sablon sikeresen törölve" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Sablon sikeresen mentve" @@ -10378,8 +10444,8 @@ msgstr "Köszönjük, hogy részt vett!" msgid "Thanks," msgstr "Köszönjük," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Ez a promóciós kód érvénytelen." @@ -10399,7 +10465,7 @@ msgstr "A keresett bejelentkezési lista nem létezik." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "A kód 10 percen belül lejár. Ellenőrizze a spam mappáját, ha nem látja az e-mailt." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "Az a pénznem, amelyben a fix díj van meghatározva. A fizetéskor az order pénznemére lesz átváltva." @@ -10417,7 +10483,7 @@ msgstr "Az események alapértelmezett pénzneme." msgid "The default timezone for your events." msgstr "Az események alapértelmezett időzónája." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "Az e-mail cím megváltozott. A résztvevő új jegyet kap a frissített e-mail címre." @@ -10442,7 +10508,7 @@ msgstr "Az első dátum, amelytől ez az ütemezés generálódik." msgid "The full event address" msgstr "Az esemény teljes címe" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "A teljes rendelési összeg visszatérítésre kerül a vásárló eredeti fizetési módjára." @@ -10466,7 +10532,7 @@ msgstr "A vásárló nyelve" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "A maximum {MAX_PREVIEW} alkalom. Kérjük, csökkentse a dátumtartományt, a gyakoriságot vagy a naponta tartott alkalmak számát." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "A termékek maximális száma {0} számára {1}" @@ -10475,7 +10541,7 @@ msgstr "A termékek maximális száma {0} számára {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "A keresett szervező nem található. Lehet, hogy az oldalt áthelyezték, törölték, vagy az URL hibás." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "A felülírás rögzítésre kerül a rendelés naplójában." @@ -10499,11 +10565,11 @@ msgstr "Az ügyfélnek megjelenő ár nem tartalmazza az adókat és díjakat. K msgid "The primary brand color used for buttons and highlights" msgstr "Az elsődleges márka szín a gombokhoz és kiemelésekhez" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "Az ütemezett időpont megadása kötelező" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "Az ütemezett időpontnak a jövőben kell lennie" @@ -10511,8 +10577,8 @@ msgstr "Az ütemezett időpontnak a jövőben kell lennie" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "A(z) \"{title}\" eredetileg {0} időpontra ütemezett alkalma át lett ütemezve." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "A sablon törzse érvénytelen Liquid szintaxist tartalmaz. Kérjük, javítsa ki és próbálja újra." @@ -10521,7 +10587,7 @@ msgstr "A sablon törzse érvénytelen Liquid szintaxist tartalmaz. Kérjük, ja msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "Az esemény címe, amely megjelenik a keresőmotorok találatai között és a közösségi médiában való megosztáskor. Alapértelmezés szerint az esemény címe kerül felhasználásra." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "Az ÁFA szám nem érvényesíthető. Kérjük, ellenőrizze a számot és próbálja újra." @@ -10534,19 +10600,19 @@ msgstr "Színház" msgid "Theme & Colors" msgstr "Téma és színek" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "Nincsenek elérhető termékek ehhez az eseményhez." -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "Nincsenek elérhető termékek ebben a kategóriában." -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "Ehhez az eseményhez nincsenek közelgő időpontok" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "Függőben lévő visszatérítés van. Kérjük, várja meg a befejezését, mielőtt újabb visszatérítést kérne." @@ -10578,7 +10644,7 @@ msgstr "Ezek a részletek csak erre az időpontra jelennek meg a résztvevő jeg msgid "These details will only be shown if the order is completed successfully." msgstr "Ezek a részletek csak akkor jelennek meg, ha a rendelés sikeresen befejeződik." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Ezek az adatok felülírnak minden meglévő helyszínt az érintett alkalmaknál, és megjelennek a résztvevők jegyein." @@ -10586,11 +10652,11 @@ msgstr "Ezek az adatok felülírnak minden meglévő helyszínt az érintett alk msgid "These settings apply only to copied embed code and won't be stored." msgstr "Ezek a beállítások csak a másolt beágyazási kódra vonatkoznak és nem lesznek mentve." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Ezek a sablonok alapértelmezettként lesznek használva a szervezet összes eseményéhez. Az egyes események felülírhatják ezeket a sablonokat saját egyedi verzióikkal." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Ezek a sablonok csak ennél az eseménynél írják felül a szervező alapértelmezéseit. Ha itt nincs egyedi sablon beállítva, a szervező sablonját használjuk helyette." @@ -10598,11 +10664,11 @@ msgstr "Ezek a sablonok csak ennél az eseménynél írják felül a szervező a msgid "Third" msgstr "Harmadik" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Ez az esemény minden megfelelő időpontjára érvényes, beleértve a jelenleg nem látható időpontokat is. A frissítés befejezése után az ezeken az időpontokon regisztrált résztvevők elérhetők lesznek az üzenetszerkesztőn keresztül." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Ennek a résztvevőnek van egy kifizetetlen megrendelése." @@ -10660,11 +10726,11 @@ msgstr "Ez az időpont lemondásra került. Még törölheti, hogy véglegesen e msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Ez az időpont a múltban van. Létrehozzuk, de nem jelenik meg a résztvevők számára a közelgő időpontok között." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Ez az időpont kifogyottként van megjelölve." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Ez az időpont már nem elérhető. Kérjük, válasszon másikat." @@ -10713,19 +10779,19 @@ msgstr "Ez az üzenet szerepelni fog az eseményről küldött összes e-mail l msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Ez az üzenet csak akkor jelenik meg, ha a megrendelés sikeresen befejeződött. A fizetésre váró megrendelések nem jelenítik meg ezt az üzenetet." -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Ez a név látható a végfelhasználók számára" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Ez az alkalom megtelt" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "Ez a megrendelés már ki lett fizetve." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "Ez a megrendelés már visszatérítésre került." @@ -10733,7 +10799,7 @@ msgstr "Ez a megrendelés már visszatérítésre került." msgid "This order has been cancelled." msgstr "Ez a megrendelés törölve lett." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "Ez a megrendelés lejárt. Kérjük, kezdje újra." @@ -10745,15 +10811,15 @@ msgstr "Ez a rendelés feldolgozás alatt áll." msgid "This order is complete." msgstr "Ez a megrendelés kész." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Ez a megrendelési oldal már nem elérhető." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "Ez a rendelés elhagyásra került. Bármikor kezdhet új rendelést." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "Ez a rendelés törölve lett. Bármikor kezdhet új rendelést." @@ -10785,7 +10851,7 @@ msgstr "Ez a termék kiemelten szerepel az esemény oldalán" msgid "This product is sold out" msgstr "Ez a termék elfogyott" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Ez a jelentés csak tájékoztató jellegű. Mindig konzultáljon adószakértővel, mielőtt ezeket az adatokat számviteli vagy adózási célokra használná. Kérjük, ellenőrizze a Stripe irányítópultjával, mivel a Hi.Events esetleg hiányos előzményadatokkal rendelkezik." @@ -10797,11 +10863,11 @@ msgstr "Ez a jelszó-visszaállító link érvénytelen vagy lejárt." msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Ez a jegy most lett beolvasva. Kérjük, várjon mielőtt újra beolvassa." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Ez a felhasználó nem aktív, mivel nem fogadta el a meghívóját." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Ez {loadedAffectedCount} időpontot érint." @@ -10913,6 +10979,10 @@ msgstr "Jegy ára" msgid "Ticket resent successfully" msgstr "Jegy sikeresen újraküldve" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "Az erre az eseményre szóló jegyértékesítés lezárult" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Idő" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Hátralévő idő:" @@ -10994,7 +11064,7 @@ msgstr "Felhasználások száma" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Időzóna" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "A korlátozások emeléséhez lépjen kapcsolatba velünk" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "Legjobb szervezők (Elmúlt 14 nap)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Összesen" @@ -11075,11 +11146,11 @@ msgstr "Összes bejegyzés" msgid "Total Fee" msgstr "Összesített díj" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Összes bruttó értékesítés" msgid "Total order amount" msgstr "Teljes megrendelési összeg" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "Összes visszatérített" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Összes visszatérített" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Kövesse nyomon a fióknövekedést és teljesítményt hozzárendelési forrás szerint" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Típus" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Írja be a \"törlés\" szót a megerősítéshez" @@ -11222,7 +11293,7 @@ msgstr "Nem sikerült kijelentkezni a résztvevőnek." msgid "Unable to create product. Please check the your details" msgstr "Nem sikerült létrehozni a terméket. Kérjük, ellenőrizze adatait." -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Nem sikerült létrehozni a terméket. Kérjük, ellenőrizze adatait." @@ -11246,7 +11317,7 @@ msgstr "Nem sikerült csatlakozni a várólistához" msgid "Unable to load attendee details." msgstr "A résztvevő adatai nem tölthetők be." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Nem sikerült betölteni a termékeket ehhez az időponthoz. Kérjük, próbálja újra." @@ -11284,7 +11355,7 @@ msgstr "Egyesült Államok" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Ismeretlen" @@ -11304,7 +11375,7 @@ msgstr "Ismeretlen résztvevő" msgid "Unlimited" msgstr "Korlátlan" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Korlátlanul elérhető" @@ -11316,12 +11387,12 @@ msgstr "Korlátlan felhasználás engedélyezett" msgid "Unnamed" msgstr "Névtelen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Névtelen helyszín" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Kifizetetlen megrendelés" @@ -11337,7 +11408,7 @@ msgstr "Nem megbízható" msgid "Upcoming" msgstr "Közelgő" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "Frissítés {0}" msgid "Update Affiliate" msgstr "Partner frissítése" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Kapacitás frissítése" @@ -11365,15 +11436,15 @@ msgstr "Esemény nevének és leírásának frissítése" msgid "Update event name, description and dates" msgstr "Eseménynév, leírás és dátumok frissítése" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Címke frissítése" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Helyszín frissítése" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Profil frissítése" @@ -11385,19 +11456,19 @@ msgstr "Frissítés: {subjectTitle} — ütemezési változások" msgid "Update: {subjectTitle} — session time changed" msgstr "Frissítés: {subjectTitle} — alkalom időpontja megváltozott" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "{count} időpont frissítve" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "{count} időpont kapacitása frissítve" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "{count} időpont címkéje frissítve" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Helyszín frissítve {count} alkalomhoz" @@ -11507,14 +11578,14 @@ msgstr "Felhasználókezelés" msgid "Users" msgstr "Felhasználók" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "A felhasználók módosíthatják e-mail címüket a <0>Profilbeállítások menüpontban." #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11526,13 +11597,13 @@ msgstr "UTM elemzés" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "ÁFA szám érvényesítése..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "ÁFA" @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "ÁFA-szám" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "ÁFA szám" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "Az ÁFA szám nem tartalmazhat szóközöket" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "Az ÁFA számnak 2 betűs országkóddal kell kezdődnie, amelyet 8-15 alfanumerikus karakter követ (pl. DE123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "ÁFA szám sikeresen érvényesítve" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "ÁFA szám érvényesítése sikertelen" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "ÁFA szám érvényesítése sikertelen. Kérjük, ellenőrizze az ÁFA számát." @@ -11581,12 +11652,12 @@ msgstr "ÁFA kulcs" msgid "VAT registered" msgstr "ÁFA-regisztrált" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "ÁFA beállítások sikeresen mentve" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "ÁFA beállítások mentve. Az ÁFA számot a háttérben érvényesítjük." @@ -11594,15 +11665,15 @@ msgstr "ÁFA beállítások mentve. Az ÁFA számot a háttérben érvényesítj msgid "VAT settings updated" msgstr "ÁFA-beállítások frissítve" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "ÁFA kezelés a platform díjaknál" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "ÁFA kezelés a platform díjaknál: EU ÁFA-s vállalkozások használhatják a fordított adózást (0% - ÁFA irányelv 2006/112/EK 196. cikke). Nem ÁFA-s vállalkozásoknál 23%-os ír ÁFA kerül felszámításra." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "ÁFA érvényesítési szolgáltatás átmenetileg nem elérhető" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "ÁFA: nem regisztrált" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "Helyszín neve" msgid "Verification code" msgstr "Ellenőrző kód" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "E-mail ellenőrzése" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Ellenőrizze e-mail címét" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "Ellenőrzés..." @@ -11655,8 +11735,7 @@ msgstr "Megtekintés" msgid "View All" msgstr "Összes megtekintése" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "{0} {1} adatainak megtekintése" msgid "View Event" msgstr "Esemény megtekintése" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Eseményoldal megtekintése" @@ -11729,8 +11808,8 @@ msgstr "Megtekintés a Google Térképen" msgid "View Order" msgstr "Rendelés megtekintése" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Rendelés részleteinek megtekintése" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "Várakozik" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "Fizetésre vár" @@ -11800,7 +11879,7 @@ msgstr "Várólista" msgid "Waitlist Enabled" msgstr "Várólista engedélyezve" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "A várólista-ajánlat lejárt" @@ -11808,7 +11887,7 @@ msgstr "A várólista-ajánlat lejárt" msgid "Waitlist triggered" msgstr "Várólista aktiválva" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Figyelmeztetés: Ez a rendszer alapértelmezett konfigurációja. A módosítások minden olyan fiókot érintenek, amelyhez nincs konkrét konfiguráció hozzárendelve." @@ -11844,7 +11923,7 @@ msgstr "Nem találtuk a keresett rendelést. A link lejárhatott, vagy a rendel msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "Nem találtuk a keresett jegyet. A link lejárhatott, vagy a jegy adatai megváltozhattak." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "Nem találtuk ezt a rendelést. Lehet, hogy el lett távolítva." @@ -11860,7 +11939,7 @@ msgstr "Most nem tudtuk elérni a Stripe-ot. Próbáld újra egy pillanat múlva msgid "We couldn't reorder the categories. Please try again." msgstr "Nem sikerült átrendezni a kategóriákat. Kérjük, próbálja újra." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Hiba történt az oldal betöltésekor. Kérjük, próbálja újra." @@ -11881,6 +11960,10 @@ msgstr "Javasolt méretek: 1950px x 650px, 3:1 arány, maximális fájlméret: 5 msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "Javasolt méretek: 400px x 400px, maximális fájlméret: 5MB." +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "Sütiket használunk, hogy jobban megértsük az oldal használatát, és javítsuk az Ön élményét." @@ -11889,7 +11972,7 @@ msgstr "Sütiket használunk, hogy jobban megértsük az oldal használatát, é msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "Nem sikerült megerősíteni a fizetését. Kérjük, próbálja újra, vagy lépjen kapcsolatba a támogatással." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "Több próbálkozás után sem tudtuk érvényesíteni az ÁFA számát. A háttérben folytatjuk a próbálkozást. Kérjük, nézzen vissza később." @@ -11897,16 +11980,16 @@ msgstr "Több próbálkozás után sem tudtuk érvényesíteni az ÁFA számát. msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "E-mailben értesítjük, ha hely szabadul fel a következőhöz: {productDisplayName}." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Mentés után megnyitunk egy üzenetszerkesztőt egy előre kitöltött sablonnal. Ön ellenőrzi és elküldi — automatikusan semmi nem kerül elküldésre." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "Erre az e-mail címre küldjük a jegyeit" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "Az ÁFA számot a háttérben érvényesítjük. Ha bármilyen probléma merül fel, értesítjük." @@ -12003,7 +12086,7 @@ msgstr "Üdv a fedélzeten! Kérjük, jelentkezzen be a folytatáshoz." msgid "Welcome back" msgstr "Üdvözöljük újra" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Üdv újra, {0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Wellness" msgid "What are Tiered Products?" msgstr "Mik azok a többszintű termékek?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "Mi az a kategória?" @@ -12143,6 +12226,10 @@ msgstr "Amikor a bejelentkezés lezárul" msgid "When check-in opens" msgstr "Amikor a bejelentkezés megnyílik" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "Ha engedélyezve van, számlák készülnek a jegyrendelésekről. A számlákat a rendelés visszaigazoló e-maillel együtt küldjük el. A résztvevők a rendelés visszaigazoló oldaláról is letölthetik számláikat." @@ -12155,7 +12242,7 @@ msgstr "Ha engedélyezve van, az új események lehetővé teszik a résztvevők msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "Ha engedélyezve van, az új események marketing opt-in jelölőnégyzetet jelenítenek meg a fizetés során. Ez eseményenként felülírható." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "Ha engedélyezve van, a Stripe Connect tranzakciókra nem számítanak fel alkalmazási díjakat. Használja olyan országokban, ahol az alkalmazási díjak nem támogatottak." @@ -12191,11 +12278,11 @@ msgstr "Widget előnézet" msgid "Widget Settings" msgstr "Widget beállítások" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "Dolgozik" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "év" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Év elejétől napjainkig" @@ -12247,11 +12334,11 @@ msgstr "év" msgid "Yes" msgstr "Igen" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Igen - Van érvényes EU ÁFA regisztrációs számom" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Igen, rendelés törlése" @@ -12267,7 +12354,7 @@ msgstr "E-mail címét <0>{0} címre módosítja." msgid "You are impersonating <0>{0} ({1})" msgstr "<0>{0} megszemélyesítése ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Részleges visszatérítést bocsát ki. A vásárló {0} {1} összeget kap vissza." @@ -12292,7 +12379,7 @@ msgstr "Ezt később egyes időpontoknál felülírhatja." msgid "You can still manually offer tickets if needed." msgstr "Szükség esetén továbbra is manuálisan ajánlhat fel jegyeket." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "Nem archiválhatja a fiókján lévő utolsó aktív szervezőt." @@ -12313,11 +12400,11 @@ msgstr "Nem törölheti az utolsó kategóriát." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "Nem törölheti ezt az árszintet, mert már eladtak termékeket ehhez a szinthez. Helyette elrejtheti." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "Nem szerkesztheti a fióktulajdonos szerepét vagy állapotát." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "Nem téríthet vissza manuálisan létrehozott megrendelést." @@ -12333,11 +12420,11 @@ msgstr "Ezt a meghívót már elfogadta. Kérjük, jelentkezzen be a folytatásh msgid "You have no pending email change." msgstr "Nincs függőben lévő e-mail cím módosítás." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "Elérte az üzenetküldési korlátot." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "Kifutott az időből a megrendelés befejezéséhez." @@ -12345,11 +12432,11 @@ msgstr "Kifutott az időből a megrendelés befejezéséhez." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Adók és díjak vannak hozzáadva egy ingyenes termékhez. Szeretné eltávolítani őket?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "El kell ismernie, hogy ez az e-mail nem promóciós." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Mentés előtt el kell ismernie a felelősségeit" @@ -12409,7 +12496,7 @@ msgstr "Szüksége lesz egy termékre, mielőtt létrehozhat egy kapacitás-hozz msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Legalább egy termékre szüksége lesz a kezdéshez. Ingyenes, fizetős, vagy hagyja, hogy a felhasználó döntse el, mennyit fizet." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Alkalmak időpontjait módosítja" @@ -12421,7 +12508,7 @@ msgstr "El fog menni ide: {0}!" msgid "You're on the waitlist!" msgstr "Felkerült a várólistára!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "Helyet ajánlottak neked!" @@ -12429,7 +12516,7 @@ msgstr "Helyet ajánlottak neked!" msgid "You've changed the session time" msgstr "Megváltoztatta az alkalom időpontját" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Fiókjának üzenetküldési korlátai vannak. A korlátozások emeléséhez lépjen kapcsolatba velünk" @@ -12457,11 +12544,11 @@ msgstr "Az Ön csodálatos weboldala 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "A bejelentkezési lista sikeresen létrehozva. Ossza meg az alábbi linket a bejelentkezési személyzettel." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "A jelenlegi rendelésed el fog veszni." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Az Ön adatai" @@ -12469,7 +12556,7 @@ msgstr "Az Ön adatai" msgid "Your Email" msgstr "Az Ön e-mail címe" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "E-mail cím módosítási kérelme a következőre: <0>{0} függőben. Kérjük, ellenőrizze e-mail címét a megerősítéshez." @@ -12497,7 +12584,7 @@ msgstr "Az Ön neve" msgid "Your new password must be at least 8 characters long." msgstr "Az új jelszónak legalább 8 karakter hosszúnak kell lennie." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Az Ön megrendelése" @@ -12509,7 +12596,7 @@ msgstr "A rendelés adatai frissültek. Megerősítő e-mailt küldtünk az új msgid "Your order has been cancelled" msgstr "Az Ön megrendelése törölve lett." -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "A rendelésed törlésre került." @@ -12534,7 +12621,7 @@ msgstr "Szervezői címe" msgid "Your password" msgstr "Az Ön jelszava" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Fizetése feldolgozás alatt áll." @@ -12542,11 +12629,11 @@ msgstr "Fizetése feldolgozás alatt áll." msgid "Your payment is protected with bank-level encryption" msgstr "A fizetése banki szintű titkosítással védett" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Fizetése sikertelen volt, kérjük, próbálja újra." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Fizetése sikertelen volt. Kérjük, próbálja újra." @@ -12554,7 +12641,7 @@ msgstr "Fizetése sikertelen volt. Kérjük, próbálja újra." msgid "Your Plan" msgstr "Az Ön csomagja" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Visszatérítése feldolgozás alatt áll." @@ -12570,19 +12657,19 @@ msgstr "Jegyéhez:" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "A jegye továbbra is érvényes — nincs szükség teendőre, hacsak az új időpont nem felel meg Önnek. Bármilyen kérdés esetén kérjük, válaszoljon erre az e-mailre." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "A jegyei megerősítésre kerültek." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "Az ÁFA száma sorban áll az érvényesítésre" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "Az ÁFA száma mentéskor lesz érvényesítve" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "A várólista-ajánlata lejárt, és nem tudtuk teljesíteni a rendelését. Kérjük, iratkozzon fel újra a várólistára, hogy értesítést kapjon, amikor újabb helyek szabadulnak fel." @@ -12590,19 +12677,19 @@ msgstr "A várólista-ajánlata lejárt, és nem tudtuk teljesíteni a rendelés msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "Irányítószám / Postai irányítószám" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "Irányítószám vagy postai irányítószám" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "Irányítószám vagy postai irányítószám" diff --git a/frontend/src/locales/it.js b/frontend/src/locales/it.js index 11419cc50c..cc2c53e702 100644 --- a/frontend/src/locales/it.js +++ b/frontend/src/locales/it.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Non c\\\\'è ancora nulla da mostrare'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>uscita registrata con successo\"],\"KMgp2+\":[[\"0\"],\" disponibili\"],\"Pmr5xp\":[[\"0\"],\" creato con successo\"],\"FImCSc\":[[\"0\"],\" aggiornato con successo\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" giorni, \",[\"hours\"],\" ore, \",[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"f3RdEk\":[[\"hours\"],\" ore, \",[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"fyE7Au\":[[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"NlQ0cx\":[\"Primo evento di \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://il-tuo-sito-web.com\",\"qnSLLW\":\"<0>Inserisci il prezzo escluse tasse e commissioni.<1>Tasse e commissioni possono essere aggiunte qui sotto.\",\"ZjMs6e\":\"<0>Il numero di prodotti disponibili per questo prodotto<1>Questo valore può essere sovrascritto se ci sono <2>Limiti di Capacità associati a questo prodotto.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minuti e 0 secondi\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Via Roma 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"00100\",\"efAM7X\":\"Un campo data. Perfetto per chiedere una data di nascita ecc.\",\"6euFZ/\":[\"Un \",[\"type\"],\" predefinito viene applicato automaticamente a tutti i nuovi prodotti. Puoi sovrascrivere questa impostazione per ogni singolo prodotto.\"],\"SMUbbQ\":\"Un menu a tendina consente una sola selezione\",\"qv4bfj\":\"Una commissione, come una commissione di prenotazione o una commissione di servizio\",\"POT0K/\":\"Un importo fisso per prodotto. Es. $0,50 per prodotto\",\"f4vJgj\":\"Un campo di testo a più righe\",\"OIPtI5\":\"Una percentuale del prezzo del prodotto. Es. 3,5% del prezzo del prodotto\",\"ZthcdI\":\"Un codice promozionale senza sconto può essere utilizzato per rivelare prodotti nascosti.\",\"AG/qmQ\":\"Un'opzione Radio ha più opzioni ma solo una può essere selezionata.\",\"h179TP\":\"Una breve descrizione dell'evento che verrà visualizzata nei risultati dei motori di ricerca e quando condiviso sui social media. Per impostazione predefinita, verrà utilizzata la descrizione dell'evento\",\"WKMnh4\":\"Un campo di testo a singola riga\",\"BHZbFy\":\"Una singola domanda per ordine. Es. Qual è il tuo indirizzo di spedizione?\",\"Fuh+dI\":\"Una singola domanda per prodotto. Es. Qual è la tua taglia di maglietta?\",\"RlJmQg\":\"Un'imposta standard, come IVA o GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Accetta bonifici bancari, assegni o altri metodi di pagamento offline\",\"hrvLf4\":\"Accetta pagamenti con carta di credito tramite Stripe\",\"bfXQ+N\":\"Accetta Invito\",\"AeXO77\":\"Account\",\"lkNdiH\":\"Nome Account\",\"Puv7+X\":\"Impostazioni Account\",\"OmylXO\":\"Account aggiornato con successo\",\"7L01XJ\":\"Azioni\",\"FQBaXG\":\"Attiva\",\"5T2HxQ\":\"Data di attivazione\",\"F6pfE9\":\"Attivo\",\"/PN1DA\":\"Aggiungi una descrizione per questa lista di check-in\",\"0/vPdA\":\"Aggiungi eventuali note sul partecipante. Queste non saranno visibili al partecipante.\",\"Or1CPR\":\"Aggiungi eventuali note sul partecipante...\",\"l3sZO1\":\"Aggiungi eventuali note sull'ordine. Queste non saranno visibili al cliente.\",\"xMekgu\":\"Aggiungi eventuali note sull'ordine...\",\"PGPGsL\":\"Aggiungi descrizione\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Aggiungi istruzioni per i pagamenti offline (es. dettagli del bonifico bancario, dove inviare gli assegni, scadenze di pagamento)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Aggiungi Nuovo\",\"TZxnm8\":\"Aggiungi Opzione\",\"24l4x6\":\"Aggiungi Prodotto\",\"8q0EdE\":\"Aggiungi Prodotto alla Categoria\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Aggiungi Tassa o Commissione\",\"goOKRY\":\"Aggiungi livello\",\"oZW/gT\":\"Aggiungi al Calendario\",\"pn5qSs\":\"Informazioni Aggiuntive\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Indirizzo\",\"NY/x1b\":\"Indirizzo riga 1\",\"POdIrN\":\"Indirizzo Riga 1\",\"cormHa\":\"Indirizzo riga 2\",\"gwk5gg\":\"Indirizzo Riga 2\",\"U3pytU\":\"Amministratore\",\"HLDaLi\":\"Gli amministratori hanno accesso completo agli eventi e alle impostazioni dell'account.\",\"W7AfhC\":\"Tutti i partecipanti di questo evento\",\"cde2hc\":\"Tutti i Prodotti\",\"5CQ+r0\":\"Consenti ai partecipanti associati a ordini non pagati di effettuare il check-in\",\"ipYKgM\":\"Consenti l'indicizzazione dei motori di ricerca\",\"LRbt6D\":\"Consenti ai motori di ricerca di indicizzare questo evento\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Fantastico, Evento, Parole chiave...\",\"hehnjM\":\"Importo\",\"R2O9Rg\":[\"Importo pagato (\",[\"0\"],\")\"],\"V7MwOy\":\"Si è verificato un errore durante il caricamento della pagina\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Si è verificato un errore imprevisto.\",\"byKna+\":\"Si è verificato un errore imprevisto. Per favore riprova.\",\"ubdMGz\":\"Qualsiasi richiesta dai possessori di prodotti verrà inviata a questo indirizzo email. Questo sarà anche utilizzato come indirizzo \\\"rispondi a\\\" per tutte le email inviate da questo evento\",\"aAIQg2\":\"Aspetto\",\"Ym1gnK\":\"applicato\",\"sy6fss\":[\"Si applica a \",[\"0\"],\" prodotti\"],\"kadJKg\":\"Si applica a 1 prodotto\",\"DB8zMK\":\"Applica\",\"GctSSm\":\"Applica Codice Promozionale\",\"ARBThj\":[\"Applica questo \",[\"type\"],\" a tutti i nuovi prodotti\"],\"S0ctOE\":\"Archivia evento\",\"TdfEV7\":\"Archiviati\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Sei sicuro di voler attivare questo partecipante?\",\"TvkW9+\":\"Sei sicuro di voler archiviare questo evento?\",\"/CV2x+\":\"Sei sicuro di voler cancellare questo partecipante? Questo annullerà il loro biglietto\",\"YgRSEE\":\"Sei sicuro di voler eliminare questo codice promozionale?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Sei sicuro di voler rendere questo evento una bozza? Questo renderà l'evento invisibile al pubblico\",\"mEHQ8I\":\"Sei sicuro di voler rendere questo evento pubblico? Questo renderà l'evento visibile al pubblico\",\"s4JozW\":\"Sei sicuro di voler ripristinare questo evento? Verrà ripristinato come bozza.\",\"vJuISq\":\"Sei sicuro di voler eliminare questa Assegnazione di Capacità?\",\"baHeCz\":\"Sei sicuro di voler eliminare questa Lista di Check-In?\",\"LBLOqH\":\"Chiedi una volta per ordine\",\"wu98dY\":\"Chiedi una volta per prodotto\",\"ss9PbX\":\"Partecipante\",\"m0CFV2\":\"Dettagli Partecipante\",\"QKim6l\":\"Partecipante non trovato\",\"R5IT/I\":\"Note Partecipante\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Biglietto Partecipante\",\"9SZT4E\":\"Partecipanti\",\"iPBfZP\":\"Partecipanti Registrati\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Ridimensionamento automatico\",\"vZ5qKF\":\"Ridimensiona automaticamente l'altezza del widget in base al contenuto. Quando disabilitato, il widget riempirà l'altezza del contenitore.\",\"4lVaWA\":\"In attesa di pagamento offline\",\"2rHwhl\":\"In Attesa di Pagamento Offline\",\"3wF4Q/\":\"In attesa di pagamento\",\"ioG+xt\":\"In Attesa di Pagamento\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Srl.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Torna alla pagina dell'evento\",\"VCoEm+\":\"Torna al login\",\"k1bLf+\":\"Colore di sfondo\",\"I7xjqg\":\"Tipo di Sfondo\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Indirizzo di Fatturazione\",\"/xC/im\":\"Impostazioni di Fatturazione\",\"rp/zaT\":\"Portoghese Brasiliano\",\"whqocw\":\"Registrandoti accetti i nostri <0>Termini di Servizio e la <1>Privacy Policy.\",\"bcCn6r\":\"Tipo di Calcolo\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Annulla\",\"Gjt/py\":\"Annulla cambio email\",\"tVJk4q\":\"Annulla ordine\",\"Os6n2a\":\"Annulla Ordine\",\"Mz7Ygx\":[\"Annulla Ordine \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Annullato\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacità\",\"V6Q5RZ\":\"Assegnazione di Capacità creata con successo\",\"k5p8dz\":\"Assegnazione di Capacità eliminata con successo\",\"nDBs04\":\"Gestione capacità\",\"ddha3c\":\"Le categorie ti permettono di raggruppare i prodotti. Ad esempio, potresti avere una categoria per \\\"Biglietti\\\" e un'altra per \\\"Merchandise\\\".\",\"iS0wAT\":\"Le categorie ti aiutano a organizzare i tuoi prodotti. Questo titolo verrà visualizzato sulla pagina pubblica dell'evento.\",\"eorM7z\":\"Categorie riordinate con successo.\",\"3EXqwa\":\"Categoria Creata con Successo\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Cambia password\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Registra ingresso di \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Check-in e contrassegna l'ordine come pagato\",\"QYLpB4\":\"Solo check-in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Dai un'occhiata a questo evento!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Lista di Registrazione eliminata con successo\",\"+hBhWk\":\"La lista di registrazione è scaduta\",\"mBsBHq\":\"La lista di registrazione non è attiva\",\"vPqpQG\":\"Lista di registrazione non trovata\",\"tejfAy\":\"Liste di Registrazione\",\"hD1ocH\":\"URL di Registrazione copiato negli appunti\",\"CNafaC\":\"Le opzioni di casella di controllo consentono selezioni multiple\",\"SpabVf\":\"Caselle di controllo\",\"CRu4lK\":\"Check-in effettuato\",\"znIg+z\":\"Pagamento\",\"1WnhCL\":\"Impostazioni di Pagamento\",\"6imsQS\":\"Cinese (Semplificato)\",\"JjkX4+\":\"Scegli un colore per lo sfondo\",\"/Jizh9\":\"Scegli un account\",\"3wV73y\":\"Città\",\"FG98gC\":\"Cancella Testo di Ricerca\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Clicca per copiare\",\"yz7wBu\":\"Chiudi\",\"62Ciis\":\"Chiudi barra laterale\",\"EWPtMO\":\"Codice\",\"ercTDX\":\"Il codice deve essere compreso tra 3 e 50 caratteri\",\"oqr9HB\":\"Comprimi questo prodotto quando la pagina dell'evento viene caricata inizialmente\",\"jZlrte\":\"Colore\",\"Vd+LC3\":\"Il colore deve essere un codice colore esadecimale valido. Esempio: #ffffff\",\"1HfW/F\":\"Colori\",\"VZeG/A\":\"Prossimamente\",\"yPI7n9\":\"Parole chiave separate da virgole che descrivono l'evento. Queste saranno utilizzate dai motori di ricerca per aiutare a categorizzare e indicizzare l'evento\",\"NPZqBL\":\"Completa Ordine\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Completa Pagamento\",\"qqWcBV\":\"Completato\",\"6HK5Ct\":\"Ordini completati\",\"NWVRtl\":\"Ordini Completati\",\"DwF9eH\":\"Codice componente\",\"Tf55h7\":\"Sconto Configurato\",\"7VpPHA\":\"Conferma\",\"ZaEJZM\":\"Conferma Cambio Email\",\"yjkELF\":\"Conferma Nuova Password\",\"xnWESi\":\"Conferma password\",\"p2/GCq\":\"Conferma Password\",\"wnDgGj\":\"Conferma indirizzo email in corso...\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connetti con Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Dettagli di Connessione\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continua\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Testo pulsante Continua\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copiato\",\"T5rdis\":\"copiato negli appunti\",\"he3ygx\":\"Copia\",\"r2B2P8\":\"Copia URL di Check-In\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copia Link\",\"E6nRW7\":\"Copia URL\",\"JNCzPW\":\"Paese\",\"IF7RiR\":\"Copertina\",\"hYgDIe\":\"Crea\",\"b9XOHo\":[\"Crea \",[\"0\"]],\"k9RiLi\":\"Crea un Prodotto\",\"6kdXbW\":\"Crea un Codice Promozionale\",\"n5pRtF\":\"Crea un Biglietto\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"crea un organizzatore\",\"ipP6Ue\":\"Crea Partecipante\",\"VwdqVy\":\"Crea Assegnazione di Capacità\",\"EwoMtl\":\"Crea categoria\",\"XletzW\":\"Crea Categoria\",\"WVbTwK\":\"Crea Lista di Check-In\",\"uN355O\":\"Crea Evento\",\"BOqY23\":\"Crea nuovo\",\"kpJAeS\":\"Crea Organizzatore\",\"a0EjD+\":\"Crea Prodotto\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Crea Codice Promozionale\",\"B3Mkdt\":\"Crea Domanda\",\"UKfi21\":\"Crea Tassa o Commissione\",\"d+F6q9\":\"Creato\",\"Q2lUR2\":\"Valuta\",\"DCKkhU\":\"Password Attuale\",\"uIElGP\":\"URL Mappe personalizzate\",\"UEqXyt\":\"Intervallo Personalizzato\",\"876pfE\":\"Cliente\",\"QOg2Sf\":\"Personalizza le impostazioni di email e notifiche per questo evento\",\"Y9Z/vP\":\"Personalizza i messaggi della homepage dell'evento e del checkout\",\"2E2O5H\":\"Personalizza le impostazioni varie per questo evento\",\"iJhSxe\":\"Personalizza le impostazioni SEO per questo evento\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Zona pericolosa\",\"ZQKLI1\":\"Zona pericolosa\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Data\",\"JvUngl\":\"Data e ora\",\"JJhRbH\":\"Capacità primo giorno\",\"cnGeoo\":\"Elimina\",\"jRJZxD\":\"Elimina Capacità\",\"VskHIx\":\"Elimina categoria\",\"Qrc8RZ\":\"Elimina Lista Check-In\",\"WHf154\":\"Elimina codice\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Descrizione\",\"YC3oXa\":\"Descrizione per il personale di check-in\",\"URmyfc\":\"Dettagli\",\"1lRT3t\":\"Disabilitando questa capacità verranno monitorate le vendite ma non verranno interrotte quando viene raggiunto il limite\",\"H6Ma8Z\":\"Sconto\",\"ypJ62C\":\"Sconto %\",\"3LtiBI\":[\"Sconto in \",[\"0\"]],\"C8JLas\":\"Tipo di Sconto\",\"1QfxQT\":\"Ignora\",\"DZlSLn\":\"Etichetta Documento\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donazione / Prodotto a offerta libera\",\"OvNbls\":\"Scarica .ics\",\"kodV18\":\"Scarica CSV\",\"CELKku\":\"Scarica fattura\",\"LQrXcu\":\"Scarica Fattura\",\"QIodqd\":\"Scarica Codice QR\",\"yhjU+j\":\"Scaricamento Fattura in corso\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Selezione a tendina\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplica evento\",\"3ogkAk\":\"Duplica Evento\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Opzioni di Duplicazione\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Prevendita\",\"ePK91l\":\"Modifica\",\"N6j2JH\":[\"Modifica \",[\"0\"]],\"kBkYSa\":\"Modifica Capacità\",\"oHE9JT\":\"Modifica Assegnazione di Capacità\",\"j1Jl7s\":\"Modifica categoria\",\"FU1gvP\":\"Modifica Lista di Check-In\",\"iFgaVN\":\"Modifica Codice\",\"jrBSO1\":\"Modifica Organizzatore\",\"tdD/QN\":\"Modifica Prodotto\",\"n143Tq\":\"Modifica Categoria Prodotto\",\"9BdS63\":\"Modifica Codice Promozionale\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Modifica Domanda\",\"poTr35\":\"Modifica utente\",\"GTOcxw\":\"Modifica Utente\",\"pqFrv2\":\"es. 2.50 per $2.50\",\"3yiej1\":\"es. 23.5 per 23.5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Impostazioni Email e Notifiche\",\"ATGYL1\":\"Indirizzo email\",\"hzKQCy\":\"Indirizzo Email\",\"HqP6Qf\":\"Modifica email annullata con successo\",\"mISwW1\":\"Modifica email in attesa\",\"APuxIE\":\"Conferma email inviata nuovamente\",\"YaCgdO\":\"Conferma email inviata nuovamente con successo\",\"jyt+cx\":\"Messaggio piè di pagina email\",\"I6F3cp\":\"Email non verificata\",\"NTZ/NX\":\"Codice di incorporamento\",\"4rnJq4\":\"Script di incorporamento\",\"8oPbg1\":\"Abilita Fatturazione\",\"j6w7d/\":\"Abilita questa capacità per interrompere le vendite dei prodotti quando viene raggiunto il limite\",\"VFv2ZC\":\"Data di fine\",\"237hSL\":\"Terminato\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Inglese\",\"MhVoma\":\"Inserisci un importo escluse tasse e commissioni.\",\"SlfejT\":\"Errore\",\"3Z223G\":\"Errore durante la conferma dell'indirizzo email\",\"a6gga1\":\"Errore durante la conferma della modifica email\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evento\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Data dell'Evento\",\"0Zptey\":\"Impostazioni Predefinite Evento\",\"QcCPs8\":\"Dettagli Evento\",\"6fuA9p\":\"Evento duplicato con successo\",\"AEuj2m\":\"Homepage Evento\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Dettagli della sede e della location dell'evento\",\"OopDbA\":\"Event page\",\"4/If97\":\"Aggiornamento stato evento fallito. Riprova più tardi\",\"btxLWj\":\"Stato evento aggiornato\",\"nMU2d3\":\"URL dell'evento\",\"tst44n\":\"Eventi\",\"sZg7s1\":\"Data di scadenza\",\"KnN1Tu\":\"Scade\",\"uaSvqt\":\"Data di Scadenza\",\"GS+Mus\":\"Esporta\",\"9xAp/j\":\"Impossibile annullare il partecipante\",\"ZpieFv\":\"Impossibile annullare l'ordine\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Impossibile scaricare la fattura. Riprova.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Impossibile caricare la Lista di Check-In\",\"ZQ15eN\":\"Impossibile reinviare l'email del biglietto\",\"ejXy+D\":\"Impossibile ordinare i prodotti\",\"PLUB/s\":\"Commissione\",\"/mfICu\":\"Commissioni\",\"LyFC7X\":\"Filtra Ordini\",\"cSev+j\":\"Filtri\",\"CVw2MU\":[\"Filtri (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Primo Numero Fattura\",\"V1EGGU\":\"Nome\",\"kODvZJ\":\"Nome\",\"S+tm06\":\"Il nome deve essere compreso tra 1 e 50 caratteri\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Primo Utilizzo\",\"TpqW74\":\"Fisso\",\"irpUxR\":\"Importo fisso\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Password dimenticata?\",\"2POOFK\":\"Gratuito\",\"P/OAYJ\":\"Prodotto Gratuito\",\"vAbVy9\":\"Prodotto gratuito, nessuna informazione di pagamento richiesta\",\"nLC6tu\":\"Francese\",\"Weq9zb\":\"Generale\",\"DDcvSo\":\"Tedesco\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Torna al profilo\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Calendar\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Vendite lorde\",\"yRg26W\":\"Vendite lorde\",\"R4r4XO\":\"Ospiti\",\"26pGvx\":\"Hai un codice promozionale?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Ecco un esempio di come puoi usare il componente nella tua applicazione.\",\"Y1SSqh\":\"Ecco il componente React che puoi usare per incorporare il widget nella tua applicazione.\",\"QuhVpV\":[\"Ciao \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Nascosto dalla vista pubblica\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Le domande nascoste sono visibili solo all'organizzatore dell'evento e non al cliente.\",\"vLyv1R\":\"Nascondi\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Nascondi prodotto dopo la data di fine vendita\",\"06s3w3\":\"Nascondi prodotto prima della data di inizio vendita\",\"axVMjA\":\"Nascondi prodotto a meno che l'utente non abbia un codice promozionale applicabile\",\"ySQGHV\":\"Nascondi prodotto quando esaurito\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Nascondi questo prodotto ai clienti\",\"Da29Y6\":\"Nascondi questa domanda\",\"fvDQhr\":\"Nascondi questo livello agli utenti\",\"lNipG+\":\"Nascondere un prodotto impedirà agli utenti di vederlo sulla pagina dell'evento.\",\"ZOBwQn\":\"Design Homepage\",\"PRuBTd\":\"Designer homepage\",\"YjVNGZ\":\"Anteprima Homepage\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Quanti minuti ha il cliente per completare il proprio ordine. Consigliamo almeno 15 minuti\",\"ySxKZe\":\"Quante volte può essere utilizzato questo codice?\",\"dZsDbK\":[\"Limite di caratteri HTML superato: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Accetto i <0>termini e condizioni\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Se abilitato, il personale di check-in può sia segnare i partecipanti come registrati sia segnare l'ordine come pagato e registrare i partecipanti. Se disabilitato, i partecipanti associati a ordini non pagati non possono essere registrati.\",\"muXhGi\":\"Se abilitato, l'organizzatore riceverà una notifica via email quando viene effettuato un nuovo ordine\",\"6fLyj/\":\"Se non hai richiesto questa modifica, cambia immediatamente la tua password.\",\"n/ZDCz\":\"Immagine eliminata con successo\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Immagine caricata con successo\",\"VyUuZb\":\"URL Immagine\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inattivo\",\"T0K0yl\":\"Gli utenti inattivi non possono accedere.\",\"kO44sp\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno mostrati nella pagina di riepilogo dell'ordine e nella pagina del biglietto del partecipante.\",\"FlQKnG\":\"Includi tasse e commissioni nel prezzo\",\"Vi+BiW\":[\"Include \",[\"0\"],\" prodotti\"],\"lpm0+y\":\"Include 1 prodotto\",\"UiAk5P\":\"Inserisci Immagine\",\"OyLdaz\":\"Invito reinviato!\",\"HE6KcK\":\"Invito revocato!\",\"SQKPvQ\":\"Invita Utente\",\"bKOYkd\":\"Fattura scaricata con successo\",\"alD1+n\":\"Note Fattura\",\"kOtCs2\":\"Numerazione Fattura\",\"UZ2GSZ\":\"Impostazioni Fattura\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Articolo\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etichetta\",\"vXIe7J\":\"Lingua\",\"2LMsOq\":\"Ultimi 12 mesi\",\"vfe90m\":\"Ultimi 14 giorni\",\"aK4uBd\":\"Ultime 24 ore\",\"uq2BmQ\":\"Ultimi 30 giorni\",\"bB6Ram\":\"Ultime 48 ore\",\"VlnB7s\":\"Ultimi 6 mesi\",\"ct2SYD\":\"Ultimi 7 giorni\",\"XgOuA7\":\"Ultimi 90 giorni\",\"I3yitW\":\"Ultimo accesso\",\"1ZaQUH\":\"Cognome\",\"UXBCwc\":\"Cognome\",\"tKCBU0\":\"Ultimo Utilizzo\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Lascia vuoto per utilizzare la parola predefinita \\\"Fattura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Caricamento...\",\"wJijgU\":\"Luogo\",\"sQia9P\":\"Accedi\",\"zUDyah\":\"Accesso in corso\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Esci\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Rendi obbligatorio l'indirizzo di fatturazione durante il checkout\",\"MU3ijv\":\"Rendi obbligatoria questa domanda\",\"wckWOP\":\"Gestisci\",\"onpJrA\":\"Gestisci partecipante\",\"n4SpU5\":\"Gestisci evento\",\"WVgSTy\":\"Gestisci ordine\",\"1MAvUY\":\"Gestisci le impostazioni di pagamento e fatturazione per questo evento.\",\"cQrNR3\":\"Gestisci Profilo\",\"AtXtSw\":\"Gestisci tasse e commissioni che possono essere applicate ai tuoi prodotti\",\"ophZVW\":\"Gestisci biglietti\",\"DdHfeW\":\"Gestisci i dettagli del tuo account e le impostazioni predefinite\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Gestisci i tuoi utenti e le loro autorizzazioni\",\"1m+YT2\":\"Le domande obbligatorie devono essere risposte prima che il cliente possa procedere al checkout.\",\"Dim4LO\":\"Aggiungi manualmente un Partecipante\",\"e4KdjJ\":\"Aggiungi Manualmente Partecipante\",\"vFjEnF\":\"Segna come pagato\",\"g9dPPQ\":\"Massimo Per Ordine\",\"l5OcwO\":\"Messaggio al partecipante\",\"Gv5AMu\":\"Messaggio ai Partecipanti\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Messaggio all'acquirente\",\"tNZzFb\":\"Contenuto del messaggio\",\"lYDV/s\":\"Invia messaggio ai singoli partecipanti\",\"V7DYWd\":\"Messaggio Inviato\",\"t7TeQU\":\"Messaggi\",\"xFRMlO\":\"Minimo Per Ordine\",\"QYcUEf\":\"Prezzo Minimo\",\"RDie0n\":\"Varie\",\"mYLhkl\":\"Impostazioni Varie\",\"KYveV8\":\"Casella di testo multilinea\",\"VD0iA7\":\"Opzioni di prezzo multiple. Perfetto per prodotti early bird ecc.\",\"/bhMdO\":\"La mia fantastica descrizione dell'evento...\",\"vX8/tc\":\"Il mio fantastico titolo dell'evento...\",\"hKtWk2\":\"Il Mio Profilo\",\"fj5byd\":\"N/D\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nome\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Vai al Partecipante\",\"qqeAJM\":\"Mai\",\"7vhWI8\":\"Nuova Password\",\"1UzENP\":\"No\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Nessun evento archiviato da mostrare.\",\"q2LEDV\":\"Nessun partecipante trovato per questo ordine.\",\"zlHa5R\":\"Nessun partecipante è stato aggiunto a questo ordine.\",\"Wjz5KP\":\"Nessun Partecipante da mostrare\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Nessuna Assegnazione di Capacità\",\"a/gMx2\":\"Nessuna Lista di Check-In\",\"tMFDem\":\"Nessun dato disponibile\",\"6Z/F61\":\"Nessun dato da mostrare. Seleziona un intervallo di date\",\"fFeCKc\":\"Nessuno Sconto\",\"HFucK5\":\"Nessun evento terminato da mostrare.\",\"yAlJXG\":\"Nessun evento da mostrare\",\"GqvPcv\":\"Nessun filtro disponibile\",\"KPWxKD\":\"Nessun messaggio da mostrare\",\"J2LkP8\":\"Nessun ordine da mostrare\",\"RBXXtB\":\"Nessun metodo di pagamento è attualmente disponibile. Contatta l'organizzatore dell'evento per assistenza.\",\"ZWEfBE\":\"Nessun Pagamento Richiesto\",\"ZPoHOn\":\"Nessun prodotto associato a questo partecipante.\",\"Ya1JhR\":\"Nessun prodotto disponibile in questa categoria.\",\"FTfObB\":\"Ancora Nessun Prodotto\",\"+Y976X\":\"Nessun Codice Promozionale da mostrare\",\"MAavyl\":\"Nessuna domanda risposta da questo partecipante.\",\"SnlQeq\":\"Nessuna domanda è stata posta per questo ordine.\",\"Ev2r9A\":\"Nessun risultato\",\"gk5uwN\":\"Nessun Risultato di Ricerca\",\"RHyZUL\":\"Nessun risultato di ricerca.\",\"RY2eP1\":\"Nessuna Tassa o Commissione è stata aggiunta.\",\"EdQY6l\":\"Nessuno\",\"OJx3wK\":\"Non disponibile\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Note\",\"jtrY3S\":\"Ancora niente da mostrare\",\"hFwWnI\":\"Impostazioni Notifiche\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notifica all'organizzatore i nuovi ordini\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Numero di giorni consentiti per il pagamento (lasciare vuoto per omettere i termini di pagamento dalle fatture)\",\"n86jmj\":\"Prefisso Numero\",\"mwe+2z\":\"Gli ordini offline non sono riflessi nelle statistiche dell'evento finché l'ordine non viene contrassegnato come pagato.\",\"dWBrJX\":\"Pagamento offline fallito. Riprova o contatta l'organizzatore dell'evento.\",\"fcnqjw\":\"Istruzioni di Pagamento Offline\",\"+eZ7dp\":\"Pagamenti Offline\",\"ojDQlR\":\"Informazioni sui Pagamenti Offline\",\"u5oO/W\":\"Impostazioni Pagamenti Offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"In Vendita\",\"Ug4SfW\":\"Una volta creato un evento, lo vedrai qui.\",\"ZxnK5C\":\"Una volta che inizi a raccogliere dati, li vedrai qui.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"In Corso\",\"z+nuVJ\":\"Evento online\",\"WKHW0N\":\"Dettagli Evento Online\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Apri Pagina di Check-In\",\"OdnLE4\":\"Apri barra laterale\",\"ZZEYpT\":[\"Opzione \",[\"i\"]],\"oPknTP\":\"Informazioni aggiuntive opzionali da visualizzare su tutte le fatture (ad es. termini di pagamento, penali per ritardo, politica di reso)\",\"OrXJBY\":\"Prefisso opzionale per i numeri di fattura (ad es., FATT-)\",\"0zpgxV\":\"Opzioni\",\"BzEFor\":\"o\",\"UYUgdb\":\"Ordine\",\"mm+eaX\":\"Ordine n.\",\"B3gPuX\":\"Ordine Annullato\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Data Ordine\",\"Tol4BF\":\"Dettagli Ordine\",\"WbImlQ\":\"L'ordine è stato annullato e il proprietario dell'ordine è stato avvisato.\",\"nAn4Oe\":\"Ordine contrassegnato come pagato\",\"uzEfRz\":\"Note Ordine\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Riferimento Ordine\",\"acIJ41\":\"Stato Ordine\",\"GX6dZv\":\"Riepilogo Ordine\",\"tDTq0D\":\"Timeout ordine\",\"1h+RBg\":\"Ordini\",\"3y+V4p\":\"Indirizzo Organizzazione\",\"GVcaW6\":\"Dettagli Organizzazione\",\"nfnm9D\":\"Nome Organizzazione\",\"G5RhpL\":\"Organizzatore\",\"mYygCM\":\"L'organizzatore è obbligatorio\",\"Pa6G7v\":\"Nome Organizzatore\",\"l894xP\":\"Gli organizzatori possono gestire solo eventi e prodotti. Non possono gestire utenti, impostazioni dell'account o informazioni di fatturazione.\",\"fdjq4c\":\"Spaziatura interna\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Pagina non trovata\",\"QbrUIo\":\"Visualizzazioni pagina\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"pagato\",\"HVW65c\":\"Prodotto a Pagamento\",\"ZfxaB4\":\"Parzialmente Rimborsato\",\"8ZsakT\":\"Password\",\"TUJAyx\":\"La password deve essere di almeno 8 caratteri\",\"vwGkYB\":\"La password deve essere di almeno 8 caratteri\",\"BLTZ42\":\"Password reimpostata con successo. Accedi con la tua nuova password.\",\"f7SUun\":\"Le password non sono uguali\",\"aEDp5C\":\"Incolla questo dove vuoi che appaia il widget.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Pagamento\",\"Lg+ewC\":\"Pagamento e Fatturazione\",\"DZjk8u\":\"Impostazioni Pagamento e Fatturazione\",\"lflimf\":\"Periodo di Scadenza Pagamento\",\"JhtZAK\":\"Pagamento Fallito\",\"JEdsvQ\":\"Istruzioni di Pagamento\",\"bLB3MJ\":\"Metodi di Pagamento\",\"QzmQBG\":\"Fornitore di pagamento\",\"lsxOPC\":\"Pagamento Ricevuto\",\"wJTzyi\":\"Stato Pagamento\",\"xgav5v\":\"Pagamento riuscito!\",\"R29lO5\":\"Termini di Pagamento\",\"/roQKz\":\"Percentuale\",\"vPJ1FI\":\"Importo Percentuale\",\"xdA9ud\":\"Inserisci questo nel del tuo sito web.\",\"blK94r\":\"Aggiungi almeno un'opzione\",\"FJ9Yat\":\"Verifica che le informazioni fornite siano corrette\",\"TkQVup\":\"Controlla la tua email e password e riprova\",\"sMiGXD\":\"Verifica che la tua email sia valida\",\"Ajavq0\":\"Controlla la tua email per confermare il tuo indirizzo email\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Continua nella nuova scheda\",\"hcX103\":\"Crea un prodotto\",\"cdR8d6\":\"Crea un biglietto\",\"x2mjl4\":\"Inserisci un URL valido che punti a un'immagine.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Nota Bene\",\"C63rRe\":\"Torna alla pagina dell'evento per ricominciare.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Seleziona almeno un prodotto\",\"igBrCH\":\"Verifica il tuo indirizzo email per accedere a tutte le funzionalità\",\"/IzmnP\":\"Attendi mentre prepariamo la tua fattura...\",\"MOERNx\":\"Portoghese\",\"qCJyMx\":\"Messaggio post checkout\",\"g2UNkE\":\"Offerto da\",\"Rs7IQv\":\"Messaggio pre checkout\",\"rdUucN\":\"Anteprima\",\"a7u1N9\":\"Prezzo\",\"CmoB9j\":\"Modalità visualizzazione prezzo\",\"BI7D9d\":\"Prezzo non impostato\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Tipo di Prezzo\",\"6RmHKN\":\"Colore primario\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Colore testo primario\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Stampa Tutti i Biglietti\",\"DKwDdj\":\"Stampa Biglietti\",\"K47k8R\":\"Prodotto\",\"1JwlHk\":\"Categoria Prodotto\",\"U61sAj\":\"Categoria prodotto aggiornata con successo.\",\"1USFWA\":\"Prodotto eliminato con successo\",\"4Y2FZT\":\"Tipo di Prezzo Prodotto\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Vendite Prodotti\",\"U/R4Ng\":\"Livello Prodotto\",\"sJsr1h\":\"Tipo di Prodotto\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Prodotto/i\",\"N0qXpE\":\"Prodotti\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Prodotti venduti\",\"/u4DIx\":\"Prodotti Venduti\",\"DJQEZc\":\"Prodotti ordinati con successo\",\"vERlcd\":\"Profilo\",\"kUlL8W\":\"Profilo aggiornato con successo\",\"cl5WYc\":[\"Codice promo \",[\"promo_code\"],\" applicato\"],\"P5sgAk\":\"Codice Promo\",\"yKWfjC\":\"Pagina Codice Promo\",\"RVb8Fo\":\"Codici Promo\",\"BZ9GWa\":\"I codici promo possono essere utilizzati per offrire sconti, accesso in prevendita o fornire accesso speciale al tuo evento.\",\"OP094m\":\"Report Codici Promo\",\"4kyDD5\":\"Fornisci ulteriore contesto o istruzioni per questa domanda. Usa questo campo per aggiungere termini\\ne condizioni, linee guida o qualsiasi informazione importante che i partecipanti devono conoscere prima di rispondere.\",\"toutGW\":\"Codice QR\",\"LkMOWF\":\"Quantità Disponibile\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Domanda eliminata\",\"avf0gk\":\"Descrizione Domanda\",\"oQvMPn\":\"Titolo Domanda\",\"enzGAL\":\"Domande\",\"ROv2ZT\":\"Domande e Risposte\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Opzione Radio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Destinatario\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Rimborso Fallito\",\"n10yGu\":\"Rimborsa ordine\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Rimborso in Attesa\",\"xHpVRl\":\"Stato Rimborso\",\"/BI0y9\":\"Rimborsato\",\"fgLNSM\":\"Registrati\",\"9+8Vez\":\"Utilizzi Rimanenti\",\"tasfos\":\"rimuovi\",\"t/YqKh\":\"Rimuovi\",\"t9yxlZ\":\"Report\",\"prZGMe\":\"Richiedi Indirizzo di Fatturazione\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Reinvia conferma email\",\"wIa8Qe\":\"Reinvia invito\",\"VeKsnD\":\"Reinvia email ordine\",\"dFuEhO\":\"Reinvia e-mail del biglietto\",\"o6+Y6d\":\"Reinvio in corso...\",\"OfhWJH\":\"Reimposta\",\"RfwZxd\":\"Reimposta password\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Ripristina evento\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Torna alla Pagina dell'Evento\",\"8YBH95\":\"Ricavi\",\"PO/sOY\":\"Revoca invito\",\"GDvlUT\":\"Ruolo\",\"ELa4O9\":\"Data Fine Vendita\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Data Inizio Vendita\",\"hBsw5C\":\"Vendite terminate\",\"kpAzPe\":\"Inizio vendite\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Salva\",\"IUwGEM\":\"Salva Modifiche\",\"U65fiW\":\"Salva Organizzatore\",\"UGT5vp\":\"Salva Impostazioni\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Cerca per nome partecipante, email o numero ordine...\",\"+pr/FY\":\"Cerca per nome evento...\",\"3zRbWw\":\"Cerca per nome, email o numero ordine...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Cerca per nome...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Cerca assegnazioni di capacità...\",\"r9M1hc\":\"Cerca liste di check-in...\",\"+0Yy2U\":\"Cerca prodotti\",\"YIix5Y\":\"Cerca...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Colore secondario\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Colore testo secondario\",\"02ePaq\":[\"Seleziona \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Seleziona categoria...\",\"kWI/37\":\"Seleziona organizzatore\",\"ixIx1f\":\"Seleziona Prodotto\",\"3oSV95\":\"Seleziona Livello Prodotto\",\"C4Y1hA\":\"Seleziona prodotti\",\"hAjDQy\":\"Seleziona stato\",\"QYARw/\":\"Seleziona Biglietto\",\"OMX4tH\":\"Seleziona biglietti\",\"DrwwNd\":\"Seleziona periodo di tempo\",\"O/7I0o\":\"Seleziona...\",\"JlFcis\":\"Invia\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Invia un messaggio\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Invia Messaggio\",\"D7ZemV\":\"Invia email di conferma ordine e biglietto\",\"v1rRtW\":\"Invia Test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descrizione SEO\",\"/SIY6o\":\"Parole Chiave SEO\",\"GfWoKv\":\"Impostazioni SEO\",\"rXngLf\":\"Titolo SEO\",\"/jZOZa\":\"Commissione di Servizio\",\"Bj/QGQ\":\"Imposta un prezzo minimo e permetti agli utenti di pagare di più se lo desiderano\",\"L0pJmz\":\"Imposta il numero iniziale per la numerazione delle fatture. Questo non può essere modificato una volta che le fatture sono state generate.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Impostazioni\",\"Z8lGw6\":\"Condividi\",\"B2V3cA\":\"Condividi Evento\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Mostra quantità prodotto disponibile\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Mostra altro\",\"izwOOD\":\"Mostra tasse e commissioni separatamente\",\"1SbbH8\":\"Mostrato al cliente dopo il checkout, nella pagina di riepilogo dell'ordine.\",\"YfHZv0\":\"Mostrato al cliente prima del checkout\",\"CBBcly\":\"Mostra i campi comuni dell'indirizzo, incluso il paese\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Casella di testo a riga singola\",\"+P0Cn2\":\"Salta questo passaggio\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Esaurito\",\"Mi1rVn\":\"Esaurito\",\"nwtY4N\":\"Qualcosa è andato storto\",\"GRChTw\":\"Qualcosa è andato storto durante l'eliminazione della Tassa o Commissione\",\"YHFrbe\":\"Qualcosa è andato storto! Riprova\",\"kf83Ld\":\"Qualcosa è andato storto.\",\"fWsBTs\":\"Qualcosa è andato storto. Riprova.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Spiacenti, questo codice promo non è riconosciuto\",\"65A04M\":\"Spagnolo\",\"mFuBqb\":\"Prodotto standard con prezzo fisso\",\"D3iCkb\":\"Data di inizio\",\"/2by1f\":\"Stato o Regione\",\"uAQUqI\":\"Stato\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"I pagamenti Stripe non sono abilitati per questo evento.\",\"UJmAAK\":\"Oggetto\",\"X2rrlw\":\"Subtotale\",\"zzDlyQ\":\"Successo\",\"b0HJ45\":[\"Successo! \",[\"0\"],\" riceverà un'email a breve.\"],\"BJIEiF\":[\"Partecipante \",[\"0\"],\" con successo\"],\"OtgNFx\":\"Indirizzo email confermato con successo\",\"IKwyaF\":\"Modifica email confermata con successo\",\"zLmvhE\":\"Partecipante creato con successo\",\"gP22tw\":\"Prodotto Creato con Successo\",\"9mZEgt\":\"Codice Promo Creato con Successo\",\"aIA9C4\":\"Domanda Creata con Successo\",\"J3RJSZ\":\"Partecipante aggiornato con successo\",\"3suLF0\":\"Assegnazione Capacità aggiornata con successo\",\"Z+rnth\":\"Lista Check-In aggiornata con successo\",\"vzJenu\":\"Impostazioni Email Aggiornate con Successo\",\"7kOMfV\":\"Evento Aggiornato con Successo\",\"G0KW+e\":\"Design Homepage Aggiornato con Successo\",\"k9m6/E\":\"Impostazioni Homepage Aggiornate con Successo\",\"y/NR6s\":\"Posizione Aggiornata con Successo\",\"73nxDO\":\"Impostazioni Varie Aggiornate con Successo\",\"4H80qv\":\"Ordine aggiornato con successo\",\"6xCBVN\":\"Impostazioni di Pagamento e Fatturazione Aggiornate con Successo\",\"1Ycaad\":\"Prodotto aggiornato con successo\",\"70dYC8\":\"Codice Promo Aggiornato con Successo\",\"F+pJnL\":\"Impostazioni SEO Aggiornate con Successo\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Email di Supporto\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Tassa\",\"geUFpZ\":\"Tasse e Commissioni\",\"dFHcIn\":\"Dettagli Fiscali\",\"wQzCPX\":\"Informazioni fiscali da mostrare in fondo a tutte le fatture (es. numero di partita IVA, registrazione fiscale)\",\"0RXCDo\":\"Tassa o Commissione eliminata con successo\",\"ZowkxF\":\"Tasse\",\"qu6/03\":\"Tasse e Commissioni\",\"gypigA\":\"Quel codice promo non è valido\",\"5ShqeM\":\"La lista di check-in che stai cercando non esiste.\",\"QXlz+n\":\"La valuta predefinita per i tuoi eventi.\",\"mnafgQ\":\"Il fuso orario predefinito per i tuoi eventi.\",\"o7s5FA\":\"La lingua in cui il partecipante riceverà le email.\",\"NlfnUd\":\"Il link che hai cliccato non è valido.\",\"HsFnrk\":[\"Il numero massimo di prodotti per \",[\"0\"],\"è \",[\"1\"]],\"TSAiPM\":\"La pagina che stai cercando non esiste\",\"MSmKHn\":\"Il prezzo mostrato al cliente includerà tasse e commissioni.\",\"6zQOg1\":\"Il prezzo mostrato al cliente non includerà tasse e commissioni. Saranno mostrate separatamente\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Il titolo dell'evento che verrà visualizzato nei risultati dei motori di ricerca e quando si condivide sui social media. Per impostazione predefinita, verrà utilizzato il titolo dell'evento\",\"wDx3FF\":\"Non ci sono prodotti disponibili per questo evento\",\"pNgdBv\":\"Non ci sono prodotti disponibili in questa categoria\",\"rMcHYt\":\"C'è un rimborso in attesa. Attendi che sia completato prima di richiedere un altro rimborso.\",\"F89D36\":\"Si è verificato un errore nel contrassegnare l'ordine come pagato\",\"68Axnm\":\"Si è verificato un errore durante l'elaborazione della tua richiesta. Riprova.\",\"mVKOW6\":\"Si è verificato un errore durante l'invio del tuo messaggio\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Questo partecipante ha un ordine non pagato.\",\"mf3FrP\":\"Questa categoria non ha ancora prodotti.\",\"8QH2Il\":\"Questa categoria è nascosta alla vista pubblica\",\"xxv3BZ\":\"Questa lista di check-in è scaduta\",\"Sa7w7S\":\"Questa lista di check-in è scaduta e non è più disponibile per i check-in.\",\"Uicx2U\":\"Questa lista di check-in è attiva\",\"1k0Mp4\":\"Questa lista di check-in non è ancora attiva\",\"K6fmBI\":\"Questa lista di check-in non è ancora attiva e non è disponibile per i check-in.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Queste informazioni saranno mostrate nella pagina di pagamento, nella pagina di riepilogo dell'ordine e nell'email di conferma dell'ordine.\",\"XAHqAg\":\"Questo è un prodotto generico, come una maglietta o una tazza. Non verrà emesso alcun biglietto\",\"CNk/ro\":\"Questo è un evento online\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Questo messaggio sarà incluso nel piè di pagina di tutte le email inviate da questo evento\",\"55i7Fa\":\"Questo messaggio sarà mostrato solo se l'ordine è completato con successo. Gli ordini in attesa di pagamento non mostreranno questo messaggio\",\"RjwlZt\":\"Questo ordine è già stato pagato.\",\"5K8REg\":\"Questo ordine è già stato rimborsato.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Questo ordine è stato annullato.\",\"Q0zd4P\":\"Questo ordine è scaduto. Per favore ricomincia.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Questo ordine è completo.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Questa pagina dell'ordine non è più disponibile.\",\"i0TtkR\":\"Questo sovrascrive tutte le impostazioni di visibilità e nasconderà il prodotto a tutti i clienti.\",\"cRRc+F\":\"Questo prodotto non può essere eliminato perché è associato a un ordine. Puoi invece nasconderlo.\",\"3Kzsk7\":\"Questo prodotto è un biglietto. Agli acquirenti verrà emesso un biglietto al momento dell'acquisto\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Questo link per reimpostare la password non è valido o è scaduto.\",\"IV9xTT\":\"Questo utente non è attivo, poiché non ha accettato il suo invito.\",\"5AnPaO\":\"biglietto\",\"kjAL4v\":\"Biglietto\",\"dtGC3q\":\"Email del biglietto reinviata al partecipante\",\"54q0zp\":\"Biglietti per\",\"xN9AhL\":[\"Livello \",[\"0\"]],\"jZj9y9\":\"Prodotto a Livelli\",\"8wITQA\":\"I prodotti a livelli ti permettono di offrire più opzioni di prezzo per lo stesso prodotto. È perfetto per prodotti in prevendita o per offrire diverse opzioni di prezzo per diversi gruppi di persone.\",\"nn3mSR\":\"Tempo rimasto:\",\"s/0RpH\":\"Volte utilizzato\",\"y55eMd\":\"Volte Utilizzato\",\"40Gx0U\":\"Fuso orario\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Strumenti\",\"72c5Qo\":\"Totale\",\"YXx+fG\":\"Totale Prima degli Sconti\",\"NRWNfv\":\"Importo Totale Sconto\",\"BxsfMK\":\"Commissioni Totali\",\"2bR+8v\":\"Vendite Lorde Totali\",\"mpB/d9\":\"Importo totale ordine\",\"m3FM1g\":\"Totale rimborsato\",\"jEbkcB\":\"Totale Rimborsato\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Tasse Totali\",\"+zy2Nq\":\"Tipo\",\"FMdMfZ\":\"Impossibile registrare il partecipante\",\"bPWBLL\":\"Impossibile registrare l'uscita del partecipante\",\"9+P7zk\":\"Impossibile creare il prodotto. Controlla i tuoi dati\",\"WLxtFC\":\"Impossibile creare il prodotto. Controlla i tuoi dati\",\"/cSMqv\":\"Impossibile creare la domanda. Controlla i tuoi dati\",\"MH/lj8\":\"Impossibile aggiornare la domanda. Controlla i tuoi dati\",\"nnfSdK\":\"Clienti Unici\",\"Mqy/Zy\":\"Stati Uniti\",\"NIuIk1\":\"Illimitato\",\"/p9Fhq\":\"Disponibilità illimitata\",\"E0q9qH\":\"Utilizzi illimitati consentiti\",\"h10Wm5\":\"Ordine non pagato\",\"ia8YsC\":\"In Arrivo\",\"TlEeFv\":\"Eventi in Arrivo\",\"L/gNNk\":[\"Aggiorna \",[\"0\"]],\"+qqX74\":\"Aggiorna nome, descrizione e date dell'evento\",\"vXPSuB\":\"Aggiorna profilo\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copiato negli appunti\",\"e5lF64\":\"Esempio di utilizzo\",\"fiV0xj\":\"Limite di Utilizzo\",\"sGEOe4\":\"Usa una versione sfocata dell'immagine di copertina come sfondo\",\"OadMRm\":\"Usa immagine di copertina\",\"7PzzBU\":\"Utente\",\"yDOdwQ\":\"Gestione Utenti\",\"Sxm8rQ\":\"Utenti\",\"VEsDvU\":\"Gli utenti possono modificare la loro email in <0>Impostazioni Profilo\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"IVA\",\"E/9LUk\":\"Nome della Sede\",\"jpctdh\":\"Visualizza\",\"Pte1Hv\":\"Visualizza Dettagli Partecipante\",\"/5PEQz\":\"Visualizza pagina evento\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Visualizza su Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Lista check-in VIP\",\"tF+VVr\":\"Biglietto VIP\",\"2q/Q7x\":\"Visibilità\",\"vmOFL/\":\"Non è stato possibile elaborare il tuo pagamento. Riprova o contatta l'assistenza.\",\"45Srzt\":\"Non è stato possibile eliminare la categoria. Riprova.\",\"/DNy62\":[\"Non abbiamo trovato biglietti corrispondenti a \",[\"0\"]],\"1E0vyy\":\"Non è stato possibile caricare i dati. Riprova.\",\"NmpGKr\":\"Non è stato possibile riordinare le categorie. Riprova.\",\"BJtMTd\":\"Consigliamo dimensioni di 2160px per 1080px e una dimensione massima del file di 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Non siamo riusciti a confermare il tuo pagamento. Riprova o contatta l'assistenza.\",\"Gspam9\":\"Stiamo elaborando il tuo ordine. Attendere prego...\",\"LuY52w\":\"Benvenuto a bordo! Accedi per continuare.\",\"dVxpp5\":[\"Bentornato\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Cosa sono i Prodotti a Livelli?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Cos'è una Categoria?\",\"gxeWAU\":\"A quali prodotti si applica questo codice?\",\"hFHnxR\":\"A quali prodotti si applica questo codice? (Si applica a tutti per impostazione predefinita)\",\"AeejQi\":\"A quali prodotti dovrebbe applicarsi questa capacità?\",\"Rb0XUE\":\"A che ora arriverai?\",\"5N4wLD\":\"Che tipo di domanda è questa?\",\"gyLUYU\":\"Quando abilitato, le fatture verranno generate per gli ordini di biglietti. Le fatture saranno inviate insieme all'email di conferma dell'ordine. I partecipanti possono anche scaricare le loro fatture dalla pagina di conferma dell'ordine.\",\"D3opg4\":\"Quando i pagamenti offline sono abilitati, gli utenti potranno completare i loro ordini e ricevere i loro biglietti. I loro biglietti indicheranno chiaramente che l'ordine non è pagato, e lo strumento di check-in avviserà il personale di check-in se un ordine richiede il pagamento.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Quali biglietti dovrebbero essere associati a questa lista di check-in?\",\"S+OdxP\":\"Chi sta organizzando questo evento?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"A chi dovrebbe essere posta questa domanda?\",\"VxFvXQ\":\"Incorpora Widget\",\"v1P7Gm\":\"Impostazioni widget\",\"b4itZn\":\"In corso\",\"hqmXmc\":\"In corso...\",\"+G/XiQ\":\"Da inizio anno\",\"l75CjT\":\"Si\",\"QcwyCh\":\"Sì, rimuovili\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Stai cambiando la tua email in <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Sei offline\",\"sdB7+6\":\"Puoi creare un codice promo che ha come target questo prodotto nella\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Non puoi cambiare il tipo di prodotto poiché ci sono partecipanti associati a questo prodotto.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Non puoi registrare partecipanti con ordini non pagati. Questa impostazione può essere modificata nelle impostazioni dell'evento.\",\"c9Evkd\":\"Non puoi eliminare l'ultima categoria.\",\"6uwAvx\":\"Non puoi eliminare questo livello di prezzo perché ci sono già prodotti venduti per questo livello. Puoi invece nasconderlo.\",\"tFbRKJ\":\"Non puoi modificare il ruolo o lo stato del proprietario dell'account.\",\"fHfiEo\":\"Non puoi rimborsare un ordine creato manualmente.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Hai accesso a più account. Scegli uno per continuare.\",\"Z6q0Vl\":\"Hai già accettato questo invito. Accedi per continuare.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Non hai modifiche di email in sospeso.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Hai esaurito il tempo per completare il tuo ordine.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Devi riconoscere che questa email non è promozionale\",\"3ZI8IL\":\"Devi accettare i termini e le condizioni\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Devi creare un biglietto prima di poter aggiungere manualmente un partecipante.\",\"jE4Z8R\":\"Devi avere almeno un livello di prezzo\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Dovrai contrassegnare un ordine come pagato manualmente. Questo può essere fatto nella pagina di gestione dell'ordine.\",\"L/+xOk\":\"Avrai bisogno di un biglietto prima di poter creare una lista di check-in.\",\"Djl45M\":\"Avrai bisogno di un prodotto prima di poter creare un'assegnazione di capacità.\",\"y3qNri\":\"Avrai bisogno di almeno un prodotto per iniziare. Gratuito, a pagamento o lascia che l'utente decida quanto pagare.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Il nome del tuo account è utilizzato nelle pagine degli eventi e nelle email.\",\"veessc\":\"I tuoi partecipanti appariranno qui una volta che si saranno registrati per il tuo evento. Puoi anche aggiungere manualmente i partecipanti.\",\"Eh5Wrd\":\"Il tuo fantastico sito web 🎉\",\"lkMK2r\":\"I tuoi Dettagli\",\"3ENYTQ\":[\"La tua richiesta di cambio email a <0>\",[\"0\"],\" è in attesa. Controlla la tua email per confermare\"],\"yZfBoy\":\"Il tuo messaggio è stato inviato\",\"KSQ8An\":\"Il tuo Ordine\",\"Jwiilf\":\"Il tuo ordine è stato annullato\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"I tuoi ordini appariranno qui una volta che inizieranno ad arrivare.\",\"9TO8nT\":\"La tua password\",\"P8hBau\":\"Il tuo pagamento è in elaborazione.\",\"UdY1lL\":\"Il tuo pagamento non è andato a buon fine, riprova.\",\"fzuM26\":\"Il tuo pagamento non è andato a buon fine. Riprova.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Il tuo rimborso è in elaborazione.\",\"IFHV2p\":\"Il tuo biglietto per\",\"x1PPdr\":\"CAP / Codice Postale\",\"BM/KQm\":\"CAP o Codice Postale\",\"+LtVBt\":\"CAP o Codice Postale\",\"25QDJ1\":\"- Clicca per pubblicare\",\"WOyJmc\":\"- Clicca per annullare la pubblicazione\",\"ncwQad\":\"(vuoto)\",\"B/gRsg\":\"(nessuno)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ha già effettuato il check-in\"],\"3beCx0\":[[\"0\"],\" <0>registrato\"],\"S4PqS9\":[[\"0\"],\" Webhook Attivi\"],\"6MIiOI\":[[\"0\"],\" rimasti\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" di \",[\"1\"],\" posti sono occupati.\"],\"B7pZfX\":[[\"0\"],\" organizzatori\"],\"rZTf6P\":[[\"0\"],\" posti rimasti\"],\"/HkCs4\":[[\"0\"],\" biglietti\"],\"dtXkP9\":[[\"0\"],\" date in arrivo\"],\"30bTiU\":[[\"activeCount\"],\" attivi\"],\"jTs4am\":[\"Logo \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" partecipanti sono registrati per questa sessione.\"],\"TjbIUI\":[[\"availableCount\"],\" di \",[\"totalCount\"],\" disponibile\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" registrati\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" h fa\"],\"NRSLBe\":[[\"diffMin\"],\" min fa\"],\"iYfwJE\":[[\"diffSec\"],\" sec fa\"],\"OJnhhX\":[[\"eventCount\"],\" eventi\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" partecipanti sono registrati nelle sessioni interessate.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" tipi di biglietto\"],\"0cLzoF\":[[\"totalOccurrences\"],\" date\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessioni in \",[\"0\"],\" date (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sessione\"],\"other\":[\"#\",\" sessioni\"]}],\" al giorno)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Tasse/Commissioni\",\"B1St2O\":\"<0>Le liste di check-in ti aiutano a gestire l'ingresso all'evento per giorno, area o tipo di biglietto. Puoi collegare i biglietti a liste specifiche come zone VIP o pass del Giorno 1 e condividere un link di check-in sicuro con il personale. Non è richiesto alcun account. Il check-in funziona su dispositivi mobili, desktop o tablet, utilizzando la fotocamera del dispositivo o uno scanner USB HID. \",\"v9VSIS\":\"<0>Imposta un unico limite di presenze totale che si applichi a più tipi di biglietto contemporaneamente.<1>Ad esempio, se colleghi un <2>Pass Giornaliero e un biglietto <3>Weekend Completo, entrambi verranno estratti dallo stesso gruppo di posti. Una volta raggiunto il limite, la vendita di tutti i biglietti collegati verrà interrotta automaticamente.\",\"vKXqag\":\"<0>Questa è la quantità predefinita per tutte le date. La capacità di ogni data può limitare ulteriormente la disponibilità nella <1>pagina di programmazione delle sessioni.\",\"ZnVt5v\":\"<0>I webhook notificano istantaneamente i servizi esterni quando si verificano eventi, come l'aggiunta di un nuovo partecipante al tuo CRM o alla mailing list al momento della registrazione, garantendo un'automazione senza interruzioni.<1>Utilizza servizi di terze parti come <2>Zapier, <3>IFTTT o <4>Make per creare flussi di lavoro personalizzati e automatizzare le attività.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" al tasso attuale\"],\"M2DyLc\":\"1 Webhook Attivo\",\"6hIk/x\":\"1 partecipante è registrato nelle sessioni interessate.\",\"qOyE2U\":\"1 partecipante è registrato per questa sessione.\",\"943BwI\":\"1 giorno dopo la data di fine\",\"yj3N+g\":\"1 giorno dopo la data di inizio\",\"Z3etYG\":\"1 giorno prima dell'evento\",\"szSnlj\":\"1 ora prima dell'evento\",\"yTsaLw\":\"1 biglietto\",\"nz96Ue\":\"1 tipo di biglietto\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 settimana prima dell'evento\",\"09VFYl\":\"12 biglietti offerti\",\"HR/cvw\":\"Via Esempio 123\",\"dgKxZ5\":\"135+ valute e 40+ metodi di pagamento\",\"kMU5aM\":\"Un avviso di annullamento è stato inviato a\",\"o++0qa\":\"una modifica della durata\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Un nuovo codice di verifica è stato inviato alla tua email\",\"sr2Je0\":\"uno spostamento degli orari di inizio/fine\",\"/z/bH1\":\"Una breve descrizione del tuo organizzatore che sarà visibile agli utenti.\",\"aS0jtz\":\"Abbandonato\",\"uyJsf6\":\"Informazioni\",\"JvuLls\":\"Assorbire la commissione\",\"lk74+I\":\"Assorbire la commissione\",\"1uJlG9\":\"Colore di Accento\",\"g3UF2V\":\"Accetta\",\"K5+3xg\":\"Accetta invito\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informazioni sull'account\",\"EHNORh\":\"Account non trovato\",\"bPwFdf\":\"Account\",\"AhwTa1\":\"Azione richiesta: Informazioni IVA necessarie\",\"APyAR/\":\"Eventi attivi\",\"kCl6ja\":\"Metodi di pagamento attivi\",\"XJOV1Y\":\"Attività\",\"0YEoxS\":\"Aggiungi una data\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Aggiungi una singola data\",\"CjvTPJ\":\"Aggiungi un altro orario\",\"0XCduh\":\"Aggiungi almeno un orario\",\"/chGpa\":\"Aggiungi i dettagli di connessione per l’evento online.\",\"UWWRyd\":\"Aggiungi domande personalizzate per raccogliere informazioni aggiuntive durante il checkout\",\"Z/dcxc\":\"Aggiungi data\",\"Q219NT\":\"Aggiungi date\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Aggiungi luogo\",\"VX6WUv\":\"Aggiungi luogo\",\"GCQlV2\":\"Aggiungi più orari se organizzi più sessioni al giorno.\",\"7JF9w9\":\"Aggiungi domanda\",\"NLbIb6\":\"Aggiungi comunque questo partecipante (ignora la capacità)\",\"6PNlRV\":\"Aggiungi questo evento al tuo calendario\",\"BGD9Yt\":\"Aggiungi biglietti\",\"uIv4Op\":\"Aggiungi pixel di tracciamento alle pagine pubbliche del tuo evento e alla home dell'organizzatore. Quando il tracciamento è attivo, ai visitatori verrà mostrato un banner per il consenso ai cookie.\",\"QN2F+7\":\"Aggiungi Webhook\",\"NsWqSP\":\"Aggiungi i tuoi profili social e l'URL del sito. Verranno mostrati nella pagina pubblica dell'organizzatore.\",\"bVjDs9\":\"Commissioni aggiuntive\",\"MKqSg4\":\"Accesso amministratore richiesto\",\"0Zypnp\":\"Dashboard Amministratore\",\"YAV57v\":\"Affiliato\",\"I+utEq\":\"Il codice affiliato non può essere modificato\",\"/jHBj5\":\"Affiliato creato con successo\",\"uCFbG2\":\"Affiliato eliminato con successo\",\"ld8I+f\":\"Programma di affiliazione\",\"a41PKA\":\"Le vendite dell'affiliato saranno tracciate\",\"mJJh2s\":\"Le vendite dell'affiliato non saranno tracciate. Questo disattiverà l'affiliato.\",\"jabmnm\":\"Affiliato aggiornato con successo\",\"CPXP5Z\":\"Affiliati\",\"9Wh+ug\":\"Affiliati esportati\",\"3cqmut\":\"Gli affiliati ti aiutano a tracciare le vendite generate da partner e influencer. Crea codici affiliato e condividili per monitorare le prestazioni.\",\"z7GAMJ\":\"tutti\",\"N40H+G\":\"Tutti\",\"7rLTkE\":\"Tutti gli eventi archiviati\",\"gKq1fa\":\"Tutti i partecipanti\",\"63gRoO\":\"Tutti i partecipanti delle sessioni selezionate\",\"uWxIoH\":\"Tutti i partecipanti di questa sessione\",\"pMLul+\":\"Tutte le valute\",\"sgUdRZ\":\"Tutte le date\",\"e4q4uO\":\"Tutte le date\",\"ZS/D7f\":\"Tutti gli eventi terminati\",\"QsYjci\":\"Tutti gli eventi\",\"31KB8w\":\"Tutti i lavori falliti eliminati\",\"D2g7C7\":\"Tutti i lavori in coda per il nuovo tentativo\",\"B4RFBk\":\"Tutte le date corrispondenti\",\"F1/VgK\":\"Tutte le sessioni\",\"OpWjMq\":\"Tutte le sessioni\",\"Sxm1lO\":\"Tutti gli stati\",\"dr7CWq\":\"Tutti gli eventi in arrivo\",\"GpT6Uf\":\"Consentire ai partecipanti di aggiornare le informazioni del biglietto (nome, e-mail) tramite un link sicuro inviato con la conferma dell'ordine.\",\"F3mW5G\":\"Consenti ai clienti di iscriversi a una lista d'attesa quando questo prodotto è esaurito\",\"c4uJfc\":\"Quasi fatto! Stiamo solo aspettando che il tuo pagamento venga elaborato. Dovrebbe richiedere solo pochi secondi.\",\"ocS8eq\":[\"Hai già un account? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Già dentro\",\"/H326L\":\"Già rimborsato\",\"USEpOK\":\"Usi già Stripe per un altro organizzatore? Riutilizza quella connessione.\",\"RtxQTF\":\"Cancella anche questo ordine\",\"jkNgQR\":\"Rimborsa anche questo ordine\",\"xYqsHg\":\"Sempre disponibile\",\"Wvrz79\":\"Importo pagato\",\"Zkymb9\":\"Un'email da associare a questo affiliato. L'affiliato non sarà notificato.\",\"vRznIT\":\"Si è verificato un errore durante il controllo dello stato di esportazione.\",\"eusccx\":\"Un messaggio facoltativo da visualizzare sul prodotto evidenziato, ad esempio \\\"In vendita veloce 🔥\\\" o \\\"Miglior rapporto qualità-prezzo\\\"\",\"5GJuNp\":[\"e altri \",[\"0\"],\"...\"],\"QNrkms\":\"Risposta aggiornata con successo.\",\"+qygei\":\"Risposte\",\"GK7Lnt\":\"Risposte al checkout (es. scelta del pasto)\",\"lE8PgT\":\"Le date che hai personalizzato manualmente verranno mantenute.\",\"vP3Nzg\":[\"Si applica a \",[\"0\"],\" date non annullate attualmente caricate in questa pagina.\"],\"kkVyZZ\":\"Vale per chi apre il link senza essere autenticato. I membri autenticati vedono sempre tutto.\",\"je4muG\":[\"Si applica a ogni data non annullata di questo evento (\",[\"0\"],\" in totale) — incluse le date non attualmente caricate.\"],\"YIIQtt\":\"Applica modifiche\",\"NzWX1Y\":\"Applica a\",\"Ps5oDT\":\"Applica a tutti i biglietti\",\"261RBr\":\"Approva messaggio\",\"naCW6Z\":\"Aprile\",\"B495Gs\":\"Archivia\",\"5sNliy\":\"Archivia evento\",\"BrwnrJ\":\"Archivia organizzatore\",\"E5eghW\":\"Archivia questo evento per nasconderlo al pubblico. Puoi ripristinarlo in seguito.\",\"eqFkeI\":\"Archivia questo organizzatore. Verranno archiviati anche tutti gli eventi appartenenti a questo organizzatore.\",\"BzcxWv\":\"Organizzatori archiviati\",\"9cQBd6\":\"Sei sicuro di voler archiviare questo evento? Non sarà più visibile al pubblico.\",\"Trnl3E\":\"Sei sicuro di voler archiviare questo organizzatore? Verranno archiviati anche tutti gli eventi appartenenti a questo organizzatore.\",\"wOvn+e\":[\"Sei sicuro di voler annullare \",[\"count\"],\" data/e? I partecipanti interessati verranno avvisati via email.\"],\"GTxE0U\":\"Sei sicuro di voler annullare questa data? I partecipanti interessati verranno avvisati via email.\",\"VkSk/i\":\"Sei sicuro di voler annullare questo messaggio programmato?\",\"0aVEBY\":\"Sei sicuro di voler eliminare tutti i lavori falliti?\",\"LchiNd\":\"Sei sicuro di voler eliminare questo affiliato? Questa azione non può essere annullata.\",\"vPeW/6\":\"Vuoi davvero eliminare questa configurazione? Ciò potrebbe influire sugli account che la utilizzano.\",\"h42Hc/\":\"Sei sicuro di voler eliminare questa data? Questa azione non può essere annullata.\",\"JmVITJ\":\"Sei sicuro di voler eliminare questo modello? Questa azione non può essere annullata e le email torneranno al modello predefinito.\",\"aLS+A6\":\"Sei sicuro di voler eliminare questo modello? Questa azione non può essere annullata e le email torneranno al modello dell'organizzatore o predefinito.\",\"5H3Z78\":\"Sei sicuro di voler eliminare questo webhook?\",\"147G4h\":\"Sei sicuro di voler uscire?\",\"VDWChT\":\"Sei sicuro di voler rendere questo organizzatore una bozza? La pagina dell'organizzatore sarà invisibile al pubblico.\",\"pWtQJM\":\"Sei sicuro di voler rendere pubblico questo organizzatore? La pagina dell'organizzatore sarà visibile al pubblico.\",\"EOqL/A\":\"Sei sicuro di voler offrire un posto a questa persona? Riceverà una notifica via e-mail.\",\"yAXqWW\":\"Sei sicuro di voler eliminare definitivamente questa data? L'operazione non può essere annullata.\",\"WFHOlF\":\"Sei sicuro di voler pubblicare questo evento? Una volta pubblicato, sarà visibile al pubblico.\",\"4TNVdy\":\"Sei sicuro di voler pubblicare questo profilo organizzatore? Una volta pubblicato, sarà visibile al pubblico.\",\"8x0pUg\":\"Sei sicuro di voler rimuovere questa voce dalla lista d'attesa?\",\"cDtoWq\":[\"Sei sicuro di voler reinviare la conferma dell'ordine a \",[\"0\"],\"?\"],\"xeIaKw\":[\"Sei sicuro di voler reinviare il biglietto a \",[\"0\"],\"?\"],\"BjbocR\":\"Sei sicuro di voler ripristinare questo evento?\",\"7MjfcR\":\"Sei sicuro di voler ripristinare questo organizzatore?\",\"ExDt3P\":\"Sei sicuro di voler annullare la pubblicazione di questo evento? Non sarà più visibile al pubblico.\",\"5Qmxo/\":\"Sei sicuro di voler annullare la pubblicazione di questo profilo organizzatore? Non sarà più visibile al pubblico.\",\"Uqefyd\":\"Sei registrato IVA nell'UE?\",\"+QARA4\":\"Arte\",\"tLf3yJ\":\"Poiché la tua attività ha sede in Irlanda, l'IVA irlandese al 23% si applica automaticamente a tutte le commissioni della piattaforma.\",\"tMeVa/\":\"Richiedi nome ed email per ogni biglietto acquistato\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assegna piano\",\"xdiER7\":\"Livello assegnato\",\"F2rX0R\":\"Deve essere selezionato almeno un tipo di evento\",\"BCmibk\":\"Tentativi\",\"6PecK3\":\"Presenze e tassi di check-in per tutti gli eventi\",\"K2tp3v\":\"partecipante\",\"AJ4rvK\":\"Partecipante Cancellato\",\"qvylEK\":\"Partecipante Creato\",\"Aspq3b\":\"Raccolta dati partecipanti\",\"fpb0rX\":\"Dati del partecipante copiati dall'ordine\",\"0R3Y+9\":\"Email Partecipante\",\"94aQMU\":\"Informazioni partecipante\",\"KkrBiR\":\"Raccolta delle informazioni sui partecipanti\",\"av+gjP\":\"Nome Partecipante\",\"sjPjOg\":\"Note del partecipante\",\"cosfD8\":\"Stato del Partecipante\",\"D2qlBU\":\"Partecipante Aggiornato\",\"22BOve\":\"Partecipante aggiornato con successo\",\"x8Vnvf\":\"Il biglietto del partecipante non è incluso in questa lista\",\"/Ywywr\":\"partecipanti\",\"zLRobu\":\"partecipanti registrati\",\"k3Tngl\":\"Partecipanti Esportati\",\"UoIRW8\":\"Partecipanti registrati\",\"5UbY+B\":\"Partecipanti con un biglietto specifico\",\"4HVzhV\":\"Partecipanti:\",\"HVkhy2\":\"Analisi di attribuzione\",\"dMMjeD\":\"Ripartizione dell'attribuzione\",\"1oPDuj\":\"Valore di attribuzione\",\"DBHTm/\":\"Agosto\",\"JgREph\":\"L'offerta automatica è attivata\",\"V7Tejz\":\"Elaborazione automatica della lista d'attesa\",\"PZ7FTW\":\"Rilevato automaticamente in base al colore di sfondo, ma può essere sovrascritto\",\"zlnTuI\":\"Offri automaticamente i biglietti alla persona successiva quando si libera un posto. Se questa opzione è disabilitata, puoi gestire manualmente la lista d'attesa dalla pagina Lista d'attesa.\",\"csDS2L\":\"Disponibile\",\"clF06r\":\"Disponibile per rimborso\",\"NB5+UG\":\"Token Disponibili\",\"L+wGOG\":\"In attesa\",\"qcw2OD\":\"Pagamento attesa\",\"kNmmvE\":\"Awesome Events S.r.l.\",\"iH8pgl\":\"Indietro\",\"TeSaQO\":\"Torna a Account\",\"X7Q/iM\":\"Torna al calendario\",\"kYqM1A\":\"Torna all'evento\",\"s5QRF3\":\"Torna ai messaggi\",\"td/bh+\":\"Torna ai Report\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Prezzo base\",\"hviJef\":\"Basato sul periodo di vendita globale qui sopra, non per data\",\"jIPNJG\":\"Informazioni di base\",\"UabgBd\":\"Il corpo è obbligatorio\",\"HWXuQK\":\"Aggiungi questa pagina ai preferiti per gestire il tuo ordine in qualsiasi momento.\",\"CUKVDt\":\"Personalizza i tuoi biglietti con un logo, colori e messaggio a piè di pagina personalizzati.\",\"4BZj5p\":\"Protezione antifrode integrata\",\"cr7kGH\":\"Modifica in blocco\",\"1Fbd6n\":\"Modifica date in blocco\",\"Eq6Tu9\":\"Aggiornamento in blocco non riuscito.\",\"9N+p+g\":\"Business\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nome dell'azienda\",\"bv6RXK\":\"Etichetta Pulsante\",\"ChDLlO\":\"Testo del pulsante\",\"BUe8Wj\":\"L'acquirente paga\",\"qF1qbA\":\"Gli acquirenti vedono un prezzo pulito. La commissione della piattaforma viene detratta dal tuo pagamento.\",\"dg05rc\":\"Aggiungendo i pixel di tracciamento, riconosci che tu e questa piattaforma siete contitolari del trattamento dei dati raccolti. Sei responsabile di assicurare di avere una base giuridica per tale trattamento ai sensi delle leggi sulla privacy applicabili (GDPR, CCPA, ecc.).\",\"DFqasq\":[\"Continuando, accetti i <0>\",[\"0\"],\"Termini del servizio\"],\"wVSa+U\":\"Per giorno del mese\",\"0MnNgi\":\"Per giorno della settimana\",\"CetOZE\":\"Per tipo biglietto\",\"lFdbRS\":\"Ignora commissioni applicazione\",\"AjVXBS\":\"Calendario\",\"alkXJ5\":\"Vista calendario\",\"2VLZwd\":\"Pulsante di Invito all'Azione\",\"rT2cV+\":\"Fotocamera\",\"7hYa9y\":\"Autorizzazione fotocamera negata. <0>Richiedi di nuovo o consenti l'accesso alla fotocamera nelle impostazioni del browser.\",\"D02dD9\":\"Campagna\",\"RRPA79\":\"Check-in non possibile\",\"OcVwAd\":[\"Annulla \",[\"count\"],\" data/e\"],\"H4nE+E\":\"Cancella tutti i prodotti e rilasciali nel pool disponibile\",\"Py78q9\":\"Annulla data\",\"tOXAdc\":\"La cancellazione cancellerà tutti i partecipanti associati a questo ordine e rilascerà i biglietti nel pool disponibile.\",\"vev1Jl\":\"Annullamento\",\"Ha17hq\":[[\"0\"],\" data/e annullata/e\"],\"01sEfm\":\"Impossibile eliminare la configurazione predefinita del sistema\",\"VsM1HH\":\"Assegnazioni di capacità\",\"9bIMVF\":\"Gestione della capacità\",\"H7K8og\":\"La capacità deve essere 0 o superiore\",\"nzao08\":\"aggiornamenti di capacità\",\"4cp9NP\":\"Capacità utilizzata\",\"K7tIrx\":\"Categoria\",\"o+XJ9D\":\"Modifica\",\"kJkjoB\":\"Modifica durata\",\"J0KExZ\":\"Modifica il limite di partecipanti\",\"CIHJJf\":\"Modifica impostazioni lista di attesa\",\"B5icLR\":[\"Durata modificata per \",[\"count\"],\" data/e\"],\"Kb+0BT\":\"Pagamenti\",\"2tbLdK\":\"Beneficenza\",\"BPWGKn\":\"Check-in\",\"6uFFoY\":\"Check-out\",\"FjAlwK\":[\"Dai un'occhiata a questo evento: \",[\"0\"]],\"v4fiSg\":\"Controlla la tua email\",\"51AsAN\":\"Controlla la tua casella di posta! Se ci sono biglietti associati a questa email, riceverai un link per visualizzarli.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Registrazione Creata\",\"F4SRy3\":\"Registrazione Eliminata\",\"as6XfO\":[\"Check-in di \",[\"0\"],\" annullato\"],\"9s/wrQ\":\"Cronologia check-in\",\"Wwztk4\":\"Lista di check-in\",\"9gPPUY\":\"Lista di Check-In Creata!\",\"dwjiJt\":\"Info della lista\",\"7od0PV\":\"liste di check-in\",\"f2vU9t\":\"Liste di Check-in\",\"XprdTn\":\"Navigazione check-in\",\"5tV1in\":\"Avanzamento check-in\",\"SHJwyq\":\"Tasso di check-in\",\"qCqdg6\":\"Stato del Check-In\",\"cKj6OE\":\"Riepilogo Check-in\",\"7B5M35\":\"Check-In\",\"VrmydS\":\"Registrato\",\"DM4gBB\":\"Cinese (Tradizionale)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Scegli un'azione diversa\",\"fkb+y3\":\"Scegli un luogo salvato da applicare.\",\"Zok1Gx\":\"Scegli un organizzatore\",\"pkk46Q\":\"Scegli un organizzatore\",\"Crr3pG\":\"Scegli calendario\",\"LAW8Vb\":\"Scegli l'impostazione predefinita per i nuovi eventi. Questa può essere modificata per i singoli eventi.\",\"pjp2n5\":\"Scegli chi paga la commissione della piattaforma. Questo non influisce sulle commissioni aggiuntive che hai configurato nelle impostazioni del tuo account.\",\"xCJdfg\":\"Cancella\",\"QyOWu9\":\"Cancella luogo — usa il valore predefinito dell’evento\",\"V8yTm6\":\"Cancella ricerca\",\"kmnKnX\":\"La cancellazione rimuove qualsiasi sostituzione per singola sessione. Le sessioni interessate useranno il luogo predefinito dell’evento.\",\"/o+aQX\":\"Clicca per annullare\",\"gD7WGV\":\"Clicca per riaprire alle nuove vendite\",\"CySr+W\":\"Clicca per visualizzare le note\",\"RG3szS\":\"chiudi\",\"RWw9Lg\":\"Chiudi la finestra\",\"XwdMMg\":\"Il codice può contenere solo lettere, numeri, trattini e trattini bassi\",\"+yMJb7\":\"Il codice è obbligatorio\",\"m9SD3V\":\"Il codice deve contenere almeno 3 caratteri\",\"V1krgP\":\"Il codice non deve superare i 20 caratteri\",\"psqIm5\":\"Collabora con il tuo team per creare eventi straordinari insieme.\",\"4bUH9i\":\"Raccogli i dettagli dei partecipanti per ogni biglietto acquistato.\",\"TkfG8v\":\"Raccogli i dati per ordine\",\"96ryID\":\"Raccogli i dati per biglietto\",\"FpsvqB\":\"Modalità colore\",\"jEu4bB\":\"Colonne\",\"CWk59I\":\"Commedia\",\"rPA+Gc\":\"Preferenze di comunicazione\",\"zFT5rr\":\"completato\",\"bUQMpb\":\"Completa la configurazione di Stripe\",\"744BMm\":\"Completa il tuo ordine per assicurarti i biglietti. Questa offerta è a tempo limitato, quindi non aspettare troppo.\",\"5YrKW7\":\"Completa il pagamento per assicurarti i biglietti.\",\"xGU92i\":\"Completa il tuo profilo per unirti al team.\",\"QOhkyl\":\"Componi\",\"ih35UP\":\"Centro congressi\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configurazione assegnata\",\"X1zdE7\":\"Configurazione creata con successo\",\"mLBUMQ\":\"Configurazione eliminata correttamente\",\"UIENhw\":\"I nomi delle configurazioni sono visibili agli utenti finali. Le commissioni fisse verranno convertite nella valuta dell'ordine al tasso di cambio corrente.\",\"eeZdaB\":\"Configurazione aggiornata con successo\",\"3cKoxx\":\"Configurazioni\",\"8v2LRU\":\"Configura i dettagli dell'evento, la posizione, le opzioni di checkout e le notifiche email.\",\"raw09+\":\"Configura come vengono raccolti i dati dei partecipanti durante il checkout\",\"FI60XC\":\"Configura tasse e commissioni\",\"av6ukY\":\"Configura quali prodotti sono disponibili per questa sessione e, se necessario, modifica il prezzo.\",\"NGXKG/\":\"Conferma indirizzo email\",\"JRQitQ\":\"Conferma la nuova password\",\"Auz0Mz\":\"Conferma la tua email per accedere a tutte le funzionalità.\",\"7+grte\":\"Email di conferma inviata! Controlla la tua casella di posta.\",\"n/7+7Q\":\"Conferma inviata a\",\"x3wVFc\":\"Congratulazioni! Il tuo evento è ora visibile al pubblico.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Connetti Stripe per abilitare la modifica dei modelli di email\",\"LmvZ+E\":\"Connetti Stripe per abilitare la messaggistica\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contatto\",\"LOFgda\":[\"Contatta \",[\"0\"]],\"41BQ3k\":\"Email di contatto\",\"KcXRN+\":\"Email di contatto per supporto\",\"m8WD6t\":\"Continua configurazione\",\"0GwUT4\":\"Procedi al pagamento\",\"sBV87H\":\"Continua alla creazione dell'evento\",\"nKtyYu\":\"Continua al passo successivo\",\"F3/nus\":\"Continua al pagamento\",\"p2FRHj\":\"Controlla come vengono gestite le commissioni della piattaforma per questo evento\",\"NqfabH\":\"Controlla chi può entrare in questa data\",\"fmYxZx\":\"Chi entra e quando\",\"1JnTgU\":\"Copiato da sopra\",\"FxVG/l\":\"Copiato negli appunti\",\"PiH3UR\":\"Copiato!\",\"4i7smN\":\"Copia ID account\",\"uUPbPg\":\"Copia link affiliato\",\"iVm46+\":\"Copia codice\",\"cF2ICc\":\"Copia link cliente\",\"+2ZJ7N\":\"Copia dettagli al primo partecipante\",\"ZN1WLO\":\"Copia Email\",\"y1eoq1\":\"Copia link\",\"tUGbi8\":\"Copia i miei dati a:\",\"y22tv0\":\"Copia questo link per condividerlo ovunque\",\"/4gGIX\":\"Copia negli appunti\",\"e0f4yB\":\"Impossibile eliminare il luogo\",\"vkiDx2\":\"Impossibile preparare l’aggiornamento di massa.\",\"KOavaU\":\"Impossibile recuperare i dettagli dell'indirizzo\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Impossibile salvare la data\",\"eeLExK\":\"Impossibile salvare il luogo\",\"P0rbCt\":\"Immagine di Copertina\",\"60u+dQ\":\"L'immagine di copertina sarà visualizzata in cima alla pagina dell'evento\",\"2NLjA6\":\"L'immagine di copertina sarà visualizzata in cima alla pagina dell'organizzatore\",\"GkrqoY\":\"Copre tutti i biglietti\",\"zg4oSu\":[\"Crea Modello \",[\"0\"]],\"RKKhnW\":\"Crea un widget personalizzato per vendere biglietti sul tuo sito.\",\"6sk7PP\":\"Crea un numero fisso\",\"PhioFp\":\"Crea una nuova lista di check-in per una sessione attiva, oppure contatta l'organizzatore se pensi che si tratti di un errore.\",\"yIRev4\":\"Crea una password\",\"j7xZ7J\":\"Crea ulteriori organizzatori per gestire marchi, dipartimenti o serie di eventi separati sotto un unico account. Ogni organizzatore ha i propri eventi, impostazioni e pagina pubblica.\",\"xfKgwv\":\"Crea affiliato\",\"tudG8q\":\"Crea e configura biglietti e merchandise in vendita.\",\"YAl9Hg\":\"Crea configurazione\",\"BTne9e\":\"Crea modelli di email personalizzati per questo evento che sostituiscono le impostazioni predefinite dell'organizzatore\",\"YIDzi/\":\"Crea Modello Personalizzato\",\"tsGqx5\":\"Crea data\",\"Nc3l/D\":\"Crea sconti, codici di accesso per biglietti nascosti e offerte speciali.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Crea per questa data\",\"eWEV9G\":\"Crea una nuova password\",\"wl2iai\":\"Crea programmazione\",\"8AiKIu\":\"Crea biglietto o prodotto\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Crea link tracciabili per premiare i partner che promuovono il tuo evento.\",\"dkAPxi\":\"Crea Webhook\",\"5slqwZ\":\"Crea il tuo evento\",\"JQNMrj\":\"Crea il tuo primo evento\",\"ZCSSd+\":\"Crea il tuo evento\",\"67NsZP\":\"Creazione evento...\",\"H34qcM\":\"Creazione organizzatore...\",\"1YMS+X\":\"Creazione del tuo evento in corso, attendere prego\",\"yiy8Jt\":\"Creazione del tuo profilo organizzatore in corso, attendere prego\",\"lfLHNz\":\"L'etichetta CTA è obbligatoria\",\"0xLR6W\":\"Attualmente assegnato\",\"iTvh6I\":\"Attualmente disponibile per l'acquisto\",\"A42Dqn\":\"Branding personalizzato\",\"Guo0lU\":\"Data e ora personalizzate\",\"mimF6c\":\"Messaggio personalizzato dopo il checkout\",\"WDMdn8\":\"Domande personalizzate\",\"O6mra8\":\"Domande personalizzate\",\"axv/Mi\":\"Modello personalizzato\",\"2YeVGY\":\"Link cliente copiato negli appunti\",\"QMHSMS\":\"Il cliente riceverà un'email di conferma del rimborso\",\"L/Qc+w\":\"Indirizzo email del cliente\",\"wpfWhJ\":\"Nome del cliente\",\"GIoqtA\":\"Cognome del cliente\",\"NihQNk\":\"Clienti\",\"7gsjkI\":\"Personalizza le email inviate ai tuoi clienti utilizzando i modelli Liquid. Questi modelli verranno utilizzati come predefiniti per tutti gli eventi nella tua organizzazione.\",\"xJaTUK\":\"Personalizza il layout, i colori e il branding della homepage del tuo evento.\",\"MXZfGN\":\"Personalizza le domande poste durante il checkout per raccogliere informazioni importanti dai tuoi partecipanti.\",\"iX6SLo\":\"Personalizza il testo visualizzato sul pulsante continua\",\"pxNIxa\":\"Personalizza il tuo modello di email utilizzando i modelli Liquid\",\"3trPKm\":\"Personalizza l'aspetto della pagina del tuo organizzatore\",\"U0sC6H\":\"Giornaliero\",\"/gWrVZ\":\"Ricavi giornalieri, tasse, commissioni e rimborsi per tutti gli eventi\",\"zgCHnE\":\"Report Vendite Giornaliere\",\"nHm0AI\":\"Ripartizione giornaliera di vendite, tasse e commissioni\",\"1aPnDT\":\"Danza\",\"pvnfJD\":\"Scuro\",\"MaB9wW\":\"Annullamento data\",\"e6cAxJ\":\"Data annullata\",\"81jBnC\":\"Data annullata con successo\",\"a/C/6R\":\"Data creata con successo\",\"IW7Q+u\":\"Data eliminata\",\"rngCAz\":\"Data eliminata con successo\",\"lnYE59\":\"Data dell'evento\",\"gnBreG\":\"Data in cui è stato effettuato l'ordine\",\"vHbfoQ\":\"Data riattivata\",\"hvah+S\":\"Data riaperta alle nuove vendite\",\"Ez0YsD\":\"Data aggiornata con successo\",\"VTsZuy\":\"Le date e gli orari sono gestiti nella\",\"/ITcnz\":\"giorno\",\"H7OUPr\":\"Giorno\",\"JtHrX9\":\"Giorno del mese\",\"J/Upwb\":\"giorni\",\"vDVA2I\":\"Giorni del mese\",\"rDLvlL\":\"Giorni della settimana\",\"r6zgGo\":\"Dicembre\",\"jbq7j2\":\"Rifiuta\",\"ovBPCi\":\"Predefinito\",\"JtI4vj\":\"Raccolta predefinita delle informazioni sui partecipanti\",\"ULjv90\":\"Capacità predefinita per data\",\"3R/Tu2\":\"Gestione predefinita delle commissioni\",\"1bZAZA\":\"Verrà utilizzato il modello predefinito\",\"HNlEFZ\":\"elimina\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Eliminare \",[\"count\"],\" data/e selezionata/e? Le date con ordini verranno saltate. L'operazione non può essere annullata.\"],\"vu7gDm\":\"Elimina affiliato\",\"KZN4Lc\":\"Elimina tutto\",\"6EkaOO\":\"Elimina data\",\"io0G93\":\"Elimina evento\",\"+jw/c1\":\"Elimina immagine\",\"hdyeZ0\":\"Elimina lavoro\",\"xxjZeP\":\"Elimina luogo\",\"sY3tIw\":\"Elimina organizzatore\",\"UBv8UK\":\"Elimina definitivamente\",\"dPyJ15\":\"Elimina Modello\",\"mxsm1o\":\"Eliminare questa domanda? Questa azione non può essere annullata.\",\"snMaH4\":\"Elimina webhook\",\"LIZZLY\":[[\"0\"],\" data/e eliminata/e\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deseleziona tutto\",\"NvuEhl\":\"Elementi di Design\",\"H8kMHT\":\"Non hai ricevuto il codice?\",\"G8KNgd\":\"Luogo diverso\",\"E/QGRL\":\"Disabilitato\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Ignora questo messaggio\",\"BREO0S\":\"Visualizza una casella che consente ai clienti di aderire alle comunicazioni di marketing da questo organizzatore di eventi.\",\"pfa8F0\":\"Nome visualizzato\",\"Kdpf90\":\"Non dimenticare!\",\"352VU2\":\"\\\"Non hai un account? <0>Registrati\",\"AXXqG+\":\"Donazione\",\"DPfwMq\":\"Fatto\",\"JoPiZ2\":\"Istruzioni per lo staff\",\"2+O9st\":\"Scarica report di vendita, partecipanti e finanziari per tutti gli ordini completati.\",\"eneWvv\":\"Bozza\",\"Ts8hhq\":\"A causa dell'alto rischio di spam, è necessario collegare un account Stripe prima di poter modificare i modelli di email. Questo è per garantire che tutti gli organizzatori di eventi siano verificati e responsabili.\",\"TnzbL+\":\"Per via dell'elevato rischio di spam, devi collegare un account Stripe prima di poter inviare messaggi ai partecipanti.\\nQuesto serve a garantire che tutti gli organizzatori siano verificati e responsabili.\",\"euc6Ns\":\"Duplica\",\"YueC+F\":\"Duplica data\",\"KRmTkx\":\"Duplica Prodotto\",\"Jd3ymG\":\"La durata deve essere di almeno 1 minuto.\",\"KIjvtr\":\"Olandese\",\"22xieU\":\"es. 180 (3 ore)\",\"/zajIE\":\"es. Sessione mattutina\",\"SPKbfM\":\"es., Acquista biglietti, Registrati ora\",\"fc7wGW\":\"ad esempio, Aggiornamento importante sui tuoi biglietti\",\"54MPqC\":\"ad esempio, Standard, Premium, Enterprise\",\"3RQ81z\":\"Ogni persona riceverà un'e-mail con un posto riservato per completare l'acquisto.\",\"5oD9f/\":\"Prima\",\"LTzmgK\":[\"Modifica Modello \",[\"0\"]],\"v4+lcZ\":\"Modifica affiliato\",\"2iZEz7\":\"Modifica Risposta\",\"t2bbp8\":\"Modifica partecipante\",\"etaWtB\":\"Modifica dettagli partecipante\",\"+guao5\":\"Modifica configurazione\",\"1Mp/A4\":\"Modifica data\",\"m0ZqOT\":\"Modifica luogo\",\"8oivFT\":\"Modifica luogo\",\"vRWOrM\":\"Modifica dettagli ordine\",\"fW5sSv\":\"Modifica webhook\",\"nP7CdQ\":\"Modifica Webhook\",\"MRZxAn\":\"Modificato\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Istruzione\",\"iiWXDL\":\"Errori di idoneità\",\"zPiC+q\":\"Liste Check-In Idonee\",\"SiVstt\":\"Email e messaggi programmati\",\"V2sk3H\":\"Email e Modelli\",\"hbwCKE\":\"Indirizzo email copiato negli appunti\",\"dSyJj6\":\"Gli indirizzi email non corrispondono\",\"elW7Tn\":\"Corpo Email\",\"ZsZeV2\":\"L'email è obbligatoria\",\"Be4gD+\":\"Anteprima Email\",\"6IwNUc\":\"Modelli Email\",\"H/UMUG\":\"Verifica email richiesta\",\"L86zy2\":\"Email verificata con successo!\",\"FSN4TS\":\"Widget incorporato\",\"z9NkYY\":\"Widget incorporabile\",\"Qj0GKe\":\"Abilita self-service per i partecipanti\",\"hEtQsg\":\"Abilita self-service per i partecipanti per impostazione predefinita\",\"Upeg/u\":\"Abilita questo modello per l'invio di email\",\"7dSOhU\":\"Abilita lista d'attesa\",\"RxzN1M\":\"Abilitato\",\"xDr/ct\":\"Fine\",\"sGjBEq\":\"Data e ora di fine (opzionale)\",\"PKXt9R\":\"La data di fine deve essere successiva alla data di inizio\",\"UmzbPa\":\"Data di fine della sessione\",\"ZayGC7\":\"Termina in una data\",\"48Y16Q\":\"Ora di fine (facoltativo)\",\"jpNdOC\":\"Orario di fine della sessione\",\"TbaYrr\":[\"Terminato \",[\"0\"]],\"CFgwiw\":[\"Termina \",[\"0\"]],\"SqOIQU\":\"Inserisci un valore di capacità o scegli illimitato.\",\"h37gRz\":\"Inserisci un'etichetta o scegli di rimuoverla.\",\"7YZofi\":\"Inserisci un oggetto e un corpo per vedere l'anteprima\",\"khyScF\":\"Inserisci di quanto spostare l'orario.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Inserisci email affiliato (facoltativo)\",\"ARkzso\":\"Inserisci nome affiliato\",\"ej4L8b\":\"Inserisci la capacità\",\"6KnyG0\":\"Inserisci e-mail\",\"INDKM9\":\"Inserisci l'oggetto dell'email...\",\"xUgUTh\":\"Inserisci nome\",\"9/1YKL\":\"Inserisci cognome\",\"VpwcSk\":\"Inserisci la nuova password\",\"kWg31j\":\"Inserisci codice affiliato univoco\",\"C3nD/1\":\"Inserisci la tua email\",\"VmXiz4\":\"Inserisci la tua email e ti invieremo le istruzioni per reimpostare la password\",\"n9V+ps\":\"Inserisci il tuo nome\",\"IdULhL\":\"Inserisci il tuo numero di partita IVA, incluso il codice del paese, senza spazi (ad esempio, IE1234567A, DE123456789)\",\"o21Y+P\":\"voci\",\"X88/6w\":\"Le iscrizioni appariranno qui quando i clienti si uniranno alla lista d'attesa per i prodotti esauriti.\",\"LslKhj\":\"Errore durante il caricamento dei log\",\"VCNHvW\":\"Evento archiviato\",\"ZD0XSb\":\"Evento archiviato con successo\",\"WgD6rb\":\"Categoria evento\",\"b46pt5\":\"Immagine di copertina evento\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evento creato\",\"1Hzev4\":\"Modello personalizzato evento\",\"7u9/DO\":\"Evento eliminato con successo\",\"imgKgl\":\"Descrizione dell'evento\",\"kJDmsI\":\"Dettagli evento\",\"m/N7Zq\":\"Indirizzo Completo dell'Evento\",\"Nl1ZtM\":\"Luogo Evento\",\"PYs3rP\":\"Nome evento\",\"HhwcTQ\":\"Nome dell'evento\",\"WZZzB6\":\"Il nome dell'evento è obbligatorio\",\"Wd5CDM\":\"Il nome dell'evento deve contenere meno di 150 caratteri\",\"4JzCvP\":\"Evento Non Disponibile\",\"Gh9Oqb\":\"Nome organizzatore evento\",\"mImacG\":\"Pagina dell'evento\",\"Hk9Ki/\":\"Evento ripristinato con successo\",\"JyD0LH\":\"Impostazioni evento\",\"cOePZk\":\"Orario Evento\",\"e8WNln\":\"Fuso orario dell'evento\",\"GeqWgj\":\"Fuso Orario dell'Evento\",\"XVLu2v\":\"Titolo dell'evento\",\"OfmsI9\":\"Evento troppo recente\",\"4SILkp\":\"Totali evento\",\"YDVUVl\":\"Tipi di Evento\",\"+HeiVx\":\"Evento aggiornato\",\"4K2OjV\":\"Sede dell'Evento\",\"19j6uh\":\"Performance Eventi\",\"PC3/fk\":\"Eventi che iniziano nelle prossime 24 ore\",\"nwiZdc\":[\"Ogni \",[\"0\"]],\"2LJU4o\":[\"Ogni \",[\"0\"],\" giorni\"],\"yLiYx+\":[\"Ogni \",[\"0\"],\" mesi\"],\"nn9ice\":[\"Ogni \",[\"0\"],\" settimane\"],\"Cdr8f9\":[\"Ogni \",[\"0\"],\" settimane il \",[\"1\"]],\"GVEHRk\":[\"Ogni \",[\"0\"],\" anni\"],\"fTFfOK\":\"Ogni modello di email deve includere un pulsante di invito all'azione che collega alla pagina appropriata\",\"BVinvJ\":\"Esempi: \\\"Come ci hai conosciuto?\\\", \\\"Nome azienda per fattura\\\"\",\"2hGPQG\":\"Esempi: \\\"Taglia maglietta\\\", \\\"Preferenza pasto\\\", \\\"Titolo professionale\\\"\",\"qNuTh3\":\"Eccezione\",\"M1RnFv\":\"Scaduto\",\"kF8HQ7\":\"Esporta risposte\",\"2KAI4N\":\"Esporta CSV\",\"JKfSAv\":\"Esportazione fallita. Riprova.\",\"SVOEsu\":\"Esportazione avviata. Preparazione file...\",\"wuyaZh\":\"Esportazione riuscita\",\"9bpUSo\":\"Esportazione affiliati\",\"jtrqH9\":\"Esportazione Partecipanti\",\"R4Oqr8\":\"Esportazione completata. Download file in corso...\",\"UlAK8E\":\"Esportazione Ordini\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Non riuscito\",\"8uOlgz\":\"Non riuscito il\",\"tKcbYd\":\"Lavori non riusciti\",\"SsI9v/\":\"Impossibile abbandonare l'ordine. Riprova.\",\"LdPKPR\":\"Impossibile assegnare la configurazione\",\"PO0cfn\":\"Impossibile annullare la data\",\"YUX+f+\":\"Impossibile annullare le date\",\"SIHgVQ\":\"Impossibile annullare il messaggio\",\"cEFg3R\":\"Creazione affiliato non riuscita\",\"dVgNF1\":\"Impossibile creare la configurazione\",\"fAoRRJ\":\"Impossibile creare la programmazione\",\"U66oUa\":\"Impossibile creare il modello\",\"aFk48v\":\"Impossibile eliminare la configurazione\",\"n1CYMH\":\"Impossibile eliminare la data\",\"KXv+Qn\":\"Impossibile eliminare la data. Potrebbe avere ordini esistenti.\",\"JJ0uRo\":\"Impossibile eliminare le date\",\"rgoBnv\":\"Impossibile eliminare l'evento\",\"Zw6LWb\":\"Impossibile eliminare il lavoro\",\"tq0abZ\":\"Impossibile eliminare i lavori\",\"2mkc3c\":\"Impossibile eliminare l'organizzatore\",\"vKMKnu\":\"Impossibile eliminare la domanda\",\"xFj7Yj\":\"Impossibile eliminare il modello\",\"jo3Gm6\":\"Esportazione affiliati non riuscita\",\"Jjw03p\":\"Impossibile esportare i partecipanti\",\"ZPwFnN\":\"Impossibile esportare gli ordini\",\"zGE3CH\":\"Impossibile esportare il report. Riprova.\",\"lS9/aZ\":\"Impossibile caricare i destinatari\",\"X4o0MX\":\"Impossibile caricare il Webhook\",\"ETcU7q\":\"Impossibile offrire il posto\",\"5670b9\":\"Impossibile offrire i biglietti\",\"e5KIbI\":\"Impossibile riattivare la data\",\"7zyx8a\":\"Impossibile rimuovere dalla lista d'attesa\",\"A/P7PX\":\"Impossibile rimuovere la sostituzione\",\"ogWc1z\":\"Impossibile riaprire la data\",\"0+iwE5\":\"Impossibile riordinare le domande\",\"EJPAcd\":\"Impossibile reinviare la conferma dell'ordine\",\"DjSbj3\":\"Impossibile reinviare il biglietto\",\"YQ3QSS\":\"Reinvio codice di verifica non riuscito\",\"wDioLj\":\"Impossibile ritentare il lavoro\",\"DKYTWG\":\"Impossibile ritentare i lavori\",\"WRREqF\":\"Impossibile salvare la sostituzione\",\"sj/eZA\":\"Impossibile salvare la sostituzione del prezzo\",\"780n8A\":\"Impossibile salvare le impostazioni del prodotto\",\"zTkTF3\":\"Impossibile salvare il modello\",\"l6acRV\":\"Impossibile salvare le impostazioni IVA. Riprova.\",\"T6B2gk\":\"Invio messaggio non riuscito. Riprova.\",\"lKh069\":\"Impossibile avviare il processo di esportazione\",\"t/KVOk\":\"Impossibile avviare l'impersonificazione. Riprova.\",\"QXgjH0\":\"Impossibile interrompere l'impersonificazione. Riprova.\",\"i0QKrm\":\"Aggiornamento affiliato non riuscito\",\"NNc33d\":\"Impossibile aggiornare la risposta.\",\"E9jY+o\":\"Impossibile aggiornare il partecipante\",\"uQynyf\":\"Impossibile aggiornare la configurazione\",\"i2PFQJ\":\"Impossibile aggiornare lo stato dell'evento\",\"EhlbcI\":\"Aggiornamento del livello di messaggistica fallito\",\"rpGMzC\":\"Impossibile aggiornare l'ordine\",\"T2aCOV\":\"Impossibile aggiornare lo stato dell'organizzatore\",\"Eeo/Gy\":\"Impossibile aggiornare l'impostazione\",\"kqA9lY\":\"Impossibile aggiornare le impostazioni IVA\",\"7/9RFs\":\"Caricamento immagine non riuscito.\",\"nkNfWu\":\"Caricamento dell'immagine non riuscito. Riprova.\",\"rxy0tG\":\"Verifica email non riuscita\",\"QRUpCk\":\"Famiglia\",\"5LO38w\":\"Pagamenti rapidi sul tuo conto\",\"4lgLew\":\"Febbraio\",\"9bHCo2\":\"Valuta della commissione\",\"/sV91a\":\"Gestione delle commissioni\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Commissioni ignorate\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Il file è troppo grande. La dimensione massima è 5 MB.\",\"VejKUM\":\"Compila prima i tuoi dati sopra\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filtra partecipanti\",\"8OvVZZ\":\"Filtra Partecipanti\",\"N/H3++\":\"Filtra per data\",\"mvrlBO\":\"Filtra per evento\",\"g+xRXP\":\"Termina la configurazione di Stripe\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"Primo\",\"1vBhpG\":\"Primo partecipante\",\"4pwejF\":\"Il nome è obbligatorio\",\"3lkYdQ\":\"Commissione fissa\",\"6bBh3/\":\"Tariffa fissa\",\"zWqUyJ\":\"Commissione fissa applicata per transazione\",\"LWL3Bs\":\"La tariffa fissa deve essere pari o superiore a 0\",\"0RI8m4\":\"Flash spento\",\"q0923e\":\"Flash acceso\",\"lWxAUo\":\"Cibo e bevande\",\"nFm+5u\":\"Testo del Piè di Pagina\",\"a8nooQ\":\"Quarto\",\"mob/am\":\"Ven\",\"wtuVU4\":\"Frequenza\",\"xVhQZV\":\"Ven\",\"39y5bn\":\"Venerdì\",\"f5UbZ0\":\"Piena proprietà dei dati\",\"MY2SVM\":\"Rimborso completo\",\"UsIfa8\":\"Indirizzo completo risolto\",\"PGQLdy\":\"futuro\",\"8N/j1s\":\"Solo date future\",\"yRx/6K\":\"Le date future verranno copiate con la capacità reimpostata a zero\",\"T02gNN\":\"Ingresso Generale\",\"3ep0Gx\":\"Informazioni generali sul tuo organizzatore\",\"ziAjHi\":\"Genera\",\"exy8uo\":\"Genera codice\",\"4CETZY\":\"Indicazioni stradali\",\"pjkEcB\":\"Ricevi pagamenti\",\"lGYzP6\":\"Ricevi pagamenti con Stripe\",\"ZDIydz\":\"Iniziare\",\"u6FPxT\":\"Ottieni i biglietti\",\"8KDgYV\":\"Prepara il tuo evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Torna indietro\",\"oNL5vN\":\"Vai alla pagina dell'evento\",\"gHSuV/\":\"Vai alla pagina iniziale\",\"8+Cj55\":\"Vai alla programmazione\",\"6nDzTl\":\"Buona leggibilità\",\"76gPWk\":\"Capito\",\"aGWZUr\":\"Ricavi lordi\",\"n8IUs7\":\"Ricavi Lordi\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestione ospiti\",\"NUsTc4\":\"In corso ora\",\"kTSQej\":[\"Ciao \",[\"0\"],\", gestisci la tua piattaforma da qui.\"],\"dORAcs\":\"Ecco tutti i biglietti associati al tuo indirizzo email.\",\"g+2103\":\"Ecco il tuo link affiliato\",\"bVsnqU\":\"Ciao,\",\"/iE8xx\":\"Commissione Hi.Events\",\"zppscQ\":\"Commissioni piattaforma Hi.Events e dettaglio IVA per transazione\",\"D+zLDD\":\"Nascosto\",\"DRErHC\":\"Nascosto ai partecipanti - visibile solo agli organizzatori\",\"NNnsM0\":\"Nascondi opzioni avanzate\",\"P+5Pbo\":\"Nascondi Risposte\",\"VMlRqi\":\"Nascondi i dettagli\",\"FmogyU\":\"Nascondi opzioni\",\"gtEbeW\":\"Evidenzia\",\"NF8sdv\":\"Messaggio evidenziato\",\"MXSqmS\":\"Evidenzia questo prodotto\",\"7ER2sc\":\"Evidenziato\",\"sq7vjE\":\"I prodotti evidenziati avranno un colore di sfondo diverso per farli risaltare nella pagina dell'evento.\",\"1+WSY1\":\"Hobby\",\"yY8wAv\":\"Ore\",\"sy9anN\":\"Quanto tempo ha un cliente per completare l'acquisto dopo aver ricevuto un'offerta. Lascia vuoto per nessun limite di tempo.\",\"n2ilNh\":\"Per quanto tempo va avanti la programmazione?\",\"DMr2XN\":\"Con quale frequenza?\",\"AVpmAa\":\"Come pagare offline\",\"cceMns\":\"Come viene applicata l'IVA alle commissioni della piattaforma che ti vengono addebitate.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Ungherese\",\"8Wgd41\":\"Riconosco le mie responsabilità in qualità di titolare del trattamento dei dati\",\"O8m7VA\":\"Accetto di ricevere notifiche via email relative a questo evento\",\"YLgdk5\":\"Confermo che questo è un messaggio transazionale relativo a questo evento\",\"4/kP5a\":\"Se una nuova scheda non si è aperta automaticamente, clicca sul pulsante qui sotto per procedere al pagamento.\",\"W/eN+G\":\"Se vuoto, l'indirizzo verrà utilizzato per generare un link a Google Maps\",\"iIEaNB\":\"Se hai un account con noi, riceverai un'e-mail con le istruzioni su come reimpostare la tua password.\",\"an5hVd\":\"Immagini\",\"tSVr6t\":\"Impersonifica\",\"TWXU0c\":\"Impersona utente\",\"5LAZwq\":\"Impersonificazione avviata\",\"IMwcdR\":\"Impersonificazione interrotta\",\"0I0Hac\":\"Avviso importante\",\"yD3avI\":\"Importante: La modifica dell'indirizzo e-mail aggiornerà il link per accedere a questo ordine. Verrai reindirizzato al nuovo link dell'ordine dopo il salvataggio.\",\"jT142F\":[\"Tra \",[\"diffHours\"],\" ore\"],\"OoSyqO\":[\"Tra \",[\"diffMinutes\"],\" minuti\"],\"PdMhEx\":[\"negli ultimi \",[\"0\"],\" min\"],\"u7r0G5\":\"In presenza — imposta un luogo\",\"Ip0hl5\":\"in presenza, online, non impostato o misto\",\"F1Xp97\":\"Partecipanti individuali\",\"85e6zs\":\"Inserisci Token Liquid\",\"38KFY0\":\"Inserisci Variabile\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Versamenti Stripe istantanei\",\"nbfdhU\":\"Integrazioni\",\"I8eJ6/\":\"Note interne sul biglietto del partecipante\",\"B2Tpo0\":\"Email non valida\",\"5tT0+u\":\"Formato email non valido\",\"f9WRpE\":\"Tipo di file non valido. Carica un'immagine.\",\"tnL+GP\":\"Sintassi Liquid non valida. Correggila e riprova.\",\"N9JsFT\":\"Formato del numero di partita IVA non valido\",\"g+lLS9\":\"Invita un membro del team\",\"1z26sk\":\"Invita membro del team\",\"KR0679\":\"Invita membri del team\",\"aH6ZIb\":\"Invita il tuo team\",\"IuMGvq\":\"Fattura\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"articolo(i)\",\"BzfzPK\":\"Articoli\",\"rjyWPb\":\"Gennaio\",\"KmWyx0\":\"Lavoro\",\"o5r6b2\":\"Lavoro eliminato\",\"cd0jIM\":\"Dettagli del lavoro\",\"ruJO57\":\"Nome del lavoro\",\"YZi+Hu\":\"Lavoro in coda per il nuovo tentativo\",\"nCywLA\":\"Partecipa da ovunque\",\"SNzppu\":\"Iscriviti alla lista d'attesa\",\"dLouFI\":[\"Iscriviti alla lista d'attesa per \",[\"productDisplayName\"]],\"2gMuHR\":\"Iscritto\",\"u4ex5r\":\"Luglio\",\"zeEQd/\":\"Giugno\",\"MxjCqk\":\"Stai solo cercando i tuoi biglietti?\",\"xOTzt5\":\"adesso\",\"0RihU9\":\"Appena concluso\",\"lB2hSG\":[\"Tienimi aggiornato sulle novità e gli eventi di \",[\"0\"]],\"ioFA9i\":\"Tieniti il profitto.\",\"4Sffp7\":\"Etichetta per la sessione\",\"o66QSP\":\"aggiornamenti dell'etichetta\",\"RtKKbA\":\"Ultimo\",\"DruLRc\":\"Ultimi 14 giorni\",\"ve9JTU\":\"Il cognome è obbligatorio\",\"h0Q9Iw\":\"Ultima Risposta\",\"gw3Ur5\":\"Ultimo Attivato\",\"FIq1Ba\":\"Dopo\",\"xvnLMP\":\"Ultimi check-in\",\"pzAivY\":\"Latitudine del luogo risolto\",\"N5TErv\":\"Lascia vuoto per illimitato\",\"L/hDDD\":\"Lascia vuoto per applicare questa lista di check-in a tutte le sessioni\",\"9Pf3wk\":\"Lascia attivo per coprire tutti i biglietti dell'evento. Disattiva per scegliere biglietti specifici.\",\"Hq2BzX\":\"Avvisali del cambiamento\",\"+uexiy\":\"Avvisali dei cambiamenti\",\"exYcTF\":\"Libreria\",\"1njn7W\":\"Chiaro\",\"1qY5Ue\":\"Link scaduto o non valido\",\"+zSD/o\":\"Collegamento alla home dell'evento\",\"psosdY\":\"Link ai dettagli dell'ordine\",\"6JzK4N\":\"Link al biglietto\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Link consentiti\",\"2BBAbc\":\"Elenco\",\"5NZpX8\":\"Vista elenco\",\"dF6vP6\":\"Online\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Eventi in Diretta\",\"C33p4q\":\"Date caricate\",\"WdmJIX\":\"Caricamento anteprima...\",\"IoDI2o\":\"Caricamento token...\",\"G3Ge9Z\":\"Caricamento dei log del webhook...\",\"NFxlHW\":\"Caricamento Webhooks\",\"E0DoRM\":\"Luogo eliminato\",\"NtLHT3\":\"Indirizzo formattato del luogo\",\"h4vxDc\":\"Latitudine del luogo\",\"f2TMhR\":\"Longitudine del luogo\",\"lnCo2f\":\"Modalità del luogo\",\"8pmGFk\":\"Nome del luogo\",\"7w8lJU\":\"Luogo salvato\",\"YsRXDD\":\"Luogo aggiornato\",\"A/kIva\":\"aggiornamenti del luogo\",\"VppBoU\":\"Luoghi\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo e Copertina\",\"gddQe0\":\"Logo e immagine di copertina per il tuo organizzatore\",\"TBEnp1\":\"Il logo verrà visualizzato nell'intestazione\",\"Jzu30R\":\"Il logo sarà visualizzato sul biglietto\",\"zKTMTg\":\"Longitudine del luogo risolto\",\"PSRm6/\":\"Cerca i miei biglietti\",\"yJFu/X\":\"Sede principale\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Gestisci \",[\"0\"]],\"wZJfA8\":\"Gestisci date e orari per il tuo evento ricorrente\",\"RlzPUE\":\"Gestisci su Stripe\",\"6NXJRK\":\"Gestisci programmazione\",\"zXuaxY\":\"Gestisci la lista d'attesa del tuo evento, visualizza le statistiche e offri i biglietti ai partecipanti.\",\"BWTzAb\":\"Manuale\",\"g2npA5\":\"Offerta manuale\",\"hg6l4j\":\"Marzo\",\"pqRBOz\":\"Contrassegna come convalidato (sostituzione admin)\",\"2L3vle\":\"Max messaggi / 24h\",\"Qp4HWD\":\"Max destinatari / messaggio\",\"3JzsDb\":\"Maggio\",\"agPptk\":\"Mezzo\",\"xDAtGP\":\"Messaggio\",\"bECJqy\":\"Messaggio approvato con successo\",\"1jRD0v\":\"Invia messaggio ai partecipanti con biglietti specifici\",\"uQLXbS\":\"Messaggio annullato\",\"48rf3i\":\"Il messaggio non può superare 5000 caratteri\",\"ZPj0Q8\":\"Dettagli del messaggio\",\"Vjat/X\":\"Il messaggio è obbligatorio\",\"0/yJtP\":\"Invia messaggio ai proprietari degli ordini con prodotti specifici\",\"saG4At\":\"Messaggio programmato\",\"mFdA+i\":\"Livello di messaggistica\",\"v7xKtM\":\"Livello di messaggistica aggiornato con successo\",\"H9HlDe\":\"minuti\",\"agRWc1\":\"Minuti\",\"YYzBv9\":\"Lun\",\"zz/Wd/\":\"Modalità\",\"fpMgHS\":\"Lun\",\"hty0d5\":\"Lunedì\",\"JbIgPz\":\"I valori monetari sono totali approssimativi in tutte le valute\",\"qvF+MT\":\"Monitora e gestisci i lavori in background falliti\",\"kY2ll9\":\"mese\",\"HajiZl\":\"Mese\",\"+8Nek/\":\"Mensile\",\"1LkxnU\":\"Schema mensile\",\"6jefe3\":\"mesi\",\"f8jrkd\":\"altro\",\"JcD7qf\":\"Altre azioni\",\"w36OkR\":\"Eventi più visti (Ultimi 14 giorni)\",\"+Y/na7\":\"Sposta tutte le date prima o dopo\",\"3DIpY0\":\"Più luoghi\",\"g9cQCP\":\"Più tipi di biglietto\",\"GfaxEk\":\"Musica\",\"oVGCGh\":\"I Miei Biglietti\",\"8/brI5\":\"Il nome è obbligatorio\",\"sFFArG\":\"Il nome deve contenere meno di 255 caratteri\",\"sCV5Yc\":\"Nome dell'evento\",\"xxU3NX\":\"Ricavi Netti\",\"7I8LlL\":\"Nuova capacità\",\"n1GRql\":\"Nuova etichetta\",\"y0Fcpd\":\"Nuovo luogo\",\"ArHT/C\":\"Nuove iscrizioni\",\"uK7xWf\":\"Nuovo orario:\",\"veT5Br\":\"Prossima sessione\",\"WXtl5X\":[\"Prossima: \",[\"nextFormatted\"]],\"eWRECP\":\"Vita notturna\",\"HSw5l3\":\"No - Sono un privato o un'azienda non registrata IVA\",\"VHfLAW\":\"Nessun account\",\"+jIeoh\":\"Nessun account trovato\",\"074+X8\":\"Nessun Webhook Attivo\",\"zxnup4\":\"Nessun affiliato da mostrare\",\"Dwf4dR\":\"Nessuna domanda per i partecipanti ancora\",\"th7rdT\":\"Nessun partecipante\",\"PKySlW\":\"Ancora nessun partecipante per questa data.\",\"/UC6qk\":\"Nessun dato di attribuzione trovato\",\"E2vYsO\":\"Stripe non ha ancora segnalato funzionalità.\",\"amMkpL\":\"Nessuna capacità\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nessuna lista di check-in disponibile per questo evento.\",\"wG+knX\":\"Ancora nessun check-in\",\"+dAKxg\":\"Nessuna configurazione trovata\",\"LiLk8u\":\"Nessuna connessione disponibile\",\"eb47T5\":\"Nessun dato trovato per i filtri selezionati. Prova a modificare l'intervallo di date o la valuta.\",\"lFVUyx\":\"Nessuna lista di check-in specifica per la data\",\"I8mtzP\":\"Nessuna data disponibile in questo mese. Prova a navigare verso un altro mese.\",\"yDukIL\":\"Nessuna data corrisponde ai filtri attuali.\",\"B7phdj\":\"Nessuna data corrisponde ai tuoi filtri\",\"/ZB4Um\":\"Nessuna data corrisponde alla tua ricerca\",\"gEdNe8\":\"Nessuna data ancora programmata\",\"27GYXJ\":\"Nessuna data programmata.\",\"pZNOT9\":\"Nessuna data di fine\",\"dW40Uz\":\"Nessun evento trovato\",\"8pQ3NJ\":\"Nessun evento in programma nelle prossime 24 ore\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Nessun lavoro fallito\",\"EpvBAp\":\"Nessuna fattura\",\"XZkeaI\":\"Nessun log trovato\",\"nrSs2u\":\"Nessun messaggio trovato\",\"Rj99yx\":\"Nessuna sessione disponibile\",\"IFU1IG\":\"Nessuna sessione in questa data\",\"OVFwlg\":\"Nessuna domanda d'ordine ancora\",\"EJ7bVz\":\"Nessun ordine trovato\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Ancora nessun ordine per questa data.\",\"wUv5xQ\":\"Nessuna attività dell'organizzatore negli ultimi 14 giorni\",\"vLd1tV\":\"Nessun contesto organizzatore disponibile.\",\"B7w4KY\":\"Nessun altro organizzatore disponibile\",\"PChXMe\":\"Nessun ordine pagato\",\"6jYQGG\":\"Nessun evento passato\",\"CHzaTD\":\"Nessun evento popolare negli ultimi 14 giorni\",\"zK/+ef\":\"Nessun prodotto disponibile per la selezione\",\"M1/lXs\":\"Nessun prodotto configurato per questo evento.\",\"kY7XDn\":\"Nessun prodotto ha voci nella lista d'attesa\",\"wYiAtV\":\"Nessuna iscrizione recente\",\"UW90md\":\"Nessun destinatario trovato\",\"QoAi8D\":\"Nessuna risposta\",\"JeO7SI\":\"Nessuna risposta\",\"EK/G11\":\"Ancora nessuna risposta\",\"7J5OKy\":\"Nessun luogo salvato\",\"wpCjcf\":\"Nessun luogo salvato per ora. Appariranno qui man mano che crei eventi con indirizzi.\",\"mPdY6W\":\"Nessun suggerimento\",\"3sRuiW\":\"Nessun biglietto trovato\",\"k2C0ZR\":\"Nessuna data in arrivo\",\"yM5c0q\":\"Nessun evento in arrivo\",\"qpC74J\":\"Nessun utente trovato\",\"8wgkoi\":\"Nessun evento visualizzato negli ultimi 14 giorni\",\"Arzxc1\":\"Nessuna iscrizione alla lista d'attesa\",\"n5vdm2\":\"Nessun evento webhook è stato registrato per questo endpoint. Gli eventi appariranno qui una volta attivati.\",\"4GhX3c\":\"Nessun Webhook\",\"4+am6b\":\"No, rimani qui\",\"4JVMUi\":\"non modificate\",\"Itw24Q\":\"Non registrato\",\"x5+Lcz\":\"Non Registrato\",\"8n10sz\":\"Non Idoneo\",\"kLvU3F\":\"Avvisa i partecipanti e interrompi le vendite\",\"t9QlBd\":\"Novembre\",\"kAREMN\":\"Numero di date da creare\",\"6u1B3O\":\"Sessione\",\"mmoE62\":\"Sessione annullata\",\"UYWXdN\":\"Data di fine della sessione\",\"k7dZT5\":\"Orario di fine della sessione\",\"Opinaj\":\"Etichetta della sessione\",\"V9flmL\":\"Programmazione delle sessioni\",\"NUTUUs\":\"pagina di programmazione delle sessioni\",\"AT8UKD\":\"Data di inizio della sessione\",\"Um8bvD\":\"Orario di inizio della sessione\",\"Kh3WO8\":\"Riepilogo della sessione\",\"byXCTu\":\"Sessioni\",\"KATw3p\":\"Sessioni (solo future)\",\"85rTR2\":\"Le sessioni possono essere configurate dopo la creazione\",\"dzQfDY\":\"Ottobre\",\"BwJKBw\":\"di\",\"9h7RDh\":\"Offrire\",\"EfK2O6\":\"Offri posto\",\"3sVRey\":\"Offri biglietti\",\"2O7Ybb\":\"Scadenza dell'offerta\",\"1jUg5D\":\"Offerto\",\"l+/HS6\":[\"Le offerte scadono dopo \",[\"timeoutHours\"],\" ore.\"],\"lQgMLn\":\"Nome dell'ufficio o della sede\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Pagamento Offline\",\"nO3VbP\":[\"In vendita \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — fornisci i dettagli di connessione\",\"LuZBbx\":\"Online e in presenza\",\"IXuOqt\":\"Online e in presenza — consulta la programmazione\",\"w3DG44\":\"Dettagli di connessione online\",\"WjSpu5\":\"Evento online\",\"TP6jss\":\"Dettagli di connessione dell'evento online\",\"NdOxqr\":\"Solo gli amministratori dell'account possono eliminare o archiviare eventi. Contatta l'amministratore del tuo account per assistenza.\",\"rnoDMF\":\"Solo gli amministratori dell'account possono eliminare o archiviare organizzatori. Contatta l'amministratore del tuo account per assistenza.\",\"bU7oUm\":\"Invia solo agli ordini con questi stati\",\"M2w1ni\":\"Visibile solo con codice promozionale\",\"y8Bm7C\":\"Apri check-in\",\"RLz7P+\":\"Apri sessione\",\"cDSdPb\":\"Soprannome opzionale mostrato nei selettori, es. \\\"Sala conferenze sede\\\"\",\"HXMJxH\":\"Testo opzionale per disclaimer, informazioni di contatto o note di ringraziamento (solo una riga)\",\"L565X2\":\"opzioni\",\"8m9emP\":\"oppure aggiungi una singola data\",\"dSeVIm\":\"ordine\",\"c/TIyD\":\"Ordine & biglietto\",\"H5qWhm\":\"Ordine annullato\",\"b6+Y+n\":\"Ordine completato\",\"x4MLWE\":\"Conferma Ordine\",\"CsTTH0\":\"Conferma dell'ordine reinviata con successo\",\"ppuQR4\":\"Ordine Creato\",\"0UZTSq\":\"Valuta dell'Ordine\",\"xtQzag\":\"Dettagli ordine\",\"HdmwrI\":\"Email Ordine\",\"bwBlJv\":\"Nome Ordine\",\"vrSW9M\":\"L'ordine è stato cancellato e rimborsato. Il proprietario dell'ordine è stato notificato.\",\"rzw+wS\":\"Titolari degli ordini\",\"oI/hGR\":\"ID ordine\",\"Pc729f\":\"Ordine in Attesa di Pagamento Offline\",\"F4NXOl\":\"Cognome Ordine\",\"RQCXz6\":\"Limiti degli ordini\",\"SO9AEF\":\"Limiti di ordine impostati\",\"5RDEEn\":\"Lingua dell'Ordine\",\"vu6Arl\":\"Ordine Contrassegnato come Pagato\",\"sLbJQz\":\"Ordine non trovato\",\"kvYpYu\":\"Ordine non trovato\",\"i8VBuv\":\"Numero Ordine\",\"eJ8SvM\":\"Numero ordine, data, email dell'acquirente\",\"FaPYw+\":\"Proprietario ordine\",\"eB5vce\":\"Proprietari di ordini con un prodotto specifico\",\"CxLoxM\":\"Proprietari di ordini con prodotti\",\"DoH3fD\":\"Pagamento dell'Ordine in Sospeso\",\"UkHo4c\":\"Rif. ordine\",\"EZy55F\":\"Ordine Rimborsato\",\"6eSHqs\":\"Stati ordine\",\"oW5877\":\"Totale Ordine\",\"e7eZuA\":\"Ordine Aggiornato\",\"1SQRYo\":\"Ordine aggiornato con successo\",\"KndP6g\":\"URL Ordine\",\"3NT0Ck\":\"L'ordine è stato annullato\",\"V5khLm\":\"ordini\",\"sd5IMt\":\"Ordini completati\",\"5It1cQ\":\"Ordini Esportati\",\"tlKX/S\":\"Gli ordini che coprono più date verranno segnalati per la revisione manuale.\",\"UQ0ACV\":\"Totale ordini\",\"B/EBQv\":\"Ordini:\",\"qtGTNu\":\"Account organici\",\"ucgZ0o\":\"Organizzazione\",\"P/JHA4\":\"Organizzatore archiviato con successo\",\"S3CZ5M\":\"Dashboard organizzatore\",\"GzjTd0\":\"Organizzatore eliminato con successo\",\"Uu0hZq\":\"Email organizzatore\",\"Gy7BA3\":\"Indirizzo email dell'organizzatore\",\"SQqJd8\":\"Organizzatore non trovato\",\"HF8Bxa\":\"Organizzatore ripristinato con successo\",\"wpj63n\":\"Impostazioni organizzatore\",\"o1my93\":\"Aggiornamento dello stato dell'organizzatore non riuscito. Riprova più tardi\",\"rLHma1\":\"Stato dell'organizzatore aggiornato\",\"LqBITi\":\"Verrà utilizzato il modello dell'organizzatore/predefinito\",\"q4zH+l\":\"Organizzatori\",\"/IX/7x\":\"Altro\",\"RsiDDQ\":\"Altre Liste (Biglietto Non Incluso)\",\"aDfajK\":\"All'aperto\",\"qMASRF\":\"Messaggi in uscita\",\"iCOVQO\":\"Sostituzione\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Sostituisci prezzo\",\"cnVIpl\":\"Sostituzione rimossa\",\"6/dCYd\":\"Panoramica\",\"6WdDG7\":\"Pagina\",\"8uqsE5\":\"Pagina non più disponibile\",\"QkLf4H\":\"URL della pagina\",\"sF+Xp9\":\"Visualizzazioni pagina\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Account a pagamento\",\"5F7SYw\":\"Rimborso parziale\",\"fFYotW\":[\"Parzialmente rimborsato: \",[\"0\"]],\"i8day5\":\"Trasferisci la commissione all'acquirente\",\"k4FLBQ\":\"Trasferisci all'acquirente\",\"Ff0Dor\":\"Passato\",\"BFjW8X\":\"Scaduto\",\"xTPjSy\":\"Eventi passati\",\"/l/ckQ\":\"Incolla URL\",\"URAE3q\":\"In pausa\",\"4fL/V7\":\"Paga\",\"OZK07J\":\"Paga per sbloccare\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data di pagamento\",\"ENEPLY\":\"Metodo di pagamento\",\"8Lx2X7\":\"Pagamento ricevuto\",\"fx8BTd\":\"Pagamenti non disponibili\",\"C+ylwF\":\"Versamenti\",\"UbRKMZ\":\"In attesa\",\"UkM20g\":\"In attesa di revisione\",\"dPYu1F\":\"Per partecipante\",\"mQV/nJ\":\"al min\",\"VlXNyK\":\"Per ordine\",\"hauDFf\":\"Per biglietto\",\"mnF83a\":\"percentuale Commissione\",\"TNLuRD\":\"Commissione percentuale (%)\",\"MixU2P\":\"La percentuale deve essere compresa tra 0 e 100\",\"MkuVAZ\":\"Percentuale dell'importo della transazione\",\"/Bh+7r\":\"Prestazione\",\"fIp56F\":\"Elimina definitivamente questo evento e tutti i dati associati.\",\"nJeeX7\":\"Elimina definitivamente questo organizzatore e tutti i suoi eventi.\",\"wfCTgK\":\"Rimuovi definitivamente questa data\",\"6kPk3+\":\"Informazioni personali\",\"zmwvG2\":\"Telefono\",\"SdM+Q1\":\"Scegli un luogo\",\"tSR/oe\":\"Scegli una data di fine\",\"e8kzpp\":\"Scegli almeno un giorno del mese\",\"35C8QZ\":\"Scegli almeno un giorno della settimana\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Effettuato\",\"wBJR8i\":\"Stai pianificando un evento?\",\"J3lhKT\":\"Commissione piattaforma\",\"RD51+P\":[\"Commissione piattaforma di \",[\"0\"],\" detratta dal tuo pagamento\"],\"br3Y/y\":\"Commissioni piattaforma\",\"3buiaw\":\"Report commissioni piattaforma\",\"kv9dM4\":\"Ricavi della piattaforma\",\"PJ3Ykr\":\"Controlla il tuo biglietto per il nuovo orario. I tuoi biglietti sono ancora validi — non è necessaria alcuna azione, a meno che i nuovi orari non ti vadano bene. Rispondi a questa email per qualsiasi domanda.\",\"OtjenF\":\"Inserisci un indirizzo email valido\",\"jEw0Mr\":\"Inserisci un URL valido\",\"n8+Ng/\":\"Inserisci il codice a 5 cifre\",\"r+lQXT\":\"Inserisci il tuo numero di partita IVA\",\"Dvq0wf\":\"Per favore, fornisci un'immagine.\",\"2cUopP\":\"Riavvia il processo di acquisto.\",\"GoXxOA\":\"Seleziona una data e un orario\",\"8KmsFa\":\"Seleziona un intervallo di date\",\"EFq6EG\":\"Per favore, seleziona un'immagine.\",\"fuwKpE\":\"Riprova.\",\"klWBeI\":\"Attendi prima di richiedere un altro codice\",\"hfHhaa\":\"Attendi mentre prepariamo i tuoi affiliati per l'esportazione...\",\"o+tJN/\":\"Attendi mentre prepariamo i tuoi partecipanti per l'esportazione...\",\"+5Mlle\":\"Attendi mentre prepariamo i tuoi ordini per l'esportazione...\",\"trnWaw\":\"Polacco\",\"luHAJY\":\"Eventi popolari (Ultimi 14 giorni)\",\"p/78dY\":\"Posizione\",\"TjX7xL\":\"Messaggio Post-Checkout\",\"OESu7I\":\"Evita l'overselling condividendo l'inventario tra più tipi di biglietto.\",\"NgVUL2\":\"Anteprima modulo di checkout\",\"cs5muu\":\"Anteprima pagina evento\",\"+4yRWM\":\"Prezzo del biglietto\",\"Jm2AC3\":\"Fascia di prezzo\",\"a5jvSX\":\"Fasce di prezzo\",\"ReihZ7\":\"Anteprima di Stampa\",\"JnuPvH\":\"Stampa biglietto\",\"tYF4Zq\":\"Stampa in PDF\",\"LcET2C\":\"Informativa sulla privacy\",\"8z6Y5D\":\"Elabora rimborso\",\"JcejNJ\":\"Elaborazione ordine\",\"EWCLpZ\":\"Prodotto Creato\",\"XkFYVB\":\"Prodotto Eliminato\",\"YMwcbR\":\"Ripartizione vendite prodotti, ricavi e tasse\",\"ls0mTC\":\"Le impostazioni del prodotto non possono essere modificate per le date annullate.\",\"2339ej\":\"Impostazioni del prodotto salvate con successo\",\"ldVIlB\":\"Prodotto Aggiornato\",\"CP3D8G\":\"Avanzamento\",\"JoKGiJ\":\"Codice promo\",\"k3wH7i\":\"Ripartizione utilizzo codici promo e sconti\",\"tZqL0q\":\"codici promozionali\",\"oCHiz3\":\"Codici promozionali\",\"uEhdRh\":\"Solo promo\",\"dLm8V5\":\"Le email promozionali potrebbero comportare la sospensione dell'account\",\"XoEWtl\":\"Inserisci almeno un campo dell’indirizzo per il nuovo luogo.\",\"2W/7Gz\":\"Fornisci queste informazioni prima del prossimo controllo di Stripe per non interrompere i pagamenti.\",\"aemBRq\":\"Provider\",\"EEYbdt\":\"Pubblica\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Acquistato\",\"JunetL\":\"Acquirente\",\"phmeUH\":\"Email acquirente\",\"ywR4ZL\":\"Check-in con codice QR\",\"oWXNE5\":\"Qtà\",\"biEyJ4\":\"Risposte\",\"k/bJj0\":\"Domande riordinate\",\"b24kPi\":\"Coda\",\"lTPqpM\":\"Suggerimento rapido\",\"fqDzSu\":\"Tasso\",\"mnUGVC\":\"Limite di frequenza superato. Per favore riprova più tardi.\",\"t41hVI\":\"Rioffri posto\",\"TNclgc\":\"Riattivare questa data? Verrà riaperta per le vendite future.\",\"uqoRbb\":\"Analisi in tempo reale\",\"xzRvs4\":[\"Ricevi aggiornamenti sui prodotti da \",[\"0\"],\".\"],\"pLXbi8\":\"Iscrizioni recenti\",\"3kJ0gv\":\"Partecipanti recenti\",\"qhfiwV\":\"Ultimi check-in\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Ordini recenti\",\"7hPBBn\":\"destinatario\",\"jp5bq8\":\"destinatari\",\"yPrbsy\":\"Destinatari\",\"E1F5Ji\":\"I destinatari sono disponibili dopo l'invio del messaggio\",\"wuhHPE\":\"Ricorrente\",\"asLqwt\":\"Evento ricorrente\",\"D0tAMe\":\"Eventi ricorrenti\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Reindirizzamento a Stripe...\",\"pnoTN5\":\"Account di riferimento\",\"ACKu03\":\"Aggiorna Anteprima\",\"vuFYA6\":\"Rimborsa tutti gli ordini per queste date\",\"4cRUK3\":\"Rimborsa tutti gli ordini per questa data\",\"fKn/k6\":\"Importo rimborso\",\"qY4rpA\":\"Rimborso fallito\",\"TspTcZ\":\"Rimborso emesso\",\"FaK/8G\":[\"Rimborsa ordine \",[\"0\"]],\"MGbi9P\":\"Rimborso in sospeso\",\"BDSRuX\":[\"Rimborsato: \",[\"0\"]],\"bU4bS1\":\"Rimborsi\",\"rYXfOA\":\"Impostazioni regionali\",\"5tl0Bp\":\"Domande di registrazione\",\"ZNo5k1\":\"Rimanenti\",\"EMnuA4\":\"Promemoria programmato\",\"Bjh87R\":\"Rimuovi etichetta da tutte le date\",\"KkJtVK\":\"Riapri alle nuove vendite\",\"XJwWJp\":\"Riaprire questa data alle nuove vendite? I biglietti precedentemente annullati non verranno ripristinati — i partecipanti interessati restano annullati e i rimborsi già emessi non verranno annullati.\",\"bAwDQs\":\"Ripeti ogni\",\"CQeZT8\":\"Report non trovato\",\"JEPMXN\":\"Richiedi un nuovo link\",\"TMLAx2\":\"Obbligatorio\",\"mdeIOH\":\"Reinvia codice\",\"sQxe68\":\"Reinvia conferma\",\"bxoWpz\":\"Invia nuovamente l'email di conferma\",\"G42SNI\":\"Invia nuovamente l'email\",\"TTpXL3\":[\"Reinvia tra \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Reinvia biglietto\",\"Uwsg2F\":\"Riservato\",\"8wUjGl\":\"Riservato fino a\",\"a5z8mb\":\"Ripristina al prezzo base\",\"kCn6wb\":\"Reimpostazione in corso...\",\"404zLK\":\"Nome del luogo o della sede risolto\",\"ZlCDf+\":\"Risposta\",\"bsydMp\":\"Dettagli della risposta\",\"yKu/3Y\":\"Ripristina\",\"RokrZf\":\"Ripristina evento\",\"/JyMGh\":\"Ripristina organizzatore\",\"HFvFRb\":\"Ripristina questo evento per renderlo nuovamente visibile.\",\"DDIcqy\":\"Ripristina questo organizzatore e rendilo nuovamente attivo.\",\"mO8KLE\":\"risultati\",\"6gRgw8\":\"Riprova\",\"1BG8ga\":\"Riprova tutto\",\"rDC+T6\":\"Riprova lavoro\",\"CbnrWb\":\"Torna all'evento\",\"mdQ0zb\":\"Sedi riutilizzabili per i tuoi eventi. I luoghi creati dal completamento automatico vengono salvati qui automaticamente.\",\"XFOPle\":\"Riutilizza\",\"1Zehp4\":\"Riutilizza una connessione Stripe di un altro organizzatore di questo account.\",\"Oo/PLb\":\"Riepilogo Ricavi\",\"O/8Ceg\":\"Ricavi di oggi\",\"CfuueU\":\"Revoca l'offerta\",\"RIgKv+\":\"Continua fino a una data specifica\",\"JYRqp5\":\"Sab\",\"dFFW9L\":[\"Vendita terminata \",[\"0\"]],\"loCKGB\":[\"La vendita termina il \",[\"0\"]],\"wlfBad\":\"Periodo di vendita\",\"qi81Jg\":\"Le date del periodo di vendita si applicano a tutte le date della tua programmazione. Per controllare prezzi e disponibilità delle singole date, utilizza le sostituzioni nella <0>pagina di programmazione delle sessioni.\",\"5CDM6r\":\"Periodo di vendita stabilito\",\"ftzaMf\":\"Periodo di vendita, limiti di ordine, visibilità\",\"zpekWp\":[\"Inizio vendita \",[\"0\"]],\"mUv9U4\":\"Vendite\",\"9KnRdL\":\"Le vendite sono sospese\",\"JC3J0k\":\"Dettaglio di vendite, presenze e check-in per sessione\",\"3VnlS9\":\"Vendite, ordini e metriche di performance per tutti gli eventi\",\"3Q1AWe\":\"Vendite:\",\"LeuERW\":\"Come l'evento\",\"B4nE3N\":\"Prezzo del biglietto di esempio\",\"8BRPoH\":\"Luogo di Esempio\",\"PiK6Ld\":\"Sab\",\"+5kO8P\":\"Sabato\",\"zJiuDn\":\"Salva sostituzione delle commissioni\",\"NB8Uxt\":\"Salva programmazione\",\"KZrfYJ\":\"Salva link social\",\"9Y3hAT\":\"Salva Modello\",\"C8ne4X\":\"Salva Design del Biglietto\",\"cTI8IK\":\"Salva impostazioni IVA\",\"6/TNCd\":\"Salva impostazioni IVA\",\"4RvD9q\":\"Luogo salvato\",\"cgw0cL\":\"Luoghi salvati\",\"lvSrsT\":\"Luoghi salvati\",\"Fbqm/I\":\"Salvando una sostituzione viene creata una configurazione dedicata per questo organizzatore, se al momento è impostato sul valore predefinito di sistema.\",\"I+FvbD\":\"Scansiona\",\"0zd6Nm\":\"Scansiona un biglietto per registrare un partecipante\",\"bQG7Qk\":\"I biglietti scansionati appariranno qui\",\"WDYSLJ\":\"Modalità scanner\",\"gmB6oO\":\"Programmazione\",\"j6NnBq\":\"Programmazione creata con successo\",\"YP7frt\":\"La programmazione termina il\",\"QS1Nla\":\"Programma per dopo\",\"NAzVVw\":\"Programma messaggio\",\"Fz09JP\":\"La pianificazione inizia il\",\"4ba0NE\":\"Programmata\",\"qcP/8K\":\"Orario programmato\",\"A1taO8\":\"Cerca\",\"ftNXma\":\"Cerca affiliati...\",\"VMU+zM\":\"Cerca partecipanti\",\"VY+Bdn\":\"Cerca per nome account o e-mail...\",\"VX+B3I\":\"Cerca per titolo evento o organizzatore...\",\"R0wEyA\":\"Cerca per nome lavoro o eccezione...\",\"VT+urE\":\"Cerca per nome o email...\",\"GHdjuo\":\"Cerca per nome, email o account...\",\"4mBFO7\":\"Cerca per nome, n° ordine, n° biglietto o email\",\"20ce0U\":\"Cerca per ID ordine, nome cliente o email...\",\"4DSz7Z\":\"Cerca per oggetto, evento o account...\",\"nQC7Z9\":\"Cerca date...\",\"iRtEpV\":\"Cerca date…\",\"JRM7ao\":\"Cerca un indirizzo\",\"BWF1kC\":\"Cerca messaggi...\",\"3aD3GF\":\"Stagionale\",\"ku//5b\":\"Secondo\",\"Mck5ht\":\"Pagamento sicuro\",\"s7tXqF\":\"Vedi programmazione\",\"JFap6u\":\"Vedi cosa serve ancora a Stripe\",\"p7xUrt\":\"Seleziona una categoria\",\"hTKQwS\":\"Seleziona una data e un orario\",\"e4L7bF\":\"Seleziona un messaggio per visualizzarne il contenuto\",\"zPRPMf\":\"Seleziona un livello\",\"uqpVri\":\"Seleziona un orario\",\"BFRSTT\":\"Seleziona Account\",\"wgNoIs\":\"Seleziona tutto\",\"mCB6Je\":\"Seleziona tutto\",\"aCEysm\":[\"Seleziona tutto il \",[\"0\"]],\"a6+167\":\"Seleziona un evento\",\"CFbaPk\":\"Seleziona il gruppo di partecipanti\",\"88a49s\":\"Seleziona fotocamera\",\"tVW/yo\":\"Seleziona valuta\",\"SJQM1I\":\"Seleziona data\",\"n9ZhRa\":\"Seleziona data e ora di fine\",\"gTN6Ws\":\"Seleziona ora di fine\",\"0U6E9W\":\"Seleziona categoria evento\",\"j9cPeF\":\"Seleziona tipi di evento\",\"ypTjHL\":\"Seleziona sessione\",\"KizCK7\":\"Seleziona data e ora di inizio\",\"dJZTv2\":\"Seleziona ora di inizio\",\"x8XMsJ\":\"Seleziona il livello di messaggistica per questo account. Questo controlla i limiti dei messaggi e i permessi dei link.\",\"aT3jZX\":\"Seleziona fuso orario\",\"TxfvH2\":\"Seleziona quali partecipanti devono ricevere questo messaggio\",\"Ropvj0\":\"Seleziona quali eventi attiveranno questo webhook\",\"+6YAwo\":\"selezionati\",\"ylXj1N\":\"Selezionato\",\"uq3CXQ\":\"Esaurisci il tuo evento.\",\"j9b/iy\":\"Si vende velocemente 🔥\",\"73qYgo\":\"Invia come prova\",\"HMAqFK\":\"Invia email ai partecipanti, ai possessori di biglietti o ai titolari di ordini. I messaggi possono essere inviati immediatamente o programmati per un secondo momento.\",\"22Itl6\":\"Inviami una copia\",\"NpEm3p\":\"Invia ora\",\"nOBvex\":\"Invia dati di ordini e partecipanti in tempo reale ai tuoi sistemi esterni.\",\"1lNPhX\":\"Invia email di notifica rimborso\",\"eaUTwS\":\"Invia link di reimpostazione\",\"5cV4PY\":\"Invia a tutte le sessioni o scegline una specifica\",\"QEQlnV\":\"Invia il tuo primo messaggio\",\"3nMAVT\":\"Invio tra 2g 4h\",\"IoAuJG\":\"Invio in corso...\",\"h69WC6\":\"Inviato\",\"BVu2Hz\":\"Inviato da\",\"ZFa8wv\":\"Inviato ai partecipanti quando una data programmata viene annullata\",\"SPdzrs\":\"Inviato ai clienti quando effettuano un ordine\",\"LxSN5F\":\"Inviato a ogni partecipante con i dettagli del biglietto\",\"hgvbYY\":\"Settembre\",\"5sN96e\":\"Sessione annullata\",\"89xaFU\":\"Imposta le impostazioni predefinite delle commissioni della piattaforma per i nuovi eventi creati sotto questo organizzatore.\",\"eXssj5\":\"Imposta le impostazioni predefinite per i nuovi eventi creati con questo organizzatore.\",\"uPe5p8\":\"Imposta la durata di ciascuna data\",\"xNsRxU\":\"Imposta il numero di date\",\"ODuUEi\":\"Imposta o rimuovi l'etichetta della data\",\"buHACR\":\"Imposta l'orario di fine di ciascuna data in modo che sia successivo all'orario di inizio di questa durata.\",\"TaeFgl\":\"Imposta a illimitato (rimuovi limite)\",\"pd6SSe\":\"Configura una programmazione ricorrente per creare automaticamente le date, oppure aggiungile una alla volta.\",\"s0FkEx\":\"Configura liste di check-in per diversi ingressi, sessioni o giorni.\",\"TaWVGe\":\"Configura i versamenti\",\"gzXY7l\":\"Configura programmazione\",\"xMO+Ao\":\"Configura la tua organizzazione\",\"h/9JiC\":\"Configura la tua programmazione\",\"ETC76A\":\"Imposta, modifica o rimuovi il luogo o i dettagli online della sessione\",\"C3htzi\":\"Impostazione aggiornata\",\"Ohn74G\":\"Configurazione e design\",\"1W5XyZ\":\"La configurazione richiede solo pochi minuti — non serve un account Stripe preesistente. Stripe gestisce carte, wallet, metodi di pagamento regionali e protezione antifrode, così tu puoi concentrarti sul tuo evento.\",\"GG7qDw\":\"Condividi link affiliato\",\"hL7sDJ\":\"Condividi pagina dell'organizzatore\",\"jy6QDF\":\"Gestione capacità condivisa\",\"jDNHW4\":\"Sposta orari\",\"tPfIaW\":[\"Orari spostati per \",[\"count\"],\" data/e\"],\"WwlM8F\":\"Mostra opzioni avanzate\",\"cMW+gm\":[\"Mostra tutte le piattaforme (\",[\"0\"],\" con valori)\"],\"wXi9pZ\":\"Mostra note allo staff non autenticato\",\"UVPI5D\":\"Mostra meno piattaforme\",\"Eu/N/d\":\"Mostra casella di opt-in marketing\",\"SXzpzO\":\"Mostra casella di opt-in marketing per impostazione predefinita\",\"57tTk5\":\"Mostra altre date\",\"b33PL9\":\"Mostra più piattaforme\",\"Eut7p9\":\"Mostra dettagli allo staff non autenticato\",\"+RoWKN\":\"Mostra risposte allo staff non autenticato\",\"t1LIQW\":[\"Visualizzazione di \",[\"0\"],\" record su \",[\"totalRows\"]],\"E717U9\":[\"Visualizzazione \",[\"0\"],\"–\",[\"1\"],\" di \",[\"2\"]],\"5rzhBQ\":[\"Visualizzazione di \",[\"MAX_VISIBLE\"],\" su \",[\"totalAvailable\"],\" date. Digita per cercare.\"],\"WSt3op\":[\"Visualizzazione delle prime \",[\"0\"],\" — le restanti \",[\"1\"],\" sessione/i verranno comunque incluse all'invio del messaggio.\"],\"OJLTEL\":\"Mostrato allo staff alla prima apertura.\",\"jVRHeq\":\"Iscritto\",\"5C7J+P\":\"Evento singolo\",\"E//btK\":\"Salta le date modificate manualmente\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sociale\",\"d0rUsW\":\"Link social\",\"j/TOB3\":\"Link social e sito web\",\"s9KGXU\":\"Venduto\",\"iACSrw\":\"Alcuni dettagli sono nascosti all'accesso pubblico. Accedi per vedere tutto.\",\"KTxc6k\":\"Qualcosa è andato storto, riprova o contatta l'assistenza se il problema persiste\",\"lkE00/\":\"Qualcosa è andato storto. Riprova più tardi.\",\"wdxz7K\":\"Fonte\",\"fDG2by\":\"Spiritualità\",\"oPaRES\":\"Dividi il check-in per giorno, area o tipo di biglietto. Condividi il link con lo staff — senza account.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Istruzioni per lo staff\",\"tXkhj/\":\"Inizio\",\"JcQp9p\":\"Data e ora di inizio\",\"0m/ekX\":\"Data e ora di inizio\",\"izRfYP\":\"La data di inizio è obbligatoria\",\"tuO4fV\":\"Data di inizio della sessione\",\"2R1+Rv\":\"Ora di inizio dell'evento\",\"2Olov3\":\"Orario di inizio della sessione\",\"n9ZrDo\":\"Inizia a digitare una sede o un indirizzo...\",\"qeFVhN\":[\"Inizia tra \",[\"diffDays\"],\" giorni\"],\"AOqtxN\":[\"Inizia tra \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Inizia tra \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Inizia tra \",[\"seconds\"],\"s\"],\"NqChgF\":\"Inizia domani\",\"2NbyY/\":\"Statistiche\",\"GVUxAX\":\"Le statistiche si basano sulla data di creazione dell'account\",\"29Hx9U\":\"Statistiche\",\"5ia+r6\":\"Ancora necessario\",\"wuV0bK\":\"Interrompi Impersonificazione\",\"s/KaDb\":\"Stripe collegato\",\"Bk06QI\":\"Stripe connesso\",\"akZMv8\":[\"Connessione Stripe copiata da \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe non ha restituito un link di configurazione. Riprova.\",\"aKtF0O\":\"Stripe non connesso\",\"9i0++A\":\"ID pagamento Stripe\",\"R1lIMV\":\"Presto Stripe avrà bisogno di altri dettagli\",\"FzcCHA\":\"Stripe ti guiderà con alcune domande rapide per concludere la configurazione.\",\"eYbd7b\":\"Dom\",\"ii0qn/\":\"L'oggetto è obbligatorio\",\"M7Uapz\":\"L'oggetto apparirà qui\",\"6aXq+t\":\"Oggetto:\",\"JwTmB6\":\"Prodotto Duplicato con Successo\",\"WUOCgI\":\"Posto offerto con successo\",\"IvxA4G\":[\"Biglietti offerti con successo a \",[\"count\"],\" persone\"],\"kKpkzy\":\"Biglietti offerti con successo a 1 persona\",\"Zi3Sbw\":\"Rimosso dalla lista d'attesa con successo\",\"RuaKfn\":\"Indirizzo aggiornato con successo\",\"kzx0uD\":\"Impostazioni predefinite dell'evento aggiornate correttamente\",\"5n+Wwp\":\"Organizzatore aggiornato con successo\",\"DMCX/I\":\"Impostazioni predefinite delle commissioni aggiornate con successo\",\"URUYHc\":\"Impostazioni delle commissioni della piattaforma aggiornate con successo\",\"0Dk/l8\":\"Impostazioni SEO aggiornate con successo\",\"S8Tua9\":\"Impostazioni aggiornate con successo\",\"MhOoLQ\":\"Link social aggiornati con successo\",\"CNSSfp\":\"Impostazioni di tracciamento aggiornate con successo\",\"kj7zYe\":\"Webhook aggiornato con successo\",\"dXoieq\":\"Riepilogo\",\"/RfJXt\":[\"Festival musicale estivo \",[\"0\"]],\"CWOPIK\":\"Festival Musicale Estivo 2025\",\"D89zck\":\"Dom\",\"DBC3t5\":\"Domenica\",\"UaISq3\":\"Svedese\",\"JZTQI0\":\"Cambia organizzatore\",\"9YHrNC\":\"Predefinito del sistema\",\"lruQkA\":\"Tocca lo schermo per riprendere\",\"TJUrME\":[\"Stai contattando i partecipanti di \",[\"0\"],\" sessioni selezionate.\"],\"yT6dQ8\":\"Tasse raccolte raggruppate per tipo di tassa ed evento\",\"Ye321X\":\"Nome Tassa\",\"WyCBRt\":\"Riepilogo Tasse\",\"GkH0Pq\":\"Tasse & commissioni applicate\",\"Rwiyt2\":\"Imposte configurate\",\"iQZff7\":\"Tasse, commissioni, visibilità, periodo di vendita, evidenziazione del prodotto & limiti degli ordini\",\"SXvRWU\":\"Collaborazione di squadra\",\"vlf/In\":\"Tecnologia\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Spiega cosa aspettarsi dal tuo evento\",\"NiIUyb\":\"Parlaci del tuo evento\",\"DovcfC\":\"Parlaci della tua organizzazione. Queste informazioni saranno visualizzate sulle pagine dei tuoi eventi.\",\"69GWRq\":\"Indicaci con quale frequenza si ripete il tuo evento e creeremo tutte le date al posto tuo.\",\"mXPbwY\":\"Indicaci il tuo stato di registrazione IVA per applicare il corretto trattamento IVA alle commissioni della piattaforma.\",\"7wtpH5\":\"Modello Attivo\",\"QHhZeE\":\"Modello creato con successo\",\"xrWdPR\":\"Modello eliminato con successo\",\"G04Zjt\":\"Modello salvato con successo\",\"xowcRf\":\"Termini di servizio\",\"6K0GjX\":\"Il testo potrebbe essere difficile da leggere\",\"u0F1Ey\":\"Gio\",\"nm3Iz/\":\"Grazie per aver partecipato!\",\"pYwj0k\":\"Grazie,\",\"k3IitN\":\"È tutto\",\"KfmPRW\":\"Colore di sfondo della pagina. Quando si utilizza un'immagine di copertina, questa viene applicata come sovrapposizione.\",\"MDNyJz\":\"Il codice scadrà tra 10 minuti. Controlla la cartella spam se non vedi l'email.\",\"AIF7J2\":\"La valuta in cui è definita la commissione fissa. Verrà convertita nella valuta dell'ordine al momento del pagamento.\",\"MJm4Tq\":\"La valuta dell'ordine\",\"cDHM1d\":\"L'indirizzo e-mail è stato modificato. Il partecipante riceverà un nuovo biglietto all'indirizzo e-mail aggiornato.\",\"I/NNtI\":\"La sede dell'evento\",\"tXadb0\":\"L'evento che stai cercando non è disponibile al momento. Potrebbe essere stato rimosso, scaduto o l'URL potrebbe essere errato.\",\"5fPdZe\":\"La prima data dalla quale verrà generata questa pianificazione.\",\"EBzPwC\":\"L'indirizzo completo dell'evento\",\"sxKqBm\":\"L'importo completo dell'ordine sarà rimborsato al metodo di pagamento originale del cliente.\",\"KgDp6G\":\"Il link che stai cercando di accedere è scaduto o non è più valido. Controlla la tua e-mail per un link aggiornato per gestire il tuo ordine.\",\"5OmEal\":\"La lingua del cliente\",\"Np4eLs\":[\"Il massimo è \",[\"MAX_PREVIEW\"],\" sessioni. Riduci l'intervallo di date, la frequenza o il numero di sessioni al giorno.\"],\"sYLeDq\":\"L'organizzatore che stai cercando non è stato trovato. La pagina potrebbe essere stata spostata, eliminata o l'URL potrebbe essere errato.\",\"PCr4zw\":\"La sostituzione viene registrata nel log di audit dell'ordine.\",\"C4nQe5\":\"La commissione della piattaforma viene aggiunta al prezzo del biglietto. Gli acquirenti pagano di più, ma tu ricevi il prezzo completo del biglietto.\",\"HxxXZO\":\"Il colore principale del marchio utilizzato per i pulsanti e le evidenziazioni\",\"z0KrIG\":\"L'orario programmato è obbligatorio\",\"EWErQh\":\"L'orario programmato deve essere nel futuro\",\"UNd0OU\":[\"La sessione di \\\"\",[\"title\"],\"\\\" originariamente prevista per \",[\"0\"],\" è stata riprogrammata.\"],\"DEcpfp\":\"Il corpo del template contiene sintassi Liquid non valida. Correggila e riprova.\",\"injXD7\":\"Impossibile convalidare il numero di partita IVA. Controlla il numero e riprova.\",\"A4UmDy\":\"Teatro\",\"tDwYhx\":\"Tema e colori\",\"O7g4eR\":\"Non ci sono date in arrivo per questo evento\",\"HrIl0p\":[\"Non c'è alcuna lista di check-in dedicata a questa data. La lista \\\"\",[\"0\"],\"\\\" registra i partecipanti di tutte le date — il personale che scansiona un biglietto per una data diversa otterrà comunque un check-in riuscito.\"],\"dt3TwA\":\"Questi sono i prezzi e le quantità predefiniti per tutte le date. Le date di vendita delle fasce si applicano a livello globale. Puoi sostituire prezzi e quantità per le singole date nella <0>pagina di programmazione delle sessioni.\",\"062KsE\":\"Questi dettagli vengono mostrati sul biglietto del partecipante e nel riepilogo dell'ordine solo per questa data.\",\"5Eu+tn\":\"Questi dettagli verranno mostrati solo se l'ordine viene completato con successo.\",\"jQjwR+\":\"Questi dettagli sostituiranno qualsiasi luogo esistente nelle sessioni interessate e saranno mostrati sui biglietti dei partecipanti.\",\"QP3gP+\":\"Queste impostazioni si applicano solo al codice di incorporamento copiato e non verranno salvate.\",\"HirZe8\":\"Questi modelli verranno utilizzati come predefiniti per tutti gli eventi nella tua organizzazione. I singoli eventi possono sostituire questi modelli con le proprie versioni personalizzate.\",\"lzAaG5\":\"Questi modelli sostituiranno le impostazioni predefinite dell'organizzatore solo per questo evento. Se non è impostato alcun modello personalizzato qui, verrà utilizzato il modello dell'organizzatore.\",\"UlykKR\":\"Terzo\",\"wkP5FM\":\"Si applica a ogni data corrispondente dell'evento, incluse le date non attualmente visibili. I partecipanti registrati in una qualsiasi di queste date saranno raggiungibili tramite il compositore di messaggi al termine dell'aggiornamento.\",\"SOmGDa\":\"Questa lista di check-in è dedicata a una sessione che è stata annullata, quindi non può più essere utilizzata per i check-in.\",\"XBNC3E\":\"Questo codice sarà usato per tracciare le vendite. Sono ammessi solo lettere, numeri, trattini e trattini bassi.\",\"AaP0M+\":\"Questa combinazione di colori potrebbe essere difficile da leggere per alcuni utenti\",\"o1phK/\":[\"Questa data ha \",[\"orderCount\"],\" ordine/i che ne verranno interessati.\"],\"F/UtGt\":\"Questa data è stata annullata. Puoi comunque eliminarla per rimuoverla definitivamente.\",\"BLZ7pX\":\"Questa data è nel passato. Verrà creata ma non sarà visibile ai partecipanti tra le date in arrivo.\",\"7IIY0z\":\"Questa data è contrassegnata come esaurita.\",\"bddWMP\":\"Questa data non è più disponibile. Seleziona un'altra data.\",\"RzEvf5\":\"Questo evento è terminato\",\"YClrdK\":\"Questo evento non è ancora pubblicato\",\"dFJnia\":\"Questo è il nome del tuo organizzatore che sarà visibile agli utenti.\",\"vt7jiq\":\"Questa è l'unica volta in cui il segreto di firma verrà mostrato. Copialo ora e conservalo in modo sicuro.\",\"L7dIM7\":\"Questo link non è valido o è scaduto.\",\"MR5ygV\":\"Questo link non è più valido\",\"9LEqK0\":\"Questo nome è visibile agli utenti finali\",\"QdUMM9\":\"Questa sessione ha raggiunto la capacità massima\",\"j5FdeA\":\"Questo ordine è in fase di elaborazione.\",\"sjNPMw\":\"Questo ordine è stato abbandonato. Puoi avviarne uno nuovo in qualsiasi momento.\",\"OhCesD\":\"Questo ordine è stato annullato. Puoi iniziare un nuovo ordine in qualsiasi momento.\",\"lyD7rQ\":\"Questo profilo organizzatore non è ancora pubblicato\",\"9b5956\":\"Questa anteprima mostra come apparirà la tua email con dati di esempio. Le email effettive utilizzeranno valori reali.\",\"uM9Alj\":\"Questo prodotto è evidenziato nella pagina dell'evento\",\"RqSKdX\":\"Questo prodotto è esaurito\",\"W12OdJ\":\"Questo report ha solo scopo informativo. Consultare sempre un consulente fiscale prima di utilizzare questi dati per scopi contabili o fiscali. Si prega di fare un confronto con la dashboard di Stripe, poiché Hi.Events potrebbe non includere dati storici.\",\"0Ew0uk\":\"Questo biglietto è stato appena scansionato. Attendi prima di scansionare di nuovo.\",\"FYXq7k\":[\"Verranno interessate \",[\"loadedAffectedCount\"],\" data/e.\"],\"kvpxIU\":\"Questo sarà usato per notifiche e comunicazioni con i tuoi utenti.\",\"rhsath\":\"Questo non sarà visibile ai clienti, ma ti aiuta a identificare l'affiliato.\",\"hV6FeJ\":\"Flusso\",\"+FjWgX\":\"Gio\",\"kkDQ8m\":\"Giovedì\",\"0GSPnc\":\"Design del Biglietto\",\"EZC/Cu\":\"Design del biglietto salvato con successo\",\"bbslmb\":\"Designer biglietti\",\"1BPctx\":\"Biglietto per\",\"bgqf+K\":\"Email del possessore del biglietto\",\"oR7zL3\":\"Nome del possessore del biglietto\",\"HGuXjF\":\"Possessori di biglietti\",\"CMUt3Y\":\"Titolari dei biglietti\",\"awHmAT\":\"ID biglietto\",\"6czJik\":\"Logo del Biglietto\",\"OkRZ4Z\":\"Nome Biglietto\",\"t79rDv\":\"Biglietto non trovato\",\"6tmWch\":\"Biglietto o prodotto\",\"1tfWrD\":\"Anteprima biglietto per\",\"KnjoUA\":\"Prezzo del biglietto\",\"tGCY6d\":\"Prezzo Biglietto\",\"pGZOcL\":\"Biglietto reinviato con successo\",\"8jLPgH\":\"Tipo di Biglietto\",\"X26cQf\":\"URL Biglietto\",\"8qsbZ5\":\"Biglietteria e vendite\",\"zNECqg\":\"biglietti\",\"6GQNLE\":\"Biglietti\",\"NRhrIB\":\"Biglietti e prodotti\",\"OrWHoZ\":\"I biglietti vengono offerti automaticamente ai clienti in lista d'attesa quando si libera la disponibilità.\",\"EUnesn\":\"Biglietti disponibili\",\"AGRilS\":\"Biglietti Venduti\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Orario\",\"dMtLDE\":\"a\",\"/jQctM\":\"A\",\"tiI71C\":\"Per aumentare i tuoi limiti, contattaci a\",\"ecUA8p\":\"Oggi\",\"W428WC\":\"Attiva colonne\",\"BRMXj0\":\"Domani\",\"UBSG1X\":\"Migliori organizzatori (Ultimi 14 giorni)\",\"3sZ0xx\":\"Account Totali\",\"EaAPbv\":\"Importo totale pagato\",\"SMDzqJ\":\"Totale Partecipanti\",\"orBECM\":\"Totale Raccolto\",\"k5CU8c\":\"Totale iscrizioni\",\"4B7oCp\":\"Commissione totale\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Utenti Totali\",\"oJjplO\":\"Visualizzazioni totali\",\"rBZ9pz\":\"Tour\",\"orluER\":\"Traccia la crescita e le prestazioni dell'account per fonte di attribuzione\",\"YwKzpH\":\"Tracciamento e analisi\",\"uKOFO5\":\"Vero se pagamento offline\",\"9GsDR2\":\"Vero se pagamento in sospeso\",\"GUA0Jy\":\"Prova un altro termine o filtro\",\"2P/OWN\":\"Prova a modificare i tuoi filtri per vedere altre date.\",\"ouM5IM\":\"Prova un'altra email\",\"3DZvE7\":\"Prova Hi.Events Gratis\",\"7P/9OY\":\"Mar\",\"vq2WxD\":\"Mar\",\"G3myU+\":\"Martedì\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Disattiva audio\",\"KUOhTy\":\"Attiva audio\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Digita \\\"elimina\\\" per confermare\",\"XxecLm\":\"Tipo di biglietto\",\"IrVSu+\":\"Impossibile duplicare il prodotto. Controlla i tuoi dati\",\"Vx2J6x\":\"Impossibile recuperare il partecipante\",\"h0dx5e\":\"Impossibile unirsi alla lista d'attesa\",\"DaE0Hg\":\"Impossibile caricare i dettagli del partecipante.\",\"GlnD5Y\":\"Impossibile caricare i prodotti per questa data. Riprova.\",\"17VbmV\":\"Impossibile annullare il check-in\",\"n57zCW\":\"Account non attribuiti\",\"9uI/rE\":\"Annulla\",\"b9SN9q\":\"Riferimento ordine unico\",\"Ef7StM\":\"Sconosciuto\",\"ZBAScj\":\"Partecipante Sconosciuto\",\"MEIAzV\":\"Senza nome\",\"K6L5Mx\":\"Luogo senza nome\",\"X13xGn\":\"Non attendibile\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Aggiorna affiliato\",\"59qHrb\":\"Aggiorna capacità\",\"Gaem9v\":\"Aggiorna nome e descrizione dell'evento\",\"7EhE4k\":\"Aggiorna etichetta\",\"NPQWj8\":\"Aggiorna luogo\",\"75+lpR\":[\"Aggiornamento: \",[\"subjectTitle\"],\" — modifiche alla programmazione\"],\"UOGHdA\":[\"Aggiornamento: \",[\"subjectTitle\"],\" — orario della sessione modificato\"],\"ogoTrw\":[[\"count\"],\" data/e aggiornata/e\"],\"dDuona\":[\"Capacità aggiornata per \",[\"count\"],\" data/e\"],\"FT3LSc\":[\"Etichetta aggiornata per \",[\"count\"],\" data/e\"],\"8EcY1g\":[\"Luogo aggiornato per \",[\"count\"],\" sessione/i\"],\"gJQsLv\":\"Carica un'immagine di copertina per il tuo organizzatore\",\"4kEGqW\":\"Carica un logo per il tuo organizzatore\",\"lnCMdg\":\"Carica immagine\",\"29w7p6\":\"Caricamento immagine in corso...\",\"HtrFfw\":\"URL è obbligatorio\",\"vzWC39\":\"USB\",\"td5pxI\":\"Scanner USB attivo\",\"dyTklH\":\"Scanner USB in pausa\",\"OHJXlK\":\"Usa <0>i template Liquid per personalizzare le tue email\",\"g0WJMu\":\"Usa la lista di tutte le date\",\"0k4cdb\":\"Utilizza i dettagli dell'ordine per tutti i partecipanti. I nomi e gli indirizzi email dei partecipanti corrisponderanno alle informazioni dell'acquirente.\",\"MKK5oI\":\"Usare la lista di tutte le date o crearne una per questa data?\",\"bA31T4\":\"Usa i dati dell'acquirente per tutti i partecipanti\",\"rnoQsz\":\"Utilizzato per bordi, evidenziazioni e stile del codice QR\",\"BV4L/Q\":\"Analisi UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Convalida della tua partita IVA...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Partita IVA\",\"pnVh83\":\"Numero di partita IVA\",\"CabI04\":\"Il numero di partita IVA non deve contenere spazi\",\"PMhxAR\":\"Il numero di partita IVA deve iniziare con un codice paese di 2 lettere seguito da 8-15 caratteri alfanumerici (ad es., DE123456789)\",\"gPgdNV\":\"Partita IVA convalidata con successo\",\"RUMiLy\":\"Convalida della partita IVA non riuscita\",\"vqji3Y\":\"Convalida della partita IVA non riuscita. Controlla la tua partita IVA.\",\"8dENF9\":\"IVA su commissione\",\"ZutOKU\":\"Aliquota IVA\",\"+KJZt3\":\"Soggetto a IVA\",\"Nfbg76\":\"Impostazioni IVA salvate con successo\",\"UvYql/\":\"Impostazioni IVA salvate. Stiamo convalidando il tuo numero di partita IVA in background.\",\"bXn1Jz\":\"Impostazioni IVA aggiornate\",\"tJylUv\":\"Trattamento IVA per le commissioni della piattaforma\",\"FlGprQ\":\"Trattamento IVA per le commissioni della piattaforma: Le imprese registrate IVA nell'UE possono utilizzare il meccanismo del reverse charge (0% - Articolo 196 della Direttiva IVA 2006/112/CE). Alle imprese non registrate IVA viene applicata l'IVA irlandese al 23%.\",\"516oLj\":\"Servizio di convalida IVA temporaneamente non disponibile\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"IVA: non registrato\",\"AdWhjZ\":\"Codice di verifica\",\"QDEWii\":\"Verificato\",\"wCKkSr\":\"Verifica email\",\"/IBv6X\":\"Verifica la tua email\",\"e/cvV1\":\"Verifica in corso...\",\"fROFIL\":\"Vietnamita\",\"p5nYkr\":\"Visualizza tutto\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Vedi tutte le funzionalità\",\"RnvnDc\":\"Visualizza tutti i messaggi inviati sulla piattaforma\",\"+WFMis\":\"Visualizza e scarica report per tutti i tuoi eventi. Sono inclusi solo gli ordini completati.\",\"c7VN/A\":\"Visualizza Risposte\",\"SZw9tS\":\"Visualizza dettagli\",\"9+84uW\":[\"Visualizza dettagli di \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Visualizza evento\",\"c6SXHN\":\"Visualizza pagina dell'evento\",\"n6EaWL\":\"Visualizza log\",\"OaKTzt\":\"Vedi mappa\",\"zNZNMs\":\"Visualizza messaggio\",\"67OJ7t\":\"Visualizza Ordine\",\"tKKZn0\":\"Visualizza dettagli ordine\",\"KeCXJu\":\"Visualizza i dettagli degli ordini, emetti rimborsi e reinvia le conferme.\",\"9jnAcN\":\"Visualizza homepage organizzatore\",\"1J/AWD\":\"Visualizza Biglietto\",\"N9FyyW\":\"Visualizza, modifica ed esporta i tuoi partecipanti registrati.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"In attesa\",\"quR8Qp\":\"In attesa di pagamento\",\"KrurBH\":\"In attesa di scansione…\",\"u0n+wz\":\"Lista d'attesa\",\"3RXFtE\":\"Lista d'attesa abilitata\",\"TwnTPy\":\"L'offerta per la lista d'attesa è scaduta.\",\"NzIvKm\":\"Lista d'attesa attivata\",\"aUi/Dz\":\"Attenzione: questa è la configurazione predefinita del sistema. Le modifiche interesseranno tutti gli account a cui non è assegnata una configurazione specifica.\",\"qeygIa\":\"Mer\",\"aT/44s\":\"Non siamo riusciti a copiare questa connessione Stripe. Riprova.\",\"RRZDED\":\"Non abbiamo trovato ordini associati a questo indirizzo email.\",\"2RZK9x\":\"Non siamo riusciti a trovare l'ordine che stai cercando. Il link potrebbe essere scaduto o i dettagli dell'ordine potrebbero essere cambiati.\",\"nefMIK\":\"Non siamo riusciti a trovare il biglietto che stai cercando. Il link potrebbe essere scaduto o i dettagli del biglietto potrebbero essere cambiati.\",\"miysJh\":\"Non siamo riusciti a trovare questo ordine. Potrebbe essere stato rimosso.\",\"ADsQ23\":\"Non siamo riusciti a contattare Stripe in questo momento. Riprova tra poco.\",\"HJKdzP\":\"Si è verificato un problema durante il caricamento di questa pagina. Riprova.\",\"jegrvW\":\"Collaboriamo con Stripe per inviare i pagamenti direttamente sul tuo conto bancario.\",\"IfN2Qo\":\"Consigliamo un logo quadrato con dimensioni minime di 200x200px\",\"wJzo/w\":\"Si consigliano dimensioni di 400px per 400px e una dimensione massima del file di 5MB\",\"KRCDqH\":\"Utilizziamo i cookie per aiutarci a capire come viene utilizzato il sito e per migliorare la tua esperienza.\",\"x8rEDQ\":\"Non siamo riusciti a convalidare il tuo numero di partita IVA dopo diversi tentativi. Continueremo a provare in background. Riprova più tardi.\",\"iy+M+c\":[\"Ti avviseremo via email se si libererà un posto per \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Dopo il salvataggio apriremo un compositore di messaggi con un modello precompilato. Tu lo revisioni e lo invii — nulla viene inviato automaticamente.\",\"q1BizZ\":\"Invieremo i tuoi biglietti a questa email\",\"ZOmUYW\":\"Convalideremo la tua partita IVA in background. In caso di problemi, ti informeremo.\",\"LKjHr4\":[\"Abbiamo apportato modifiche alla programmazione di \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" che riguarda \",[\"affectedCount\"],\" sessione/i.\"],\"Fq/Nx7\":\"Abbiamo inviato un codice di verifica a 5 cifre a:\",\"GdWB+V\":\"Webhook creato con successo\",\"2X4ecw\":\"Webhook eliminato con successo\",\"ndBv0v\":\"Integrazioni webhook\",\"CThMKa\":\"Log Webhook\",\"I0adYQ\":\"Segreto di firma del Webhook\",\"nuh/Wq\":\"URL Webhook\",\"8BMPMe\":\"Il webhook non invierà notifiche\",\"FSaY52\":\"Il webhook invierà notifiche\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Sito web\",\"0f7U0k\":\"Mer\",\"VAcXNz\":\"Mercoledì\",\"64X6l4\":\"settimana\",\"4XSc4l\":\"Settimanale\",\"IAUiSh\":\"settimane\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bentornato\",\"QDWsl9\":[\"Benvenuto su \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Benvenuto su \",[\"0\"],\", ecco un elenco di tutti i tuoi eventi\"],\"DDbx7K\":\"Benessere\",\"ywRaYa\":\"A che ora?\",\"FaSXqR\":\"Che tipo di evento?\",\"0WyYF4\":\"Cosa vede lo staff non autenticato\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando un check-in viene eliminato\",\"RPe6bE\":\"Quando una data viene annullata in un evento ricorrente\",\"Gmd0hv\":\"Quando viene creato un nuovo partecipante\",\"zyIyPe\":\"Quando viene creato un nuovo evento\",\"Lc18qn\":\"Quando viene creato un nuovo ordine\",\"dfkQIO\":\"Quando viene creato un nuovo prodotto\",\"8OhzyY\":\"Quando un prodotto viene eliminato\",\"tRXdQ9\":\"Quando un prodotto viene aggiornato\",\"9L9/28\":\"Quando un prodotto si esaurisce, i clienti possono iscriversi a una lista d'attesa per essere avvisati quando si liberano dei posti.\",\"Q7CWxp\":\"Quando un partecipante viene annullato\",\"IuUoyV\":\"Quando un partecipante effettua il check-in\",\"nBVOd7\":\"Quando un partecipante viene aggiornato\",\"t7cuMp\":\"Quando un evento viene archiviato\",\"gtoSzE\":\"Quando un evento viene aggiornato\",\"ny2r8d\":\"Quando un ordine viene annullato\",\"c9RYbv\":\"Quando un ordine viene contrassegnato come pagato\",\"ejMDw1\":\"Quando un ordine viene rimborsato\",\"fVPt0F\":\"Quando un ordine viene aggiornato\",\"bcYlvb\":\"Quando chiude il check-in\",\"XIG669\":\"Quando apre il check-in\",\"403wpZ\":\"Quando abilitato, i nuovi eventi consentiranno ai partecipanti di gestire i propri dettagli del biglietto tramite un link sicuro. Questo può essere sostituito per evento.\",\"blXLKj\":\"Se abilitato, i nuovi eventi mostreranno una casella di opt-in marketing durante il checkout. Questo può essere sovrascritto per evento.\",\"Kj0Txn\":\"Quando abilitato, non verranno addebitate commissioni di applicazione sulle transazioni Stripe Connect. Usa questo per i paesi in cui le commissioni di applicazione non sono supportate.\",\"tMqezN\":\"Se i rimborsi sono in fase di elaborazione\",\"uchB0M\":\"Anteprima widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Scrivi qui il tuo messaggio...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"anno\",\"zkWmBh\":\"Annuale\",\"+BGee5\":\"anni\",\"X/azM1\":\"Sì - Ho un numero di partita IVA UE valido\",\"Tz5oXG\":\"Sì, annulla il mio ordine\",\"QlSZU0\":[\"Stai impersonificando <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Stai emettendo un rimborso parziale. Il cliente sarà rimborsato di \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Puoi configurare commissioni di servizio aggiuntive e tasse nelle impostazioni del tuo account.\",\"rj3A7+\":\"Potrai sostituire questo valore per le singole date in seguito.\",\"paWwQ0\":\"È comunque possibile offrire biglietti manualmente se necessario.\",\"jTDzpA\":\"Non puoi archiviare l'ultimo organizzatore attivo del tuo account.\",\"5VGIlq\":\"Hai raggiunto il tuo limite di messaggistica.\",\"casL1O\":\"Hai tasse e commissioni aggiunte a un Prodotto Gratuito. Vuoi rimuoverle?\",\"9jJNZY\":\"Devi riconoscere le tue responsabilità prima di salvare\",\"pCLes8\":\"Devi accettare di ricevere messaggi\",\"FVTVBy\":\"Devi verificare il tuo indirizzo email prima di poter aggiornare lo stato dell'organizzatore.\",\"ze4bi/\":\"Devi creare almeno una sessione prima di poter aggiungere partecipanti a questo evento ricorrente.\",\"w65ZgF\":\"Devi verificare l'email del tuo account prima di poter modificare i modelli di email.\",\"FRl8Jv\":\"Devi verificare l'email del tuo account prima di poter inviare messaggi.\",\"88cUW+\":\"Ricevi\",\"O6/3cu\":\"Potrai configurare date, programmazioni e regole di ricorrenza nel passaggio successivo.\",\"zKAheG\":\"Stai modificando gli orari delle sessioni\",\"MNFIxz\":[\"Stai per partecipare a \",[\"0\"],\"!\"],\"qGZz0m\":\"Sei nella lista d'attesa!\",\"/5HL6k\":\"Ti è stato offerto un posto!\",\"gbjFFH\":\"Hai modificato l'orario della sessione\",\"p/Sa0j\":\"Il tuo account ha limiti di messaggistica. Per aumentare i tuoi limiti, contattaci a\",\"x/xjzn\":\"I tuoi affiliati sono stati esportati con successo.\",\"TF37u6\":\"I tuoi partecipanti sono stati esportati con successo.\",\"79lXGw\":\"La tua lista di check-in è stata creata con successo. Condividi il link sottostante con il tuo staff di check-in.\",\"BnlG9U\":\"Il tuo ordine attuale andrà perso.\",\"nBqgQb\":\"La tua Email\",\"GG1fRP\":\"Il tuo evento è online!\",\"ifRqmm\":\"Il tuo messaggio è stato inviato con successo!\",\"0/+Nn9\":\"I tuoi messaggi appariranno qui\",\"/Rj5P4\":\"Il tuo nome\",\"PFjJxY\":\"La nuova password deve contenere almeno 8 caratteri.\",\"gzrCuN\":\"I dettagli del tuo ordine sono stati aggiornati. Un'e-mail di conferma è stata inviata al nuovo indirizzo e-mail.\",\"naQW82\":\"Il tuo ordine è stato annullato.\",\"bhlHm/\":\"Il tuo ordine è in attesa di pagamento\",\"XeNum6\":\"I tuoi ordini sono stati esportati con successo.\",\"Xd1R1a\":\"L'indirizzo del tuo organizzatore\",\"WWYHKD\":\"Il tuo pagamento è protetto con crittografia a livello bancario\",\"5b3QLi\":\"Il tuo piano\",\"N4Zkqc\":\"Il tuo filtro di date salvato non è più disponibile — verranno mostrate tutte le date.\",\"FNO5uZ\":\"Il tuo biglietto è ancora valido — non è necessaria alcuna azione, a meno che il nuovo orario non ti vada bene. Rispondi a questa email per qualsiasi domanda.\",\"CnZ3Ou\":\"I tuoi biglietti sono stati confermati.\",\"EmFsMZ\":\"Il tuo numero di partita IVA è in coda per la convalida\",\"QBlhh4\":\"La tua partita IVA verrà convalidata al momento del salvataggio\",\"fT9VLt\":\"La tua offerta di iscrizione alla lista d'attesa è scaduta e non siamo stati in grado di completare il tuo ordine. Ti preghiamo di iscriverti nuovamente alla lista d'attesa per essere avvisato quando si libereranno dei posti.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Non c\\\\'è ancora nulla da mostrare'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>uscita registrata con successo\"],\"KMgp2+\":[[\"0\"],\" disponibili\"],\"Pmr5xp\":[[\"0\"],\" creato con successo\"],\"FImCSc\":[[\"0\"],\" aggiornato con successo\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" giorni, \",[\"hours\"],\" ore, \",[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"f3RdEk\":[[\"hours\"],\" ore, \",[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"fyE7Au\":[[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"NlQ0cx\":[\"Primo evento di \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://il-tuo-sito-web.com\",\"qnSLLW\":\"<0>Inserisci il prezzo escluse tasse e commissioni.<1>Tasse e commissioni possono essere aggiunte qui sotto.\",\"ZjMs6e\":\"<0>Il numero di prodotti disponibili per questo prodotto<1>Questo valore può essere sovrascritto se ci sono <2>Limiti di Capacità associati a questo prodotto.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minuti e 0 secondi\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Via Roma 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"00100\",\"efAM7X\":\"Un campo data. Perfetto per chiedere una data di nascita ecc.\",\"6euFZ/\":[\"Un \",[\"type\"],\" predefinito viene applicato automaticamente a tutti i nuovi prodotti. Puoi sovrascrivere questa impostazione per ogni singolo prodotto.\"],\"SMUbbQ\":\"Un menu a tendina consente una sola selezione\",\"qv4bfj\":\"Una commissione, come una commissione di prenotazione o una commissione di servizio\",\"POT0K/\":\"Un importo fisso per prodotto. Es. $0,50 per prodotto\",\"f4vJgj\":\"Un campo di testo a più righe\",\"OIPtI5\":\"Una percentuale del prezzo del prodotto. Es. 3,5% del prezzo del prodotto\",\"ZthcdI\":\"Un codice promozionale senza sconto può essere utilizzato per rivelare prodotti nascosti.\",\"AG/qmQ\":\"Un'opzione Radio ha più opzioni ma solo una può essere selezionata.\",\"h179TP\":\"Una breve descrizione dell'evento che verrà visualizzata nei risultati dei motori di ricerca e quando condiviso sui social media. Per impostazione predefinita, verrà utilizzata la descrizione dell'evento\",\"WKMnh4\":\"Un campo di testo a singola riga\",\"BHZbFy\":\"Una singola domanda per ordine. Es. Qual è il tuo indirizzo di spedizione?\",\"Fuh+dI\":\"Una singola domanda per prodotto. Es. Qual è la tua taglia di maglietta?\",\"RlJmQg\":\"Un'imposta standard, come IVA o GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Accetta bonifici bancari, assegni o altri metodi di pagamento offline\",\"hrvLf4\":\"Accetta pagamenti con carta di credito tramite Stripe\",\"bfXQ+N\":\"Accetta Invito\",\"AeXO77\":\"Account\",\"lkNdiH\":\"Nome Account\",\"Puv7+X\":\"Impostazioni Account\",\"OmylXO\":\"Account aggiornato con successo\",\"7L01XJ\":\"Azioni\",\"FQBaXG\":\"Attiva\",\"5T2HxQ\":\"Data di attivazione\",\"F6pfE9\":\"Attivo\",\"/PN1DA\":\"Aggiungi una descrizione per questa lista di check-in\",\"0/vPdA\":\"Aggiungi eventuali note sul partecipante. Queste non saranno visibili al partecipante.\",\"Or1CPR\":\"Aggiungi eventuali note sul partecipante...\",\"l3sZO1\":\"Aggiungi eventuali note sull'ordine. Queste non saranno visibili al cliente.\",\"xMekgu\":\"Aggiungi eventuali note sull'ordine...\",\"PGPGsL\":\"Aggiungi descrizione\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Aggiungi istruzioni per i pagamenti offline (es. dettagli del bonifico bancario, dove inviare gli assegni, scadenze di pagamento)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Aggiungi Nuovo\",\"TZxnm8\":\"Aggiungi Opzione\",\"24l4x6\":\"Aggiungi Prodotto\",\"8q0EdE\":\"Aggiungi Prodotto alla Categoria\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Aggiungi Tassa o Commissione\",\"goOKRY\":\"Aggiungi livello\",\"oZW/gT\":\"Aggiungi al Calendario\",\"pn5qSs\":\"Informazioni Aggiuntive\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Indirizzo\",\"NY/x1b\":\"Indirizzo riga 1\",\"POdIrN\":\"Indirizzo Riga 1\",\"cormHa\":\"Indirizzo riga 2\",\"gwk5gg\":\"Indirizzo Riga 2\",\"U3pytU\":\"Amministratore\",\"HLDaLi\":\"Gli amministratori hanno accesso completo agli eventi e alle impostazioni dell'account.\",\"W7AfhC\":\"Tutti i partecipanti di questo evento\",\"cde2hc\":\"Tutti i Prodotti\",\"5CQ+r0\":\"Consenti ai partecipanti associati a ordini non pagati di effettuare il check-in\",\"ipYKgM\":\"Consenti l'indicizzazione dei motori di ricerca\",\"LRbt6D\":\"Consenti ai motori di ricerca di indicizzare questo evento\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Fantastico, Evento, Parole chiave...\",\"hehnjM\":\"Importo\",\"R2O9Rg\":[\"Importo pagato (\",[\"0\"],\")\"],\"V7MwOy\":\"Si è verificato un errore durante il caricamento della pagina\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Si è verificato un errore imprevisto.\",\"byKna+\":\"Si è verificato un errore imprevisto. Per favore riprova.\",\"ubdMGz\":\"Qualsiasi richiesta dai possessori di prodotti verrà inviata a questo indirizzo email. Questo sarà anche utilizzato come indirizzo \\\"rispondi a\\\" per tutte le email inviate da questo evento\",\"aAIQg2\":\"Aspetto\",\"Ym1gnK\":\"applicato\",\"sy6fss\":[\"Si applica a \",[\"0\"],\" prodotti\"],\"kadJKg\":\"Si applica a 1 prodotto\",\"DB8zMK\":\"Applica\",\"GctSSm\":\"Applica Codice Promozionale\",\"ARBThj\":[\"Applica questo \",[\"type\"],\" a tutti i nuovi prodotti\"],\"S0ctOE\":\"Archivia evento\",\"TdfEV7\":\"Archiviati\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Sei sicuro di voler attivare questo partecipante?\",\"TvkW9+\":\"Sei sicuro di voler archiviare questo evento?\",\"/CV2x+\":\"Sei sicuro di voler cancellare questo partecipante? Questo annullerà il loro biglietto\",\"YgRSEE\":\"Sei sicuro di voler eliminare questo codice promozionale?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Sei sicuro di voler rendere questo evento una bozza? Questo renderà l'evento invisibile al pubblico\",\"mEHQ8I\":\"Sei sicuro di voler rendere questo evento pubblico? Questo renderà l'evento visibile al pubblico\",\"s4JozW\":\"Sei sicuro di voler ripristinare questo evento? Verrà ripristinato come bozza.\",\"vJuISq\":\"Sei sicuro di voler eliminare questa Assegnazione di Capacità?\",\"baHeCz\":\"Sei sicuro di voler eliminare questa Lista di Check-In?\",\"LBLOqH\":\"Chiedi una volta per ordine\",\"wu98dY\":\"Chiedi una volta per prodotto\",\"ss9PbX\":\"Partecipante\",\"m0CFV2\":\"Dettagli Partecipante\",\"QKim6l\":\"Partecipante non trovato\",\"R5IT/I\":\"Note Partecipante\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Biglietto Partecipante\",\"9SZT4E\":\"Partecipanti\",\"iPBfZP\":\"Partecipanti Registrati\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Ridimensionamento automatico\",\"vZ5qKF\":\"Ridimensiona automaticamente l'altezza del widget in base al contenuto. Quando disabilitato, il widget riempirà l'altezza del contenitore.\",\"4lVaWA\":\"In attesa di pagamento offline\",\"2rHwhl\":\"In Attesa di Pagamento Offline\",\"3wF4Q/\":\"In attesa di pagamento\",\"ioG+xt\":\"In Attesa di Pagamento\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Srl.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Torna alla pagina dell'evento\",\"VCoEm+\":\"Torna al login\",\"k1bLf+\":\"Colore di sfondo\",\"I7xjqg\":\"Tipo di Sfondo\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Indirizzo di Fatturazione\",\"/xC/im\":\"Impostazioni di Fatturazione\",\"rp/zaT\":\"Portoghese Brasiliano\",\"whqocw\":\"Registrandoti accetti i nostri <0>Termini di Servizio e la <1>Privacy Policy.\",\"bcCn6r\":\"Tipo di Calcolo\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Annulla\",\"Gjt/py\":\"Annulla cambio email\",\"tVJk4q\":\"Annulla ordine\",\"Os6n2a\":\"Annulla Ordine\",\"Mz7Ygx\":[\"Annulla Ordine \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Annullato\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacità\",\"V6Q5RZ\":\"Assegnazione di Capacità creata con successo\",\"k5p8dz\":\"Assegnazione di Capacità eliminata con successo\",\"nDBs04\":\"Gestione capacità\",\"ddha3c\":\"Le categorie ti permettono di raggruppare i prodotti. Ad esempio, potresti avere una categoria per \\\"Biglietti\\\" e un'altra per \\\"Merchandise\\\".\",\"iS0wAT\":\"Le categorie ti aiutano a organizzare i tuoi prodotti. Questo titolo verrà visualizzato sulla pagina pubblica dell'evento.\",\"eorM7z\":\"Categorie riordinate con successo.\",\"3EXqwa\":\"Categoria Creata con Successo\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Cambia password\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Registra ingresso di \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Check-in e contrassegna l'ordine come pagato\",\"QYLpB4\":\"Solo check-in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Dai un'occhiata a questo evento!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Lista di Registrazione eliminata con successo\",\"+hBhWk\":\"La lista di registrazione è scaduta\",\"mBsBHq\":\"La lista di registrazione non è attiva\",\"vPqpQG\":\"Lista di registrazione non trovata\",\"tejfAy\":\"Liste di Registrazione\",\"hD1ocH\":\"URL di Registrazione copiato negli appunti\",\"CNafaC\":\"Le opzioni di casella di controllo consentono selezioni multiple\",\"SpabVf\":\"Caselle di controllo\",\"CRu4lK\":\"Check-in effettuato\",\"znIg+z\":\"Pagamento\",\"1WnhCL\":\"Impostazioni di Pagamento\",\"6imsQS\":\"Cinese (Semplificato)\",\"JjkX4+\":\"Scegli un colore per lo sfondo\",\"/Jizh9\":\"Scegli un account\",\"3wV73y\":\"Città\",\"FG98gC\":\"Cancella Testo di Ricerca\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Clicca per copiare\",\"yz7wBu\":\"Chiudi\",\"62Ciis\":\"Chiudi barra laterale\",\"EWPtMO\":\"Codice\",\"ercTDX\":\"Il codice deve essere compreso tra 3 e 50 caratteri\",\"oqr9HB\":\"Comprimi questo prodotto quando la pagina dell'evento viene caricata inizialmente\",\"jZlrte\":\"Colore\",\"Vd+LC3\":\"Il colore deve essere un codice colore esadecimale valido. Esempio: #ffffff\",\"1HfW/F\":\"Colori\",\"VZeG/A\":\"Prossimamente\",\"yPI7n9\":\"Parole chiave separate da virgole che descrivono l'evento. Queste saranno utilizzate dai motori di ricerca per aiutare a categorizzare e indicizzare l'evento\",\"NPZqBL\":\"Completa Ordine\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Completa Pagamento\",\"qqWcBV\":\"Completato\",\"6HK5Ct\":\"Ordini completati\",\"NWVRtl\":\"Ordini Completati\",\"DwF9eH\":\"Codice componente\",\"Tf55h7\":\"Sconto Configurato\",\"7VpPHA\":\"Conferma\",\"ZaEJZM\":\"Conferma Cambio Email\",\"yjkELF\":\"Conferma Nuova Password\",\"xnWESi\":\"Conferma password\",\"p2/GCq\":\"Conferma Password\",\"wnDgGj\":\"Conferma indirizzo email in corso...\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connetti con Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Dettagli di Connessione\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continua\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Testo pulsante Continua\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copiato\",\"T5rdis\":\"copiato negli appunti\",\"he3ygx\":\"Copia\",\"r2B2P8\":\"Copia URL di Check-In\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copia Link\",\"E6nRW7\":\"Copia URL\",\"JNCzPW\":\"Paese\",\"IF7RiR\":\"Copertina\",\"hYgDIe\":\"Crea\",\"b9XOHo\":[\"Crea \",[\"0\"]],\"k9RiLi\":\"Crea un Prodotto\",\"6kdXbW\":\"Crea un Codice Promozionale\",\"n5pRtF\":\"Crea un Biglietto\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"crea un organizzatore\",\"ipP6Ue\":\"Crea Partecipante\",\"VwdqVy\":\"Crea Assegnazione di Capacità\",\"EwoMtl\":\"Crea categoria\",\"XletzW\":\"Crea Categoria\",\"WVbTwK\":\"Crea Lista di Check-In\",\"uN355O\":\"Crea Evento\",\"BOqY23\":\"Crea nuovo\",\"kpJAeS\":\"Crea Organizzatore\",\"a0EjD+\":\"Crea Prodotto\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Crea Codice Promozionale\",\"B3Mkdt\":\"Crea Domanda\",\"UKfi21\":\"Crea Tassa o Commissione\",\"d+F6q9\":\"Creato\",\"Q2lUR2\":\"Valuta\",\"DCKkhU\":\"Password Attuale\",\"uIElGP\":\"URL Mappe personalizzate\",\"UEqXyt\":\"Intervallo Personalizzato\",\"876pfE\":\"Cliente\",\"QOg2Sf\":\"Personalizza le impostazioni di email e notifiche per questo evento\",\"Y9Z/vP\":\"Personalizza i messaggi della homepage dell'evento e del checkout\",\"2E2O5H\":\"Personalizza le impostazioni varie per questo evento\",\"iJhSxe\":\"Personalizza le impostazioni SEO per questo evento\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Zona pericolosa\",\"ZQKLI1\":\"Zona pericolosa\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Data\",\"JvUngl\":\"Data e ora\",\"JJhRbH\":\"Capacità primo giorno\",\"cnGeoo\":\"Elimina\",\"jRJZxD\":\"Elimina Capacità\",\"VskHIx\":\"Elimina categoria\",\"Qrc8RZ\":\"Elimina Lista Check-In\",\"WHf154\":\"Elimina codice\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Descrizione\",\"YC3oXa\":\"Descrizione per il personale di check-in\",\"URmyfc\":\"Dettagli\",\"1lRT3t\":\"Disabilitando questa capacità verranno monitorate le vendite ma non verranno interrotte quando viene raggiunto il limite\",\"H6Ma8Z\":\"Sconto\",\"ypJ62C\":\"Sconto %\",\"3LtiBI\":[\"Sconto in \",[\"0\"]],\"C8JLas\":\"Tipo di Sconto\",\"1QfxQT\":\"Ignora\",\"DZlSLn\":\"Etichetta Documento\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donazione / Prodotto a offerta libera\",\"OvNbls\":\"Scarica .ics\",\"kodV18\":\"Scarica CSV\",\"CELKku\":\"Scarica fattura\",\"LQrXcu\":\"Scarica Fattura\",\"QIodqd\":\"Scarica Codice QR\",\"yhjU+j\":\"Scaricamento Fattura in corso\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Selezione a tendina\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplica evento\",\"3ogkAk\":\"Duplica Evento\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Opzioni di Duplicazione\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Prevendita\",\"ePK91l\":\"Modifica\",\"N6j2JH\":[\"Modifica \",[\"0\"]],\"kBkYSa\":\"Modifica Capacità\",\"oHE9JT\":\"Modifica Assegnazione di Capacità\",\"j1Jl7s\":\"Modifica categoria\",\"FU1gvP\":\"Modifica Lista di Check-In\",\"iFgaVN\":\"Modifica Codice\",\"jrBSO1\":\"Modifica Organizzatore\",\"tdD/QN\":\"Modifica Prodotto\",\"n143Tq\":\"Modifica Categoria Prodotto\",\"9BdS63\":\"Modifica Codice Promozionale\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Modifica Domanda\",\"poTr35\":\"Modifica utente\",\"GTOcxw\":\"Modifica Utente\",\"pqFrv2\":\"es. 2.50 per $2.50\",\"3yiej1\":\"es. 23.5 per 23.5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Impostazioni Email e Notifiche\",\"ATGYL1\":\"Indirizzo email\",\"hzKQCy\":\"Indirizzo Email\",\"HqP6Qf\":\"Modifica email annullata con successo\",\"mISwW1\":\"Modifica email in attesa\",\"APuxIE\":\"Conferma email inviata nuovamente\",\"YaCgdO\":\"Conferma email inviata nuovamente con successo\",\"jyt+cx\":\"Messaggio piè di pagina email\",\"I6F3cp\":\"Email non verificata\",\"NTZ/NX\":\"Codice di incorporamento\",\"4rnJq4\":\"Script di incorporamento\",\"8oPbg1\":\"Abilita Fatturazione\",\"j6w7d/\":\"Abilita questa capacità per interrompere le vendite dei prodotti quando viene raggiunto il limite\",\"VFv2ZC\":\"Data di fine\",\"237hSL\":\"Terminato\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Inglese\",\"MhVoma\":\"Inserisci un importo escluse tasse e commissioni.\",\"SlfejT\":\"Errore\",\"3Z223G\":\"Errore durante la conferma dell'indirizzo email\",\"a6gga1\":\"Errore durante la conferma della modifica email\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evento\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Data dell'Evento\",\"0Zptey\":\"Impostazioni Predefinite Evento\",\"QcCPs8\":\"Dettagli Evento\",\"6fuA9p\":\"Evento duplicato con successo\",\"AEuj2m\":\"Homepage Evento\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Dettagli della sede e della location dell'evento\",\"OopDbA\":\"Event page\",\"4/If97\":\"Aggiornamento stato evento fallito. Riprova più tardi\",\"btxLWj\":\"Stato evento aggiornato\",\"nMU2d3\":\"URL dell'evento\",\"tst44n\":\"Eventi\",\"sZg7s1\":\"Data di scadenza\",\"KnN1Tu\":\"Scade\",\"uaSvqt\":\"Data di Scadenza\",\"GS+Mus\":\"Esporta\",\"9xAp/j\":\"Impossibile annullare il partecipante\",\"ZpieFv\":\"Impossibile annullare l'ordine\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Impossibile scaricare la fattura. Riprova.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Impossibile caricare la Lista di Check-In\",\"ZQ15eN\":\"Impossibile reinviare l'email del biglietto\",\"ejXy+D\":\"Impossibile ordinare i prodotti\",\"PLUB/s\":\"Commissione\",\"/mfICu\":\"Commissioni\",\"LyFC7X\":\"Filtra Ordini\",\"cSev+j\":\"Filtri\",\"CVw2MU\":[\"Filtri (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Primo Numero Fattura\",\"V1EGGU\":\"Nome\",\"kODvZJ\":\"Nome\",\"S+tm06\":\"Il nome deve essere compreso tra 1 e 50 caratteri\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Primo Utilizzo\",\"TpqW74\":\"Fisso\",\"irpUxR\":\"Importo fisso\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Password dimenticata?\",\"2POOFK\":\"Gratuito\",\"P/OAYJ\":\"Prodotto Gratuito\",\"vAbVy9\":\"Prodotto gratuito, nessuna informazione di pagamento richiesta\",\"nLC6tu\":\"Francese\",\"Weq9zb\":\"Generale\",\"DDcvSo\":\"Tedesco\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Torna al profilo\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Calendar\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Vendite lorde\",\"yRg26W\":\"Vendite lorde\",\"R4r4XO\":\"Ospiti\",\"26pGvx\":\"Hai un codice promozionale?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Ecco un esempio di come puoi usare il componente nella tua applicazione.\",\"Y1SSqh\":\"Ecco il componente React che puoi usare per incorporare il widget nella tua applicazione.\",\"QuhVpV\":[\"Ciao \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Nascosto dalla vista pubblica\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Le domande nascoste sono visibili solo all'organizzatore dell'evento e non al cliente.\",\"vLyv1R\":\"Nascondi\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Nascondi prodotto dopo la data di fine vendita\",\"06s3w3\":\"Nascondi prodotto prima della data di inizio vendita\",\"axVMjA\":\"Nascondi prodotto a meno che l'utente non abbia un codice promozionale applicabile\",\"ySQGHV\":\"Nascondi prodotto quando esaurito\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Nascondi questo prodotto ai clienti\",\"Da29Y6\":\"Nascondi questa domanda\",\"fvDQhr\":\"Nascondi questo livello agli utenti\",\"lNipG+\":\"Nascondere un prodotto impedirà agli utenti di vederlo sulla pagina dell'evento.\",\"ZOBwQn\":\"Design Homepage\",\"PRuBTd\":\"Designer homepage\",\"YjVNGZ\":\"Anteprima Homepage\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Quanti minuti ha il cliente per completare il proprio ordine. Consigliamo almeno 15 minuti\",\"ySxKZe\":\"Quante volte può essere utilizzato questo codice?\",\"dZsDbK\":[\"Limite di caratteri HTML superato: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Accetto i <0>termini e condizioni\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Se abilitato, il personale di check-in può sia segnare i partecipanti come registrati sia segnare l'ordine come pagato e registrare i partecipanti. Se disabilitato, i partecipanti associati a ordini non pagati non possono essere registrati.\",\"muXhGi\":\"Se abilitato, l'organizzatore riceverà una notifica via email quando viene effettuato un nuovo ordine\",\"6fLyj/\":\"Se non hai richiesto questa modifica, cambia immediatamente la tua password.\",\"n/ZDCz\":\"Immagine eliminata con successo\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Immagine caricata con successo\",\"VyUuZb\":\"URL Immagine\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inattivo\",\"T0K0yl\":\"Gli utenti inattivi non possono accedere.\",\"kO44sp\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno mostrati nella pagina di riepilogo dell'ordine e nella pagina del biglietto del partecipante.\",\"FlQKnG\":\"Includi tasse e commissioni nel prezzo\",\"Vi+BiW\":[\"Include \",[\"0\"],\" prodotti\"],\"lpm0+y\":\"Include 1 prodotto\",\"UiAk5P\":\"Inserisci Immagine\",\"OyLdaz\":\"Invito reinviato!\",\"HE6KcK\":\"Invito revocato!\",\"SQKPvQ\":\"Invita Utente\",\"bKOYkd\":\"Fattura scaricata con successo\",\"alD1+n\":\"Note Fattura\",\"kOtCs2\":\"Numerazione Fattura\",\"UZ2GSZ\":\"Impostazioni Fattura\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Articolo\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etichetta\",\"vXIe7J\":\"Lingua\",\"2LMsOq\":\"Ultimi 12 mesi\",\"vfe90m\":\"Ultimi 14 giorni\",\"aK4uBd\":\"Ultime 24 ore\",\"uq2BmQ\":\"Ultimi 30 giorni\",\"bB6Ram\":\"Ultime 48 ore\",\"VlnB7s\":\"Ultimi 6 mesi\",\"ct2SYD\":\"Ultimi 7 giorni\",\"XgOuA7\":\"Ultimi 90 giorni\",\"I3yitW\":\"Ultimo accesso\",\"1ZaQUH\":\"Cognome\",\"UXBCwc\":\"Cognome\",\"tKCBU0\":\"Ultimo Utilizzo\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Lascia vuoto per utilizzare la parola predefinita \\\"Fattura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Caricamento...\",\"wJijgU\":\"Luogo\",\"sQia9P\":\"Accedi\",\"zUDyah\":\"Accesso in corso\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Esci\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Rendi obbligatorio l'indirizzo di fatturazione durante il checkout\",\"MU3ijv\":\"Rendi obbligatoria questa domanda\",\"wckWOP\":\"Gestisci\",\"onpJrA\":\"Gestisci partecipante\",\"n4SpU5\":\"Gestisci evento\",\"WVgSTy\":\"Gestisci ordine\",\"1MAvUY\":\"Gestisci le impostazioni di pagamento e fatturazione per questo evento.\",\"cQrNR3\":\"Gestisci Profilo\",\"AtXtSw\":\"Gestisci tasse e commissioni che possono essere applicate ai tuoi prodotti\",\"ophZVW\":\"Gestisci biglietti\",\"DdHfeW\":\"Gestisci i dettagli del tuo account e le impostazioni predefinite\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Gestisci i tuoi utenti e le loro autorizzazioni\",\"1m+YT2\":\"Le domande obbligatorie devono essere risposte prima che il cliente possa procedere al checkout.\",\"Dim4LO\":\"Aggiungi manualmente un Partecipante\",\"e4KdjJ\":\"Aggiungi Manualmente Partecipante\",\"vFjEnF\":\"Segna come pagato\",\"g9dPPQ\":\"Massimo Per Ordine\",\"l5OcwO\":\"Messaggio al partecipante\",\"Gv5AMu\":\"Messaggio ai Partecipanti\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Messaggio all'acquirente\",\"tNZzFb\":\"Contenuto del messaggio\",\"lYDV/s\":\"Invia messaggio ai singoli partecipanti\",\"V7DYWd\":\"Messaggio Inviato\",\"t7TeQU\":\"Messaggi\",\"xFRMlO\":\"Minimo Per Ordine\",\"QYcUEf\":\"Prezzo Minimo\",\"RDie0n\":\"Varie\",\"mYLhkl\":\"Impostazioni Varie\",\"KYveV8\":\"Casella di testo multilinea\",\"VD0iA7\":\"Opzioni di prezzo multiple. Perfetto per prodotti early bird ecc.\",\"/bhMdO\":\"La mia fantastica descrizione dell'evento...\",\"vX8/tc\":\"Il mio fantastico titolo dell'evento...\",\"hKtWk2\":\"Il Mio Profilo\",\"fj5byd\":\"N/D\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nome\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Vai al Partecipante\",\"qqeAJM\":\"Mai\",\"7vhWI8\":\"Nuova Password\",\"1UzENP\":\"No\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Nessun evento archiviato da mostrare.\",\"q2LEDV\":\"Nessun partecipante trovato per questo ordine.\",\"zlHa5R\":\"Nessun partecipante è stato aggiunto a questo ordine.\",\"Wjz5KP\":\"Nessun Partecipante da mostrare\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Nessuna Assegnazione di Capacità\",\"a/gMx2\":\"Nessuna Lista di Check-In\",\"tMFDem\":\"Nessun dato disponibile\",\"6Z/F61\":\"Nessun dato da mostrare. Seleziona un intervallo di date\",\"fFeCKc\":\"Nessuno Sconto\",\"HFucK5\":\"Nessun evento terminato da mostrare.\",\"yAlJXG\":\"Nessun evento da mostrare\",\"GqvPcv\":\"Nessun filtro disponibile\",\"KPWxKD\":\"Nessun messaggio da mostrare\",\"J2LkP8\":\"Nessun ordine da mostrare\",\"RBXXtB\":\"Nessun metodo di pagamento è attualmente disponibile. Contatta l'organizzatore dell'evento per assistenza.\",\"ZWEfBE\":\"Nessun Pagamento Richiesto\",\"ZPoHOn\":\"Nessun prodotto associato a questo partecipante.\",\"Ya1JhR\":\"Nessun prodotto disponibile in questa categoria.\",\"FTfObB\":\"Ancora Nessun Prodotto\",\"+Y976X\":\"Nessun Codice Promozionale da mostrare\",\"MAavyl\":\"Nessuna domanda risposta da questo partecipante.\",\"SnlQeq\":\"Nessuna domanda è stata posta per questo ordine.\",\"Ev2r9A\":\"Nessun risultato\",\"gk5uwN\":\"Nessun Risultato di Ricerca\",\"RHyZUL\":\"Nessun risultato di ricerca.\",\"RY2eP1\":\"Nessuna Tassa o Commissione è stata aggiunta.\",\"EdQY6l\":\"Nessuno\",\"OJx3wK\":\"Non disponibile\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Note\",\"jtrY3S\":\"Ancora niente da mostrare\",\"hFwWnI\":\"Impostazioni Notifiche\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notifica all'organizzatore i nuovi ordini\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Numero di giorni consentiti per il pagamento (lasciare vuoto per omettere i termini di pagamento dalle fatture)\",\"n86jmj\":\"Prefisso Numero\",\"mwe+2z\":\"Gli ordini offline non sono riflessi nelle statistiche dell'evento finché l'ordine non viene contrassegnato come pagato.\",\"dWBrJX\":\"Pagamento offline fallito. Riprova o contatta l'organizzatore dell'evento.\",\"fcnqjw\":\"Istruzioni di Pagamento Offline\",\"+eZ7dp\":\"Pagamenti Offline\",\"ojDQlR\":\"Informazioni sui Pagamenti Offline\",\"u5oO/W\":\"Impostazioni Pagamenti Offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"In Vendita\",\"Ug4SfW\":\"Una volta creato un evento, lo vedrai qui.\",\"ZxnK5C\":\"Una volta che inizi a raccogliere dati, li vedrai qui.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"In Corso\",\"z+nuVJ\":\"Evento online\",\"WKHW0N\":\"Dettagli Evento Online\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Apri Pagina di Check-In\",\"OdnLE4\":\"Apri barra laterale\",\"ZZEYpT\":[\"Opzione \",[\"i\"]],\"oPknTP\":\"Informazioni aggiuntive opzionali da visualizzare su tutte le fatture (ad es. termini di pagamento, penali per ritardo, politica di reso)\",\"OrXJBY\":\"Prefisso opzionale per i numeri di fattura (ad es., FATT-)\",\"0zpgxV\":\"Opzioni\",\"BzEFor\":\"o\",\"UYUgdb\":\"Ordine\",\"mm+eaX\":\"Ordine n.\",\"B3gPuX\":\"Ordine Annullato\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Data Ordine\",\"Tol4BF\":\"Dettagli Ordine\",\"WbImlQ\":\"L'ordine è stato annullato e il proprietario dell'ordine è stato avvisato.\",\"nAn4Oe\":\"Ordine contrassegnato come pagato\",\"uzEfRz\":\"Note Ordine\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Riferimento Ordine\",\"acIJ41\":\"Stato Ordine\",\"GX6dZv\":\"Riepilogo Ordine\",\"tDTq0D\":\"Timeout ordine\",\"1h+RBg\":\"Ordini\",\"3y+V4p\":\"Indirizzo Organizzazione\",\"GVcaW6\":\"Dettagli Organizzazione\",\"nfnm9D\":\"Nome Organizzazione\",\"G5RhpL\":\"Organizzatore\",\"mYygCM\":\"L'organizzatore è obbligatorio\",\"Pa6G7v\":\"Nome Organizzatore\",\"l894xP\":\"Gli organizzatori possono gestire solo eventi e prodotti. Non possono gestire utenti, impostazioni dell'account o informazioni di fatturazione.\",\"fdjq4c\":\"Spaziatura interna\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Pagina non trovata\",\"QbrUIo\":\"Visualizzazioni pagina\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"pagato\",\"HVW65c\":\"Prodotto a Pagamento\",\"ZfxaB4\":\"Parzialmente Rimborsato\",\"8ZsakT\":\"Password\",\"TUJAyx\":\"La password deve essere di almeno 8 caratteri\",\"vwGkYB\":\"La password deve essere di almeno 8 caratteri\",\"BLTZ42\":\"Password reimpostata con successo. Accedi con la tua nuova password.\",\"f7SUun\":\"Le password non sono uguali\",\"aEDp5C\":\"Incolla questo dove vuoi che appaia il widget.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Pagamento\",\"Lg+ewC\":\"Pagamento e Fatturazione\",\"DZjk8u\":\"Impostazioni Pagamento e Fatturazione\",\"lflimf\":\"Periodo di Scadenza Pagamento\",\"JhtZAK\":\"Pagamento Fallito\",\"JEdsvQ\":\"Istruzioni di Pagamento\",\"bLB3MJ\":\"Metodi di Pagamento\",\"QzmQBG\":\"Fornitore di pagamento\",\"lsxOPC\":\"Pagamento Ricevuto\",\"wJTzyi\":\"Stato Pagamento\",\"xgav5v\":\"Pagamento riuscito!\",\"R29lO5\":\"Termini di Pagamento\",\"/roQKz\":\"Percentuale\",\"vPJ1FI\":\"Importo Percentuale\",\"xdA9ud\":\"Inserisci questo nel del tuo sito web.\",\"blK94r\":\"Aggiungi almeno un'opzione\",\"FJ9Yat\":\"Verifica che le informazioni fornite siano corrette\",\"TkQVup\":\"Controlla la tua email e password e riprova\",\"sMiGXD\":\"Verifica che la tua email sia valida\",\"Ajavq0\":\"Controlla la tua email per confermare il tuo indirizzo email\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Continua nella nuova scheda\",\"hcX103\":\"Crea un prodotto\",\"cdR8d6\":\"Crea un biglietto\",\"x2mjl4\":\"Inserisci un URL valido che punti a un'immagine.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Nota Bene\",\"C63rRe\":\"Torna alla pagina dell'evento per ricominciare.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Seleziona almeno un prodotto\",\"igBrCH\":\"Verifica il tuo indirizzo email per accedere a tutte le funzionalità\",\"/IzmnP\":\"Attendi mentre prepariamo la tua fattura...\",\"MOERNx\":\"Portoghese\",\"qCJyMx\":\"Messaggio post checkout\",\"g2UNkE\":\"Offerto da\",\"Rs7IQv\":\"Messaggio pre checkout\",\"rdUucN\":\"Anteprima\",\"a7u1N9\":\"Prezzo\",\"CmoB9j\":\"Modalità visualizzazione prezzo\",\"BI7D9d\":\"Prezzo non impostato\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Tipo di Prezzo\",\"6RmHKN\":\"Colore primario\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Colore testo primario\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Stampa Tutti i Biglietti\",\"DKwDdj\":\"Stampa Biglietti\",\"K47k8R\":\"Prodotto\",\"1JwlHk\":\"Categoria Prodotto\",\"U61sAj\":\"Categoria prodotto aggiornata con successo.\",\"1USFWA\":\"Prodotto eliminato con successo\",\"4Y2FZT\":\"Tipo di Prezzo Prodotto\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Vendite Prodotti\",\"U/R4Ng\":\"Livello Prodotto\",\"sJsr1h\":\"Tipo di Prodotto\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Prodotto/i\",\"N0qXpE\":\"Prodotti\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Prodotti venduti\",\"/u4DIx\":\"Prodotti Venduti\",\"DJQEZc\":\"Prodotti ordinati con successo\",\"vERlcd\":\"Profilo\",\"kUlL8W\":\"Profilo aggiornato con successo\",\"cl5WYc\":[\"Codice promo \",[\"promo_code\"],\" applicato\"],\"P5sgAk\":\"Codice Promo\",\"yKWfjC\":\"Pagina Codice Promo\",\"RVb8Fo\":\"Codici Promo\",\"BZ9GWa\":\"I codici promo possono essere utilizzati per offrire sconti, accesso in prevendita o fornire accesso speciale al tuo evento.\",\"OP094m\":\"Report Codici Promo\",\"4kyDD5\":\"Fornisci ulteriore contesto o istruzioni per questa domanda. Usa questo campo per aggiungere termini\\ne condizioni, linee guida o qualsiasi informazione importante che i partecipanti devono conoscere prima di rispondere.\",\"toutGW\":\"Codice QR\",\"LkMOWF\":\"Quantità Disponibile\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Domanda eliminata\",\"avf0gk\":\"Descrizione Domanda\",\"oQvMPn\":\"Titolo Domanda\",\"enzGAL\":\"Domande\",\"ROv2ZT\":\"Domande e Risposte\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Opzione Radio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Destinatario\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Rimborso Fallito\",\"n10yGu\":\"Rimborsa ordine\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Rimborso in Attesa\",\"xHpVRl\":\"Stato Rimborso\",\"/BI0y9\":\"Rimborsato\",\"fgLNSM\":\"Registrati\",\"9+8Vez\":\"Utilizzi Rimanenti\",\"tasfos\":\"rimuovi\",\"t/YqKh\":\"Rimuovi\",\"t9yxlZ\":\"Report\",\"prZGMe\":\"Richiedi Indirizzo di Fatturazione\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Reinvia conferma email\",\"wIa8Qe\":\"Reinvia invito\",\"VeKsnD\":\"Reinvia email ordine\",\"dFuEhO\":\"Reinvia e-mail del biglietto\",\"o6+Y6d\":\"Reinvio in corso...\",\"OfhWJH\":\"Reimposta\",\"RfwZxd\":\"Reimposta password\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Ripristina evento\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Torna alla Pagina dell'Evento\",\"8YBH95\":\"Ricavi\",\"PO/sOY\":\"Revoca invito\",\"GDvlUT\":\"Ruolo\",\"ELa4O9\":\"Data Fine Vendita\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Data Inizio Vendita\",\"hBsw5C\":\"Vendite terminate\",\"kpAzPe\":\"Inizio vendite\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Salva\",\"IUwGEM\":\"Salva Modifiche\",\"U65fiW\":\"Salva Organizzatore\",\"UGT5vp\":\"Salva Impostazioni\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Cerca per nome partecipante, email o numero ordine...\",\"+pr/FY\":\"Cerca per nome evento...\",\"3zRbWw\":\"Cerca per nome, email o numero ordine...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Cerca per nome...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Cerca assegnazioni di capacità...\",\"r9M1hc\":\"Cerca liste di check-in...\",\"+0Yy2U\":\"Cerca prodotti\",\"YIix5Y\":\"Cerca...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Colore secondario\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Colore testo secondario\",\"02ePaq\":[\"Seleziona \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Seleziona categoria...\",\"kWI/37\":\"Seleziona organizzatore\",\"ixIx1f\":\"Seleziona Prodotto\",\"3oSV95\":\"Seleziona Livello Prodotto\",\"C4Y1hA\":\"Seleziona prodotti\",\"hAjDQy\":\"Seleziona stato\",\"QYARw/\":\"Seleziona Biglietto\",\"OMX4tH\":\"Seleziona biglietti\",\"DrwwNd\":\"Seleziona periodo di tempo\",\"O/7I0o\":\"Seleziona...\",\"JlFcis\":\"Invia\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Invia un messaggio\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Invia Messaggio\",\"D7ZemV\":\"Invia email di conferma ordine e biglietto\",\"v1rRtW\":\"Invia Test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descrizione SEO\",\"/SIY6o\":\"Parole Chiave SEO\",\"GfWoKv\":\"Impostazioni SEO\",\"rXngLf\":\"Titolo SEO\",\"/jZOZa\":\"Commissione di Servizio\",\"Bj/QGQ\":\"Imposta un prezzo minimo e permetti agli utenti di pagare di più se lo desiderano\",\"L0pJmz\":\"Imposta il numero iniziale per la numerazione delle fatture. Questo non può essere modificato una volta che le fatture sono state generate.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Impostazioni\",\"Z8lGw6\":\"Condividi\",\"B2V3cA\":\"Condividi Evento\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Mostra quantità prodotto disponibile\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Mostra altro\",\"izwOOD\":\"Mostra tasse e commissioni separatamente\",\"1SbbH8\":\"Mostrato al cliente dopo il checkout, nella pagina di riepilogo dell'ordine.\",\"YfHZv0\":\"Mostrato al cliente prima del checkout\",\"CBBcly\":\"Mostra i campi comuni dell'indirizzo, incluso il paese\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Casella di testo a riga singola\",\"+P0Cn2\":\"Salta questo passaggio\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Esaurito\",\"Mi1rVn\":\"Esaurito\",\"nwtY4N\":\"Qualcosa è andato storto\",\"GRChTw\":\"Qualcosa è andato storto durante l'eliminazione della Tassa o Commissione\",\"YHFrbe\":\"Qualcosa è andato storto! Riprova\",\"kf83Ld\":\"Qualcosa è andato storto.\",\"fWsBTs\":\"Qualcosa è andato storto. Riprova.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Spiacenti, questo codice promo non è riconosciuto\",\"65A04M\":\"Spagnolo\",\"mFuBqb\":\"Prodotto standard con prezzo fisso\",\"D3iCkb\":\"Data di inizio\",\"/2by1f\":\"Stato o Regione\",\"uAQUqI\":\"Stato\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"I pagamenti Stripe non sono abilitati per questo evento.\",\"UJmAAK\":\"Oggetto\",\"X2rrlw\":\"Subtotale\",\"zzDlyQ\":\"Successo\",\"b0HJ45\":[\"Successo! \",[\"0\"],\" riceverà un'email a breve.\"],\"BJIEiF\":[\"Partecipante \",[\"0\"],\" con successo\"],\"OtgNFx\":\"Indirizzo email confermato con successo\",\"IKwyaF\":\"Modifica email confermata con successo\",\"zLmvhE\":\"Partecipante creato con successo\",\"gP22tw\":\"Prodotto Creato con Successo\",\"9mZEgt\":\"Codice Promo Creato con Successo\",\"aIA9C4\":\"Domanda Creata con Successo\",\"J3RJSZ\":\"Partecipante aggiornato con successo\",\"3suLF0\":\"Assegnazione Capacità aggiornata con successo\",\"Z+rnth\":\"Lista Check-In aggiornata con successo\",\"vzJenu\":\"Impostazioni Email Aggiornate con Successo\",\"7kOMfV\":\"Evento Aggiornato con Successo\",\"G0KW+e\":\"Design Homepage Aggiornato con Successo\",\"k9m6/E\":\"Impostazioni Homepage Aggiornate con Successo\",\"y/NR6s\":\"Posizione Aggiornata con Successo\",\"73nxDO\":\"Impostazioni Varie Aggiornate con Successo\",\"4H80qv\":\"Ordine aggiornato con successo\",\"6xCBVN\":\"Impostazioni di Pagamento e Fatturazione Aggiornate con Successo\",\"1Ycaad\":\"Prodotto aggiornato con successo\",\"70dYC8\":\"Codice Promo Aggiornato con Successo\",\"F+pJnL\":\"Impostazioni SEO Aggiornate con Successo\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Email di Supporto\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Tassa\",\"geUFpZ\":\"Tasse e Commissioni\",\"dFHcIn\":\"Dettagli Fiscali\",\"wQzCPX\":\"Informazioni fiscali da mostrare in fondo a tutte le fatture (es. numero di partita IVA, registrazione fiscale)\",\"0RXCDo\":\"Tassa o Commissione eliminata con successo\",\"ZowkxF\":\"Tasse\",\"qu6/03\":\"Tasse e Commissioni\",\"gypigA\":\"Quel codice promo non è valido\",\"5ShqeM\":\"La lista di check-in che stai cercando non esiste.\",\"QXlz+n\":\"La valuta predefinita per i tuoi eventi.\",\"mnafgQ\":\"Il fuso orario predefinito per i tuoi eventi.\",\"o7s5FA\":\"La lingua in cui il partecipante riceverà le email.\",\"NlfnUd\":\"Il link che hai cliccato non è valido.\",\"HsFnrk\":[\"Il numero massimo di prodotti per \",[\"0\"],\"è \",[\"1\"]],\"TSAiPM\":\"La pagina che stai cercando non esiste\",\"MSmKHn\":\"Il prezzo mostrato al cliente includerà tasse e commissioni.\",\"6zQOg1\":\"Il prezzo mostrato al cliente non includerà tasse e commissioni. Saranno mostrate separatamente\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Il titolo dell'evento che verrà visualizzato nei risultati dei motori di ricerca e quando si condivide sui social media. Per impostazione predefinita, verrà utilizzato il titolo dell'evento\",\"wDx3FF\":\"Non ci sono prodotti disponibili per questo evento\",\"pNgdBv\":\"Non ci sono prodotti disponibili in questa categoria\",\"rMcHYt\":\"C'è un rimborso in attesa. Attendi che sia completato prima di richiedere un altro rimborso.\",\"F89D36\":\"Si è verificato un errore nel contrassegnare l'ordine come pagato\",\"68Axnm\":\"Si è verificato un errore durante l'elaborazione della tua richiesta. Riprova.\",\"mVKOW6\":\"Si è verificato un errore durante l'invio del tuo messaggio\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Questo partecipante ha un ordine non pagato.\",\"mf3FrP\":\"Questa categoria non ha ancora prodotti.\",\"8QH2Il\":\"Questa categoria è nascosta alla vista pubblica\",\"xxv3BZ\":\"Questa lista di check-in è scaduta\",\"Sa7w7S\":\"Questa lista di check-in è scaduta e non è più disponibile per i check-in.\",\"Uicx2U\":\"Questa lista di check-in è attiva\",\"1k0Mp4\":\"Questa lista di check-in non è ancora attiva\",\"K6fmBI\":\"Questa lista di check-in non è ancora attiva e non è disponibile per i check-in.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Queste informazioni saranno mostrate nella pagina di pagamento, nella pagina di riepilogo dell'ordine e nell'email di conferma dell'ordine.\",\"XAHqAg\":\"Questo è un prodotto generico, come una maglietta o una tazza. Non verrà emesso alcun biglietto\",\"CNk/ro\":\"Questo è un evento online\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Questo messaggio sarà incluso nel piè di pagina di tutte le email inviate da questo evento\",\"55i7Fa\":\"Questo messaggio sarà mostrato solo se l'ordine è completato con successo. Gli ordini in attesa di pagamento non mostreranno questo messaggio\",\"RjwlZt\":\"Questo ordine è già stato pagato.\",\"5K8REg\":\"Questo ordine è già stato rimborsato.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Questo ordine è stato annullato.\",\"Q0zd4P\":\"Questo ordine è scaduto. Per favore ricomincia.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Questo ordine è completo.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Questa pagina dell'ordine non è più disponibile.\",\"i0TtkR\":\"Questo sovrascrive tutte le impostazioni di visibilità e nasconderà il prodotto a tutti i clienti.\",\"cRRc+F\":\"Questo prodotto non può essere eliminato perché è associato a un ordine. Puoi invece nasconderlo.\",\"3Kzsk7\":\"Questo prodotto è un biglietto. Agli acquirenti verrà emesso un biglietto al momento dell'acquisto\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Questo link per reimpostare la password non è valido o è scaduto.\",\"IV9xTT\":\"Questo utente non è attivo, poiché non ha accettato il suo invito.\",\"5AnPaO\":\"biglietto\",\"kjAL4v\":\"Biglietto\",\"dtGC3q\":\"Email del biglietto reinviata al partecipante\",\"54q0zp\":\"Biglietti per\",\"xN9AhL\":[\"Livello \",[\"0\"]],\"jZj9y9\":\"Prodotto a Livelli\",\"8wITQA\":\"I prodotti a livelli ti permettono di offrire più opzioni di prezzo per lo stesso prodotto. È perfetto per prodotti in prevendita o per offrire diverse opzioni di prezzo per diversi gruppi di persone.\",\"nn3mSR\":\"Tempo rimasto:\",\"s/0RpH\":\"Volte utilizzato\",\"y55eMd\":\"Volte Utilizzato\",\"40Gx0U\":\"Fuso orario\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Strumenti\",\"72c5Qo\":\"Totale\",\"YXx+fG\":\"Totale Prima degli Sconti\",\"NRWNfv\":\"Importo Totale Sconto\",\"BxsfMK\":\"Commissioni Totali\",\"2bR+8v\":\"Vendite Lorde Totali\",\"mpB/d9\":\"Importo totale ordine\",\"m3FM1g\":\"Totale rimborsato\",\"jEbkcB\":\"Totale Rimborsato\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Tasse Totali\",\"+zy2Nq\":\"Tipo\",\"FMdMfZ\":\"Impossibile registrare il partecipante\",\"bPWBLL\":\"Impossibile registrare l'uscita del partecipante\",\"9+P7zk\":\"Impossibile creare il prodotto. Controlla i tuoi dati\",\"WLxtFC\":\"Impossibile creare il prodotto. Controlla i tuoi dati\",\"/cSMqv\":\"Impossibile creare la domanda. Controlla i tuoi dati\",\"MH/lj8\":\"Impossibile aggiornare la domanda. Controlla i tuoi dati\",\"nnfSdK\":\"Clienti Unici\",\"Mqy/Zy\":\"Stati Uniti\",\"NIuIk1\":\"Illimitato\",\"/p9Fhq\":\"Disponibilità illimitata\",\"E0q9qH\":\"Utilizzi illimitati consentiti\",\"h10Wm5\":\"Ordine non pagato\",\"ia8YsC\":\"In Arrivo\",\"TlEeFv\":\"Eventi in Arrivo\",\"L/gNNk\":[\"Aggiorna \",[\"0\"]],\"+qqX74\":\"Aggiorna nome, descrizione e date dell'evento\",\"vXPSuB\":\"Aggiorna profilo\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copiato negli appunti\",\"e5lF64\":\"Esempio di utilizzo\",\"fiV0xj\":\"Limite di Utilizzo\",\"sGEOe4\":\"Usa una versione sfocata dell'immagine di copertina come sfondo\",\"OadMRm\":\"Usa immagine di copertina\",\"7PzzBU\":\"Utente\",\"yDOdwQ\":\"Gestione Utenti\",\"Sxm8rQ\":\"Utenti\",\"VEsDvU\":\"Gli utenti possono modificare la loro email in <0>Impostazioni Profilo\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"IVA\",\"E/9LUk\":\"Nome della Sede\",\"jpctdh\":\"Visualizza\",\"Pte1Hv\":\"Visualizza Dettagli Partecipante\",\"/5PEQz\":\"Visualizza pagina evento\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Visualizza su Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Lista check-in VIP\",\"tF+VVr\":\"Biglietto VIP\",\"2q/Q7x\":\"Visibilità\",\"vmOFL/\":\"Non è stato possibile elaborare il tuo pagamento. Riprova o contatta l'assistenza.\",\"45Srzt\":\"Non è stato possibile eliminare la categoria. Riprova.\",\"/DNy62\":[\"Non abbiamo trovato biglietti corrispondenti a \",[\"0\"]],\"1E0vyy\":\"Non è stato possibile caricare i dati. Riprova.\",\"NmpGKr\":\"Non è stato possibile riordinare le categorie. Riprova.\",\"BJtMTd\":\"Consigliamo dimensioni di 2160px per 1080px e una dimensione massima del file di 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Non siamo riusciti a confermare il tuo pagamento. Riprova o contatta l'assistenza.\",\"Gspam9\":\"Stiamo elaborando il tuo ordine. Attendere prego...\",\"LuY52w\":\"Benvenuto a bordo! Accedi per continuare.\",\"dVxpp5\":[\"Bentornato\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Cosa sono i Prodotti a Livelli?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Cos'è una Categoria?\",\"gxeWAU\":\"A quali prodotti si applica questo codice?\",\"hFHnxR\":\"A quali prodotti si applica questo codice? (Si applica a tutti per impostazione predefinita)\",\"AeejQi\":\"A quali prodotti dovrebbe applicarsi questa capacità?\",\"Rb0XUE\":\"A che ora arriverai?\",\"5N4wLD\":\"Che tipo di domanda è questa?\",\"gyLUYU\":\"Quando abilitato, le fatture verranno generate per gli ordini di biglietti. Le fatture saranno inviate insieme all'email di conferma dell'ordine. I partecipanti possono anche scaricare le loro fatture dalla pagina di conferma dell'ordine.\",\"D3opg4\":\"Quando i pagamenti offline sono abilitati, gli utenti potranno completare i loro ordini e ricevere i loro biglietti. I loro biglietti indicheranno chiaramente che l'ordine non è pagato, e lo strumento di check-in avviserà il personale di check-in se un ordine richiede il pagamento.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Quali biglietti dovrebbero essere associati a questa lista di check-in?\",\"S+OdxP\":\"Chi sta organizzando questo evento?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"A chi dovrebbe essere posta questa domanda?\",\"VxFvXQ\":\"Incorpora Widget\",\"v1P7Gm\":\"Impostazioni widget\",\"b4itZn\":\"In corso\",\"hqmXmc\":\"In corso...\",\"+G/XiQ\":\"Da inizio anno\",\"l75CjT\":\"Si\",\"QcwyCh\":\"Sì, rimuovili\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Stai cambiando la tua email in <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Sei offline\",\"sdB7+6\":\"Puoi creare un codice promo che ha come target questo prodotto nella\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Non puoi cambiare il tipo di prodotto poiché ci sono partecipanti associati a questo prodotto.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Non puoi registrare partecipanti con ordini non pagati. Questa impostazione può essere modificata nelle impostazioni dell'evento.\",\"c9Evkd\":\"Non puoi eliminare l'ultima categoria.\",\"6uwAvx\":\"Non puoi eliminare questo livello di prezzo perché ci sono già prodotti venduti per questo livello. Puoi invece nasconderlo.\",\"tFbRKJ\":\"Non puoi modificare il ruolo o lo stato del proprietario dell'account.\",\"fHfiEo\":\"Non puoi rimborsare un ordine creato manualmente.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Hai accesso a più account. Scegli uno per continuare.\",\"Z6q0Vl\":\"Hai già accettato questo invito. Accedi per continuare.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Non hai modifiche di email in sospeso.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Hai esaurito il tempo per completare il tuo ordine.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Devi riconoscere che questa email non è promozionale\",\"3ZI8IL\":\"Devi accettare i termini e le condizioni\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Devi creare un biglietto prima di poter aggiungere manualmente un partecipante.\",\"jE4Z8R\":\"Devi avere almeno un livello di prezzo\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Dovrai contrassegnare un ordine come pagato manualmente. Questo può essere fatto nella pagina di gestione dell'ordine.\",\"L/+xOk\":\"Avrai bisogno di un biglietto prima di poter creare una lista di check-in.\",\"Djl45M\":\"Avrai bisogno di un prodotto prima di poter creare un'assegnazione di capacità.\",\"y3qNri\":\"Avrai bisogno di almeno un prodotto per iniziare. Gratuito, a pagamento o lascia che l'utente decida quanto pagare.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Il nome del tuo account è utilizzato nelle pagine degli eventi e nelle email.\",\"veessc\":\"I tuoi partecipanti appariranno qui una volta che si saranno registrati per il tuo evento. Puoi anche aggiungere manualmente i partecipanti.\",\"Eh5Wrd\":\"Il tuo fantastico sito web 🎉\",\"lkMK2r\":\"I tuoi Dettagli\",\"3ENYTQ\":[\"La tua richiesta di cambio email a <0>\",[\"0\"],\" è in attesa. Controlla la tua email per confermare\"],\"yZfBoy\":\"Il tuo messaggio è stato inviato\",\"KSQ8An\":\"Il tuo Ordine\",\"Jwiilf\":\"Il tuo ordine è stato annullato\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"I tuoi ordini appariranno qui una volta che inizieranno ad arrivare.\",\"9TO8nT\":\"La tua password\",\"P8hBau\":\"Il tuo pagamento è in elaborazione.\",\"UdY1lL\":\"Il tuo pagamento non è andato a buon fine, riprova.\",\"fzuM26\":\"Il tuo pagamento non è andato a buon fine. Riprova.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Il tuo rimborso è in elaborazione.\",\"IFHV2p\":\"Il tuo biglietto per\",\"x1PPdr\":\"CAP / Codice Postale\",\"BM/KQm\":\"CAP o Codice Postale\",\"+LtVBt\":\"CAP o Codice Postale\",\"25QDJ1\":\"- Clicca per pubblicare\",\"WOyJmc\":\"- Clicca per annullare la pubblicazione\",\"ncwQad\":\"(vuoto)\",\"B/gRsg\":\"(nessuno)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ha già effettuato il check-in\"],\"3beCx0\":[[\"0\"],\" <0>registrato\"],\"S4PqS9\":[[\"0\"],\" Webhook Attivi\"],\"6MIiOI\":[[\"0\"],\" rimasti\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" di \",[\"1\"],\" posti sono occupati.\"],\"B7pZfX\":[[\"0\"],\" organizzatori\"],\"rZTf6P\":[[\"0\"],\" posti rimasti\"],\"/HkCs4\":[[\"0\"],\" biglietti\"],\"dtXkP9\":[[\"0\"],\" date in arrivo\"],\"30bTiU\":[[\"activeCount\"],\" attivi\"],\"jTs4am\":[\"Logo \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" partecipanti sono registrati per questa sessione.\"],\"TjbIUI\":[[\"availableCount\"],\" di \",[\"totalCount\"],\" disponibile\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" registrati\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" h fa\"],\"NRSLBe\":[[\"diffMin\"],\" min fa\"],\"iYfwJE\":[[\"diffSec\"],\" sec fa\"],\"OJnhhX\":[[\"eventCount\"],\" eventi\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" partecipanti sono registrati nelle sessioni interessate.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" tipi di biglietto\"],\"0cLzoF\":[[\"totalOccurrences\"],\" date\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessioni in \",[\"0\"],\" date (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sessione\"],\"other\":[\"#\",\" sessioni\"]}],\" al giorno)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Tasse/Commissioni\",\"B1St2O\":\"<0>Le liste di check-in ti aiutano a gestire l'ingresso all'evento per giorno, area o tipo di biglietto. Puoi collegare i biglietti a liste specifiche come zone VIP o pass del Giorno 1 e condividere un link di check-in sicuro con il personale. Non è richiesto alcun account. Il check-in funziona su dispositivi mobili, desktop o tablet, utilizzando la fotocamera del dispositivo o uno scanner USB HID. \",\"v9VSIS\":\"<0>Imposta un unico limite di presenze totale che si applichi a più tipi di biglietto contemporaneamente.<1>Ad esempio, se colleghi un <2>Pass Giornaliero e un biglietto <3>Weekend Completo, entrambi verranno estratti dallo stesso gruppo di posti. Una volta raggiunto il limite, la vendita di tutti i biglietti collegati verrà interrotta automaticamente.\",\"vKXqag\":\"<0>Questa è la quantità predefinita per tutte le date. La capacità di ogni data può limitare ulteriormente la disponibilità nella <1>pagina di programmazione delle sessioni.\",\"ZnVt5v\":\"<0>I webhook notificano istantaneamente i servizi esterni quando si verificano eventi, come l'aggiunta di un nuovo partecipante al tuo CRM o alla mailing list al momento della registrazione, garantendo un'automazione senza interruzioni.<1>Utilizza servizi di terze parti come <2>Zapier, <3>IFTTT o <4>Make per creare flussi di lavoro personalizzati e automatizzare le attività.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" al tasso attuale\"],\"M2DyLc\":\"1 Webhook Attivo\",\"6hIk/x\":\"1 partecipante è registrato nelle sessioni interessate.\",\"qOyE2U\":\"1 partecipante è registrato per questa sessione.\",\"943BwI\":\"1 giorno dopo la data di fine\",\"yj3N+g\":\"1 giorno dopo la data di inizio\",\"Z3etYG\":\"1 giorno prima dell'evento\",\"szSnlj\":\"1 ora prima dell'evento\",\"yTsaLw\":\"1 biglietto\",\"nz96Ue\":\"1 tipo di biglietto\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 settimana prima dell'evento\",\"09VFYl\":\"12 biglietti offerti\",\"HR/cvw\":\"Via Esempio 123\",\"dgKxZ5\":\"135+ valute e 40+ metodi di pagamento\",\"kMU5aM\":\"Un avviso di annullamento è stato inviato a\",\"o++0qa\":\"una modifica della durata\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Un nuovo codice di verifica è stato inviato alla tua email\",\"sr2Je0\":\"uno spostamento degli orari di inizio/fine\",\"/z/bH1\":\"Una breve descrizione del tuo organizzatore che sarà visibile agli utenti.\",\"aS0jtz\":\"Abbandonato\",\"uyJsf6\":\"Informazioni\",\"JvuLls\":\"Assorbire la commissione\",\"lk74+I\":\"Assorbire la commissione\",\"1uJlG9\":\"Colore di Accento\",\"g3UF2V\":\"Accetta\",\"K5+3xg\":\"Accetta invito\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informazioni sull'account\",\"EHNORh\":\"Account non trovato\",\"bPwFdf\":\"Account\",\"AhwTa1\":\"Azione richiesta: Informazioni IVA necessarie\",\"APyAR/\":\"Eventi attivi\",\"kCl6ja\":\"Metodi di pagamento attivi\",\"XJOV1Y\":\"Attività\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Aggiungi una data\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Aggiungi una singola data\",\"CjvTPJ\":\"Aggiungi un altro orario\",\"0XCduh\":\"Aggiungi almeno un orario\",\"/chGpa\":\"Aggiungi i dettagli di connessione per l’evento online.\",\"UWWRyd\":\"Aggiungi domande personalizzate per raccogliere informazioni aggiuntive durante il checkout\",\"Z/dcxc\":\"Aggiungi data\",\"Q219NT\":\"Aggiungi date\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Aggiungi luogo\",\"VX6WUv\":\"Aggiungi luogo\",\"GCQlV2\":\"Aggiungi più orari se organizzi più sessioni al giorno.\",\"7JF9w9\":\"Aggiungi domanda\",\"NLbIb6\":\"Aggiungi comunque questo partecipante (ignora la capacità)\",\"6PNlRV\":\"Aggiungi questo evento al tuo calendario\",\"BGD9Yt\":\"Aggiungi biglietti\",\"uIv4Op\":\"Aggiungi pixel di tracciamento alle pagine pubbliche del tuo evento e alla home dell'organizzatore. Quando il tracciamento è attivo, ai visitatori verrà mostrato un banner per il consenso ai cookie.\",\"QN2F+7\":\"Aggiungi Webhook\",\"NsWqSP\":\"Aggiungi i tuoi profili social e l'URL del sito. Verranno mostrati nella pagina pubblica dell'organizzatore.\",\"bVjDs9\":\"Commissioni aggiuntive\",\"MKqSg4\":\"Accesso amministratore richiesto\",\"0Zypnp\":\"Dashboard Amministratore\",\"YAV57v\":\"Affiliato\",\"I+utEq\":\"Il codice affiliato non può essere modificato\",\"/jHBj5\":\"Affiliato creato con successo\",\"uCFbG2\":\"Affiliato eliminato con successo\",\"ld8I+f\":\"Programma di affiliazione\",\"a41PKA\":\"Le vendite dell'affiliato saranno tracciate\",\"mJJh2s\":\"Le vendite dell'affiliato non saranno tracciate. Questo disattiverà l'affiliato.\",\"jabmnm\":\"Affiliato aggiornato con successo\",\"CPXP5Z\":\"Affiliati\",\"9Wh+ug\":\"Affiliati esportati\",\"3cqmut\":\"Gli affiliati ti aiutano a tracciare le vendite generate da partner e influencer. Crea codici affiliato e condividili per monitorare le prestazioni.\",\"z7GAMJ\":\"tutti\",\"N40H+G\":\"Tutti\",\"7rLTkE\":\"Tutti gli eventi archiviati\",\"gKq1fa\":\"Tutti i partecipanti\",\"63gRoO\":\"Tutti i partecipanti delle sessioni selezionate\",\"uWxIoH\":\"Tutti i partecipanti di questa sessione\",\"pMLul+\":\"Tutte le valute\",\"sgUdRZ\":\"Tutte le date\",\"e4q4uO\":\"Tutte le date\",\"ZS/D7f\":\"Tutti gli eventi terminati\",\"QsYjci\":\"Tutti gli eventi\",\"31KB8w\":\"Tutti i lavori falliti eliminati\",\"D2g7C7\":\"Tutti i lavori in coda per il nuovo tentativo\",\"B4RFBk\":\"Tutte le date corrispondenti\",\"F1/VgK\":\"Tutte le sessioni\",\"OpWjMq\":\"Tutte le sessioni\",\"Sxm1lO\":\"Tutti gli stati\",\"dr7CWq\":\"Tutti gli eventi in arrivo\",\"GpT6Uf\":\"Consentire ai partecipanti di aggiornare le informazioni del biglietto (nome, e-mail) tramite un link sicuro inviato con la conferma dell'ordine.\",\"F3mW5G\":\"Consenti ai clienti di iscriversi a una lista d'attesa quando questo prodotto è esaurito\",\"c4uJfc\":\"Quasi fatto! Stiamo solo aspettando che il tuo pagamento venga elaborato. Dovrebbe richiedere solo pochi secondi.\",\"ocS8eq\":[\"Hai già un account? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Già dentro\",\"/H326L\":\"Già rimborsato\",\"USEpOK\":\"Usi già Stripe per un altro organizzatore? Riutilizza quella connessione.\",\"RtxQTF\":\"Cancella anche questo ordine\",\"jkNgQR\":\"Rimborsa anche questo ordine\",\"xYqsHg\":\"Sempre disponibile\",\"Wvrz79\":\"Importo pagato\",\"Zkymb9\":\"Un'email da associare a questo affiliato. L'affiliato non sarà notificato.\",\"vRznIT\":\"Si è verificato un errore durante il controllo dello stato di esportazione.\",\"eusccx\":\"Un messaggio facoltativo da visualizzare sul prodotto evidenziato, ad esempio \\\"In vendita veloce 🔥\\\" o \\\"Miglior rapporto qualità-prezzo\\\"\",\"5GJuNp\":[\"e altri \",[\"0\"],\"...\"],\"QNrkms\":\"Risposta aggiornata con successo.\",\"+qygei\":\"Risposte\",\"GK7Lnt\":\"Risposte al checkout (es. scelta del pasto)\",\"lE8PgT\":\"Le date che hai personalizzato manualmente verranno mantenute.\",\"vP3Nzg\":[\"Si applica a \",[\"0\"],\" date non annullate attualmente caricate in questa pagina.\"],\"kkVyZZ\":\"Vale per chi apre il link senza essere autenticato. I membri autenticati vedono sempre tutto.\",\"je4muG\":[\"Si applica a ogni data non annullata di questo evento (\",[\"0\"],\" in totale) — incluse le date non attualmente caricate.\"],\"YIIQtt\":\"Applica modifiche\",\"NzWX1Y\":\"Applica a\",\"Ps5oDT\":\"Applica a tutti i biglietti\",\"261RBr\":\"Approva messaggio\",\"naCW6Z\":\"Aprile\",\"B495Gs\":\"Archivia\",\"5sNliy\":\"Archivia evento\",\"BrwnrJ\":\"Archivia organizzatore\",\"E5eghW\":\"Archivia questo evento per nasconderlo al pubblico. Puoi ripristinarlo in seguito.\",\"eqFkeI\":\"Archivia questo organizzatore. Verranno archiviati anche tutti gli eventi appartenenti a questo organizzatore.\",\"BzcxWv\":\"Organizzatori archiviati\",\"9cQBd6\":\"Sei sicuro di voler archiviare questo evento? Non sarà più visibile al pubblico.\",\"Trnl3E\":\"Sei sicuro di voler archiviare questo organizzatore? Verranno archiviati anche tutti gli eventi appartenenti a questo organizzatore.\",\"wOvn+e\":[\"Sei sicuro di voler annullare \",[\"count\"],\" data/e? I partecipanti interessati verranno avvisati via email.\"],\"GTxE0U\":\"Sei sicuro di voler annullare questa data? I partecipanti interessati verranno avvisati via email.\",\"VkSk/i\":\"Sei sicuro di voler annullare questo messaggio programmato?\",\"0aVEBY\":\"Sei sicuro di voler eliminare tutti i lavori falliti?\",\"LchiNd\":\"Sei sicuro di voler eliminare questo affiliato? Questa azione non può essere annullata.\",\"vPeW/6\":\"Vuoi davvero eliminare questa configurazione? Ciò potrebbe influire sugli account che la utilizzano.\",\"h42Hc/\":\"Sei sicuro di voler eliminare questa data? Questa azione non può essere annullata.\",\"JmVITJ\":\"Sei sicuro di voler eliminare questo modello? Questa azione non può essere annullata e le email torneranno al modello predefinito.\",\"aLS+A6\":\"Sei sicuro di voler eliminare questo modello? Questa azione non può essere annullata e le email torneranno al modello dell'organizzatore o predefinito.\",\"5H3Z78\":\"Sei sicuro di voler eliminare questo webhook?\",\"147G4h\":\"Sei sicuro di voler uscire?\",\"VDWChT\":\"Sei sicuro di voler rendere questo organizzatore una bozza? La pagina dell'organizzatore sarà invisibile al pubblico.\",\"pWtQJM\":\"Sei sicuro di voler rendere pubblico questo organizzatore? La pagina dell'organizzatore sarà visibile al pubblico.\",\"EOqL/A\":\"Sei sicuro di voler offrire un posto a questa persona? Riceverà una notifica via e-mail.\",\"yAXqWW\":\"Sei sicuro di voler eliminare definitivamente questa data? L'operazione non può essere annullata.\",\"WFHOlF\":\"Sei sicuro di voler pubblicare questo evento? Una volta pubblicato, sarà visibile al pubblico.\",\"4TNVdy\":\"Sei sicuro di voler pubblicare questo profilo organizzatore? Una volta pubblicato, sarà visibile al pubblico.\",\"8x0pUg\":\"Sei sicuro di voler rimuovere questa voce dalla lista d'attesa?\",\"cDtoWq\":[\"Sei sicuro di voler reinviare la conferma dell'ordine a \",[\"0\"],\"?\"],\"xeIaKw\":[\"Sei sicuro di voler reinviare il biglietto a \",[\"0\"],\"?\"],\"BjbocR\":\"Sei sicuro di voler ripristinare questo evento?\",\"7MjfcR\":\"Sei sicuro di voler ripristinare questo organizzatore?\",\"ExDt3P\":\"Sei sicuro di voler annullare la pubblicazione di questo evento? Non sarà più visibile al pubblico.\",\"5Qmxo/\":\"Sei sicuro di voler annullare la pubblicazione di questo profilo organizzatore? Non sarà più visibile al pubblico.\",\"Uqefyd\":\"Sei registrato IVA nell'UE?\",\"+QARA4\":\"Arte\",\"tLf3yJ\":\"Poiché la tua attività ha sede in Irlanda, l'IVA irlandese al 23% si applica automaticamente a tutte le commissioni della piattaforma.\",\"tMeVa/\":\"Richiedi nome ed email per ogni biglietto acquistato\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assegna piano\",\"xdiER7\":\"Livello assegnato\",\"F2rX0R\":\"Deve essere selezionato almeno un tipo di evento\",\"BCmibk\":\"Tentativi\",\"6PecK3\":\"Presenze e tassi di check-in per tutti gli eventi\",\"K2tp3v\":\"partecipante\",\"AJ4rvK\":\"Partecipante Cancellato\",\"qvylEK\":\"Partecipante Creato\",\"Aspq3b\":\"Raccolta dati partecipanti\",\"fpb0rX\":\"Dati del partecipante copiati dall'ordine\",\"0R3Y+9\":\"Email Partecipante\",\"94aQMU\":\"Informazioni partecipante\",\"KkrBiR\":\"Raccolta delle informazioni sui partecipanti\",\"av+gjP\":\"Nome Partecipante\",\"sjPjOg\":\"Note del partecipante\",\"cosfD8\":\"Stato del Partecipante\",\"D2qlBU\":\"Partecipante Aggiornato\",\"22BOve\":\"Partecipante aggiornato con successo\",\"x8Vnvf\":\"Il biglietto del partecipante non è incluso in questa lista\",\"/Ywywr\":\"partecipanti\",\"zLRobu\":\"partecipanti registrati\",\"k3Tngl\":\"Partecipanti Esportati\",\"UoIRW8\":\"Partecipanti registrati\",\"5UbY+B\":\"Partecipanti con un biglietto specifico\",\"4HVzhV\":\"Partecipanti:\",\"HVkhy2\":\"Analisi di attribuzione\",\"dMMjeD\":\"Ripartizione dell'attribuzione\",\"1oPDuj\":\"Valore di attribuzione\",\"DBHTm/\":\"Agosto\",\"JgREph\":\"L'offerta automatica è attivata\",\"V7Tejz\":\"Elaborazione automatica della lista d'attesa\",\"PZ7FTW\":\"Rilevato automaticamente in base al colore di sfondo, ma può essere sovrascritto\",\"zlnTuI\":\"Offri automaticamente i biglietti alla persona successiva quando si libera un posto. Se questa opzione è disabilitata, puoi gestire manualmente la lista d'attesa dalla pagina Lista d'attesa.\",\"csDS2L\":\"Disponibile\",\"clF06r\":\"Disponibile per rimborso\",\"NB5+UG\":\"Token Disponibili\",\"L+wGOG\":\"In attesa\",\"qcw2OD\":\"Pagamento attesa\",\"kNmmvE\":\"Awesome Events S.r.l.\",\"iH8pgl\":\"Indietro\",\"TeSaQO\":\"Torna a Account\",\"X7Q/iM\":\"Torna al calendario\",\"kYqM1A\":\"Torna all'evento\",\"s5QRF3\":\"Torna ai messaggi\",\"td/bh+\":\"Torna ai Report\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Prezzo base\",\"hviJef\":\"Basato sul periodo di vendita globale qui sopra, non per data\",\"jIPNJG\":\"Informazioni di base\",\"UabgBd\":\"Il corpo è obbligatorio\",\"HWXuQK\":\"Aggiungi questa pagina ai preferiti per gestire il tuo ordine in qualsiasi momento.\",\"CUKVDt\":\"Personalizza i tuoi biglietti con un logo, colori e messaggio a piè di pagina personalizzati.\",\"4BZj5p\":\"Protezione antifrode integrata\",\"cr7kGH\":\"Modifica in blocco\",\"1Fbd6n\":\"Modifica date in blocco\",\"Eq6Tu9\":\"Aggiornamento in blocco non riuscito.\",\"9N+p+g\":\"Business\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nome dell'azienda\",\"bv6RXK\":\"Etichetta Pulsante\",\"ChDLlO\":\"Testo del pulsante\",\"BUe8Wj\":\"L'acquirente paga\",\"qF1qbA\":\"Gli acquirenti vedono un prezzo pulito. La commissione della piattaforma viene detratta dal tuo pagamento.\",\"dg05rc\":\"Aggiungendo i pixel di tracciamento, riconosci che tu e questa piattaforma siete contitolari del trattamento dei dati raccolti. Sei responsabile di assicurare di avere una base giuridica per tale trattamento ai sensi delle leggi sulla privacy applicabili (GDPR, CCPA, ecc.).\",\"DFqasq\":[\"Continuando, accetti i <0>\",[\"0\"],\"Termini del servizio\"],\"wVSa+U\":\"Per giorno del mese\",\"0MnNgi\":\"Per giorno della settimana\",\"CetOZE\":\"Per tipo biglietto\",\"lFdbRS\":\"Ignora commissioni applicazione\",\"AjVXBS\":\"Calendario\",\"alkXJ5\":\"Vista calendario\",\"2VLZwd\":\"Pulsante di Invito all'Azione\",\"rT2cV+\":\"Fotocamera\",\"7hYa9y\":\"Autorizzazione fotocamera negata. <0>Richiedi di nuovo o consenti l'accesso alla fotocamera nelle impostazioni del browser.\",\"D02dD9\":\"Campagna\",\"RRPA79\":\"Check-in non possibile\",\"OcVwAd\":[\"Annulla \",[\"count\"],\" data/e\"],\"H4nE+E\":\"Cancella tutti i prodotti e rilasciali nel pool disponibile\",\"Py78q9\":\"Annulla data\",\"tOXAdc\":\"La cancellazione cancellerà tutti i partecipanti associati a questo ordine e rilascerà i biglietti nel pool disponibile.\",\"vev1Jl\":\"Annullamento\",\"Ha17hq\":[[\"0\"],\" data/e annullata/e\"],\"01sEfm\":\"Impossibile eliminare la configurazione predefinita del sistema\",\"VsM1HH\":\"Assegnazioni di capacità\",\"9bIMVF\":\"Gestione della capacità\",\"H7K8og\":\"La capacità deve essere 0 o superiore\",\"nzao08\":\"aggiornamenti di capacità\",\"4cp9NP\":\"Capacità utilizzata\",\"K7tIrx\":\"Categoria\",\"o+XJ9D\":\"Modifica\",\"kJkjoB\":\"Modifica durata\",\"J0KExZ\":\"Modifica il limite di partecipanti\",\"CIHJJf\":\"Modifica impostazioni lista di attesa\",\"B5icLR\":[\"Durata modificata per \",[\"count\"],\" data/e\"],\"Kb+0BT\":\"Pagamenti\",\"2tbLdK\":\"Beneficenza\",\"BPWGKn\":\"Check-in\",\"6uFFoY\":\"Check-out\",\"FjAlwK\":[\"Dai un'occhiata a questo evento: \",[\"0\"]],\"v4fiSg\":\"Controlla la tua email\",\"51AsAN\":\"Controlla la tua casella di posta! Se ci sono biglietti associati a questa email, riceverai un link per visualizzarli.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Registrazione Creata\",\"F4SRy3\":\"Registrazione Eliminata\",\"as6XfO\":[\"Check-in di \",[\"0\"],\" annullato\"],\"9s/wrQ\":\"Cronologia check-in\",\"Wwztk4\":\"Lista di check-in\",\"9gPPUY\":\"Lista di Check-In Creata!\",\"dwjiJt\":\"Info della lista\",\"7od0PV\":\"liste di check-in\",\"f2vU9t\":\"Liste di Check-in\",\"XprdTn\":\"Navigazione check-in\",\"5tV1in\":\"Avanzamento check-in\",\"SHJwyq\":\"Tasso di check-in\",\"qCqdg6\":\"Stato del Check-In\",\"cKj6OE\":\"Riepilogo Check-in\",\"7B5M35\":\"Check-In\",\"VrmydS\":\"Registrato\",\"DM4gBB\":\"Cinese (Tradizionale)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Scegli un'azione diversa\",\"fkb+y3\":\"Scegli un luogo salvato da applicare.\",\"Zok1Gx\":\"Scegli un organizzatore\",\"pkk46Q\":\"Scegli un organizzatore\",\"Crr3pG\":\"Scegli calendario\",\"LAW8Vb\":\"Scegli l'impostazione predefinita per i nuovi eventi. Questa può essere modificata per i singoli eventi.\",\"pjp2n5\":\"Scegli chi paga la commissione della piattaforma. Questo non influisce sulle commissioni aggiuntive che hai configurato nelle impostazioni del tuo account.\",\"xCJdfg\":\"Cancella\",\"QyOWu9\":\"Cancella luogo — usa il valore predefinito dell’evento\",\"V8yTm6\":\"Cancella ricerca\",\"kmnKnX\":\"La cancellazione rimuove qualsiasi sostituzione per singola sessione. Le sessioni interessate useranno il luogo predefinito dell’evento.\",\"/o+aQX\":\"Clicca per annullare\",\"gD7WGV\":\"Clicca per riaprire alle nuove vendite\",\"CySr+W\":\"Clicca per visualizzare le note\",\"RG3szS\":\"chiudi\",\"RWw9Lg\":\"Chiudi la finestra\",\"XwdMMg\":\"Il codice può contenere solo lettere, numeri, trattini e trattini bassi\",\"+yMJb7\":\"Il codice è obbligatorio\",\"m9SD3V\":\"Il codice deve contenere almeno 3 caratteri\",\"V1krgP\":\"Il codice non deve superare i 20 caratteri\",\"psqIm5\":\"Collabora con il tuo team per creare eventi straordinari insieme.\",\"4bUH9i\":\"Raccogli i dettagli dei partecipanti per ogni biglietto acquistato.\",\"TkfG8v\":\"Raccogli i dati per ordine\",\"96ryID\":\"Raccogli i dati per biglietto\",\"FpsvqB\":\"Modalità colore\",\"jEu4bB\":\"Colonne\",\"CWk59I\":\"Commedia\",\"rPA+Gc\":\"Preferenze di comunicazione\",\"zFT5rr\":\"completato\",\"bUQMpb\":\"Completa la configurazione di Stripe\",\"744BMm\":\"Completa il tuo ordine per assicurarti i biglietti. Questa offerta è a tempo limitato, quindi non aspettare troppo.\",\"5YrKW7\":\"Completa il pagamento per assicurarti i biglietti.\",\"xGU92i\":\"Completa il tuo profilo per unirti al team.\",\"QOhkyl\":\"Componi\",\"ih35UP\":\"Centro congressi\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configurazione assegnata\",\"X1zdE7\":\"Configurazione creata con successo\",\"mLBUMQ\":\"Configurazione eliminata correttamente\",\"UIENhw\":\"I nomi delle configurazioni sono visibili agli utenti finali. Le commissioni fisse verranno convertite nella valuta dell'ordine al tasso di cambio corrente.\",\"eeZdaB\":\"Configurazione aggiornata con successo\",\"3cKoxx\":\"Configurazioni\",\"8v2LRU\":\"Configura i dettagli dell'evento, la posizione, le opzioni di checkout e le notifiche email.\",\"raw09+\":\"Configura come vengono raccolti i dati dei partecipanti durante il checkout\",\"FI60XC\":\"Configura tasse e commissioni\",\"av6ukY\":\"Configura quali prodotti sono disponibili per questa sessione e, se necessario, modifica il prezzo.\",\"NGXKG/\":\"Conferma indirizzo email\",\"JRQitQ\":\"Conferma la nuova password\",\"Auz0Mz\":\"Conferma la tua email per accedere a tutte le funzionalità.\",\"7+grte\":\"Email di conferma inviata! Controlla la tua casella di posta.\",\"n/7+7Q\":\"Conferma inviata a\",\"x3wVFc\":\"Congratulazioni! Il tuo evento è ora visibile al pubblico.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Connetti Stripe per abilitare la modifica dei modelli di email\",\"LmvZ+E\":\"Connetti Stripe per abilitare la messaggistica\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contatto\",\"LOFgda\":[\"Contatta \",[\"0\"]],\"41BQ3k\":\"Email di contatto\",\"KcXRN+\":\"Email di contatto per supporto\",\"m8WD6t\":\"Continua configurazione\",\"0GwUT4\":\"Procedi al pagamento\",\"sBV87H\":\"Continua alla creazione dell'evento\",\"nKtyYu\":\"Continua al passo successivo\",\"F3/nus\":\"Continua al pagamento\",\"p2FRHj\":\"Controlla come vengono gestite le commissioni della piattaforma per questo evento\",\"NqfabH\":\"Controlla chi può entrare in questa data\",\"fmYxZx\":\"Chi entra e quando\",\"1JnTgU\":\"Copiato da sopra\",\"FxVG/l\":\"Copiato negli appunti\",\"PiH3UR\":\"Copiato!\",\"4i7smN\":\"Copia ID account\",\"uUPbPg\":\"Copia link affiliato\",\"iVm46+\":\"Copia codice\",\"cF2ICc\":\"Copia link cliente\",\"+2ZJ7N\":\"Copia dettagli al primo partecipante\",\"ZN1WLO\":\"Copia Email\",\"y1eoq1\":\"Copia link\",\"tUGbi8\":\"Copia i miei dati a:\",\"y22tv0\":\"Copia questo link per condividerlo ovunque\",\"/4gGIX\":\"Copia negli appunti\",\"e0f4yB\":\"Impossibile eliminare il luogo\",\"vkiDx2\":\"Impossibile preparare l’aggiornamento di massa.\",\"KOavaU\":\"Impossibile recuperare i dettagli dell'indirizzo\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Impossibile salvare la data\",\"eeLExK\":\"Impossibile salvare il luogo\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Immagine di Copertina\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"L'immagine di copertina sarà visualizzata in cima alla pagina dell'evento\",\"2NLjA6\":\"L'immagine di copertina sarà visualizzata in cima alla pagina dell'organizzatore\",\"GkrqoY\":\"Copre tutti i biglietti\",\"zg4oSu\":[\"Crea Modello \",[\"0\"]],\"RKKhnW\":\"Crea un widget personalizzato per vendere biglietti sul tuo sito.\",\"6sk7PP\":\"Crea un numero fisso\",\"PhioFp\":\"Crea una nuova lista di check-in per una sessione attiva, oppure contatta l'organizzatore se pensi che si tratti di un errore.\",\"yIRev4\":\"Crea una password\",\"j7xZ7J\":\"Crea ulteriori organizzatori per gestire marchi, dipartimenti o serie di eventi separati sotto un unico account. Ogni organizzatore ha i propri eventi, impostazioni e pagina pubblica.\",\"xfKgwv\":\"Crea affiliato\",\"tudG8q\":\"Crea e configura biglietti e merchandise in vendita.\",\"YAl9Hg\":\"Crea configurazione\",\"BTne9e\":\"Crea modelli di email personalizzati per questo evento che sostituiscono le impostazioni predefinite dell'organizzatore\",\"YIDzi/\":\"Crea Modello Personalizzato\",\"tsGqx5\":\"Crea data\",\"Nc3l/D\":\"Crea sconti, codici di accesso per biglietti nascosti e offerte speciali.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Crea per questa data\",\"eWEV9G\":\"Crea una nuova password\",\"wl2iai\":\"Crea programmazione\",\"8AiKIu\":\"Crea biglietto o prodotto\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Crea link tracciabili per premiare i partner che promuovono il tuo evento.\",\"dkAPxi\":\"Crea Webhook\",\"5slqwZ\":\"Crea il tuo evento\",\"JQNMrj\":\"Crea il tuo primo evento\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Crea il tuo evento\",\"67NsZP\":\"Creazione evento...\",\"H34qcM\":\"Creazione organizzatore...\",\"1YMS+X\":\"Creazione del tuo evento in corso, attendere prego\",\"yiy8Jt\":\"Creazione del tuo profilo organizzatore in corso, attendere prego\",\"lfLHNz\":\"L'etichetta CTA è obbligatoria\",\"0xLR6W\":\"Attualmente assegnato\",\"iTvh6I\":\"Attualmente disponibile per l'acquisto\",\"A42Dqn\":\"Branding personalizzato\",\"Guo0lU\":\"Data e ora personalizzate\",\"mimF6c\":\"Messaggio personalizzato dopo il checkout\",\"WDMdn8\":\"Domande personalizzate\",\"O6mra8\":\"Domande personalizzate\",\"axv/Mi\":\"Modello personalizzato\",\"2YeVGY\":\"Link cliente copiato negli appunti\",\"QMHSMS\":\"Il cliente riceverà un'email di conferma del rimborso\",\"L/Qc+w\":\"Indirizzo email del cliente\",\"wpfWhJ\":\"Nome del cliente\",\"GIoqtA\":\"Cognome del cliente\",\"NihQNk\":\"Clienti\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Personalizza le email inviate ai tuoi clienti utilizzando i modelli Liquid. Questi modelli verranno utilizzati come predefiniti per tutti gli eventi nella tua organizzazione.\",\"xJaTUK\":\"Personalizza il layout, i colori e il branding della homepage del tuo evento.\",\"MXZfGN\":\"Personalizza le domande poste durante il checkout per raccogliere informazioni importanti dai tuoi partecipanti.\",\"iX6SLo\":\"Personalizza il testo visualizzato sul pulsante continua\",\"pxNIxa\":\"Personalizza il tuo modello di email utilizzando i modelli Liquid\",\"3trPKm\":\"Personalizza l'aspetto della pagina del tuo organizzatore\",\"U0sC6H\":\"Giornaliero\",\"/gWrVZ\":\"Ricavi giornalieri, tasse, commissioni e rimborsi per tutti gli eventi\",\"zgCHnE\":\"Report Vendite Giornaliere\",\"nHm0AI\":\"Ripartizione giornaliera di vendite, tasse e commissioni\",\"1aPnDT\":\"Danza\",\"pvnfJD\":\"Scuro\",\"MaB9wW\":\"Annullamento data\",\"e6cAxJ\":\"Data annullata\",\"81jBnC\":\"Data annullata con successo\",\"a/C/6R\":\"Data creata con successo\",\"IW7Q+u\":\"Data eliminata\",\"rngCAz\":\"Data eliminata con successo\",\"lnYE59\":\"Data dell'evento\",\"gnBreG\":\"Data in cui è stato effettuato l'ordine\",\"vHbfoQ\":\"Data riattivata\",\"hvah+S\":\"Data riaperta alle nuove vendite\",\"Ez0YsD\":\"Data aggiornata con successo\",\"VTsZuy\":\"Le date e gli orari sono gestiti nella\",\"/ITcnz\":\"giorno\",\"H7OUPr\":\"Giorno\",\"JtHrX9\":\"Giorno del mese\",\"J/Upwb\":\"giorni\",\"vDVA2I\":\"Giorni del mese\",\"rDLvlL\":\"Giorni della settimana\",\"r6zgGo\":\"Dicembre\",\"jbq7j2\":\"Rifiuta\",\"ovBPCi\":\"Predefinito\",\"JtI4vj\":\"Raccolta predefinita delle informazioni sui partecipanti\",\"ULjv90\":\"Capacità predefinita per data\",\"3R/Tu2\":\"Gestione predefinita delle commissioni\",\"1bZAZA\":\"Verrà utilizzato il modello predefinito\",\"HNlEFZ\":\"elimina\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Eliminare \",[\"count\"],\" data/e selezionata/e? Le date con ordini verranno saltate. L'operazione non può essere annullata.\"],\"vu7gDm\":\"Elimina affiliato\",\"KZN4Lc\":\"Elimina tutto\",\"6EkaOO\":\"Elimina data\",\"io0G93\":\"Elimina evento\",\"+jw/c1\":\"Elimina immagine\",\"hdyeZ0\":\"Elimina lavoro\",\"xxjZeP\":\"Elimina luogo\",\"sY3tIw\":\"Elimina organizzatore\",\"UBv8UK\":\"Elimina definitivamente\",\"dPyJ15\":\"Elimina Modello\",\"mxsm1o\":\"Eliminare questa domanda? Questa azione non può essere annullata.\",\"snMaH4\":\"Elimina webhook\",\"LIZZLY\":[[\"0\"],\" data/e eliminata/e\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deseleziona tutto\",\"NvuEhl\":\"Elementi di Design\",\"H8kMHT\":\"Non hai ricevuto il codice?\",\"G8KNgd\":\"Luogo diverso\",\"E/QGRL\":\"Disabilitato\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Ignora questo messaggio\",\"BREO0S\":\"Visualizza una casella che consente ai clienti di aderire alle comunicazioni di marketing da questo organizzatore di eventi.\",\"pfa8F0\":\"Nome visualizzato\",\"Kdpf90\":\"Non dimenticare!\",\"352VU2\":\"\\\"Non hai un account? <0>Registrati\",\"AXXqG+\":\"Donazione\",\"DPfwMq\":\"Fatto\",\"JoPiZ2\":\"Istruzioni per lo staff\",\"2+O9st\":\"Scarica report di vendita, partecipanti e finanziari per tutti gli ordini completati.\",\"eneWvv\":\"Bozza\",\"Ts8hhq\":\"A causa dell'alto rischio di spam, è necessario collegare un account Stripe prima di poter modificare i modelli di email. Questo è per garantire che tutti gli organizzatori di eventi siano verificati e responsabili.\",\"TnzbL+\":\"Per via dell'elevato rischio di spam, devi collegare un account Stripe prima di poter inviare messaggi ai partecipanti.\\nQuesto serve a garantire che tutti gli organizzatori siano verificati e responsabili.\",\"euc6Ns\":\"Duplica\",\"YueC+F\":\"Duplica data\",\"KRmTkx\":\"Duplica Prodotto\",\"Jd3ymG\":\"La durata deve essere di almeno 1 minuto.\",\"KIjvtr\":\"Olandese\",\"22xieU\":\"es. 180 (3 ore)\",\"/zajIE\":\"es. Sessione mattutina\",\"SPKbfM\":\"es., Acquista biglietti, Registrati ora\",\"fc7wGW\":\"ad esempio, Aggiornamento importante sui tuoi biglietti\",\"54MPqC\":\"ad esempio, Standard, Premium, Enterprise\",\"3RQ81z\":\"Ogni persona riceverà un'e-mail con un posto riservato per completare l'acquisto.\",\"5oD9f/\":\"Prima\",\"LTzmgK\":[\"Modifica Modello \",[\"0\"]],\"v4+lcZ\":\"Modifica affiliato\",\"2iZEz7\":\"Modifica Risposta\",\"t2bbp8\":\"Modifica partecipante\",\"etaWtB\":\"Modifica dettagli partecipante\",\"+guao5\":\"Modifica configurazione\",\"1Mp/A4\":\"Modifica data\",\"m0ZqOT\":\"Modifica luogo\",\"8oivFT\":\"Modifica luogo\",\"vRWOrM\":\"Modifica dettagli ordine\",\"fW5sSv\":\"Modifica webhook\",\"nP7CdQ\":\"Modifica Webhook\",\"MRZxAn\":\"Modificato\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Istruzione\",\"iiWXDL\":\"Errori di idoneità\",\"zPiC+q\":\"Liste Check-In Idonee\",\"SiVstt\":\"Email e messaggi programmati\",\"V2sk3H\":\"Email e Modelli\",\"hbwCKE\":\"Indirizzo email copiato negli appunti\",\"dSyJj6\":\"Gli indirizzi email non corrispondono\",\"elW7Tn\":\"Corpo Email\",\"ZsZeV2\":\"L'email è obbligatoria\",\"Be4gD+\":\"Anteprima Email\",\"6IwNUc\":\"Modelli Email\",\"H/UMUG\":\"Verifica email richiesta\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"Email verificata con successo!\",\"FSN4TS\":\"Widget incorporato\",\"z9NkYY\":\"Widget incorporabile\",\"Qj0GKe\":\"Abilita self-service per i partecipanti\",\"hEtQsg\":\"Abilita self-service per i partecipanti per impostazione predefinita\",\"Upeg/u\":\"Abilita questo modello per l'invio di email\",\"7dSOhU\":\"Abilita lista d'attesa\",\"RxzN1M\":\"Abilitato\",\"xDr/ct\":\"Fine\",\"sGjBEq\":\"Data e ora di fine (opzionale)\",\"PKXt9R\":\"La data di fine deve essere successiva alla data di inizio\",\"UmzbPa\":\"Data di fine della sessione\",\"ZayGC7\":\"Termina in una data\",\"48Y16Q\":\"Ora di fine (facoltativo)\",\"jpNdOC\":\"Orario di fine della sessione\",\"TbaYrr\":[\"Terminato \",[\"0\"]],\"CFgwiw\":[\"Termina \",[\"0\"]],\"SqOIQU\":\"Inserisci un valore di capacità o scegli illimitato.\",\"h37gRz\":\"Inserisci un'etichetta o scegli di rimuoverla.\",\"7YZofi\":\"Inserisci un oggetto e un corpo per vedere l'anteprima\",\"khyScF\":\"Inserisci di quanto spostare l'orario.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Inserisci email affiliato (facoltativo)\",\"ARkzso\":\"Inserisci nome affiliato\",\"ej4L8b\":\"Inserisci la capacità\",\"6KnyG0\":\"Inserisci e-mail\",\"INDKM9\":\"Inserisci l'oggetto dell'email...\",\"xUgUTh\":\"Inserisci nome\",\"9/1YKL\":\"Inserisci cognome\",\"VpwcSk\":\"Inserisci la nuova password\",\"kWg31j\":\"Inserisci codice affiliato univoco\",\"C3nD/1\":\"Inserisci la tua email\",\"VmXiz4\":\"Inserisci la tua email e ti invieremo le istruzioni per reimpostare la password\",\"n9V+ps\":\"Inserisci il tuo nome\",\"IdULhL\":\"Inserisci il tuo numero di partita IVA, incluso il codice del paese, senza spazi (ad esempio, IE1234567A, DE123456789)\",\"o21Y+P\":\"voci\",\"X88/6w\":\"Le iscrizioni appariranno qui quando i clienti si uniranno alla lista d'attesa per i prodotti esauriti.\",\"LslKhj\":\"Errore durante il caricamento dei log\",\"VCNHvW\":\"Evento archiviato\",\"ZD0XSb\":\"Evento archiviato con successo\",\"WgD6rb\":\"Categoria evento\",\"b46pt5\":\"Immagine di copertina evento\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evento creato\",\"1Hzev4\":\"Modello personalizzato evento\",\"7u9/DO\":\"Evento eliminato con successo\",\"imgKgl\":\"Descrizione dell'evento\",\"kJDmsI\":\"Dettagli evento\",\"m/N7Zq\":\"Indirizzo Completo dell'Evento\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Luogo Evento\",\"PYs3rP\":\"Nome evento\",\"HhwcTQ\":\"Nome dell'evento\",\"WZZzB6\":\"Il nome dell'evento è obbligatorio\",\"Wd5CDM\":\"Il nome dell'evento deve contenere meno di 150 caratteri\",\"4JzCvP\":\"Evento Non Disponibile\",\"Gh9Oqb\":\"Nome organizzatore evento\",\"mImacG\":\"Pagina dell'evento\",\"Hk9Ki/\":\"Evento ripristinato con successo\",\"JyD0LH\":\"Impostazioni evento\",\"cOePZk\":\"Orario Evento\",\"e8WNln\":\"Fuso orario dell'evento\",\"GeqWgj\":\"Fuso Orario dell'Evento\",\"XVLu2v\":\"Titolo dell'evento\",\"OfmsI9\":\"Evento troppo recente\",\"4SILkp\":\"Totali evento\",\"YDVUVl\":\"Tipi di Evento\",\"+HeiVx\":\"Evento aggiornato\",\"4K2OjV\":\"Sede dell'Evento\",\"19j6uh\":\"Performance Eventi\",\"PC3/fk\":\"Eventi che iniziano nelle prossime 24 ore\",\"nwiZdc\":[\"Ogni \",[\"0\"]],\"2LJU4o\":[\"Ogni \",[\"0\"],\" giorni\"],\"yLiYx+\":[\"Ogni \",[\"0\"],\" mesi\"],\"nn9ice\":[\"Ogni \",[\"0\"],\" settimane\"],\"Cdr8f9\":[\"Ogni \",[\"0\"],\" settimane il \",[\"1\"]],\"GVEHRk\":[\"Ogni \",[\"0\"],\" anni\"],\"fTFfOK\":\"Ogni modello di email deve includere un pulsante di invito all'azione che collega alla pagina appropriata\",\"BVinvJ\":\"Esempi: \\\"Come ci hai conosciuto?\\\", \\\"Nome azienda per fattura\\\"\",\"2hGPQG\":\"Esempi: \\\"Taglia maglietta\\\", \\\"Preferenza pasto\\\", \\\"Titolo professionale\\\"\",\"qNuTh3\":\"Eccezione\",\"M1RnFv\":\"Scaduto\",\"kF8HQ7\":\"Esporta risposte\",\"2KAI4N\":\"Esporta CSV\",\"JKfSAv\":\"Esportazione fallita. Riprova.\",\"SVOEsu\":\"Esportazione avviata. Preparazione file...\",\"wuyaZh\":\"Esportazione riuscita\",\"9bpUSo\":\"Esportazione affiliati\",\"jtrqH9\":\"Esportazione Partecipanti\",\"R4Oqr8\":\"Esportazione completata. Download file in corso...\",\"UlAK8E\":\"Esportazione Ordini\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Non riuscito\",\"8uOlgz\":\"Non riuscito il\",\"tKcbYd\":\"Lavori non riusciti\",\"SsI9v/\":\"Impossibile abbandonare l'ordine. Riprova.\",\"LdPKPR\":\"Impossibile assegnare la configurazione\",\"PO0cfn\":\"Impossibile annullare la data\",\"YUX+f+\":\"Impossibile annullare le date\",\"SIHgVQ\":\"Impossibile annullare il messaggio\",\"cEFg3R\":\"Creazione affiliato non riuscita\",\"dVgNF1\":\"Impossibile creare la configurazione\",\"fAoRRJ\":\"Impossibile creare la programmazione\",\"U66oUa\":\"Impossibile creare il modello\",\"aFk48v\":\"Impossibile eliminare la configurazione\",\"n1CYMH\":\"Impossibile eliminare la data\",\"KXv+Qn\":\"Impossibile eliminare la data. Potrebbe avere ordini esistenti.\",\"JJ0uRo\":\"Impossibile eliminare le date\",\"rgoBnv\":\"Impossibile eliminare l'evento\",\"Zw6LWb\":\"Impossibile eliminare il lavoro\",\"tq0abZ\":\"Impossibile eliminare i lavori\",\"2mkc3c\":\"Impossibile eliminare l'organizzatore\",\"vKMKnu\":\"Impossibile eliminare la domanda\",\"xFj7Yj\":\"Impossibile eliminare il modello\",\"jo3Gm6\":\"Esportazione affiliati non riuscita\",\"Jjw03p\":\"Impossibile esportare i partecipanti\",\"ZPwFnN\":\"Impossibile esportare gli ordini\",\"zGE3CH\":\"Impossibile esportare il report. Riprova.\",\"lS9/aZ\":\"Impossibile caricare i destinatari\",\"X4o0MX\":\"Impossibile caricare il Webhook\",\"ETcU7q\":\"Impossibile offrire il posto\",\"5670b9\":\"Impossibile offrire i biglietti\",\"e5KIbI\":\"Impossibile riattivare la data\",\"7zyx8a\":\"Impossibile rimuovere dalla lista d'attesa\",\"A/P7PX\":\"Impossibile rimuovere la sostituzione\",\"ogWc1z\":\"Impossibile riaprire la data\",\"0+iwE5\":\"Impossibile riordinare le domande\",\"EJPAcd\":\"Impossibile reinviare la conferma dell'ordine\",\"DjSbj3\":\"Impossibile reinviare il biglietto\",\"YQ3QSS\":\"Reinvio codice di verifica non riuscito\",\"wDioLj\":\"Impossibile ritentare il lavoro\",\"DKYTWG\":\"Impossibile ritentare i lavori\",\"WRREqF\":\"Impossibile salvare la sostituzione\",\"sj/eZA\":\"Impossibile salvare la sostituzione del prezzo\",\"780n8A\":\"Impossibile salvare le impostazioni del prodotto\",\"zTkTF3\":\"Impossibile salvare il modello\",\"l6acRV\":\"Impossibile salvare le impostazioni IVA. Riprova.\",\"T6B2gk\":\"Invio messaggio non riuscito. Riprova.\",\"lKh069\":\"Impossibile avviare il processo di esportazione\",\"t/KVOk\":\"Impossibile avviare l'impersonificazione. Riprova.\",\"QXgjH0\":\"Impossibile interrompere l'impersonificazione. Riprova.\",\"i0QKrm\":\"Aggiornamento affiliato non riuscito\",\"NNc33d\":\"Impossibile aggiornare la risposta.\",\"E9jY+o\":\"Impossibile aggiornare il partecipante\",\"uQynyf\":\"Impossibile aggiornare la configurazione\",\"i2PFQJ\":\"Impossibile aggiornare lo stato dell'evento\",\"EhlbcI\":\"Aggiornamento del livello di messaggistica fallito\",\"rpGMzC\":\"Impossibile aggiornare l'ordine\",\"T2aCOV\":\"Impossibile aggiornare lo stato dell'organizzatore\",\"Eeo/Gy\":\"Impossibile aggiornare l'impostazione\",\"kqA9lY\":\"Impossibile aggiornare le impostazioni IVA\",\"7/9RFs\":\"Caricamento immagine non riuscito.\",\"nkNfWu\":\"Caricamento dell'immagine non riuscito. Riprova.\",\"rxy0tG\":\"Verifica email non riuscita\",\"QRUpCk\":\"Famiglia\",\"5LO38w\":\"Pagamenti rapidi sul tuo conto\",\"4lgLew\":\"Febbraio\",\"9bHCo2\":\"Valuta della commissione\",\"/sV91a\":\"Gestione delle commissioni\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Commissioni ignorate\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Il file è troppo grande. La dimensione massima è 5 MB.\",\"VejKUM\":\"Compila prima i tuoi dati sopra\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filtra partecipanti\",\"8OvVZZ\":\"Filtra Partecipanti\",\"N/H3++\":\"Filtra per data\",\"mvrlBO\":\"Filtra per evento\",\"g+xRXP\":\"Termina la configurazione di Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"Primo\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primo partecipante\",\"4pwejF\":\"Il nome è obbligatorio\",\"3lkYdQ\":\"Commissione fissa\",\"6bBh3/\":\"Tariffa fissa\",\"zWqUyJ\":\"Commissione fissa applicata per transazione\",\"LWL3Bs\":\"La tariffa fissa deve essere pari o superiore a 0\",\"0RI8m4\":\"Flash spento\",\"q0923e\":\"Flash acceso\",\"lWxAUo\":\"Cibo e bevande\",\"nFm+5u\":\"Testo del Piè di Pagina\",\"a8nooQ\":\"Quarto\",\"mob/am\":\"Ven\",\"wtuVU4\":\"Frequenza\",\"xVhQZV\":\"Ven\",\"39y5bn\":\"Venerdì\",\"f5UbZ0\":\"Piena proprietà dei dati\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Rimborso completo\",\"UsIfa8\":\"Indirizzo completo risolto\",\"PGQLdy\":\"futuro\",\"8N/j1s\":\"Solo date future\",\"yRx/6K\":\"Le date future verranno copiate con la capacità reimpostata a zero\",\"T02gNN\":\"Ingresso Generale\",\"3ep0Gx\":\"Informazioni generali sul tuo organizzatore\",\"ziAjHi\":\"Genera\",\"exy8uo\":\"Genera codice\",\"4CETZY\":\"Indicazioni stradali\",\"pjkEcB\":\"Ricevi pagamenti\",\"lGYzP6\":\"Ricevi pagamenti con Stripe\",\"ZDIydz\":\"Iniziare\",\"u6FPxT\":\"Ottieni i biglietti\",\"8KDgYV\":\"Prepara il tuo evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Torna indietro\",\"oNL5vN\":\"Vai alla pagina dell'evento\",\"gHSuV/\":\"Vai alla pagina iniziale\",\"8+Cj55\":\"Vai alla programmazione\",\"6nDzTl\":\"Buona leggibilità\",\"76gPWk\":\"Capito\",\"aGWZUr\":\"Ricavi lordi\",\"n8IUs7\":\"Ricavi Lordi\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestione ospiti\",\"NUsTc4\":\"In corso ora\",\"kTSQej\":[\"Ciao \",[\"0\"],\", gestisci la tua piattaforma da qui.\"],\"dORAcs\":\"Ecco tutti i biglietti associati al tuo indirizzo email.\",\"g+2103\":\"Ecco il tuo link affiliato\",\"bVsnqU\":\"Ciao,\",\"/iE8xx\":\"Commissione Hi.Events\",\"zppscQ\":\"Commissioni piattaforma Hi.Events e dettaglio IVA per transazione\",\"D+zLDD\":\"Nascosto\",\"DRErHC\":\"Nascosto ai partecipanti - visibile solo agli organizzatori\",\"NNnsM0\":\"Nascondi opzioni avanzate\",\"P+5Pbo\":\"Nascondi Risposte\",\"VMlRqi\":\"Nascondi i dettagli\",\"FmogyU\":\"Nascondi opzioni\",\"gtEbeW\":\"Evidenzia\",\"NF8sdv\":\"Messaggio evidenziato\",\"MXSqmS\":\"Evidenzia questo prodotto\",\"7ER2sc\":\"Evidenziato\",\"sq7vjE\":\"I prodotti evidenziati avranno un colore di sfondo diverso per farli risaltare nella pagina dell'evento.\",\"1+WSY1\":\"Hobby\",\"yY8wAv\":\"Ore\",\"sy9anN\":\"Quanto tempo ha un cliente per completare l'acquisto dopo aver ricevuto un'offerta. Lascia vuoto per nessun limite di tempo.\",\"n2ilNh\":\"Per quanto tempo va avanti la programmazione?\",\"DMr2XN\":\"Con quale frequenza?\",\"AVpmAa\":\"Come pagare offline\",\"cceMns\":\"Come viene applicata l'IVA alle commissioni della piattaforma che ti vengono addebitate.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Ungherese\",\"8Wgd41\":\"Riconosco le mie responsabilità in qualità di titolare del trattamento dei dati\",\"O8m7VA\":\"Accetto di ricevere notifiche via email relative a questo evento\",\"YLgdk5\":\"Confermo che questo è un messaggio transazionale relativo a questo evento\",\"4/kP5a\":\"Se una nuova scheda non si è aperta automaticamente, clicca sul pulsante qui sotto per procedere al pagamento.\",\"W/eN+G\":\"Se vuoto, l'indirizzo verrà utilizzato per generare un link a Google Maps\",\"iIEaNB\":\"Se hai un account con noi, riceverai un'e-mail con le istruzioni su come reimpostare la tua password.\",\"an5hVd\":\"Immagini\",\"tSVr6t\":\"Impersonifica\",\"TWXU0c\":\"Impersona utente\",\"5LAZwq\":\"Impersonificazione avviata\",\"IMwcdR\":\"Impersonificazione interrotta\",\"0I0Hac\":\"Avviso importante\",\"yD3avI\":\"Importante: La modifica dell'indirizzo e-mail aggiornerà il link per accedere a questo ordine. Verrai reindirizzato al nuovo link dell'ordine dopo il salvataggio.\",\"jT142F\":[\"Tra \",[\"diffHours\"],\" ore\"],\"OoSyqO\":[\"Tra \",[\"diffMinutes\"],\" minuti\"],\"PdMhEx\":[\"negli ultimi \",[\"0\"],\" min\"],\"u7r0G5\":\"In presenza — imposta un luogo\",\"Ip0hl5\":\"in presenza, online, non impostato o misto\",\"F1Xp97\":\"Partecipanti individuali\",\"85e6zs\":\"Inserisci Token Liquid\",\"38KFY0\":\"Inserisci Variabile\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Versamenti Stripe istantanei\",\"nbfdhU\":\"Integrazioni\",\"I8eJ6/\":\"Note interne sul biglietto del partecipante\",\"B2Tpo0\":\"Email non valida\",\"5tT0+u\":\"Formato email non valido\",\"f9WRpE\":\"Tipo di file non valido. Carica un'immagine.\",\"tnL+GP\":\"Sintassi Liquid non valida. Correggila e riprova.\",\"N9JsFT\":\"Formato del numero di partita IVA non valido\",\"g+lLS9\":\"Invita un membro del team\",\"1z26sk\":\"Invita membro del team\",\"KR0679\":\"Invita membri del team\",\"aH6ZIb\":\"Invita il tuo team\",\"IuMGvq\":\"Fattura\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"articolo(i)\",\"BzfzPK\":\"Articoli\",\"rjyWPb\":\"Gennaio\",\"KmWyx0\":\"Lavoro\",\"o5r6b2\":\"Lavoro eliminato\",\"cd0jIM\":\"Dettagli del lavoro\",\"ruJO57\":\"Nome del lavoro\",\"YZi+Hu\":\"Lavoro in coda per il nuovo tentativo\",\"nCywLA\":\"Partecipa da ovunque\",\"SNzppu\":\"Iscriviti alla lista d'attesa\",\"dLouFI\":[\"Iscriviti alla lista d'attesa per \",[\"productDisplayName\"]],\"2gMuHR\":\"Iscritto\",\"u4ex5r\":\"Luglio\",\"zeEQd/\":\"Giugno\",\"MxjCqk\":\"Stai solo cercando i tuoi biglietti?\",\"xOTzt5\":\"adesso\",\"0RihU9\":\"Appena concluso\",\"lB2hSG\":[\"Tienimi aggiornato sulle novità e gli eventi di \",[\"0\"]],\"ioFA9i\":\"Tieniti il profitto.\",\"4Sffp7\":\"Etichetta per la sessione\",\"o66QSP\":\"aggiornamenti dell'etichetta\",\"RtKKbA\":\"Ultimo\",\"DruLRc\":\"Ultimi 14 giorni\",\"ve9JTU\":\"Il cognome è obbligatorio\",\"h0Q9Iw\":\"Ultima Risposta\",\"gw3Ur5\":\"Ultimo Attivato\",\"FIq1Ba\":\"Dopo\",\"xvnLMP\":\"Ultimi check-in\",\"pzAivY\":\"Latitudine del luogo risolto\",\"N5TErv\":\"Lascia vuoto per illimitato\",\"L/hDDD\":\"Lascia vuoto per applicare questa lista di check-in a tutte le sessioni\",\"9Pf3wk\":\"Lascia attivo per coprire tutti i biglietti dell'evento. Disattiva per scegliere biglietti specifici.\",\"Hq2BzX\":\"Avvisali del cambiamento\",\"+uexiy\":\"Avvisali dei cambiamenti\",\"exYcTF\":\"Libreria\",\"1njn7W\":\"Chiaro\",\"1qY5Ue\":\"Link scaduto o non valido\",\"+zSD/o\":\"Collegamento alla home dell'evento\",\"psosdY\":\"Link ai dettagli dell'ordine\",\"6JzK4N\":\"Link al biglietto\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Link consentiti\",\"2BBAbc\":\"Elenco\",\"5NZpX8\":\"Vista elenco\",\"dF6vP6\":\"Online\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Eventi in Diretta\",\"C33p4q\":\"Date caricate\",\"WdmJIX\":\"Caricamento anteprima...\",\"IoDI2o\":\"Caricamento token...\",\"G3Ge9Z\":\"Caricamento dei log del webhook...\",\"NFxlHW\":\"Caricamento Webhooks\",\"E0DoRM\":\"Luogo eliminato\",\"NtLHT3\":\"Indirizzo formattato del luogo\",\"h4vxDc\":\"Latitudine del luogo\",\"f2TMhR\":\"Longitudine del luogo\",\"lnCo2f\":\"Modalità del luogo\",\"8pmGFk\":\"Nome del luogo\",\"7w8lJU\":\"Luogo salvato\",\"YsRXDD\":\"Luogo aggiornato\",\"A/kIva\":\"aggiornamenti del luogo\",\"VppBoU\":\"Luoghi\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo e Copertina\",\"gddQe0\":\"Logo e immagine di copertina per il tuo organizzatore\",\"TBEnp1\":\"Il logo verrà visualizzato nell'intestazione\",\"Jzu30R\":\"Il logo sarà visualizzato sul biglietto\",\"zKTMTg\":\"Longitudine del luogo risolto\",\"PSRm6/\":\"Cerca i miei biglietti\",\"yJFu/X\":\"Sede principale\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Gestisci \",[\"0\"]],\"wZJfA8\":\"Gestisci date e orari per il tuo evento ricorrente\",\"RlzPUE\":\"Gestisci su Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Gestisci programmazione\",\"zXuaxY\":\"Gestisci la lista d'attesa del tuo evento, visualizza le statistiche e offri i biglietti ai partecipanti.\",\"BWTzAb\":\"Manuale\",\"g2npA5\":\"Offerta manuale\",\"hg6l4j\":\"Marzo\",\"pqRBOz\":\"Contrassegna come convalidato (sostituzione admin)\",\"2L3vle\":\"Max messaggi / 24h\",\"Qp4HWD\":\"Max destinatari / messaggio\",\"3JzsDb\":\"Maggio\",\"agPptk\":\"Mezzo\",\"xDAtGP\":\"Messaggio\",\"bECJqy\":\"Messaggio approvato con successo\",\"1jRD0v\":\"Invia messaggio ai partecipanti con biglietti specifici\",\"uQLXbS\":\"Messaggio annullato\",\"48rf3i\":\"Il messaggio non può superare 5000 caratteri\",\"ZPj0Q8\":\"Dettagli del messaggio\",\"Vjat/X\":\"Il messaggio è obbligatorio\",\"0/yJtP\":\"Invia messaggio ai proprietari degli ordini con prodotti specifici\",\"saG4At\":\"Messaggio programmato\",\"mFdA+i\":\"Livello di messaggistica\",\"v7xKtM\":\"Livello di messaggistica aggiornato con successo\",\"H9HlDe\":\"minuti\",\"agRWc1\":\"Minuti\",\"YYzBv9\":\"Lun\",\"zz/Wd/\":\"Modalità\",\"fpMgHS\":\"Lun\",\"hty0d5\":\"Lunedì\",\"JbIgPz\":\"I valori monetari sono totali approssimativi in tutte le valute\",\"qvF+MT\":\"Monitora e gestisci i lavori in background falliti\",\"kY2ll9\":\"mese\",\"HajiZl\":\"Mese\",\"+8Nek/\":\"Mensile\",\"1LkxnU\":\"Schema mensile\",\"6jefe3\":\"mesi\",\"f8jrkd\":\"altro\",\"JcD7qf\":\"Altre azioni\",\"w36OkR\":\"Eventi più visti (Ultimi 14 giorni)\",\"+Y/na7\":\"Sposta tutte le date prima o dopo\",\"3DIpY0\":\"Più luoghi\",\"g9cQCP\":\"Più tipi di biglietto\",\"GfaxEk\":\"Musica\",\"oVGCGh\":\"I Miei Biglietti\",\"8/brI5\":\"Il nome è obbligatorio\",\"sFFArG\":\"Il nome deve contenere meno di 255 caratteri\",\"sCV5Yc\":\"Nome dell'evento\",\"xxU3NX\":\"Ricavi Netti\",\"7I8LlL\":\"Nuova capacità\",\"n1GRql\":\"Nuova etichetta\",\"y0Fcpd\":\"Nuovo luogo\",\"ArHT/C\":\"Nuove iscrizioni\",\"uK7xWf\":\"Nuovo orario:\",\"veT5Br\":\"Prossima sessione\",\"WXtl5X\":[\"Prossima: \",[\"nextFormatted\"]],\"eWRECP\":\"Vita notturna\",\"HSw5l3\":\"No - Sono un privato o un'azienda non registrata IVA\",\"VHfLAW\":\"Nessun account\",\"+jIeoh\":\"Nessun account trovato\",\"074+X8\":\"Nessun Webhook Attivo\",\"zxnup4\":\"Nessun affiliato da mostrare\",\"Dwf4dR\":\"Nessuna domanda per i partecipanti ancora\",\"th7rdT\":\"Nessun partecipante\",\"PKySlW\":\"Ancora nessun partecipante per questa data.\",\"/UC6qk\":\"Nessun dato di attribuzione trovato\",\"E2vYsO\":\"Stripe non ha ancora segnalato funzionalità.\",\"amMkpL\":\"Nessuna capacità\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nessuna lista di check-in disponibile per questo evento.\",\"wG+knX\":\"Ancora nessun check-in\",\"+dAKxg\":\"Nessuna configurazione trovata\",\"LiLk8u\":\"Nessuna connessione disponibile\",\"eb47T5\":\"Nessun dato trovato per i filtri selezionati. Prova a modificare l'intervallo di date o la valuta.\",\"lFVUyx\":\"Nessuna lista di check-in specifica per la data\",\"I8mtzP\":\"Nessuna data disponibile in questo mese. Prova a navigare verso un altro mese.\",\"yDukIL\":\"Nessuna data corrisponde ai filtri attuali.\",\"B7phdj\":\"Nessuna data corrisponde ai tuoi filtri\",\"/ZB4Um\":\"Nessuna data corrisponde alla tua ricerca\",\"gEdNe8\":\"Nessuna data ancora programmata\",\"27GYXJ\":\"Nessuna data programmata.\",\"pZNOT9\":\"Nessuna data di fine\",\"dW40Uz\":\"Nessun evento trovato\",\"8pQ3NJ\":\"Nessun evento in programma nelle prossime 24 ore\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Nessun lavoro fallito\",\"EpvBAp\":\"Nessuna fattura\",\"XZkeaI\":\"Nessun log trovato\",\"nrSs2u\":\"Nessun messaggio trovato\",\"Rj99yx\":\"Nessuna sessione disponibile\",\"IFU1IG\":\"Nessuna sessione in questa data\",\"OVFwlg\":\"Nessuna domanda d'ordine ancora\",\"EJ7bVz\":\"Nessun ordine trovato\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Ancora nessun ordine per questa data.\",\"wUv5xQ\":\"Nessuna attività dell'organizzatore negli ultimi 14 giorni\",\"vLd1tV\":\"Nessun contesto organizzatore disponibile.\",\"B7w4KY\":\"Nessun altro organizzatore disponibile\",\"PChXMe\":\"Nessun ordine pagato\",\"6jYQGG\":\"Nessun evento passato\",\"CHzaTD\":\"Nessun evento popolare negli ultimi 14 giorni\",\"zK/+ef\":\"Nessun prodotto disponibile per la selezione\",\"M1/lXs\":\"Nessun prodotto configurato per questo evento.\",\"kY7XDn\":\"Nessun prodotto ha voci nella lista d'attesa\",\"wYiAtV\":\"Nessuna iscrizione recente\",\"UW90md\":\"Nessun destinatario trovato\",\"QoAi8D\":\"Nessuna risposta\",\"JeO7SI\":\"Nessuna risposta\",\"EK/G11\":\"Ancora nessuna risposta\",\"7J5OKy\":\"Nessun luogo salvato\",\"wpCjcf\":\"Nessun luogo salvato per ora. Appariranno qui man mano che crei eventi con indirizzi.\",\"mPdY6W\":\"Nessun suggerimento\",\"3sRuiW\":\"Nessun biglietto trovato\",\"k2C0ZR\":\"Nessuna data in arrivo\",\"yM5c0q\":\"Nessun evento in arrivo\",\"qpC74J\":\"Nessun utente trovato\",\"8wgkoi\":\"Nessun evento visualizzato negli ultimi 14 giorni\",\"Arzxc1\":\"Nessuna iscrizione alla lista d'attesa\",\"n5vdm2\":\"Nessun evento webhook è stato registrato per questo endpoint. Gli eventi appariranno qui una volta attivati.\",\"4GhX3c\":\"Nessun Webhook\",\"4+am6b\":\"No, rimani qui\",\"4JVMUi\":\"non modificate\",\"Itw24Q\":\"Non registrato\",\"x5+Lcz\":\"Non Registrato\",\"8n10sz\":\"Non Idoneo\",\"kLvU3F\":\"Avvisa i partecipanti e interrompi le vendite\",\"t9QlBd\":\"Novembre\",\"kAREMN\":\"Numero di date da creare\",\"6u1B3O\":\"Sessione\",\"mmoE62\":\"Sessione annullata\",\"UYWXdN\":\"Data di fine della sessione\",\"k7dZT5\":\"Orario di fine della sessione\",\"Opinaj\":\"Etichetta della sessione\",\"V9flmL\":\"Programmazione delle sessioni\",\"NUTUUs\":\"pagina di programmazione delle sessioni\",\"AT8UKD\":\"Data di inizio della sessione\",\"Um8bvD\":\"Orario di inizio della sessione\",\"Kh3WO8\":\"Riepilogo della sessione\",\"byXCTu\":\"Sessioni\",\"KATw3p\":\"Sessioni (solo future)\",\"85rTR2\":\"Le sessioni possono essere configurate dopo la creazione\",\"dzQfDY\":\"Ottobre\",\"BwJKBw\":\"di\",\"9h7RDh\":\"Offrire\",\"EfK2O6\":\"Offri posto\",\"3sVRey\":\"Offri biglietti\",\"2O7Ybb\":\"Scadenza dell'offerta\",\"1jUg5D\":\"Offerto\",\"l+/HS6\":[\"Le offerte scadono dopo \",[\"timeoutHours\"],\" ore.\"],\"lQgMLn\":\"Nome dell'ufficio o della sede\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Pagamento Offline\",\"nO3VbP\":[\"In vendita \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — fornisci i dettagli di connessione\",\"LuZBbx\":\"Online e in presenza\",\"IXuOqt\":\"Online e in presenza — consulta la programmazione\",\"w3DG44\":\"Dettagli di connessione online\",\"WjSpu5\":\"Evento online\",\"TP6jss\":\"Dettagli di connessione dell'evento online\",\"NdOxqr\":\"Solo gli amministratori dell'account possono eliminare o archiviare eventi. Contatta l'amministratore del tuo account per assistenza.\",\"rnoDMF\":\"Solo gli amministratori dell'account possono eliminare o archiviare organizzatori. Contatta l'amministratore del tuo account per assistenza.\",\"bU7oUm\":\"Invia solo agli ordini con questi stati\",\"M2w1ni\":\"Visibile solo con codice promozionale\",\"y8Bm7C\":\"Apri check-in\",\"RLz7P+\":\"Apri sessione\",\"cDSdPb\":\"Soprannome opzionale mostrato nei selettori, es. \\\"Sala conferenze sede\\\"\",\"HXMJxH\":\"Testo opzionale per disclaimer, informazioni di contatto o note di ringraziamento (solo una riga)\",\"L565X2\":\"opzioni\",\"8m9emP\":\"oppure aggiungi una singola data\",\"dSeVIm\":\"ordine\",\"c/TIyD\":\"Ordine & biglietto\",\"H5qWhm\":\"Ordine annullato\",\"b6+Y+n\":\"Ordine completato\",\"x4MLWE\":\"Conferma Ordine\",\"CsTTH0\":\"Conferma dell'ordine reinviata con successo\",\"ppuQR4\":\"Ordine Creato\",\"0UZTSq\":\"Valuta dell'Ordine\",\"xtQzag\":\"Dettagli ordine\",\"HdmwrI\":\"Email Ordine\",\"bwBlJv\":\"Nome Ordine\",\"vrSW9M\":\"L'ordine è stato cancellato e rimborsato. Il proprietario dell'ordine è stato notificato.\",\"rzw+wS\":\"Titolari degli ordini\",\"oI/hGR\":\"ID ordine\",\"Pc729f\":\"Ordine in Attesa di Pagamento Offline\",\"F4NXOl\":\"Cognome Ordine\",\"RQCXz6\":\"Limiti degli ordini\",\"SO9AEF\":\"Limiti di ordine impostati\",\"5RDEEn\":\"Lingua dell'Ordine\",\"vu6Arl\":\"Ordine Contrassegnato come Pagato\",\"sLbJQz\":\"Ordine non trovato\",\"kvYpYu\":\"Ordine non trovato\",\"i8VBuv\":\"Numero Ordine\",\"eJ8SvM\":\"Numero ordine, data, email dell'acquirente\",\"FaPYw+\":\"Proprietario ordine\",\"eB5vce\":\"Proprietari di ordini con un prodotto specifico\",\"CxLoxM\":\"Proprietari di ordini con prodotti\",\"DoH3fD\":\"Pagamento dell'Ordine in Sospeso\",\"UkHo4c\":\"Rif. ordine\",\"EZy55F\":\"Ordine Rimborsato\",\"6eSHqs\":\"Stati ordine\",\"oW5877\":\"Totale Ordine\",\"e7eZuA\":\"Ordine Aggiornato\",\"1SQRYo\":\"Ordine aggiornato con successo\",\"KndP6g\":\"URL Ordine\",\"3NT0Ck\":\"L'ordine è stato annullato\",\"V5khLm\":\"ordini\",\"sd5IMt\":\"Ordini completati\",\"5It1cQ\":\"Ordini Esportati\",\"tlKX/S\":\"Gli ordini che coprono più date verranno segnalati per la revisione manuale.\",\"UQ0ACV\":\"Totale ordini\",\"B/EBQv\":\"Ordini:\",\"qtGTNu\":\"Account organici\",\"ucgZ0o\":\"Organizzazione\",\"P/JHA4\":\"Organizzatore archiviato con successo\",\"S3CZ5M\":\"Dashboard organizzatore\",\"GzjTd0\":\"Organizzatore eliminato con successo\",\"Uu0hZq\":\"Email organizzatore\",\"Gy7BA3\":\"Indirizzo email dell'organizzatore\",\"SQqJd8\":\"Organizzatore non trovato\",\"HF8Bxa\":\"Organizzatore ripristinato con successo\",\"wpj63n\":\"Impostazioni organizzatore\",\"o1my93\":\"Aggiornamento dello stato dell'organizzatore non riuscito. Riprova più tardi\",\"rLHma1\":\"Stato dell'organizzatore aggiornato\",\"LqBITi\":\"Verrà utilizzato il modello dell'organizzatore/predefinito\",\"q4zH+l\":\"Organizzatori\",\"/IX/7x\":\"Altro\",\"RsiDDQ\":\"Altre Liste (Biglietto Non Incluso)\",\"aDfajK\":\"All'aperto\",\"qMASRF\":\"Messaggi in uscita\",\"iCOVQO\":\"Sostituzione\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Sostituisci prezzo\",\"cnVIpl\":\"Sostituzione rimossa\",\"6/dCYd\":\"Panoramica\",\"6WdDG7\":\"Pagina\",\"8uqsE5\":\"Pagina non più disponibile\",\"QkLf4H\":\"URL della pagina\",\"sF+Xp9\":\"Visualizzazioni pagina\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Account a pagamento\",\"5F7SYw\":\"Rimborso parziale\",\"fFYotW\":[\"Parzialmente rimborsato: \",[\"0\"]],\"i8day5\":\"Trasferisci la commissione all'acquirente\",\"k4FLBQ\":\"Trasferisci all'acquirente\",\"Ff0Dor\":\"Passato\",\"BFjW8X\":\"Scaduto\",\"xTPjSy\":\"Eventi passati\",\"/l/ckQ\":\"Incolla URL\",\"URAE3q\":\"In pausa\",\"4fL/V7\":\"Paga\",\"OZK07J\":\"Paga per sbloccare\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data di pagamento\",\"ENEPLY\":\"Metodo di pagamento\",\"8Lx2X7\":\"Pagamento ricevuto\",\"fx8BTd\":\"Pagamenti non disponibili\",\"C+ylwF\":\"Versamenti\",\"UbRKMZ\":\"In attesa\",\"UkM20g\":\"In attesa di revisione\",\"dPYu1F\":\"Per partecipante\",\"mQV/nJ\":\"al min\",\"VlXNyK\":\"Per ordine\",\"hauDFf\":\"Per biglietto\",\"mnF83a\":\"percentuale Commissione\",\"TNLuRD\":\"Commissione percentuale (%)\",\"MixU2P\":\"La percentuale deve essere compresa tra 0 e 100\",\"MkuVAZ\":\"Percentuale dell'importo della transazione\",\"/Bh+7r\":\"Prestazione\",\"fIp56F\":\"Elimina definitivamente questo evento e tutti i dati associati.\",\"nJeeX7\":\"Elimina definitivamente questo organizzatore e tutti i suoi eventi.\",\"wfCTgK\":\"Rimuovi definitivamente questa data\",\"6kPk3+\":\"Informazioni personali\",\"zmwvG2\":\"Telefono\",\"SdM+Q1\":\"Scegli un luogo\",\"tSR/oe\":\"Scegli una data di fine\",\"e8kzpp\":\"Scegli almeno un giorno del mese\",\"35C8QZ\":\"Scegli almeno un giorno della settimana\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Effettuato\",\"wBJR8i\":\"Stai pianificando un evento?\",\"J3lhKT\":\"Commissione piattaforma\",\"RD51+P\":[\"Commissione piattaforma di \",[\"0\"],\" detratta dal tuo pagamento\"],\"br3Y/y\":\"Commissioni piattaforma\",\"3buiaw\":\"Report commissioni piattaforma\",\"kv9dM4\":\"Ricavi della piattaforma\",\"PJ3Ykr\":\"Controlla il tuo biglietto per il nuovo orario. I tuoi biglietti sono ancora validi — non è necessaria alcuna azione, a meno che i nuovi orari non ti vadano bene. Rispondi a questa email per qualsiasi domanda.\",\"OtjenF\":\"Inserisci un indirizzo email valido\",\"jEw0Mr\":\"Inserisci un URL valido\",\"n8+Ng/\":\"Inserisci il codice a 5 cifre\",\"r+lQXT\":\"Inserisci il tuo numero di partita IVA\",\"Dvq0wf\":\"Per favore, fornisci un'immagine.\",\"2cUopP\":\"Riavvia il processo di acquisto.\",\"GoXxOA\":\"Seleziona una data e un orario\",\"8KmsFa\":\"Seleziona un intervallo di date\",\"EFq6EG\":\"Per favore, seleziona un'immagine.\",\"fuwKpE\":\"Riprova.\",\"klWBeI\":\"Attendi prima di richiedere un altro codice\",\"hfHhaa\":\"Attendi mentre prepariamo i tuoi affiliati per l'esportazione...\",\"o+tJN/\":\"Attendi mentre prepariamo i tuoi partecipanti per l'esportazione...\",\"+5Mlle\":\"Attendi mentre prepariamo i tuoi ordini per l'esportazione...\",\"trnWaw\":\"Polacco\",\"luHAJY\":\"Eventi popolari (Ultimi 14 giorni)\",\"p/78dY\":\"Posizione\",\"TjX7xL\":\"Messaggio Post-Checkout\",\"OESu7I\":\"Evita l'overselling condividendo l'inventario tra più tipi di biglietto.\",\"NgVUL2\":\"Anteprima modulo di checkout\",\"cs5muu\":\"Anteprima pagina evento\",\"+4yRWM\":\"Prezzo del biglietto\",\"Jm2AC3\":\"Fascia di prezzo\",\"a5jvSX\":\"Fasce di prezzo\",\"ReihZ7\":\"Anteprima di Stampa\",\"JnuPvH\":\"Stampa biglietto\",\"tYF4Zq\":\"Stampa in PDF\",\"LcET2C\":\"Informativa sulla privacy\",\"8z6Y5D\":\"Elabora rimborso\",\"JcejNJ\":\"Elaborazione ordine\",\"EWCLpZ\":\"Prodotto Creato\",\"XkFYVB\":\"Prodotto Eliminato\",\"YMwcbR\":\"Ripartizione vendite prodotti, ricavi e tasse\",\"ls0mTC\":\"Le impostazioni del prodotto non possono essere modificate per le date annullate.\",\"2339ej\":\"Impostazioni del prodotto salvate con successo\",\"ldVIlB\":\"Prodotto Aggiornato\",\"CP3D8G\":\"Avanzamento\",\"JoKGiJ\":\"Codice promo\",\"k3wH7i\":\"Ripartizione utilizzo codici promo e sconti\",\"tZqL0q\":\"codici promozionali\",\"oCHiz3\":\"Codici promozionali\",\"uEhdRh\":\"Solo promo\",\"dLm8V5\":\"Le email promozionali potrebbero comportare la sospensione dell'account\",\"XoEWtl\":\"Inserisci almeno un campo dell’indirizzo per il nuovo luogo.\",\"2W/7Gz\":\"Fornisci queste informazioni prima del prossimo controllo di Stripe per non interrompere i pagamenti.\",\"aemBRq\":\"Provider\",\"EEYbdt\":\"Pubblica\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Acquistato\",\"JunetL\":\"Acquirente\",\"phmeUH\":\"Email acquirente\",\"ywR4ZL\":\"Check-in con codice QR\",\"oWXNE5\":\"Qtà\",\"biEyJ4\":\"Risposte\",\"k/bJj0\":\"Domande riordinate\",\"b24kPi\":\"Coda\",\"lTPqpM\":\"Suggerimento rapido\",\"fqDzSu\":\"Tasso\",\"mnUGVC\":\"Limite di frequenza superato. Per favore riprova più tardi.\",\"t41hVI\":\"Rioffri posto\",\"TNclgc\":\"Riattivare questa data? Verrà riaperta per le vendite future.\",\"uqoRbb\":\"Analisi in tempo reale\",\"xzRvs4\":[\"Ricevi aggiornamenti sui prodotti da \",[\"0\"],\".\"],\"pLXbi8\":\"Iscrizioni recenti\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Partecipanti recenti\",\"qhfiwV\":\"Ultimi check-in\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Ordini recenti\",\"7hPBBn\":\"destinatario\",\"jp5bq8\":\"destinatari\",\"yPrbsy\":\"Destinatari\",\"E1F5Ji\":\"I destinatari sono disponibili dopo l'invio del messaggio\",\"wuhHPE\":\"Ricorrente\",\"asLqwt\":\"Evento ricorrente\",\"D0tAMe\":\"Eventi ricorrenti\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Reindirizzamento a Stripe...\",\"pnoTN5\":\"Account di riferimento\",\"ACKu03\":\"Aggiorna Anteprima\",\"vuFYA6\":\"Rimborsa tutti gli ordini per queste date\",\"4cRUK3\":\"Rimborsa tutti gli ordini per questa data\",\"fKn/k6\":\"Importo rimborso\",\"qY4rpA\":\"Rimborso fallito\",\"TspTcZ\":\"Rimborso emesso\",\"FaK/8G\":[\"Rimborsa ordine \",[\"0\"]],\"MGbi9P\":\"Rimborso in sospeso\",\"BDSRuX\":[\"Rimborsato: \",[\"0\"]],\"bU4bS1\":\"Rimborsi\",\"rYXfOA\":\"Impostazioni regionali\",\"5tl0Bp\":\"Domande di registrazione\",\"ZNo5k1\":\"Rimanenti\",\"EMnuA4\":\"Promemoria programmato\",\"Bjh87R\":\"Rimuovi etichetta da tutte le date\",\"KkJtVK\":\"Riapri alle nuove vendite\",\"XJwWJp\":\"Riaprire questa data alle nuove vendite? I biglietti precedentemente annullati non verranno ripristinati — i partecipanti interessati restano annullati e i rimborsi già emessi non verranno annullati.\",\"bAwDQs\":\"Ripeti ogni\",\"CQeZT8\":\"Report non trovato\",\"JEPMXN\":\"Richiedi un nuovo link\",\"TMLAx2\":\"Obbligatorio\",\"mdeIOH\":\"Reinvia codice\",\"sQxe68\":\"Reinvia conferma\",\"bxoWpz\":\"Invia nuovamente l'email di conferma\",\"G42SNI\":\"Invia nuovamente l'email\",\"TTpXL3\":[\"Reinvia tra \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Reinvia biglietto\",\"Uwsg2F\":\"Riservato\",\"8wUjGl\":\"Riservato fino a\",\"a5z8mb\":\"Ripristina al prezzo base\",\"kCn6wb\":\"Reimpostazione in corso...\",\"404zLK\":\"Nome del luogo o della sede risolto\",\"ZlCDf+\":\"Risposta\",\"bsydMp\":\"Dettagli della risposta\",\"yKu/3Y\":\"Ripristina\",\"RokrZf\":\"Ripristina evento\",\"/JyMGh\":\"Ripristina organizzatore\",\"HFvFRb\":\"Ripristina questo evento per renderlo nuovamente visibile.\",\"DDIcqy\":\"Ripristina questo organizzatore e rendilo nuovamente attivo.\",\"mO8KLE\":\"risultati\",\"6gRgw8\":\"Riprova\",\"1BG8ga\":\"Riprova tutto\",\"rDC+T6\":\"Riprova lavoro\",\"CbnrWb\":\"Torna all'evento\",\"mdQ0zb\":\"Sedi riutilizzabili per i tuoi eventi. I luoghi creati dal completamento automatico vengono salvati qui automaticamente.\",\"XFOPle\":\"Riutilizza\",\"1Zehp4\":\"Riutilizza una connessione Stripe di un altro organizzatore di questo account.\",\"Oo/PLb\":\"Riepilogo Ricavi\",\"O/8Ceg\":\"Ricavi di oggi\",\"CfuueU\":\"Revoca l'offerta\",\"RIgKv+\":\"Continua fino a una data specifica\",\"JYRqp5\":\"Sab\",\"dFFW9L\":[\"Vendita terminata \",[\"0\"]],\"loCKGB\":[\"La vendita termina il \",[\"0\"]],\"wlfBad\":\"Periodo di vendita\",\"qi81Jg\":\"Le date del periodo di vendita si applicano a tutte le date della tua programmazione. Per controllare prezzi e disponibilità delle singole date, utilizza le sostituzioni nella <0>pagina di programmazione delle sessioni.\",\"5CDM6r\":\"Periodo di vendita stabilito\",\"ftzaMf\":\"Periodo di vendita, limiti di ordine, visibilità\",\"zpekWp\":[\"Inizio vendita \",[\"0\"]],\"mUv9U4\":\"Vendite\",\"9KnRdL\":\"Le vendite sono sospese\",\"JC3J0k\":\"Dettaglio di vendite, presenze e check-in per sessione\",\"3VnlS9\":\"Vendite, ordini e metriche di performance per tutti gli eventi\",\"3Q1AWe\":\"Vendite:\",\"LeuERW\":\"Come l'evento\",\"B4nE3N\":\"Prezzo del biglietto di esempio\",\"8BRPoH\":\"Luogo di Esempio\",\"PiK6Ld\":\"Sab\",\"+5kO8P\":\"Sabato\",\"zJiuDn\":\"Salva sostituzione delle commissioni\",\"NB8Uxt\":\"Salva programmazione\",\"KZrfYJ\":\"Salva link social\",\"9Y3hAT\":\"Salva Modello\",\"C8ne4X\":\"Salva Design del Biglietto\",\"cTI8IK\":\"Salva impostazioni IVA\",\"6/TNCd\":\"Salva impostazioni IVA\",\"4RvD9q\":\"Luogo salvato\",\"cgw0cL\":\"Luoghi salvati\",\"lvSrsT\":\"Luoghi salvati\",\"Fbqm/I\":\"Salvando una sostituzione viene creata una configurazione dedicata per questo organizzatore, se al momento è impostato sul valore predefinito di sistema.\",\"I+FvbD\":\"Scansiona\",\"0zd6Nm\":\"Scansiona un biglietto per registrare un partecipante\",\"bQG7Qk\":\"I biglietti scansionati appariranno qui\",\"WDYSLJ\":\"Modalità scanner\",\"gmB6oO\":\"Programmazione\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Programmazione creata con successo\",\"YP7frt\":\"La programmazione termina il\",\"QS1Nla\":\"Programma per dopo\",\"NAzVVw\":\"Programma messaggio\",\"Fz09JP\":\"La pianificazione inizia il\",\"4ba0NE\":\"Programmata\",\"qcP/8K\":\"Orario programmato\",\"A1taO8\":\"Cerca\",\"ftNXma\":\"Cerca affiliati...\",\"VMU+zM\":\"Cerca partecipanti\",\"VY+Bdn\":\"Cerca per nome account o e-mail...\",\"VX+B3I\":\"Cerca per titolo evento o organizzatore...\",\"R0wEyA\":\"Cerca per nome lavoro o eccezione...\",\"VT+urE\":\"Cerca per nome o email...\",\"GHdjuo\":\"Cerca per nome, email o account...\",\"4mBFO7\":\"Cerca per nome, n° ordine, n° biglietto o email\",\"20ce0U\":\"Cerca per ID ordine, nome cliente o email...\",\"4DSz7Z\":\"Cerca per oggetto, evento o account...\",\"nQC7Z9\":\"Cerca date...\",\"iRtEpV\":\"Cerca date…\",\"JRM7ao\":\"Cerca un indirizzo\",\"BWF1kC\":\"Cerca messaggi...\",\"3aD3GF\":\"Stagionale\",\"ku//5b\":\"Secondo\",\"Mck5ht\":\"Pagamento sicuro\",\"s7tXqF\":\"Vedi programmazione\",\"JFap6u\":\"Vedi cosa serve ancora a Stripe\",\"p7xUrt\":\"Seleziona una categoria\",\"hTKQwS\":\"Seleziona una data e un orario\",\"e4L7bF\":\"Seleziona un messaggio per visualizzarne il contenuto\",\"zPRPMf\":\"Seleziona un livello\",\"uqpVri\":\"Seleziona un orario\",\"BFRSTT\":\"Seleziona Account\",\"wgNoIs\":\"Seleziona tutto\",\"mCB6Je\":\"Seleziona tutto\",\"aCEysm\":[\"Seleziona tutto il \",[\"0\"]],\"a6+167\":\"Seleziona un evento\",\"CFbaPk\":\"Seleziona il gruppo di partecipanti\",\"88a49s\":\"Seleziona fotocamera\",\"tVW/yo\":\"Seleziona valuta\",\"SJQM1I\":\"Seleziona data\",\"n9ZhRa\":\"Seleziona data e ora di fine\",\"gTN6Ws\":\"Seleziona ora di fine\",\"0U6E9W\":\"Seleziona categoria evento\",\"j9cPeF\":\"Seleziona tipi di evento\",\"ypTjHL\":\"Seleziona sessione\",\"KizCK7\":\"Seleziona data e ora di inizio\",\"dJZTv2\":\"Seleziona ora di inizio\",\"x8XMsJ\":\"Seleziona il livello di messaggistica per questo account. Questo controlla i limiti dei messaggi e i permessi dei link.\",\"aT3jZX\":\"Seleziona fuso orario\",\"TxfvH2\":\"Seleziona quali partecipanti devono ricevere questo messaggio\",\"Ropvj0\":\"Seleziona quali eventi attiveranno questo webhook\",\"+6YAwo\":\"selezionati\",\"ylXj1N\":\"Selezionato\",\"uq3CXQ\":\"Esaurisci il tuo evento.\",\"j9b/iy\":\"Si vende velocemente 🔥\",\"73qYgo\":\"Invia come prova\",\"HMAqFK\":\"Invia email ai partecipanti, ai possessori di biglietti o ai titolari di ordini. I messaggi possono essere inviati immediatamente o programmati per un secondo momento.\",\"22Itl6\":\"Inviami una copia\",\"NpEm3p\":\"Invia ora\",\"nOBvex\":\"Invia dati di ordini e partecipanti in tempo reale ai tuoi sistemi esterni.\",\"1lNPhX\":\"Invia email di notifica rimborso\",\"eaUTwS\":\"Invia link di reimpostazione\",\"5cV4PY\":\"Invia a tutte le sessioni o scegline una specifica\",\"QEQlnV\":\"Invia il tuo primo messaggio\",\"3nMAVT\":\"Invio tra 2g 4h\",\"IoAuJG\":\"Invio in corso...\",\"h69WC6\":\"Inviato\",\"BVu2Hz\":\"Inviato da\",\"ZFa8wv\":\"Inviato ai partecipanti quando una data programmata viene annullata\",\"SPdzrs\":\"Inviato ai clienti quando effettuano un ordine\",\"LxSN5F\":\"Inviato a ogni partecipante con i dettagli del biglietto\",\"hgvbYY\":\"Settembre\",\"5sN96e\":\"Sessione annullata\",\"89xaFU\":\"Imposta le impostazioni predefinite delle commissioni della piattaforma per i nuovi eventi creati sotto questo organizzatore.\",\"eXssj5\":\"Imposta le impostazioni predefinite per i nuovi eventi creati con questo organizzatore.\",\"uPe5p8\":\"Imposta la durata di ciascuna data\",\"xNsRxU\":\"Imposta il numero di date\",\"ODuUEi\":\"Imposta o rimuovi l'etichetta della data\",\"buHACR\":\"Imposta l'orario di fine di ciascuna data in modo che sia successivo all'orario di inizio di questa durata.\",\"TaeFgl\":\"Imposta a illimitato (rimuovi limite)\",\"pd6SSe\":\"Configura una programmazione ricorrente per creare automaticamente le date, oppure aggiungile una alla volta.\",\"s0FkEx\":\"Configura liste di check-in per diversi ingressi, sessioni o giorni.\",\"TaWVGe\":\"Configura i versamenti\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Configura programmazione\",\"xMO+Ao\":\"Configura la tua organizzazione\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Configura la tua programmazione\",\"ETC76A\":\"Imposta, modifica o rimuovi il luogo o i dettagli online della sessione\",\"C3htzi\":\"Impostazione aggiornata\",\"Ohn74G\":\"Configurazione e design\",\"1W5XyZ\":\"La configurazione richiede solo pochi minuti — non serve un account Stripe preesistente. Stripe gestisce carte, wallet, metodi di pagamento regionali e protezione antifrode, così tu puoi concentrarti sul tuo evento.\",\"GG7qDw\":\"Condividi link affiliato\",\"hL7sDJ\":\"Condividi pagina dell'organizzatore\",\"jy6QDF\":\"Gestione capacità condivisa\",\"jDNHW4\":\"Sposta orari\",\"tPfIaW\":[\"Orari spostati per \",[\"count\"],\" data/e\"],\"WwlM8F\":\"Mostra opzioni avanzate\",\"cMW+gm\":[\"Mostra tutte le piattaforme (\",[\"0\"],\" con valori)\"],\"wXi9pZ\":\"Mostra note allo staff non autenticato\",\"UVPI5D\":\"Mostra meno piattaforme\",\"Eu/N/d\":\"Mostra casella di opt-in marketing\",\"SXzpzO\":\"Mostra casella di opt-in marketing per impostazione predefinita\",\"57tTk5\":\"Mostra altre date\",\"b33PL9\":\"Mostra più piattaforme\",\"Eut7p9\":\"Mostra dettagli allo staff non autenticato\",\"+RoWKN\":\"Mostra risposte allo staff non autenticato\",\"t1LIQW\":[\"Visualizzazione di \",[\"0\"],\" record su \",[\"totalRows\"]],\"E717U9\":[\"Visualizzazione \",[\"0\"],\"–\",[\"1\"],\" di \",[\"2\"]],\"5rzhBQ\":[\"Visualizzazione di \",[\"MAX_VISIBLE\"],\" su \",[\"totalAvailable\"],\" date. Digita per cercare.\"],\"WSt3op\":[\"Visualizzazione delle prime \",[\"0\"],\" — le restanti \",[\"1\"],\" sessione/i verranno comunque incluse all'invio del messaggio.\"],\"OJLTEL\":\"Mostrato allo staff alla prima apertura.\",\"jVRHeq\":\"Iscritto\",\"5C7J+P\":\"Evento singolo\",\"E//btK\":\"Salta le date modificate manualmente\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sociale\",\"d0rUsW\":\"Link social\",\"j/TOB3\":\"Link social e sito web\",\"s9KGXU\":\"Venduto\",\"iACSrw\":\"Alcuni dettagli sono nascosti all'accesso pubblico. Accedi per vedere tutto.\",\"KTxc6k\":\"Qualcosa è andato storto, riprova o contatta l'assistenza se il problema persiste\",\"lkE00/\":\"Qualcosa è andato storto. Riprova più tardi.\",\"wdxz7K\":\"Fonte\",\"fDG2by\":\"Spiritualità\",\"oPaRES\":\"Dividi il check-in per giorno, area o tipo di biglietto. Condividi il link con lo staff — senza account.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Istruzioni per lo staff\",\"tXkhj/\":\"Inizio\",\"JcQp9p\":\"Data e ora di inizio\",\"0m/ekX\":\"Data e ora di inizio\",\"izRfYP\":\"La data di inizio è obbligatoria\",\"tuO4fV\":\"Data di inizio della sessione\",\"2R1+Rv\":\"Ora di inizio dell'evento\",\"2Olov3\":\"Orario di inizio della sessione\",\"n9ZrDo\":\"Inizia a digitare una sede o un indirizzo...\",\"qeFVhN\":[\"Inizia tra \",[\"diffDays\"],\" giorni\"],\"AOqtxN\":[\"Inizia tra \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Inizia tra \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Inizia tra \",[\"seconds\"],\"s\"],\"NqChgF\":\"Inizia domani\",\"2NbyY/\":\"Statistiche\",\"GVUxAX\":\"Le statistiche si basano sulla data di creazione dell'account\",\"29Hx9U\":\"Statistiche\",\"5ia+r6\":\"Ancora necessario\",\"wuV0bK\":\"Interrompi Impersonificazione\",\"s/KaDb\":\"Stripe collegato\",\"Bk06QI\":\"Stripe connesso\",\"akZMv8\":[\"Connessione Stripe copiata da \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe non ha restituito un link di configurazione. Riprova.\",\"aKtF0O\":\"Stripe non connesso\",\"9i0++A\":\"ID pagamento Stripe\",\"R1lIMV\":\"Presto Stripe avrà bisogno di altri dettagli\",\"FzcCHA\":\"Stripe ti guiderà con alcune domande rapide per concludere la configurazione.\",\"eYbd7b\":\"Dom\",\"ii0qn/\":\"L'oggetto è obbligatorio\",\"M7Uapz\":\"L'oggetto apparirà qui\",\"6aXq+t\":\"Oggetto:\",\"JwTmB6\":\"Prodotto Duplicato con Successo\",\"WUOCgI\":\"Posto offerto con successo\",\"IvxA4G\":[\"Biglietti offerti con successo a \",[\"count\"],\" persone\"],\"kKpkzy\":\"Biglietti offerti con successo a 1 persona\",\"Zi3Sbw\":\"Rimosso dalla lista d'attesa con successo\",\"RuaKfn\":\"Indirizzo aggiornato con successo\",\"kzx0uD\":\"Impostazioni predefinite dell'evento aggiornate correttamente\",\"5n+Wwp\":\"Organizzatore aggiornato con successo\",\"DMCX/I\":\"Impostazioni predefinite delle commissioni aggiornate con successo\",\"URUYHc\":\"Impostazioni delle commissioni della piattaforma aggiornate con successo\",\"0Dk/l8\":\"Impostazioni SEO aggiornate con successo\",\"S8Tua9\":\"Impostazioni aggiornate con successo\",\"MhOoLQ\":\"Link social aggiornati con successo\",\"CNSSfp\":\"Impostazioni di tracciamento aggiornate con successo\",\"kj7zYe\":\"Webhook aggiornato con successo\",\"dXoieq\":\"Riepilogo\",\"/RfJXt\":[\"Festival musicale estivo \",[\"0\"]],\"CWOPIK\":\"Festival Musicale Estivo 2025\",\"D89zck\":\"Dom\",\"DBC3t5\":\"Domenica\",\"UaISq3\":\"Svedese\",\"JZTQI0\":\"Cambia organizzatore\",\"9YHrNC\":\"Predefinito del sistema\",\"lruQkA\":\"Tocca lo schermo per riprendere\",\"TJUrME\":[\"Stai contattando i partecipanti di \",[\"0\"],\" sessioni selezionate.\"],\"yT6dQ8\":\"Tasse raccolte raggruppate per tipo di tassa ed evento\",\"Ye321X\":\"Nome Tassa\",\"WyCBRt\":\"Riepilogo Tasse\",\"GkH0Pq\":\"Tasse & commissioni applicate\",\"Rwiyt2\":\"Imposte configurate\",\"iQZff7\":\"Tasse, commissioni, visibilità, periodo di vendita, evidenziazione del prodotto & limiti degli ordini\",\"SXvRWU\":\"Collaborazione di squadra\",\"vlf/In\":\"Tecnologia\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Spiega cosa aspettarsi dal tuo evento\",\"NiIUyb\":\"Parlaci del tuo evento\",\"DovcfC\":\"Parlaci della tua organizzazione. Queste informazioni saranno visualizzate sulle pagine dei tuoi eventi.\",\"69GWRq\":\"Indicaci con quale frequenza si ripete il tuo evento e creeremo tutte le date al posto tuo.\",\"mXPbwY\":\"Indicaci il tuo stato di registrazione IVA per applicare il corretto trattamento IVA alle commissioni della piattaforma.\",\"7wtpH5\":\"Modello Attivo\",\"QHhZeE\":\"Modello creato con successo\",\"xrWdPR\":\"Modello eliminato con successo\",\"G04Zjt\":\"Modello salvato con successo\",\"xowcRf\":\"Termini di servizio\",\"6K0GjX\":\"Il testo potrebbe essere difficile da leggere\",\"u0F1Ey\":\"Gio\",\"nm3Iz/\":\"Grazie per aver partecipato!\",\"pYwj0k\":\"Grazie,\",\"k3IitN\":\"È tutto\",\"KfmPRW\":\"Colore di sfondo della pagina. Quando si utilizza un'immagine di copertina, questa viene applicata come sovrapposizione.\",\"MDNyJz\":\"Il codice scadrà tra 10 minuti. Controlla la cartella spam se non vedi l'email.\",\"AIF7J2\":\"La valuta in cui è definita la commissione fissa. Verrà convertita nella valuta dell'ordine al momento del pagamento.\",\"MJm4Tq\":\"La valuta dell'ordine\",\"cDHM1d\":\"L'indirizzo e-mail è stato modificato. Il partecipante riceverà un nuovo biglietto all'indirizzo e-mail aggiornato.\",\"I/NNtI\":\"La sede dell'evento\",\"tXadb0\":\"L'evento che stai cercando non è disponibile al momento. Potrebbe essere stato rimosso, scaduto o l'URL potrebbe essere errato.\",\"5fPdZe\":\"La prima data dalla quale verrà generata questa pianificazione.\",\"EBzPwC\":\"L'indirizzo completo dell'evento\",\"sxKqBm\":\"L'importo completo dell'ordine sarà rimborsato al metodo di pagamento originale del cliente.\",\"KgDp6G\":\"Il link che stai cercando di accedere è scaduto o non è più valido. Controlla la tua e-mail per un link aggiornato per gestire il tuo ordine.\",\"5OmEal\":\"La lingua del cliente\",\"Np4eLs\":[\"Il massimo è \",[\"MAX_PREVIEW\"],\" sessioni. Riduci l'intervallo di date, la frequenza o il numero di sessioni al giorno.\"],\"sYLeDq\":\"L'organizzatore che stai cercando non è stato trovato. La pagina potrebbe essere stata spostata, eliminata o l'URL potrebbe essere errato.\",\"PCr4zw\":\"La sostituzione viene registrata nel log di audit dell'ordine.\",\"C4nQe5\":\"La commissione della piattaforma viene aggiunta al prezzo del biglietto. Gli acquirenti pagano di più, ma tu ricevi il prezzo completo del biglietto.\",\"HxxXZO\":\"Il colore principale del marchio utilizzato per i pulsanti e le evidenziazioni\",\"z0KrIG\":\"L'orario programmato è obbligatorio\",\"EWErQh\":\"L'orario programmato deve essere nel futuro\",\"UNd0OU\":[\"La sessione di \\\"\",[\"title\"],\"\\\" originariamente prevista per \",[\"0\"],\" è stata riprogrammata.\"],\"DEcpfp\":\"Il corpo del template contiene sintassi Liquid non valida. Correggila e riprova.\",\"injXD7\":\"Impossibile convalidare il numero di partita IVA. Controlla il numero e riprova.\",\"A4UmDy\":\"Teatro\",\"tDwYhx\":\"Tema e colori\",\"O7g4eR\":\"Non ci sono date in arrivo per questo evento\",\"HrIl0p\":[\"Non c'è alcuna lista di check-in dedicata a questa data. La lista \\\"\",[\"0\"],\"\\\" registra i partecipanti di tutte le date — il personale che scansiona un biglietto per una data diversa otterrà comunque un check-in riuscito.\"],\"dt3TwA\":\"Questi sono i prezzi e le quantità predefiniti per tutte le date. Le date di vendita delle fasce si applicano a livello globale. Puoi sostituire prezzi e quantità per le singole date nella <0>pagina di programmazione delle sessioni.\",\"062KsE\":\"Questi dettagli vengono mostrati sul biglietto del partecipante e nel riepilogo dell'ordine solo per questa data.\",\"5Eu+tn\":\"Questi dettagli verranno mostrati solo se l'ordine viene completato con successo.\",\"jQjwR+\":\"Questi dettagli sostituiranno qualsiasi luogo esistente nelle sessioni interessate e saranno mostrati sui biglietti dei partecipanti.\",\"QP3gP+\":\"Queste impostazioni si applicano solo al codice di incorporamento copiato e non verranno salvate.\",\"HirZe8\":\"Questi modelli verranno utilizzati come predefiniti per tutti gli eventi nella tua organizzazione. I singoli eventi possono sostituire questi modelli con le proprie versioni personalizzate.\",\"lzAaG5\":\"Questi modelli sostituiranno le impostazioni predefinite dell'organizzatore solo per questo evento. Se non è impostato alcun modello personalizzato qui, verrà utilizzato il modello dell'organizzatore.\",\"UlykKR\":\"Terzo\",\"wkP5FM\":\"Si applica a ogni data corrispondente dell'evento, incluse le date non attualmente visibili. I partecipanti registrati in una qualsiasi di queste date saranno raggiungibili tramite il compositore di messaggi al termine dell'aggiornamento.\",\"SOmGDa\":\"Questa lista di check-in è dedicata a una sessione che è stata annullata, quindi non può più essere utilizzata per i check-in.\",\"XBNC3E\":\"Questo codice sarà usato per tracciare le vendite. Sono ammessi solo lettere, numeri, trattini e trattini bassi.\",\"AaP0M+\":\"Questa combinazione di colori potrebbe essere difficile da leggere per alcuni utenti\",\"o1phK/\":[\"Questa data ha \",[\"orderCount\"],\" ordine/i che ne verranno interessati.\"],\"F/UtGt\":\"Questa data è stata annullata. Puoi comunque eliminarla per rimuoverla definitivamente.\",\"BLZ7pX\":\"Questa data è nel passato. Verrà creata ma non sarà visibile ai partecipanti tra le date in arrivo.\",\"7IIY0z\":\"Questa data è contrassegnata come esaurita.\",\"bddWMP\":\"Questa data non è più disponibile. Seleziona un'altra data.\",\"RzEvf5\":\"Questo evento è terminato\",\"YClrdK\":\"Questo evento non è ancora pubblicato\",\"dFJnia\":\"Questo è il nome del tuo organizzatore che sarà visibile agli utenti.\",\"vt7jiq\":\"Questa è l'unica volta in cui il segreto di firma verrà mostrato. Copialo ora e conservalo in modo sicuro.\",\"L7dIM7\":\"Questo link non è valido o è scaduto.\",\"MR5ygV\":\"Questo link non è più valido\",\"9LEqK0\":\"Questo nome è visibile agli utenti finali\",\"QdUMM9\":\"Questa sessione ha raggiunto la capacità massima\",\"j5FdeA\":\"Questo ordine è in fase di elaborazione.\",\"sjNPMw\":\"Questo ordine è stato abbandonato. Puoi avviarne uno nuovo in qualsiasi momento.\",\"OhCesD\":\"Questo ordine è stato annullato. Puoi iniziare un nuovo ordine in qualsiasi momento.\",\"lyD7rQ\":\"Questo profilo organizzatore non è ancora pubblicato\",\"9b5956\":\"Questa anteprima mostra come apparirà la tua email con dati di esempio. Le email effettive utilizzeranno valori reali.\",\"uM9Alj\":\"Questo prodotto è evidenziato nella pagina dell'evento\",\"RqSKdX\":\"Questo prodotto è esaurito\",\"W12OdJ\":\"Questo report ha solo scopo informativo. Consultare sempre un consulente fiscale prima di utilizzare questi dati per scopi contabili o fiscali. Si prega di fare un confronto con la dashboard di Stripe, poiché Hi.Events potrebbe non includere dati storici.\",\"0Ew0uk\":\"Questo biglietto è stato appena scansionato. Attendi prima di scansionare di nuovo.\",\"FYXq7k\":[\"Verranno interessate \",[\"loadedAffectedCount\"],\" data/e.\"],\"kvpxIU\":\"Questo sarà usato per notifiche e comunicazioni con i tuoi utenti.\",\"rhsath\":\"Questo non sarà visibile ai clienti, ma ti aiuta a identificare l'affiliato.\",\"hV6FeJ\":\"Flusso\",\"+FjWgX\":\"Gio\",\"kkDQ8m\":\"Giovedì\",\"0GSPnc\":\"Design del Biglietto\",\"EZC/Cu\":\"Design del biglietto salvato con successo\",\"bbslmb\":\"Designer biglietti\",\"1BPctx\":\"Biglietto per\",\"bgqf+K\":\"Email del possessore del biglietto\",\"oR7zL3\":\"Nome del possessore del biglietto\",\"HGuXjF\":\"Possessori di biglietti\",\"CMUt3Y\":\"Titolari dei biglietti\",\"awHmAT\":\"ID biglietto\",\"6czJik\":\"Logo del Biglietto\",\"OkRZ4Z\":\"Nome Biglietto\",\"t79rDv\":\"Biglietto non trovato\",\"6tmWch\":\"Biglietto o prodotto\",\"1tfWrD\":\"Anteprima biglietto per\",\"KnjoUA\":\"Prezzo del biglietto\",\"tGCY6d\":\"Prezzo Biglietto\",\"pGZOcL\":\"Biglietto reinviato con successo\",\"o02GZM\":\"La vendita dei biglietti per questo evento è terminata\",\"8jLPgH\":\"Tipo di Biglietto\",\"X26cQf\":\"URL Biglietto\",\"8qsbZ5\":\"Biglietteria e vendite\",\"zNECqg\":\"biglietti\",\"6GQNLE\":\"Biglietti\",\"NRhrIB\":\"Biglietti e prodotti\",\"OrWHoZ\":\"I biglietti vengono offerti automaticamente ai clienti in lista d'attesa quando si libera la disponibilità.\",\"EUnesn\":\"Biglietti disponibili\",\"AGRilS\":\"Biglietti Venduti\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Orario\",\"dMtLDE\":\"a\",\"/jQctM\":\"A\",\"tiI71C\":\"Per aumentare i tuoi limiti, contattaci a\",\"ecUA8p\":\"Oggi\",\"W428WC\":\"Attiva colonne\",\"BRMXj0\":\"Domani\",\"UBSG1X\":\"Migliori organizzatori (Ultimi 14 giorni)\",\"3sZ0xx\":\"Account Totali\",\"EaAPbv\":\"Importo totale pagato\",\"SMDzqJ\":\"Totale Partecipanti\",\"orBECM\":\"Totale Raccolto\",\"k5CU8c\":\"Totale iscrizioni\",\"4B7oCp\":\"Commissione totale\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Utenti Totali\",\"oJjplO\":\"Visualizzazioni totali\",\"rBZ9pz\":\"Tour\",\"orluER\":\"Traccia la crescita e le prestazioni dell'account per fonte di attribuzione\",\"YwKzpH\":\"Tracciamento e analisi\",\"uKOFO5\":\"Vero se pagamento offline\",\"9GsDR2\":\"Vero se pagamento in sospeso\",\"GUA0Jy\":\"Prova un altro termine o filtro\",\"2P/OWN\":\"Prova a modificare i tuoi filtri per vedere altre date.\",\"ouM5IM\":\"Prova un'altra email\",\"3DZvE7\":\"Prova Hi.Events Gratis\",\"7P/9OY\":\"Mar\",\"vq2WxD\":\"Mar\",\"G3myU+\":\"Martedì\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Disattiva audio\",\"KUOhTy\":\"Attiva audio\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Digita \\\"elimina\\\" per confermare\",\"XxecLm\":\"Tipo di biglietto\",\"IrVSu+\":\"Impossibile duplicare il prodotto. Controlla i tuoi dati\",\"Vx2J6x\":\"Impossibile recuperare il partecipante\",\"h0dx5e\":\"Impossibile unirsi alla lista d'attesa\",\"DaE0Hg\":\"Impossibile caricare i dettagli del partecipante.\",\"GlnD5Y\":\"Impossibile caricare i prodotti per questa data. Riprova.\",\"17VbmV\":\"Impossibile annullare il check-in\",\"n57zCW\":\"Account non attribuiti\",\"9uI/rE\":\"Annulla\",\"b9SN9q\":\"Riferimento ordine unico\",\"Ef7StM\":\"Sconosciuto\",\"ZBAScj\":\"Partecipante Sconosciuto\",\"MEIAzV\":\"Senza nome\",\"K6L5Mx\":\"Luogo senza nome\",\"X13xGn\":\"Non attendibile\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Aggiorna affiliato\",\"59qHrb\":\"Aggiorna capacità\",\"Gaem9v\":\"Aggiorna nome e descrizione dell'evento\",\"7EhE4k\":\"Aggiorna etichetta\",\"NPQWj8\":\"Aggiorna luogo\",\"75+lpR\":[\"Aggiornamento: \",[\"subjectTitle\"],\" — modifiche alla programmazione\"],\"UOGHdA\":[\"Aggiornamento: \",[\"subjectTitle\"],\" — orario della sessione modificato\"],\"ogoTrw\":[[\"count\"],\" data/e aggiornata/e\"],\"dDuona\":[\"Capacità aggiornata per \",[\"count\"],\" data/e\"],\"FT3LSc\":[\"Etichetta aggiornata per \",[\"count\"],\" data/e\"],\"8EcY1g\":[\"Luogo aggiornato per \",[\"count\"],\" sessione/i\"],\"gJQsLv\":\"Carica un'immagine di copertina per il tuo organizzatore\",\"4kEGqW\":\"Carica un logo per il tuo organizzatore\",\"lnCMdg\":\"Carica immagine\",\"29w7p6\":\"Caricamento immagine in corso...\",\"HtrFfw\":\"URL è obbligatorio\",\"vzWC39\":\"USB\",\"td5pxI\":\"Scanner USB attivo\",\"dyTklH\":\"Scanner USB in pausa\",\"OHJXlK\":\"Usa <0>i template Liquid per personalizzare le tue email\",\"g0WJMu\":\"Usa la lista di tutte le date\",\"0k4cdb\":\"Utilizza i dettagli dell'ordine per tutti i partecipanti. I nomi e gli indirizzi email dei partecipanti corrisponderanno alle informazioni dell'acquirente.\",\"MKK5oI\":\"Usare la lista di tutte le date o crearne una per questa data?\",\"bA31T4\":\"Usa i dati dell'acquirente per tutti i partecipanti\",\"rnoQsz\":\"Utilizzato per bordi, evidenziazioni e stile del codice QR\",\"BV4L/Q\":\"Analisi UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Convalida della tua partita IVA...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Partita IVA\",\"pnVh83\":\"Numero di partita IVA\",\"CabI04\":\"Il numero di partita IVA non deve contenere spazi\",\"PMhxAR\":\"Il numero di partita IVA deve iniziare con un codice paese di 2 lettere seguito da 8-15 caratteri alfanumerici (ad es., DE123456789)\",\"gPgdNV\":\"Partita IVA convalidata con successo\",\"RUMiLy\":\"Convalida della partita IVA non riuscita\",\"vqji3Y\":\"Convalida della partita IVA non riuscita. Controlla la tua partita IVA.\",\"8dENF9\":\"IVA su commissione\",\"ZutOKU\":\"Aliquota IVA\",\"+KJZt3\":\"Soggetto a IVA\",\"Nfbg76\":\"Impostazioni IVA salvate con successo\",\"UvYql/\":\"Impostazioni IVA salvate. Stiamo convalidando il tuo numero di partita IVA in background.\",\"bXn1Jz\":\"Impostazioni IVA aggiornate\",\"tJylUv\":\"Trattamento IVA per le commissioni della piattaforma\",\"FlGprQ\":\"Trattamento IVA per le commissioni della piattaforma: Le imprese registrate IVA nell'UE possono utilizzare il meccanismo del reverse charge (0% - Articolo 196 della Direttiva IVA 2006/112/CE). Alle imprese non registrate IVA viene applicata l'IVA irlandese al 23%.\",\"516oLj\":\"Servizio di convalida IVA temporaneamente non disponibile\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"IVA: non registrato\",\"AdWhjZ\":\"Codice di verifica\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Verificato\",\"wCKkSr\":\"Verifica email\",\"/IBv6X\":\"Verifica la tua email\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Verifica in corso...\",\"fROFIL\":\"Vietnamita\",\"p5nYkr\":\"Visualizza tutto\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Vedi tutte le funzionalità\",\"RnvnDc\":\"Visualizza tutti i messaggi inviati sulla piattaforma\",\"+WFMis\":\"Visualizza e scarica report per tutti i tuoi eventi. Sono inclusi solo gli ordini completati.\",\"c7VN/A\":\"Visualizza Risposte\",\"SZw9tS\":\"Visualizza dettagli\",\"9+84uW\":[\"Visualizza dettagli di \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Visualizza evento\",\"c6SXHN\":\"Visualizza pagina dell'evento\",\"n6EaWL\":\"Visualizza log\",\"OaKTzt\":\"Vedi mappa\",\"zNZNMs\":\"Visualizza messaggio\",\"67OJ7t\":\"Visualizza Ordine\",\"tKKZn0\":\"Visualizza dettagli ordine\",\"KeCXJu\":\"Visualizza i dettagli degli ordini, emetti rimborsi e reinvia le conferme.\",\"9jnAcN\":\"Visualizza homepage organizzatore\",\"1J/AWD\":\"Visualizza Biglietto\",\"N9FyyW\":\"Visualizza, modifica ed esporta i tuoi partecipanti registrati.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"In attesa\",\"quR8Qp\":\"In attesa di pagamento\",\"KrurBH\":\"In attesa di scansione…\",\"u0n+wz\":\"Lista d'attesa\",\"3RXFtE\":\"Lista d'attesa abilitata\",\"TwnTPy\":\"L'offerta per la lista d'attesa è scaduta.\",\"NzIvKm\":\"Lista d'attesa attivata\",\"aUi/Dz\":\"Attenzione: questa è la configurazione predefinita del sistema. Le modifiche interesseranno tutti gli account a cui non è assegnata una configurazione specifica.\",\"qeygIa\":\"Mer\",\"aT/44s\":\"Non siamo riusciti a copiare questa connessione Stripe. Riprova.\",\"RRZDED\":\"Non abbiamo trovato ordini associati a questo indirizzo email.\",\"2RZK9x\":\"Non siamo riusciti a trovare l'ordine che stai cercando. Il link potrebbe essere scaduto o i dettagli dell'ordine potrebbero essere cambiati.\",\"nefMIK\":\"Non siamo riusciti a trovare il biglietto che stai cercando. Il link potrebbe essere scaduto o i dettagli del biglietto potrebbero essere cambiati.\",\"miysJh\":\"Non siamo riusciti a trovare questo ordine. Potrebbe essere stato rimosso.\",\"ADsQ23\":\"Non siamo riusciti a contattare Stripe in questo momento. Riprova tra poco.\",\"HJKdzP\":\"Si è verificato un problema durante il caricamento di questa pagina. Riprova.\",\"jegrvW\":\"Collaboriamo con Stripe per inviare i pagamenti direttamente sul tuo conto bancario.\",\"IfN2Qo\":\"Consigliamo un logo quadrato con dimensioni minime di 200x200px\",\"wJzo/w\":\"Si consigliano dimensioni di 400px per 400px e una dimensione massima del file di 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Utilizziamo i cookie per aiutarci a capire come viene utilizzato il sito e per migliorare la tua esperienza.\",\"x8rEDQ\":\"Non siamo riusciti a convalidare il tuo numero di partita IVA dopo diversi tentativi. Continueremo a provare in background. Riprova più tardi.\",\"iy+M+c\":[\"Ti avviseremo via email se si libererà un posto per \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Dopo il salvataggio apriremo un compositore di messaggi con un modello precompilato. Tu lo revisioni e lo invii — nulla viene inviato automaticamente.\",\"q1BizZ\":\"Invieremo i tuoi biglietti a questa email\",\"ZOmUYW\":\"Convalideremo la tua partita IVA in background. In caso di problemi, ti informeremo.\",\"LKjHr4\":[\"Abbiamo apportato modifiche alla programmazione di \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" che riguarda \",[\"affectedCount\"],\" sessione/i.\"],\"Fq/Nx7\":\"Abbiamo inviato un codice di verifica a 5 cifre a:\",\"GdWB+V\":\"Webhook creato con successo\",\"2X4ecw\":\"Webhook eliminato con successo\",\"ndBv0v\":\"Integrazioni webhook\",\"CThMKa\":\"Log Webhook\",\"I0adYQ\":\"Segreto di firma del Webhook\",\"nuh/Wq\":\"URL Webhook\",\"8BMPMe\":\"Il webhook non invierà notifiche\",\"FSaY52\":\"Il webhook invierà notifiche\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Sito web\",\"0f7U0k\":\"Mer\",\"VAcXNz\":\"Mercoledì\",\"64X6l4\":\"settimana\",\"4XSc4l\":\"Settimanale\",\"IAUiSh\":\"settimane\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bentornato\",\"QDWsl9\":[\"Benvenuto su \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Benvenuto su \",[\"0\"],\", ecco un elenco di tutti i tuoi eventi\"],\"DDbx7K\":\"Benessere\",\"ywRaYa\":\"A che ora?\",\"FaSXqR\":\"Che tipo di evento?\",\"0WyYF4\":\"Cosa vede lo staff non autenticato\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando un check-in viene eliminato\",\"RPe6bE\":\"Quando una data viene annullata in un evento ricorrente\",\"Gmd0hv\":\"Quando viene creato un nuovo partecipante\",\"zyIyPe\":\"Quando viene creato un nuovo evento\",\"Lc18qn\":\"Quando viene creato un nuovo ordine\",\"dfkQIO\":\"Quando viene creato un nuovo prodotto\",\"8OhzyY\":\"Quando un prodotto viene eliminato\",\"tRXdQ9\":\"Quando un prodotto viene aggiornato\",\"9L9/28\":\"Quando un prodotto si esaurisce, i clienti possono iscriversi a una lista d'attesa per essere avvisati quando si liberano dei posti.\",\"Q7CWxp\":\"Quando un partecipante viene annullato\",\"IuUoyV\":\"Quando un partecipante effettua il check-in\",\"nBVOd7\":\"Quando un partecipante viene aggiornato\",\"t7cuMp\":\"Quando un evento viene archiviato\",\"gtoSzE\":\"Quando un evento viene aggiornato\",\"ny2r8d\":\"Quando un ordine viene annullato\",\"c9RYbv\":\"Quando un ordine viene contrassegnato come pagato\",\"ejMDw1\":\"Quando un ordine viene rimborsato\",\"fVPt0F\":\"Quando un ordine viene aggiornato\",\"bcYlvb\":\"Quando chiude il check-in\",\"XIG669\":\"Quando apre il check-in\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"Quando abilitato, i nuovi eventi consentiranno ai partecipanti di gestire i propri dettagli del biglietto tramite un link sicuro. Questo può essere sostituito per evento.\",\"blXLKj\":\"Se abilitato, i nuovi eventi mostreranno una casella di opt-in marketing durante il checkout. Questo può essere sovrascritto per evento.\",\"Kj0Txn\":\"Quando abilitato, non verranno addebitate commissioni di applicazione sulle transazioni Stripe Connect. Usa questo per i paesi in cui le commissioni di applicazione non sono supportate.\",\"tMqezN\":\"Se i rimborsi sono in fase di elaborazione\",\"uchB0M\":\"Anteprima widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Scrivi qui il tuo messaggio...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"anno\",\"zkWmBh\":\"Annuale\",\"+BGee5\":\"anni\",\"X/azM1\":\"Sì - Ho un numero di partita IVA UE valido\",\"Tz5oXG\":\"Sì, annulla il mio ordine\",\"QlSZU0\":[\"Stai impersonificando <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Stai emettendo un rimborso parziale. Il cliente sarà rimborsato di \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Puoi configurare commissioni di servizio aggiuntive e tasse nelle impostazioni del tuo account.\",\"rj3A7+\":\"Potrai sostituire questo valore per le singole date in seguito.\",\"paWwQ0\":\"È comunque possibile offrire biglietti manualmente se necessario.\",\"jTDzpA\":\"Non puoi archiviare l'ultimo organizzatore attivo del tuo account.\",\"5VGIlq\":\"Hai raggiunto il tuo limite di messaggistica.\",\"casL1O\":\"Hai tasse e commissioni aggiunte a un Prodotto Gratuito. Vuoi rimuoverle?\",\"9jJNZY\":\"Devi riconoscere le tue responsabilità prima di salvare\",\"pCLes8\":\"Devi accettare di ricevere messaggi\",\"FVTVBy\":\"Devi verificare il tuo indirizzo email prima di poter aggiornare lo stato dell'organizzatore.\",\"ze4bi/\":\"Devi creare almeno una sessione prima di poter aggiungere partecipanti a questo evento ricorrente.\",\"w65ZgF\":\"Devi verificare l'email del tuo account prima di poter modificare i modelli di email.\",\"FRl8Jv\":\"Devi verificare l'email del tuo account prima di poter inviare messaggi.\",\"88cUW+\":\"Ricevi\",\"O6/3cu\":\"Potrai configurare date, programmazioni e regole di ricorrenza nel passaggio successivo.\",\"zKAheG\":\"Stai modificando gli orari delle sessioni\",\"MNFIxz\":[\"Stai per partecipare a \",[\"0\"],\"!\"],\"qGZz0m\":\"Sei nella lista d'attesa!\",\"/5HL6k\":\"Ti è stato offerto un posto!\",\"gbjFFH\":\"Hai modificato l'orario della sessione\",\"p/Sa0j\":\"Il tuo account ha limiti di messaggistica. Per aumentare i tuoi limiti, contattaci a\",\"x/xjzn\":\"I tuoi affiliati sono stati esportati con successo.\",\"TF37u6\":\"I tuoi partecipanti sono stati esportati con successo.\",\"79lXGw\":\"La tua lista di check-in è stata creata con successo. Condividi il link sottostante con il tuo staff di check-in.\",\"BnlG9U\":\"Il tuo ordine attuale andrà perso.\",\"nBqgQb\":\"La tua Email\",\"GG1fRP\":\"Il tuo evento è online!\",\"ifRqmm\":\"Il tuo messaggio è stato inviato con successo!\",\"0/+Nn9\":\"I tuoi messaggi appariranno qui\",\"/Rj5P4\":\"Il tuo nome\",\"PFjJxY\":\"La nuova password deve contenere almeno 8 caratteri.\",\"gzrCuN\":\"I dettagli del tuo ordine sono stati aggiornati. Un'e-mail di conferma è stata inviata al nuovo indirizzo e-mail.\",\"naQW82\":\"Il tuo ordine è stato annullato.\",\"bhlHm/\":\"Il tuo ordine è in attesa di pagamento\",\"XeNum6\":\"I tuoi ordini sono stati esportati con successo.\",\"Xd1R1a\":\"L'indirizzo del tuo organizzatore\",\"WWYHKD\":\"Il tuo pagamento è protetto con crittografia a livello bancario\",\"5b3QLi\":\"Il tuo piano\",\"N4Zkqc\":\"Il tuo filtro di date salvato non è più disponibile — verranno mostrate tutte le date.\",\"FNO5uZ\":\"Il tuo biglietto è ancora valido — non è necessaria alcuna azione, a meno che il nuovo orario non ti vada bene. Rispondi a questa email per qualsiasi domanda.\",\"CnZ3Ou\":\"I tuoi biglietti sono stati confermati.\",\"EmFsMZ\":\"Il tuo numero di partita IVA è in coda per la convalida\",\"QBlhh4\":\"La tua partita IVA verrà convalidata al momento del salvataggio\",\"fT9VLt\":\"La tua offerta di iscrizione alla lista d'attesa è scaduta e non siamo stati in grado di completare il tuo ordine. Ti preghiamo di iscriverti nuovamente alla lista d'attesa per essere avvisato quando si libereranno dei posti.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/it.po b/frontend/src/locales/it.po index 6910020162..4331b0caac 100644 --- a/frontend/src/locales/it.po +++ b/frontend/src/locales/it.po @@ -60,7 +60,7 @@ msgstr "{0} <0>uscita registrata con successo" msgid "{0} Active Webhooks" msgstr "{0} Webhook Attivi" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} disponibili" @@ -78,7 +78,7 @@ msgstr "{0} rimasti" msgid "{0} logo" msgstr "Logo {0}" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{0} di {1} posti sono occupati." @@ -90,7 +90,7 @@ msgstr "{0} organizzatori" msgid "{0} spots left" msgstr "{0} posti rimasti" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} biglietti" @@ -114,7 +114,7 @@ msgstr "Logo {appName}" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} partecipanti sono registrati per questa sessione." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} di {totalCount} disponibile" @@ -122,7 +122,7 @@ msgstr "{availableCount} di {totalCount} disponibile" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} registrati" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} eventi" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} ore, {minutes} minuti e {seconds} secondi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "{loadedAffectedAttendees} partecipanti sono registrati nelle sessioni interessate." @@ -163,11 +163,11 @@ msgstr "{minutes} minuti e {seconds} secondi" msgid "{organizerName}'s first event" msgstr "Primo evento di {organizerName}" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} tipi di biglietto" @@ -230,7 +230,7 @@ msgstr "0 minuti e 0 secondi" msgid "1 Active Webhook" msgstr "1 Webhook Attivo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "1 partecipante è registrato nelle sessioni interessate." @@ -238,35 +238,35 @@ msgstr "1 partecipante è registrato nelle sessioni interessate." msgid "1 attendee is registered for this session." msgstr "1 partecipante è registrato per questa sessione." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 giorno dopo la data di fine" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 giorno dopo la data di inizio" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 giorno prima dell'evento" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 ora prima dell'evento" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 biglietto" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 tipo di biglietto" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 settimana prima dell'evento" @@ -301,7 +301,7 @@ msgstr "00100" msgid "A cancellation notice has been sent to" msgstr "Un avviso di annullamento è stato inviato a" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "una modifica della durata" @@ -321,7 +321,7 @@ msgstr "Un menu a tendina consente una sola selezione" msgid "A fee, like a booking fee or a service fee" msgstr "Una commissione, come una commissione di prenotazione o una commissione di servizio" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "Un codice promozionale senza sconto può essere utilizzato per rivelare msgid "A Radio option has multiple options but only one can be selected." msgstr "Un'opzione Radio ha più opzioni ma solo una può essere selezionata." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "uno spostamento degli orari di inizio/fine" @@ -465,7 +465,7 @@ msgstr "Account aggiornato con successo" msgid "Accounts" msgstr "Account" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Azione richiesta: Informazioni IVA necessarie" @@ -493,10 +493,10 @@ msgstr "Data di attivazione" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Metodi di pagamento attivi" msgid "Activity" msgstr "Attività" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Aggiungi una data" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "Aggiungi eventuali note sull'ordine..." msgid "Add at least one time" msgstr "Aggiungi almeno un orario" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Aggiungi i dettagli di connessione per l’evento online." @@ -572,15 +576,19 @@ msgstr "Aggiungi data" msgid "Add Dates" msgstr "Aggiungi date" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Aggiungi descrizione" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "Aggiungi domanda" msgid "Add Tax or Fee" msgstr "Aggiungi Tassa o Commissione" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Aggiungi comunque questo partecipante (ignora la capacità)" @@ -634,8 +642,8 @@ msgstr "Aggiungi comunque questo partecipante (ignora la capacità)" msgid "Add this event to your calendar" msgstr "Aggiungi questo evento al tuo calendario" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Aggiungi biglietti" @@ -649,7 +657,7 @@ msgstr "Aggiungi livello" msgid "Add to Calendar" msgstr "Aggiungi al Calendario" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Aggiungi pixel di tracciamento alle pagine pubbliche del tuo evento e alla home dell'organizzatore. Quando il tracciamento è attivo, ai visitatori verrà mostrato un banner per il consenso ai cookie." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Indirizzo riga 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Indirizzo Riga 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Indirizzo riga 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Indirizzo Riga 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Amministratore" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Accesso amministratore richiesto" @@ -725,7 +733,7 @@ msgstr "Accesso amministratore richiesto" msgid "Admin Dashboard" msgstr "Dashboard Amministratore" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Gli amministratori hanno accesso completo agli eventi e alle impostazioni dell'account." @@ -776,7 +784,7 @@ msgstr "Affiliati esportati" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Gli affiliati ti aiutano a tracciare le vendite generate da partner e influencer. Crea codici affiliato e condividili per monitorare le prestazioni." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "tutti" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "Tutti gli eventi archiviati" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Tutti i partecipanti" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "Tutti i partecipanti delle sessioni selezionate" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Tutti i partecipanti di questo evento" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Tutti i partecipanti di questa sessione" @@ -838,12 +846,12 @@ msgstr "Tutti i lavori falliti eliminati" msgid "All jobs queued for retry" msgstr "Tutti i lavori in coda per il nuovo tentativo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Tutte le date corrispondenti" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Tutte le sessioni" @@ -897,7 +905,7 @@ msgstr "Hai già un account? <0>{0}" msgid "Already in" msgstr "Già dentro" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Già rimborsato" @@ -905,11 +913,11 @@ msgstr "Già rimborsato" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Usi già Stripe per un altro organizzatore? Riutilizza quella connessione." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Cancella anche questo ordine" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Rimborsa anche questo ordine" @@ -932,7 +940,7 @@ msgstr "Importo" msgid "Amount Paid" msgstr "Importo pagato" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Importo pagato ({0})" @@ -952,7 +960,7 @@ msgstr "Si è verificato un errore durante il caricamento della pagina" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Un messaggio facoltativo da visualizzare sul prodotto evidenziato, ad esempio \"In vendita veloce 🔥\" o \"Miglior rapporto qualità-prezzo\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Si è verificato un errore imprevisto." @@ -988,7 +996,7 @@ msgstr "Qualsiasi richiesta dai possessori di prodotti verrà inviata a questo i msgid "Appearance" msgstr "Aspetto" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "applicato" @@ -996,7 +1004,7 @@ msgstr "applicato" msgid "Applies to {0} products" msgstr "Si applica a {0} prodotti" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Si applica a {0} date non annullate attualmente caricate in questa pagina." @@ -1008,7 +1016,7 @@ msgstr "Si applica a 1 prodotto" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Vale per chi apre il link senza essere autenticato. I membri autenticati vedono sempre tutto." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Si applica a ogni data non annullata di questo evento ({0} in totale) — incluse le date non attualmente caricate." @@ -1016,11 +1024,11 @@ msgstr "Si applica a ogni data non annullata di questo evento ({0} in totale) msgid "Apply" msgstr "Applica" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Applica modifiche" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Applica Codice Promozionale" @@ -1028,7 +1036,7 @@ msgstr "Applica Codice Promozionale" msgid "Apply this {type} to all new products" msgstr "Applica questo {type} a tutti i nuovi prodotti" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Applica a" @@ -1044,36 +1052,35 @@ msgstr "Approva messaggio" msgid "April" msgstr "Aprile" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Archivia" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Archivia evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Archivia evento" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Archivia organizzatore" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Archivia questo evento per nasconderlo al pubblico. Puoi ripristinarlo in seguito." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Archivia questo organizzatore. Verranno archiviati anche tutti gli eventi appartenenti a questo organizzatore." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Archiviati" @@ -1085,15 +1092,15 @@ msgstr "Organizzatori archiviati" msgid "Are you sure you want to activate this attendee?" msgstr "Sei sicuro di voler attivare questo partecipante?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Sei sicuro di voler archiviare questo evento?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Sei sicuro di voler archiviare questo evento? Non sarà più visibile al pubblico." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Sei sicuro di voler archiviare questo organizzatore? Verranno archiviati anche tutti gli eventi appartenenti a questo organizzatore." @@ -1123,7 +1130,7 @@ msgstr "Sei sicuro di voler eliminare tutti i lavori falliti?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Sei sicuro di voler eliminare questo affiliato? Questa azione non può essere annullata." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Vuoi davvero eliminare questa configurazione? Ciò potrebbe influire sugli account che la utilizzano." @@ -1137,11 +1144,11 @@ msgstr "Sei sicuro di voler eliminare questa data? Questa azione non può essere msgid "Are you sure you want to delete this promo code?" msgstr "Sei sicuro di voler eliminare questo codice promozionale?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Sei sicuro di voler eliminare questo modello? Questa azione non può essere annullata e le email torneranno al modello predefinito." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Sei sicuro di voler eliminare questo modello? Questa azione non può essere annullata e le email torneranno al modello dell'organizzatore o predefinito." @@ -1150,17 +1157,17 @@ msgstr "Sei sicuro di voler eliminare questo modello? Questa azione non può ess msgid "Are you sure you want to delete this webhook?" msgstr "Sei sicuro di voler eliminare questo webhook?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Sei sicuro di voler uscire?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Sei sicuro di voler rendere questo evento una bozza? Questo renderà l'evento invisibile al pubblico" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Sei sicuro di voler rendere questo evento pubblico? Questo renderà l'evento visibile al pubblico" @@ -1200,15 +1207,15 @@ msgstr "Sei sicuro di voler reinviare la conferma dell'ordine a {0}?" msgid "Are you sure you want to resend the ticket to {0}?" msgstr "Sei sicuro di voler reinviare il biglietto a {0}?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Sei sicuro di voler ripristinare questo evento?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Sei sicuro di voler ripristinare questo evento? Verrà ripristinato come bozza." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Sei sicuro di voler ripristinare questo organizzatore?" @@ -1229,7 +1236,7 @@ msgstr "Sei sicuro di voler eliminare questa Assegnazione di Capacità?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "Sei sicuro di voler eliminare questa Lista di Check-In?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "Sei registrato IVA nell'UE?" @@ -1237,7 +1244,7 @@ msgstr "Sei registrato IVA nell'UE?" msgid "Art" msgstr "Arte" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "Poiché la tua attività ha sede in Irlanda, l'IVA irlandese al 23% si applica automaticamente a tutte le commissioni della piattaforma." @@ -1270,7 +1277,7 @@ msgstr "Livello assegnato" msgid "At least one event type must be selected" msgstr "Deve essere selezionato almeno un tipo di evento" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Tentativi" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Presenze e tassi di check-in per tutti gli eventi" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "partecipante" @@ -1287,7 +1293,7 @@ msgstr "partecipante" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Partecipante" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Stato del Partecipante" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Biglietto Partecipante" @@ -1364,13 +1370,13 @@ msgstr "Il biglietto del partecipante non è incluso in questa lista" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "partecipanti" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "partecipanti" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Partecipanti" @@ -1393,16 +1399,16 @@ msgstr "partecipanti registrati" msgid "Attendees Exported" msgstr "Partecipanti Esportati" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Partecipanti registrati" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Partecipanti Registrati" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Partecipanti con un biglietto specifico" @@ -1454,7 +1460,7 @@ msgstr "Ridimensiona automaticamente l'altezza del widget in base al contenuto. msgid "Available" msgstr "Disponibile" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Disponibile per rimborso" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "In attesa" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "In attesa di pagamento offline" @@ -1482,7 +1488,7 @@ msgstr "Pagamento attesa" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "In attesa di pagamento" @@ -1513,14 +1519,14 @@ msgstr "Torna a Account" msgid "Back to calendar" msgstr "Torna al calendario" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Torna all'evento" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Torna alla pagina dell'evento" @@ -1548,7 +1554,7 @@ msgstr "Colore di sfondo" msgid "Background Type" msgstr "Tipo di Sfondo" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "Basato sul periodo di vendita globale qui sopra, non per data" msgid "Basic Information" msgstr "Informazioni di base" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Indirizzo di Fatturazione" @@ -1599,11 +1605,11 @@ msgstr "Protezione antifrode integrata" msgid "Bulk Edit" msgstr "Modifica in blocco" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Modifica date in blocco" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "Aggiornamento in blocco non riuscito." @@ -1635,11 +1641,11 @@ msgstr "L'acquirente paga" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Gli acquirenti vedono un prezzo pulito. La commissione della piattaforma viene detratta dal tuo pagamento." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "Aggiungendo i pixel di tracciamento, riconosci che tu e questa piattaforma siete contitolari del trattamento dei dati raccolti. Sei responsabile di assicurare di avere una base giuridica per tale trattamento ai sensi delle leggi sulla privacy applicabili (GDPR, CCPA, ecc.)." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Continuando, accetti i <0>{0}Termini del servizio" @@ -1660,7 +1666,7 @@ msgstr "Registrandoti accetti i nostri <0>Termini di Servizio e la <1>Privac msgid "By ticket type" msgstr "Per tipo biglietto" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Ignora commissioni applicazione" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "Check-in non possibile" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Annulla" @@ -1729,7 +1735,7 @@ msgstr "Annulla" msgid "Cancel {count} date(s)" msgstr "Annulla {count} data/e" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Cancella tutti i prodotti e rilasciali nel pool disponibile" @@ -1743,7 +1749,7 @@ msgstr "Cancella tutti i prodotti e rilasciali nel pool disponibile" msgid "Cancel Date" msgstr "Annulla data" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "Annulla cambio email" @@ -1751,7 +1757,7 @@ msgstr "Annulla cambio email" msgid "Cancel order" msgstr "Annulla ordine" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Annulla Ordine" @@ -1759,7 +1765,7 @@ msgstr "Annulla Ordine" msgid "Cancel Order {0}" msgstr "Annulla Ordine {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "La cancellazione cancellerà tutti i partecipanti associati a questo ordine e rilascerà i biglietti nel pool disponibile." @@ -1781,7 +1787,7 @@ msgstr "Annullamento" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "Annullato" msgid "Cancelled {0} date(s)" msgstr "{0} data/e annullata/e" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "Impossibile eliminare la configurazione predefinita del sistema" @@ -1825,7 +1831,7 @@ msgstr "Gestione capacità" msgid "Capacity must be 0 or greater" msgstr "La capacità deve essere 0 o superiore" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "aggiornamenti di capacità" @@ -1833,7 +1839,7 @@ msgstr "aggiornamenti di capacità" msgid "Capacity Used" msgstr "Capacità utilizzata" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "Le categorie ti permettono di raggruppare i prodotti. Ad esempio, potresti avere una categoria per \"Biglietti\" e un'altra per \"Merchandise\"." @@ -1854,19 +1860,19 @@ msgstr "Categoria" msgid "Category Created Successfully" msgstr "Categoria Creata con Successo" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Modifica" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Modifica durata" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Cambia password" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Modifica il limite di partecipanti" @@ -1874,7 +1880,7 @@ msgstr "Modifica il limite di partecipanti" msgid "Change waitlist settings" msgstr "Modifica impostazioni lista di attesa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "Durata modificata per {count} data/e" @@ -1891,15 +1897,15 @@ msgstr "Beneficenza" msgid "Check in" msgstr "Check-in" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Registra ingresso di {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Check-in e contrassegna l'ordine come pagato" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Solo check-in" @@ -1913,7 +1919,7 @@ msgstr "Check-out" msgid "Check out this event: {0}" msgstr "Dai un'occhiata a questo evento: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Dai un'occhiata a questo evento!" @@ -1994,7 +2000,7 @@ msgstr "Liste di Check-in" msgid "Check-In Lists" msgstr "Liste di Registrazione" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Navigazione check-in" @@ -2074,11 +2080,11 @@ msgstr "Scegli un colore per lo sfondo" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Scegli un'azione diversa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Scegli un luogo salvato da applicare." @@ -2108,12 +2114,12 @@ msgstr "Scegli chi paga la commissione della piattaforma. Questo non influisce s #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Città" @@ -2122,7 +2128,7 @@ msgstr "Città" msgid "Clear" msgstr "Cancella" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Cancella luogo — usa il valore predefinito dell’evento" @@ -2134,7 +2140,7 @@ msgstr "Cancella ricerca" msgid "Clear Search Text" msgstr "Cancella Testo di Ricerca" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "La cancellazione rimuove qualsiasi sostituzione per singola sessione. Le sessioni interessate useranno il luogo predefinito dell’evento." @@ -2154,7 +2160,7 @@ msgstr "Clicca per riaprire alle nuove vendite" msgid "Click to view notes" msgstr "Clicca per visualizzare le note" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "chiudi" @@ -2162,8 +2168,8 @@ msgstr "chiudi" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Chiudi" @@ -2259,7 +2265,7 @@ msgstr "Prossimamente" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Parole chiave separate da virgole che descrivono l'evento. Queste saranno utilizzate dai motori di ricerca per aiutare a categorizzare e indicizzare l'evento" -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Preferenze di comunicazione" @@ -2267,11 +2273,11 @@ msgstr "Preferenze di comunicazione" msgid "complete" msgstr "completato" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Completa Ordine" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Completa Pagamento" @@ -2280,11 +2286,11 @@ msgstr "Completa Pagamento" msgid "Complete Stripe setup" msgstr "Completa la configurazione di Stripe" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Completa il tuo ordine per assicurarti i biglietti. Questa offerta è a tempo limitato, quindi non aspettare troppo." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Completa il pagamento per assicurarti i biglietti." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Completa il tuo profilo per unirti al team." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Completato" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Ordini completati" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Ordini Completati" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Componi" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Configurazione assegnata" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Configurazione creata con successo" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Configurazione eliminata correttamente" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "I nomi delle configurazioni sono visibili agli utenti finali. Le commissioni fisse verranno convertite nella valuta dell'ordine al tasso di cambio corrente." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Configurazione aggiornata con successo" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Configurazioni" @@ -2377,10 +2383,10 @@ msgstr "Sconto Configurato" msgid "Confirm" msgstr "Conferma" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "Conferma indirizzo email" @@ -2393,7 +2399,7 @@ msgstr "Conferma Cambio Email" msgid "Confirm new password" msgstr "Conferma la nuova password" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Conferma Nuova Password" @@ -2428,16 +2434,16 @@ msgstr "Conferma indirizzo email in corso..." msgid "Congratulations! Your event is now visible to the public." msgstr "Congratulazioni! Il tuo evento è ora visibile al pubblico." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Connect Stripe" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Connetti Stripe per abilitare la modifica dei modelli di email" @@ -2445,7 +2451,7 @@ msgstr "Connetti Stripe per abilitare la modifica dei modelli di email" msgid "Connect Stripe to enable messaging" msgstr "Connetti Stripe per abilitare la messaggistica" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Connetti con Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "Email di contatto per supporto" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Continua" @@ -2508,7 +2514,7 @@ msgstr "Testo pulsante Continua" msgid "Continue Setup" msgstr "Continua configurazione" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Procedi al pagamento" @@ -2520,7 +2526,7 @@ msgstr "Continua alla creazione dell'evento" msgid "Continue to next step" msgstr "Continua al passo successivo" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Continua al pagamento" @@ -2545,7 +2551,7 @@ msgstr "Chi entra e quando" msgid "Copied" msgstr "Copiato" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Copiato da sopra" @@ -2591,7 +2597,7 @@ msgstr "Copia codice" msgid "Copy customer link" msgstr "Copia link cliente" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Copia dettagli al primo partecipante" @@ -2609,7 +2615,7 @@ msgstr "Copia link" msgid "Copy Link" msgstr "Copia Link" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Copia i miei dati a:" @@ -2630,7 +2636,7 @@ msgstr "Copia URL" msgid "Could not delete location" msgstr "Impossibile eliminare il luogo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Impossibile preparare l’aggiornamento di massa." @@ -2652,13 +2658,17 @@ msgstr "Impossibile salvare la data" msgid "Could not save location" msgstr "Impossibile salvare il luogo" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "Paese" @@ -2671,6 +2681,10 @@ msgstr "Copertina" msgid "Cover Image" msgstr "Immagine di Copertina" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "L'immagine di copertina sarà visualizzata in cima alla pagina dell'evento" @@ -2743,7 +2757,7 @@ msgstr "crea un organizzatore" msgid "Create and configure tickets and merchandise for sale." msgstr "Crea e configura biglietti e merchandise in vendita." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Crea Partecipante" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Crea categoria" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Crea Categoria" @@ -2771,17 +2785,17 @@ msgstr "Crea Categoria" msgid "Create Check-In List" msgstr "Crea Lista di Check-In" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Crea configurazione" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Crea modelli di email personalizzati per questo evento che sostituiscono le impostazioni predefinite dell'organizzatore" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Crea Modello Personalizzato" @@ -2793,16 +2807,16 @@ msgstr "Crea data" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Crea sconti, codici di accesso per biglietti nascosti e offerte speciali." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Crea Evento" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Crea per questa data" @@ -2849,7 +2863,7 @@ msgstr "Crea Tassa o Commissione" msgid "Create Ticket or Product" msgstr "Crea biglietto o prodotto" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "Crea il tuo evento" msgid "Create your first event" msgstr "Crea il tuo primo evento" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "L'etichetta CTA è obbligatoria" msgid "Currency" msgstr "Valuta" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Password Attuale" @@ -2931,7 +2949,7 @@ msgstr "Attualmente disponibile per l'acquisto" msgid "Custom branding" msgstr "Branding personalizzato" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Data e ora personalizzate" @@ -2957,7 +2975,7 @@ msgstr "Domande personalizzate" msgid "Custom Range" msgstr "Intervallo Personalizzato" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Modello personalizzato" @@ -2970,7 +2988,7 @@ msgstr "Cliente" msgid "Customer link copied to clipboard" msgstr "Link cliente copiato negli appunti" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "Il cliente riceverà un'email di conferma del rimborso" @@ -2990,11 +3008,15 @@ msgstr "Cognome del cliente" msgid "Customers" msgstr "Clienti" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Personalizza le impostazioni di email e notifiche per questo evento" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Personalizza le email inviate ai tuoi clienti utilizzando i modelli Liquid. Questi modelli verranno utilizzati come predefiniti per tutti gli eventi nella tua organizzazione." @@ -3027,6 +3049,10 @@ msgstr "Personalizza il testo visualizzato sul pulsante continua" msgid "Customize your email template using Liquid templating" msgstr "Personalizza il tuo modello di email utilizzando i modelli Liquid" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Personalizza l'aspetto della pagina del tuo organizzatore" @@ -3079,7 +3105,7 @@ msgstr "Scuro" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Dashboard" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Data e ora" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Annullamento data" @@ -3208,12 +3234,12 @@ msgstr "Capacità predefinita per data" msgid "Default Fee Handling" msgstr "Gestione predefinita delle commissioni" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Verrà utilizzato il modello predefinito" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "elimina" @@ -3267,8 +3293,8 @@ msgstr "Elimina codice" msgid "Delete Date" msgstr "Elimina data" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Elimina evento" @@ -3285,8 +3311,8 @@ msgstr "Elimina lavoro" msgid "Delete location" msgstr "Elimina luogo" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Elimina organizzatore" @@ -3294,7 +3320,7 @@ msgstr "Elimina organizzatore" msgid "Delete Permanently" msgstr "Elimina definitivamente" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Elimina Modello" @@ -3319,7 +3345,7 @@ msgstr "{0} data/e eliminata/e" msgid "Description" msgstr "Descrizione" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "Sconto in {0}" msgid "Discount Type" msgstr "Tipo di Sconto" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Ignora" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Ignora questo messaggio" @@ -3441,7 +3467,7 @@ msgstr "Scarica CSV" msgid "Download invoice" msgstr "Scarica fattura" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Scarica Fattura" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Scarica report di vendita, partecipanti e finanziari per tutti gli ordini completati." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "Scaricamento Fattura in corso" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Bozza" @@ -3469,7 +3494,7 @@ msgstr "Bozza" msgid "Dropdown selection" msgstr "Selezione a tendina" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "A causa dell'alto rischio di spam, è necessario collegare un account Stripe prima di poter modificare i modelli di email. Questo è per garantire che tutti gli organizzatori di eventi siano verificati e responsabili." @@ -3490,7 +3515,7 @@ msgstr "Duplica" msgid "Duplicate Date" msgstr "Duplica data" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Duplica evento" @@ -3508,7 +3533,7 @@ msgstr "Opzioni di Duplicazione" msgid "Duplicate Product" msgstr "Duplica Prodotto" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "La durata deve essere di almeno 1 minuto." @@ -3520,7 +3545,7 @@ msgstr "Olandese" msgid "e.g. 180 (3 hours)" msgstr "es. 180 (3 ore)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "es. Sessione mattutina" msgid "e.g., Get Tickets, Register Now" msgstr "es., Acquista biglietti, Registrati ora" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "ad esempio, Aggiornamento importante sui tuoi biglietti" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "ad esempio, Standard, Premium, Enterprise" @@ -3542,7 +3567,7 @@ msgstr "ad esempio, Standard, Premium, Enterprise" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Ogni persona riceverà un'e-mail con un posto riservato per completare l'acquisto." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Prima" @@ -3611,7 +3636,7 @@ msgstr "Modifica Lista di Check-In" msgid "Edit Code" msgstr "Modifica Codice" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Modifica configurazione" @@ -3659,8 +3684,8 @@ msgstr "Modifica Domanda" msgid "Edit user" msgstr "Modifica utente" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Modifica Utente" @@ -3708,7 +3733,7 @@ msgstr "Liste Check-In Idonee" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Liste Check-In Idonee" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "Email" @@ -3743,10 +3768,10 @@ msgstr "Email e Modelli" msgid "Email address" msgstr "Indirizzo email" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "Indirizzo Email" @@ -3755,8 +3780,8 @@ msgstr "Indirizzo Email" msgid "Email address copied to clipboard" msgstr "Indirizzo email copiato negli appunti" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "Gli indirizzi email non corrispondono" @@ -3764,21 +3789,21 @@ msgstr "Gli indirizzi email non corrispondono" msgid "Email Body" msgstr "Corpo Email" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "Modifica email annullata con successo" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "Modifica email in attesa" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "Conferma email inviata nuovamente" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "Conferma email inviata nuovamente con successo" @@ -3792,7 +3817,7 @@ msgstr "Messaggio piè di pagina email" msgid "Email is required" msgstr "L'email è obbligatoria" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "Email non verificata" @@ -3800,7 +3825,7 @@ msgstr "Email non verificata" msgid "Email Preview" msgstr "Anteprima Email" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "Modelli Email" @@ -3809,6 +3834,10 @@ msgstr "Modelli Email" msgid "Email Verification Required" msgstr "Verifica email richiesta" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "Email verificata con successo!" @@ -3897,12 +3926,11 @@ msgstr "Ora di fine (facoltativo)" msgid "End time of the occurrence" msgstr "Orario di fine della sessione" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Terminato" @@ -3920,11 +3948,11 @@ msgstr "Termina {0}" msgid "English" msgstr "Inglese" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Inserisci un valore di capacità o scegli illimitato." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Inserisci un'etichetta o scegli di rimuoverla." @@ -3932,7 +3960,7 @@ msgstr "Inserisci un'etichetta o scegli di rimuoverla." msgid "Enter a subject and body to see the preview" msgstr "Inserisci un oggetto e un corpo per vedere l'anteprima" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Inserisci di quanto spostare l'orario." @@ -3949,11 +3977,11 @@ msgstr "Inserisci email affiliato (facoltativo)" msgid "Enter affiliate name" msgstr "Inserisci nome affiliato" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Inserisci un importo escluse tasse e commissioni." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Inserisci la capacità" @@ -3998,7 +4026,7 @@ msgstr "Inserisci la tua email e ti invieremo le istruzioni per reimpostare la p msgid "Enter your name" msgstr "Inserisci il tuo nome" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Inserisci il tuo numero di partita IVA, incluso il codice del paese, senza spazi (ad esempio, IE1234567A, DE123456789)" @@ -4012,7 +4040,7 @@ msgstr "Le iscrizioni appariranno qui quando i clienti si uniranno alla lista d' #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Errore" @@ -4074,7 +4102,7 @@ msgstr "Evento" msgid "Event Archived" msgstr "Evento archiviato" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Evento archiviato con successo" @@ -4086,7 +4114,7 @@ msgstr "Categoria evento" msgid "Event Cover Image" msgstr "Immagine di copertina evento" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4094,7 +4122,7 @@ msgstr "" msgid "Event Created" msgstr "Evento creato" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Modello personalizzato evento" @@ -4113,7 +4141,7 @@ msgstr "Data dell'Evento" msgid "Event Defaults" msgstr "Impostazioni Predefinite Evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Evento eliminato con successo" @@ -4145,10 +4173,14 @@ msgstr "Evento duplicato con successo" msgid "Event Full Address" msgstr "Indirizzo Completo dell'Evento" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Homepage Evento" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Luogo Evento" @@ -4188,7 +4220,7 @@ msgstr "Nome organizzatore evento" msgid "Event Page" msgstr "Pagina dell'evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Evento ripristinato con successo" @@ -4197,17 +4229,17 @@ msgstr "Evento ripristinato con successo" msgid "Event Settings" msgstr "Impostazioni evento" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Aggiornamento stato evento fallito. Riprova più tardi" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Stato evento aggiornato" @@ -4240,7 +4272,7 @@ msgstr "Titolo dell'evento" msgid "Event Too New" msgstr "Evento troppo recente" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Totali evento" @@ -4405,7 +4437,7 @@ msgstr "Non riuscito il" msgid "Failed Jobs" msgstr "Lavori non riusciti" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "Impossibile abbandonare l'ordine. Riprova." @@ -4439,7 +4471,7 @@ msgstr "Impossibile annullare l'ordine" msgid "Failed to create affiliate" msgstr "Creazione affiliato non riuscita" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Impossibile creare la configurazione" @@ -4447,12 +4479,12 @@ msgstr "Impossibile creare la configurazione" msgid "Failed to create schedule" msgstr "Impossibile creare la programmazione" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Impossibile creare il modello" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Impossibile eliminare la configurazione" @@ -4470,7 +4502,7 @@ msgstr "Impossibile eliminare la data. Potrebbe avere ordini esistenti." msgid "Failed to delete dates" msgstr "Impossibile eliminare le date" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Impossibile eliminare l'evento" @@ -4482,7 +4514,7 @@ msgstr "Impossibile eliminare il lavoro" msgid "Failed to delete jobs" msgstr "Impossibile eliminare i lavori" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Impossibile eliminare l'organizzatore" @@ -4490,13 +4522,13 @@ msgstr "Impossibile eliminare l'organizzatore" msgid "Failed to delete question" msgstr "Impossibile eliminare la domanda" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Impossibile eliminare il modello" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Impossibile scaricare la fattura. Riprova." @@ -4594,14 +4626,14 @@ msgstr "Impossibile salvare la sostituzione del prezzo" msgid "Failed to save product settings" msgstr "Impossibile salvare le impostazioni del prodotto" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Impossibile salvare il modello" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Impossibile salvare le impostazioni IVA. Riprova." @@ -4639,11 +4671,11 @@ msgstr "Impossibile aggiornare la risposta." msgid "Failed to update attendee" msgstr "Impossibile aggiornare il partecipante" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Impossibile aggiornare la configurazione" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Impossibile aggiornare lo stato dell'evento" @@ -4655,7 +4687,7 @@ msgstr "Aggiornamento del livello di messaggistica fallito" msgid "Failed to update order" msgstr "Impossibile aggiornare l'ordine" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Impossibile aggiornare lo stato dell'organizzatore" @@ -4701,7 +4733,7 @@ msgstr "Febbraio" msgid "Fee" msgstr "Commissione" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Valuta della commissione" @@ -4720,7 +4752,7 @@ msgstr "" msgid "Fees" msgstr "Commissioni" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Commissioni ignorate" @@ -4732,8 +4764,8 @@ msgstr "Festival" msgid "File is too large. Maximum size is 5MB." msgstr "Il file è troppo grande. La dimensione massima è 5 MB." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Compila prima i tuoi dati sopra" @@ -4754,7 +4786,7 @@ msgstr "Filtra Partecipanti" msgid "Filter by date" msgstr "Filtra per data" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Filtra per evento" @@ -4775,19 +4807,27 @@ msgstr "Filtri ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Termina la configurazione di Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "Primo" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "Primo partecipante" @@ -4798,22 +4838,22 @@ msgstr "Primo Numero Fattura" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Nome" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Nome" @@ -4843,16 +4883,16 @@ msgstr "Importo fisso" msgid "Fixed fee" msgstr "Commissione fissa" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Tariffa fissa" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Commissione fissa applicata per transazione" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "La tariffa fissa deve essere pari o superiore a 0" @@ -4923,7 +4963,11 @@ msgstr "Venerdì" msgid "Full data ownership" msgstr "Piena proprietà dei dati" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Rimborso completo" @@ -4931,11 +4975,11 @@ msgstr "Rimborso completo" msgid "Full resolved address" msgstr "Indirizzo completo risolto" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "futuro" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Solo date future" @@ -4992,7 +5036,7 @@ msgstr "Iniziare" msgid "Get Tickets" msgstr "Ottieni i biglietti" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Prepara il tuo evento" @@ -5013,7 +5057,7 @@ msgstr "Torna indietro" msgid "Go back to profile" msgstr "Torna al profilo" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Vai alla pagina dell'evento" @@ -5037,7 +5081,7 @@ msgstr "Google Calendar" msgid "Got it" msgstr "Capito" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Ricavi lordi" @@ -5045,22 +5089,22 @@ msgstr "Ricavi lordi" msgid "Gross Revenue" msgstr "Ricavi Lordi" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Vendite lorde" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Vendite lorde" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5077,7 +5121,7 @@ msgstr "Ospiti" msgid "Happening now" msgstr "In corso ora" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Hai un codice promozionale?" @@ -5106,7 +5150,7 @@ msgstr "Ecco il componente React che puoi usare per incorporare il widget nella msgid "Here is your affiliate link" msgstr "Ecco il tuo link affiliato" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Ciao {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Nascosto dalla vista pubblica" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "Le domande nascoste sono visibili solo all'organizzatore dell'evento e non al cliente." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Nascondi" @@ -5239,8 +5283,8 @@ msgstr "Anteprima Homepage" msgid "Homer" msgstr "Homer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Ore" @@ -5269,11 +5313,11 @@ msgstr "Con quale frequenza?" msgid "How to pay offline" msgstr "Come pagare offline" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "Come viene applicata l'IVA alle commissioni della piattaforma che ti vengono addebitate." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "Limite di caratteri HTML superato: {htmlLength}/{maxLength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Ungherese" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Riconosco le mie responsabilità in qualità di titolare del trattamento dei dati" @@ -5305,11 +5349,11 @@ msgstr "Accetto di ricevere notifiche via email relative a questo evento" msgid "I agree to the <0>terms and conditions" msgstr "Accetto i <0>termini e condizioni" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Confermo che questo è un messaggio transazionale relativo a questo evento" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Se una nuova scheda non si è aperta automaticamente, clicca sul pulsante qui sotto per procedere al pagamento." @@ -5325,7 +5369,7 @@ msgstr "Se abilitato, il personale di check-in può sia segnare i partecipanti c msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Se abilitato, l'organizzatore riceverà una notifica via email quando viene effettuato un nuovo ordine" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Se non hai richiesto questa modifica, cambia immediatamente la tua password." @@ -5370,11 +5414,11 @@ msgstr "Impersonificazione avviata" msgid "Impersonation stopped" msgstr "Impersonificazione interrotta" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Avviso importante" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Importante: La modifica dell'indirizzo e-mail aggiornerà il link per accedere a questo ordine. Verrai reindirizzato al nuovo link dell'ordine dopo il salvataggio." @@ -5390,7 +5434,7 @@ msgstr "Tra {diffMinutes} minuti" msgid "in last {0} min" msgstr "negli ultimi {0} min" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "In presenza — imposta un luogo" @@ -5401,15 +5445,15 @@ msgstr "in presenza, online, non impostato o misto" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Inattivo" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Gli utenti inattivi non possono accedere." @@ -5483,12 +5527,12 @@ msgstr "Formato email non valido" msgid "Invalid file type. Please upload an image." msgstr "Tipo di file non valido. Carica un'immagine." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Sintassi Liquid non valida. Correggila e riprova." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Formato del numero di partita IVA non valido" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Fattura" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Fattura scaricata con successo" @@ -5545,7 +5589,7 @@ msgstr "Impostazioni Fattura" msgid "Italian" msgstr "Italiano" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Articolo" @@ -5628,7 +5672,7 @@ msgstr "adesso" msgid "Just wrapped" msgstr "Appena concluso" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Tienimi aggiornato sulle novità e gli eventi di {0}" @@ -5647,13 +5691,13 @@ msgstr "Etichetta" msgid "Label for the occurrence" msgstr "Etichetta per la sessione" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "aggiornamenti dell'etichetta" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Lingua" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "Ultime 24 ore" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "Ultimi 30 giorni" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "Ultimi 6 mesi" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "Ultimi 7 giorni" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "Ultimi 90 giorni" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Cognome" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Cognome" @@ -5753,7 +5797,7 @@ msgstr "Ultimo Attivato" msgid "Last Used" msgstr "Ultimo Utilizzo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Dopo" @@ -5786,7 +5830,7 @@ msgstr "Lascia attivo per coprire tutti i biglietti dell'evento. Disattiva per s msgid "Let them know about the change" msgstr "Avvisali del cambiamento" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Avvisali dei cambiamenti" @@ -5830,12 +5874,11 @@ msgstr "Elenco" msgid "List view" msgstr "Vista elenco" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "Online" @@ -5848,7 +5891,7 @@ msgstr "LIVE" msgid "Live Events" msgstr "Eventi in Diretta" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Date caricate" @@ -5872,8 +5915,8 @@ msgstr "Caricamento Webhooks" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Caricamento..." @@ -5926,7 +5969,7 @@ msgstr "Luogo salvato" msgid "Location updated" msgstr "Luogo aggiornato" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "aggiornamenti del luogo" @@ -5990,7 +6033,7 @@ msgstr "Sede principale" msgid "Make billing address mandatory during checkout" msgstr "Rendi obbligatorio l'indirizzo di fatturazione durante il checkout" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "Gestisci partecipante" msgid "Manage dates and times for your recurring event" msgstr "Gestisci date e orari per il tuo evento ricorrente" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Gestisci evento" @@ -6039,10 +6082,14 @@ msgstr "Gestisci ordine" msgid "Manage payment and invoicing settings for this event." msgstr "Gestisci le impostazioni di pagamento e fatturazione per questo evento." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Gestisci Profilo" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Gestisci programmazione" @@ -6124,7 +6171,7 @@ msgstr "Mezzo" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Messaggio" @@ -6141,7 +6188,7 @@ msgstr "Messaggio al partecipante" msgid "Message Attendees" msgstr "Messaggio ai Partecipanti" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Invia messaggio ai partecipanti con biglietti specifici" @@ -6165,7 +6212,7 @@ msgstr "Contenuto del messaggio" msgid "Message Details" msgstr "Dettagli del messaggio" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Invia messaggio ai singoli partecipanti" @@ -6173,15 +6220,15 @@ msgstr "Invia messaggio ai singoli partecipanti" msgid "Message is required" msgstr "Il messaggio è obbligatorio" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Invia messaggio ai proprietari degli ordini con prodotti specifici" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Messaggio programmato" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Messaggio Inviato" @@ -6212,8 +6259,8 @@ msgstr "Prezzo Minimo" msgid "minutes" msgstr "minuti" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Minuti" @@ -6229,7 +6276,7 @@ msgstr "Impostazioni Varie" msgid "Mo" msgstr "Lun" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Modalità" @@ -6282,7 +6329,7 @@ msgstr "Altre azioni" msgid "Most Viewed Events (Last 14 Days)" msgstr "Eventi più visti (Ultimi 14 giorni)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Sposta tutte le date prima o dopo" @@ -6290,7 +6337,7 @@ msgstr "Sposta tutte le date prima o dopo" msgid "Multi line text box" msgstr "Casella di testo multilinea" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Nome" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "Il nome è obbligatorio" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "Il nome deve contenere meno di 255 caratteri" @@ -6384,21 +6431,21 @@ msgstr "Ricavi Netti" msgid "Never" msgstr "Mai" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Nuova capacità" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Nuova etichetta" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Nuovo luogo" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "Nuova Password" @@ -6426,7 +6473,7 @@ msgstr "Vita notturna" msgid "No" msgstr "No" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "No - Sono un privato o un'azienda non registrata IVA" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "Nessuna Assegnazione di Capacità" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "Nessuna lista di check-in disponibile per questo evento." msgid "No check-ins yet" msgstr "Ancora nessun check-in" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "Nessuna configurazione trovata" @@ -6537,7 +6584,7 @@ msgstr "Nessuna lista di check-in specifica per la data" msgid "No dates available this month. Try navigating to another month." msgstr "Nessuna data disponibile in questo mese. Prova a navigare verso un altro mese." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "Nessuna data corrisponde ai filtri attuali." @@ -6582,8 +6629,8 @@ msgstr "Nessun evento in programma nelle prossime 24 ore" msgid "No events to show" msgstr "Nessun evento da mostrare" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "Nessun ordine trovato" msgid "No orders to show" msgstr "Nessun ordine da mostrare" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "Ancora nessun ordine per questa data." msgid "No organizer activity in the last 14 days" msgstr "Nessuna attività dell'organizzatore negli ultimi 14 giorni" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "Nessun contesto organizzatore disponibile." @@ -6733,7 +6780,7 @@ msgstr "Ancora nessuna risposta" msgid "No results" msgstr "Nessun risultato" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Nessun luogo salvato" @@ -6793,16 +6840,16 @@ msgstr "Nessun evento webhook è stato registrato per questo endpoint. Gli event msgid "No Webhooks" msgstr "Nessun Webhook" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "No, rimani qui" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "non modificate" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Nessuno" @@ -6870,7 +6917,7 @@ msgstr "Prefisso Numero" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Sessione" @@ -7005,7 +7052,7 @@ msgstr "Informazioni sui Pagamenti Offline" msgid "Offline Payments Settings" msgstr "Impostazioni Pagamenti Offline" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "Una volta che inizi a raccogliere dati, li vedrai qui." msgid "Ongoing" msgstr "In Corso" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "In Corso" msgid "Online" msgstr "Online" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "Online — fornisci i dettagli di connessione" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Online e in presenza" @@ -7070,15 +7117,15 @@ msgstr "Dettagli di connessione dell'evento online" msgid "Online Event Details" msgstr "Dettagli Evento Online" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Solo gli amministratori dell'account possono eliminare o archiviare eventi. Contatta l'amministratore del tuo account per assistenza." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Solo gli amministratori dell'account possono eliminare o archiviare organizzatori. Contatta l'amministratore del tuo account per assistenza." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Invia solo agli ordini con questi stati" @@ -7173,7 +7220,7 @@ msgstr "Ordine & biglietto" msgid "Order #" msgstr "Ordine n." -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Ordine annullato" @@ -7182,13 +7229,13 @@ msgstr "Ordine annullato" msgid "Order Cancelled" msgstr "Ordine Annullato" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Ordine completato" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Conferma Ordine" @@ -7273,7 +7320,7 @@ msgstr "Ordine contrassegnato come pagato" msgid "Order Marked as Paid" msgstr "Ordine Contrassegnato come Pagato" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Ordine non trovato" @@ -7297,7 +7344,7 @@ msgstr "Numero ordine, data, email dell'acquirente" msgid "Order owner" msgstr "Proprietario ordine" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Proprietari di ordini con un prodotto specifico" @@ -7327,7 +7374,7 @@ msgstr "Ordine Rimborsato" msgid "Order Status" msgstr "Stato Ordine" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Stati ordine" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Timeout ordine" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Totale Ordine" @@ -7357,7 +7404,7 @@ msgstr "Ordine aggiornato con successo" msgid "Order URL" msgstr "URL Ordine" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "L'ordine è stato annullato" @@ -7374,8 +7421,8 @@ msgstr "ordini" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Nome Organizzazione" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Nome Organizzazione" msgid "Organizer" msgstr "Organizzatore" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Organizzatore archiviato con successo" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Dashboard organizzatore" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Organizzatore eliminato con successo" @@ -7486,7 +7533,7 @@ msgstr "Nome Organizzatore" msgid "Organizer Not Found" msgstr "Organizzatore non trovato" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Organizzatore ripristinato con successo" @@ -7504,7 +7551,7 @@ msgstr "Aggiornamento dello stato dell'organizzatore non riuscito. Riprova più msgid "Organizer status updated" msgstr "Stato dell'organizzatore aggiornato" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Verrà utilizzato il modello dell'organizzatore/predefinito" @@ -7512,7 +7559,7 @@ msgstr "Verrà utilizzato il modello dell'organizzatore/predefinito" msgid "Organizers" msgstr "Organizzatori" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Gli organizzatori possono gestire solo eventi e prodotti. Non possono gestire utenti, impostazioni dell'account o informazioni di fatturazione." @@ -7563,7 +7610,7 @@ msgstr "Spaziatura interna" msgid "Page" msgstr "Pagina" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Pagina non più disponibile" @@ -7575,7 +7622,7 @@ msgstr "Pagina non trovata" msgid "Page URL" msgstr "URL della pagina" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Visualizzazioni pagina" @@ -7583,11 +7630,11 @@ msgstr "Visualizzazioni pagina" msgid "Page Views" msgstr "Visualizzazioni pagina" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "pagato" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "Account a pagamento" msgid "Paid Product" msgstr "Prodotto a Pagamento" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Rimborso parziale" @@ -7623,7 +7670,7 @@ msgstr "Trasferisci all'acquirente" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Password" @@ -7694,7 +7741,7 @@ msgstr "Payload" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Pagamento" @@ -7735,7 +7782,7 @@ msgstr "Metodi di Pagamento" msgid "Payment provider" msgstr "Fornitore di pagamento" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Pagamento ricevuto" @@ -7747,7 +7794,7 @@ msgstr "Pagamento Ricevuto" msgid "Payment Status" msgstr "Stato Pagamento" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "Pagamento riuscito!" @@ -7761,11 +7808,11 @@ msgstr "Pagamenti non disponibili" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Versamenti" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "In attesa" @@ -7801,8 +7848,8 @@ msgstr "Percentuale" msgid "Percentage Amount" msgstr "Importo Percentuale" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "percentuale Commissione" @@ -7810,11 +7857,11 @@ msgstr "percentuale Commissione" msgid "Percentage fee (%)" msgstr "Commissione percentuale (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "La percentuale deve essere compresa tra 0 e 100" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Percentuale dell'importo della transazione" @@ -7822,11 +7869,11 @@ msgstr "Percentuale dell'importo della transazione" msgid "Performance" msgstr "Prestazione" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Elimina definitivamente questo evento e tutti i dati associati." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Elimina definitivamente questo organizzatore e tutti i suoi eventi." @@ -7834,7 +7881,7 @@ msgstr "Elimina definitivamente questo organizzatore e tutti i suoi eventi." msgid "Permanently remove this date" msgstr "Rimuovi definitivamente questa data" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Informazioni personali" @@ -7842,7 +7889,7 @@ msgstr "Informazioni personali" msgid "Phone" msgstr "Telefono" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Scegli un luogo" @@ -7892,7 +7939,7 @@ msgstr "Commissione piattaforma di {0} detratta dal tuo pagamento" msgid "Platform Fees" msgstr "Commissioni piattaforma" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Report commissioni piattaforma" @@ -7918,7 +7965,7 @@ msgstr "Controlla la tua email e password e riprova" msgid "Please check your email is valid" msgstr "Verifica che la tua email sia valida" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Controlla la tua email per confermare il tuo indirizzo email" @@ -7926,7 +7973,7 @@ msgstr "Controlla la tua email per confermare il tuo indirizzo email" msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Controlla il tuo biglietto per il nuovo orario. I tuoi biglietti sono ancora validi — non è necessaria alcuna azione, a meno che i nuovi orari non ti vadano bene. Rispondi a questa email per qualsiasi domanda." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Continua nella nuova scheda" @@ -7955,7 +8002,7 @@ msgstr "Inserisci un URL valido" msgid "Please enter the 5-digit code" msgstr "Inserisci il codice a 5 cifre" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Inserisci il tuo numero di partita IVA" @@ -7971,11 +8018,11 @@ msgstr "Per favore, fornisci un'immagine." msgid "Please restart the checkout process." msgstr "Riavvia il processo di acquisto." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Torna alla pagina dell'evento per ricominciare." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Seleziona una data e un orario" @@ -7987,7 +8034,7 @@ msgstr "Seleziona un intervallo di date" msgid "Please select an image." msgstr "Per favore, seleziona un'immagine." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Seleziona almeno un prodotto" @@ -7998,7 +8045,7 @@ msgstr "Seleziona almeno un prodotto" msgid "Please try again." msgstr "Riprova." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Verifica il tuo indirizzo email per accedere a tutte le funzionalità" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Attendi mentre prepariamo i tuoi partecipanti per l'esportazione..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Attendi mentre prepariamo la tua fattura..." @@ -8124,7 +8171,7 @@ msgstr "Anteprima di Stampa" msgid "Print Ticket" msgstr "Stampa biglietto" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Stampa Biglietti" @@ -8139,7 +8186,7 @@ msgstr "Stampa in PDF" msgid "Privacy Policy" msgstr "Informativa sulla privacy" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Elabora rimborso" @@ -8180,7 +8227,7 @@ msgstr "Prodotto eliminato con successo" msgid "Product Price Type" msgstr "Tipo di Prezzo Prodotto" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Prodotto/i" msgid "Products" msgstr "Prodotti" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Prodotti venduti" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Prodotti Venduti" msgid "Products sorted successfully" msgstr "Prodotti ordinati con successo" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Profilo" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Profilo aggiornato con successo" @@ -8251,7 +8298,7 @@ msgstr "Profilo aggiornato con successo" msgid "Progress" msgstr "Avanzamento" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Codice promo {promo_code} applicato" @@ -8298,7 +8345,7 @@ msgstr "Report Codici Promo" msgid "Promo Only" msgstr "Solo promo" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "Le email promozionali potrebbero comportare la sospensione dell'account" @@ -8310,11 +8357,11 @@ msgstr "" "Fornisci ulteriore contesto o istruzioni per questa domanda. Usa questo campo per aggiungere termini\n" "e condizioni, linee guida o qualsiasi informazione importante che i partecipanti devono conoscere prima di rispondere." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Inserisci almeno un campo dell’indirizzo per il nuovo luogo." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Fornisci queste informazioni prima del prossimo controllo di Stripe per non interrompere i pagamenti." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Provider" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Pubblica" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "Analisi in tempo reale" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Ricevi aggiornamenti sui prodotti da {0}." @@ -8439,6 +8486,10 @@ msgstr "Ricevi aggiornamenti sui prodotti da {0}." msgid "Recent Account Signups" msgstr "Iscrizioni recenti" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Partecipanti recenti" @@ -8447,7 +8498,7 @@ msgstr "Partecipanti recenti" msgid "Recent check-ins" msgstr "Ultimi check-in" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "Ordini recenti" msgid "recipient" msgstr "destinatario" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Destinatario" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "destinatari" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Destinatari" msgid "Recipients are available after the message is sent" msgstr "I destinatari sono disponibili dopo l'invio del messaggio" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Ricorrente" @@ -8517,7 +8569,7 @@ msgstr "Rimborsa tutti gli ordini per queste date" msgid "Refund all orders for this date" msgstr "Rimborsa tutti gli ordini per questa data" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Importo rimborso" @@ -8537,7 +8589,7 @@ msgstr "Rimborso emesso" msgid "Refund order" msgstr "Rimborsa ordine" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Rimborsa ordine {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "Stato Rimborso" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Rimborsato" @@ -8571,7 +8623,7 @@ msgstr "Rimborsato: {0}" msgid "Refunds" msgstr "Rimborsi" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Impostazioni regionali" @@ -8598,18 +8650,18 @@ msgstr "Utilizzi Rimanenti" msgid "Reminder scheduled" msgstr "Promemoria programmato" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "rimuovi" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Rimuovi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Rimuovi etichetta da tutte le date" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Invia nuovamente l'email di conferma" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "Invia nuovamente l'email" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "Reinvia conferma email" @@ -8688,7 +8741,7 @@ msgstr "Reinvia biglietto" msgid "Resend ticket email" msgstr "Reinvia e-mail del biglietto" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Reinvio in corso..." @@ -8729,30 +8782,30 @@ msgstr "Risposta" msgid "Response Details" msgstr "Dettagli della risposta" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Ripristina" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Ripristina evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Ripristina evento" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Ripristina organizzatore" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Ripristina questo evento per renderlo nuovamente visibile." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Ripristina questo organizzatore e rendilo nuovamente attivo." @@ -8777,7 +8830,7 @@ msgstr "Riprova lavoro" msgid "Return to Event" msgstr "Torna all'evento" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Torna alla Pagina dell'Evento" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Riutilizza una connessione Stripe di un altro organizzatore di questo account." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Ricavi" @@ -8818,7 +8872,7 @@ msgstr "Revoca invito" msgid "Revoke Offer" msgstr "Revoca l'offerta" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Inizio vendita {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Vendite" @@ -8930,7 +8984,7 @@ msgstr "Sabato" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Sabato" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Salva" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Salva Design del Biglietto" msgid "Save VAT settings" msgstr "Salva impostazioni IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "Salva impostazioni IVA" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Luogo salvato" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Luoghi salvati" @@ -9015,7 +9069,7 @@ msgstr "Luoghi salvati" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "Salvando una sostituzione viene creata una configurazione dedicata per questo organizzatore, se al momento è impostato sul valore predefinito di sistema." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Scansiona" @@ -9035,6 +9089,10 @@ msgstr "Modalità scanner" msgid "Schedule" msgstr "Programmazione" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Programmazione creata con successo" @@ -9043,11 +9101,11 @@ msgstr "Programmazione creata con successo" msgid "Schedule ends on" msgstr "La programmazione termina il" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Programma per dopo" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Programma messaggio" @@ -9061,11 +9119,11 @@ msgstr "La pianificazione inizia il" msgid "Scheduled" msgstr "Programmata" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Orario programmato" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Cerca" @@ -9228,11 +9286,11 @@ msgstr "Seleziona tutto" msgid "Select all on {0}" msgstr "Seleziona tutto il {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Seleziona un evento" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Seleziona il gruppo di partecipanti" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Seleziona Livello Prodotto" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Seleziona prodotti" @@ -9298,7 +9356,7 @@ msgstr "Seleziona data e ora di inizio" msgid "Select start time" msgstr "Seleziona ora di inizio" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Seleziona stato" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Seleziona Biglietto" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Seleziona biglietti" @@ -9325,7 +9383,7 @@ msgstr "Seleziona periodo di tempo" msgid "Select timezone" msgstr "Seleziona fuso orario" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Seleziona quali partecipanti devono ricevere questo messaggio" @@ -9359,11 +9417,11 @@ msgstr "Si vende velocemente 🔥" msgid "Send" msgstr "Invia" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Invia un messaggio" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Invia come prova" @@ -9371,20 +9429,20 @@ msgstr "Invia come prova" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "Invia email ai partecipanti, ai possessori di biglietti o ai titolari di ordini. I messaggi possono essere inviati immediatamente o programmati per un secondo momento." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Inviami una copia" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Invia Messaggio" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Invia ora" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Invia email di conferma ordine e biglietto" @@ -9392,7 +9450,7 @@ msgstr "Invia email di conferma ordine e biglietto" msgid "Send real-time order and attendee data to your external systems." msgstr "Invia dati di ordini e partecipanti in tempo reale ai tuoi sistemi esterni." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Invia email di notifica rimborso" @@ -9400,11 +9458,11 @@ msgstr "Invia email di notifica rimborso" msgid "Send reset link" msgstr "Invia link di reimpostazione" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Invia Test" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Invia a tutte le sessioni o scegline una specifica" @@ -9429,15 +9487,15 @@ msgstr "Inviato" msgid "Sent By" msgstr "Inviato da" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Inviato ai partecipanti quando una data programmata viene annullata" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Inviato ai clienti quando effettuano un ordine" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Inviato a ogni partecipante con i dettagli del biglietto" @@ -9490,7 +9548,7 @@ msgstr "Imposta le impostazioni predefinite delle commissioni della piattaforma msgid "Set default settings for new events created under this organizer." msgstr "Imposta le impostazioni predefinite per i nuovi eventi creati con questo organizzatore." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Imposta la durata di ciascuna data" @@ -9498,11 +9556,11 @@ msgstr "Imposta la durata di ciascuna data" msgid "Set number of dates" msgstr "Imposta il numero di date" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Imposta o rimuovi l'etichetta della data" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Imposta l'orario di fine di ciascuna data in modo che sia successivo all'orario di inizio di questa durata." @@ -9510,7 +9568,7 @@ msgstr "Imposta l'orario di fine di ciascuna data in modo che sia successivo all msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Imposta il numero iniziale per la numerazione delle fatture. Questo non può essere modificato una volta che le fatture sono state generate." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Imposta a illimitato (rimuovi limite)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Configura liste di check-in per diversi ingressi, sessioni o giorni." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Configura i versamenti" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Configura programmazione" msgid "Set up your organization" msgstr "Configura la tua organizzazione" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Configura la tua programmazione" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Imposta, modifica o rimuovi il luogo o i dettagli online della sessione" @@ -9599,11 +9665,11 @@ msgstr "Condividi pagina dell'organizzatore" msgid "Shared Capacity Management" msgstr "Gestione capacità condivisa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Sposta orari" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "Orari spostati per {count} data/e" @@ -9635,8 +9701,8 @@ msgstr "Mostra casella di opt-in marketing" msgid "Show marketing opt-in checkbox by default" msgstr "Mostra casella di opt-in marketing per impostazione predefinita" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Mostra altro" @@ -9673,7 +9739,7 @@ msgstr "Visualizzazione {0}–{1} di {2}" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "Visualizzazione di {MAX_VISIBLE} su {totalAvailable} date. Digita per cercare." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "Visualizzazione delle prime {0} — le restanti {1} sessione/i verranno comunque incluse all'invio del messaggio." @@ -9710,7 +9776,7 @@ msgstr "Evento singolo" msgid "Single line text box" msgstr "Casella di testo a riga singola" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Salta le date modificate manualmente" @@ -9745,7 +9811,7 @@ msgstr "Link social e sito web" msgid "Sold" msgstr "Venduto" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Alcuni dettagli sono nascosti all'accesso pubblico. Accedi per vedere tu #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Qualcosa è andato storto" @@ -9784,7 +9850,7 @@ msgstr "Qualcosa è andato storto, riprova o contatta l'assistenza se il problem msgid "Something went wrong! Please try again" msgstr "Qualcosa è andato storto! Riprova" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Qualcosa è andato storto." @@ -9796,12 +9862,12 @@ msgstr "Qualcosa è andato storto. Riprova più tardi." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Qualcosa è andato storto. Riprova." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Spiacenti, questo codice promo non è riconosciuto" @@ -9897,12 +9963,12 @@ msgstr "Inizia domani" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "Stato o Regione" @@ -9914,7 +9980,7 @@ msgstr "Statistiche" msgid "Statistics are based on account creation date" msgstr "Le statistiche si basano sulla data di creazione dell'account" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Statistiche" @@ -9931,7 +9997,7 @@ msgstr "Statistiche" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "ID pagamento Stripe" msgid "Stripe payments are not enabled for this event." msgstr "I pagamenti Stripe non sono abilitati per questo evento." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Presto Stripe avrà bisogno di altri dettagli" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "Dom" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "L'oggetto è obbligatorio" msgid "Subject will appear here" msgstr "L'oggetto apparirà qui" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Oggetto:" @@ -10024,11 +10090,11 @@ msgstr "Subtotale" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Successo" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Successo! {0} riceverà un'email a breve." @@ -10173,7 +10239,7 @@ msgstr "Impostazioni aggiornate con successo" msgid "Successfully Updated Social Links" msgstr "Link social aggiornati con successo" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Impostazioni di tracciamento aggiornate con successo" @@ -10226,7 +10292,7 @@ msgstr "Svedese" msgid "Switch Organizer" msgstr "Cambia organizzatore" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Predefinito del sistema" @@ -10238,7 +10304,7 @@ msgstr "T-shirt" msgid "Tap this screen to resume scanning" msgstr "Tocca lo schermo per riprendere" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "Stai contattando i partecipanti di {0} sessioni selezionate." @@ -10336,7 +10402,7 @@ msgstr "Parlaci della tua organizzazione. Queste informazioni saranno visualizza msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Indicaci con quale frequenza si ripete il tuo evento e creeremo tutte le date al posto tuo." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Indicaci il tuo stato di registrazione IVA per applicare il corretto trattamento IVA alle commissioni della piattaforma." @@ -10344,15 +10410,15 @@ msgstr "Indicaci il tuo stato di registrazione IVA per applicare il corretto tra msgid "Template Active" msgstr "Modello Attivo" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Modello creato con successo" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Modello eliminato con successo" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Modello salvato con successo" @@ -10378,8 +10444,8 @@ msgstr "Grazie per aver partecipato!" msgid "Thanks," msgstr "Grazie," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Quel codice promo non è valido" @@ -10399,7 +10465,7 @@ msgstr "La lista di check-in che stai cercando non esiste." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "Il codice scadrà tra 10 minuti. Controlla la cartella spam se non vedi l'email." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "La valuta in cui è definita la commissione fissa. Verrà convertita nella valuta dell'ordine al momento del pagamento." @@ -10417,7 +10483,7 @@ msgstr "La valuta predefinita per i tuoi eventi." msgid "The default timezone for your events." msgstr "Il fuso orario predefinito per i tuoi eventi." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "L'indirizzo e-mail è stato modificato. Il partecipante riceverà un nuovo biglietto all'indirizzo e-mail aggiornato." @@ -10442,7 +10508,7 @@ msgstr "La prima data dalla quale verrà generata questa pianificazione." msgid "The full event address" msgstr "L'indirizzo completo dell'evento" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "L'importo completo dell'ordine sarà rimborsato al metodo di pagamento originale del cliente." @@ -10466,7 +10532,7 @@ msgstr "La lingua del cliente" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "Il massimo è {MAX_PREVIEW} sessioni. Riduci l'intervallo di date, la frequenza o il numero di sessioni al giorno." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "Il numero massimo di prodotti per {0}è {1}" @@ -10475,7 +10541,7 @@ msgstr "Il numero massimo di prodotti per {0}è {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "L'organizzatore che stai cercando non è stato trovato. La pagina potrebbe essere stata spostata, eliminata o l'URL potrebbe essere errato." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "La sostituzione viene registrata nel log di audit dell'ordine." @@ -10499,11 +10565,11 @@ msgstr "Il prezzo mostrato al cliente non includerà tasse e commissioni. Sarann msgid "The primary brand color used for buttons and highlights" msgstr "Il colore principale del marchio utilizzato per i pulsanti e le evidenziazioni" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "L'orario programmato è obbligatorio" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "L'orario programmato deve essere nel futuro" @@ -10511,8 +10577,8 @@ msgstr "L'orario programmato deve essere nel futuro" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "La sessione di \"{title}\" originariamente prevista per {0} è stata riprogrammata." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "Il corpo del template contiene sintassi Liquid non valida. Correggila e riprova." @@ -10521,7 +10587,7 @@ msgstr "Il corpo del template contiene sintassi Liquid non valida. Correggila e msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "Il titolo dell'evento che verrà visualizzato nei risultati dei motori di ricerca e quando si condivide sui social media. Per impostazione predefinita, verrà utilizzato il titolo dell'evento" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "Impossibile convalidare il numero di partita IVA. Controlla il numero e riprova." @@ -10534,19 +10600,19 @@ msgstr "Teatro" msgid "Theme & Colors" msgstr "Tema e colori" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "Non ci sono prodotti disponibili per questo evento" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "Non ci sono prodotti disponibili in questa categoria" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "Non ci sono date in arrivo per questo evento" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "C'è un rimborso in attesa. Attendi che sia completato prima di richiedere un altro rimborso." @@ -10578,7 +10644,7 @@ msgstr "Questi dettagli vengono mostrati sul biglietto del partecipante e nel ri msgid "These details will only be shown if the order is completed successfully." msgstr "Questi dettagli verranno mostrati solo se l'ordine viene completato con successo." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Questi dettagli sostituiranno qualsiasi luogo esistente nelle sessioni interessate e saranno mostrati sui biglietti dei partecipanti." @@ -10586,11 +10652,11 @@ msgstr "Questi dettagli sostituiranno qualsiasi luogo esistente nelle sessioni i msgid "These settings apply only to copied embed code and won't be stored." msgstr "Queste impostazioni si applicano solo al codice di incorporamento copiato e non verranno salvate." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Questi modelli verranno utilizzati come predefiniti per tutti gli eventi nella tua organizzazione. I singoli eventi possono sostituire questi modelli con le proprie versioni personalizzate." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Questi modelli sostituiranno le impostazioni predefinite dell'organizzatore solo per questo evento. Se non è impostato alcun modello personalizzato qui, verrà utilizzato il modello dell'organizzatore." @@ -10598,11 +10664,11 @@ msgstr "Questi modelli sostituiranno le impostazioni predefinite dell'organizzat msgid "Third" msgstr "Terzo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Si applica a ogni data corrispondente dell'evento, incluse le date non attualmente visibili. I partecipanti registrati in una qualsiasi di queste date saranno raggiungibili tramite il compositore di messaggi al termine dell'aggiornamento." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Questo partecipante ha un ordine non pagato." @@ -10660,11 +10726,11 @@ msgstr "Questa data è stata annullata. Puoi comunque eliminarla per rimuoverla msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Questa data è nel passato. Verrà creata ma non sarà visibile ai partecipanti tra le date in arrivo." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Questa data è contrassegnata come esaurita." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Questa data non è più disponibile. Seleziona un'altra data." @@ -10713,19 +10779,19 @@ msgstr "Questo messaggio sarà incluso nel piè di pagina di tutte le email invi msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Questo messaggio sarà mostrato solo se l'ordine è completato con successo. Gli ordini in attesa di pagamento non mostreranno questo messaggio" -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Questo nome è visibile agli utenti finali" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Questa sessione ha raggiunto la capacità massima" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "Questo ordine è già stato pagato." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "Questo ordine è già stato rimborsato." @@ -10733,7 +10799,7 @@ msgstr "Questo ordine è già stato rimborsato." msgid "This order has been cancelled." msgstr "Questo ordine è stato annullato." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "Questo ordine è scaduto. Per favore ricomincia." @@ -10745,15 +10811,15 @@ msgstr "Questo ordine è in fase di elaborazione." msgid "This order is complete." msgstr "Questo ordine è completo." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Questa pagina dell'ordine non è più disponibile." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "Questo ordine è stato abbandonato. Puoi avviarne uno nuovo in qualsiasi momento." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "Questo ordine è stato annullato. Puoi iniziare un nuovo ordine in qualsiasi momento." @@ -10785,7 +10851,7 @@ msgstr "Questo prodotto è evidenziato nella pagina dell'evento" msgid "This product is sold out" msgstr "Questo prodotto è esaurito" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Questo report ha solo scopo informativo. Consultare sempre un consulente fiscale prima di utilizzare questi dati per scopi contabili o fiscali. Si prega di fare un confronto con la dashboard di Stripe, poiché Hi.Events potrebbe non includere dati storici." @@ -10797,11 +10863,11 @@ msgstr "Questo link per reimpostare la password non è valido o è scaduto." msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Questo biglietto è stato appena scansionato. Attendi prima di scansionare di nuovo." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Questo utente non è attivo, poiché non ha accettato il suo invito." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Verranno interessate {loadedAffectedCount} data/e." @@ -10913,6 +10979,10 @@ msgstr "Prezzo Biglietto" msgid "Ticket resent successfully" msgstr "Biglietto reinviato con successo" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "La vendita dei biglietti per questo evento è terminata" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Orario" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Tempo rimasto:" @@ -10994,7 +11064,7 @@ msgstr "Volte Utilizzato" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Fuso orario" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "Per aumentare i tuoi limiti, contattaci a" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "Migliori organizzatori (Ultimi 14 giorni)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Totale" @@ -11075,11 +11146,11 @@ msgstr "Totale iscrizioni" msgid "Total Fee" msgstr "Commissione totale" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Vendite Lorde Totali" msgid "Total order amount" msgstr "Importo totale ordine" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "Totale rimborsato" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Totale Rimborsato" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Traccia la crescita e le prestazioni dell'account per fonte di attribuzione" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "Tracciamento e analisi" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Tipo" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Digita \"elimina\" per confermare" @@ -11222,7 +11293,7 @@ msgstr "Impossibile registrare l'uscita del partecipante" msgid "Unable to create product. Please check the your details" msgstr "Impossibile creare il prodotto. Controlla i tuoi dati" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Impossibile creare il prodotto. Controlla i tuoi dati" @@ -11246,7 +11317,7 @@ msgstr "Impossibile unirsi alla lista d'attesa" msgid "Unable to load attendee details." msgstr "Impossibile caricare i dettagli del partecipante." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Impossibile caricare i prodotti per questa data. Riprova." @@ -11284,7 +11355,7 @@ msgstr "Stati Uniti" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Sconosciuto" @@ -11304,7 +11375,7 @@ msgstr "Partecipante Sconosciuto" msgid "Unlimited" msgstr "Illimitato" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Disponibilità illimitata" @@ -11316,12 +11387,12 @@ msgstr "Utilizzi illimitati consentiti" msgid "Unnamed" msgstr "Senza nome" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Luogo senza nome" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Ordine non pagato" @@ -11337,7 +11408,7 @@ msgstr "Non attendibile" msgid "Upcoming" msgstr "In Arrivo" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "Aggiorna {0}" msgid "Update Affiliate" msgstr "Aggiorna affiliato" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Aggiorna capacità" @@ -11365,15 +11436,15 @@ msgstr "Aggiorna nome e descrizione dell'evento" msgid "Update event name, description and dates" msgstr "Aggiorna nome, descrizione e date dell'evento" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Aggiorna etichetta" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Aggiorna luogo" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Aggiorna profilo" @@ -11385,19 +11456,19 @@ msgstr "Aggiornamento: {subjectTitle} — modifiche alla programmazione" msgid "Update: {subjectTitle} — session time changed" msgstr "Aggiornamento: {subjectTitle} — orario della sessione modificato" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "{count} data/e aggiornata/e" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "Capacità aggiornata per {count} data/e" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "Etichetta aggiornata per {count} data/e" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Luogo aggiornato per {count} sessione/i" @@ -11507,14 +11578,14 @@ msgstr "Gestione Utenti" msgid "Users" msgstr "Utenti" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Gli utenti possono modificare la loro email in <0>Impostazioni Profilo" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11526,13 +11597,13 @@ msgstr "Analisi UTM" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "Convalida della tua partita IVA..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "IVA" @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "Partita IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "Numero di partita IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "Il numero di partita IVA non deve contenere spazi" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "Il numero di partita IVA deve iniziare con un codice paese di 2 lettere seguito da 8-15 caratteri alfanumerici (ad es., DE123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "Partita IVA convalidata con successo" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "Convalida della partita IVA non riuscita" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "Convalida della partita IVA non riuscita. Controlla la tua partita IVA." @@ -11581,12 +11652,12 @@ msgstr "Aliquota IVA" msgid "VAT registered" msgstr "Soggetto a IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "Impostazioni IVA salvate con successo" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "Impostazioni IVA salvate. Stiamo convalidando il tuo numero di partita IVA in background." @@ -11594,15 +11665,15 @@ msgstr "Impostazioni IVA salvate. Stiamo convalidando il tuo numero di partita I msgid "VAT settings updated" msgstr "Impostazioni IVA aggiornate" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "Trattamento IVA per le commissioni della piattaforma" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "Trattamento IVA per le commissioni della piattaforma: Le imprese registrate IVA nell'UE possono utilizzare il meccanismo del reverse charge (0% - Articolo 196 della Direttiva IVA 2006/112/CE). Alle imprese non registrate IVA viene applicata l'IVA irlandese al 23%." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "Servizio di convalida IVA temporaneamente non disponibile" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "IVA: non registrato" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "Nome della Sede" msgid "Verification code" msgstr "Codice di verifica" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "Verifica email" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Verifica la tua email" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "Verifica in corso..." @@ -11655,8 +11735,7 @@ msgstr "Visualizza" msgid "View All" msgstr "Visualizza tutto" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "Visualizza dettagli di {0} {1}" msgid "View Event" msgstr "Visualizza evento" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Visualizza pagina evento" @@ -11729,8 +11808,8 @@ msgstr "Visualizza su Google Maps" msgid "View Order" msgstr "Visualizza Ordine" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Visualizza dettagli ordine" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "In attesa" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "In attesa di pagamento" @@ -11800,7 +11879,7 @@ msgstr "Lista d'attesa" msgid "Waitlist Enabled" msgstr "Lista d'attesa abilitata" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "L'offerta per la lista d'attesa è scaduta." @@ -11808,7 +11887,7 @@ msgstr "L'offerta per la lista d'attesa è scaduta." msgid "Waitlist triggered" msgstr "Lista d'attesa attivata" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Attenzione: questa è la configurazione predefinita del sistema. Le modifiche interesseranno tutti gli account a cui non è assegnata una configurazione specifica." @@ -11844,7 +11923,7 @@ msgstr "Non siamo riusciti a trovare l'ordine che stai cercando. Il link potrebb msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "Non siamo riusciti a trovare il biglietto che stai cercando. Il link potrebbe essere scaduto o i dettagli del biglietto potrebbero essere cambiati." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "Non siamo riusciti a trovare questo ordine. Potrebbe essere stato rimosso." @@ -11860,7 +11939,7 @@ msgstr "Non siamo riusciti a contattare Stripe in questo momento. Riprova tra po msgid "We couldn't reorder the categories. Please try again." msgstr "Non è stato possibile riordinare le categorie. Riprova." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Si è verificato un problema durante il caricamento di questa pagina. Riprova." @@ -11881,6 +11960,10 @@ msgstr "Consigliamo dimensioni di 2160px per 1080px e una dimensione massima del msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "Si consigliano dimensioni di 400px per 400px e una dimensione massima del file di 5MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "Utilizziamo i cookie per aiutarci a capire come viene utilizzato il sito e per migliorare la tua esperienza." @@ -11889,7 +11972,7 @@ msgstr "Utilizziamo i cookie per aiutarci a capire come viene utilizzato il sito msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "Non siamo riusciti a confermare il tuo pagamento. Riprova o contatta l'assistenza." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "Non siamo riusciti a convalidare il tuo numero di partita IVA dopo diversi tentativi. Continueremo a provare in background. Riprova più tardi." @@ -11897,16 +11980,16 @@ msgstr "Non siamo riusciti a convalidare il tuo numero di partita IVA dopo diver msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "Ti avviseremo via email se si libererà un posto per {productDisplayName}." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Dopo il salvataggio apriremo un compositore di messaggi con un modello precompilato. Tu lo revisioni e lo invii — nulla viene inviato automaticamente." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "Invieremo i tuoi biglietti a questa email" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "Convalideremo la tua partita IVA in background. In caso di problemi, ti informeremo." @@ -12003,7 +12086,7 @@ msgstr "Benvenuto a bordo! Accedi per continuare." msgid "Welcome back" msgstr "Bentornato" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Bentornato{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Benessere" msgid "What are Tiered Products?" msgstr "Cosa sono i Prodotti a Livelli?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "Cos'è una Categoria?" @@ -12143,6 +12226,10 @@ msgstr "Quando chiude il check-in" msgid "When check-in opens" msgstr "Quando apre il check-in" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "Quando abilitato, le fatture verranno generate per gli ordini di biglietti. Le fatture saranno inviate insieme all'email di conferma dell'ordine. I partecipanti possono anche scaricare le loro fatture dalla pagina di conferma dell'ordine." @@ -12155,7 +12242,7 @@ msgstr "Quando abilitato, i nuovi eventi consentiranno ai partecipanti di gestir msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "Se abilitato, i nuovi eventi mostreranno una casella di opt-in marketing durante il checkout. Questo può essere sovrascritto per evento." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "Quando abilitato, non verranno addebitate commissioni di applicazione sulle transazioni Stripe Connect. Usa questo per i paesi in cui le commissioni di applicazione non sono supportate." @@ -12191,11 +12278,11 @@ msgstr "Anteprima widget" msgid "Widget Settings" msgstr "Impostazioni widget" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "In corso" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "anno" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Da inizio anno" @@ -12247,11 +12334,11 @@ msgstr "anni" msgid "Yes" msgstr "Si" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Sì - Ho un numero di partita IVA UE valido" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Sì, annulla il mio ordine" @@ -12267,7 +12354,7 @@ msgstr "Stai cambiando la tua email in <0>{0}." msgid "You are impersonating <0>{0} ({1})" msgstr "Stai impersonificando <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Stai emettendo un rimborso parziale. Il cliente sarà rimborsato di {0} {1}." @@ -12292,7 +12379,7 @@ msgstr "Potrai sostituire questo valore per le singole date in seguito." msgid "You can still manually offer tickets if needed." msgstr "È comunque possibile offrire biglietti manualmente se necessario." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "Non puoi archiviare l'ultimo organizzatore attivo del tuo account." @@ -12313,11 +12400,11 @@ msgstr "Non puoi eliminare l'ultima categoria." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "Non puoi eliminare questo livello di prezzo perché ci sono già prodotti venduti per questo livello. Puoi invece nasconderlo." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "Non puoi modificare il ruolo o lo stato del proprietario dell'account." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "Non puoi rimborsare un ordine creato manualmente." @@ -12333,11 +12420,11 @@ msgstr "Hai già accettato questo invito. Accedi per continuare." msgid "You have no pending email change." msgstr "Non hai modifiche di email in sospeso." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "Hai raggiunto il tuo limite di messaggistica." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "Hai esaurito il tempo per completare il tuo ordine." @@ -12345,11 +12432,11 @@ msgstr "Hai esaurito il tempo per completare il tuo ordine." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Hai tasse e commissioni aggiunte a un Prodotto Gratuito. Vuoi rimuoverle?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "Devi riconoscere che questa email non è promozionale" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Devi riconoscere le tue responsabilità prima di salvare" @@ -12409,7 +12496,7 @@ msgstr "Avrai bisogno di un prodotto prima di poter creare un'assegnazione di ca msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Avrai bisogno di almeno un prodotto per iniziare. Gratuito, a pagamento o lascia che l'utente decida quanto pagare." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Stai modificando gli orari delle sessioni" @@ -12421,7 +12508,7 @@ msgstr "Stai per partecipare a {0}!" msgid "You're on the waitlist!" msgstr "Sei nella lista d'attesa!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "Ti è stato offerto un posto!" @@ -12429,7 +12516,7 @@ msgstr "Ti è stato offerto un posto!" msgid "You've changed the session time" msgstr "Hai modificato l'orario della sessione" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Il tuo account ha limiti di messaggistica. Per aumentare i tuoi limiti, contattaci a" @@ -12457,11 +12544,11 @@ msgstr "Il tuo fantastico sito web 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "La tua lista di check-in è stata creata con successo. Condividi il link sottostante con il tuo staff di check-in." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "Il tuo ordine attuale andrà perso." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "I tuoi Dettagli" @@ -12469,7 +12556,7 @@ msgstr "I tuoi Dettagli" msgid "Your Email" msgstr "La tua Email" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "La tua richiesta di cambio email a <0>{0} è in attesa. Controlla la tua email per confermare" @@ -12497,7 +12584,7 @@ msgstr "Il tuo nome" msgid "Your new password must be at least 8 characters long." msgstr "La nuova password deve contenere almeno 8 caratteri." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Il tuo Ordine" @@ -12509,7 +12596,7 @@ msgstr "I dettagli del tuo ordine sono stati aggiornati. Un'e-mail di conferma msgid "Your order has been cancelled" msgstr "Il tuo ordine è stato annullato" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "Il tuo ordine è stato annullato." @@ -12534,7 +12621,7 @@ msgstr "L'indirizzo del tuo organizzatore" msgid "Your password" msgstr "La tua password" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Il tuo pagamento è in elaborazione." @@ -12542,11 +12629,11 @@ msgstr "Il tuo pagamento è in elaborazione." msgid "Your payment is protected with bank-level encryption" msgstr "Il tuo pagamento è protetto con crittografia a livello bancario" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Il tuo pagamento non è andato a buon fine, riprova." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Il tuo pagamento non è andato a buon fine. Riprova." @@ -12554,7 +12641,7 @@ msgstr "Il tuo pagamento non è andato a buon fine. Riprova." msgid "Your Plan" msgstr "Il tuo piano" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Il tuo rimborso è in elaborazione." @@ -12570,19 +12657,19 @@ msgstr "Il tuo biglietto per" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "Il tuo biglietto è ancora valido — non è necessaria alcuna azione, a meno che il nuovo orario non ti vada bene. Rispondi a questa email per qualsiasi domanda." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "I tuoi biglietti sono stati confermati." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "Il tuo numero di partita IVA è in coda per la convalida" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "La tua partita IVA verrà convalidata al momento del salvataggio" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "La tua offerta di iscrizione alla lista d'attesa è scaduta e non siamo stati in grado di completare il tuo ordine. Ti preghiamo di iscriverti nuovamente alla lista d'attesa per essere avvisato quando si libereranno dei posti." @@ -12590,19 +12677,19 @@ msgstr "La tua offerta di iscrizione alla lista d'attesa è scaduta e non siamo msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "CAP / Codice Postale" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "CAP o Codice Postale" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "CAP o Codice Postale" diff --git a/frontend/src/locales/nl.js b/frontend/src/locales/nl.js index 8dd40948bb..d443d70aed 100644 --- a/frontend/src/locales/nl.js +++ b/frontend/src/locales/nl.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Er is nog niets om te tonen'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>uitgevinkt succesvol\"],\"KMgp2+\":[[\"0\"],\" beschikbaar\"],\"Pmr5xp\":[[\"0\"],\" succesvol aangemaakt\"],\"FImCSc\":[[\"0\"],\" succesvol bijgewerkt\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dagen, \",[\"hours\"],\" uren, \",[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"f3RdEk\":[[\"hours\"],\" uren, \",[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"NlQ0cx\":[\"Eerste evenement van \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://uw-website.nl\",\"qnSLLW\":\"<0>Voer de prijs in exclusief belastingen en toeslagen.<1>Belastingen en toeslagen kunnen hieronder worden toegevoegd.\",\"ZjMs6e\":\"<0>Het aantal beschikbare producten voor dit product<1>Deze waarde kan worden overschreven als er <2>Capaciteitsbeperkingen zijn gekoppeld aan dit product.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minuten en 0 seconden\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Hoofdstraat 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Een datuminvoer. Perfect voor het vragen naar een geboortedatum enz.\",\"6euFZ/\":[\"Een standaard \",[\"type\"],\" wordt automatisch toegepast op alle nieuwe producten. Je kunt dit opheffen per product.\"],\"SMUbbQ\":\"Een Dropdown-ingang laat slechts één selectie toe\",\"qv4bfj\":\"Een vergoeding, zoals reserveringskosten of servicekosten\",\"POT0K/\":\"Een vast bedrag per product. Bijv. $0,50 per product\",\"f4vJgj\":\"Een meerregelige tekstinvoer\",\"OIPtI5\":\"Een percentage van de productprijs. Bijvoorbeeld 3,5% van de productprijs\",\"ZthcdI\":\"Een promotiecode zonder korting kan worden gebruikt om verborgen producten te onthullen.\",\"AG/qmQ\":\"Een Radio-optie heeft meerdere opties, maar er kan er maar één worden geselecteerd.\",\"h179TP\":\"Een korte beschrijving van het evenement die zal worden weergegeven in zoekmachineresultaten en bij het delen op sociale media. Standaard wordt de beschrijving van het evenement gebruikt\",\"WKMnh4\":\"Een enkele regel tekstinvoer\",\"BHZbFy\":\"Eén vraag per bestelling. Bijv. Wat is uw verzendadres?\",\"Fuh+dI\":\"Eén vraag per product. Bijv. Wat is je t-shirtmaat?\",\"RlJmQg\":\"Een standaardbelasting, zoals BTW of GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Accepteer bankoverschrijvingen, cheques of andere offline betalingsmethoden\",\"hrvLf4\":\"Accepteer creditcardbetalingen met Stripe\",\"bfXQ+N\":\"Uitnodiging accepteren\",\"AeXO77\":\"Account\",\"lkNdiH\":\"Naam rekening\",\"Puv7+X\":\"Accountinstellingen\",\"OmylXO\":\"Account succesvol bijgewerkt\",\"7L01XJ\":\"Acties\",\"FQBaXG\":\"Activeer\",\"5T2HxQ\":\"Activeringsdatum\",\"F6pfE9\":\"Actief\",\"/PN1DA\":\"Voeg een beschrijving toe voor deze check-in lijst\",\"0/vPdA\":\"Voeg notities over de genodigde toe. Deze zijn niet zichtbaar voor de deelnemer.\",\"Or1CPR\":\"Notities over de deelnemer toevoegen...\",\"l3sZO1\":\"Voeg eventuele notities over de bestelling toe. Deze zijn niet zichtbaar voor de klant.\",\"xMekgu\":\"Opmerkingen over de bestelling toevoegen...\",\"PGPGsL\":\"Beschrijving toevoegen\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Instructies voor offline betalingen toevoegen (bijv. details voor bankoverschrijving, waar cheques naartoe moeten, betalingstermijnen)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Nieuw toevoegen\",\"TZxnm8\":\"Optie toevoegen\",\"24l4x6\":\"Product toevoegen\",\"8q0EdE\":\"Product toevoegen aan categorie\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Belasting of toeslag toevoegen\",\"goOKRY\":\"Niveau toevoegen\",\"oZW/gT\":\"Toevoegen aan kalender\",\"pn5qSs\":\"Aanvullende informatie\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adres\",\"NY/x1b\":\"Adresregel 1\",\"POdIrN\":\"Adresregel 1\",\"cormHa\":\"Adresregel 2\",\"gwk5gg\":\"Adresregel 2\",\"U3pytU\":\"Admin\",\"HLDaLi\":\"Admin-gebruikers hebben volledige toegang tot evenementen en accountinstellingen.\",\"W7AfhC\":\"Alle deelnemers aan dit evenement\",\"cde2hc\":\"Alle producten\",\"5CQ+r0\":\"Deelnemers met onbetaalde bestellingen toestaan om in te checken\",\"ipYKgM\":\"Indexering door zoekmachines toestaan\",\"LRbt6D\":\"Laat zoekmachines dit evenement indexeren\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Verbazingwekkend, evenement, trefwoorden...\",\"hehnjM\":\"Bedrag\",\"R2O9Rg\":[\"Betaald bedrag (\",[\"0\"],\")\"],\"V7MwOy\":\"Er is een fout opgetreden tijdens het laden van de pagina\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Er is een onverwachte fout opgetreden.\",\"byKna+\":\"Er is een onverwachte fout opgetreden. Probeer het opnieuw.\",\"ubdMGz\":\"Vragen van producthouders worden naar dit e-mailadres gestuurd. Dit e-mailadres wordt ook gebruikt als\",\"aAIQg2\":\"Uiterlijk\",\"Ym1gnK\":\"toegepast\",\"sy6fss\":[\"Geldt voor \",[\"0\"],\" producten\"],\"kadJKg\":\"Geldt voor 1 product\",\"DB8zMK\":\"Toepassen\",\"GctSSm\":\"Kortingscode toepassen\",\"ARBThj\":[\"Pas dit \",[\"type\"],\" toe op alle nieuwe producten\"],\"S0ctOE\":\"Archief evenement\",\"TdfEV7\":\"Gearchiveerd\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Weet je zeker dat je deze deelnemer wilt activeren?\",\"TvkW9+\":\"Weet je zeker dat je dit evenement wilt archiveren?\",\"/CV2x+\":\"Weet je zeker dat je deze deelnemer wilt annuleren? Hiermee vervalt hun ticket\",\"YgRSEE\":\"Weet je zeker dat je deze promotiecode wilt verwijderen?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Weet je zeker dat je dit evenement concept wilt maken? Dit maakt het evenement onzichtbaar voor het publiek\",\"mEHQ8I\":\"Weet je zeker dat je dit evenement openbaar wilt maken? Hierdoor wordt het evenement zichtbaar voor het publiek\",\"s4JozW\":\"Weet je zeker dat je dit evenements wilt herstellen? Het zal worden hersteld als een conceptevenement.\",\"vJuISq\":\"Weet je zeker dat je deze Capaciteitstoewijzing wilt verwijderen?\",\"baHeCz\":\"Weet je zeker dat je deze Check-In lijst wilt verwijderen?\",\"LBLOqH\":\"Vraag één keer per bestelling\",\"wu98dY\":\"Vraag één keer per product\",\"ss9PbX\":\"Deelnemer\",\"m0CFV2\":\"Details deelnemers\",\"QKim6l\":\"Deelnemer niet gevonden\",\"R5IT/I\":\"Opmerkingen voor deelnemers\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Bezoekerskaartje\",\"9SZT4E\":\"Deelnemers\",\"iPBfZP\":\"Geregistreerde deelnemers\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatisch formaat wijzigen\",\"vZ5qKF\":\"Pas de widgethoogte automatisch aan op basis van de inhoud. Wanneer uitgeschakeld, vult de widget de hoogte van de container.\",\"4lVaWA\":\"In afwachting van offline betaling\",\"2rHwhl\":\"In afwachting van offline betaling\",\"3wF4Q/\":\"Wacht op betaling\",\"ioG+xt\":\"In afwachting van betaling\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Terug naar de evenementpagina\",\"VCoEm+\":\"Terug naar inloggen\",\"k1bLf+\":\"Achtergrondkleur\",\"I7xjqg\":\"Achtergrond Type\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Factuuradres\",\"/xC/im\":\"Factureringsinstellingen\",\"rp/zaT\":\"Braziliaans Portugees\",\"whqocw\":\"Door je te registreren ga je akkoord met onze <0>Servicevoorwaarden en <1>Privacybeleid.\",\"bcCn6r\":\"Type berekening\",\"+8bmSu\":\"Californië\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Annuleren\",\"Gjt/py\":\"E-mailwijziging annuleren\",\"tVJk4q\":\"Bestelling annuleren\",\"Os6n2a\":\"Bestelling annuleren\",\"Mz7Ygx\":[\"Annuleer order \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Geannuleerd\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capaciteit\",\"V6Q5RZ\":\"Capaciteitstoewijzing succesvol aangemaakt\",\"k5p8dz\":\"Capaciteitstoewijzing succesvol verwijderd\",\"nDBs04\":\"Capaciteitsbeheer\",\"ddha3c\":\"Met categorieën kun je producten groeperen. Je kunt bijvoorbeeld een categorie hebben voor.\",\"iS0wAT\":\"Categorieën helpen je om je producten te organiseren. Deze titel wordt weergegeven op de openbare evenementpagina.\",\"eorM7z\":\"Categorieën opnieuw gerangschikt.\",\"3EXqwa\":\"Categorie succesvol aangemaakt\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Wachtwoord wijzigen\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Inchecken \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Inchecken en bestelling als betaald markeren\",\"QYLpB4\":\"Alleen inchecken\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Bekijk dit evenement!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Check-in lijst succesvol verwijderd\",\"+hBhWk\":\"Check-in lijst is verlopen\",\"mBsBHq\":\"Check-in lijst is niet actief\",\"vPqpQG\":\"Check-in lijst niet gevonden\",\"tejfAy\":\"Inchecklijsten\",\"hD1ocH\":\"Check-In URL gekopieerd naar klembord\",\"CNafaC\":\"Selectievakjes maken meerdere selecties mogelijk\",\"SpabVf\":\"Selectievakjes\",\"CRu4lK\":\"Ingecheckt\",\"znIg+z\":\"Kassa\",\"1WnhCL\":\"Afrekeninstellingen\",\"6imsQS\":\"Chinees (Vereenvoudigd)\",\"JjkX4+\":\"Kies een kleur voor je achtergrond\",\"/Jizh9\":\"Kies een account\",\"3wV73y\":\"Stad\",\"FG98gC\":\"Zoektekst wissen\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Klik om te kopiëren\",\"yz7wBu\":\"Sluit\",\"62Ciis\":\"Zijbalk sluiten\",\"EWPtMO\":\"Code\",\"ercTDX\":\"De code moet tussen 3 en 50 tekens lang zijn\",\"oqr9HB\":\"Dit product samenvouwen wanneer de evenementpagina voor het eerst wordt geladen\",\"jZlrte\":\"Kleur\",\"Vd+LC3\":\"De kleur moet een geldige hex-kleurcode zijn. Voorbeeld: #ffffff\",\"1HfW/F\":\"Kleuren\",\"VZeG/A\":\"Binnenkort beschikbaar\",\"yPI7n9\":\"Door komma's gescheiden trefwoorden die het evenement beschrijven. Deze worden door zoekmachines gebruikt om het evenement te categoriseren en indexeren\",\"NPZqBL\":\"Volledige bestelling\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Volledige betaling\",\"qqWcBV\":\"Voltooid\",\"6HK5Ct\":\"Afgeronde bestellingen\",\"NWVRtl\":\"Afgeronde bestellingen\",\"DwF9eH\":\"Componentcode\",\"Tf55h7\":\"Geconfigureerde korting\",\"7VpPHA\":\"Bevestig\",\"ZaEJZM\":\"Bevestig e-mailwijziging\",\"yjkELF\":\"Nieuw wachtwoord bevestigen\",\"xnWESi\":\"Wachtwoord bevestigen\",\"p2/GCq\":\"Wachtwoord bevestigen\",\"wnDgGj\":\"E-mailadres bevestigen...\",\"pbAk7a\":\"Streep aansluiten\",\"UMGQOh\":\"Maak verbinding met Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Details verbinding\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Ga verder\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Tekst doorgaan-knop\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Gekopieerd\",\"T5rdis\":\"gekopieerd naar klembord\",\"he3ygx\":\"Kopie\",\"r2B2P8\":\"Check-in URL kopiëren\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Link kopiëren\",\"E6nRW7\":\"URL kopiëren\",\"JNCzPW\":\"Land\",\"IF7RiR\":\"Omslag\",\"hYgDIe\":\"Maak\",\"b9XOHo\":[\"Maak \",[\"0\"]],\"k9RiLi\":\"Een product maken\",\"6kdXbW\":\"Maak een Promo Code\",\"n5pRtF\":\"Een ticket maken\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"een organisator maken\",\"ipP6Ue\":\"Aanwezige maken\",\"VwdqVy\":\"Capaciteitstoewijzing maken\",\"EwoMtl\":\"Categorie maken\",\"XletzW\":\"Categorie maken\",\"WVbTwK\":\"Check-in lijst maken\",\"uN355O\":\"Evenement creëren\",\"BOqY23\":\"Nieuw maken\",\"kpJAeS\":\"Organisator maken\",\"a0EjD+\":\"Product maken\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Promocode maken\",\"B3Mkdt\":\"Vraag maken\",\"UKfi21\":\"Creëer belasting of heffing\",\"d+F6q9\":\"Aangemaakt\",\"Q2lUR2\":\"Valuta\",\"DCKkhU\":\"Huidig wachtwoord\",\"uIElGP\":\"Aangepaste kaarten URL\",\"UEqXyt\":\"Aangepast bereik\",\"876pfE\":\"Klant\",\"QOg2Sf\":\"De e-mail- en meldingsinstellingen voor dit evenement aanpassen\",\"Y9Z/vP\":\"De homepage van het evenement en de berichten bij de kassa aanpassen\",\"2E2O5H\":\"De diverse instellingen voor dit evenement aanpassen\",\"iJhSxe\":\"De SEO-instellingen voor dit evenement aanpassen\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Gevarenzone\",\"ZQKLI1\":\"Gevarenzone\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Datum\",\"JvUngl\":\"Datum en tijd\",\"JJhRbH\":\"Capaciteit op dag één\",\"cnGeoo\":\"Verwijder\",\"jRJZxD\":\"Capaciteit verwijderen\",\"VskHIx\":\"Categorie verwijderen\",\"Qrc8RZ\":\"Check-in lijst verwijderen\",\"WHf154\":\"Code verwijderen\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Beschrijving\",\"YC3oXa\":\"Beschrijving voor incheckpersoneel\",\"URmyfc\":\"Details\",\"1lRT3t\":\"Als je deze capaciteit uitschakelt, worden de verkopen bijgehouden, maar niet gestopt als de limiet is bereikt\",\"H6Ma8Z\":\"Korting\",\"ypJ62C\":\"Korting %\",\"3LtiBI\":[\"Korting in \",[\"0\"]],\"C8JLas\":\"Korting Type\",\"1QfxQT\":\"Sluiten\",\"DZlSLn\":\"Documentlabel\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donatie / Betaal wat je wilt product\",\"OvNbls\":\"Download .ics\",\"kodV18\":\"CSV downloaden\",\"CELKku\":\"Factuur downloaden\",\"LQrXcu\":\"Factuur downloaden\",\"QIodqd\":\"QR-code downloaden\",\"yhjU+j\":\"Factuur downloaden\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Dropdown selectie\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Dupliceer evenement\",\"3ogkAk\":\"Dupliceer Evenement\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Dupliceer opties\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Vroege vogel\",\"ePK91l\":\"Bewerk\",\"N6j2JH\":[\"Bewerk \",[\"0\"]],\"kBkYSa\":\"Bewerk capaciteit\",\"oHE9JT\":\"Capaciteitstoewijzing bewerken\",\"j1Jl7s\":\"Categorie bewerken\",\"FU1gvP\":\"Check-in lijst bewerken\",\"iFgaVN\":\"Code bewerken\",\"jrBSO1\":\"Organisator bewerken\",\"tdD/QN\":\"Bewerk product\",\"n143Tq\":\"Bewerk productcategorie\",\"9BdS63\":\"Kortingscode bewerken\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Bewerk Vraag\",\"poTr35\":\"Gebruiker bewerken\",\"GTOcxw\":\"Gebruiker bewerken\",\"pqFrv2\":\"bijv. 2,50 voor $2,50\",\"3yiej1\":\"bijv. 23,5 voor 23,5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Instellingen voor e-mail en meldingen\",\"ATGYL1\":\"E-mailadres\",\"hzKQCy\":\"E-mailadres\",\"HqP6Qf\":\"E-mailwijziging succesvol geannuleerd\",\"mISwW1\":\"E-mailwijziging in behandeling\",\"APuxIE\":\"E-mailbevestiging opnieuw verzonden\",\"YaCgdO\":\"Bericht voettekst e-mail\",\"jyt+cx\":\"Bevestigingsmail succesvol opnieuw verstuurd\",\"I6F3cp\":\"E-mail niet geverifieerd\",\"NTZ/NX\":\"Insluitcode\",\"4rnJq4\":\"Insluitscript\",\"8oPbg1\":\"Facturering inschakelen\",\"j6w7d/\":\"Schakel deze capaciteit in om de verkoop van producten te stoppen als de limiet is bereikt\",\"VFv2ZC\":\"Einddatum\",\"237hSL\":\"Beëindigd\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Engels\",\"MhVoma\":\"Voer een bedrag in exclusief belastingen en toeslagen.\",\"SlfejT\":\"Fout\",\"3Z223G\":\"Fout bij bevestigen e-mailadres\",\"a6gga1\":\"Fout bij het bevestigen van een e-mailwijziging\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evenement\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Evenementdatum\",\"0Zptey\":\"Evenement Standaarden\",\"QcCPs8\":\"Evenement Details\",\"6fuA9p\":\"Evenement succesvol gedupliceerd\",\"AEuj2m\":\"Homepage evenement\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Locatie en details evenement\",\"OopDbA\":\"Event page\",\"4/If97\":\"Update status evenement mislukt. Probeer het later opnieuw\",\"btxLWj\":\"Evenementstatus bijgewerkt\",\"nMU2d3\":\"Evenement-URL\",\"tst44n\":\"Evenementen\",\"sZg7s1\":\"Vervaldatum\",\"KnN1Tu\":\"Verloopt op\",\"uaSvqt\":\"Vervaldatum\",\"GS+Mus\":\"Exporteer\",\"9xAp/j\":\"Deelnemer niet geannuleerd\",\"ZpieFv\":\"Bestelling niet geannuleerd\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Downloaden van factuur mislukt. Probeer het opnieuw.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Inchecklijst niet geladen\",\"ZQ15eN\":\"Niet gelukt om ticket e-mail opnieuw te versturen\",\"ejXy+D\":\"Sorteren van producten mislukt\",\"PLUB/s\":\"Tarief\",\"/mfICu\":\"Tarieven\",\"LyFC7X\":\"Bestellingen filteren\",\"cSev+j\":\"Filters\",\"CVw2MU\":[\"Filters (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Eerste factuurnummer\",\"V1EGGU\":\"Voornaam\",\"kODvZJ\":\"Voornaam\",\"S+tm06\":\"De voornaam moet tussen 1 en 50 tekens zijn\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Voor het eerst gebruikt\",\"TpqW74\":\"Vast\",\"irpUxR\":\"Vast bedrag\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Wachtwoord vergeten?\",\"2POOFK\":\"Gratis\",\"P/OAYJ\":\"Gratis product\",\"vAbVy9\":\"Gratis product, geen betalingsgegevens nodig\",\"nLC6tu\":\"Frans\",\"Weq9zb\":\"Algemeen\",\"DDcvSo\":\"Duits\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Ga terug naar profiel\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Agenda\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Brutoverkoop\",\"yRg26W\":\"Bruto verkoop\",\"R4r4XO\":\"Gasten\",\"26pGvx\":\"Heb je een promotiecode?\",\"V7yhws\":\"hallo@geweldig-evenementen.com\",\"6K/IHl\":\"Hier is een voorbeeld van hoe je het component in je applicatie kunt gebruiken.\",\"Y1SSqh\":\"Hier is de React component die je kunt gebruiken om de widget in je applicatie in te sluiten.\",\"QuhVpV\":[\"Hi \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Verborgen voor het publiek\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Verborgen vragen zijn alleen zichtbaar voor de organisator van het evenement en niet voor de klant.\",\"vLyv1R\":\"Verberg\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Verberg product na einddatum verkoop\",\"06s3w3\":\"Verberg product voor start verkoopdatum\",\"axVMjA\":\"Verberg product tenzij gebruiker toepasselijke promotiecode heeft\",\"ySQGHV\":\"Verberg product als het uitverkocht is\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Verberg dit product voor klanten\",\"Da29Y6\":\"Verberg deze vraag\",\"fvDQhr\":\"Verberg dit niveau voor gebruikers\",\"lNipG+\":\"Door een product te verbergen, kunnen gebruikers het niet zien op de evenementpagina.\",\"ZOBwQn\":\"Homepage-ontwerp\",\"PRuBTd\":\"Homepage ontwerper\",\"YjVNGZ\":\"Voorbeschouwing\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Hoeveel minuten de klant heeft om zijn bestelling af te ronden. We raden minimaal 15 minuten aan\",\"ySxKZe\":\"Hoe vaak kan deze code worden gebruikt?\",\"dZsDbK\":[\"HTML karakterlimiet overschreden: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://voorbeeld-maps-service.com/...\",\"uOXLV3\":\"Ik ga akkoord met de <0>voorwaarden\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Als dit is ingeschakeld, kunnen incheckmedewerkers aanwezigen markeren als ingecheckt of de bestelling als betaald markeren en de aanwezigen inchecken. Als deze optie is uitgeschakeld, kunnen bezoekers van onbetaalde bestellingen niet worden ingecheckt.\",\"muXhGi\":\"Als deze optie is ingeschakeld, ontvangt de organisator een e-mailbericht wanneer er een nieuwe bestelling is geplaatst\",\"6fLyj/\":\"Als je deze wijziging niet hebt aangevraagd, verander dan onmiddellijk je wachtwoord.\",\"n/ZDCz\":\"Afbeelding succesvol verwijderd\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Afbeelding succesvol geüpload\",\"VyUuZb\":\"Afbeelding URL\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactief\",\"T0K0yl\":\"Inactieve gebruikers kunnen niet inloggen.\",\"kO44sp\":\"Vermeld verbindingsgegevens voor je online evenement. Deze gegevens worden weergegeven op de overzichtspagina van de bestelling en de ticketpagina voor deelnemers.\",\"FlQKnG\":\"Belastingen en toeslagen in de prijs opnemen\",\"Vi+BiW\":[\"Inclusief \",[\"0\"],\" producten\"],\"lpm0+y\":\"Omvat 1 product\",\"UiAk5P\":\"Afbeelding invoegen\",\"OyLdaz\":\"Uitnodiging verzonden!\",\"HE6KcK\":\"Uitnodiging ingetrokken!\",\"SQKPvQ\":\"Gebruiker uitnodigen\",\"bKOYkd\":\"Factuur succesvol gedownload\",\"alD1+n\":\"Factuurnotities\",\"kOtCs2\":\"Factuurnummering\",\"UZ2GSZ\":\"Factuur Instellingen\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Item\",\"KFXip/\":\"Jan\",\"XcgRvb\":\"Jansen\",\"87a/t/\":\"Label\",\"vXIe7J\":\"Taal\",\"2LMsOq\":\"Laatste 12 maanden\",\"vfe90m\":\"Laatste 14 dagen\",\"aK4uBd\":\"Laatste 24 uur\",\"uq2BmQ\":\"Laatste 30 dagen\",\"bB6Ram\":\"Laatste 48 uur\",\"VlnB7s\":\"Laatste 6 maanden\",\"ct2SYD\":\"Laatste 7 dagen\",\"XgOuA7\":\"Laatste 90 dagen\",\"I3yitW\":\"Laatste login\",\"1ZaQUH\":\"Achternaam\",\"UXBCwc\":\"Achternaam\",\"tKCBU0\":\"Laatst gebruikt\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Laat leeg om het standaardwoord te gebruiken\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Aan het laden...\",\"wJijgU\":\"Locatie\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Inloggen\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Afmelden\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Maak factuuradres verplicht tijdens het afrekenen\",\"MU3ijv\":\"Maak deze vraag verplicht\",\"wckWOP\":\"Beheer\",\"onpJrA\":\"Deelnemer beheren\",\"n4SpU5\":\"Evenement beheren\",\"WVgSTy\":\"Bestelling beheren\",\"1MAvUY\":\"Beheer de betalings- en factureringsinstellingen voor dit evenement.\",\"cQrNR3\":\"Profiel beheren\",\"AtXtSw\":\"Belastingen en toeslagen beheren die kunnen worden toegepast op je producten\",\"ophZVW\":\"Tickets beheren\",\"DdHfeW\":\"Beheer je accountgegevens en standaardinstellingen\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Beheer je gebruikers en hun rechten\",\"1m+YT2\":\"Verplichte vragen moeten worden beantwoord voordat de klant kan afrekenen.\",\"Dim4LO\":\"Handmatig een genodigde toevoegen\",\"e4KdjJ\":\"Deelnemer handmatig toevoegen\",\"vFjEnF\":\"Markeer als betaald\",\"g9dPPQ\":\"Maximum per bestelling\",\"l5OcwO\":\"Bericht deelnemer\",\"Gv5AMu\":\"Bericht Deelnemers\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Bericht koper\",\"tNZzFb\":\"Berichtinhoud\",\"lYDV/s\":\"Bericht individuele deelnemers\",\"V7DYWd\":\"Bericht verzonden\",\"t7TeQU\":\"Berichten\",\"xFRMlO\":\"Minimum per bestelling\",\"QYcUEf\":\"Minimale prijs\",\"RDie0n\":\"Diverse\",\"mYLhkl\":\"Diverse instellingen\",\"KYveV8\":\"Meerregelig tekstvak\",\"VD0iA7\":\"Meerdere prijsopties. Perfect voor early bird-producten enz.\",\"/bhMdO\":\"Mijn verbazingwekkende evenementbeschrijving...\",\"vX8/tc\":\"Mijn verbazingwekkende evenementtitel...\",\"hKtWk2\":\"Mijn profiel\",\"fj5byd\":\"N.V.T.\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Naam\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigeer naar deelnemer\",\"qqeAJM\":\"Nooit\",\"7vhWI8\":\"Nieuw wachtwoord\",\"1UzENP\":\"Nee\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Geen gearchiveerde evenementen om weer te geven.\",\"q2LEDV\":\"Geen aanwezigen gevonden voor deze bestelling.\",\"zlHa5R\":\"Er zijn geen deelnemers aan deze bestelling toegevoegd.\",\"Wjz5KP\":\"Geen aanwezigen\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Geen capaciteitstoewijzingen\",\"a/gMx2\":\"Geen inchecklijsten\",\"tMFDem\":\"Geen gegevens beschikbaar\",\"6Z/F61\":\"Geen gegevens om weer te geven. Selecteer een datumbereik\",\"fFeCKc\":\"Geen Korting\",\"HFucK5\":\"Geen beëindigde evenementen om te laten zien.\",\"yAlJXG\":\"Geen evenementen om weer te geven\",\"GqvPcv\":\"Geen filters beschikbaar\",\"KPWxKD\":\"Geen berichten om te tonen\",\"J2LkP8\":\"Geen orders om te laten zien\",\"RBXXtB\":\"Er zijn momenteel geen betalingsmethoden beschikbaar. Neem contact op met de organisator van het evenement voor hulp.\",\"ZWEfBE\":\"Geen betaling vereist\",\"ZPoHOn\":\"Geen product gekoppeld aan deze deelnemer.\",\"Ya1JhR\":\"Geen producten beschikbaar in deze categorie.\",\"FTfObB\":\"Nog geen producten\",\"+Y976X\":\"Geen promotiecodes om te tonen\",\"MAavyl\":\"Geen vragen beantwoord door deze deelnemer.\",\"SnlQeq\":\"Er zijn geen vragen gesteld voor deze bestelling.\",\"Ev2r9A\":\"Geen resultaten\",\"gk5uwN\":\"Geen zoekresultaten\",\"RHyZUL\":\"Geen zoekresultaten.\",\"RY2eP1\":\"Er zijn geen belastingen of toeslagen toegevoegd.\",\"EdQY6l\":\"Geen\",\"OJx3wK\":\"Niet beschikbaar\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Opmerkingen\",\"jtrY3S\":\"Nog niets om te laten zien\",\"hFwWnI\":\"Instellingen meldingen\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Organisator op de hoogte stellen van nieuwe bestellingen\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Aantal dagen toegestaan voor betaling (leeg laten om betalingstermijnen weg te laten van facturen)\",\"n86jmj\":\"Nummer Voorvoegsel\",\"mwe+2z\":\"Offline bestellingen worden niet weergegeven in evenementstatistieken totdat de bestelling als betaald is gemarkeerd.\",\"dWBrJX\":\"Offline betaling mislukt. Probeer het opnieuw of neem contact op met de organisator van het evenement.\",\"fcnqjw\":\"Offline Betalingsinstructies\",\"+eZ7dp\":\"Offline betalingen\",\"ojDQlR\":\"Informatie over offline betalingen\",\"u5oO/W\":\"Instellingen voor offline betalingen\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"In de uitverkoop\",\"Ug4SfW\":\"Zodra je een evenement hebt gemaakt, zie je het hier.\",\"ZxnK5C\":\"Zodra je gegevens begint te verzamelen, zie je ze hier.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Doorlopend\",\"z+nuVJ\":\"Online evenement\",\"WKHW0N\":\"Details online evenement\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Open Check-In Pagina\",\"OdnLE4\":\"Zijbalk openen\",\"ZZEYpT\":[\"Optie \",[\"i\"]],\"oPknTP\":\"Optionele aanvullende informatie die op alle facturen moet worden vermeld (bijv. betalingsvoorwaarden, kosten voor te late betaling, retourbeleid)\",\"OrXJBY\":\"Optioneel voorvoegsel voor factuurnummers (bijv. INV-)\",\"0zpgxV\":\"Opties\",\"BzEFor\":\"of\",\"UYUgdb\":\"Bestel\",\"mm+eaX\":\"Bestelling #\",\"B3gPuX\":\"Bestelling geannuleerd\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Bestel Datum\",\"Tol4BF\":\"Bestel Details\",\"WbImlQ\":\"Bestelling is geannuleerd en de eigenaar van de bestelling is op de hoogte gesteld.\",\"nAn4Oe\":\"Bestelling gemarkeerd als betaald\",\"uzEfRz\":\"Bestelnotities\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Bestelreferentie\",\"acIJ41\":\"Bestelstatus\",\"GX6dZv\":\"Overzicht bestelling\",\"tDTq0D\":\"Time-out bestelling\",\"1h+RBg\":\"Bestellingen\",\"3y+V4p\":\"Adres organisatie\",\"GVcaW6\":\"Organisatie details\",\"nfnm9D\":\"Naam organisatie\",\"G5RhpL\":\"Organisator\",\"mYygCM\":\"Organisator is vereist\",\"Pa6G7v\":\"Naam organisator\",\"l894xP\":\"Organisatoren kunnen alleen evenementen en producten beheren. Ze kunnen geen gebruikers, accountinstellingen of factureringsgegevens beheren.\",\"fdjq4c\":\"Opvulling\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Pagina niet gevonden\",\"QbrUIo\":\"Bekeken pagina's\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"betaald\",\"HVW65c\":\"Betaald product\",\"ZfxaB4\":\"Gedeeltelijk Terugbetaald\",\"8ZsakT\":\"Wachtwoord\",\"TUJAyx\":\"Wachtwoord moet minimaal 8 tekens bevatten\",\"vwGkYB\":\"Wachtwoord moet minstens 8 tekens bevatten\",\"BLTZ42\":\"Wachtwoord opnieuw ingesteld. Log in met je nieuwe wachtwoord.\",\"f7SUun\":\"Wachtwoorden zijn niet hetzelfde\",\"aEDp5C\":\"Plak dit waar je wilt dat de widget verschijnt.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Betaling\",\"Lg+ewC\":\"Betaling & facturering\",\"DZjk8u\":\"Instellingen voor betaling en facturering\",\"lflimf\":\"Betalingstermijn\",\"JhtZAK\":\"Betaling mislukt\",\"JEdsvQ\":\"Betalingsinstructies\",\"bLB3MJ\":\"Betaalmethoden\",\"QzmQBG\":\"Betalingsprovider\",\"lsxOPC\":\"Ontvangen betaling\",\"wJTzyi\":\"Betalingsstatus\",\"xgav5v\":\"Betaling gelukt!\",\"R29lO5\":\"Betalingsvoorwaarden\",\"/roQKz\":\"Percentage\",\"vPJ1FI\":\"Percentage Bedrag\",\"xdA9ud\":\"Plaats dit in de van je website.\",\"blK94r\":\"Voeg ten minste één optie toe\",\"FJ9Yat\":\"Controleer of de verstrekte informatie correct is\",\"TkQVup\":\"Controleer je e-mail en wachtwoord en probeer het opnieuw\",\"sMiGXD\":\"Controleer of je e-mailadres geldig is\",\"Ajavq0\":\"Controleer je e-mail om je e-mailadres te bevestigen\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Ga verder in het nieuwe tabblad\",\"hcX103\":\"Maak een product\",\"cdR8d6\":\"Maak een ticket aan\",\"x2mjl4\":\"Voer een geldige URL in die naar een afbeelding verwijst.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Let op\",\"C63rRe\":\"Ga terug naar de evenementpagina om opnieuw te beginnen.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Selecteer ten minste één product\",\"igBrCH\":\"Controleer uw e-mailadres om toegang te krijgen tot alle functies\",\"/IzmnP\":\"Wacht even terwijl we uw factuur opstellen...\",\"MOERNx\":\"Portugees\",\"qCJyMx\":\"Post Checkout-bericht\",\"g2UNkE\":\"Aangedreven door\",\"Rs7IQv\":\"Bericht voor het afrekenen\",\"rdUucN\":\"Voorbeeld\",\"a7u1N9\":\"Prijs\",\"CmoB9j\":\"Modus prijsweergave\",\"BI7D9d\":\"Prijs niet ingesteld\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Prijs Type\",\"6RmHKN\":\"Primaire kleur\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primaire tekstkleur\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Alle tickets afdrukken\",\"DKwDdj\":\"Tickets afdrukken\",\"K47k8R\":\"Product\",\"1JwlHk\":\"Productcategorie\",\"U61sAj\":\"Productcategorie succesvol bijgewerkt.\",\"1USFWA\":\"Product succesvol verwijderd\",\"4Y2FZT\":\"Product Prijs Type\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Productverkoop\",\"U/R4Ng\":\"Productniveau\",\"sJsr1h\":\"Soort product\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Product(en)\",\"N0qXpE\":\"Producten\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Verkochte producten\",\"/u4DIx\":\"Verkochte producten\",\"DJQEZc\":\"Producten succesvol gesorteerd\",\"vERlcd\":\"Profiel\",\"kUlL8W\":\"Profiel succesvol bijgewerkt\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code toegepast\"],\"P5sgAk\":\"Kortingscode\",\"yKWfjC\":\"Promo Code pagina\",\"RVb8Fo\":\"Promo codes\",\"BZ9GWa\":\"Promocodes kunnen worden gebruikt voor kortingen, toegang tot de voorverkoop of speciale toegang tot je evenement.\",\"OP094m\":\"Promocodes Rapport\",\"4kyDD5\":\"Geef aanvullende context of instructies voor deze vraag. Gebruik dit veld om voorwaarden,\\nrichtlijnen of andere belangrijke informatie toe te voegen die deelnemers moeten weten voordat ze antwoorden.\",\"toutGW\":\"QR-code\",\"LkMOWF\":\"Beschikbare hoeveelheid\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Vraag verwijderd\",\"avf0gk\":\"Beschrijving van de vraag\",\"oQvMPn\":\"Titel van de vraag\",\"enzGAL\":\"Vragen\",\"ROv2ZT\":\"Vragen en antwoorden\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio-optie\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Ontvanger\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Terugbetaling mislukt\",\"n10yGu\":\"Bestelling terugbetalen\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Restitutie in behandeling\",\"xHpVRl\":\"Restitutie Status\",\"/BI0y9\":\"Terugbetaald\",\"fgLNSM\":\"Registreer\",\"9+8Vez\":\"Overblijvend gebruik\",\"tasfos\":\"verwijderen\",\"t/YqKh\":\"Verwijder\",\"t9yxlZ\":\"Rapporten\",\"prZGMe\":\"Factuuradres vereisen\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"E-mailbevestiging opnieuw verzenden\",\"wIa8Qe\":\"Uitnodiging opnieuw versturen\",\"VeKsnD\":\"E-mail met bestelling opnieuw verzenden\",\"dFuEhO\":\"Ticket e-mail opnieuw verzenden\",\"o6+Y6d\":\"Opnieuw verzenden...\",\"OfhWJH\":\"Reset\",\"RfwZxd\":\"Wachtwoord opnieuw instellen\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Evenement herstellen\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Terug naar evenementpagina\",\"8YBH95\":\"Inkomsten\",\"PO/sOY\":\"Uitnodiging intrekken\",\"GDvlUT\":\"Rol\",\"ELa4O9\":\"Einddatum verkoop\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Startdatum verkoop\",\"hBsw5C\":\"Verkoop beëindigd\",\"kpAzPe\":\"Start verkoop\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Opslaan\",\"IUwGEM\":\"Wijzigingen opslaan\",\"U65fiW\":\"Organisator opslaan\",\"UGT5vp\":\"Instellingen opslaan\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Zoek op naam van een deelnemer, e-mail of bestelnummer...\",\"+pr/FY\":\"Zoeken op evenementnaam...\",\"3zRbWw\":\"Zoeken op naam, e-mail of bestelnummer...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Zoeken op naam...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Zoek capaciteitstoewijzingen...\",\"r9M1hc\":\"Check-in lijsten doorzoeken...\",\"+0Yy2U\":\"Producten zoeken\",\"YIix5Y\":\"Zoeken...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secundaire kleur\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secundaire tekstkleur\",\"02ePaq\":[\"Kies \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Selecteer categorie...\",\"kWI/37\":\"Organisator selecteren\",\"ixIx1f\":\"Kies product\",\"3oSV95\":\"Selecteer productcategorie\",\"C4Y1hA\":\"Selecteer producten\",\"hAjDQy\":\"Selecteer status\",\"QYARw/\":\"Selecteer ticket\",\"OMX4tH\":\"Kies tickets\",\"DrwwNd\":\"Selecteer tijdsperiode\",\"O/7I0o\":\"Selecteer...\",\"JlFcis\":\"Stuur\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Stuur een bericht\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Verstuur bericht\",\"D7ZemV\":\"Verzend orderbevestiging en ticket e-mail\",\"v1rRtW\":\"Test verzenden\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO Beschrijving\",\"/SIY6o\":\"SEO Trefwoorden\",\"GfWoKv\":\"SEO-instellingen\",\"rXngLf\":\"SEO titel\",\"/jZOZa\":\"Servicevergoeding\",\"Bj/QGQ\":\"Stel een minimumprijs in en laat gebruikers meer betalen als ze dat willen\",\"L0pJmz\":\"Stel het startnummer voor factuurnummering in. Dit kan niet worden gewijzigd als de facturen eenmaal zijn gegenereerd.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Instellingen\",\"Z8lGw6\":\"Deel\",\"B2V3cA\":\"Evenement delen\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Beschikbare producthoeveelheid tonen\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Meer tonen\",\"izwOOD\":\"Belastingen en toeslagen apart weergeven\",\"1SbbH8\":\"Wordt aan de klant getoond nadat hij heeft afgerekend, op de overzichtspagina van de bestelling.\",\"YfHZv0\":\"Aan de klant getoond voordat hij afrekent\",\"CBBcly\":\"Toont algemene adresvelden, inclusief land\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Enkelregelig tekstvak\",\"+P0Cn2\":\"Deze stap overslaan\",\"YSEnLE\":\"Jansen\",\"lgFfeO\":\"Uitverkocht\",\"Mi1rVn\":\"Uitverkocht\",\"nwtY4N\":\"Er is iets misgegaan\",\"GRChTw\":\"Er is iets misgegaan bij het verwijderen van de Belasting of Belastinggeld\",\"YHFrbe\":\"Er ging iets mis! Probeer het opnieuw\",\"kf83Ld\":\"Er ging iets mis.\",\"fWsBTs\":\"Er is iets misgegaan. Probeer het opnieuw.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Sorry, deze promotiecode wordt niet herkend\",\"65A04M\":\"Spaans\",\"mFuBqb\":\"Standaardproduct met een vaste prijs\",\"D3iCkb\":\"Startdatum\",\"/2by1f\":\"Staat of regio\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe-betalingen zijn niet ingeschakeld voor dit evenement.\",\"UJmAAK\":\"Onderwerp\",\"X2rrlw\":\"Subtotaal\",\"zzDlyQ\":\"Succes\",\"b0HJ45\":[\"Succes! \",[\"0\"],\" ontvangt binnenkort een e-mail.\"],\"BJIEiF\":[\"Succesvol \",[\"0\"],\" deelnemer\"],\"OtgNFx\":\"E-mailadres succesvol bevestigd\",\"IKwyaF\":\"E-mailwijziging succesvol bevestigd\",\"zLmvhE\":\"Succesvol aangemaakte deelnemer\",\"gP22tw\":\"Succesvol gecreëerd product\",\"9mZEgt\":\"Succesvol aangemaakte promotiecode\",\"aIA9C4\":\"Succesvol aangemaakte vraag\",\"J3RJSZ\":\"Deelnemer succesvol bijgewerkt\",\"3suLF0\":\"Capaciteitstoewijzing succesvol bijgewerkt\",\"Z+rnth\":\"Check-in lijst succesvol bijgewerkt\",\"vzJenu\":\"E-mailinstellingen met succes bijgewerkt\",\"7kOMfV\":\"Evenement succesvol bijgewerkt\",\"G0KW+e\":\"Succesvol vernieuwd homepage-ontwerp\",\"k9m6/E\":\"Homepage-instellingen met succes bijgewerkt\",\"y/NR6s\":\"Locatie succesvol bijgewerkt\",\"73nxDO\":\"Misc-instellingen met succes bijgewerkt\",\"4H80qv\":\"Bestelling succesvol bijgewerkt\",\"6xCBVN\":\"Instellingen voor betalen en factureren succesvol bijgewerkt\",\"1Ycaad\":\"Product succesvol bijgewerkt\",\"70dYC8\":\"Succesvol bijgewerkte promotiecode\",\"F+pJnL\":\"Succesvol bijgewerkte Seo-instellingen\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Ondersteuning per e-mail\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Belasting\",\"geUFpZ\":\"Belastingen en heffingen\",\"dFHcIn\":\"Belastingdetails\",\"wQzCPX\":\"Belastinginformatie die onderaan alle facturen moet staan (bijv. btw-nummer, belastingregistratie)\",\"0RXCDo\":\"Belasting of vergoeding succesvol verwijderd\",\"ZowkxF\":\"Belastingen\",\"qu6/03\":\"Belastingen en heffingen\",\"gypigA\":\"Die promotiecode is ongeldig\",\"5ShqeM\":\"De check-in lijst die je zoekt bestaat niet.\",\"QXlz+n\":\"De standaardvaluta voor je evenementen.\",\"mnafgQ\":\"De standaard tijdzone voor je evenementen.\",\"o7s5FA\":\"De taal waarin de deelnemer e-mails ontvangt.\",\"NlfnUd\":\"De link waarop je hebt geklikt is ongeldig.\",\"HsFnrk\":[\"Het maximum aantal producten voor \",[\"0\"],\"is \",[\"1\"]],\"TSAiPM\":\"De pagina die u zoekt bestaat niet\",\"MSmKHn\":\"De prijs die aan de klant wordt getoond is inclusief belastingen en toeslagen.\",\"6zQOg1\":\"De prijs die aan de klant wordt getoond is exclusief belastingen en toeslagen. Deze worden apart weergegeven\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"De titel van het evenement die zal worden weergegeven in zoekmachineresultaten en bij het delen op sociale media. Standaard wordt de titel van het evenement gebruikt\",\"wDx3FF\":\"Er zijn geen producten beschikbaar voor dit evenement\",\"pNgdBv\":\"Er zijn geen producten beschikbaar in deze categorie\",\"rMcHYt\":\"Er is een restitutie in behandeling. Wacht tot deze is voltooid voordat je een nieuwe restitutie aanvraagt.\",\"F89D36\":\"Er is een fout opgetreden bij het markeren van de bestelling als betaald\",\"68Axnm\":\"Er is een fout opgetreden bij het verwerken van uw verzoek. Probeer het opnieuw.\",\"mVKOW6\":\"Er is een fout opgetreden bij het verzenden van uw bericht\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Deze deelnemer heeft een onbetaalde bestelling.\",\"mf3FrP\":\"Deze categorie heeft nog geen producten.\",\"8QH2Il\":\"Deze categorie is niet zichtbaar voor het publiek\",\"xxv3BZ\":\"Deze check-in lijst is verlopen\",\"Sa7w7S\":\"Deze check-ins lijst is verlopen en niet langer beschikbaar voor check-ins.\",\"Uicx2U\":\"Deze check-in lijst is actief\",\"1k0Mp4\":\"Deze check-in lijst is nog niet actief\",\"K6fmBI\":\"Deze check-ins lijst is nog niet actief en is niet beschikbaar voor check-ins.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Deze informatie wordt weergegeven op de betaalpagina, de pagina met het overzicht van de bestelling en de e-mail ter bevestiging van de bestelling.\",\"XAHqAg\":\"Dit is een algemeen product, zoals een t-shirt of een mok. Er wordt geen ticket uitgegeven\",\"CNk/ro\":\"Dit is een online evenement\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Dit bericht wordt opgenomen in de voettekst van alle e-mails die vanuit dit evenement worden verzonden\",\"55i7Fa\":\"Dit bericht wordt alleen weergegeven als de bestelling succesvol is afgerond. Bestellingen die op betaling wachten, krijgen dit bericht niet te zien\",\"RjwlZt\":\"Deze bestelling is al betaald.\",\"5K8REg\":\"Deze bestelling is al terugbetaald.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Deze bestelling is geannuleerd.\",\"Q0zd4P\":\"Deze bestelling is verlopen. Begin opnieuw.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Deze bestelling is compleet.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Deze bestelpagina is niet langer beschikbaar.\",\"i0TtkR\":\"Dit overschrijft alle zichtbaarheidsinstellingen en verbergt het product voor alle klanten.\",\"cRRc+F\":\"Dit product kan niet worden verwijderd omdat het gekoppeld is aan een bestelling. In plaats daarvan kunt u het verbergen.\",\"3Kzsk7\":\"Dit product is een ticket. Kopers krijgen bij aankoop een ticket\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Deze vraag is alleen zichtbaar voor de organisator van het evenement.\",\"IV9xTT\":\"Deze gebruiker is niet actief, omdat hij zijn uitnodiging niet heeft geaccepteerd.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"dtGC3q\":\"Ticket e-mail is opnieuw verzonden naar de deelnemer\",\"54q0zp\":\"Tickets voor\",\"xN9AhL\":[\"Niveau \",[\"0\"]],\"jZj9y9\":\"Gelaagd product\",\"8wITQA\":\"Met gelaagde producten kun je meerdere prijsopties aanbieden voor hetzelfde product. Dit is perfect voor early bird-producten of om verschillende prijsopties aan te bieden voor verschillende groepen mensen.\",\"nn3mSR\":\"Resterende tijd:\",\"s/0RpH\":\"Gebruikte tijden\",\"y55eMd\":\"Gebruikte tijden\",\"40Gx0U\":\"Tijdzone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Gereedschap\",\"72c5Qo\":\"Totaal\",\"YXx+fG\":\"Totaal vóór kortingen\",\"NRWNfv\":\"Totaal kortingsbedrag\",\"BxsfMK\":\"Totaal vergoedingen\",\"2bR+8v\":\"Totaal Brutoverkoop\",\"mpB/d9\":\"Totaal bestelbedrag\",\"m3FM1g\":\"Totaal terugbetaald\",\"jEbkcB\":\"Totaal Terugbetaald\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Totale belasting\",\"+zy2Nq\":\"Type\",\"FMdMfZ\":\"Deelnemer kan niet worden ingecheckt\",\"bPWBLL\":\"Deelnemer kan niet worden uitgecheckt\",\"9+P7zk\":\"Kan geen product maken. Controleer uw gegevens\",\"WLxtFC\":\"Kan geen product maken. Controleer uw gegevens\",\"/cSMqv\":\"Kan geen vraag maken. Controleer uw gegevens\",\"MH/lj8\":\"Kan vraag niet bijwerken. Controleer uw gegevens\",\"nnfSdK\":\"Unieke klanten\",\"Mqy/Zy\":\"Verenigde Staten\",\"NIuIk1\":\"Onbeperkt\",\"/p9Fhq\":\"Onbeperkt beschikbaar\",\"E0q9qH\":\"Onbeperkt gebruik toegestaan\",\"h10Wm5\":\"Onbetaalde bestelling\",\"ia8YsC\":\"Komende\",\"TlEeFv\":\"Komende evenementen\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Naam, beschrijving en data van evenement bijwerken\",\"vXPSuB\":\"Profiel bijwerken\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL gekopieerd naar klembord\",\"e5lF64\":\"Gebruiksvoorbeeld\",\"fiV0xj\":\"Gebruikslimiet\",\"sGEOe4\":\"Gebruik een onscherpe versie van de omslagafbeelding als achtergrond\",\"OadMRm\":\"Coverafbeelding gebruiken\",\"7PzzBU\":\"Gebruiker\",\"yDOdwQ\":\"Gebruikersbeheer\",\"Sxm8rQ\":\"Gebruikers\",\"VEsDvU\":\"Gebruikers kunnen hun e-mailadres wijzigen in <0>Profielinstellingen\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"BTW\",\"E/9LUk\":\"Naam locatie\",\"jpctdh\":\"Bekijk\",\"Pte1Hv\":\"Details van deelnemers bekijken\",\"/5PEQz\":\"Evenementpagina bekijken\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Bekijk op Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP check-in lijst\",\"tF+VVr\":\"VIP-ticket\",\"2q/Q7x\":\"Zichtbaarheid\",\"vmOFL/\":\"We konden je betaling niet verwerken. Probeer het opnieuw of neem contact op met de klantenservice.\",\"45Srzt\":\"We konden de categorie niet verwijderen. Probeer het opnieuw.\",\"/DNy62\":[\"We konden geen tickets vinden die overeenkomen met \",[\"0\"]],\"1E0vyy\":\"We konden de gegevens niet laden. Probeer het opnieuw.\",\"NmpGKr\":\"We konden de categorieën niet opnieuw ordenen. Probeer het opnieuw.\",\"BJtMTd\":\"We raden afmetingen aan van 2160px bij 1080px en een maximale bestandsgrootte van 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"We konden je betaling niet bevestigen. Probeer het opnieuw of neem contact op met de klantenservice.\",\"Gspam9\":\"We zijn je bestelling aan het verwerken. Even geduld alstublieft...\",\"LuY52w\":\"Welkom aan boord! Log in om verder te gaan.\",\"dVxpp5\":[\"Welkom terug\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Wat zijn gelaagde producten?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Wat is een categorie?\",\"gxeWAU\":\"Op welke producten is deze code van toepassing?\",\"hFHnxR\":\"Op welke producten is deze code van toepassing? (Geldt standaard voor alle)\",\"AeejQi\":\"Op welke producten moet deze capaciteit van toepassing zijn?\",\"Rb0XUE\":\"Hoe laat kom je aan?\",\"5N4wLD\":\"Wat voor vraag is dit?\",\"gyLUYU\":\"Als deze optie is ingeschakeld, worden facturen gegenereerd voor ticketbestellingen. Facturen worden samen met de e-mail ter bevestiging van de bestelling verzonden. Bezoekers kunnen hun facturen ook downloaden van de bestelbevestigingspagina.\",\"D3opg4\":\"Als offline betalingen zijn ingeschakeld, kunnen gebruikers hun bestellingen afronden en hun tickets ontvangen. Hun tickets zullen duidelijk aangeven dat de bestelling niet betaald is en de check-in tool zal het check-in personeel informeren als een bestelling betaald moet worden.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Welke tickets moeten aan deze inchecklijst worden gekoppeld?\",\"S+OdxP\":\"Wie organiseert dit evenement?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Aan wie moet deze vraag worden gesteld?\",\"VxFvXQ\":\"Widget insluiten\",\"v1P7Gm\":\"Widget instellingen\",\"b4itZn\":\"Werken\",\"hqmXmc\":\"Werken...\",\"+G/XiQ\":\"Jaar tot nu toe\",\"l75CjT\":\"Ja\",\"QcwyCh\":\"Ja, verwijder ze\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Je wijzigt je e-mailadres in <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Je bent offline\",\"sdB7+6\":\"Je kunt een promotiecode maken die gericht is op dit product op de\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Je kunt het producttype niet wijzigen omdat er deelnemers aan dit product zijn gekoppeld.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Je kunt deelnemers met onbetaalde bestellingen niet inchecken. Je kunt deze instelling wijzigen in de evenementinstellingen.\",\"c9Evkd\":\"Je kunt de laatste categorie niet verwijderen.\",\"6uwAvx\":\"Je kunt dit prijsniveau niet verwijderen omdat er al producten voor dit niveau worden verkocht. In plaats daarvan kun je het verbergen.\",\"tFbRKJ\":\"Je kunt de rol of status van de accounteigenaar niet bewerken.\",\"fHfiEo\":\"Je kunt een handmatig aangemaakte bestelling niet terugbetalen.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Je hebt toegang tot meerdere accounts. Kies er een om verder te gaan.\",\"Z6q0Vl\":\"Je hebt deze uitnodiging al geaccepteerd. Log in om verder te gaan.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Je hebt geen in behandeling zijnde e-mailwijziging.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Je hebt geen tijd meer om je bestelling af te ronden.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"U moet erkennen dat deze e-mail geen promotie is\",\"3ZI8IL\":\"U moet akkoord gaan met de algemene voorwaarden\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Je moet een ticket aanmaken voordat je handmatig een genodigde kunt toevoegen.\",\"jE4Z8R\":\"Je moet minstens één prijsniveau hebben\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Je moet een bestelling handmatig als betaald markeren. Dit kun je doen op de pagina Bestelling beheren.\",\"L/+xOk\":\"Je hebt een ticket nodig voordat je een inchecklijst kunt maken.\",\"Djl45M\":\"U hebt een product nodig voordat u een capaciteitstoewijzing kunt maken.\",\"y3qNri\":\"Je hebt minstens één product nodig om te beginnen. Gratis, betaald of laat de gebruiker beslissen wat hij wil betalen.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Je accountnaam wordt gebruikt op evenementpagina's en in e-mails.\",\"veessc\":\"Je bezoekers verschijnen hier zodra ze zich hebben geregistreerd voor je evenement. Je kunt deelnemers ook handmatig toevoegen.\",\"Eh5Wrd\":\"Je geweldige website 🎉\",\"lkMK2r\":\"Uw gegevens\",\"3ENYTQ\":[\"Uw verzoek om uw e-mail te wijzigen in <0>\",[\"0\"],\" is in behandeling. Controleer uw e-mail om te bevestigen\"],\"yZfBoy\":\"Uw bericht is verzonden\",\"KSQ8An\":\"Uw bestelling\",\"Jwiilf\":\"Uw bestelling is geannuleerd\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Je bestellingen verschijnen hier zodra ze binnenkomen.\",\"9TO8nT\":\"Uw wachtwoord\",\"P8hBau\":\"Je betaling wordt verwerkt.\",\"UdY1lL\":\"Uw betaling is niet gelukt, probeer het opnieuw.\",\"fzuM26\":\"Uw betaling is mislukt. Probeer het opnieuw.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Je terugbetaling wordt verwerkt.\",\"IFHV2p\":\"Uw ticket voor\",\"x1PPdr\":\"Postcode\",\"BM/KQm\":\"Postcode\",\"+LtVBt\":\"Postcode\",\"25QDJ1\":\"- Klik om te publiceren\",\"WOyJmc\":\"- Klik om te verwijderen\",\"ncwQad\":\"(leeg)\",\"B/gRsg\":\"(geen)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" is al ingecheckt\"],\"3beCx0\":[[\"0\"],\" <0>ingecheckt\"],\"S4PqS9\":[[\"0\"],\" Actieve webhooks\"],\"6MIiOI\":[\"nog \",[\"0\"]],\"COnw8D\":[[\"0\"],\" logo\"],\"xG9N0H\":[[\"0\"],\" van \",[\"1\"],\" plaatsen zijn bezet.\"],\"B7pZfX\":[[\"0\"],\" organisatoren\"],\"rZTf6P\":[\"Nog \",[\"0\"],\" plaatsen\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"dtXkP9\":[[\"0\"],\" aankomende data\"],\"30bTiU\":[[\"activeCount\"],\" ingeschakeld\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" deelnemers zijn ingeschreven voor deze sessie.\"],\"TjbIUI\":[[\"availableCount\"],\" van \",[\"totalCount\"],\" beschikbaar\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" ingecheckt\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" u geleden\"],\"NRSLBe\":[[\"diffMin\"],\" min geleden\"],\"iYfwJE\":[[\"diffSec\"],\" sec geleden\"],\"OJnhhX\":[[\"eventCount\"],\" evenementen\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" deelnemers zijn ingeschreven over de betrokken sessies.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" tickettypen\"],\"0cLzoF\":[[\"totalOccurrences\"],\" data\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessies verspreid over \",[\"0\"],\" data (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sessie\"],\"other\":[\"#\",\" sessies\"]}],\" per dag)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Belasting/Kosten\",\"B1St2O\":\"<0>Check-in lijsten helpen u de evenementtoegang te beheren per dag, gebied of tickettype. U kunt tickets koppelen aan specifieke lijsten zoals VIP-zones of Dag 1 passen en een beveiligde check-in link delen met personeel. Geen account vereist. Check-in werkt op mobiel, desktop of tablet, met behulp van een apparaatcamera of HID USB-scanner. \",\"v9VSIS\":\"<0>Stel een enkele totale aanwezigheidslimiet in die van toepassing is op meerdere tickettypen tegelijk.<1>Als u bijvoorbeeld een <2>Dagpas en een <3>Volledig Weekend ticket koppelt, halen ze beide uit dezelfde pool van plaatsen. Zodra de limiet is bereikt, stoppen alle gekoppelde tickets automatisch met verkopen.\",\"vKXqag\":\"<0>Dit is de standaardhoeveelheid voor alle data. De capaciteit per datum kan de beschikbaarheid verder beperken op de <1>pagina Sessieplanning.\",\"ZnVt5v\":\"<0>Webhooks stellen externe services direct op de hoogte wanneer er iets gebeurt, zoals het toevoegen van een nieuwe deelnemer aan je CRM of mailinglijst na registratie, en zorgen zo voor naadloze automatisering.<1>Gebruik diensten van derden zoals <2>Zapier, <3>IFTTT of <4>Make om aangepaste workflows te maken en taken te automatiseren.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" tegen de huidige koers\"],\"M2DyLc\":\"1 Actieve webhook\",\"6hIk/x\":\"1 deelnemer is ingeschreven over de betrokken sessies.\",\"qOyE2U\":\"1 deelnemer is ingeschreven voor deze sessie.\",\"943BwI\":\"1 dag na de einddatum\",\"yj3N+g\":\"1 dag na de startdatum\",\"Z3etYG\":\"1 dag voor het evenement\",\"szSnlj\":\"1 uur voor het evenement\",\"yTsaLw\":\"1 ticket\",\"nz96Ue\":\"1 tickettype\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 week voor het evenement\",\"09VFYl\":\"12 tickets aangeboden\",\"HR/cvw\":\"Voorbeeldstraat 123\",\"dgKxZ5\":\"135+ valuta's en 40+ betaalmethoden\",\"kMU5aM\":\"Een annuleringsmelding is verzonden naar\",\"o++0qa\":\"een wijziging in de duur\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Er is een nieuwe verificatiecode naar je e-mail verzonden\",\"sr2Je0\":\"een verschuiving in begin-/eindtijden\",\"/z/bH1\":\"Een korte beschrijving van je organisator die aan je gebruikers wordt getoond.\",\"aS0jtz\":\"Verlaten\",\"uyJsf6\":\"Over\",\"JvuLls\":\"Kosten absorberen\",\"lk74+I\":\"Kosten absorberen\",\"1uJlG9\":\"Accentkleur\",\"g3UF2V\":\"Accepteren\",\"K5+3xg\":\"Uitnodiging accepteren\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Accountinformatie\",\"EHNORh\":\"Account niet gevonden\",\"bPwFdf\":\"Accounts\",\"AhwTa1\":\"Actie vereist: BTW-informatie nodig\",\"APyAR/\":\"Actieve evenementen\",\"kCl6ja\":\"Actieve betaalmethoden\",\"XJOV1Y\":\"Activiteit\",\"0YEoxS\":\"Datum toevoegen\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Eén datum toevoegen\",\"CjvTPJ\":\"Nog een tijd toevoegen\",\"0XCduh\":\"Voeg ten minste één tijd toe\",\"/chGpa\":\"Voeg verbindingsgegevens toe voor het online evenement.\",\"UWWRyd\":\"Voeg aangepaste vragen toe om extra informatie te verzamelen tijdens het afrekenen\",\"Z/dcxc\":\"Datum toevoegen\",\"Q219NT\":\"Data toevoegen\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Locatie toevoegen\",\"VX6WUv\":\"Locatie toevoegen\",\"GCQlV2\":\"Voeg meerdere tijden toe als je meerdere sessies per dag organiseert.\",\"7JF9w9\":\"Vraag toevoegen\",\"NLbIb6\":\"Voeg deze deelnemer toch toe (capaciteit overschrijven)\",\"6PNlRV\":\"Voeg dit evenement toe aan je agenda\",\"BGD9Yt\":\"Tickets toevoegen\",\"uIv4Op\":\"Voeg trackingpixels toe aan je openbare evenementpagina's en organisatorhomepage. Er wordt een cookie-toestemmingsbanner getoond aan bezoekers wanneer tracking actief is.\",\"QN2F+7\":\"Webhook toevoegen\",\"NsWqSP\":\"Voeg je sociale media en website-URL toe. Deze worden weergegeven op je openbare organisatorpagina.\",\"bVjDs9\":\"Extra kosten\",\"MKqSg4\":\"Beheerderstoegang vereist\",\"0Zypnp\":\"Beheerders Dashboard\",\"YAV57v\":\"Affiliate\",\"I+utEq\":\"Affiliatecode kan niet worden gewijzigd\",\"/jHBj5\":\"Affiliate succesvol aangemaakt\",\"uCFbG2\":\"Affiliate succesvol verwijderd\",\"ld8I+f\":\"Affiliateprogramma\",\"a41PKA\":\"Affiliateverkopen worden bijgehouden\",\"mJJh2s\":\"Affiliateverkopen worden niet bijgehouden. Dit deactiveert de affiliate.\",\"jabmnm\":\"Affiliate succesvol bijgewerkt\",\"CPXP5Z\":\"Affiliates\",\"9Wh+ug\":\"Affiliates geëxporteerd\",\"3cqmut\":\"Affiliates helpen je om verkopen van partners en influencers bij te houden. Maak affiliatecodes aan en deel ze om prestaties te monitoren.\",\"z7GAMJ\":\"alle\",\"N40H+G\":\"Alle\",\"7rLTkE\":\"Alle gearchiveerde evenementen\",\"gKq1fa\":\"Alle deelnemers\",\"63gRoO\":\"Alle deelnemers van de geselecteerde sessies\",\"uWxIoH\":\"Alle deelnemers van deze sessie\",\"pMLul+\":\"Alle valuta's\",\"sgUdRZ\":\"Alle data\",\"e4q4uO\":\"Alle data\",\"ZS/D7f\":\"Alle afgelopen evenementen\",\"QsYjci\":\"Alle evenementen\",\"31KB8w\":\"Alle mislukte taken verwijderd\",\"D2g7C7\":\"Alle taken in wachtrij voor opnieuw proberen\",\"B4RFBk\":\"Alle overeenkomende data\",\"F1/VgK\":\"Alle sessies\",\"OpWjMq\":\"Alle sessies\",\"Sxm1lO\":\"Alle statussen\",\"dr7CWq\":\"Alle aankomende evenementen\",\"GpT6Uf\":\"Sta deelnemers toe om hun ticketinformatie (naam, e-mail) bij te werken via een beveiligde link die met hun orderbevestiging wordt verzonden.\",\"F3mW5G\":\"Klanten toestaan zich aan te melden voor een wachtlijst wanneer dit product is uitverkocht\",\"c4uJfc\":\"Bijna klaar! We wachten alleen nog tot je betaling is verwerkt. Dit duurt slechts enkele seconden.\",\"ocS8eq\":[\"Heeft u al een account? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Al binnen\",\"/H326L\":\"Al terugbetaald\",\"USEpOK\":\"Gebruik je Stripe al bij een andere organisator? Hergebruik die verbinding.\",\"RtxQTF\":\"Deze bestelling ook annuleren\",\"jkNgQR\":\"Deze bestelling ook terugbetalen\",\"xYqsHg\":\"Altijd beschikbaar\",\"Wvrz79\":\"Betaald bedrag\",\"Zkymb9\":\"Een e-mailadres om aan deze affiliate te koppelen. De affiliate wordt niet op de hoogte gesteld.\",\"vRznIT\":\"Er is een fout opgetreden tijdens het controleren van de exportstatus.\",\"eusccx\":\"Een optioneel bericht om weer te geven op het uitgelichte product, bijv. \\\"Snel uitverkocht 🔥\\\" of \\\"Beste waarde\\\"\",\"5GJuNp\":[\"en nog \",[\"0\"],\"...\"],\"QNrkms\":\"Antwoord succesvol bijgewerkt.\",\"+qygei\":\"Antwoorden\",\"GK7Lnt\":\"Antwoorden bij afrekenen (bv. maaltijdkeuze)\",\"lE8PgT\":\"Data die je handmatig hebt aangepast, blijven behouden.\",\"vP3Nzg\":[\"Van toepassing op \",[\"0\"],\" niet-geannuleerde data die momenteel op deze pagina geladen zijn.\"],\"kkVyZZ\":\"Geldt voor iedereen die de check-in link opent zonder aangemeld te zijn. Aangemelde teamleden zien altijd alles.\",\"je4muG\":[\"Van toepassing op elke \",[\"0\"],\" niet-geannuleerde datum in dit evenement — inclusief data die momenteel niet geladen zijn.\"],\"YIIQtt\":\"Wijzigingen toepassen\",\"NzWX1Y\":\"Toepassen op\",\"Ps5oDT\":\"Toepassen op alle tickets\",\"261RBr\":\"Bericht goedkeuren\",\"naCW6Z\":\"April\",\"B495Gs\":\"Archiveren\",\"5sNliy\":\"Evenement archiveren\",\"BrwnrJ\":\"Organisator archiveren\",\"E5eghW\":\"Archiveer dit evenement om het voor het publiek te verbergen. U kunt het later herstellen.\",\"eqFkeI\":\"Archiveer deze organisator. Dit archiveert ook alle evenementen van deze organisator.\",\"BzcxWv\":\"Gearchiveerde organisatoren\",\"9cQBd6\":\"Weet u zeker dat u dit evenement wilt archiveren? Het zal niet langer zichtbaar zijn voor het publiek.\",\"Trnl3E\":\"Weet u zeker dat u deze organisator wilt archiveren? Dit archiveert ook alle evenementen van deze organisator.\",\"wOvn+e\":[\"Weet je zeker dat je \",[\"count\"],\" datum/data wilt annuleren? Betrokken deelnemers worden per e-mail op de hoogte gebracht.\"],\"GTxE0U\":\"Weet je zeker dat je deze datum wilt annuleren? Betrokken deelnemers worden per e-mail op de hoogte gebracht.\",\"VkSk/i\":\"Weet u zeker dat u dit geplande bericht wilt annuleren?\",\"0aVEBY\":\"Weet u zeker dat u alle mislukte taken wilt verwijderen?\",\"LchiNd\":\"Weet je zeker dat je deze affiliate wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\",\"vPeW/6\":\"Weet u zeker dat u deze configuratie wilt verwijderen? Dit kan van invloed zijn op accounts die deze gebruiken.\",\"h42Hc/\":\"Weet je zeker dat je deze datum wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\",\"JmVITJ\":\"Weet je zeker dat je deze sjabloon wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt en e-mails zullen terugvallen op de standaardsjabloon.\",\"aLS+A6\":\"Weet je zeker dat je deze sjabloon wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt en e-mails zullen terugvallen op de organisator- of standaardsjabloon.\",\"5H3Z78\":\"Weet je zeker dat je deze webhook wilt verwijderen?\",\"147G4h\":\"Weet u zeker dat u wilt vertrekken?\",\"VDWChT\":\"Weet je zeker dat je deze organisator als concept wilt markeren? De organisatorpagina wordt dan onzichtbaar voor het publiek.\",\"pWtQJM\":\"Weet je zeker dat je deze organisator openbaar wilt maken? De organisatorpagina wordt dan zichtbaar voor het publiek.\",\"EOqL/A\":\"Weet je zeker dat je deze persoon een plek wilt aanbieden? Ze ontvangen een e-mailmelding.\",\"yAXqWW\":\"Weet je zeker dat je deze datum definitief wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\",\"WFHOlF\":\"Weet je zeker dat je dit evenement wilt publiceren? Eenmaal gepubliceerd is het zichtbaar voor het publiek.\",\"4TNVdy\":\"Weet je zeker dat je dit organisatorprofiel wilt publiceren? Eenmaal gepubliceerd is het zichtbaar voor het publiek.\",\"8x0pUg\":\"Weet u zeker dat u dit item van de wachtlijst wilt verwijderen?\",\"cDtoWq\":[\"Weet u zeker dat u de orderbevestiging opnieuw wilt verzenden naar \",[\"0\"],\"?\"],\"xeIaKw\":[\"Weet u zeker dat u het ticket opnieuw wilt verzenden naar \",[\"0\"],\"?\"],\"BjbocR\":\"Weet u zeker dat u dit evenement wilt herstellen?\",\"7MjfcR\":\"Weet u zeker dat u deze organisator wilt herstellen?\",\"ExDt3P\":\"Weet je zeker dat je de publicatie van dit evenement wilt ongedaan maken? Het is dan niet meer zichtbaar voor het publiek.\",\"5Qmxo/\":\"Weet je zeker dat je de publicatie van dit organisatorprofiel wilt ongedaan maken? Het is dan niet meer zichtbaar voor het publiek.\",\"Uqefyd\":\"Bent u BTW-geregistreerd in de EU?\",\"+QARA4\":\"Kunst\",\"tLf3yJ\":\"Aangezien uw bedrijf gevestigd is in Ierland, is Ierse BTW van 23% automatisch van toepassing op alle platformkosten.\",\"tMeVa/\":\"Vraag naar naam en email voor elk gekocht ticket\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Plan toewijzen\",\"xdiER7\":\"Toegewezen niveau\",\"F2rX0R\":\"Er moet minstens één evenement type worden geselecteerd\",\"BCmibk\":\"Pogingen\",\"6PecK3\":\"Aanwezigheid en incheckpercentages voor alle evenementen\",\"K2tp3v\":\"deelnemer\",\"AJ4rvK\":\"Deelnemer geannuleerd\",\"qvylEK\":\"Deelnemer Gemaakt\",\"Aspq3b\":\"Verzameling deelnemergegevens\",\"fpb0rX\":\"Deelnemergegevens gekopieerd van bestelling\",\"0R3Y+9\":\"Deelnemer E-mail\",\"94aQMU\":\"Deelnemersinformatie\",\"KkrBiR\":\"Verzameling deelnemersinformatie\",\"av+gjP\":\"Deelnemer Naam\",\"sjPjOg\":\"Notities deelnemer\",\"cosfD8\":\"Deelnemersstatus\",\"D2qlBU\":\"Deelnemer bijgewerkt\",\"22BOve\":\"Deelnemer succesvol bijgewerkt\",\"x8Vnvf\":\"Ticket van deelnemer niet opgenomen in deze lijst\",\"/Ywywr\":\"deelnemers\",\"zLRobu\":\"deelnemers ingecheckt\",\"k3Tngl\":\"Geëxporteerde bezoekers\",\"UoIRW8\":\"Deelnemers geregistreerd\",\"5UbY+B\":\"Deelnemers met een specifiek ticket\",\"4HVzhV\":\"Deelnemers:\",\"HVkhy2\":\"Attributie-analyse\",\"dMMjeD\":\"Attributie-uitsplitsing\",\"1oPDuj\":\"Attributiewaarde\",\"DBHTm/\":\"Augustus\",\"JgREph\":\"Automatisch aanbod is ingeschakeld\",\"V7Tejz\":\"Wachtlijst automatisch verwerken\",\"PZ7FTW\":\"Automatisch gedetecteerd op basis van achtergrondkleur, maar kan worden overschreven\",\"zlnTuI\":\"Bied automatisch tickets aan de volgende persoon aan wanneer er capaciteit beschikbaar komt. Indien uitgeschakeld, kun je de wachtlijst handmatig verwerken via de Wachtlijst-pagina.\",\"csDS2L\":\"Beschikbaar\",\"clF06r\":\"Beschikbaar voor terugbetaling\",\"NB5+UG\":\"Beschikbare Tokens\",\"L+wGOG\":\"In afwachting\",\"qcw2OD\":\"Betaling open\",\"kNmmvE\":\"Awesome Events B.V.\",\"iH8pgl\":\"Terug\",\"TeSaQO\":\"Terug naar Accounts\",\"X7Q/iM\":\"Terug naar agenda\",\"kYqM1A\":\"Terug naar evenement\",\"s5QRF3\":\"Terug naar berichten\",\"td/bh+\":\"Terug naar rapporten\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Basisprijs\",\"hviJef\":\"Gebaseerd op de algemene verkoopperiode hierboven, niet per datum\",\"jIPNJG\":\"Basisinformatie\",\"UabgBd\":\"Hoofdtekst is verplicht\",\"HWXuQK\":\"Voeg deze pagina toe aan je bladwijzers om je bestelling op elk moment te beheren.\",\"CUKVDt\":\"Pas je tickets aan met een eigen logo, kleuren en voettekst.\",\"4BZj5p\":\"Ingebouwde fraudebescherming\",\"cr7kGH\":\"Bulk bewerken\",\"1Fbd6n\":\"Data in bulk bewerken\",\"Eq6Tu9\":\"Bulkupdate mislukt.\",\"9N+p+g\":\"Zakelijk\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Bedrijfsnaam\",\"bv6RXK\":\"Knop Label\",\"ChDLlO\":\"Knoptekst\",\"BUe8Wj\":\"Koper betaalt\",\"qF1qbA\":\"Kopers zien een schone prijs. De platformkosten worden afgetrokken van uw uitbetaling.\",\"dg05rc\":\"Door trackingpixels toe te voegen, erken je dat jij en dit platform gezamenlijke verwerkingsverantwoordelijken zijn voor de verzamelde gegevens. Jij bent verantwoordelijk om te zorgen voor een rechtmatige grondslag voor deze verwerking onder de geldende privacywetgeving (AVG, CCPA, enz.).\",\"DFqasq\":[\"Door verder te gaan, gaat u akkoord met de <0>\",[\"0\"],\" Servicevoorwaarden\"],\"wVSa+U\":\"Per dag van de maand\",\"0MnNgi\":\"Per dag van de week\",\"CetOZE\":\"Per tickettype\",\"lFdbRS\":\"Applicatiekosten omzeilen\",\"AjVXBS\":\"Agenda\",\"alkXJ5\":\"Agendaweergave\",\"2VLZwd\":\"Call-to-Action Knop\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Cameratoegang geweigerd. <0>Opnieuw toegang vragen, of geef deze pagina toegang tot de camera via de browserinstellingen.\",\"D02dD9\":\"Campagne\",\"RRPA79\":\"Inchecken niet mogelijk\",\"OcVwAd\":[[\"count\"],\" datum/data annuleren\"],\"H4nE+E\":\"Alle producten annuleren en terugzetten in de beschikbare pool\",\"Py78q9\":\"Datum annuleren\",\"tOXAdc\":\"Annuleren zal alle deelnemers geassocieerd met deze bestelling annuleren en de tickets terugzetten in de beschikbare pool.\",\"vev1Jl\":\"Annulering\",\"Ha17hq\":[[\"0\"],\" datum/data geannuleerd\"],\"01sEfm\":\"Kan de standaardsysteemconfiguratie niet verwijderen\",\"VsM1HH\":\"Capaciteitstoewijzingen\",\"9bIMVF\":\"Capaciteitsbeheer\",\"H7K8og\":\"Capaciteit moet 0 of hoger zijn\",\"nzao08\":\"capaciteitsupdates\",\"4cp9NP\":\"Gebruikte capaciteit\",\"K7tIrx\":\"Categorie\",\"o+XJ9D\":\"Wijzigen\",\"kJkjoB\":\"Duur wijzigen\",\"J0KExZ\":\"Wijzig de deelnemerslimiet\",\"CIHJJf\":\"Wachtlijstinstellingen wijzigen\",\"B5icLR\":[\"Duur gewijzigd voor \",[\"count\"],\" datum/data\"],\"Kb+0BT\":\"Betalingen\",\"2tbLdK\":\"Liefdadigheid\",\"BPWGKn\":\"Inchecken\",\"6uFFoY\":\"Uitchecken\",\"FjAlwK\":[\"Bekijk dit evenement: \",[\"0\"]],\"v4fiSg\":\"Controleer je e-mail\",\"51AsAN\":\"Controleer je inbox! Als er tickets gekoppeld zijn aan dit e-mailadres, ontvang je een link om ze te bekijken.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Gecreëerd inchecken\",\"F4SRy3\":\"Check-in verwijderd\",\"as6XfO\":[\"Check-in van \",[\"0\"],\" is ongedaan gemaakt\"],\"9s/wrQ\":\"Check-in geschiedenis\",\"Wwztk4\":\"Check-in lijst\",\"9gPPUY\":\"Check-In Lijst Aangemaakt!\",\"dwjiJt\":\"Check-in lijst info\",\"7od0PV\":\"check-in lijsten\",\"f2vU9t\":\"Inchecklijsten\",\"XprdTn\":\"Check-in navigatie\",\"5tV1in\":\"Check-in voortgang\",\"SHJwyq\":\"Incheckpercentage\",\"qCqdg6\":\"Incheck Status\",\"cKj6OE\":\"Incheckoverzicht\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Ingecheckt\",\"DM4gBB\":\"Chinees (Traditioneel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Kies een andere actie\",\"fkb+y3\":\"Kies een opgeslagen locatie om toe te passen.\",\"Zok1Gx\":\"Kies een organisator\",\"pkk46Q\":\"Kies een organisator\",\"Crr3pG\":\"Kies agenda\",\"LAW8Vb\":\"Kies de standaardinstelling voor nieuwe evenementen. Dit kan per evenement worden overschreven.\",\"pjp2n5\":\"Kies wie de platformkosten betaalt. Dit heeft geen invloed op extra kosten die u in uw accountinstellingen hebt geconfigureerd.\",\"xCJdfg\":\"Wissen\",\"QyOWu9\":\"Locatie wissen — terugvallen op de standaard van het evenement\",\"V8yTm6\":\"Zoekopdracht wissen\",\"kmnKnX\":\"Bij wissen wordt elke per-sessie overschrijving verwijderd. De betreffende sessies vallen terug op de standaardlocatie van het evenement.\",\"/o+aQX\":\"Klik om te annuleren\",\"gD7WGV\":\"Klik om te heropenen voor nieuwe verkoop\",\"CySr+W\":\"Klik om notities te bekijken\",\"RG3szS\":\"sluiten\",\"RWw9Lg\":\"Sluit venster\",\"XwdMMg\":\"Code mag alleen letters, cijfers, streepjes en underscores bevatten\",\"+yMJb7\":\"Code is verplicht\",\"m9SD3V\":\"Code moet minimaal 3 tekens bevatten\",\"V1krgP\":\"Code mag maximaal 20 tekens bevatten\",\"psqIm5\":\"Werk samen met je team om geweldige evenementen te organiseren.\",\"4bUH9i\":\"Verzamel deelnemersgegevens voor elk gekocht ticket.\",\"TkfG8v\":\"Gegevens per bestelling verzamelen\",\"96ryID\":\"Gegevens per ticket verzamelen\",\"FpsvqB\":\"Kleurmodus\",\"jEu4bB\":\"Kolommen\",\"CWk59I\":\"Comedy\",\"rPA+Gc\":\"Communicatievoorkeuren\",\"zFT5rr\":\"voltooid\",\"bUQMpb\":\"Stripe-installatie voltooien\",\"744BMm\":\"Voltooi je bestelling om je tickets veilig te stellen. Dit aanbod is tijdelijk, dus wacht niet te lang.\",\"5YrKW7\":\"Voltooi je betaling om je tickets veilig te stellen.\",\"xGU92i\":\"Voltooi uw profiel om deel te nemen aan het team.\",\"QOhkyl\":\"Opstellen\",\"ih35UP\":\"Conferentiecentrum\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuratie toegewezen\",\"X1zdE7\":\"Configuratie succesvol aangemaakt\",\"mLBUMQ\":\"Configuratie succesvol verwijderd\",\"UIENhw\":\"Configuratienamen zijn zichtbaar voor eindgebruikers. Vaste kosten worden omgerekend naar de ordervaluta tegen de huidige wisselkoers.\",\"eeZdaB\":\"Configuratie succesvol bijgewerkt\",\"3cKoxx\":\"Configuraties\",\"8v2LRU\":\"Configureer evenementdetails, locatie, afrekenopties en e-mailmeldingen.\",\"raw09+\":\"Configureer hoe deelnemergegevens worden verzameld tijdens het afrekenen\",\"FI60XC\":\"Belastingen en kosten configureren\",\"av6ukY\":\"Configureer welke producten beschikbaar zijn voor deze sessie en pas eventueel de prijzen aan.\",\"NGXKG/\":\"Bevestig e-mailadres\",\"JRQitQ\":\"Bevestig nieuw wachtwoord\",\"Auz0Mz\":\"Bevestig je e-mailadres om toegang te krijgen tot alle functies.\",\"7+grte\":\"Bevestigingsmail verzonden! Controleer je inbox.\",\"n/7+7Q\":\"Bevestiging verzonden naar\",\"x3wVFc\":\"Gefeliciteerd! Je evenement is nu zichtbaar voor het publiek.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Verbind Stripe om sjabloonbewerking van e-mails in te schakelen\",\"LmvZ+E\":\"Verbind Stripe om berichten in te schakelen\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contact \",[\"0\"]],\"41BQ3k\":\"Contact e-mail\",\"KcXRN+\":\"Contact e-mail voor ondersteuning\",\"m8WD6t\":\"Doorgaan met instellen\",\"0GwUT4\":\"Verder naar afrekenen\",\"sBV87H\":\"Ga door naar evenement aanmaken\",\"nKtyYu\":\"Ga door naar de volgende stap\",\"F3/nus\":\"Doorgaan naar betaling\",\"p2FRHj\":\"Bepaal hoe platformkosten worden behandeld voor dit evenement\",\"NqfabH\":\"Bepaal wie er toegang heeft voor deze datum\",\"fmYxZx\":\"Wie er wanneer binnenkomt\",\"1JnTgU\":\"Gekopieerd van boven\",\"FxVG/l\":\"Gekopieerd naar klembord\",\"PiH3UR\":\"Gekopieerd!\",\"4i7smN\":\"Account-ID kopiëren\",\"uUPbPg\":\"Kopieer affiliatelink\",\"iVm46+\":\"Kopieer code\",\"cF2ICc\":\"Klantlink kopiëren\",\"+2ZJ7N\":\"Kopieer gegevens naar eerste deelnemer\",\"ZN1WLO\":\"Kopieer Email\",\"y1eoq1\":\"Link kopiëren\",\"tUGbi8\":\"Mijn gegevens kopiëren naar:\",\"y22tv0\":\"Kopieer deze link om hem overal te delen\",\"/4gGIX\":\"Kopiëren naar klembord\",\"e0f4yB\":\"Kan locatie niet verwijderen\",\"vkiDx2\":\"Kon de bulkupdate niet voorbereiden.\",\"KOavaU\":\"Kan adresgegevens niet ophalen\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Kan datum niet opslaan\",\"eeLExK\":\"Kan locatie niet opslaan\",\"P0rbCt\":\"Omslagafbeelding\",\"60u+dQ\":\"Omslagafbeelding wordt bovenaan je evenementpagina weergegeven\",\"2NLjA6\":\"De omslagafbeelding wordt bovenaan je organisatorpagina weergegeven\",\"GkrqoY\":\"Geldt voor elk ticket\",\"zg4oSu\":[\"Maak \",[\"0\"],\" Sjabloon\"],\"RKKhnW\":\"Maak een aangepaste widget om tickets te verkopen op je site.\",\"6sk7PP\":\"Een vast aantal maken\",\"PhioFp\":\"Maak een nieuwe check-in lijst voor een actieve sessie of neem contact op met de organisator als je denkt dat dit een vergissing is.\",\"yIRev4\":\"Maak een wachtwoord aan\",\"j7xZ7J\":\"Maak extra organisatoren aan om afzonderlijke merken, afdelingen of evenementenreeksen onder één account te beheren. Elke organisator heeft zijn eigen evenementen, instellingen en openbare pagina.\",\"xfKgwv\":\"Affiliate aanmaken\",\"tudG8q\":\"Maak en configureer tickets en merchandise voor verkoop.\",\"YAl9Hg\":\"Configuratie aanmaken\",\"BTne9e\":\"Maak aangepaste e-mailsjablonen voor dit evenement die de organisator-standaarden overschrijven\",\"YIDzi/\":\"Maak Aangepaste Sjabloon\",\"tsGqx5\":\"Datum aanmaken\",\"Nc3l/D\":\"Maak kortingen, toegangscodes voor verborgen tickets en speciale aanbiedingen.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Aanmaken voor deze datum\",\"eWEV9G\":\"Nieuw wachtwoord aanmaken\",\"wl2iai\":\"Planning aanmaken\",\"8AiKIu\":\"Maak ticket of product aan\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Maak traceerbare links om partners te belonen die je evenement promoten.\",\"dkAPxi\":\"Webhook maken\",\"5slqwZ\":\"Maak je evenement aan\",\"JQNMrj\":\"Maak je eerste evenement\",\"ZCSSd+\":\"Maak je eigen evenement\",\"67NsZP\":\"Evenement aanmaken...\",\"H34qcM\":\"Organisator aanmaken...\",\"1YMS+X\":\"Je evenement wordt aangemaakt, even geduld\",\"yiy8Jt\":\"Je organisatorprofiel wordt aangemaakt, even geduld\",\"lfLHNz\":\"CTA label is verplicht\",\"0xLR6W\":\"Momenteel toegewezen\",\"iTvh6I\":\"Momenteel beschikbaar voor aankoop\",\"A42Dqn\":\"Aangepaste branding\",\"Guo0lU\":\"Aangepaste datum en tijd\",\"mimF6c\":\"Aangepast bericht na checkout\",\"WDMdn8\":\"Aangepaste vragen\",\"O6mra8\":\"Aangepaste vragen\",\"axv/Mi\":\"Aangepaste sjabloon\",\"2YeVGY\":\"Klantlink gekopieerd naar klembord\",\"QMHSMS\":\"Klant ontvangt een e-mail ter bevestiging van de terugbetaling\",\"L/Qc+w\":\"E-mailadres van klant\",\"wpfWhJ\":\"Voornaam van klant\",\"GIoqtA\":\"Achternaam van klant\",\"NihQNk\":\"Klanten\",\"7gsjkI\":\"Pas de e-mails aan die naar uw klanten worden verzonden met behulp van Liquid-sjablonen. Deze sjablonen worden gebruikt als standaard voor alle evenementen in uw organisatie.\",\"xJaTUK\":\"Pas de lay-out, kleuren en branding van je evenement homepage aan.\",\"MXZfGN\":\"Pas de vragen tijdens het afrekenen aan om belangrijke informatie van je deelnemers te verzamelen.\",\"iX6SLo\":\"Pas de tekst op de knop 'Doorgaan' aan\",\"pxNIxa\":\"Pas uw e-mailsjabloon aan met Liquid-sjablonen\",\"3trPKm\":\"Pas het uiterlijk van je organisatorpagina aan\",\"U0sC6H\":\"Dagelijks\",\"/gWrVZ\":\"Dagelijkse omzet, belastingen, kosten en terugbetalingen voor alle evenementen\",\"zgCHnE\":\"Dagelijks verkooprapport\",\"nHm0AI\":\"Dagelijkse uitsplitsing naar verkoop, belasting en kosten\",\"1aPnDT\":\"Dans\",\"pvnfJD\":\"Donker\",\"MaB9wW\":\"Datum annulering\",\"e6cAxJ\":\"Datum geannuleerd\",\"81jBnC\":\"Datum succesvol geannuleerd\",\"a/C/6R\":\"Datum succesvol aangemaakt\",\"IW7Q+u\":\"Datum verwijderd\",\"rngCAz\":\"Datum succesvol verwijderd\",\"lnYE59\":\"Datum van het evenement\",\"gnBreG\":\"Datum waarop de bestelling is geplaatst\",\"vHbfoQ\":\"Datum heractiveerd\",\"hvah+S\":\"Datum heropend voor nieuwe verkoop\",\"Ez0YsD\":\"Datum succesvol bijgewerkt\",\"VTsZuy\":\"Data en tijden worden beheerd op de\",\"/ITcnz\":\"dag\",\"H7OUPr\":\"Dag\",\"JtHrX9\":\"Dag van de maand\",\"J/Upwb\":\"dagen\",\"vDVA2I\":\"Dagen van de maand\",\"rDLvlL\":\"Dagen van de week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Weigeren\",\"ovBPCi\":\"Standaard\",\"JtI4vj\":\"Standaard verzameling deelnemersinformatie\",\"ULjv90\":\"Standaardcapaciteit per datum\",\"3R/Tu2\":\"Standaard kostenafhandeling\",\"1bZAZA\":\"Standaardsjabloon wordt gebruikt\",\"HNlEFZ\":\"verwijderen\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[[\"count\"],\" geselecteerde datum/data verwijderen? Data met bestellingen worden overgeslagen. Dit kan niet ongedaan worden gemaakt.\"],\"vu7gDm\":\"Verwijder affiliate\",\"KZN4Lc\":\"Alles verwijderen\",\"6EkaOO\":\"Datum verwijderen\",\"io0G93\":\"Evenement verwijderen\",\"+jw/c1\":\"Verwijder afbeelding\",\"hdyeZ0\":\"Taak verwijderen\",\"xxjZeP\":\"Locatie verwijderen\",\"sY3tIw\":\"Organisator verwijderen\",\"UBv8UK\":\"Definitief verwijderen\",\"dPyJ15\":\"Sjabloon Verwijderen\",\"mxsm1o\":\"Deze vraag verwijderen? Dit kan niet ongedaan worden gemaakt.\",\"snMaH4\":\"Webhook verwijderen\",\"LIZZLY\":[[\"0\"],\" datum/data verwijderd\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deselecteer alles\",\"NvuEhl\":\"Ontwerpelementen\",\"H8kMHT\":\"Geen code ontvangen?\",\"G8KNgd\":\"Andere locatie\",\"E/QGRL\":\"Uitgeschakeld\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Dit bericht negeren\",\"BREO0S\":\"Toon een selectievakje waarmee klanten zich kunnen aanmelden voor marketingcommunicatie van deze evenementenorganisator.\",\"pfa8F0\":\"Weergavenaam\",\"Kdpf90\":\"Niet vergeten!\",\"352VU2\":\"Heeft u geen account? <0>Aanmelden\",\"AXXqG+\":\"Donatie\",\"DPfwMq\":\"Klaar\",\"JoPiZ2\":\"Instructies voor personeel\",\"2+O9st\":\"Download verkoop-, deelnemer- en financiële rapporten voor alle voltooide bestellingen.\",\"eneWvv\":\"Concept\",\"Ts8hhq\":\"Vanwege het hoge risico op spam moet u een Stripe-account verbinden voordat u e-mailsjablonen kunt wijzigen. Dit is om ervoor te zorgen dat alle evenementorganisatoren geverifieerd en verantwoordelijk zijn.\",\"TnzbL+\":\"Vanwege het hoge risico op spam moet je een Stripe-account verbinden voordat je berichten naar deelnemers kunt sturen.\\nDit is om ervoor te zorgen dat alle evenementorganisatoren geverifieerd en verantwoordelijk zijn.\",\"euc6Ns\":\"Dupliceren\",\"YueC+F\":\"Datum dupliceren\",\"KRmTkx\":\"Dupliceer product\",\"Jd3ymG\":\"Duur moet ten minste 1 minuut zijn.\",\"KIjvtr\":\"Nederlands\",\"22xieU\":\"bijv. 180 (3 uur)\",\"/zajIE\":\"bijv. Ochtendsessie\",\"SPKbfM\":\"bijv. Tickets kopen, Nu registreren\",\"fc7wGW\":\"bijv. Belangrijke update over uw tickets\",\"54MPqC\":\"bijv. Standaard, Premium, Enterprise\",\"3RQ81z\":\"Elke persoon ontvangt een e-mail met een gereserveerde plek om de aankoop te voltooien.\",\"5oD9f/\":\"Eerder\",\"LTzmgK\":[\"Bewerk \",[\"0\"],\" Sjabloon\"],\"v4+lcZ\":\"Bewerk affiliate\",\"2iZEz7\":\"Antwoord bewerken\",\"t2bbp8\":\"Deelnemer bewerken\",\"etaWtB\":\"Deelnemergegevens bewerken\",\"+guao5\":\"Configuratie bewerken\",\"1Mp/A4\":\"Datum bewerken\",\"m0ZqOT\":\"Locatie bewerken\",\"8oivFT\":\"Locatie bewerken\",\"vRWOrM\":\"Bestelgegevens bewerken\",\"fW5sSv\":\"Webhook bewerken\",\"nP7CdQ\":\"Webhook bewerken\",\"MRZxAn\":\"Bewerkt\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educatie\",\"iiWXDL\":\"Geschiktheidsfouten\",\"zPiC+q\":\"In Aanmerking Komende Incheck Lijsten\",\"SiVstt\":\"E-mail en geplande berichten\",\"V2sk3H\":\"E-mail & Sjablonen\",\"hbwCKE\":\"E-mailadres gekopieerd naar klembord\",\"dSyJj6\":\"E-mailadressen komen niet overeen\",\"elW7Tn\":\"E-mail Hoofdtekst\",\"ZsZeV2\":\"E-mail is verplicht\",\"Be4gD+\":\"E-mail Voorbeeld\",\"6IwNUc\":\"E-mail Sjablonen\",\"H/UMUG\":\"E-mailverificatie vereist\",\"L86zy2\":\"E-mail succesvol geverifieerd!\",\"FSN4TS\":\"Widget insluiten\",\"z9NkYY\":\"Insluitbare widget\",\"Qj0GKe\":\"Zelfbediening voor deelnemers inschakelen\",\"hEtQsg\":\"Zelfbediening voor deelnemers standaard inschakelen\",\"Upeg/u\":\"Schakel deze sjabloon in voor het verzenden van e-mails\",\"7dSOhU\":\"Wachtlijst inschakelen\",\"RxzN1M\":\"Ingeschakeld\",\"xDr/ct\":\"Einde\",\"sGjBEq\":\"Einddatum & tijd (optioneel)\",\"PKXt9R\":\"Einddatum moet na begindatum liggen\",\"UmzbPa\":\"Einddatum van de sessie\",\"ZayGC7\":\"Eindigen op een datum\",\"48Y16Q\":\"Eindtijd (optioneel)\",\"jpNdOC\":\"Eindtijd van de sessie\",\"TbaYrr\":[\"Geëindigd \",[\"0\"]],\"CFgwiw\":[\"Eindigt \",[\"0\"]],\"SqOIQU\":\"Voer een capaciteitswaarde in of kies onbeperkt.\",\"h37gRz\":\"Voer een label in of kies ervoor om het te verwijderen.\",\"7YZofi\":\"Voer een onderwerp en hoofdtekst in om het voorbeeld te zien\",\"khyScF\":\"Voer een tijd in om mee te verschuiven.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Voer affiliate e-mail in (optioneel)\",\"ARkzso\":\"Voer affiliatenaam in\",\"ej4L8b\":\"Capaciteit invoeren\",\"6KnyG0\":\"Voer e-mail in\",\"INDKM9\":\"Voer e-mailonderwerp in...\",\"xUgUTh\":\"Voer voornaam in\",\"9/1YKL\":\"Voer achternaam in\",\"VpwcSk\":\"Voer nieuw wachtwoord in\",\"kWg31j\":\"Voer unieke affiliatecode in\",\"C3nD/1\":\"Voer je e-mailadres in\",\"VmXiz4\":\"Voer uw e-mailadres in en wij sturen u instructies om uw wachtwoord opnieuw in te stellen.\",\"n9V+ps\":\"Voer je naam in\",\"IdULhL\":\"Voer uw BTW-nummer in inclusief de landcode, zonder spaties (bijv. NL123456789B01, DE123456789)\",\"o21Y+P\":\"items\",\"X88/6w\":\"Inschrijvingen verschijnen hier wanneer klanten zich aanmelden voor de wachtlijst van uitverkochte producten.\",\"LslKhj\":\"Fout bij het laden van logboeken\",\"VCNHvW\":\"Evenement gearchiveerd\",\"ZD0XSb\":\"Evenement succesvol gearchiveerd\",\"WgD6rb\":\"Evenementcategorie\",\"b46pt5\":\"Evenement coverafbeelding\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evenement aangemaakt\",\"1Hzev4\":\"Evenement aangepaste sjabloon\",\"7u9/DO\":\"Evenement succesvol verwijderd\",\"imgKgl\":\"Evenementbeschrijving\",\"kJDmsI\":\"Evenement details\",\"m/N7Zq\":\"Volledig Evenementadres\",\"Nl1ZtM\":\"Evenement Locatie\",\"PYs3rP\":\"Evenementnaam\",\"HhwcTQ\":\"Naam van het evenement\",\"WZZzB6\":\"Evenementnaam is verplicht\",\"Wd5CDM\":\"Evenementnaam moet minder dan 150 tekens bevatten\",\"4JzCvP\":\"Evenement niet beschikbaar\",\"Gh9Oqb\":\"Evenement organisator naam\",\"mImacG\":\"Evenementpagina\",\"Hk9Ki/\":\"Evenement succesvol hersteld\",\"JyD0LH\":\"Evenement instellingen\",\"cOePZk\":\"Evenement Tijd\",\"e8WNln\":\"Tijdzone evenement\",\"GeqWgj\":\"Tijdzone Evenement\",\"XVLu2v\":\"Evenement titel\",\"OfmsI9\":\"Evenement te nieuw\",\"4SILkp\":\"Totalen evenement\",\"YDVUVl\":\"Soorten evenementen\",\"+HeiVx\":\"Evenement bijgewerkt\",\"4K2OjV\":\"Evenementlocatie\",\"19j6uh\":\"Evenementenprestaties\",\"PC3/fk\":\"Evenementen die beginnen in de komende 24 uur\",\"nwiZdc\":[\"Elke \",[\"0\"]],\"2LJU4o\":[\"Elke \",[\"0\"],\" dagen\"],\"yLiYx+\":[\"Elke \",[\"0\"],\" maanden\"],\"nn9ice\":[\"Elke \",[\"0\"],\" weken\"],\"Cdr8f9\":[\"Elke \",[\"0\"],\" weken op \",[\"1\"]],\"GVEHRk\":[\"Elke \",[\"0\"],\" jaar\"],\"fTFfOK\":\"Elke e-mailsjabloon moet een call-to-action knop bevatten die linkt naar de juiste pagina\",\"BVinvJ\":\"Voorbeelden: \\\"Hoe heb je over ons gehoord?\\\", \\\"Bedrijfsnaam voor factuur\\\"\",\"2hGPQG\":\"Voorbeelden: \\\"T-shirt maat\\\", \\\"Maaltijdvoorkeur\\\", \\\"Functietitel\\\"\",\"qNuTh3\":\"Uitzondering\",\"M1RnFv\":\"Verlopen\",\"kF8HQ7\":\"Antwoorden exporteren\",\"2KAI4N\":\"CSV exporteren\",\"JKfSAv\":\"Exporteren mislukt. Probeer het opnieuw.\",\"SVOEsu\":\"Export gestart. Bestand wordt voorbereid...\",\"wuyaZh\":\"Export succesvol\",\"9bpUSo\":\"Affiliates exporteren\",\"jtrqH9\":\"Deelnemers exporteren\",\"R4Oqr8\":\"Exporteren voltooid. Bestand wordt gedownload...\",\"UlAK8E\":\"Orders exporteren\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Mislukt\",\"8uOlgz\":\"Mislukt op\",\"tKcbYd\":\"Mislukte taken\",\"SsI9v/\":\"Bestelling annuleren mislukt. Probeer het opnieuw.\",\"LdPKPR\":\"Toewijzen van configuratie mislukt\",\"PO0cfn\":\"Annuleren van datum mislukt\",\"YUX+f+\":\"Annuleren van data mislukt\",\"SIHgVQ\":\"Bericht annuleren mislukt\",\"cEFg3R\":\"Aanmaken affiliate mislukt\",\"dVgNF1\":\"Kan configuratie niet aanmaken\",\"fAoRRJ\":\"Aanmaken van planning mislukt\",\"U66oUa\":\"Sjabloon maken mislukt\",\"aFk48v\":\"Kan configuratie niet verwijderen\",\"n1CYMH\":\"Verwijderen van datum mislukt\",\"KXv+Qn\":\"Verwijderen van datum mislukt. Er zijn mogelijk bestaande bestellingen.\",\"JJ0uRo\":\"Verwijderen van data mislukt\",\"rgoBnv\":\"Evenement verwijderen mislukt\",\"Zw6LWb\":\"Taak verwijderen mislukt\",\"tq0abZ\":\"Taken verwijderen mislukt\",\"2mkc3c\":\"Organisator verwijderen mislukt\",\"vKMKnu\":\"Vraag verwijderen mislukt\",\"xFj7Yj\":\"Sjabloon verwijderen mislukt\",\"jo3Gm6\":\"Exporteren affiliates mislukt\",\"Jjw03p\":\"Geen deelnemers geëxporteerd\",\"ZPwFnN\":\"Geen orders kunnen exporteren\",\"zGE3CH\":\"Export van rapport mislukt. Probeer het opnieuw.\",\"lS9/aZ\":\"Kan ontvangers niet laden\",\"X4o0MX\":\"Webhook niet geladen\",\"ETcU7q\":\"Kon plek niet aanbieden\",\"5670b9\":\"Tickets aanbieden mislukt\",\"e5KIbI\":\"Heractiveren van datum mislukt\",\"7zyx8a\":\"Verwijderen van wachtlijst mislukt\",\"A/P7PX\":\"Verwijderen van overschrijving mislukt\",\"ogWc1z\":\"Datum heropenen is mislukt\",\"0+iwE5\":\"Vragen herschikken mislukt\",\"EJPAcd\":\"Orderbevestiging opnieuw verzenden mislukt\",\"DjSbj3\":\"Ticket opnieuw verzenden mislukt\",\"YQ3QSS\":\"Opnieuw verzenden verificatiecode mislukt\",\"wDioLj\":\"Taak opnieuw proberen mislukt\",\"DKYTWG\":\"Taken opnieuw proberen mislukt\",\"WRREqF\":\"Opslaan van overschrijving mislukt\",\"sj/eZA\":\"Opslaan van prijsoverschrijving mislukt\",\"780n8A\":\"Opslaan van productinstellingen mislukt\",\"zTkTF3\":\"Sjabloon opslaan mislukt\",\"l6acRV\":\"Kan BTW-instellingen niet opslaan. Probeer het opnieuw.\",\"T6B2gk\":\"Verzenden bericht mislukt. Probeer het opnieuw.\",\"lKh069\":\"Exporttaak niet gestart\",\"t/KVOk\":\"Kan imitatie niet starten. Probeer het opnieuw.\",\"QXgjH0\":\"Kan imitatie niet stoppen. Probeer het opnieuw.\",\"i0QKrm\":\"Bijwerken affiliate mislukt\",\"NNc33d\":\"Antwoord niet bijgewerkt.\",\"E9jY+o\":\"Deelnemer bijwerken mislukt\",\"uQynyf\":\"Kan configuratie niet bijwerken\",\"i2PFQJ\":\"Bijwerken van evenementstatus mislukt\",\"EhlbcI\":\"Bijwerken van berichtenniveau mislukt\",\"rpGMzC\":\"Bestelling bijwerken mislukt\",\"T2aCOV\":\"Bijwerken van organisatorstatus mislukt\",\"Eeo/Gy\":\"Instelling bijwerken mislukt\",\"kqA9lY\":\"Bijwerken van btw-instellingen mislukt\",\"7/9RFs\":\"Afbeelding uploaden mislukt.\",\"nkNfWu\":\"Uploaden van afbeelding mislukt. Probeer het opnieuw.\",\"rxy0tG\":\"Verifiëren e-mail mislukt\",\"QRUpCk\":\"Gezin\",\"5LO38w\":\"Snelle uitbetalingen naar je bank\",\"4lgLew\":\"Februari\",\"9bHCo2\":\"Valuta van de kosten\",\"/sV91a\":\"Kostenafhandeling\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Kosten omzeild\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Bestand is te groot. Maximale grootte is 5MB.\",\"VejKUM\":\"Vul eerst je gegevens hierboven in\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Deelnemers filteren\",\"8OvVZZ\":\"Filter Deelnemers\",\"N/H3++\":\"Filteren op datum\",\"mvrlBO\":\"Filteren op evenement\",\"g+xRXP\":\"Stripe-installatie afronden\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"Eerste\",\"1vBhpG\":\"Eerste deelnemer\",\"4pwejF\":\"Voornaam is verplicht\",\"3lkYdQ\":\"Vaste kosten\",\"6bBh3/\":\"Vaste vergoeding\",\"zWqUyJ\":\"Vaste kosten per transactie\",\"LWL3Bs\":\"Vaste vergoeding moet 0 of hoger zijn\",\"0RI8m4\":\"Flitser uit\",\"q0923e\":\"Flitser aan\",\"lWxAUo\":\"Eten & Drinken\",\"nFm+5u\":\"Voettekst\",\"a8nooQ\":\"Vierde\",\"mob/am\":\"Vr\",\"wtuVU4\":\"Frequentie\",\"xVhQZV\":\"Vr\",\"39y5bn\":\"Vrijdag\",\"f5UbZ0\":\"Volledig data-eigendom\",\"MY2SVM\":\"Volledige terugbetaling\",\"UsIfa8\":\"Volledig opgelost adres\",\"PGQLdy\":\"toekomst\",\"8N/j1s\":\"Alleen toekomstige data\",\"yRx/6K\":\"Toekomstige data worden gekopieerd met capaciteit gereset naar nul\",\"T02gNN\":\"Algemene Toegang\",\"3ep0Gx\":\"Algemene informatie over je organisator\",\"ziAjHi\":\"Genereer\",\"exy8uo\":\"Genereer code\",\"4CETZY\":\"Routebeschrijving\",\"pjkEcB\":\"Krijg betaald\",\"lGYzP6\":\"Word betaald met Stripe\",\"ZDIydz\":\"Aan de slag\",\"u6FPxT\":\"Koop Tickets\",\"8KDgYV\":\"Bereid je evenement voor\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Ga terug\",\"oNL5vN\":\"Ga naar evenementpagina\",\"gHSuV/\":\"Ga naar de startpagina\",\"8+Cj55\":\"Ga naar planning\",\"6nDzTl\":\"Goede leesbaarheid\",\"76gPWk\":\"Begrepen\",\"aGWZUr\":\"Bruto-omzet\",\"n8IUs7\":\"Bruto-omzet\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gastenbeheer\",\"NUsTc4\":\"Gaande nu\",\"kTSQej\":[\"Hallo \",[\"0\"],\", beheer je platform vanaf hier.\"],\"dORAcs\":\"Hier zijn alle tickets die gekoppeld zijn aan je e-mailadres.\",\"g+2103\":\"Hier is je affiliatelink\",\"bVsnqU\":\"Hoi,\",\"/iE8xx\":\"Hi.Events kosten\",\"zppscQ\":\"Hi.Events platformkosten en BTW-uitsplitsing per transactie\",\"D+zLDD\":\"Verborgen\",\"DRErHC\":\"Verborgen voor deelnemers - alleen zichtbaar voor organisatoren\",\"NNnsM0\":\"Geavanceerde opties verbergen\",\"P+5Pbo\":\"Antwoorden verbergen\",\"VMlRqi\":\"Details verbergen\",\"FmogyU\":\"Opties verbergen\",\"gtEbeW\":\"Markeren\",\"NF8sdv\":\"Markeringsbericht\",\"MXSqmS\":\"Dit product markeren\",\"7ER2sc\":\"Uitgelicht\",\"sq7vjE\":\"Gemarkeerde producten krijgen een andere achtergrondkleur om op te vallen op de evenementenpagina.\",\"1+WSY1\":\"Hobby's\",\"yY8wAv\":\"Uren\",\"sy9anN\":\"Hoe lang een klant heeft om de aankoop te voltooien na ontvangst van een aanbod. Laat leeg voor geen tijdslimiet.\",\"n2ilNh\":\"Hoe lang loopt de planning?\",\"DMr2XN\":\"Hoe vaak?\",\"AVpmAa\":\"Hoe offline te betalen\",\"cceMns\":\"Hoe btw wordt toegepast op de platformkosten die we je in rekening brengen.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Hongaars\",\"8Wgd41\":\"Ik erken mijn verantwoordelijkheden als verwerkingsverantwoordelijke\",\"O8m7VA\":\"Ik ga akkoord met het ontvangen van e-mailmeldingen met betrekking tot dit evenement\",\"YLgdk5\":\"Ik bevestig dat dit een transactioneel bericht is met betrekking tot dit evenement\",\"4/kP5a\":\"Als er geen nieuw tabblad automatisch is geopend, klik dan op de knop hieronder om door te gaan naar afrekenen.\",\"W/eN+G\":\"Indien leeg, wordt het adres gebruikt om een Google Maps-link te genereren\",\"iIEaNB\":\"Als u een account bij ons heeft, ontvangt u een e-mail met instructies over hoe u uw wachtwoord opnieuw kunt instellen.\",\"an5hVd\":\"Afbeeldingen\",\"tSVr6t\":\"Imiteren\",\"TWXU0c\":\"Imiteer gebruiker\",\"5LAZwq\":\"Imitatie gestart\",\"IMwcdR\":\"Imitatie gestopt\",\"0I0Hac\":\"Belangrijke mededeling\",\"yD3avI\":\"Belangrijk: Het wijzigen van uw e-mailadres zal de link naar deze bestelling bijwerken. U wordt na het opslaan doorgestuurd naar de nieuwe bestellink.\",\"jT142F\":[\"Over \",[\"diffHours\"],\" uur\"],\"OoSyqO\":[\"Over \",[\"diffMinutes\"],\" minuten\"],\"PdMhEx\":[\"in de laatste \",[\"0\"],\" min\"],\"u7r0G5\":\"Op locatie — stel een locatie in\",\"Ip0hl5\":\"in persoon, online, niet ingesteld of gemengd\",\"F1Xp97\":\"Individuele deelnemers\",\"85e6zs\":\"Liquid Token Invoegen\",\"38KFY0\":\"Variabele Invoegen\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Directe Stripe-uitbetalingen\",\"nbfdhU\":\"Integraties\",\"I8eJ6/\":\"Interne notities op het ticket van de deelnemer\",\"B2Tpo0\":\"Ongeldig e-mailadres\",\"5tT0+u\":\"Ongeldig e-mailformaat\",\"f9WRpE\":\"Ongeldig bestandstype. Upload een afbeelding.\",\"tnL+GP\":\"Ongeldige Liquid syntax. Corrigeer het en probeer opnieuw.\",\"N9JsFT\":\"Ongeldig BTW-nummerformaat\",\"g+lLS9\":\"Nodig een teamlid uit\",\"1z26sk\":\"Teamlid uitnodigen\",\"KR0679\":\"Teamleden uitnodigen\",\"aH6ZIb\":\"Nodig je team uit\",\"IuMGvq\":\"Factuur\",\"Lj7sBL\":\"Italiaans\",\"F5/CBH\":\"artikel(en)\",\"BzfzPK\":\"Artikelen\",\"rjyWPb\":\"Januari\",\"KmWyx0\":\"Taak\",\"o5r6b2\":\"Taak verwijderd\",\"cd0jIM\":\"Taakdetails\",\"ruJO57\":\"Taaknaam\",\"YZi+Hu\":\"Taak in wachtrij voor opnieuw proberen\",\"nCywLA\":\"Neem overal vandaan deel\",\"SNzppu\":\"Aanmelden voor wachtlijst\",\"dLouFI\":[\"Op wachtlijst voor \",[\"productDisplayName\"]],\"2gMuHR\":\"Aangemeld\",\"u4ex5r\":\"Juli\",\"zeEQd/\":\"Juni\",\"MxjCqk\":\"Alleen op zoek naar je tickets?\",\"xOTzt5\":\"zojuist\",\"0RihU9\":\"Net afgerond\",\"lB2hSG\":[\"Houd mij op de hoogte van nieuws en evenementen van \",[\"0\"]],\"ioFA9i\":\"Houd de winst.\",\"4Sffp7\":\"Label voor de sessie\",\"o66QSP\":\"labelupdates\",\"RtKKbA\":\"Laatste\",\"DruLRc\":\"Laatste 14 dagen\",\"ve9JTU\":\"Achternaam is verplicht\",\"h0Q9Iw\":\"Laatste reactie\",\"gw3Ur5\":\"Laatst geactiveerd\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Laatste check-ins\",\"pzAivY\":\"Breedtegraad van de opgeloste locatie\",\"N5TErv\":\"Laat leeg voor onbeperkt\",\"L/hDDD\":\"Laat leeg om deze check-in lijst toe te passen op alle sessies\",\"9Pf3wk\":\"Laat ingeschakeld om elk ticket van het evenement te dekken. Schakel uit om specifieke tickets te kiezen.\",\"Hq2BzX\":\"Laat ze weten over de wijziging\",\"+uexiy\":\"Laat ze weten over de wijzigingen\",\"exYcTF\":\"Bibliotheek\",\"1njn7W\":\"Licht\",\"1qY5Ue\":\"Link verlopen of ongeldig\",\"+zSD/o\":\"Link naar evenementhomepage\",\"psosdY\":\"Link naar bestelgegevens\",\"6JzK4N\":\"Link naar ticket\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links toegestaan\",\"2BBAbc\":\"Lijst\",\"5NZpX8\":\"Lijstweergave\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live Evenementen\",\"C33p4q\":\"Geladen data\",\"WdmJIX\":\"Voorvertoning laden...\",\"IoDI2o\":\"Tokens laden...\",\"G3Ge9Z\":\"Webhook-logs laden...\",\"NFxlHW\":\"Webhooks laden\",\"E0DoRM\":\"Locatie verwijderd\",\"NtLHT3\":\"Geformatteerd locatieadres\",\"h4vxDc\":\"Breedtegraad locatie\",\"f2TMhR\":\"Lengtegraad locatie\",\"lnCo2f\":\"Locatiemodus\",\"8pmGFk\":\"Locatienaam\",\"7w8lJU\":\"Locatie opgeslagen\",\"YsRXDD\":\"Locatie bijgewerkt\",\"A/kIva\":\"locatie-updates\",\"VppBoU\":\"Locaties\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Omslag\",\"gddQe0\":\"Logo en omslagafbeelding voor je organisator\",\"TBEnp1\":\"Het logo wordt weergegeven in de koptekst\",\"Jzu30R\":\"Logo wordt weergegeven op het ticket\",\"zKTMTg\":\"Lengtegraad van de opgeloste locatie\",\"PSRm6/\":\"Zoek mijn tickets op\",\"yJFu/X\":\"Hoofdkantoor\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[[\"0\"],\" beheren\"],\"wZJfA8\":\"Beheer data en tijden voor je terugkerende evenement\",\"RlzPUE\":\"Beheren in Stripe\",\"6NXJRK\":\"Planning beheren\",\"zXuaxY\":\"Beheer de wachtlijst van je evenement, bekijk statistieken en bied tickets aan deelnemers aan.\",\"BWTzAb\":\"Handmatig\",\"g2npA5\":\"Handmatig aanbod\",\"hg6l4j\":\"Maart\",\"pqRBOz\":\"Markeren als gevalideerd (beheerderoverschrijving)\",\"2L3vle\":\"Max berichten / 24u\",\"Qp4HWD\":\"Max ontvangers / bericht\",\"3JzsDb\":\"Mei\",\"agPptk\":\"Medium\",\"xDAtGP\":\"Bericht\",\"bECJqy\":\"Bericht succesvol goedgekeurd\",\"1jRD0v\":\"Deelnemers berichten sturen met specifieke tickets\",\"uQLXbS\":\"Bericht geannuleerd\",\"48rf3i\":\"Bericht kan niet meer dan 5000 tekens bevatten\",\"ZPj0Q8\":\"Berichtdetails\",\"Vjat/X\":\"Bericht is verplicht\",\"0/yJtP\":\"Bestelbezitters berichten sturen met specifieke producten\",\"saG4At\":\"Bericht gepland\",\"mFdA+i\":\"Berichtenniveau\",\"v7xKtM\":\"Berichtenniveau succesvol bijgewerkt\",\"H9HlDe\":\"minuten\",\"agRWc1\":\"Minuten\",\"YYzBv9\":\"Ma\",\"zz/Wd/\":\"Modus\",\"fpMgHS\":\"Ma\",\"hty0d5\":\"Maandag\",\"JbIgPz\":\"Geldbedragen zijn geschatte totalen over alle valuta's\",\"qvF+MT\":\"Bewaak en beheer mislukte achtergrondtaken\",\"kY2ll9\":\"maand\",\"HajiZl\":\"Maand\",\"+8Nek/\":\"Maandelijks\",\"1LkxnU\":\"Maandelijks patroon\",\"6jefe3\":\"maanden\",\"f8jrkd\":\"meer\",\"JcD7qf\":\"Meer acties\",\"w36OkR\":\"Meest bekeken evenementen (Laatste 14 dagen)\",\"+Y/na7\":\"Verplaats alle data eerder of later\",\"3DIpY0\":\"Meerdere locaties\",\"g9cQCP\":\"Meerdere tickettypen\",\"GfaxEk\":\"Muziek\",\"oVGCGh\":\"Mijn Tickets\",\"8/brI5\":\"Naam is verplicht\",\"sFFArG\":\"Naam moet minder dan 255 tekens bevatten\",\"sCV5Yc\":\"Naam van het evenement\",\"xxU3NX\":\"Netto-omzet\",\"7I8LlL\":\"Nieuwe capaciteit\",\"n1GRql\":\"Nieuw label\",\"y0Fcpd\":\"Nieuwe locatie\",\"ArHT/C\":\"Nieuwe aanmeldingen\",\"uK7xWf\":\"Nieuwe tijd:\",\"veT5Br\":\"Volgende sessie\",\"WXtl5X\":[\"Volgende: \",[\"nextFormatted\"]],\"eWRECP\":\"Nachtleven\",\"HSw5l3\":\"Nee - Ik ben een particulier of een niet-BTW-geregistreerd bedrijf\",\"VHfLAW\":\"Geen accounts\",\"+jIeoh\":\"Geen accounts gevonden\",\"074+X8\":\"Geen actieve webhooks\",\"zxnup4\":\"Geen affiliates om te tonen\",\"Dwf4dR\":\"Nog geen deelnemersvragen\",\"th7rdT\":\"Geen deelnemers te tonen\",\"PKySlW\":\"Nog geen deelnemers voor deze datum.\",\"/UC6qk\":\"Geen attributiegegevens gevonden\",\"E2vYsO\":\"Stripe heeft nog geen mogelijkheden gerapporteerd.\",\"amMkpL\":\"Geen capaciteit\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Geen incheck lijsten beschikbaar voor dit evenement.\",\"wG+knX\":\"Nog geen check-ins\",\"+dAKxg\":\"Geen configuraties gevonden\",\"LiLk8u\":\"Geen verbindingen beschikbaar\",\"eb47T5\":\"Geen gegevens gevonden voor de geselecteerde filters. Probeer het datumbereik of de valuta aan te passen.\",\"lFVUyx\":\"Geen check-in lijst specifiek voor deze datum\",\"I8mtzP\":\"Geen data beschikbaar deze maand. Probeer naar een andere maand te navigeren.\",\"yDukIL\":\"Geen data komen overeen met de huidige filters.\",\"B7phdj\":\"Geen data komen overeen met je filters\",\"/ZB4Um\":\"Geen data komen overeen met je zoekopdracht\",\"gEdNe8\":\"Nog geen data gepland\",\"27GYXJ\":\"Geen data gepland.\",\"pZNOT9\":\"Geen einddatum\",\"dW40Uz\":\"Geen evenementen gevonden\",\"8pQ3NJ\":\"Geen evenementen die beginnen in de komende 24 uur\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Geen mislukte taken\",\"EpvBAp\":\"Geen factuur\",\"XZkeaI\":\"Geen logboeken gevonden\",\"nrSs2u\":\"Geen berichten gevonden\",\"Rj99yx\":\"Geen sessies beschikbaar\",\"IFU1IG\":\"Geen sessies op deze datum\",\"OVFwlg\":\"Nog geen bestellingsvragen\",\"EJ7bVz\":\"Geen bestellingen gevonden\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Nog geen bestellingen voor deze datum.\",\"wUv5xQ\":\"Geen organisatoractiviteit in de laatste 14 dagen\",\"vLd1tV\":\"Geen organisatorcontext beschikbaar.\",\"B7w4KY\":\"Geen andere organisatoren beschikbaar\",\"PChXMe\":\"Geen betaalde bestellingen\",\"6jYQGG\":\"Geen afgelopen evenementen\",\"CHzaTD\":\"Geen populaire evenementen in de laatste 14 dagen\",\"zK/+ef\":\"Geen producten beschikbaar voor selectie\",\"M1/lXs\":\"Geen producten geconfigureerd voor dit evenement.\",\"kY7XDn\":\"Geen producten hebben wachtlijstvermeldingen\",\"wYiAtV\":\"Geen recente accountaanmeldingen\",\"UW90md\":\"Geen ontvangers gevonden\",\"QoAi8D\":\"Geen reactie\",\"JeO7SI\":\"Geen reactie\",\"EK/G11\":\"Nog geen reacties\",\"7J5OKy\":\"Nog geen opgeslagen locaties\",\"wpCjcf\":\"Nog geen opgeslagen locaties. Ze verschijnen hier zodra je evenementen met adressen aanmaakt.\",\"mPdY6W\":\"Geen suggesties\",\"3sRuiW\":\"Geen tickets gevonden\",\"k2C0ZR\":\"Geen aankomende data\",\"yM5c0q\":\"Geen aankomende evenementen\",\"qpC74J\":\"Geen gebruikers gevonden\",\"8wgkoi\":\"Geen bekeken evenementen in de laatste 14 dagen\",\"Arzxc1\":\"Geen wachtlijstinschrijvingen\",\"n5vdm2\":\"Er zijn nog geen webhook-events opgenomen voor dit eindpunt. Evenementen zullen hier verschijnen zodra ze worden geactiveerd.\",\"4GhX3c\":\"Geen webhooks\",\"4+am6b\":\"Nee, houd me hier\",\"4JVMUi\":\"niet bewerkt\",\"Itw24Q\":\"Nog niet ingecheckt\",\"x5+Lcz\":\"Niet Ingecheckt\",\"8n10sz\":\"Niet in Aanmerking\",\"kLvU3F\":\"Deelnemers op de hoogte brengen en verkoop stoppen\",\"t9QlBd\":\"November\",\"kAREMN\":\"Aantal aan te maken data\",\"6u1B3O\":\"Sessie\",\"mmoE62\":\"Sessie geannuleerd\",\"UYWXdN\":\"Einddatum sessie\",\"k7dZT5\":\"Eindtijd sessie\",\"Opinaj\":\"Sessielabel\",\"V9flmL\":\"Sessieplanning\",\"NUTUUs\":\"Sessieplanning-pagina\",\"AT8UKD\":\"Startdatum sessie\",\"Um8bvD\":\"Starttijd sessie\",\"Kh3WO8\":\"Sessieoverzicht\",\"byXCTu\":\"Sessies\",\"KATw3p\":\"Sessies (alleen toekomstige)\",\"85rTR2\":\"Sessies kunnen worden geconfigureerd na aanmaak\",\"dzQfDY\":\"Oktober\",\"BwJKBw\":\"van\",\"9h7RDh\":\"Aanbieden\",\"EfK2O6\":\"Plek aanbieden\",\"3sVRey\":\"Tickets aanbieden\",\"2O7Ybb\":\"Aanbod-tijdslimiet\",\"1jUg5D\":\"Aangeboden\",\"l+/HS6\":[\"Aanbiedingen verlopen na \",[\"timeoutHours\"],\" uur.\"],\"lQgMLn\":\"Naam van kantoor of locatie\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offline Betaling\",\"nO3VbP\":[\"In de verkoop \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — verbindingsgegevens opgeven\",\"LuZBbx\":\"Online en in persoon\",\"IXuOqt\":\"Online en in persoon — zie planning\",\"w3DG44\":\"Online verbindingsgegevens\",\"WjSpu5\":\"Online evenement\",\"TP6jss\":\"Verbindingsgegevens online evenement\",\"NdOxqr\":\"Alleen accountbeheerders kunnen evenementen verwijderen of archiveren. Neem contact op met uw accountbeheerder voor hulp.\",\"rnoDMF\":\"Alleen accountbeheerders kunnen organisatoren verwijderen of archiveren. Neem contact op met uw accountbeheerder voor hulp.\",\"bU7oUm\":\"Alleen verzenden naar orders met deze statussen\",\"M2w1ni\":\"Alleen zichtbaar met promocode\",\"y8Bm7C\":\"Check-in openen\",\"RLz7P+\":\"Sessie openen\",\"cDSdPb\":\"Optionele bijnaam getoond in selectievelden, bijv. \\\"HQ Vergaderzaal\\\"\",\"HXMJxH\":\"Optionele tekst voor disclaimers, contactinfo of danknotities (alleen één regel)\",\"L565X2\":\"opties\",\"8m9emP\":\"of voeg één datum toe\",\"dSeVIm\":\"bestelling\",\"c/TIyD\":\"Bestelling & Ticket\",\"H5qWhm\":\"Bestelling geannuleerd\",\"b6+Y+n\":\"Bestelling voltooid\",\"x4MLWE\":\"Bestelling Bevestiging\",\"CsTTH0\":\"Bestelbevestiging succesvol opnieuw verzonden\",\"ppuQR4\":\"Bestelling aangemaakt\",\"0UZTSq\":\"Bestelvaluta\",\"xtQzag\":\"Bestelgegevens\",\"HdmwrI\":\"Bestelling E-mail\",\"bwBlJv\":\"Bestelling Voornaam\",\"vrSW9M\":\"Bestelling is geannuleerd en terugbetaald. De eigenaar van de bestelling is op de hoogte gesteld.\",\"rzw+wS\":\"Bestelhouders\",\"oI/hGR\":\"Bestelling-ID\",\"Pc729f\":\"Bestelling Wacht op Offline Betaling\",\"F4NXOl\":\"Bestelling Achternaam\",\"RQCXz6\":\"Bestellimieten\",\"SO9AEF\":\"Bestellingslimieten ingesteld\",\"5RDEEn\":\"Besteltaal\",\"vu6Arl\":\"Bestelling gemarkeerd als betaald\",\"sLbJQz\":\"Bestelling niet gevonden\",\"kvYpYu\":\"Bestelling niet gevonden\",\"i8VBuv\":\"Bestelnummer\",\"eJ8SvM\":\"Bestelnummer, aankoopdatum, e-mail van koper\",\"FaPYw+\":\"Eigenaar bestelling\",\"eB5vce\":\"Bestel eigenaars met een specifiek product\",\"CxLoxM\":\"Besteleigenaars met producten\",\"DoH3fD\":\"Bestelbetaling in Behandeling\",\"UkHo4c\":\"Bestelref.\",\"EZy55F\":\"Bestelling terugbetaald\",\"6eSHqs\":\"Bestelstatussen\",\"oW5877\":\"Bestelling Totaal\",\"e7eZuA\":\"Bijgewerkte bestelling\",\"1SQRYo\":\"Bestelling succesvol bijgewerkt\",\"KndP6g\":\"Bestelling URL\",\"3NT0Ck\":\"Bestelling is geannuleerd\",\"V5khLm\":\"bestellingen\",\"sd5IMt\":\"Voltooide bestellingen\",\"5It1cQ\":\"Geëxporteerde bestellingen\",\"tlKX/S\":\"Bestellingen die meerdere data beslaan, worden gemarkeerd voor handmatige beoordeling.\",\"UQ0ACV\":\"Totaal bestellingen\",\"B/EBQv\":\"Bestellingen:\",\"qtGTNu\":\"Organische accounts\",\"ucgZ0o\":\"Organisatie\",\"P/JHA4\":\"Organisator succesvol gearchiveerd\",\"S3CZ5M\":\"Organisator-dashboard\",\"GzjTd0\":\"Organisator succesvol verwijderd\",\"Uu0hZq\":\"Organisator e-mail\",\"Gy7BA3\":\"E-mailadres van de organisator\",\"SQqJd8\":\"Organisator niet gevonden\",\"HF8Bxa\":\"Organisator succesvol hersteld\",\"wpj63n\":\"Instellingen van organisator\",\"o1my93\":\"Bijwerken van organisatorstatus mislukt. Probeer het later opnieuw.\",\"rLHma1\":\"Organisatorstatus bijgewerkt\",\"LqBITi\":\"Organisator/standaardsjabloon wordt gebruikt\",\"q4zH+l\":\"Organisatoren\",\"/IX/7x\":\"Overig\",\"RsiDDQ\":\"Andere Lijsten (Ticket Niet Inbegrepen)\",\"aDfajK\":\"Buiten\",\"qMASRF\":\"Uitgaande berichten\",\"iCOVQO\":\"Overschrijven\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Prijs overschrijven\",\"cnVIpl\":\"Overschrijving verwijderd\",\"6/dCYd\":\"Overzicht\",\"6WdDG7\":\"Pagina\",\"8uqsE5\":\"Pagina niet meer beschikbaar\",\"QkLf4H\":\"Pagina-URL\",\"sF+Xp9\":\"Paginaweergaven\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Betaalde accounts\",\"5F7SYw\":\"Gedeeltelijke terugbetaling\",\"fFYotW\":[\"Gedeeltelijk terugbetaald: \",[\"0\"]],\"i8day5\":\"Kosten doorberekenen aan koper\",\"k4FLBQ\":\"Doorberekenen aan koper\",\"Ff0Dor\":\"Verleden\",\"BFjW8X\":\"Achterstallig\",\"xTPjSy\":\"Afgelopen evenementen\",\"/l/ckQ\":\"Plak URL\",\"URAE3q\":\"Gepauzeerd\",\"4fL/V7\":\"Betalen\",\"OZK07J\":\"Betaal om te ontgrendelen\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Betaaldatum\",\"ENEPLY\":\"Betaalmethode\",\"8Lx2X7\":\"Betaling ontvangen\",\"fx8BTd\":\"Betalingen niet beschikbaar\",\"C+ylwF\":\"Uitbetalingen\",\"UbRKMZ\":\"In behandeling\",\"UkM20g\":\"In afwachting van beoordeling\",\"dPYu1F\":\"Per deelnemer\",\"mQV/nJ\":\"per min\",\"VlXNyK\":\"Per bestelling\",\"hauDFf\":\"Per ticket\",\"mnF83a\":\"Percentage vergoeding\",\"TNLuRD\":\"Percentagekosten (%)\",\"MixU2P\":\"Percentage moet tussen 0 en 100 liggen\",\"MkuVAZ\":\"Percentage van transactiebedrag\",\"/Bh+7r\":\"Prestaties\",\"fIp56F\":\"Verwijder dit evenement en alle bijbehorende gegevens permanent.\",\"nJeeX7\":\"Verwijder deze organisator en al zijn evenementen permanent.\",\"wfCTgK\":\"Verwijder deze datum definitief\",\"6kPk3+\":\"Persoonlijke gegevens\",\"zmwvG2\":\"Telefoon\",\"SdM+Q1\":\"Kies een locatie\",\"tSR/oe\":\"Kies een einddatum\",\"e8kzpp\":\"Kies ten minste één dag van de maand\",\"35C8QZ\":\"Kies ten minste één dag van de week\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Geplaatst\",\"wBJR8i\":\"Een evenement plannen?\",\"J3lhKT\":\"Platformkosten\",\"RD51+P\":[\"Platformkosten van \",[\"0\"],\" afgetrokken van uw uitbetaling\"],\"br3Y/y\":\"Platformkosten\",\"3buiaw\":\"Platformkosten rapport\",\"kv9dM4\":\"Platformomzet\",\"PJ3Ykr\":\"Controleer je ticket voor de bijgewerkte tijd. Je tickets zijn nog steeds geldig — er is geen actie nodig tenzij de nieuwe tijden je niet uitkomen. Reageer op deze e-mail als je vragen hebt.\",\"OtjenF\":\"Voer een geldig e-mailadres in\",\"jEw0Mr\":\"Voer een geldige URL in\",\"n8+Ng/\":\"Voer de 5-cijferige code in\",\"r+lQXT\":\"Voer uw BTW-nummer in\",\"Dvq0wf\":\"Geef een afbeelding op.\",\"2cUopP\":\"Start het bestelproces opnieuw.\",\"GoXxOA\":\"Selecteer een datum en tijd\",\"8KmsFa\":\"Selecteer een datumbereik\",\"EFq6EG\":\"Selecteer een afbeelding.\",\"fuwKpE\":\"Probeer het opnieuw.\",\"klWBeI\":\"Wacht even voordat je een nieuwe code aanvraagt\",\"hfHhaa\":\"Even geduld terwijl we je affiliates voorbereiden voor export...\",\"o+tJN/\":\"Wacht even terwijl we je deelnemers voorbereiden voor export...\",\"+5Mlle\":\"Even geduld alstublieft terwijl we uw bestellingen klaarmaken voor export...\",\"trnWaw\":\"Pools\",\"luHAJY\":\"Populaire evenementen (Laatste 14 dagen)\",\"p/78dY\":\"Positie\",\"TjX7xL\":\"Post-Checkout Bericht\",\"OESu7I\":\"Voorkom oververkoop door voorraad te delen over meerdere tickettypes.\",\"NgVUL2\":\"Voorbeeld afrekenformulier\",\"cs5muu\":\"Voorbeeld van de evenementpagina\",\"+4yRWM\":\"Prijs van het ticket\",\"Jm2AC3\":\"Prijsklasse\",\"a5jvSX\":\"Prijsniveaus\",\"ReihZ7\":\"Afdrukvoorbeeld\",\"JnuPvH\":\"Ticket afdrukken\",\"tYF4Zq\":\"Afdrukken naar PDF\",\"LcET2C\":\"Privacybeleid\",\"8z6Y5D\":\"Terugbetaling verwerken\",\"JcejNJ\":\"Bestelling verwerken\",\"EWCLpZ\":\"Gemaakt product\",\"XkFYVB\":\"Product verwijderd\",\"YMwcbR\":\"Uitsplitsing productverkoop, inkomsten en belastingen\",\"ls0mTC\":\"Productinstellingen kunnen niet worden bewerkt voor geannuleerde data.\",\"2339ej\":\"Productinstellingen succesvol opgeslagen\",\"ldVIlB\":\"Bijgewerkt product\",\"CP3D8G\":\"Voortgang\",\"JoKGiJ\":\"Kortingscode\",\"k3wH7i\":\"Gebruik van promocodes en uitsplitsing van kortingen\",\"tZqL0q\":\"promotiecodes\",\"oCHiz3\":\"Promotiecodes\",\"uEhdRh\":\"Alleen promo\",\"dLm8V5\":\"Promotionele e-mails kunnen leiden tot accountopschorting\",\"XoEWtl\":\"Geef minstens één adresveld op voor de nieuwe locatie.\",\"2W/7Gz\":\"Verstrek het volgende vóór de volgende Stripe-controle om uitbetalingen door te laten gaan.\",\"aemBRq\":\"Aanbieder\",\"EEYbdt\":\"Publiceren\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Gekocht\",\"JunetL\":\"Koper\",\"phmeUH\":\"E-mail van koper\",\"ywR4ZL\":\"QR-code check-in\",\"oWXNE5\":\"Aant.\",\"biEyJ4\":\"Antwoorden\",\"k/bJj0\":\"Vragen herschikt\",\"b24kPi\":\"Wachtrij\",\"lTPqpM\":\"Snelle tip\",\"fqDzSu\":\"Tarief\",\"mnUGVC\":\"Limiet overschreden. Probeer het later opnieuw.\",\"t41hVI\":\"Plek opnieuw aanbieden\",\"TNclgc\":\"Deze datum heractiveren? De datum wordt heropend voor toekomstige verkopen.\",\"uqoRbb\":\"Realtime analyses\",\"xzRvs4\":[\"Productupdates van \",[\"0\"],\" ontvangen.\"],\"pLXbi8\":\"Recente accountaanmeldingen\",\"3kJ0gv\":\"Recente deelnemers\",\"qhfiwV\":\"Recente check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Recente bestellingen\",\"7hPBBn\":\"ontvanger\",\"jp5bq8\":\"ontvangers\",\"yPrbsy\":\"Ontvangers\",\"E1F5Ji\":\"Ontvangers zijn beschikbaar nadat het bericht is verzonden\",\"wuhHPE\":\"Terugkerend\",\"asLqwt\":\"Terugkerend evenement\",\"D0tAMe\":\"Terugkerende evenementen\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Doorverwijzen naar Stripe...\",\"pnoTN5\":\"Verwijzingsaccounts\",\"ACKu03\":\"Voorbeeld Vernieuwen\",\"vuFYA6\":\"Alle bestellingen voor deze data terugbetalen\",\"4cRUK3\":\"Alle bestellingen voor deze datum terugbetalen\",\"fKn/k6\":\"Terugbetalingsbedrag\",\"qY4rpA\":\"Terugbetaling mislukt\",\"TspTcZ\":\"Terugbetaling uitgegeven\",\"FaK/8G\":[\"Bestelling \",[\"0\"],\" terugbetalen\"],\"MGbi9P\":\"Terugbetaling in behandeling\",\"BDSRuX\":[\"Terugbetaald: \",[\"0\"]],\"bU4bS1\":\"Terugbetalingen\",\"rYXfOA\":\"Regionale instellingen\",\"5tl0Bp\":\"Registratievragen\",\"ZNo5k1\":\"Resterend\",\"EMnuA4\":\"Herinnering gepland\",\"Bjh87R\":\"Label van alle data verwijderen\",\"KkJtVK\":\"Heropenen voor nieuwe verkoop\",\"XJwWJp\":\"Deze datum heropenen voor nieuwe verkoop? Eerder geannuleerde tickets worden niet hersteld — getroffen deelnemers blijven geannuleerd en reeds uitgegeven terugbetalingen worden niet teruggedraaid.\",\"bAwDQs\":\"Herhaal elke\",\"CQeZT8\":\"Rapport niet gevonden\",\"JEPMXN\":\"Nieuwe link aanvragen\",\"TMLAx2\":\"Verplicht\",\"mdeIOH\":\"Code opnieuw verzenden\",\"sQxe68\":\"Bevestiging opnieuw verzenden\",\"bxoWpz\":\"Bevestigingsmail opnieuw verzenden\",\"G42SNI\":\"E-mail opnieuw verzenden\",\"TTpXL3\":[\"Opnieuw verzenden over \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Ticket opnieuw verzenden\",\"Uwsg2F\":\"Gereserveerd\",\"8wUjGl\":\"Gereserveerd tot\",\"a5z8mb\":\"Resetten naar basisprijs\",\"kCn6wb\":\"Opnieuw instellen...\",\"404zLK\":\"Opgeloste locatie- of locatienaam\",\"ZlCDf+\":\"Antwoord\",\"bsydMp\":\"Antwoorddetails\",\"yKu/3Y\":\"Herstellen\",\"RokrZf\":\"Evenement herstellen\",\"/JyMGh\":\"Organisator herstellen\",\"HFvFRb\":\"Herstel dit evenement om het weer zichtbaar te maken.\",\"DDIcqy\":\"Herstel deze organisator en maak hem weer actief.\",\"mO8KLE\":\"resultaten\",\"6gRgw8\":\"Opnieuw proberen\",\"1BG8ga\":\"Alles opnieuw proberen\",\"rDC+T6\":\"Taak opnieuw proberen\",\"CbnrWb\":\"Terug naar evenement\",\"mdQ0zb\":\"Herbruikbare locaties voor je evenementen. Locaties die zijn aangemaakt via de automatische aanvulling worden hier automatisch opgeslagen.\",\"XFOPle\":\"Hergebruiken\",\"1Zehp4\":\"Hergebruik een Stripe-verbinding van een andere organisator in dit account.\",\"Oo/PLb\":\"Omzetoverzicht\",\"O/8Ceg\":\"Omzet vandaag\",\"CfuueU\":\"Aanbod intrekken\",\"RIgKv+\":\"Doorlopen tot een specifieke datum\",\"JYRqp5\":\"Za\",\"dFFW9L\":[\"Uitverkoop eindigde \",[\"0\"]],\"loCKGB\":[\"Uitverkoop eindigt \",[\"0\"]],\"wlfBad\":\"Uitverkoopperiode\",\"qi81Jg\":\"Verkoopperiodedata gelden voor alle data in je planning. Gebruik de overschrijvingen op de <0>Sessieplanning-pagina om prijzen en beschikbaarheid voor afzonderlijke data te beheren.\",\"5CDM6r\":\"Verkoopperiode ingesteld\",\"ftzaMf\":\"Verkoopperiode, bestellingslimieten, zichtbaarheid\",\"zpekWp\":[\"Uitverkoop begint \",[\"0\"]],\"mUv9U4\":\"Verkoop\",\"9KnRdL\":\"Verkoop is gepauzeerd\",\"JC3J0k\":\"Verkoop-, aanwezigheids- en check-in-overzicht per sessie\",\"3VnlS9\":\"Verkopen, bestellingen en prestatie-indicatoren voor alle evenementen\",\"3Q1AWe\":\"Verkoop:\",\"LeuERW\":\"Gelijk aan evenement\",\"B4nE3N\":\"Voorbeeldticketprijs\",\"8BRPoH\":\"Voorbeeldlocatie\",\"PiK6Ld\":\"Za\",\"+5kO8P\":\"Zaterdag\",\"zJiuDn\":\"Kostenoverschrijving opslaan\",\"NB8Uxt\":\"Planning opslaan\",\"KZrfYJ\":\"Sociale links opslaan\",\"9Y3hAT\":\"Sjabloon Opslaan\",\"C8ne4X\":\"Ticketontwerp Opslaan\",\"cTI8IK\":\"Btw-instellingen opslaan\",\"6/TNCd\":\"BTW-instellingen opslaan\",\"4RvD9q\":\"Opgeslagen locatie\",\"cgw0cL\":\"Opgeslagen locaties\",\"lvSrsT\":\"Opgeslagen locaties\",\"Fbqm/I\":\"Bij het opslaan van een overschrijving wordt een eigen configuratie voor deze organisator aangemaakt als deze momenteel op de systeemstandaard staat.\",\"I+FvbD\":\"Scannen\",\"0zd6Nm\":\"Scan een ticket om een deelnemer in te checken\",\"bQG7Qk\":\"Gescande tickets verschijnen hier\",\"WDYSLJ\":\"Scannermodus\",\"gmB6oO\":\"Planning\",\"j6NnBq\":\"Planning succesvol aangemaakt\",\"YP7frt\":\"Planning eindigt op\",\"QS1Nla\":\"Later plannen\",\"NAzVVw\":\"Bericht plannen\",\"Fz09JP\":\"Schema begint op\",\"4ba0NE\":\"Gepland\",\"qcP/8K\":\"Geplande tijd\",\"A1taO8\":\"Zoeken\",\"ftNXma\":\"Zoek affiliates...\",\"VMU+zM\":\"Deelnemers zoeken\",\"VY+Bdn\":\"Zoeken op accountnaam of e-mail...\",\"VX+B3I\":\"Zoeken op evenement titel of organisator...\",\"R0wEyA\":\"Zoeken op taaknaam of uitzondering...\",\"VT+urE\":\"Zoeken op naam of e-mail...\",\"GHdjuo\":\"Zoeken op naam, e-mail of account...\",\"4mBFO7\":\"Zoek op naam, bestelnr., ticketnr. of e-mail\",\"20ce0U\":\"Zoeken op bestelling-ID, klantnaam of e-mail...\",\"4DSz7Z\":\"Zoeken op onderwerp, evenement of account...\",\"nQC7Z9\":\"Data zoeken...\",\"iRtEpV\":\"Data zoeken…\",\"JRM7ao\":\"Zoek een adres\",\"BWF1kC\":\"Berichten zoeken...\",\"3aD3GF\":\"Seizoensgebonden\",\"ku//5b\":\"Tweede\",\"Mck5ht\":\"Veilige afrekening\",\"s7tXqF\":\"Planning bekijken\",\"JFap6u\":\"Bekijk wat Stripe nog nodig heeft\",\"p7xUrt\":\"Selecteer een categorie\",\"hTKQwS\":\"Selecteer een datum en tijd\",\"e4L7bF\":\"Selecteer een bericht om de inhoud te bekijken\",\"zPRPMf\":\"Selecteer een niveau\",\"uqpVri\":\"Selecteer een tijd\",\"BFRSTT\":\"Selecteer Account\",\"wgNoIs\":\"Alles selecteren\",\"mCB6Je\":\"Selecteer alles\",\"aCEysm\":[\"Alles selecteren op \",[\"0\"]],\"a6+167\":\"Selecteer een evenement\",\"CFbaPk\":\"Selecteer deelnemersgroep\",\"88a49s\":\"Camera kiezen\",\"tVW/yo\":\"Selecteer valuta\",\"SJQM1I\":\"Datum selecteren\",\"n9ZhRa\":\"Selecteer einddatum en tijd\",\"gTN6Ws\":\"Selecteer eindtijd\",\"0U6E9W\":\"Selecteer evenementcategorie\",\"j9cPeF\":\"Soorten evenementen selecteren\",\"ypTjHL\":\"Sessie selecteren\",\"KizCK7\":\"Selecteer startdatum en tijd\",\"dJZTv2\":\"Selecteer starttijd\",\"x8XMsJ\":\"Selecteer het berichtenniveau voor dit account. Dit bepaalt berichtlimieten en linkrechten.\",\"aT3jZX\":\"Selecteer tijdzone\",\"TxfvH2\":\"Selecteer welke deelnemers dit bericht moeten ontvangen\",\"Ropvj0\":\"Selecteer welke evenementen deze webhook activeren\",\"+6YAwo\":\"geselecteerd\",\"ylXj1N\":\"Geselecteerd\",\"uq3CXQ\":\"Verkoop je evenement uit.\",\"j9b/iy\":\"Verkoopt snel 🔥\",\"73qYgo\":\"Verzenden als test\",\"HMAqFK\":\"Stuur e-mails naar deelnemers, tickethouders of bestelingseigenaren. Berichten kunnen direct worden verzonden of worden ingepland voor later.\",\"22Itl6\":\"Stuur mij een kopie\",\"NpEm3p\":\"Nu verzenden\",\"nOBvex\":\"Stuur realtime bestel- en deelnemergegevens naar je externe systemen.\",\"1lNPhX\":\"Terugbetalingsmelding e-mail verzenden\",\"eaUTwS\":\"Verstuur resetlink\",\"5cV4PY\":\"Verzend naar alle sessies of kies een specifieke\",\"QEQlnV\":\"Verstuur uw eerste bericht\",\"3nMAVT\":\"Verzonden over 2d 4u\",\"IoAuJG\":\"Verzenden...\",\"h69WC6\":\"Verzonden\",\"BVu2Hz\":\"Verzonden door\",\"ZFa8wv\":\"Verzonden naar deelnemers wanneer een geplande datum wordt geannuleerd\",\"SPdzrs\":\"Verzonden naar klanten wanneer ze een bestelling plaatsen\",\"LxSN5F\":\"Verzonden naar elke deelnemer met hun ticketgegevens\",\"hgvbYY\":\"September\",\"5sN96e\":\"Sessie geannuleerd\",\"89xaFU\":\"Stel de standaard platformkosteninstellingen in voor nieuwe evenementen onder deze organisator.\",\"eXssj5\":\"Stel standaardinstellingen in voor nieuwe evenementen die onder deze organisator worden gemaakt.\",\"uPe5p8\":\"Stel in hoe lang elke datum duurt\",\"xNsRxU\":\"Aantal data instellen\",\"ODuUEi\":\"Stel het datumlabel in of wis het\",\"buHACR\":\"Stel in dat de eindtijd van elke datum dit lang na de starttijd ligt.\",\"TaeFgl\":\"Instellen op onbeperkt (limiet verwijderen)\",\"pd6SSe\":\"Stel een terugkerende planning in om automatisch data aan te maken, of voeg ze één voor één toe.\",\"s0FkEx\":\"Stel inchecklijsten in voor verschillende ingangen, sessies of dagen.\",\"TaWVGe\":\"Uitbetalingen instellen\",\"gzXY7l\":\"Planning instellen\",\"xMO+Ao\":\"Stel je organisatie in\",\"h/9JiC\":\"Stel je planning in\",\"ETC76A\":\"De locatie of online gegevens van de sessie instellen, wijzigen of verwijderen\",\"C3htzi\":\"Instelling bijgewerkt\",\"Ohn74G\":\"Instellingen & ontwerp\",\"1W5XyZ\":\"De installatie duurt maar een paar minuten — je hebt geen bestaand Stripe-account nodig. Stripe regelt kaarten, wallets, regionale betaalmethoden en fraudebescherming, zodat jij je op je evenement kunt richten.\",\"GG7qDw\":\"Deel affiliatelink\",\"hL7sDJ\":\"Deel organisatorpagina\",\"jy6QDF\":\"Gedeeld capaciteitsbeheer\",\"jDNHW4\":\"Tijden verschuiven\",\"tPfIaW\":[\"Tijden verschoven voor \",[\"count\"],\" datum/data\"],\"WwlM8F\":\"Geavanceerde opties tonen\",\"cMW+gm\":[\"Toon alle platforms (\",[\"0\"],\" meer met waarden)\"],\"wXi9pZ\":\"Notities tonen aan niet-aangemeld personeel\",\"UVPI5D\":\"Toon minder platforms\",\"Eu/N/d\":\"Toon marketing opt-in selectievakje\",\"SXzpzO\":\"Toon marketing opt-in selectievakje standaard\",\"57tTk5\":\"Meer data tonen\",\"b33PL9\":\"Toon meer platforms\",\"Eut7p9\":\"Bestelgegevens tonen aan niet-aangemeld personeel\",\"+RoWKN\":\"Antwoorden tonen aan niet-aangemeld personeel\",\"t1LIQW\":[\"Toont \",[\"0\"],\" van \",[\"totalRows\"],\" records\"],\"E717U9\":[[\"0\"],\"–\",[\"1\"],\" van \",[\"2\"],\" weergegeven\"],\"5rzhBQ\":[[\"MAX_VISIBLE\"],\" van \",[\"totalAvailable\"],\" data weergegeven. Typ om te zoeken.\"],\"WSt3op\":[\"Eerste \",[\"0\"],\" weergegeven — de resterende \",[\"1\"],\" sessie(s) worden nog steeds bereikt wanneer het bericht wordt verzonden.\"],\"OJLTEL\":\"Wordt getoond aan personeel bij het eerste openen van de pagina.\",\"jVRHeq\":\"Aangemeld\",\"5C7J+P\":\"Eenmalig evenement\",\"E//btK\":\"Handmatig bewerkte data overslaan\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sociaal\",\"d0rUsW\":\"Sociale links\",\"j/TOB3\":\"Sociale links & website\",\"s9KGXU\":\"Verkocht\",\"iACSrw\":\"Sommige details zijn verborgen voor publieke toegang. Log in om alles te zien.\",\"KTxc6k\":\"Er is iets misgegaan. Probeer het opnieuw of neem contact op met support als het probleem zich blijft voordoen\",\"lkE00/\":\"Er is iets misgegaan. Probeer het later opnieuw.\",\"wdxz7K\":\"Bron\",\"fDG2by\":\"Spiritualiteit\",\"oPaRES\":\"Splits check-in per dag, zone of tickettype. Deel de link met personeel — geen account nodig.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Instructies voor personeel\",\"tXkhj/\":\"Start\",\"JcQp9p\":\"Startdatum & tijd\",\"0m/ekX\":\"Startdatum & tijd\",\"izRfYP\":\"Startdatum is verplicht\",\"tuO4fV\":\"Startdatum van de sessie\",\"2R1+Rv\":\"Starttijd van het evenement\",\"2Olov3\":\"Starttijd van de sessie\",\"n9ZrDo\":\"Begin met het typen van een locatie of adres...\",\"qeFVhN\":[\"Begint over \",[\"diffDays\"],\" dagen\"],\"AOqtxN\":[\"Begint over \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Begint over \",[\"h\"],\"u \",[\"m\"],\"m\"],\"Lo49in\":[\"Begint over \",[\"seconds\"],\"s\"],\"NqChgF\":\"Begint morgen\",\"2NbyY/\":\"Statistieken\",\"GVUxAX\":\"Statistieken zijn gebaseerd op de aanmaakdatum van het account\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Nog nodig\",\"wuV0bK\":\"Stop Imiteren\",\"s/KaDb\":\"Stripe verbonden\",\"Bk06QI\":\"Stripe verbonden\",\"akZMv8\":[\"Stripe-verbinding gekopieerd van \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe heeft geen installatielink teruggestuurd. Probeer het opnieuw.\",\"aKtF0O\":\"Stripe niet verbonden\",\"9i0++A\":\"Stripe betalings-ID\",\"R1lIMV\":\"Stripe heeft binnenkort meer gegevens nodig\",\"FzcCHA\":\"Stripe stelt je een paar korte vragen om de installatie af te ronden.\",\"eYbd7b\":\"Zo\",\"ii0qn/\":\"Onderwerp is verplicht\",\"M7Uapz\":\"Onderwerp verschijnt hier\",\"6aXq+t\":\"Onderwerp:\",\"JwTmB6\":\"Succesvol gedupliceerd product\",\"WUOCgI\":\"Plek succesvol aangeboden\",\"IvxA4G\":[\"Tickets succesvol aangeboden aan \",[\"count\"],\" personen\"],\"kKpkzy\":\"Tickets succesvol aangeboden aan 1 persoon\",\"Zi3Sbw\":\"Succesvol verwijderd van de wachtlijst\",\"RuaKfn\":\"Adres succesvol bijgewerkt\",\"kzx0uD\":\"Standaardinstellingen evenement succesvol bijgewerkt\",\"5n+Wwp\":\"Organisator succesvol bijgewerkt\",\"DMCX/I\":\"Standaard platformkosteninstellingen succesvol bijgewerkt\",\"URUYHc\":\"Platformkosteninstellingen succesvol bijgewerkt\",\"0Dk/l8\":\"SEO-instellingen succesvol bijgewerkt\",\"S8Tua9\":\"Instellingen succesvol bijgewerkt\",\"MhOoLQ\":\"Sociale links succesvol bijgewerkt\",\"CNSSfp\":\"Trackinginstellingen succesvol bijgewerkt\",\"kj7zYe\":\"Webhook succesvol bijgewerkt\",\"dXoieq\":\"Samenvatting\",\"/RfJXt\":[\"Zomer Muziekfestival \",[\"0\"]],\"CWOPIK\":\"Zomer Muziekfestival 2025\",\"D89zck\":\"Zo\",\"DBC3t5\":\"Zondag\",\"UaISq3\":\"Zweeds\",\"JZTQI0\":\"Wissel van organisator\",\"9YHrNC\":\"Systeemstandaard\",\"lruQkA\":\"Tik op het scherm om door te gaan\",\"TJUrME\":[\"Gericht op deelnemers van \",[\"0\"],\" geselecteerde sessies.\"],\"yT6dQ8\":\"Geïnde belasting gegroepeerd op belastingtype en evenement\",\"Ye321X\":\"Belastingnaam\",\"WyCBRt\":\"Belastingoverzicht\",\"GkH0Pq\":\"Belastingen en kosten toegepast\",\"Rwiyt2\":\"Belastingen geconfigureerd\",\"iQZff7\":\"Belastingen, kosten, zichtbaarheid, verkoopperiode, productmarkering en bestellingslimieten\",\"SXvRWU\":\"Teamsamenwerking\",\"vlf/In\":\"Technologie\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Vertel mensen wat ze kunnen verwachten van je evenement\",\"NiIUyb\":\"Vertel ons over je evenement\",\"DovcfC\":\"Vertel ons over je organisatie. Deze informatie wordt weergegeven op je evenementpagina's.\",\"69GWRq\":\"Vertel ons hoe vaak je evenement zich herhaalt en we maken alle data voor je aan.\",\"mXPbwY\":\"Geef je btw-registratiestatus door zodat we de juiste btw-behandeling op platformkosten toepassen.\",\"7wtpH5\":\"Sjabloon Actief\",\"QHhZeE\":\"Sjabloon succesvol aangemaakt\",\"xrWdPR\":\"Sjabloon succesvol verwijderd\",\"G04Zjt\":\"Sjabloon succesvol opgeslagen\",\"xowcRf\":\"Servicevoorwaarden\",\"6K0GjX\":\"Tekst kan moeilijk leesbaar zijn\",\"u0F1Ey\":\"Do\",\"nm3Iz/\":\"Bedankt voor uw aanwezigheid!\",\"pYwj0k\":\"Bedankt,\",\"k3IitN\":\"Dat was het\",\"KfmPRW\":\"De achtergrondkleur van de pagina. Bij gebruik van een omslagafbeelding wordt dit als overlay toegepast.\",\"MDNyJz\":\"De code verloopt over 10 minuten. Controleer je spammap als je de e-mail niet ziet.\",\"AIF7J2\":\"De valuta waarin de vaste kosten zijn gedefinieerd. Deze wordt bij het afrekenen omgerekend naar de valuta van de bestelling.\",\"MJm4Tq\":\"De valuta van de bestelling\",\"cDHM1d\":\"Het e-mailadres is gewijzigd. De deelnemer ontvangt een nieuw ticket op het bijgewerkte e-mailadres.\",\"I/NNtI\":\"De evenementlocatie\",\"tXadb0\":\"Het evenement dat je zoekt is momenteel niet beschikbaar. Mogelijk is het verwijderd, verlopen of is de URL onjuist.\",\"5fPdZe\":\"De eerste datum vanaf wanneer dit schema wordt gegenereerd.\",\"EBzPwC\":\"Het volledige evenementadres\",\"sxKqBm\":\"Het volledige bestellingsbedrag wordt terugbetaald naar de oorspronkelijke betalingsmethode van de klant.\",\"KgDp6G\":\"De link die u probeert te openen is verlopen of niet meer geldig. Controleer uw e-mail voor een bijgewerkte link om uw bestelling te beheren.\",\"5OmEal\":\"De taal van de klant\",\"Np4eLs\":[\"Het maximum is \",[\"MAX_PREVIEW\"],\" sessies. Verklein het datumbereik, de frequentie of het aantal sessies per dag.\"],\"sYLeDq\":\"De organisator die je zoekt is niet gevonden. De pagina is mogelijk verplaatst, verwijderd of de URL is onjuist.\",\"PCr4zw\":\"De overschrijving wordt vastgelegd in het audit-log van de bestelling.\",\"C4nQe5\":\"De platformkosten worden toegevoegd aan de ticketprijs. Kopers betalen meer, maar u ontvangt de volledige ticketprijs.\",\"HxxXZO\":\"De primaire merkkleur die wordt gebruikt voor knoppen en accenten\",\"z0KrIG\":\"De geplande tijd is vereist\",\"EWErQh\":\"De geplande tijd moet in de toekomst liggen\",\"UNd0OU\":[\"De sessie voor \\\"\",[\"title\"],\"\\\" die oorspronkelijk gepland stond voor \",[\"0\"],\" is verzet.\"],\"DEcpfp\":\"Het template body bevat ongeldige Liquid syntax. Corrigeer het en probeer opnieuw.\",\"injXD7\":\"Het BTW-nummer kon niet worden gevalideerd. Controleer het nummer en probeer het opnieuw.\",\"A4UmDy\":\"Theater\",\"tDwYhx\":\"Thema en kleuren\",\"O7g4eR\":\"Er zijn geen aankomende data voor dit evenement\",\"HrIl0p\":[\"Er is geen check-in lijst specifiek voor deze datum. De lijst \\\"\",[\"0\"],\"\\\" cheeckt deelnemers in voor elke datum — personeel dat een ticket voor een andere datum scant, slaagt nog steeds.\"],\"dt3TwA\":\"Dit zijn de standaardprijzen en -aantallen voor alle data. Verkoopdata op prijsklassen gelden globaal. Je kunt prijzen en aantallen voor afzonderlijke data overschrijven op de <0>Sessieplanning-pagina.\",\"062KsE\":\"Deze gegevens worden alleen weergegeven op het ticket en het besteloverzicht van de deelnemer voor deze datum.\",\"5Eu+tn\":\"Deze gegevens worden alleen weergegeven als de bestelling succesvol is afgerond.\",\"jQjwR+\":\"Deze gegevens vervangen elke bestaande locatie op de betreffende sessies en worden weergegeven op de tickets van bezoekers.\",\"QP3gP+\":\"Deze instellingen zijn alleen van toepassing op gekopieerde insluitcode en worden niet opgeslagen.\",\"HirZe8\":\"Deze sjablonen worden gebruikt als standaard voor alle evenementen in uw organisatie. Individuele evenementen kunnen deze sjablonen overschrijven met hun eigen aangepaste versies.\",\"lzAaG5\":\"Deze sjablonen overschrijven de organisator-standaarden alleen voor dit evenement. Als hier geen aangepaste sjabloon is ingesteld, wordt in plaats daarvan de organisatorsjabloon gebruikt.\",\"UlykKR\":\"Derde\",\"wkP5FM\":\"Dit geldt voor elke overeenkomende datum in het evenement, inclusief data die momenteel niet zichtbaar zijn. Deelnemers die op een van die data zijn ingeschreven, zijn bereikbaar via de berichtopsteller zodra de update is voltooid.\",\"SOmGDa\":\"Deze check-in lijst is gekoppeld aan een sessie die is geannuleerd, dus kan deze niet meer worden gebruikt voor check-ins.\",\"XBNC3E\":\"Deze code wordt gebruikt om verkopen bij te houden. Alleen letters, cijfers, streepjes en underscores toegestaan.\",\"AaP0M+\":\"Deze kleurencombinatie kan moeilijk leesbaar zijn voor sommige gebruikers\",\"o1phK/\":[\"Deze datum heeft \",[\"orderCount\"],\" bestelling(en) die worden beïnvloed.\"],\"F/UtGt\":\"Deze datum is geannuleerd. Je kunt deze nog steeds verwijderen om hem definitief te verwijderen.\",\"BLZ7pX\":\"Deze datum ligt in het verleden. De datum wordt aangemaakt, maar is niet zichtbaar voor deelnemers onder aankomende data.\",\"7IIY0z\":\"Deze datum is gemarkeerd als uitverkocht.\",\"bddWMP\":\"Deze datum is niet meer beschikbaar. Selecteer een andere datum.\",\"RzEvf5\":\"Dit evenement is afgelopen\",\"YClrdK\":\"Dit evenement is nog niet gepubliceerd\",\"dFJnia\":\"Dit is de naam van je organisator die aan je gebruikers wordt getoond.\",\"vt7jiq\":\"Dit is de enige keer dat het ondertekeningsgeheim wordt getoond. Kopieer het nu en bewaar het veilig.\",\"L7dIM7\":\"Deze link is ongeldig of verlopen.\",\"MR5ygV\":\"Deze link is niet meer geldig\",\"9LEqK0\":\"Deze naam is zichtbaar voor eindgebruikers\",\"QdUMM9\":\"Deze sessie is vol\",\"j5FdeA\":\"Deze bestelling wordt verwerkt.\",\"sjNPMw\":\"Deze bestelling is verlaten. U kunt op elk moment een nieuwe bestelling starten.\",\"OhCesD\":\"Deze bestelling is geannuleerd. Je kunt op elk moment een nieuwe bestelling plaatsen.\",\"lyD7rQ\":\"Dit organisatorprofiel is nog niet gepubliceerd\",\"9b5956\":\"Dit voorbeeld toont hoe uw e-mail eruit ziet met voorbeeldgegevens. Werkelijke e-mails gebruiken echte waarden.\",\"uM9Alj\":\"Dit product is uitgelicht op de evenementpagina\",\"RqSKdX\":\"Dit product is uitverkocht\",\"W12OdJ\":\"Dit rapport is alleen voor informatieve doeleinden. Raadpleeg altijd een belastingprofessional voordat u deze gegevens gebruikt voor boekhoudkundige of fiscale doeleinden. Controleer met uw Stripe-dashboard aangezien Hi.Events mogelijk historische gegevens mist.\",\"0Ew0uk\":\"Dit ticket is net gescand. Wacht even voordat u opnieuw scant.\",\"FYXq7k\":[\"Dit heeft invloed op \",[\"loadedAffectedCount\"],\" datum/data.\"],\"kvpxIU\":\"Dit wordt gebruikt voor meldingen en communicatie met je gebruikers.\",\"rhsath\":\"Dit is niet zichtbaar voor klanten, maar helpt je de affiliate te identificeren.\",\"hV6FeJ\":\"Doorstroom\",\"+FjWgX\":\"Do\",\"kkDQ8m\":\"Donderdag\",\"0GSPnc\":\"Ticketontwerp\",\"EZC/Cu\":\"Ticketontwerp succesvol opgeslagen\",\"bbslmb\":\"Ticket ontwerper\",\"1BPctx\":\"Ticket voor\",\"bgqf+K\":\"E-mail van tickethouder\",\"oR7zL3\":\"Naam van tickethouder\",\"HGuXjF\":\"Tickethouders\",\"CMUt3Y\":\"Tickethouders\",\"awHmAT\":\"Ticket-ID\",\"6czJik\":\"Ticket Logo\",\"OkRZ4Z\":\"Ticket Naam\",\"t79rDv\":\"Ticket niet gevonden\",\"6tmWch\":\"Ticket of product\",\"1tfWrD\":\"Ticketvoorbeeld voor\",\"KnjoUA\":\"Ticketprijs\",\"tGCY6d\":\"Ticket Prijs\",\"pGZOcL\":\"Ticket succesvol opnieuw verzonden\",\"8jLPgH\":\"Tickettype\",\"X26cQf\":\"Ticket URL\",\"8qsbZ5\":\"Ticketing & verkoop\",\"zNECqg\":\"tickets\",\"6GQNLE\":\"Tickets\",\"NRhrIB\":\"Tickets en producten\",\"OrWHoZ\":\"Tickets worden automatisch aangeboden aan klanten op de wachtlijst wanneer er capaciteit beschikbaar komt.\",\"EUnesn\":\"Tickets beschikbaar\",\"AGRilS\":\"Verkochte Tickets\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Tijd\",\"dMtLDE\":\"tot\",\"/jQctM\":\"Aan\",\"tiI71C\":\"Om uw limieten te verhogen, neem contact met ons op via\",\"ecUA8p\":\"Vandaag\",\"W428WC\":\"Kolommen schakelen\",\"BRMXj0\":\"Morgen\",\"UBSG1X\":\"Top organisatoren (Laatste 14 dagen)\",\"3sZ0xx\":\"Totaal Accounts\",\"EaAPbv\":\"Totaal betaald bedrag\",\"SMDzqJ\":\"Totaal deelnemers\",\"orBECM\":\"Totaal geïnd\",\"k5CU8c\":\"Totaal inschrijvingen\",\"4B7oCp\":\"Totale kosten\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Totaal Gebruikers\",\"oJjplO\":\"Totaal weergaven\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Volg accountgroei en prestaties per attributiebron\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Waar als offline betaling\",\"9GsDR2\":\"Waar als betaling in behandeling\",\"GUA0Jy\":\"Probeer een andere zoekterm of filter\",\"2P/OWN\":\"Probeer je filters aan te passen om meer data te zien.\",\"ouM5IM\":\"Probeer een ander e-mailadres\",\"3DZvE7\":\"Probeer Hi.Events Gratis\",\"7P/9OY\":\"Di\",\"vq2WxD\":\"Di\",\"G3myU+\":\"Dinsdag\",\"Kz91g/\":\"Turks\",\"GdOhw6\":\"Geluid uitschakelen\",\"KUOhTy\":\"Geluid inschakelen\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Typ \\\"verwijderen\\\" om te bevestigen\",\"XxecLm\":\"Type ticket\",\"IrVSu+\":\"Kan product niet dupliceren. Controleer uw gegevens\",\"Vx2J6x\":\"Kan deelnemer niet ophalen\",\"h0dx5e\":\"Kan niet aan de wachtlijst worden toegevoegd\",\"DaE0Hg\":\"Deelnemersdetails kunnen niet worden geladen.\",\"GlnD5Y\":\"Kan producten voor deze datum niet laden. Probeer het opnieuw.\",\"17VbmV\":\"Kan check-in niet ongedaan maken\",\"n57zCW\":\"Niet-toegewezen accounts\",\"9uI/rE\":\"Ongedaan maken\",\"b9SN9q\":\"Unieke bestelreferentie\",\"Ef7StM\":\"Onbekend\",\"ZBAScj\":\"Onbekende deelnemer\",\"MEIAzV\":\"Naamloos\",\"K6L5Mx\":\"Naamloze locatie\",\"X13xGn\":\"Niet vertrouwd\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Affiliate bijwerken\",\"59qHrb\":\"Capaciteit bijwerken\",\"Gaem9v\":\"Naam en beschrijving van evenement bijwerken\",\"7EhE4k\":\"Label bijwerken\",\"NPQWj8\":\"Locatie bijwerken\",\"75+lpR\":[\"Update: \",[\"subjectTitle\"],\" — wijzigingen in planning\"],\"UOGHdA\":[\"Update: \",[\"subjectTitle\"],\" — sessietijd gewijzigd\"],\"ogoTrw\":[[\"count\"],\" datum/data bijgewerkt\"],\"dDuona\":[\"Capaciteit bijgewerkt voor \",[\"count\"],\" datum/data\"],\"FT3LSc\":[\"Label bijgewerkt voor \",[\"count\"],\" datum/data\"],\"8EcY1g\":[\"Locatie bijgewerkt voor \",[\"count\"],\" sessie(s)\"],\"gJQsLv\":\"Upload een omslagafbeelding voor je organisator\",\"4kEGqW\":\"Upload een logo voor je organisator\",\"lnCMdg\":\"Afbeelding uploaden\",\"29w7p6\":\"Afbeelding uploaden...\",\"HtrFfw\":\"URL is vereist\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB-scanner actief\",\"dyTklH\":\"USB-scanner gepauzeerd\",\"OHJXlK\":\"Gebruik <0>Liquid-templating om uw e-mails te personaliseren\",\"g0WJMu\":\"Lijst voor alle data gebruiken\",\"0k4cdb\":\"Gebruik bestelgegevens voor alle deelnemers. Namen en e-mailadressen van deelnemers komen overeen met de informatie van de koper.\",\"MKK5oI\":\"De lijst voor alle data gebruiken of een lijst voor deze datum aanmaken?\",\"bA31T4\":\"Gebruik de gegevens van de koper voor alle deelnemers\",\"rnoQsz\":\"Gebruikt voor randen, accenten en QR-code styling\",\"BV4L/Q\":\"UTM-analyse\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Uw BTW-nummer valideren...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Btw-nummer\",\"pnVh83\":\"BTW-nummer\",\"CabI04\":\"BTW-nummer mag geen spaties bevatten\",\"PMhxAR\":\"BTW-nummer moet beginnen met een landcode van 2 letters gevolgd door 8-15 alfanumerieke tekens (bijv. NL123456789B01)\",\"gPgdNV\":\"BTW-nummer succesvol gevalideerd\",\"RUMiLy\":\"Validatie van BTW-nummer is mislukt\",\"vqji3Y\":\"Validatie van BTW-nummer is mislukt. Controleer uw BTW-nummer.\",\"8dENF9\":\"BTW op kosten\",\"ZutOKU\":\"BTW-tarief\",\"+KJZt3\":\"Btw-geregistreerd\",\"Nfbg76\":\"BTW-instellingen succesvol opgeslagen\",\"UvYql/\":\"BTW-instellingen opgeslagen. We valideren uw BTW-nummer op de achtergrond.\",\"bXn1Jz\":\"Btw-instellingen bijgewerkt\",\"tJylUv\":\"BTW-behandeling voor platformkosten\",\"FlGprQ\":\"BTW-behandeling voor platformkosten: EU BTW-geregistreerde bedrijven kunnen de verleggingsregeling gebruiken (0% - Artikel 196 van BTW-richtlijn 2006/112/EG). Niet-BTW-geregistreerde bedrijven worden Ierse BTW van 23% in rekening gebracht.\",\"516oLj\":\"BTW-validatieservice tijdelijk niet beschikbaar\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"Btw: niet geregistreerd\",\"AdWhjZ\":\"Verificatiecode\",\"QDEWii\":\"Geverifieerd\",\"wCKkSr\":\"Verifieer e-mail\",\"/IBv6X\":\"Verifieer je e-mailadres\",\"e/cvV1\":\"Verifiëren...\",\"fROFIL\":\"Vietnamees\",\"p5nYkr\":\"Alles bekijken\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Bekijk alle mogelijkheden\",\"RnvnDc\":\"Bekijk alle berichten verzonden op het platform\",\"+WFMis\":\"Bekijk en download rapporten voor al uw evenementen. Alleen voltooide bestellingen zijn inbegrepen.\",\"c7VN/A\":\"Antwoorden bekijken\",\"SZw9tS\":\"Details bekijken\",\"9+84uW\":[\"Details van \",[\"0\"],\" \",[\"1\"],\" bekijken\"],\"FCVmuU\":\"Bekijk evenement\",\"c6SXHN\":\"Evenementpagina bekijken\",\"n6EaWL\":\"Logboeken bekijken\",\"OaKTzt\":\"Bekijk kaart\",\"zNZNMs\":\"Bericht bekijken\",\"67OJ7t\":\"Bestelling Bekijken\",\"tKKZn0\":\"Bekijk bestelgegevens\",\"KeCXJu\":\"Bekijk bestellingsdetails, geef terugbetalingen en verstuur bevestigingen opnieuw.\",\"9jnAcN\":\"Bekijk organisator-homepage\",\"1J/AWD\":\"Ticket Bekijken\",\"N9FyyW\":\"Bekijk, bewerk en exporteer je geregistreerde deelnemers.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Wachtend\",\"quR8Qp\":\"Wachten op betaling\",\"KrurBH\":\"Wachten op scan…\",\"u0n+wz\":\"Wachtlijst\",\"3RXFtE\":\"Wachtlijst ingeschakeld\",\"TwnTPy\":\"Wachtlijstaanbod verlopen\",\"NzIvKm\":\"Wachtlijst geactiveerd\",\"aUi/Dz\":\"Waarschuwing: dit is de standaardsysteemconfiguratie. Wijzigingen zijn van invloed op alle accounts die geen specifieke configuratie toegewezen hebben.\",\"qeygIa\":\"Wo\",\"aT/44s\":\"We konden die Stripe-verbinding niet kopiëren. Probeer het opnieuw.\",\"RRZDED\":\"We konden geen bestellingen vinden die gekoppeld zijn aan dit e-mailadres.\",\"2RZK9x\":\"We konden de bestelling die u zoekt niet vinden. De link is mogelijk verlopen of de bestelgegevens zijn gewijzigd.\",\"nefMIK\":\"We konden het ticket dat u zoekt niet vinden. De link is mogelijk verlopen of de ticketgegevens zijn gewijzigd.\",\"miysJh\":\"We konden deze bestelling niet vinden. Mogelijk is deze verwijderd.\",\"ADsQ23\":\"We konden Stripe nu niet bereiken. Probeer het zo opnieuw.\",\"HJKdzP\":\"Er is een probleem opgetreden bij het laden van deze pagina. Probeer het opnieuw.\",\"jegrvW\":\"We werken samen met Stripe om uitbetalingen rechtstreeks naar je bankrekening te sturen.\",\"IfN2Qo\":\"We raden een vierkant logo aan met minimale afmetingen van 200x200px\",\"wJzo/w\":\"We raden een formaat van 400x400 px aan, met een maximale bestandsgrootte van 5 MB\",\"KRCDqH\":\"We gebruiken cookies om te begrijpen hoe de site wordt gebruikt en om je ervaring te verbeteren.\",\"x8rEDQ\":\"We konden uw BTW-nummer niet valideren na meerdere pogingen. We blijven het op de achtergrond proberen. Kom later terug.\",\"iy+M+c\":[\"We laten je per e-mail weten als er een plek beschikbaar komt voor \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Na het opslaan openen we een berichtopsteller met een vooraf ingevuld sjabloon. Jij controleert en verstuurt het — er wordt niets automatisch verzonden.\",\"q1BizZ\":\"We sturen je tickets naar dit e-mailadres\",\"ZOmUYW\":\"We valideren uw BTW-nummer op de achtergrond. Als er problemen zijn, laten we het u weten.\",\"LKjHr4\":[\"We hebben wijzigingen aangebracht in de planning voor \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" met invloed op \",[\"affectedCount\"],\" sessie(s).\"],\"Fq/Nx7\":\"We hebben een 5-cijferige verificatiecode verzonden naar:\",\"GdWB+V\":\"Webhook succesvol aangemaakt\",\"2X4ecw\":\"Webhook succesvol verwijderd\",\"ndBv0v\":\"Webhook-integraties\",\"CThMKa\":\"Webhook logboeken\",\"I0adYQ\":\"Webhook-ondertekeningsgeheim\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook verzendt geen meldingen\",\"FSaY52\":\"Webhook stuurt meldingen\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Wo\",\"VAcXNz\":\"Woensdag\",\"64X6l4\":\"week\",\"4XSc4l\":\"Wekelijks\",\"IAUiSh\":\"weken\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Welkom terug\",\"QDWsl9\":[\"Welkom bij \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Welkom bij \",[\"0\"],\", hier is een overzicht van al je evenementen\"],\"DDbx7K\":\"Welzijn\",\"ywRaYa\":\"Hoe laat?\",\"FaSXqR\":\"Wat voor type evenement?\",\"0WyYF4\":\"Wat niet-aangemeld personeel kan zien\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Wanneer een check-in wordt verwijderd\",\"RPe6bE\":\"Wanneer een datum van een terugkerend evenement wordt geannuleerd\",\"Gmd0hv\":\"Wanneer een nieuwe deelnemer wordt aangemaakt\",\"zyIyPe\":\"Wanneer een nieuw evenement wordt aangemaakt\",\"Lc18qn\":\"Wanneer een nieuwe order wordt aangemaakt\",\"dfkQIO\":\"Wanneer een nieuw product wordt gemaakt\",\"8OhzyY\":\"Wanneer een product wordt verwijderd\",\"tRXdQ9\":\"Wanneer een product wordt bijgewerkt\",\"9L9/28\":\"Wanneer een product uitverkocht is, kunnen klanten zich op een wachtlijst plaatsen om op de hoogte te worden gehouden wanneer er plekken beschikbaar komen.\",\"Q7CWxp\":\"Wanneer een deelnemer wordt geannuleerd\",\"IuUoyV\":\"Wanneer een deelnemer is ingecheckt\",\"nBVOd7\":\"Wanneer een deelnemer wordt bijgewerkt\",\"t7cuMp\":\"Wanneer een evenement wordt gearchiveerd\",\"gtoSzE\":\"Wanneer een evenement wordt bijgewerkt\",\"ny2r8d\":\"Wanneer een bestelling wordt geannuleerd\",\"c9RYbv\":\"Wanneer een bestelling is gemarkeerd als betaald\",\"ejMDw1\":\"Wanneer een bestelling wordt terugbetaald\",\"fVPt0F\":\"Wanneer een bestelling wordt bijgewerkt\",\"bcYlvb\":\"Wanneer check-in sluit\",\"XIG669\":\"Wanneer check-in opent\",\"403wpZ\":\"Indien ingeschakeld, kunnen nieuwe evenementen deelnemers hun eigen ticketgegevens beheren via een beveiligde link. Dit kan per evenement worden overschreven.\",\"blXLKj\":\"Indien ingeschakeld, tonen nieuwe evenementen een marketing opt-in selectievakje tijdens het afrekenen. Dit kan per evenement worden overschreven.\",\"Kj0Txn\":\"Indien ingeschakeld, worden er geen applicatiekosten in rekening gebracht bij Stripe Connect-transacties. Gebruik dit voor landen waar applicatiekosten niet worden ondersteund.\",\"tMqezN\":\"Of terugbetalingen worden verwerkt\",\"uchB0M\":\"Widget voorbeeld\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Schrijf hier je bericht...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"jaar\",\"zkWmBh\":\"Jaarlijks\",\"+BGee5\":\"jaren\",\"X/azM1\":\"Ja - Ik heb een geldig EU BTW-registratienummer\",\"Tz5oXG\":\"Ja, annuleer mijn bestelling\",\"QlSZU0\":[\"U imiteert <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"U geeft een gedeeltelijke terugbetaling uit. De klant krijgt \",[\"0\"],\" \",[\"1\"],\" terugbetaald.\"],\"o7LgX6\":\"U kunt extra servicekosten en belastingen configureren in uw accountinstellingen.\",\"rj3A7+\":\"Je kunt dit later voor afzonderlijke data overschrijven.\",\"paWwQ0\":\"U kunt tickets indien nodig nog steeds handmatig aanbieden.\",\"jTDzpA\":\"U kunt de laatste actieve organisator van uw account niet archiveren.\",\"5VGIlq\":\"U heeft uw berichtenlimiet bereikt.\",\"casL1O\":\"Je hebt belastingen en kosten toegevoegd aan een Gratis product. Wilt u deze verwijderen?\",\"9jJNZY\":\"Je moet je verantwoordelijkheden erkennen voordat je opslaat\",\"pCLes8\":\"U moet akkoord gaan met het ontvangen van berichten\",\"FVTVBy\":\"Je moet je e-mailadres verifiëren voordat je de status van de organisator kunt bijwerken.\",\"ze4bi/\":\"Je moet ten minste één sessie aanmaken voordat je deelnemers aan dit terugkerende evenement kunt toevoegen.\",\"w65ZgF\":\"U moet uw account-e-mailadres verifiëren voordat u e-mailsjablonen kunt wijzigen.\",\"FRl8Jv\":\"U moet het e-mailadres van uw account verifiëren voordat u berichten kunt verzenden.\",\"88cUW+\":\"U ontvangt\",\"O6/3cu\":\"In de volgende stap kun je data, planningen en herhalingsregels instellen.\",\"zKAheG\":\"Je wijzigt sessietijden\",\"MNFIxz\":[\"Je gaat naar \",[\"0\"],\"!\"],\"qGZz0m\":\"Je staat op de wachtlijst!\",\"/5HL6k\":\"Je hebt een plek aangeboden gekregen!\",\"gbjFFH\":\"Je hebt de sessietijd gewijzigd\",\"p/Sa0j\":\"Uw account heeft berichtenlimieten. Om uw limieten te verhogen, neem contact met ons op via\",\"x/xjzn\":\"Je affiliates zijn succesvol geëxporteerd.\",\"TF37u6\":\"Je deelnemers zijn succesvol geëxporteerd.\",\"79lXGw\":\"Je check-in lijst is succesvol aangemaakt. Deel de onderstaande link met je check-in personeel.\",\"BnlG9U\":\"Uw huidige bestelling gaat verloren.\",\"nBqgQb\":\"Uw e-mail\",\"GG1fRP\":\"Je evenement is live!\",\"ifRqmm\":\"Je bericht is succesvol verzonden!\",\"0/+Nn9\":\"Uw berichten verschijnen hier\",\"/Rj5P4\":\"Jouw naam\",\"PFjJxY\":\"Uw nieuwe wachtwoord moet minimaal 8 tekens lang zijn.\",\"gzrCuN\":\"Uw bestelgegevens zijn bijgewerkt. Er is een bevestigingsmail verzonden naar het nieuwe e-mailadres.\",\"naQW82\":\"Uw bestelling is geannuleerd.\",\"bhlHm/\":\"Je bestelling wacht op betaling\",\"XeNum6\":\"Je bestellingen zijn succesvol geëxporteerd.\",\"Xd1R1a\":\"Adres van je organisator\",\"WWYHKD\":\"Uw betaling is beveiligd met encryptie op bankniveau\",\"5b3QLi\":\"Uw plan\",\"N4Zkqc\":\"Je opgeslagen datumfilter is niet meer beschikbaar — alle data worden weergegeven.\",\"FNO5uZ\":\"Je ticket is nog steeds geldig — er is geen actie nodig tenzij de nieuwe tijd je niet uitkomt. Reageer op deze e-mail als je vragen hebt.\",\"CnZ3Ou\":\"Je tickets zijn bevestigd.\",\"EmFsMZ\":\"Uw BTW-nummer staat in de wachtrij voor validatie\",\"QBlhh4\":\"Uw BTW-nummer wordt gevalideerd wanneer u opslaat\",\"fT9VLt\":\"Je wachtlijstaanbod is verlopen en we konden je bestelling niet voltooien. Plaats je opnieuw op de wachtlijst om op de hoogte te worden gehouden wanneer er meer plekken beschikbaar komen.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Er is nog niets om te tonen'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>uitgevinkt succesvol\"],\"KMgp2+\":[[\"0\"],\" beschikbaar\"],\"Pmr5xp\":[[\"0\"],\" succesvol aangemaakt\"],\"FImCSc\":[[\"0\"],\" succesvol bijgewerkt\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dagen, \",[\"hours\"],\" uren, \",[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"f3RdEk\":[[\"hours\"],\" uren, \",[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"NlQ0cx\":[\"Eerste evenement van \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://uw-website.nl\",\"qnSLLW\":\"<0>Voer de prijs in exclusief belastingen en toeslagen.<1>Belastingen en toeslagen kunnen hieronder worden toegevoegd.\",\"ZjMs6e\":\"<0>Het aantal beschikbare producten voor dit product<1>Deze waarde kan worden overschreven als er <2>Capaciteitsbeperkingen zijn gekoppeld aan dit product.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minuten en 0 seconden\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Hoofdstraat 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Een datuminvoer. Perfect voor het vragen naar een geboortedatum enz.\",\"6euFZ/\":[\"Een standaard \",[\"type\"],\" wordt automatisch toegepast op alle nieuwe producten. Je kunt dit opheffen per product.\"],\"SMUbbQ\":\"Een Dropdown-ingang laat slechts één selectie toe\",\"qv4bfj\":\"Een vergoeding, zoals reserveringskosten of servicekosten\",\"POT0K/\":\"Een vast bedrag per product. Bijv. $0,50 per product\",\"f4vJgj\":\"Een meerregelige tekstinvoer\",\"OIPtI5\":\"Een percentage van de productprijs. Bijvoorbeeld 3,5% van de productprijs\",\"ZthcdI\":\"Een promotiecode zonder korting kan worden gebruikt om verborgen producten te onthullen.\",\"AG/qmQ\":\"Een Radio-optie heeft meerdere opties, maar er kan er maar één worden geselecteerd.\",\"h179TP\":\"Een korte beschrijving van het evenement die zal worden weergegeven in zoekmachineresultaten en bij het delen op sociale media. Standaard wordt de beschrijving van het evenement gebruikt\",\"WKMnh4\":\"Een enkele regel tekstinvoer\",\"BHZbFy\":\"Eén vraag per bestelling. Bijv. Wat is uw verzendadres?\",\"Fuh+dI\":\"Eén vraag per product. Bijv. Wat is je t-shirtmaat?\",\"RlJmQg\":\"Een standaardbelasting, zoals BTW of GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Accepteer bankoverschrijvingen, cheques of andere offline betalingsmethoden\",\"hrvLf4\":\"Accepteer creditcardbetalingen met Stripe\",\"bfXQ+N\":\"Uitnodiging accepteren\",\"AeXO77\":\"Account\",\"lkNdiH\":\"Naam rekening\",\"Puv7+X\":\"Accountinstellingen\",\"OmylXO\":\"Account succesvol bijgewerkt\",\"7L01XJ\":\"Acties\",\"FQBaXG\":\"Activeer\",\"5T2HxQ\":\"Activeringsdatum\",\"F6pfE9\":\"Actief\",\"/PN1DA\":\"Voeg een beschrijving toe voor deze check-in lijst\",\"0/vPdA\":\"Voeg notities over de genodigde toe. Deze zijn niet zichtbaar voor de deelnemer.\",\"Or1CPR\":\"Notities over de deelnemer toevoegen...\",\"l3sZO1\":\"Voeg eventuele notities over de bestelling toe. Deze zijn niet zichtbaar voor de klant.\",\"xMekgu\":\"Opmerkingen over de bestelling toevoegen...\",\"PGPGsL\":\"Beschrijving toevoegen\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Instructies voor offline betalingen toevoegen (bijv. details voor bankoverschrijving, waar cheques naartoe moeten, betalingstermijnen)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Nieuw toevoegen\",\"TZxnm8\":\"Optie toevoegen\",\"24l4x6\":\"Product toevoegen\",\"8q0EdE\":\"Product toevoegen aan categorie\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Belasting of toeslag toevoegen\",\"goOKRY\":\"Niveau toevoegen\",\"oZW/gT\":\"Toevoegen aan kalender\",\"pn5qSs\":\"Aanvullende informatie\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adres\",\"NY/x1b\":\"Adresregel 1\",\"POdIrN\":\"Adresregel 1\",\"cormHa\":\"Adresregel 2\",\"gwk5gg\":\"Adresregel 2\",\"U3pytU\":\"Admin\",\"HLDaLi\":\"Admin-gebruikers hebben volledige toegang tot evenementen en accountinstellingen.\",\"W7AfhC\":\"Alle deelnemers aan dit evenement\",\"cde2hc\":\"Alle producten\",\"5CQ+r0\":\"Deelnemers met onbetaalde bestellingen toestaan om in te checken\",\"ipYKgM\":\"Indexering door zoekmachines toestaan\",\"LRbt6D\":\"Laat zoekmachines dit evenement indexeren\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Verbazingwekkend, evenement, trefwoorden...\",\"hehnjM\":\"Bedrag\",\"R2O9Rg\":[\"Betaald bedrag (\",[\"0\"],\")\"],\"V7MwOy\":\"Er is een fout opgetreden tijdens het laden van de pagina\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Er is een onverwachte fout opgetreden.\",\"byKna+\":\"Er is een onverwachte fout opgetreden. Probeer het opnieuw.\",\"ubdMGz\":\"Vragen van producthouders worden naar dit e-mailadres gestuurd. Dit e-mailadres wordt ook gebruikt als\",\"aAIQg2\":\"Uiterlijk\",\"Ym1gnK\":\"toegepast\",\"sy6fss\":[\"Geldt voor \",[\"0\"],\" producten\"],\"kadJKg\":\"Geldt voor 1 product\",\"DB8zMK\":\"Toepassen\",\"GctSSm\":\"Kortingscode toepassen\",\"ARBThj\":[\"Pas dit \",[\"type\"],\" toe op alle nieuwe producten\"],\"S0ctOE\":\"Archief evenement\",\"TdfEV7\":\"Gearchiveerd\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Weet je zeker dat je deze deelnemer wilt activeren?\",\"TvkW9+\":\"Weet je zeker dat je dit evenement wilt archiveren?\",\"/CV2x+\":\"Weet je zeker dat je deze deelnemer wilt annuleren? Hiermee vervalt hun ticket\",\"YgRSEE\":\"Weet je zeker dat je deze promotiecode wilt verwijderen?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Weet je zeker dat je dit evenement concept wilt maken? Dit maakt het evenement onzichtbaar voor het publiek\",\"mEHQ8I\":\"Weet je zeker dat je dit evenement openbaar wilt maken? Hierdoor wordt het evenement zichtbaar voor het publiek\",\"s4JozW\":\"Weet je zeker dat je dit evenements wilt herstellen? Het zal worden hersteld als een conceptevenement.\",\"vJuISq\":\"Weet je zeker dat je deze Capaciteitstoewijzing wilt verwijderen?\",\"baHeCz\":\"Weet je zeker dat je deze Check-In lijst wilt verwijderen?\",\"LBLOqH\":\"Vraag één keer per bestelling\",\"wu98dY\":\"Vraag één keer per product\",\"ss9PbX\":\"Deelnemer\",\"m0CFV2\":\"Details deelnemers\",\"QKim6l\":\"Deelnemer niet gevonden\",\"R5IT/I\":\"Opmerkingen voor deelnemers\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Bezoekerskaartje\",\"9SZT4E\":\"Deelnemers\",\"iPBfZP\":\"Geregistreerde deelnemers\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatisch formaat wijzigen\",\"vZ5qKF\":\"Pas de widgethoogte automatisch aan op basis van de inhoud. Wanneer uitgeschakeld, vult de widget de hoogte van de container.\",\"4lVaWA\":\"In afwachting van offline betaling\",\"2rHwhl\":\"In afwachting van offline betaling\",\"3wF4Q/\":\"Wacht op betaling\",\"ioG+xt\":\"In afwachting van betaling\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Terug naar de evenementpagina\",\"VCoEm+\":\"Terug naar inloggen\",\"k1bLf+\":\"Achtergrondkleur\",\"I7xjqg\":\"Achtergrond Type\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Factuuradres\",\"/xC/im\":\"Factureringsinstellingen\",\"rp/zaT\":\"Braziliaans Portugees\",\"whqocw\":\"Door je te registreren ga je akkoord met onze <0>Servicevoorwaarden en <1>Privacybeleid.\",\"bcCn6r\":\"Type berekening\",\"+8bmSu\":\"Californië\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Annuleren\",\"Gjt/py\":\"E-mailwijziging annuleren\",\"tVJk4q\":\"Bestelling annuleren\",\"Os6n2a\":\"Bestelling annuleren\",\"Mz7Ygx\":[\"Annuleer order \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Geannuleerd\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capaciteit\",\"V6Q5RZ\":\"Capaciteitstoewijzing succesvol aangemaakt\",\"k5p8dz\":\"Capaciteitstoewijzing succesvol verwijderd\",\"nDBs04\":\"Capaciteitsbeheer\",\"ddha3c\":\"Met categorieën kun je producten groeperen. Je kunt bijvoorbeeld een categorie hebben voor.\",\"iS0wAT\":\"Categorieën helpen je om je producten te organiseren. Deze titel wordt weergegeven op de openbare evenementpagina.\",\"eorM7z\":\"Categorieën opnieuw gerangschikt.\",\"3EXqwa\":\"Categorie succesvol aangemaakt\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Wachtwoord wijzigen\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Inchecken \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Inchecken en bestelling als betaald markeren\",\"QYLpB4\":\"Alleen inchecken\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Bekijk dit evenement!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Check-in lijst succesvol verwijderd\",\"+hBhWk\":\"Check-in lijst is verlopen\",\"mBsBHq\":\"Check-in lijst is niet actief\",\"vPqpQG\":\"Check-in lijst niet gevonden\",\"tejfAy\":\"Inchecklijsten\",\"hD1ocH\":\"Check-In URL gekopieerd naar klembord\",\"CNafaC\":\"Selectievakjes maken meerdere selecties mogelijk\",\"SpabVf\":\"Selectievakjes\",\"CRu4lK\":\"Ingecheckt\",\"znIg+z\":\"Kassa\",\"1WnhCL\":\"Afrekeninstellingen\",\"6imsQS\":\"Chinees (Vereenvoudigd)\",\"JjkX4+\":\"Kies een kleur voor je achtergrond\",\"/Jizh9\":\"Kies een account\",\"3wV73y\":\"Stad\",\"FG98gC\":\"Zoektekst wissen\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Klik om te kopiëren\",\"yz7wBu\":\"Sluit\",\"62Ciis\":\"Zijbalk sluiten\",\"EWPtMO\":\"Code\",\"ercTDX\":\"De code moet tussen 3 en 50 tekens lang zijn\",\"oqr9HB\":\"Dit product samenvouwen wanneer de evenementpagina voor het eerst wordt geladen\",\"jZlrte\":\"Kleur\",\"Vd+LC3\":\"De kleur moet een geldige hex-kleurcode zijn. Voorbeeld: #ffffff\",\"1HfW/F\":\"Kleuren\",\"VZeG/A\":\"Binnenkort beschikbaar\",\"yPI7n9\":\"Door komma's gescheiden trefwoorden die het evenement beschrijven. Deze worden door zoekmachines gebruikt om het evenement te categoriseren en indexeren\",\"NPZqBL\":\"Volledige bestelling\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Volledige betaling\",\"qqWcBV\":\"Voltooid\",\"6HK5Ct\":\"Afgeronde bestellingen\",\"NWVRtl\":\"Afgeronde bestellingen\",\"DwF9eH\":\"Componentcode\",\"Tf55h7\":\"Geconfigureerde korting\",\"7VpPHA\":\"Bevestig\",\"ZaEJZM\":\"Bevestig e-mailwijziging\",\"yjkELF\":\"Nieuw wachtwoord bevestigen\",\"xnWESi\":\"Wachtwoord bevestigen\",\"p2/GCq\":\"Wachtwoord bevestigen\",\"wnDgGj\":\"E-mailadres bevestigen...\",\"pbAk7a\":\"Streep aansluiten\",\"UMGQOh\":\"Maak verbinding met Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Details verbinding\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Ga verder\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Tekst doorgaan-knop\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Gekopieerd\",\"T5rdis\":\"gekopieerd naar klembord\",\"he3ygx\":\"Kopie\",\"r2B2P8\":\"Check-in URL kopiëren\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Link kopiëren\",\"E6nRW7\":\"URL kopiëren\",\"JNCzPW\":\"Land\",\"IF7RiR\":\"Omslag\",\"hYgDIe\":\"Maak\",\"b9XOHo\":[\"Maak \",[\"0\"]],\"k9RiLi\":\"Een product maken\",\"6kdXbW\":\"Maak een Promo Code\",\"n5pRtF\":\"Een ticket maken\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"een organisator maken\",\"ipP6Ue\":\"Aanwezige maken\",\"VwdqVy\":\"Capaciteitstoewijzing maken\",\"EwoMtl\":\"Categorie maken\",\"XletzW\":\"Categorie maken\",\"WVbTwK\":\"Check-in lijst maken\",\"uN355O\":\"Evenement creëren\",\"BOqY23\":\"Nieuw maken\",\"kpJAeS\":\"Organisator maken\",\"a0EjD+\":\"Product maken\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Promocode maken\",\"B3Mkdt\":\"Vraag maken\",\"UKfi21\":\"Creëer belasting of heffing\",\"d+F6q9\":\"Aangemaakt\",\"Q2lUR2\":\"Valuta\",\"DCKkhU\":\"Huidig wachtwoord\",\"uIElGP\":\"Aangepaste kaarten URL\",\"UEqXyt\":\"Aangepast bereik\",\"876pfE\":\"Klant\",\"QOg2Sf\":\"De e-mail- en meldingsinstellingen voor dit evenement aanpassen\",\"Y9Z/vP\":\"De homepage van het evenement en de berichten bij de kassa aanpassen\",\"2E2O5H\":\"De diverse instellingen voor dit evenement aanpassen\",\"iJhSxe\":\"De SEO-instellingen voor dit evenement aanpassen\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Gevarenzone\",\"ZQKLI1\":\"Gevarenzone\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Datum\",\"JvUngl\":\"Datum en tijd\",\"JJhRbH\":\"Capaciteit op dag één\",\"cnGeoo\":\"Verwijder\",\"jRJZxD\":\"Capaciteit verwijderen\",\"VskHIx\":\"Categorie verwijderen\",\"Qrc8RZ\":\"Check-in lijst verwijderen\",\"WHf154\":\"Code verwijderen\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Beschrijving\",\"YC3oXa\":\"Beschrijving voor incheckpersoneel\",\"URmyfc\":\"Details\",\"1lRT3t\":\"Als je deze capaciteit uitschakelt, worden de verkopen bijgehouden, maar niet gestopt als de limiet is bereikt\",\"H6Ma8Z\":\"Korting\",\"ypJ62C\":\"Korting %\",\"3LtiBI\":[\"Korting in \",[\"0\"]],\"C8JLas\":\"Korting Type\",\"1QfxQT\":\"Sluiten\",\"DZlSLn\":\"Documentlabel\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donatie / Betaal wat je wilt product\",\"OvNbls\":\"Download .ics\",\"kodV18\":\"CSV downloaden\",\"CELKku\":\"Factuur downloaden\",\"LQrXcu\":\"Factuur downloaden\",\"QIodqd\":\"QR-code downloaden\",\"yhjU+j\":\"Factuur downloaden\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Dropdown selectie\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Dupliceer evenement\",\"3ogkAk\":\"Dupliceer Evenement\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Dupliceer opties\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Vroege vogel\",\"ePK91l\":\"Bewerk\",\"N6j2JH\":[\"Bewerk \",[\"0\"]],\"kBkYSa\":\"Bewerk capaciteit\",\"oHE9JT\":\"Capaciteitstoewijzing bewerken\",\"j1Jl7s\":\"Categorie bewerken\",\"FU1gvP\":\"Check-in lijst bewerken\",\"iFgaVN\":\"Code bewerken\",\"jrBSO1\":\"Organisator bewerken\",\"tdD/QN\":\"Bewerk product\",\"n143Tq\":\"Bewerk productcategorie\",\"9BdS63\":\"Kortingscode bewerken\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Bewerk Vraag\",\"poTr35\":\"Gebruiker bewerken\",\"GTOcxw\":\"Gebruiker bewerken\",\"pqFrv2\":\"bijv. 2,50 voor $2,50\",\"3yiej1\":\"bijv. 23,5 voor 23,5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Instellingen voor e-mail en meldingen\",\"ATGYL1\":\"E-mailadres\",\"hzKQCy\":\"E-mailadres\",\"HqP6Qf\":\"E-mailwijziging succesvol geannuleerd\",\"mISwW1\":\"E-mailwijziging in behandeling\",\"APuxIE\":\"E-mailbevestiging opnieuw verzonden\",\"YaCgdO\":\"Bericht voettekst e-mail\",\"jyt+cx\":\"Bevestigingsmail succesvol opnieuw verstuurd\",\"I6F3cp\":\"E-mail niet geverifieerd\",\"NTZ/NX\":\"Insluitcode\",\"4rnJq4\":\"Insluitscript\",\"8oPbg1\":\"Facturering inschakelen\",\"j6w7d/\":\"Schakel deze capaciteit in om de verkoop van producten te stoppen als de limiet is bereikt\",\"VFv2ZC\":\"Einddatum\",\"237hSL\":\"Beëindigd\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Engels\",\"MhVoma\":\"Voer een bedrag in exclusief belastingen en toeslagen.\",\"SlfejT\":\"Fout\",\"3Z223G\":\"Fout bij bevestigen e-mailadres\",\"a6gga1\":\"Fout bij het bevestigen van een e-mailwijziging\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evenement\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Evenementdatum\",\"0Zptey\":\"Evenement Standaarden\",\"QcCPs8\":\"Evenement Details\",\"6fuA9p\":\"Evenement succesvol gedupliceerd\",\"AEuj2m\":\"Homepage evenement\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Locatie en details evenement\",\"OopDbA\":\"Event page\",\"4/If97\":\"Update status evenement mislukt. Probeer het later opnieuw\",\"btxLWj\":\"Evenementstatus bijgewerkt\",\"nMU2d3\":\"Evenement-URL\",\"tst44n\":\"Evenementen\",\"sZg7s1\":\"Vervaldatum\",\"KnN1Tu\":\"Verloopt op\",\"uaSvqt\":\"Vervaldatum\",\"GS+Mus\":\"Exporteer\",\"9xAp/j\":\"Deelnemer niet geannuleerd\",\"ZpieFv\":\"Bestelling niet geannuleerd\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Downloaden van factuur mislukt. Probeer het opnieuw.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Inchecklijst niet geladen\",\"ZQ15eN\":\"Niet gelukt om ticket e-mail opnieuw te versturen\",\"ejXy+D\":\"Sorteren van producten mislukt\",\"PLUB/s\":\"Tarief\",\"/mfICu\":\"Tarieven\",\"LyFC7X\":\"Bestellingen filteren\",\"cSev+j\":\"Filters\",\"CVw2MU\":[\"Filters (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Eerste factuurnummer\",\"V1EGGU\":\"Voornaam\",\"kODvZJ\":\"Voornaam\",\"S+tm06\":\"De voornaam moet tussen 1 en 50 tekens zijn\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Voor het eerst gebruikt\",\"TpqW74\":\"Vast\",\"irpUxR\":\"Vast bedrag\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Wachtwoord vergeten?\",\"2POOFK\":\"Gratis\",\"P/OAYJ\":\"Gratis product\",\"vAbVy9\":\"Gratis product, geen betalingsgegevens nodig\",\"nLC6tu\":\"Frans\",\"Weq9zb\":\"Algemeen\",\"DDcvSo\":\"Duits\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Ga terug naar profiel\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Agenda\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Brutoverkoop\",\"yRg26W\":\"Bruto verkoop\",\"R4r4XO\":\"Gasten\",\"26pGvx\":\"Heb je een promotiecode?\",\"V7yhws\":\"hallo@geweldig-evenementen.com\",\"6K/IHl\":\"Hier is een voorbeeld van hoe je het component in je applicatie kunt gebruiken.\",\"Y1SSqh\":\"Hier is de React component die je kunt gebruiken om de widget in je applicatie in te sluiten.\",\"QuhVpV\":[\"Hi \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Verborgen voor het publiek\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Verborgen vragen zijn alleen zichtbaar voor de organisator van het evenement en niet voor de klant.\",\"vLyv1R\":\"Verberg\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Verberg product na einddatum verkoop\",\"06s3w3\":\"Verberg product voor start verkoopdatum\",\"axVMjA\":\"Verberg product tenzij gebruiker toepasselijke promotiecode heeft\",\"ySQGHV\":\"Verberg product als het uitverkocht is\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Verberg dit product voor klanten\",\"Da29Y6\":\"Verberg deze vraag\",\"fvDQhr\":\"Verberg dit niveau voor gebruikers\",\"lNipG+\":\"Door een product te verbergen, kunnen gebruikers het niet zien op de evenementpagina.\",\"ZOBwQn\":\"Homepage-ontwerp\",\"PRuBTd\":\"Homepage ontwerper\",\"YjVNGZ\":\"Voorbeschouwing\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Hoeveel minuten de klant heeft om zijn bestelling af te ronden. We raden minimaal 15 minuten aan\",\"ySxKZe\":\"Hoe vaak kan deze code worden gebruikt?\",\"dZsDbK\":[\"HTML karakterlimiet overschreden: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://voorbeeld-maps-service.com/...\",\"uOXLV3\":\"Ik ga akkoord met de <0>voorwaarden\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Als dit is ingeschakeld, kunnen incheckmedewerkers aanwezigen markeren als ingecheckt of de bestelling als betaald markeren en de aanwezigen inchecken. Als deze optie is uitgeschakeld, kunnen bezoekers van onbetaalde bestellingen niet worden ingecheckt.\",\"muXhGi\":\"Als deze optie is ingeschakeld, ontvangt de organisator een e-mailbericht wanneer er een nieuwe bestelling is geplaatst\",\"6fLyj/\":\"Als je deze wijziging niet hebt aangevraagd, verander dan onmiddellijk je wachtwoord.\",\"n/ZDCz\":\"Afbeelding succesvol verwijderd\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Afbeelding succesvol geüpload\",\"VyUuZb\":\"Afbeelding URL\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactief\",\"T0K0yl\":\"Inactieve gebruikers kunnen niet inloggen.\",\"kO44sp\":\"Vermeld verbindingsgegevens voor je online evenement. Deze gegevens worden weergegeven op de overzichtspagina van de bestelling en de ticketpagina voor deelnemers.\",\"FlQKnG\":\"Belastingen en toeslagen in de prijs opnemen\",\"Vi+BiW\":[\"Inclusief \",[\"0\"],\" producten\"],\"lpm0+y\":\"Omvat 1 product\",\"UiAk5P\":\"Afbeelding invoegen\",\"OyLdaz\":\"Uitnodiging verzonden!\",\"HE6KcK\":\"Uitnodiging ingetrokken!\",\"SQKPvQ\":\"Gebruiker uitnodigen\",\"bKOYkd\":\"Factuur succesvol gedownload\",\"alD1+n\":\"Factuurnotities\",\"kOtCs2\":\"Factuurnummering\",\"UZ2GSZ\":\"Factuur Instellingen\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Item\",\"KFXip/\":\"Jan\",\"XcgRvb\":\"Jansen\",\"87a/t/\":\"Label\",\"vXIe7J\":\"Taal\",\"2LMsOq\":\"Laatste 12 maanden\",\"vfe90m\":\"Laatste 14 dagen\",\"aK4uBd\":\"Laatste 24 uur\",\"uq2BmQ\":\"Laatste 30 dagen\",\"bB6Ram\":\"Laatste 48 uur\",\"VlnB7s\":\"Laatste 6 maanden\",\"ct2SYD\":\"Laatste 7 dagen\",\"XgOuA7\":\"Laatste 90 dagen\",\"I3yitW\":\"Laatste login\",\"1ZaQUH\":\"Achternaam\",\"UXBCwc\":\"Achternaam\",\"tKCBU0\":\"Laatst gebruikt\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Laat leeg om het standaardwoord te gebruiken\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Aan het laden...\",\"wJijgU\":\"Locatie\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Inloggen\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Afmelden\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Maak factuuradres verplicht tijdens het afrekenen\",\"MU3ijv\":\"Maak deze vraag verplicht\",\"wckWOP\":\"Beheer\",\"onpJrA\":\"Deelnemer beheren\",\"n4SpU5\":\"Evenement beheren\",\"WVgSTy\":\"Bestelling beheren\",\"1MAvUY\":\"Beheer de betalings- en factureringsinstellingen voor dit evenement.\",\"cQrNR3\":\"Profiel beheren\",\"AtXtSw\":\"Belastingen en toeslagen beheren die kunnen worden toegepast op je producten\",\"ophZVW\":\"Tickets beheren\",\"DdHfeW\":\"Beheer je accountgegevens en standaardinstellingen\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Beheer je gebruikers en hun rechten\",\"1m+YT2\":\"Verplichte vragen moeten worden beantwoord voordat de klant kan afrekenen.\",\"Dim4LO\":\"Handmatig een genodigde toevoegen\",\"e4KdjJ\":\"Deelnemer handmatig toevoegen\",\"vFjEnF\":\"Markeer als betaald\",\"g9dPPQ\":\"Maximum per bestelling\",\"l5OcwO\":\"Bericht deelnemer\",\"Gv5AMu\":\"Bericht Deelnemers\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Bericht koper\",\"tNZzFb\":\"Berichtinhoud\",\"lYDV/s\":\"Bericht individuele deelnemers\",\"V7DYWd\":\"Bericht verzonden\",\"t7TeQU\":\"Berichten\",\"xFRMlO\":\"Minimum per bestelling\",\"QYcUEf\":\"Minimale prijs\",\"RDie0n\":\"Diverse\",\"mYLhkl\":\"Diverse instellingen\",\"KYveV8\":\"Meerregelig tekstvak\",\"VD0iA7\":\"Meerdere prijsopties. Perfect voor early bird-producten enz.\",\"/bhMdO\":\"Mijn verbazingwekkende evenementbeschrijving...\",\"vX8/tc\":\"Mijn verbazingwekkende evenementtitel...\",\"hKtWk2\":\"Mijn profiel\",\"fj5byd\":\"N.V.T.\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Naam\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigeer naar deelnemer\",\"qqeAJM\":\"Nooit\",\"7vhWI8\":\"Nieuw wachtwoord\",\"1UzENP\":\"Nee\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Geen gearchiveerde evenementen om weer te geven.\",\"q2LEDV\":\"Geen aanwezigen gevonden voor deze bestelling.\",\"zlHa5R\":\"Er zijn geen deelnemers aan deze bestelling toegevoegd.\",\"Wjz5KP\":\"Geen aanwezigen\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Geen capaciteitstoewijzingen\",\"a/gMx2\":\"Geen inchecklijsten\",\"tMFDem\":\"Geen gegevens beschikbaar\",\"6Z/F61\":\"Geen gegevens om weer te geven. Selecteer een datumbereik\",\"fFeCKc\":\"Geen Korting\",\"HFucK5\":\"Geen beëindigde evenementen om te laten zien.\",\"yAlJXG\":\"Geen evenementen om weer te geven\",\"GqvPcv\":\"Geen filters beschikbaar\",\"KPWxKD\":\"Geen berichten om te tonen\",\"J2LkP8\":\"Geen orders om te laten zien\",\"RBXXtB\":\"Er zijn momenteel geen betalingsmethoden beschikbaar. Neem contact op met de organisator van het evenement voor hulp.\",\"ZWEfBE\":\"Geen betaling vereist\",\"ZPoHOn\":\"Geen product gekoppeld aan deze deelnemer.\",\"Ya1JhR\":\"Geen producten beschikbaar in deze categorie.\",\"FTfObB\":\"Nog geen producten\",\"+Y976X\":\"Geen promotiecodes om te tonen\",\"MAavyl\":\"Geen vragen beantwoord door deze deelnemer.\",\"SnlQeq\":\"Er zijn geen vragen gesteld voor deze bestelling.\",\"Ev2r9A\":\"Geen resultaten\",\"gk5uwN\":\"Geen zoekresultaten\",\"RHyZUL\":\"Geen zoekresultaten.\",\"RY2eP1\":\"Er zijn geen belastingen of toeslagen toegevoegd.\",\"EdQY6l\":\"Geen\",\"OJx3wK\":\"Niet beschikbaar\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Opmerkingen\",\"jtrY3S\":\"Nog niets om te laten zien\",\"hFwWnI\":\"Instellingen meldingen\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Organisator op de hoogte stellen van nieuwe bestellingen\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Aantal dagen toegestaan voor betaling (leeg laten om betalingstermijnen weg te laten van facturen)\",\"n86jmj\":\"Nummer Voorvoegsel\",\"mwe+2z\":\"Offline bestellingen worden niet weergegeven in evenementstatistieken totdat de bestelling als betaald is gemarkeerd.\",\"dWBrJX\":\"Offline betaling mislukt. Probeer het opnieuw of neem contact op met de organisator van het evenement.\",\"fcnqjw\":\"Offline Betalingsinstructies\",\"+eZ7dp\":\"Offline betalingen\",\"ojDQlR\":\"Informatie over offline betalingen\",\"u5oO/W\":\"Instellingen voor offline betalingen\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"In de uitverkoop\",\"Ug4SfW\":\"Zodra je een evenement hebt gemaakt, zie je het hier.\",\"ZxnK5C\":\"Zodra je gegevens begint te verzamelen, zie je ze hier.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Doorlopend\",\"z+nuVJ\":\"Online evenement\",\"WKHW0N\":\"Details online evenement\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Open Check-In Pagina\",\"OdnLE4\":\"Zijbalk openen\",\"ZZEYpT\":[\"Optie \",[\"i\"]],\"oPknTP\":\"Optionele aanvullende informatie die op alle facturen moet worden vermeld (bijv. betalingsvoorwaarden, kosten voor te late betaling, retourbeleid)\",\"OrXJBY\":\"Optioneel voorvoegsel voor factuurnummers (bijv. INV-)\",\"0zpgxV\":\"Opties\",\"BzEFor\":\"of\",\"UYUgdb\":\"Bestel\",\"mm+eaX\":\"Bestelling #\",\"B3gPuX\":\"Bestelling geannuleerd\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Bestel Datum\",\"Tol4BF\":\"Bestel Details\",\"WbImlQ\":\"Bestelling is geannuleerd en de eigenaar van de bestelling is op de hoogte gesteld.\",\"nAn4Oe\":\"Bestelling gemarkeerd als betaald\",\"uzEfRz\":\"Bestelnotities\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Bestelreferentie\",\"acIJ41\":\"Bestelstatus\",\"GX6dZv\":\"Overzicht bestelling\",\"tDTq0D\":\"Time-out bestelling\",\"1h+RBg\":\"Bestellingen\",\"3y+V4p\":\"Adres organisatie\",\"GVcaW6\":\"Organisatie details\",\"nfnm9D\":\"Naam organisatie\",\"G5RhpL\":\"Organisator\",\"mYygCM\":\"Organisator is vereist\",\"Pa6G7v\":\"Naam organisator\",\"l894xP\":\"Organisatoren kunnen alleen evenementen en producten beheren. Ze kunnen geen gebruikers, accountinstellingen of factureringsgegevens beheren.\",\"fdjq4c\":\"Opvulling\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Pagina niet gevonden\",\"QbrUIo\":\"Bekeken pagina's\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"betaald\",\"HVW65c\":\"Betaald product\",\"ZfxaB4\":\"Gedeeltelijk Terugbetaald\",\"8ZsakT\":\"Wachtwoord\",\"TUJAyx\":\"Wachtwoord moet minimaal 8 tekens bevatten\",\"vwGkYB\":\"Wachtwoord moet minstens 8 tekens bevatten\",\"BLTZ42\":\"Wachtwoord opnieuw ingesteld. Log in met je nieuwe wachtwoord.\",\"f7SUun\":\"Wachtwoorden zijn niet hetzelfde\",\"aEDp5C\":\"Plak dit waar je wilt dat de widget verschijnt.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Betaling\",\"Lg+ewC\":\"Betaling & facturering\",\"DZjk8u\":\"Instellingen voor betaling en facturering\",\"lflimf\":\"Betalingstermijn\",\"JhtZAK\":\"Betaling mislukt\",\"JEdsvQ\":\"Betalingsinstructies\",\"bLB3MJ\":\"Betaalmethoden\",\"QzmQBG\":\"Betalingsprovider\",\"lsxOPC\":\"Ontvangen betaling\",\"wJTzyi\":\"Betalingsstatus\",\"xgav5v\":\"Betaling gelukt!\",\"R29lO5\":\"Betalingsvoorwaarden\",\"/roQKz\":\"Percentage\",\"vPJ1FI\":\"Percentage Bedrag\",\"xdA9ud\":\"Plaats dit in de van je website.\",\"blK94r\":\"Voeg ten minste één optie toe\",\"FJ9Yat\":\"Controleer of de verstrekte informatie correct is\",\"TkQVup\":\"Controleer je e-mail en wachtwoord en probeer het opnieuw\",\"sMiGXD\":\"Controleer of je e-mailadres geldig is\",\"Ajavq0\":\"Controleer je e-mail om je e-mailadres te bevestigen\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Ga verder in het nieuwe tabblad\",\"hcX103\":\"Maak een product\",\"cdR8d6\":\"Maak een ticket aan\",\"x2mjl4\":\"Voer een geldige URL in die naar een afbeelding verwijst.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Let op\",\"C63rRe\":\"Ga terug naar de evenementpagina om opnieuw te beginnen.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Selecteer ten minste één product\",\"igBrCH\":\"Controleer uw e-mailadres om toegang te krijgen tot alle functies\",\"/IzmnP\":\"Wacht even terwijl we uw factuur opstellen...\",\"MOERNx\":\"Portugees\",\"qCJyMx\":\"Post Checkout-bericht\",\"g2UNkE\":\"Aangedreven door\",\"Rs7IQv\":\"Bericht voor het afrekenen\",\"rdUucN\":\"Voorbeeld\",\"a7u1N9\":\"Prijs\",\"CmoB9j\":\"Modus prijsweergave\",\"BI7D9d\":\"Prijs niet ingesteld\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Prijs Type\",\"6RmHKN\":\"Primaire kleur\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primaire tekstkleur\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Alle tickets afdrukken\",\"DKwDdj\":\"Tickets afdrukken\",\"K47k8R\":\"Product\",\"1JwlHk\":\"Productcategorie\",\"U61sAj\":\"Productcategorie succesvol bijgewerkt.\",\"1USFWA\":\"Product succesvol verwijderd\",\"4Y2FZT\":\"Product Prijs Type\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Productverkoop\",\"U/R4Ng\":\"Productniveau\",\"sJsr1h\":\"Soort product\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Product(en)\",\"N0qXpE\":\"Producten\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Verkochte producten\",\"/u4DIx\":\"Verkochte producten\",\"DJQEZc\":\"Producten succesvol gesorteerd\",\"vERlcd\":\"Profiel\",\"kUlL8W\":\"Profiel succesvol bijgewerkt\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code toegepast\"],\"P5sgAk\":\"Kortingscode\",\"yKWfjC\":\"Promo Code pagina\",\"RVb8Fo\":\"Promo codes\",\"BZ9GWa\":\"Promocodes kunnen worden gebruikt voor kortingen, toegang tot de voorverkoop of speciale toegang tot je evenement.\",\"OP094m\":\"Promocodes Rapport\",\"4kyDD5\":\"Geef aanvullende context of instructies voor deze vraag. Gebruik dit veld om voorwaarden,\\nrichtlijnen of andere belangrijke informatie toe te voegen die deelnemers moeten weten voordat ze antwoorden.\",\"toutGW\":\"QR-code\",\"LkMOWF\":\"Beschikbare hoeveelheid\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Vraag verwijderd\",\"avf0gk\":\"Beschrijving van de vraag\",\"oQvMPn\":\"Titel van de vraag\",\"enzGAL\":\"Vragen\",\"ROv2ZT\":\"Vragen en antwoorden\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio-optie\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Ontvanger\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Terugbetaling mislukt\",\"n10yGu\":\"Bestelling terugbetalen\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Restitutie in behandeling\",\"xHpVRl\":\"Restitutie Status\",\"/BI0y9\":\"Terugbetaald\",\"fgLNSM\":\"Registreer\",\"9+8Vez\":\"Overblijvend gebruik\",\"tasfos\":\"verwijderen\",\"t/YqKh\":\"Verwijder\",\"t9yxlZ\":\"Rapporten\",\"prZGMe\":\"Factuuradres vereisen\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"E-mailbevestiging opnieuw verzenden\",\"wIa8Qe\":\"Uitnodiging opnieuw versturen\",\"VeKsnD\":\"E-mail met bestelling opnieuw verzenden\",\"dFuEhO\":\"Ticket e-mail opnieuw verzenden\",\"o6+Y6d\":\"Opnieuw verzenden...\",\"OfhWJH\":\"Reset\",\"RfwZxd\":\"Wachtwoord opnieuw instellen\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Evenement herstellen\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Terug naar evenementpagina\",\"8YBH95\":\"Inkomsten\",\"PO/sOY\":\"Uitnodiging intrekken\",\"GDvlUT\":\"Rol\",\"ELa4O9\":\"Einddatum verkoop\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Startdatum verkoop\",\"hBsw5C\":\"Verkoop beëindigd\",\"kpAzPe\":\"Start verkoop\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Opslaan\",\"IUwGEM\":\"Wijzigingen opslaan\",\"U65fiW\":\"Organisator opslaan\",\"UGT5vp\":\"Instellingen opslaan\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Zoek op naam van een deelnemer, e-mail of bestelnummer...\",\"+pr/FY\":\"Zoeken op evenementnaam...\",\"3zRbWw\":\"Zoeken op naam, e-mail of bestelnummer...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Zoeken op naam...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Zoek capaciteitstoewijzingen...\",\"r9M1hc\":\"Check-in lijsten doorzoeken...\",\"+0Yy2U\":\"Producten zoeken\",\"YIix5Y\":\"Zoeken...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secundaire kleur\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secundaire tekstkleur\",\"02ePaq\":[\"Kies \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Selecteer categorie...\",\"kWI/37\":\"Organisator selecteren\",\"ixIx1f\":\"Kies product\",\"3oSV95\":\"Selecteer productcategorie\",\"C4Y1hA\":\"Selecteer producten\",\"hAjDQy\":\"Selecteer status\",\"QYARw/\":\"Selecteer ticket\",\"OMX4tH\":\"Kies tickets\",\"DrwwNd\":\"Selecteer tijdsperiode\",\"O/7I0o\":\"Selecteer...\",\"JlFcis\":\"Stuur\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Stuur een bericht\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Verstuur bericht\",\"D7ZemV\":\"Verzend orderbevestiging en ticket e-mail\",\"v1rRtW\":\"Test verzenden\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO Beschrijving\",\"/SIY6o\":\"SEO Trefwoorden\",\"GfWoKv\":\"SEO-instellingen\",\"rXngLf\":\"SEO titel\",\"/jZOZa\":\"Servicevergoeding\",\"Bj/QGQ\":\"Stel een minimumprijs in en laat gebruikers meer betalen als ze dat willen\",\"L0pJmz\":\"Stel het startnummer voor factuurnummering in. Dit kan niet worden gewijzigd als de facturen eenmaal zijn gegenereerd.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Instellingen\",\"Z8lGw6\":\"Deel\",\"B2V3cA\":\"Evenement delen\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Beschikbare producthoeveelheid tonen\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Meer tonen\",\"izwOOD\":\"Belastingen en toeslagen apart weergeven\",\"1SbbH8\":\"Wordt aan de klant getoond nadat hij heeft afgerekend, op de overzichtspagina van de bestelling.\",\"YfHZv0\":\"Aan de klant getoond voordat hij afrekent\",\"CBBcly\":\"Toont algemene adresvelden, inclusief land\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Enkelregelig tekstvak\",\"+P0Cn2\":\"Deze stap overslaan\",\"YSEnLE\":\"Jansen\",\"lgFfeO\":\"Uitverkocht\",\"Mi1rVn\":\"Uitverkocht\",\"nwtY4N\":\"Er is iets misgegaan\",\"GRChTw\":\"Er is iets misgegaan bij het verwijderen van de Belasting of Belastinggeld\",\"YHFrbe\":\"Er ging iets mis! Probeer het opnieuw\",\"kf83Ld\":\"Er ging iets mis.\",\"fWsBTs\":\"Er is iets misgegaan. Probeer het opnieuw.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Sorry, deze promotiecode wordt niet herkend\",\"65A04M\":\"Spaans\",\"mFuBqb\":\"Standaardproduct met een vaste prijs\",\"D3iCkb\":\"Startdatum\",\"/2by1f\":\"Staat of regio\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe-betalingen zijn niet ingeschakeld voor dit evenement.\",\"UJmAAK\":\"Onderwerp\",\"X2rrlw\":\"Subtotaal\",\"zzDlyQ\":\"Succes\",\"b0HJ45\":[\"Succes! \",[\"0\"],\" ontvangt binnenkort een e-mail.\"],\"BJIEiF\":[\"Succesvol \",[\"0\"],\" deelnemer\"],\"OtgNFx\":\"E-mailadres succesvol bevestigd\",\"IKwyaF\":\"E-mailwijziging succesvol bevestigd\",\"zLmvhE\":\"Succesvol aangemaakte deelnemer\",\"gP22tw\":\"Succesvol gecreëerd product\",\"9mZEgt\":\"Succesvol aangemaakte promotiecode\",\"aIA9C4\":\"Succesvol aangemaakte vraag\",\"J3RJSZ\":\"Deelnemer succesvol bijgewerkt\",\"3suLF0\":\"Capaciteitstoewijzing succesvol bijgewerkt\",\"Z+rnth\":\"Check-in lijst succesvol bijgewerkt\",\"vzJenu\":\"E-mailinstellingen met succes bijgewerkt\",\"7kOMfV\":\"Evenement succesvol bijgewerkt\",\"G0KW+e\":\"Succesvol vernieuwd homepage-ontwerp\",\"k9m6/E\":\"Homepage-instellingen met succes bijgewerkt\",\"y/NR6s\":\"Locatie succesvol bijgewerkt\",\"73nxDO\":\"Misc-instellingen met succes bijgewerkt\",\"4H80qv\":\"Bestelling succesvol bijgewerkt\",\"6xCBVN\":\"Instellingen voor betalen en factureren succesvol bijgewerkt\",\"1Ycaad\":\"Product succesvol bijgewerkt\",\"70dYC8\":\"Succesvol bijgewerkte promotiecode\",\"F+pJnL\":\"Succesvol bijgewerkte Seo-instellingen\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Ondersteuning per e-mail\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Belasting\",\"geUFpZ\":\"Belastingen en heffingen\",\"dFHcIn\":\"Belastingdetails\",\"wQzCPX\":\"Belastinginformatie die onderaan alle facturen moet staan (bijv. btw-nummer, belastingregistratie)\",\"0RXCDo\":\"Belasting of vergoeding succesvol verwijderd\",\"ZowkxF\":\"Belastingen\",\"qu6/03\":\"Belastingen en heffingen\",\"gypigA\":\"Die promotiecode is ongeldig\",\"5ShqeM\":\"De check-in lijst die je zoekt bestaat niet.\",\"QXlz+n\":\"De standaardvaluta voor je evenementen.\",\"mnafgQ\":\"De standaard tijdzone voor je evenementen.\",\"o7s5FA\":\"De taal waarin de deelnemer e-mails ontvangt.\",\"NlfnUd\":\"De link waarop je hebt geklikt is ongeldig.\",\"HsFnrk\":[\"Het maximum aantal producten voor \",[\"0\"],\"is \",[\"1\"]],\"TSAiPM\":\"De pagina die u zoekt bestaat niet\",\"MSmKHn\":\"De prijs die aan de klant wordt getoond is inclusief belastingen en toeslagen.\",\"6zQOg1\":\"De prijs die aan de klant wordt getoond is exclusief belastingen en toeslagen. Deze worden apart weergegeven\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"De titel van het evenement die zal worden weergegeven in zoekmachineresultaten en bij het delen op sociale media. Standaard wordt de titel van het evenement gebruikt\",\"wDx3FF\":\"Er zijn geen producten beschikbaar voor dit evenement\",\"pNgdBv\":\"Er zijn geen producten beschikbaar in deze categorie\",\"rMcHYt\":\"Er is een restitutie in behandeling. Wacht tot deze is voltooid voordat je een nieuwe restitutie aanvraagt.\",\"F89D36\":\"Er is een fout opgetreden bij het markeren van de bestelling als betaald\",\"68Axnm\":\"Er is een fout opgetreden bij het verwerken van uw verzoek. Probeer het opnieuw.\",\"mVKOW6\":\"Er is een fout opgetreden bij het verzenden van uw bericht\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Deze deelnemer heeft een onbetaalde bestelling.\",\"mf3FrP\":\"Deze categorie heeft nog geen producten.\",\"8QH2Il\":\"Deze categorie is niet zichtbaar voor het publiek\",\"xxv3BZ\":\"Deze check-in lijst is verlopen\",\"Sa7w7S\":\"Deze check-ins lijst is verlopen en niet langer beschikbaar voor check-ins.\",\"Uicx2U\":\"Deze check-in lijst is actief\",\"1k0Mp4\":\"Deze check-in lijst is nog niet actief\",\"K6fmBI\":\"Deze check-ins lijst is nog niet actief en is niet beschikbaar voor check-ins.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Deze informatie wordt weergegeven op de betaalpagina, de pagina met het overzicht van de bestelling en de e-mail ter bevestiging van de bestelling.\",\"XAHqAg\":\"Dit is een algemeen product, zoals een t-shirt of een mok. Er wordt geen ticket uitgegeven\",\"CNk/ro\":\"Dit is een online evenement\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Dit bericht wordt opgenomen in de voettekst van alle e-mails die vanuit dit evenement worden verzonden\",\"55i7Fa\":\"Dit bericht wordt alleen weergegeven als de bestelling succesvol is afgerond. Bestellingen die op betaling wachten, krijgen dit bericht niet te zien\",\"RjwlZt\":\"Deze bestelling is al betaald.\",\"5K8REg\":\"Deze bestelling is al terugbetaald.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Deze bestelling is geannuleerd.\",\"Q0zd4P\":\"Deze bestelling is verlopen. Begin opnieuw.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Deze bestelling is compleet.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Deze bestelpagina is niet langer beschikbaar.\",\"i0TtkR\":\"Dit overschrijft alle zichtbaarheidsinstellingen en verbergt het product voor alle klanten.\",\"cRRc+F\":\"Dit product kan niet worden verwijderd omdat het gekoppeld is aan een bestelling. In plaats daarvan kunt u het verbergen.\",\"3Kzsk7\":\"Dit product is een ticket. Kopers krijgen bij aankoop een ticket\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Deze vraag is alleen zichtbaar voor de organisator van het evenement.\",\"IV9xTT\":\"Deze gebruiker is niet actief, omdat hij zijn uitnodiging niet heeft geaccepteerd.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"dtGC3q\":\"Ticket e-mail is opnieuw verzonden naar de deelnemer\",\"54q0zp\":\"Tickets voor\",\"xN9AhL\":[\"Niveau \",[\"0\"]],\"jZj9y9\":\"Gelaagd product\",\"8wITQA\":\"Met gelaagde producten kun je meerdere prijsopties aanbieden voor hetzelfde product. Dit is perfect voor early bird-producten of om verschillende prijsopties aan te bieden voor verschillende groepen mensen.\",\"nn3mSR\":\"Resterende tijd:\",\"s/0RpH\":\"Gebruikte tijden\",\"y55eMd\":\"Gebruikte tijden\",\"40Gx0U\":\"Tijdzone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Gereedschap\",\"72c5Qo\":\"Totaal\",\"YXx+fG\":\"Totaal vóór kortingen\",\"NRWNfv\":\"Totaal kortingsbedrag\",\"BxsfMK\":\"Totaal vergoedingen\",\"2bR+8v\":\"Totaal Brutoverkoop\",\"mpB/d9\":\"Totaal bestelbedrag\",\"m3FM1g\":\"Totaal terugbetaald\",\"jEbkcB\":\"Totaal Terugbetaald\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Totale belasting\",\"+zy2Nq\":\"Type\",\"FMdMfZ\":\"Deelnemer kan niet worden ingecheckt\",\"bPWBLL\":\"Deelnemer kan niet worden uitgecheckt\",\"9+P7zk\":\"Kan geen product maken. Controleer uw gegevens\",\"WLxtFC\":\"Kan geen product maken. Controleer uw gegevens\",\"/cSMqv\":\"Kan geen vraag maken. Controleer uw gegevens\",\"MH/lj8\":\"Kan vraag niet bijwerken. Controleer uw gegevens\",\"nnfSdK\":\"Unieke klanten\",\"Mqy/Zy\":\"Verenigde Staten\",\"NIuIk1\":\"Onbeperkt\",\"/p9Fhq\":\"Onbeperkt beschikbaar\",\"E0q9qH\":\"Onbeperkt gebruik toegestaan\",\"h10Wm5\":\"Onbetaalde bestelling\",\"ia8YsC\":\"Komende\",\"TlEeFv\":\"Komende evenementen\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Naam, beschrijving en data van evenement bijwerken\",\"vXPSuB\":\"Profiel bijwerken\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL gekopieerd naar klembord\",\"e5lF64\":\"Gebruiksvoorbeeld\",\"fiV0xj\":\"Gebruikslimiet\",\"sGEOe4\":\"Gebruik een onscherpe versie van de omslagafbeelding als achtergrond\",\"OadMRm\":\"Coverafbeelding gebruiken\",\"7PzzBU\":\"Gebruiker\",\"yDOdwQ\":\"Gebruikersbeheer\",\"Sxm8rQ\":\"Gebruikers\",\"VEsDvU\":\"Gebruikers kunnen hun e-mailadres wijzigen in <0>Profielinstellingen\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"BTW\",\"E/9LUk\":\"Naam locatie\",\"jpctdh\":\"Bekijk\",\"Pte1Hv\":\"Details van deelnemers bekijken\",\"/5PEQz\":\"Evenementpagina bekijken\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Bekijk op Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP check-in lijst\",\"tF+VVr\":\"VIP-ticket\",\"2q/Q7x\":\"Zichtbaarheid\",\"vmOFL/\":\"We konden je betaling niet verwerken. Probeer het opnieuw of neem contact op met de klantenservice.\",\"45Srzt\":\"We konden de categorie niet verwijderen. Probeer het opnieuw.\",\"/DNy62\":[\"We konden geen tickets vinden die overeenkomen met \",[\"0\"]],\"1E0vyy\":\"We konden de gegevens niet laden. Probeer het opnieuw.\",\"NmpGKr\":\"We konden de categorieën niet opnieuw ordenen. Probeer het opnieuw.\",\"BJtMTd\":\"We raden afmetingen aan van 2160px bij 1080px en een maximale bestandsgrootte van 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"We konden je betaling niet bevestigen. Probeer het opnieuw of neem contact op met de klantenservice.\",\"Gspam9\":\"We zijn je bestelling aan het verwerken. Even geduld alstublieft...\",\"LuY52w\":\"Welkom aan boord! Log in om verder te gaan.\",\"dVxpp5\":[\"Welkom terug\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Wat zijn gelaagde producten?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Wat is een categorie?\",\"gxeWAU\":\"Op welke producten is deze code van toepassing?\",\"hFHnxR\":\"Op welke producten is deze code van toepassing? (Geldt standaard voor alle)\",\"AeejQi\":\"Op welke producten moet deze capaciteit van toepassing zijn?\",\"Rb0XUE\":\"Hoe laat kom je aan?\",\"5N4wLD\":\"Wat voor vraag is dit?\",\"gyLUYU\":\"Als deze optie is ingeschakeld, worden facturen gegenereerd voor ticketbestellingen. Facturen worden samen met de e-mail ter bevestiging van de bestelling verzonden. Bezoekers kunnen hun facturen ook downloaden van de bestelbevestigingspagina.\",\"D3opg4\":\"Als offline betalingen zijn ingeschakeld, kunnen gebruikers hun bestellingen afronden en hun tickets ontvangen. Hun tickets zullen duidelijk aangeven dat de bestelling niet betaald is en de check-in tool zal het check-in personeel informeren als een bestelling betaald moet worden.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Welke tickets moeten aan deze inchecklijst worden gekoppeld?\",\"S+OdxP\":\"Wie organiseert dit evenement?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Aan wie moet deze vraag worden gesteld?\",\"VxFvXQ\":\"Widget insluiten\",\"v1P7Gm\":\"Widget instellingen\",\"b4itZn\":\"Werken\",\"hqmXmc\":\"Werken...\",\"+G/XiQ\":\"Jaar tot nu toe\",\"l75CjT\":\"Ja\",\"QcwyCh\":\"Ja, verwijder ze\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Je wijzigt je e-mailadres in <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Je bent offline\",\"sdB7+6\":\"Je kunt een promotiecode maken die gericht is op dit product op de\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Je kunt het producttype niet wijzigen omdat er deelnemers aan dit product zijn gekoppeld.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Je kunt deelnemers met onbetaalde bestellingen niet inchecken. Je kunt deze instelling wijzigen in de evenementinstellingen.\",\"c9Evkd\":\"Je kunt de laatste categorie niet verwijderen.\",\"6uwAvx\":\"Je kunt dit prijsniveau niet verwijderen omdat er al producten voor dit niveau worden verkocht. In plaats daarvan kun je het verbergen.\",\"tFbRKJ\":\"Je kunt de rol of status van de accounteigenaar niet bewerken.\",\"fHfiEo\":\"Je kunt een handmatig aangemaakte bestelling niet terugbetalen.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Je hebt toegang tot meerdere accounts. Kies er een om verder te gaan.\",\"Z6q0Vl\":\"Je hebt deze uitnodiging al geaccepteerd. Log in om verder te gaan.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Je hebt geen in behandeling zijnde e-mailwijziging.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Je hebt geen tijd meer om je bestelling af te ronden.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"U moet erkennen dat deze e-mail geen promotie is\",\"3ZI8IL\":\"U moet akkoord gaan met de algemene voorwaarden\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Je moet een ticket aanmaken voordat je handmatig een genodigde kunt toevoegen.\",\"jE4Z8R\":\"Je moet minstens één prijsniveau hebben\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Je moet een bestelling handmatig als betaald markeren. Dit kun je doen op de pagina Bestelling beheren.\",\"L/+xOk\":\"Je hebt een ticket nodig voordat je een inchecklijst kunt maken.\",\"Djl45M\":\"U hebt een product nodig voordat u een capaciteitstoewijzing kunt maken.\",\"y3qNri\":\"Je hebt minstens één product nodig om te beginnen. Gratis, betaald of laat de gebruiker beslissen wat hij wil betalen.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Je accountnaam wordt gebruikt op evenementpagina's en in e-mails.\",\"veessc\":\"Je bezoekers verschijnen hier zodra ze zich hebben geregistreerd voor je evenement. Je kunt deelnemers ook handmatig toevoegen.\",\"Eh5Wrd\":\"Je geweldige website 🎉\",\"lkMK2r\":\"Uw gegevens\",\"3ENYTQ\":[\"Uw verzoek om uw e-mail te wijzigen in <0>\",[\"0\"],\" is in behandeling. Controleer uw e-mail om te bevestigen\"],\"yZfBoy\":\"Uw bericht is verzonden\",\"KSQ8An\":\"Uw bestelling\",\"Jwiilf\":\"Uw bestelling is geannuleerd\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Je bestellingen verschijnen hier zodra ze binnenkomen.\",\"9TO8nT\":\"Uw wachtwoord\",\"P8hBau\":\"Je betaling wordt verwerkt.\",\"UdY1lL\":\"Uw betaling is niet gelukt, probeer het opnieuw.\",\"fzuM26\":\"Uw betaling is mislukt. Probeer het opnieuw.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Je terugbetaling wordt verwerkt.\",\"IFHV2p\":\"Uw ticket voor\",\"x1PPdr\":\"Postcode\",\"BM/KQm\":\"Postcode\",\"+LtVBt\":\"Postcode\",\"25QDJ1\":\"- Klik om te publiceren\",\"WOyJmc\":\"- Klik om te verwijderen\",\"ncwQad\":\"(leeg)\",\"B/gRsg\":\"(geen)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" is al ingecheckt\"],\"3beCx0\":[[\"0\"],\" <0>ingecheckt\"],\"S4PqS9\":[[\"0\"],\" Actieve webhooks\"],\"6MIiOI\":[\"nog \",[\"0\"]],\"COnw8D\":[[\"0\"],\" logo\"],\"xG9N0H\":[[\"0\"],\" van \",[\"1\"],\" plaatsen zijn bezet.\"],\"B7pZfX\":[[\"0\"],\" organisatoren\"],\"rZTf6P\":[\"Nog \",[\"0\"],\" plaatsen\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"dtXkP9\":[[\"0\"],\" aankomende data\"],\"30bTiU\":[[\"activeCount\"],\" ingeschakeld\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" deelnemers zijn ingeschreven voor deze sessie.\"],\"TjbIUI\":[[\"availableCount\"],\" van \",[\"totalCount\"],\" beschikbaar\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" ingecheckt\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" u geleden\"],\"NRSLBe\":[[\"diffMin\"],\" min geleden\"],\"iYfwJE\":[[\"diffSec\"],\" sec geleden\"],\"OJnhhX\":[[\"eventCount\"],\" evenementen\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" deelnemers zijn ingeschreven over de betrokken sessies.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" tickettypen\"],\"0cLzoF\":[[\"totalOccurrences\"],\" data\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessies verspreid over \",[\"0\"],\" data (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sessie\"],\"other\":[\"#\",\" sessies\"]}],\" per dag)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Belasting/Kosten\",\"B1St2O\":\"<0>Check-in lijsten helpen u de evenementtoegang te beheren per dag, gebied of tickettype. U kunt tickets koppelen aan specifieke lijsten zoals VIP-zones of Dag 1 passen en een beveiligde check-in link delen met personeel. Geen account vereist. Check-in werkt op mobiel, desktop of tablet, met behulp van een apparaatcamera of HID USB-scanner. \",\"v9VSIS\":\"<0>Stel een enkele totale aanwezigheidslimiet in die van toepassing is op meerdere tickettypen tegelijk.<1>Als u bijvoorbeeld een <2>Dagpas en een <3>Volledig Weekend ticket koppelt, halen ze beide uit dezelfde pool van plaatsen. Zodra de limiet is bereikt, stoppen alle gekoppelde tickets automatisch met verkopen.\",\"vKXqag\":\"<0>Dit is de standaardhoeveelheid voor alle data. De capaciteit per datum kan de beschikbaarheid verder beperken op de <1>pagina Sessieplanning.\",\"ZnVt5v\":\"<0>Webhooks stellen externe services direct op de hoogte wanneer er iets gebeurt, zoals het toevoegen van een nieuwe deelnemer aan je CRM of mailinglijst na registratie, en zorgen zo voor naadloze automatisering.<1>Gebruik diensten van derden zoals <2>Zapier, <3>IFTTT of <4>Make om aangepaste workflows te maken en taken te automatiseren.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" tegen de huidige koers\"],\"M2DyLc\":\"1 Actieve webhook\",\"6hIk/x\":\"1 deelnemer is ingeschreven over de betrokken sessies.\",\"qOyE2U\":\"1 deelnemer is ingeschreven voor deze sessie.\",\"943BwI\":\"1 dag na de einddatum\",\"yj3N+g\":\"1 dag na de startdatum\",\"Z3etYG\":\"1 dag voor het evenement\",\"szSnlj\":\"1 uur voor het evenement\",\"yTsaLw\":\"1 ticket\",\"nz96Ue\":\"1 tickettype\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 week voor het evenement\",\"09VFYl\":\"12 tickets aangeboden\",\"HR/cvw\":\"Voorbeeldstraat 123\",\"dgKxZ5\":\"135+ valuta's en 40+ betaalmethoden\",\"kMU5aM\":\"Een annuleringsmelding is verzonden naar\",\"o++0qa\":\"een wijziging in de duur\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Er is een nieuwe verificatiecode naar je e-mail verzonden\",\"sr2Je0\":\"een verschuiving in begin-/eindtijden\",\"/z/bH1\":\"Een korte beschrijving van je organisator die aan je gebruikers wordt getoond.\",\"aS0jtz\":\"Verlaten\",\"uyJsf6\":\"Over\",\"JvuLls\":\"Kosten absorberen\",\"lk74+I\":\"Kosten absorberen\",\"1uJlG9\":\"Accentkleur\",\"g3UF2V\":\"Accepteren\",\"K5+3xg\":\"Uitnodiging accepteren\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Accountinformatie\",\"EHNORh\":\"Account niet gevonden\",\"bPwFdf\":\"Accounts\",\"AhwTa1\":\"Actie vereist: BTW-informatie nodig\",\"APyAR/\":\"Actieve evenementen\",\"kCl6ja\":\"Actieve betaalmethoden\",\"XJOV1Y\":\"Activiteit\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Datum toevoegen\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Eén datum toevoegen\",\"CjvTPJ\":\"Nog een tijd toevoegen\",\"0XCduh\":\"Voeg ten minste één tijd toe\",\"/chGpa\":\"Voeg verbindingsgegevens toe voor het online evenement.\",\"UWWRyd\":\"Voeg aangepaste vragen toe om extra informatie te verzamelen tijdens het afrekenen\",\"Z/dcxc\":\"Datum toevoegen\",\"Q219NT\":\"Data toevoegen\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Locatie toevoegen\",\"VX6WUv\":\"Locatie toevoegen\",\"GCQlV2\":\"Voeg meerdere tijden toe als je meerdere sessies per dag organiseert.\",\"7JF9w9\":\"Vraag toevoegen\",\"NLbIb6\":\"Voeg deze deelnemer toch toe (capaciteit overschrijven)\",\"6PNlRV\":\"Voeg dit evenement toe aan je agenda\",\"BGD9Yt\":\"Tickets toevoegen\",\"uIv4Op\":\"Voeg trackingpixels toe aan je openbare evenementpagina's en organisatorhomepage. Er wordt een cookie-toestemmingsbanner getoond aan bezoekers wanneer tracking actief is.\",\"QN2F+7\":\"Webhook toevoegen\",\"NsWqSP\":\"Voeg je sociale media en website-URL toe. Deze worden weergegeven op je openbare organisatorpagina.\",\"bVjDs9\":\"Extra kosten\",\"MKqSg4\":\"Beheerderstoegang vereist\",\"0Zypnp\":\"Beheerders Dashboard\",\"YAV57v\":\"Affiliate\",\"I+utEq\":\"Affiliatecode kan niet worden gewijzigd\",\"/jHBj5\":\"Affiliate succesvol aangemaakt\",\"uCFbG2\":\"Affiliate succesvol verwijderd\",\"ld8I+f\":\"Affiliateprogramma\",\"a41PKA\":\"Affiliateverkopen worden bijgehouden\",\"mJJh2s\":\"Affiliateverkopen worden niet bijgehouden. Dit deactiveert de affiliate.\",\"jabmnm\":\"Affiliate succesvol bijgewerkt\",\"CPXP5Z\":\"Affiliates\",\"9Wh+ug\":\"Affiliates geëxporteerd\",\"3cqmut\":\"Affiliates helpen je om verkopen van partners en influencers bij te houden. Maak affiliatecodes aan en deel ze om prestaties te monitoren.\",\"z7GAMJ\":\"alle\",\"N40H+G\":\"Alle\",\"7rLTkE\":\"Alle gearchiveerde evenementen\",\"gKq1fa\":\"Alle deelnemers\",\"63gRoO\":\"Alle deelnemers van de geselecteerde sessies\",\"uWxIoH\":\"Alle deelnemers van deze sessie\",\"pMLul+\":\"Alle valuta's\",\"sgUdRZ\":\"Alle data\",\"e4q4uO\":\"Alle data\",\"ZS/D7f\":\"Alle afgelopen evenementen\",\"QsYjci\":\"Alle evenementen\",\"31KB8w\":\"Alle mislukte taken verwijderd\",\"D2g7C7\":\"Alle taken in wachtrij voor opnieuw proberen\",\"B4RFBk\":\"Alle overeenkomende data\",\"F1/VgK\":\"Alle sessies\",\"OpWjMq\":\"Alle sessies\",\"Sxm1lO\":\"Alle statussen\",\"dr7CWq\":\"Alle aankomende evenementen\",\"GpT6Uf\":\"Sta deelnemers toe om hun ticketinformatie (naam, e-mail) bij te werken via een beveiligde link die met hun orderbevestiging wordt verzonden.\",\"F3mW5G\":\"Klanten toestaan zich aan te melden voor een wachtlijst wanneer dit product is uitverkocht\",\"c4uJfc\":\"Bijna klaar! We wachten alleen nog tot je betaling is verwerkt. Dit duurt slechts enkele seconden.\",\"ocS8eq\":[\"Heeft u al een account? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Al binnen\",\"/H326L\":\"Al terugbetaald\",\"USEpOK\":\"Gebruik je Stripe al bij een andere organisator? Hergebruik die verbinding.\",\"RtxQTF\":\"Deze bestelling ook annuleren\",\"jkNgQR\":\"Deze bestelling ook terugbetalen\",\"xYqsHg\":\"Altijd beschikbaar\",\"Wvrz79\":\"Betaald bedrag\",\"Zkymb9\":\"Een e-mailadres om aan deze affiliate te koppelen. De affiliate wordt niet op de hoogte gesteld.\",\"vRznIT\":\"Er is een fout opgetreden tijdens het controleren van de exportstatus.\",\"eusccx\":\"Een optioneel bericht om weer te geven op het uitgelichte product, bijv. \\\"Snel uitverkocht 🔥\\\" of \\\"Beste waarde\\\"\",\"5GJuNp\":[\"en nog \",[\"0\"],\"...\"],\"QNrkms\":\"Antwoord succesvol bijgewerkt.\",\"+qygei\":\"Antwoorden\",\"GK7Lnt\":\"Antwoorden bij afrekenen (bv. maaltijdkeuze)\",\"lE8PgT\":\"Data die je handmatig hebt aangepast, blijven behouden.\",\"vP3Nzg\":[\"Van toepassing op \",[\"0\"],\" niet-geannuleerde data die momenteel op deze pagina geladen zijn.\"],\"kkVyZZ\":\"Geldt voor iedereen die de check-in link opent zonder aangemeld te zijn. Aangemelde teamleden zien altijd alles.\",\"je4muG\":[\"Van toepassing op elke \",[\"0\"],\" niet-geannuleerde datum in dit evenement — inclusief data die momenteel niet geladen zijn.\"],\"YIIQtt\":\"Wijzigingen toepassen\",\"NzWX1Y\":\"Toepassen op\",\"Ps5oDT\":\"Toepassen op alle tickets\",\"261RBr\":\"Bericht goedkeuren\",\"naCW6Z\":\"April\",\"B495Gs\":\"Archiveren\",\"5sNliy\":\"Evenement archiveren\",\"BrwnrJ\":\"Organisator archiveren\",\"E5eghW\":\"Archiveer dit evenement om het voor het publiek te verbergen. U kunt het later herstellen.\",\"eqFkeI\":\"Archiveer deze organisator. Dit archiveert ook alle evenementen van deze organisator.\",\"BzcxWv\":\"Gearchiveerde organisatoren\",\"9cQBd6\":\"Weet u zeker dat u dit evenement wilt archiveren? Het zal niet langer zichtbaar zijn voor het publiek.\",\"Trnl3E\":\"Weet u zeker dat u deze organisator wilt archiveren? Dit archiveert ook alle evenementen van deze organisator.\",\"wOvn+e\":[\"Weet je zeker dat je \",[\"count\"],\" datum/data wilt annuleren? Betrokken deelnemers worden per e-mail op de hoogte gebracht.\"],\"GTxE0U\":\"Weet je zeker dat je deze datum wilt annuleren? Betrokken deelnemers worden per e-mail op de hoogte gebracht.\",\"VkSk/i\":\"Weet u zeker dat u dit geplande bericht wilt annuleren?\",\"0aVEBY\":\"Weet u zeker dat u alle mislukte taken wilt verwijderen?\",\"LchiNd\":\"Weet je zeker dat je deze affiliate wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\",\"vPeW/6\":\"Weet u zeker dat u deze configuratie wilt verwijderen? Dit kan van invloed zijn op accounts die deze gebruiken.\",\"h42Hc/\":\"Weet je zeker dat je deze datum wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\",\"JmVITJ\":\"Weet je zeker dat je deze sjabloon wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt en e-mails zullen terugvallen op de standaardsjabloon.\",\"aLS+A6\":\"Weet je zeker dat je deze sjabloon wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt en e-mails zullen terugvallen op de organisator- of standaardsjabloon.\",\"5H3Z78\":\"Weet je zeker dat je deze webhook wilt verwijderen?\",\"147G4h\":\"Weet u zeker dat u wilt vertrekken?\",\"VDWChT\":\"Weet je zeker dat je deze organisator als concept wilt markeren? De organisatorpagina wordt dan onzichtbaar voor het publiek.\",\"pWtQJM\":\"Weet je zeker dat je deze organisator openbaar wilt maken? De organisatorpagina wordt dan zichtbaar voor het publiek.\",\"EOqL/A\":\"Weet je zeker dat je deze persoon een plek wilt aanbieden? Ze ontvangen een e-mailmelding.\",\"yAXqWW\":\"Weet je zeker dat je deze datum definitief wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\",\"WFHOlF\":\"Weet je zeker dat je dit evenement wilt publiceren? Eenmaal gepubliceerd is het zichtbaar voor het publiek.\",\"4TNVdy\":\"Weet je zeker dat je dit organisatorprofiel wilt publiceren? Eenmaal gepubliceerd is het zichtbaar voor het publiek.\",\"8x0pUg\":\"Weet u zeker dat u dit item van de wachtlijst wilt verwijderen?\",\"cDtoWq\":[\"Weet u zeker dat u de orderbevestiging opnieuw wilt verzenden naar \",[\"0\"],\"?\"],\"xeIaKw\":[\"Weet u zeker dat u het ticket opnieuw wilt verzenden naar \",[\"0\"],\"?\"],\"BjbocR\":\"Weet u zeker dat u dit evenement wilt herstellen?\",\"7MjfcR\":\"Weet u zeker dat u deze organisator wilt herstellen?\",\"ExDt3P\":\"Weet je zeker dat je de publicatie van dit evenement wilt ongedaan maken? Het is dan niet meer zichtbaar voor het publiek.\",\"5Qmxo/\":\"Weet je zeker dat je de publicatie van dit organisatorprofiel wilt ongedaan maken? Het is dan niet meer zichtbaar voor het publiek.\",\"Uqefyd\":\"Bent u BTW-geregistreerd in de EU?\",\"+QARA4\":\"Kunst\",\"tLf3yJ\":\"Aangezien uw bedrijf gevestigd is in Ierland, is Ierse BTW van 23% automatisch van toepassing op alle platformkosten.\",\"tMeVa/\":\"Vraag naar naam en email voor elk gekocht ticket\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Plan toewijzen\",\"xdiER7\":\"Toegewezen niveau\",\"F2rX0R\":\"Er moet minstens één evenement type worden geselecteerd\",\"BCmibk\":\"Pogingen\",\"6PecK3\":\"Aanwezigheid en incheckpercentages voor alle evenementen\",\"K2tp3v\":\"deelnemer\",\"AJ4rvK\":\"Deelnemer geannuleerd\",\"qvylEK\":\"Deelnemer Gemaakt\",\"Aspq3b\":\"Verzameling deelnemergegevens\",\"fpb0rX\":\"Deelnemergegevens gekopieerd van bestelling\",\"0R3Y+9\":\"Deelnemer E-mail\",\"94aQMU\":\"Deelnemersinformatie\",\"KkrBiR\":\"Verzameling deelnemersinformatie\",\"av+gjP\":\"Deelnemer Naam\",\"sjPjOg\":\"Notities deelnemer\",\"cosfD8\":\"Deelnemersstatus\",\"D2qlBU\":\"Deelnemer bijgewerkt\",\"22BOve\":\"Deelnemer succesvol bijgewerkt\",\"x8Vnvf\":\"Ticket van deelnemer niet opgenomen in deze lijst\",\"/Ywywr\":\"deelnemers\",\"zLRobu\":\"deelnemers ingecheckt\",\"k3Tngl\":\"Geëxporteerde bezoekers\",\"UoIRW8\":\"Deelnemers geregistreerd\",\"5UbY+B\":\"Deelnemers met een specifiek ticket\",\"4HVzhV\":\"Deelnemers:\",\"HVkhy2\":\"Attributie-analyse\",\"dMMjeD\":\"Attributie-uitsplitsing\",\"1oPDuj\":\"Attributiewaarde\",\"DBHTm/\":\"Augustus\",\"JgREph\":\"Automatisch aanbod is ingeschakeld\",\"V7Tejz\":\"Wachtlijst automatisch verwerken\",\"PZ7FTW\":\"Automatisch gedetecteerd op basis van achtergrondkleur, maar kan worden overschreven\",\"zlnTuI\":\"Bied automatisch tickets aan de volgende persoon aan wanneer er capaciteit beschikbaar komt. Indien uitgeschakeld, kun je de wachtlijst handmatig verwerken via de Wachtlijst-pagina.\",\"csDS2L\":\"Beschikbaar\",\"clF06r\":\"Beschikbaar voor terugbetaling\",\"NB5+UG\":\"Beschikbare Tokens\",\"L+wGOG\":\"In afwachting\",\"qcw2OD\":\"Betaling open\",\"kNmmvE\":\"Awesome Events B.V.\",\"iH8pgl\":\"Terug\",\"TeSaQO\":\"Terug naar Accounts\",\"X7Q/iM\":\"Terug naar agenda\",\"kYqM1A\":\"Terug naar evenement\",\"s5QRF3\":\"Terug naar berichten\",\"td/bh+\":\"Terug naar rapporten\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Basisprijs\",\"hviJef\":\"Gebaseerd op de algemene verkoopperiode hierboven, niet per datum\",\"jIPNJG\":\"Basisinformatie\",\"UabgBd\":\"Hoofdtekst is verplicht\",\"HWXuQK\":\"Voeg deze pagina toe aan je bladwijzers om je bestelling op elk moment te beheren.\",\"CUKVDt\":\"Pas je tickets aan met een eigen logo, kleuren en voettekst.\",\"4BZj5p\":\"Ingebouwde fraudebescherming\",\"cr7kGH\":\"Bulk bewerken\",\"1Fbd6n\":\"Data in bulk bewerken\",\"Eq6Tu9\":\"Bulkupdate mislukt.\",\"9N+p+g\":\"Zakelijk\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Bedrijfsnaam\",\"bv6RXK\":\"Knop Label\",\"ChDLlO\":\"Knoptekst\",\"BUe8Wj\":\"Koper betaalt\",\"qF1qbA\":\"Kopers zien een schone prijs. De platformkosten worden afgetrokken van uw uitbetaling.\",\"dg05rc\":\"Door trackingpixels toe te voegen, erken je dat jij en dit platform gezamenlijke verwerkingsverantwoordelijken zijn voor de verzamelde gegevens. Jij bent verantwoordelijk om te zorgen voor een rechtmatige grondslag voor deze verwerking onder de geldende privacywetgeving (AVG, CCPA, enz.).\",\"DFqasq\":[\"Door verder te gaan, gaat u akkoord met de <0>\",[\"0\"],\" Servicevoorwaarden\"],\"wVSa+U\":\"Per dag van de maand\",\"0MnNgi\":\"Per dag van de week\",\"CetOZE\":\"Per tickettype\",\"lFdbRS\":\"Applicatiekosten omzeilen\",\"AjVXBS\":\"Agenda\",\"alkXJ5\":\"Agendaweergave\",\"2VLZwd\":\"Call-to-Action Knop\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Cameratoegang geweigerd. <0>Opnieuw toegang vragen, of geef deze pagina toegang tot de camera via de browserinstellingen.\",\"D02dD9\":\"Campagne\",\"RRPA79\":\"Inchecken niet mogelijk\",\"OcVwAd\":[[\"count\"],\" datum/data annuleren\"],\"H4nE+E\":\"Alle producten annuleren en terugzetten in de beschikbare pool\",\"Py78q9\":\"Datum annuleren\",\"tOXAdc\":\"Annuleren zal alle deelnemers geassocieerd met deze bestelling annuleren en de tickets terugzetten in de beschikbare pool.\",\"vev1Jl\":\"Annulering\",\"Ha17hq\":[[\"0\"],\" datum/data geannuleerd\"],\"01sEfm\":\"Kan de standaardsysteemconfiguratie niet verwijderen\",\"VsM1HH\":\"Capaciteitstoewijzingen\",\"9bIMVF\":\"Capaciteitsbeheer\",\"H7K8og\":\"Capaciteit moet 0 of hoger zijn\",\"nzao08\":\"capaciteitsupdates\",\"4cp9NP\":\"Gebruikte capaciteit\",\"K7tIrx\":\"Categorie\",\"o+XJ9D\":\"Wijzigen\",\"kJkjoB\":\"Duur wijzigen\",\"J0KExZ\":\"Wijzig de deelnemerslimiet\",\"CIHJJf\":\"Wachtlijstinstellingen wijzigen\",\"B5icLR\":[\"Duur gewijzigd voor \",[\"count\"],\" datum/data\"],\"Kb+0BT\":\"Betalingen\",\"2tbLdK\":\"Liefdadigheid\",\"BPWGKn\":\"Inchecken\",\"6uFFoY\":\"Uitchecken\",\"FjAlwK\":[\"Bekijk dit evenement: \",[\"0\"]],\"v4fiSg\":\"Controleer je e-mail\",\"51AsAN\":\"Controleer je inbox! Als er tickets gekoppeld zijn aan dit e-mailadres, ontvang je een link om ze te bekijken.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Gecreëerd inchecken\",\"F4SRy3\":\"Check-in verwijderd\",\"as6XfO\":[\"Check-in van \",[\"0\"],\" is ongedaan gemaakt\"],\"9s/wrQ\":\"Check-in geschiedenis\",\"Wwztk4\":\"Check-in lijst\",\"9gPPUY\":\"Check-In Lijst Aangemaakt!\",\"dwjiJt\":\"Check-in lijst info\",\"7od0PV\":\"check-in lijsten\",\"f2vU9t\":\"Inchecklijsten\",\"XprdTn\":\"Check-in navigatie\",\"5tV1in\":\"Check-in voortgang\",\"SHJwyq\":\"Incheckpercentage\",\"qCqdg6\":\"Incheck Status\",\"cKj6OE\":\"Incheckoverzicht\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Ingecheckt\",\"DM4gBB\":\"Chinees (Traditioneel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Kies een andere actie\",\"fkb+y3\":\"Kies een opgeslagen locatie om toe te passen.\",\"Zok1Gx\":\"Kies een organisator\",\"pkk46Q\":\"Kies een organisator\",\"Crr3pG\":\"Kies agenda\",\"LAW8Vb\":\"Kies de standaardinstelling voor nieuwe evenementen. Dit kan per evenement worden overschreven.\",\"pjp2n5\":\"Kies wie de platformkosten betaalt. Dit heeft geen invloed op extra kosten die u in uw accountinstellingen hebt geconfigureerd.\",\"xCJdfg\":\"Wissen\",\"QyOWu9\":\"Locatie wissen — terugvallen op de standaard van het evenement\",\"V8yTm6\":\"Zoekopdracht wissen\",\"kmnKnX\":\"Bij wissen wordt elke per-sessie overschrijving verwijderd. De betreffende sessies vallen terug op de standaardlocatie van het evenement.\",\"/o+aQX\":\"Klik om te annuleren\",\"gD7WGV\":\"Klik om te heropenen voor nieuwe verkoop\",\"CySr+W\":\"Klik om notities te bekijken\",\"RG3szS\":\"sluiten\",\"RWw9Lg\":\"Sluit venster\",\"XwdMMg\":\"Code mag alleen letters, cijfers, streepjes en underscores bevatten\",\"+yMJb7\":\"Code is verplicht\",\"m9SD3V\":\"Code moet minimaal 3 tekens bevatten\",\"V1krgP\":\"Code mag maximaal 20 tekens bevatten\",\"psqIm5\":\"Werk samen met je team om geweldige evenementen te organiseren.\",\"4bUH9i\":\"Verzamel deelnemersgegevens voor elk gekocht ticket.\",\"TkfG8v\":\"Gegevens per bestelling verzamelen\",\"96ryID\":\"Gegevens per ticket verzamelen\",\"FpsvqB\":\"Kleurmodus\",\"jEu4bB\":\"Kolommen\",\"CWk59I\":\"Comedy\",\"rPA+Gc\":\"Communicatievoorkeuren\",\"zFT5rr\":\"voltooid\",\"bUQMpb\":\"Stripe-installatie voltooien\",\"744BMm\":\"Voltooi je bestelling om je tickets veilig te stellen. Dit aanbod is tijdelijk, dus wacht niet te lang.\",\"5YrKW7\":\"Voltooi je betaling om je tickets veilig te stellen.\",\"xGU92i\":\"Voltooi uw profiel om deel te nemen aan het team.\",\"QOhkyl\":\"Opstellen\",\"ih35UP\":\"Conferentiecentrum\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuratie toegewezen\",\"X1zdE7\":\"Configuratie succesvol aangemaakt\",\"mLBUMQ\":\"Configuratie succesvol verwijderd\",\"UIENhw\":\"Configuratienamen zijn zichtbaar voor eindgebruikers. Vaste kosten worden omgerekend naar de ordervaluta tegen de huidige wisselkoers.\",\"eeZdaB\":\"Configuratie succesvol bijgewerkt\",\"3cKoxx\":\"Configuraties\",\"8v2LRU\":\"Configureer evenementdetails, locatie, afrekenopties en e-mailmeldingen.\",\"raw09+\":\"Configureer hoe deelnemergegevens worden verzameld tijdens het afrekenen\",\"FI60XC\":\"Belastingen en kosten configureren\",\"av6ukY\":\"Configureer welke producten beschikbaar zijn voor deze sessie en pas eventueel de prijzen aan.\",\"NGXKG/\":\"Bevestig e-mailadres\",\"JRQitQ\":\"Bevestig nieuw wachtwoord\",\"Auz0Mz\":\"Bevestig je e-mailadres om toegang te krijgen tot alle functies.\",\"7+grte\":\"Bevestigingsmail verzonden! Controleer je inbox.\",\"n/7+7Q\":\"Bevestiging verzonden naar\",\"x3wVFc\":\"Gefeliciteerd! Je evenement is nu zichtbaar voor het publiek.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Verbind Stripe om sjabloonbewerking van e-mails in te schakelen\",\"LmvZ+E\":\"Verbind Stripe om berichten in te schakelen\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contact \",[\"0\"]],\"41BQ3k\":\"Contact e-mail\",\"KcXRN+\":\"Contact e-mail voor ondersteuning\",\"m8WD6t\":\"Doorgaan met instellen\",\"0GwUT4\":\"Verder naar afrekenen\",\"sBV87H\":\"Ga door naar evenement aanmaken\",\"nKtyYu\":\"Ga door naar de volgende stap\",\"F3/nus\":\"Doorgaan naar betaling\",\"p2FRHj\":\"Bepaal hoe platformkosten worden behandeld voor dit evenement\",\"NqfabH\":\"Bepaal wie er toegang heeft voor deze datum\",\"fmYxZx\":\"Wie er wanneer binnenkomt\",\"1JnTgU\":\"Gekopieerd van boven\",\"FxVG/l\":\"Gekopieerd naar klembord\",\"PiH3UR\":\"Gekopieerd!\",\"4i7smN\":\"Account-ID kopiëren\",\"uUPbPg\":\"Kopieer affiliatelink\",\"iVm46+\":\"Kopieer code\",\"cF2ICc\":\"Klantlink kopiëren\",\"+2ZJ7N\":\"Kopieer gegevens naar eerste deelnemer\",\"ZN1WLO\":\"Kopieer Email\",\"y1eoq1\":\"Link kopiëren\",\"tUGbi8\":\"Mijn gegevens kopiëren naar:\",\"y22tv0\":\"Kopieer deze link om hem overal te delen\",\"/4gGIX\":\"Kopiëren naar klembord\",\"e0f4yB\":\"Kan locatie niet verwijderen\",\"vkiDx2\":\"Kon de bulkupdate niet voorbereiden.\",\"KOavaU\":\"Kan adresgegevens niet ophalen\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Kan datum niet opslaan\",\"eeLExK\":\"Kan locatie niet opslaan\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Omslagafbeelding\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Omslagafbeelding wordt bovenaan je evenementpagina weergegeven\",\"2NLjA6\":\"De omslagafbeelding wordt bovenaan je organisatorpagina weergegeven\",\"GkrqoY\":\"Geldt voor elk ticket\",\"zg4oSu\":[\"Maak \",[\"0\"],\" Sjabloon\"],\"RKKhnW\":\"Maak een aangepaste widget om tickets te verkopen op je site.\",\"6sk7PP\":\"Een vast aantal maken\",\"PhioFp\":\"Maak een nieuwe check-in lijst voor een actieve sessie of neem contact op met de organisator als je denkt dat dit een vergissing is.\",\"yIRev4\":\"Maak een wachtwoord aan\",\"j7xZ7J\":\"Maak extra organisatoren aan om afzonderlijke merken, afdelingen of evenementenreeksen onder één account te beheren. Elke organisator heeft zijn eigen evenementen, instellingen en openbare pagina.\",\"xfKgwv\":\"Affiliate aanmaken\",\"tudG8q\":\"Maak en configureer tickets en merchandise voor verkoop.\",\"YAl9Hg\":\"Configuratie aanmaken\",\"BTne9e\":\"Maak aangepaste e-mailsjablonen voor dit evenement die de organisator-standaarden overschrijven\",\"YIDzi/\":\"Maak Aangepaste Sjabloon\",\"tsGqx5\":\"Datum aanmaken\",\"Nc3l/D\":\"Maak kortingen, toegangscodes voor verborgen tickets en speciale aanbiedingen.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Aanmaken voor deze datum\",\"eWEV9G\":\"Nieuw wachtwoord aanmaken\",\"wl2iai\":\"Planning aanmaken\",\"8AiKIu\":\"Maak ticket of product aan\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Maak traceerbare links om partners te belonen die je evenement promoten.\",\"dkAPxi\":\"Webhook maken\",\"5slqwZ\":\"Maak je evenement aan\",\"JQNMrj\":\"Maak je eerste evenement\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Maak je eigen evenement\",\"67NsZP\":\"Evenement aanmaken...\",\"H34qcM\":\"Organisator aanmaken...\",\"1YMS+X\":\"Je evenement wordt aangemaakt, even geduld\",\"yiy8Jt\":\"Je organisatorprofiel wordt aangemaakt, even geduld\",\"lfLHNz\":\"CTA label is verplicht\",\"0xLR6W\":\"Momenteel toegewezen\",\"iTvh6I\":\"Momenteel beschikbaar voor aankoop\",\"A42Dqn\":\"Aangepaste branding\",\"Guo0lU\":\"Aangepaste datum en tijd\",\"mimF6c\":\"Aangepast bericht na checkout\",\"WDMdn8\":\"Aangepaste vragen\",\"O6mra8\":\"Aangepaste vragen\",\"axv/Mi\":\"Aangepaste sjabloon\",\"2YeVGY\":\"Klantlink gekopieerd naar klembord\",\"QMHSMS\":\"Klant ontvangt een e-mail ter bevestiging van de terugbetaling\",\"L/Qc+w\":\"E-mailadres van klant\",\"wpfWhJ\":\"Voornaam van klant\",\"GIoqtA\":\"Achternaam van klant\",\"NihQNk\":\"Klanten\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Pas de e-mails aan die naar uw klanten worden verzonden met behulp van Liquid-sjablonen. Deze sjablonen worden gebruikt als standaard voor alle evenementen in uw organisatie.\",\"xJaTUK\":\"Pas de lay-out, kleuren en branding van je evenement homepage aan.\",\"MXZfGN\":\"Pas de vragen tijdens het afrekenen aan om belangrijke informatie van je deelnemers te verzamelen.\",\"iX6SLo\":\"Pas de tekst op de knop 'Doorgaan' aan\",\"pxNIxa\":\"Pas uw e-mailsjabloon aan met Liquid-sjablonen\",\"3trPKm\":\"Pas het uiterlijk van je organisatorpagina aan\",\"U0sC6H\":\"Dagelijks\",\"/gWrVZ\":\"Dagelijkse omzet, belastingen, kosten en terugbetalingen voor alle evenementen\",\"zgCHnE\":\"Dagelijks verkooprapport\",\"nHm0AI\":\"Dagelijkse uitsplitsing naar verkoop, belasting en kosten\",\"1aPnDT\":\"Dans\",\"pvnfJD\":\"Donker\",\"MaB9wW\":\"Datum annulering\",\"e6cAxJ\":\"Datum geannuleerd\",\"81jBnC\":\"Datum succesvol geannuleerd\",\"a/C/6R\":\"Datum succesvol aangemaakt\",\"IW7Q+u\":\"Datum verwijderd\",\"rngCAz\":\"Datum succesvol verwijderd\",\"lnYE59\":\"Datum van het evenement\",\"gnBreG\":\"Datum waarop de bestelling is geplaatst\",\"vHbfoQ\":\"Datum heractiveerd\",\"hvah+S\":\"Datum heropend voor nieuwe verkoop\",\"Ez0YsD\":\"Datum succesvol bijgewerkt\",\"VTsZuy\":\"Data en tijden worden beheerd op de\",\"/ITcnz\":\"dag\",\"H7OUPr\":\"Dag\",\"JtHrX9\":\"Dag van de maand\",\"J/Upwb\":\"dagen\",\"vDVA2I\":\"Dagen van de maand\",\"rDLvlL\":\"Dagen van de week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Weigeren\",\"ovBPCi\":\"Standaard\",\"JtI4vj\":\"Standaard verzameling deelnemersinformatie\",\"ULjv90\":\"Standaardcapaciteit per datum\",\"3R/Tu2\":\"Standaard kostenafhandeling\",\"1bZAZA\":\"Standaardsjabloon wordt gebruikt\",\"HNlEFZ\":\"verwijderen\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[[\"count\"],\" geselecteerde datum/data verwijderen? Data met bestellingen worden overgeslagen. Dit kan niet ongedaan worden gemaakt.\"],\"vu7gDm\":\"Verwijder affiliate\",\"KZN4Lc\":\"Alles verwijderen\",\"6EkaOO\":\"Datum verwijderen\",\"io0G93\":\"Evenement verwijderen\",\"+jw/c1\":\"Verwijder afbeelding\",\"hdyeZ0\":\"Taak verwijderen\",\"xxjZeP\":\"Locatie verwijderen\",\"sY3tIw\":\"Organisator verwijderen\",\"UBv8UK\":\"Definitief verwijderen\",\"dPyJ15\":\"Sjabloon Verwijderen\",\"mxsm1o\":\"Deze vraag verwijderen? Dit kan niet ongedaan worden gemaakt.\",\"snMaH4\":\"Webhook verwijderen\",\"LIZZLY\":[[\"0\"],\" datum/data verwijderd\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deselecteer alles\",\"NvuEhl\":\"Ontwerpelementen\",\"H8kMHT\":\"Geen code ontvangen?\",\"G8KNgd\":\"Andere locatie\",\"E/QGRL\":\"Uitgeschakeld\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Dit bericht negeren\",\"BREO0S\":\"Toon een selectievakje waarmee klanten zich kunnen aanmelden voor marketingcommunicatie van deze evenementenorganisator.\",\"pfa8F0\":\"Weergavenaam\",\"Kdpf90\":\"Niet vergeten!\",\"352VU2\":\"Heeft u geen account? <0>Aanmelden\",\"AXXqG+\":\"Donatie\",\"DPfwMq\":\"Klaar\",\"JoPiZ2\":\"Instructies voor personeel\",\"2+O9st\":\"Download verkoop-, deelnemer- en financiële rapporten voor alle voltooide bestellingen.\",\"eneWvv\":\"Concept\",\"Ts8hhq\":\"Vanwege het hoge risico op spam moet u een Stripe-account verbinden voordat u e-mailsjablonen kunt wijzigen. Dit is om ervoor te zorgen dat alle evenementorganisatoren geverifieerd en verantwoordelijk zijn.\",\"TnzbL+\":\"Vanwege het hoge risico op spam moet je een Stripe-account verbinden voordat je berichten naar deelnemers kunt sturen.\\nDit is om ervoor te zorgen dat alle evenementorganisatoren geverifieerd en verantwoordelijk zijn.\",\"euc6Ns\":\"Dupliceren\",\"YueC+F\":\"Datum dupliceren\",\"KRmTkx\":\"Dupliceer product\",\"Jd3ymG\":\"Duur moet ten minste 1 minuut zijn.\",\"KIjvtr\":\"Nederlands\",\"22xieU\":\"bijv. 180 (3 uur)\",\"/zajIE\":\"bijv. Ochtendsessie\",\"SPKbfM\":\"bijv. Tickets kopen, Nu registreren\",\"fc7wGW\":\"bijv. Belangrijke update over uw tickets\",\"54MPqC\":\"bijv. Standaard, Premium, Enterprise\",\"3RQ81z\":\"Elke persoon ontvangt een e-mail met een gereserveerde plek om de aankoop te voltooien.\",\"5oD9f/\":\"Eerder\",\"LTzmgK\":[\"Bewerk \",[\"0\"],\" Sjabloon\"],\"v4+lcZ\":\"Bewerk affiliate\",\"2iZEz7\":\"Antwoord bewerken\",\"t2bbp8\":\"Deelnemer bewerken\",\"etaWtB\":\"Deelnemergegevens bewerken\",\"+guao5\":\"Configuratie bewerken\",\"1Mp/A4\":\"Datum bewerken\",\"m0ZqOT\":\"Locatie bewerken\",\"8oivFT\":\"Locatie bewerken\",\"vRWOrM\":\"Bestelgegevens bewerken\",\"fW5sSv\":\"Webhook bewerken\",\"nP7CdQ\":\"Webhook bewerken\",\"MRZxAn\":\"Bewerkt\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educatie\",\"iiWXDL\":\"Geschiktheidsfouten\",\"zPiC+q\":\"In Aanmerking Komende Incheck Lijsten\",\"SiVstt\":\"E-mail en geplande berichten\",\"V2sk3H\":\"E-mail & Sjablonen\",\"hbwCKE\":\"E-mailadres gekopieerd naar klembord\",\"dSyJj6\":\"E-mailadressen komen niet overeen\",\"elW7Tn\":\"E-mail Hoofdtekst\",\"ZsZeV2\":\"E-mail is verplicht\",\"Be4gD+\":\"E-mail Voorbeeld\",\"6IwNUc\":\"E-mail Sjablonen\",\"H/UMUG\":\"E-mailverificatie vereist\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"E-mail succesvol geverifieerd!\",\"FSN4TS\":\"Widget insluiten\",\"z9NkYY\":\"Insluitbare widget\",\"Qj0GKe\":\"Zelfbediening voor deelnemers inschakelen\",\"hEtQsg\":\"Zelfbediening voor deelnemers standaard inschakelen\",\"Upeg/u\":\"Schakel deze sjabloon in voor het verzenden van e-mails\",\"7dSOhU\":\"Wachtlijst inschakelen\",\"RxzN1M\":\"Ingeschakeld\",\"xDr/ct\":\"Einde\",\"sGjBEq\":\"Einddatum & tijd (optioneel)\",\"PKXt9R\":\"Einddatum moet na begindatum liggen\",\"UmzbPa\":\"Einddatum van de sessie\",\"ZayGC7\":\"Eindigen op een datum\",\"48Y16Q\":\"Eindtijd (optioneel)\",\"jpNdOC\":\"Eindtijd van de sessie\",\"TbaYrr\":[\"Geëindigd \",[\"0\"]],\"CFgwiw\":[\"Eindigt \",[\"0\"]],\"SqOIQU\":\"Voer een capaciteitswaarde in of kies onbeperkt.\",\"h37gRz\":\"Voer een label in of kies ervoor om het te verwijderen.\",\"7YZofi\":\"Voer een onderwerp en hoofdtekst in om het voorbeeld te zien\",\"khyScF\":\"Voer een tijd in om mee te verschuiven.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Voer affiliate e-mail in (optioneel)\",\"ARkzso\":\"Voer affiliatenaam in\",\"ej4L8b\":\"Capaciteit invoeren\",\"6KnyG0\":\"Voer e-mail in\",\"INDKM9\":\"Voer e-mailonderwerp in...\",\"xUgUTh\":\"Voer voornaam in\",\"9/1YKL\":\"Voer achternaam in\",\"VpwcSk\":\"Voer nieuw wachtwoord in\",\"kWg31j\":\"Voer unieke affiliatecode in\",\"C3nD/1\":\"Voer je e-mailadres in\",\"VmXiz4\":\"Voer uw e-mailadres in en wij sturen u instructies om uw wachtwoord opnieuw in te stellen.\",\"n9V+ps\":\"Voer je naam in\",\"IdULhL\":\"Voer uw BTW-nummer in inclusief de landcode, zonder spaties (bijv. NL123456789B01, DE123456789)\",\"o21Y+P\":\"items\",\"X88/6w\":\"Inschrijvingen verschijnen hier wanneer klanten zich aanmelden voor de wachtlijst van uitverkochte producten.\",\"LslKhj\":\"Fout bij het laden van logboeken\",\"VCNHvW\":\"Evenement gearchiveerd\",\"ZD0XSb\":\"Evenement succesvol gearchiveerd\",\"WgD6rb\":\"Evenementcategorie\",\"b46pt5\":\"Evenement coverafbeelding\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evenement aangemaakt\",\"1Hzev4\":\"Evenement aangepaste sjabloon\",\"7u9/DO\":\"Evenement succesvol verwijderd\",\"imgKgl\":\"Evenementbeschrijving\",\"kJDmsI\":\"Evenement details\",\"m/N7Zq\":\"Volledig Evenementadres\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Evenement Locatie\",\"PYs3rP\":\"Evenementnaam\",\"HhwcTQ\":\"Naam van het evenement\",\"WZZzB6\":\"Evenementnaam is verplicht\",\"Wd5CDM\":\"Evenementnaam moet minder dan 150 tekens bevatten\",\"4JzCvP\":\"Evenement niet beschikbaar\",\"Gh9Oqb\":\"Evenement organisator naam\",\"mImacG\":\"Evenementpagina\",\"Hk9Ki/\":\"Evenement succesvol hersteld\",\"JyD0LH\":\"Evenement instellingen\",\"cOePZk\":\"Evenement Tijd\",\"e8WNln\":\"Tijdzone evenement\",\"GeqWgj\":\"Tijdzone Evenement\",\"XVLu2v\":\"Evenement titel\",\"OfmsI9\":\"Evenement te nieuw\",\"4SILkp\":\"Totalen evenement\",\"YDVUVl\":\"Soorten evenementen\",\"+HeiVx\":\"Evenement bijgewerkt\",\"4K2OjV\":\"Evenementlocatie\",\"19j6uh\":\"Evenementenprestaties\",\"PC3/fk\":\"Evenementen die beginnen in de komende 24 uur\",\"nwiZdc\":[\"Elke \",[\"0\"]],\"2LJU4o\":[\"Elke \",[\"0\"],\" dagen\"],\"yLiYx+\":[\"Elke \",[\"0\"],\" maanden\"],\"nn9ice\":[\"Elke \",[\"0\"],\" weken\"],\"Cdr8f9\":[\"Elke \",[\"0\"],\" weken op \",[\"1\"]],\"GVEHRk\":[\"Elke \",[\"0\"],\" jaar\"],\"fTFfOK\":\"Elke e-mailsjabloon moet een call-to-action knop bevatten die linkt naar de juiste pagina\",\"BVinvJ\":\"Voorbeelden: \\\"Hoe heb je over ons gehoord?\\\", \\\"Bedrijfsnaam voor factuur\\\"\",\"2hGPQG\":\"Voorbeelden: \\\"T-shirt maat\\\", \\\"Maaltijdvoorkeur\\\", \\\"Functietitel\\\"\",\"qNuTh3\":\"Uitzondering\",\"M1RnFv\":\"Verlopen\",\"kF8HQ7\":\"Antwoorden exporteren\",\"2KAI4N\":\"CSV exporteren\",\"JKfSAv\":\"Exporteren mislukt. Probeer het opnieuw.\",\"SVOEsu\":\"Export gestart. Bestand wordt voorbereid...\",\"wuyaZh\":\"Export succesvol\",\"9bpUSo\":\"Affiliates exporteren\",\"jtrqH9\":\"Deelnemers exporteren\",\"R4Oqr8\":\"Exporteren voltooid. Bestand wordt gedownload...\",\"UlAK8E\":\"Orders exporteren\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Mislukt\",\"8uOlgz\":\"Mislukt op\",\"tKcbYd\":\"Mislukte taken\",\"SsI9v/\":\"Bestelling annuleren mislukt. Probeer het opnieuw.\",\"LdPKPR\":\"Toewijzen van configuratie mislukt\",\"PO0cfn\":\"Annuleren van datum mislukt\",\"YUX+f+\":\"Annuleren van data mislukt\",\"SIHgVQ\":\"Bericht annuleren mislukt\",\"cEFg3R\":\"Aanmaken affiliate mislukt\",\"dVgNF1\":\"Kan configuratie niet aanmaken\",\"fAoRRJ\":\"Aanmaken van planning mislukt\",\"U66oUa\":\"Sjabloon maken mislukt\",\"aFk48v\":\"Kan configuratie niet verwijderen\",\"n1CYMH\":\"Verwijderen van datum mislukt\",\"KXv+Qn\":\"Verwijderen van datum mislukt. Er zijn mogelijk bestaande bestellingen.\",\"JJ0uRo\":\"Verwijderen van data mislukt\",\"rgoBnv\":\"Evenement verwijderen mislukt\",\"Zw6LWb\":\"Taak verwijderen mislukt\",\"tq0abZ\":\"Taken verwijderen mislukt\",\"2mkc3c\":\"Organisator verwijderen mislukt\",\"vKMKnu\":\"Vraag verwijderen mislukt\",\"xFj7Yj\":\"Sjabloon verwijderen mislukt\",\"jo3Gm6\":\"Exporteren affiliates mislukt\",\"Jjw03p\":\"Geen deelnemers geëxporteerd\",\"ZPwFnN\":\"Geen orders kunnen exporteren\",\"zGE3CH\":\"Export van rapport mislukt. Probeer het opnieuw.\",\"lS9/aZ\":\"Kan ontvangers niet laden\",\"X4o0MX\":\"Webhook niet geladen\",\"ETcU7q\":\"Kon plek niet aanbieden\",\"5670b9\":\"Tickets aanbieden mislukt\",\"e5KIbI\":\"Heractiveren van datum mislukt\",\"7zyx8a\":\"Verwijderen van wachtlijst mislukt\",\"A/P7PX\":\"Verwijderen van overschrijving mislukt\",\"ogWc1z\":\"Datum heropenen is mislukt\",\"0+iwE5\":\"Vragen herschikken mislukt\",\"EJPAcd\":\"Orderbevestiging opnieuw verzenden mislukt\",\"DjSbj3\":\"Ticket opnieuw verzenden mislukt\",\"YQ3QSS\":\"Opnieuw verzenden verificatiecode mislukt\",\"wDioLj\":\"Taak opnieuw proberen mislukt\",\"DKYTWG\":\"Taken opnieuw proberen mislukt\",\"WRREqF\":\"Opslaan van overschrijving mislukt\",\"sj/eZA\":\"Opslaan van prijsoverschrijving mislukt\",\"780n8A\":\"Opslaan van productinstellingen mislukt\",\"zTkTF3\":\"Sjabloon opslaan mislukt\",\"l6acRV\":\"Kan BTW-instellingen niet opslaan. Probeer het opnieuw.\",\"T6B2gk\":\"Verzenden bericht mislukt. Probeer het opnieuw.\",\"lKh069\":\"Exporttaak niet gestart\",\"t/KVOk\":\"Kan imitatie niet starten. Probeer het opnieuw.\",\"QXgjH0\":\"Kan imitatie niet stoppen. Probeer het opnieuw.\",\"i0QKrm\":\"Bijwerken affiliate mislukt\",\"NNc33d\":\"Antwoord niet bijgewerkt.\",\"E9jY+o\":\"Deelnemer bijwerken mislukt\",\"uQynyf\":\"Kan configuratie niet bijwerken\",\"i2PFQJ\":\"Bijwerken van evenementstatus mislukt\",\"EhlbcI\":\"Bijwerken van berichtenniveau mislukt\",\"rpGMzC\":\"Bestelling bijwerken mislukt\",\"T2aCOV\":\"Bijwerken van organisatorstatus mislukt\",\"Eeo/Gy\":\"Instelling bijwerken mislukt\",\"kqA9lY\":\"Bijwerken van btw-instellingen mislukt\",\"7/9RFs\":\"Afbeelding uploaden mislukt.\",\"nkNfWu\":\"Uploaden van afbeelding mislukt. Probeer het opnieuw.\",\"rxy0tG\":\"Verifiëren e-mail mislukt\",\"QRUpCk\":\"Gezin\",\"5LO38w\":\"Snelle uitbetalingen naar je bank\",\"4lgLew\":\"Februari\",\"9bHCo2\":\"Valuta van de kosten\",\"/sV91a\":\"Kostenafhandeling\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Kosten omzeild\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Bestand is te groot. Maximale grootte is 5MB.\",\"VejKUM\":\"Vul eerst je gegevens hierboven in\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Deelnemers filteren\",\"8OvVZZ\":\"Filter Deelnemers\",\"N/H3++\":\"Filteren op datum\",\"mvrlBO\":\"Filteren op evenement\",\"g+xRXP\":\"Stripe-installatie afronden\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"Eerste\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Eerste deelnemer\",\"4pwejF\":\"Voornaam is verplicht\",\"3lkYdQ\":\"Vaste kosten\",\"6bBh3/\":\"Vaste vergoeding\",\"zWqUyJ\":\"Vaste kosten per transactie\",\"LWL3Bs\":\"Vaste vergoeding moet 0 of hoger zijn\",\"0RI8m4\":\"Flitser uit\",\"q0923e\":\"Flitser aan\",\"lWxAUo\":\"Eten & Drinken\",\"nFm+5u\":\"Voettekst\",\"a8nooQ\":\"Vierde\",\"mob/am\":\"Vr\",\"wtuVU4\":\"Frequentie\",\"xVhQZV\":\"Vr\",\"39y5bn\":\"Vrijdag\",\"f5UbZ0\":\"Volledig data-eigendom\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Volledige terugbetaling\",\"UsIfa8\":\"Volledig opgelost adres\",\"PGQLdy\":\"toekomst\",\"8N/j1s\":\"Alleen toekomstige data\",\"yRx/6K\":\"Toekomstige data worden gekopieerd met capaciteit gereset naar nul\",\"T02gNN\":\"Algemene Toegang\",\"3ep0Gx\":\"Algemene informatie over je organisator\",\"ziAjHi\":\"Genereer\",\"exy8uo\":\"Genereer code\",\"4CETZY\":\"Routebeschrijving\",\"pjkEcB\":\"Krijg betaald\",\"lGYzP6\":\"Word betaald met Stripe\",\"ZDIydz\":\"Aan de slag\",\"u6FPxT\":\"Koop Tickets\",\"8KDgYV\":\"Bereid je evenement voor\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Ga terug\",\"oNL5vN\":\"Ga naar evenementpagina\",\"gHSuV/\":\"Ga naar de startpagina\",\"8+Cj55\":\"Ga naar planning\",\"6nDzTl\":\"Goede leesbaarheid\",\"76gPWk\":\"Begrepen\",\"aGWZUr\":\"Bruto-omzet\",\"n8IUs7\":\"Bruto-omzet\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gastenbeheer\",\"NUsTc4\":\"Gaande nu\",\"kTSQej\":[\"Hallo \",[\"0\"],\", beheer je platform vanaf hier.\"],\"dORAcs\":\"Hier zijn alle tickets die gekoppeld zijn aan je e-mailadres.\",\"g+2103\":\"Hier is je affiliatelink\",\"bVsnqU\":\"Hoi,\",\"/iE8xx\":\"Hi.Events kosten\",\"zppscQ\":\"Hi.Events platformkosten en BTW-uitsplitsing per transactie\",\"D+zLDD\":\"Verborgen\",\"DRErHC\":\"Verborgen voor deelnemers - alleen zichtbaar voor organisatoren\",\"NNnsM0\":\"Geavanceerde opties verbergen\",\"P+5Pbo\":\"Antwoorden verbergen\",\"VMlRqi\":\"Details verbergen\",\"FmogyU\":\"Opties verbergen\",\"gtEbeW\":\"Markeren\",\"NF8sdv\":\"Markeringsbericht\",\"MXSqmS\":\"Dit product markeren\",\"7ER2sc\":\"Uitgelicht\",\"sq7vjE\":\"Gemarkeerde producten krijgen een andere achtergrondkleur om op te vallen op de evenementenpagina.\",\"1+WSY1\":\"Hobby's\",\"yY8wAv\":\"Uren\",\"sy9anN\":\"Hoe lang een klant heeft om de aankoop te voltooien na ontvangst van een aanbod. Laat leeg voor geen tijdslimiet.\",\"n2ilNh\":\"Hoe lang loopt de planning?\",\"DMr2XN\":\"Hoe vaak?\",\"AVpmAa\":\"Hoe offline te betalen\",\"cceMns\":\"Hoe btw wordt toegepast op de platformkosten die we je in rekening brengen.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Hongaars\",\"8Wgd41\":\"Ik erken mijn verantwoordelijkheden als verwerkingsverantwoordelijke\",\"O8m7VA\":\"Ik ga akkoord met het ontvangen van e-mailmeldingen met betrekking tot dit evenement\",\"YLgdk5\":\"Ik bevestig dat dit een transactioneel bericht is met betrekking tot dit evenement\",\"4/kP5a\":\"Als er geen nieuw tabblad automatisch is geopend, klik dan op de knop hieronder om door te gaan naar afrekenen.\",\"W/eN+G\":\"Indien leeg, wordt het adres gebruikt om een Google Maps-link te genereren\",\"iIEaNB\":\"Als u een account bij ons heeft, ontvangt u een e-mail met instructies over hoe u uw wachtwoord opnieuw kunt instellen.\",\"an5hVd\":\"Afbeeldingen\",\"tSVr6t\":\"Imiteren\",\"TWXU0c\":\"Imiteer gebruiker\",\"5LAZwq\":\"Imitatie gestart\",\"IMwcdR\":\"Imitatie gestopt\",\"0I0Hac\":\"Belangrijke mededeling\",\"yD3avI\":\"Belangrijk: Het wijzigen van uw e-mailadres zal de link naar deze bestelling bijwerken. U wordt na het opslaan doorgestuurd naar de nieuwe bestellink.\",\"jT142F\":[\"Over \",[\"diffHours\"],\" uur\"],\"OoSyqO\":[\"Over \",[\"diffMinutes\"],\" minuten\"],\"PdMhEx\":[\"in de laatste \",[\"0\"],\" min\"],\"u7r0G5\":\"Op locatie — stel een locatie in\",\"Ip0hl5\":\"in persoon, online, niet ingesteld of gemengd\",\"F1Xp97\":\"Individuele deelnemers\",\"85e6zs\":\"Liquid Token Invoegen\",\"38KFY0\":\"Variabele Invoegen\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Directe Stripe-uitbetalingen\",\"nbfdhU\":\"Integraties\",\"I8eJ6/\":\"Interne notities op het ticket van de deelnemer\",\"B2Tpo0\":\"Ongeldig e-mailadres\",\"5tT0+u\":\"Ongeldig e-mailformaat\",\"f9WRpE\":\"Ongeldig bestandstype. Upload een afbeelding.\",\"tnL+GP\":\"Ongeldige Liquid syntax. Corrigeer het en probeer opnieuw.\",\"N9JsFT\":\"Ongeldig BTW-nummerformaat\",\"g+lLS9\":\"Nodig een teamlid uit\",\"1z26sk\":\"Teamlid uitnodigen\",\"KR0679\":\"Teamleden uitnodigen\",\"aH6ZIb\":\"Nodig je team uit\",\"IuMGvq\":\"Factuur\",\"Lj7sBL\":\"Italiaans\",\"F5/CBH\":\"artikel(en)\",\"BzfzPK\":\"Artikelen\",\"rjyWPb\":\"Januari\",\"KmWyx0\":\"Taak\",\"o5r6b2\":\"Taak verwijderd\",\"cd0jIM\":\"Taakdetails\",\"ruJO57\":\"Taaknaam\",\"YZi+Hu\":\"Taak in wachtrij voor opnieuw proberen\",\"nCywLA\":\"Neem overal vandaan deel\",\"SNzppu\":\"Aanmelden voor wachtlijst\",\"dLouFI\":[\"Op wachtlijst voor \",[\"productDisplayName\"]],\"2gMuHR\":\"Aangemeld\",\"u4ex5r\":\"Juli\",\"zeEQd/\":\"Juni\",\"MxjCqk\":\"Alleen op zoek naar je tickets?\",\"xOTzt5\":\"zojuist\",\"0RihU9\":\"Net afgerond\",\"lB2hSG\":[\"Houd mij op de hoogte van nieuws en evenementen van \",[\"0\"]],\"ioFA9i\":\"Houd de winst.\",\"4Sffp7\":\"Label voor de sessie\",\"o66QSP\":\"labelupdates\",\"RtKKbA\":\"Laatste\",\"DruLRc\":\"Laatste 14 dagen\",\"ve9JTU\":\"Achternaam is verplicht\",\"h0Q9Iw\":\"Laatste reactie\",\"gw3Ur5\":\"Laatst geactiveerd\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Laatste check-ins\",\"pzAivY\":\"Breedtegraad van de opgeloste locatie\",\"N5TErv\":\"Laat leeg voor onbeperkt\",\"L/hDDD\":\"Laat leeg om deze check-in lijst toe te passen op alle sessies\",\"9Pf3wk\":\"Laat ingeschakeld om elk ticket van het evenement te dekken. Schakel uit om specifieke tickets te kiezen.\",\"Hq2BzX\":\"Laat ze weten over de wijziging\",\"+uexiy\":\"Laat ze weten over de wijzigingen\",\"exYcTF\":\"Bibliotheek\",\"1njn7W\":\"Licht\",\"1qY5Ue\":\"Link verlopen of ongeldig\",\"+zSD/o\":\"Link naar evenementhomepage\",\"psosdY\":\"Link naar bestelgegevens\",\"6JzK4N\":\"Link naar ticket\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links toegestaan\",\"2BBAbc\":\"Lijst\",\"5NZpX8\":\"Lijstweergave\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live Evenementen\",\"C33p4q\":\"Geladen data\",\"WdmJIX\":\"Voorvertoning laden...\",\"IoDI2o\":\"Tokens laden...\",\"G3Ge9Z\":\"Webhook-logs laden...\",\"NFxlHW\":\"Webhooks laden\",\"E0DoRM\":\"Locatie verwijderd\",\"NtLHT3\":\"Geformatteerd locatieadres\",\"h4vxDc\":\"Breedtegraad locatie\",\"f2TMhR\":\"Lengtegraad locatie\",\"lnCo2f\":\"Locatiemodus\",\"8pmGFk\":\"Locatienaam\",\"7w8lJU\":\"Locatie opgeslagen\",\"YsRXDD\":\"Locatie bijgewerkt\",\"A/kIva\":\"locatie-updates\",\"VppBoU\":\"Locaties\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Omslag\",\"gddQe0\":\"Logo en omslagafbeelding voor je organisator\",\"TBEnp1\":\"Het logo wordt weergegeven in de koptekst\",\"Jzu30R\":\"Logo wordt weergegeven op het ticket\",\"zKTMTg\":\"Lengtegraad van de opgeloste locatie\",\"PSRm6/\":\"Zoek mijn tickets op\",\"yJFu/X\":\"Hoofdkantoor\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[[\"0\"],\" beheren\"],\"wZJfA8\":\"Beheer data en tijden voor je terugkerende evenement\",\"RlzPUE\":\"Beheren in Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Planning beheren\",\"zXuaxY\":\"Beheer de wachtlijst van je evenement, bekijk statistieken en bied tickets aan deelnemers aan.\",\"BWTzAb\":\"Handmatig\",\"g2npA5\":\"Handmatig aanbod\",\"hg6l4j\":\"Maart\",\"pqRBOz\":\"Markeren als gevalideerd (beheerderoverschrijving)\",\"2L3vle\":\"Max berichten / 24u\",\"Qp4HWD\":\"Max ontvangers / bericht\",\"3JzsDb\":\"Mei\",\"agPptk\":\"Medium\",\"xDAtGP\":\"Bericht\",\"bECJqy\":\"Bericht succesvol goedgekeurd\",\"1jRD0v\":\"Deelnemers berichten sturen met specifieke tickets\",\"uQLXbS\":\"Bericht geannuleerd\",\"48rf3i\":\"Bericht kan niet meer dan 5000 tekens bevatten\",\"ZPj0Q8\":\"Berichtdetails\",\"Vjat/X\":\"Bericht is verplicht\",\"0/yJtP\":\"Bestelbezitters berichten sturen met specifieke producten\",\"saG4At\":\"Bericht gepland\",\"mFdA+i\":\"Berichtenniveau\",\"v7xKtM\":\"Berichtenniveau succesvol bijgewerkt\",\"H9HlDe\":\"minuten\",\"agRWc1\":\"Minuten\",\"YYzBv9\":\"Ma\",\"zz/Wd/\":\"Modus\",\"fpMgHS\":\"Ma\",\"hty0d5\":\"Maandag\",\"JbIgPz\":\"Geldbedragen zijn geschatte totalen over alle valuta's\",\"qvF+MT\":\"Bewaak en beheer mislukte achtergrondtaken\",\"kY2ll9\":\"maand\",\"HajiZl\":\"Maand\",\"+8Nek/\":\"Maandelijks\",\"1LkxnU\":\"Maandelijks patroon\",\"6jefe3\":\"maanden\",\"f8jrkd\":\"meer\",\"JcD7qf\":\"Meer acties\",\"w36OkR\":\"Meest bekeken evenementen (Laatste 14 dagen)\",\"+Y/na7\":\"Verplaats alle data eerder of later\",\"3DIpY0\":\"Meerdere locaties\",\"g9cQCP\":\"Meerdere tickettypen\",\"GfaxEk\":\"Muziek\",\"oVGCGh\":\"Mijn Tickets\",\"8/brI5\":\"Naam is verplicht\",\"sFFArG\":\"Naam moet minder dan 255 tekens bevatten\",\"sCV5Yc\":\"Naam van het evenement\",\"xxU3NX\":\"Netto-omzet\",\"7I8LlL\":\"Nieuwe capaciteit\",\"n1GRql\":\"Nieuw label\",\"y0Fcpd\":\"Nieuwe locatie\",\"ArHT/C\":\"Nieuwe aanmeldingen\",\"uK7xWf\":\"Nieuwe tijd:\",\"veT5Br\":\"Volgende sessie\",\"WXtl5X\":[\"Volgende: \",[\"nextFormatted\"]],\"eWRECP\":\"Nachtleven\",\"HSw5l3\":\"Nee - Ik ben een particulier of een niet-BTW-geregistreerd bedrijf\",\"VHfLAW\":\"Geen accounts\",\"+jIeoh\":\"Geen accounts gevonden\",\"074+X8\":\"Geen actieve webhooks\",\"zxnup4\":\"Geen affiliates om te tonen\",\"Dwf4dR\":\"Nog geen deelnemersvragen\",\"th7rdT\":\"Geen deelnemers te tonen\",\"PKySlW\":\"Nog geen deelnemers voor deze datum.\",\"/UC6qk\":\"Geen attributiegegevens gevonden\",\"E2vYsO\":\"Stripe heeft nog geen mogelijkheden gerapporteerd.\",\"amMkpL\":\"Geen capaciteit\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Geen incheck lijsten beschikbaar voor dit evenement.\",\"wG+knX\":\"Nog geen check-ins\",\"+dAKxg\":\"Geen configuraties gevonden\",\"LiLk8u\":\"Geen verbindingen beschikbaar\",\"eb47T5\":\"Geen gegevens gevonden voor de geselecteerde filters. Probeer het datumbereik of de valuta aan te passen.\",\"lFVUyx\":\"Geen check-in lijst specifiek voor deze datum\",\"I8mtzP\":\"Geen data beschikbaar deze maand. Probeer naar een andere maand te navigeren.\",\"yDukIL\":\"Geen data komen overeen met de huidige filters.\",\"B7phdj\":\"Geen data komen overeen met je filters\",\"/ZB4Um\":\"Geen data komen overeen met je zoekopdracht\",\"gEdNe8\":\"Nog geen data gepland\",\"27GYXJ\":\"Geen data gepland.\",\"pZNOT9\":\"Geen einddatum\",\"dW40Uz\":\"Geen evenementen gevonden\",\"8pQ3NJ\":\"Geen evenementen die beginnen in de komende 24 uur\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Geen mislukte taken\",\"EpvBAp\":\"Geen factuur\",\"XZkeaI\":\"Geen logboeken gevonden\",\"nrSs2u\":\"Geen berichten gevonden\",\"Rj99yx\":\"Geen sessies beschikbaar\",\"IFU1IG\":\"Geen sessies op deze datum\",\"OVFwlg\":\"Nog geen bestellingsvragen\",\"EJ7bVz\":\"Geen bestellingen gevonden\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Nog geen bestellingen voor deze datum.\",\"wUv5xQ\":\"Geen organisatoractiviteit in de laatste 14 dagen\",\"vLd1tV\":\"Geen organisatorcontext beschikbaar.\",\"B7w4KY\":\"Geen andere organisatoren beschikbaar\",\"PChXMe\":\"Geen betaalde bestellingen\",\"6jYQGG\":\"Geen afgelopen evenementen\",\"CHzaTD\":\"Geen populaire evenementen in de laatste 14 dagen\",\"zK/+ef\":\"Geen producten beschikbaar voor selectie\",\"M1/lXs\":\"Geen producten geconfigureerd voor dit evenement.\",\"kY7XDn\":\"Geen producten hebben wachtlijstvermeldingen\",\"wYiAtV\":\"Geen recente accountaanmeldingen\",\"UW90md\":\"Geen ontvangers gevonden\",\"QoAi8D\":\"Geen reactie\",\"JeO7SI\":\"Geen reactie\",\"EK/G11\":\"Nog geen reacties\",\"7J5OKy\":\"Nog geen opgeslagen locaties\",\"wpCjcf\":\"Nog geen opgeslagen locaties. Ze verschijnen hier zodra je evenementen met adressen aanmaakt.\",\"mPdY6W\":\"Geen suggesties\",\"3sRuiW\":\"Geen tickets gevonden\",\"k2C0ZR\":\"Geen aankomende data\",\"yM5c0q\":\"Geen aankomende evenementen\",\"qpC74J\":\"Geen gebruikers gevonden\",\"8wgkoi\":\"Geen bekeken evenementen in de laatste 14 dagen\",\"Arzxc1\":\"Geen wachtlijstinschrijvingen\",\"n5vdm2\":\"Er zijn nog geen webhook-events opgenomen voor dit eindpunt. Evenementen zullen hier verschijnen zodra ze worden geactiveerd.\",\"4GhX3c\":\"Geen webhooks\",\"4+am6b\":\"Nee, houd me hier\",\"4JVMUi\":\"niet bewerkt\",\"Itw24Q\":\"Nog niet ingecheckt\",\"x5+Lcz\":\"Niet Ingecheckt\",\"8n10sz\":\"Niet in Aanmerking\",\"kLvU3F\":\"Deelnemers op de hoogte brengen en verkoop stoppen\",\"t9QlBd\":\"November\",\"kAREMN\":\"Aantal aan te maken data\",\"6u1B3O\":\"Sessie\",\"mmoE62\":\"Sessie geannuleerd\",\"UYWXdN\":\"Einddatum sessie\",\"k7dZT5\":\"Eindtijd sessie\",\"Opinaj\":\"Sessielabel\",\"V9flmL\":\"Sessieplanning\",\"NUTUUs\":\"Sessieplanning-pagina\",\"AT8UKD\":\"Startdatum sessie\",\"Um8bvD\":\"Starttijd sessie\",\"Kh3WO8\":\"Sessieoverzicht\",\"byXCTu\":\"Sessies\",\"KATw3p\":\"Sessies (alleen toekomstige)\",\"85rTR2\":\"Sessies kunnen worden geconfigureerd na aanmaak\",\"dzQfDY\":\"Oktober\",\"BwJKBw\":\"van\",\"9h7RDh\":\"Aanbieden\",\"EfK2O6\":\"Plek aanbieden\",\"3sVRey\":\"Tickets aanbieden\",\"2O7Ybb\":\"Aanbod-tijdslimiet\",\"1jUg5D\":\"Aangeboden\",\"l+/HS6\":[\"Aanbiedingen verlopen na \",[\"timeoutHours\"],\" uur.\"],\"lQgMLn\":\"Naam van kantoor of locatie\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offline Betaling\",\"nO3VbP\":[\"In de verkoop \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — verbindingsgegevens opgeven\",\"LuZBbx\":\"Online en in persoon\",\"IXuOqt\":\"Online en in persoon — zie planning\",\"w3DG44\":\"Online verbindingsgegevens\",\"WjSpu5\":\"Online evenement\",\"TP6jss\":\"Verbindingsgegevens online evenement\",\"NdOxqr\":\"Alleen accountbeheerders kunnen evenementen verwijderen of archiveren. Neem contact op met uw accountbeheerder voor hulp.\",\"rnoDMF\":\"Alleen accountbeheerders kunnen organisatoren verwijderen of archiveren. Neem contact op met uw accountbeheerder voor hulp.\",\"bU7oUm\":\"Alleen verzenden naar orders met deze statussen\",\"M2w1ni\":\"Alleen zichtbaar met promocode\",\"y8Bm7C\":\"Check-in openen\",\"RLz7P+\":\"Sessie openen\",\"cDSdPb\":\"Optionele bijnaam getoond in selectievelden, bijv. \\\"HQ Vergaderzaal\\\"\",\"HXMJxH\":\"Optionele tekst voor disclaimers, contactinfo of danknotities (alleen één regel)\",\"L565X2\":\"opties\",\"8m9emP\":\"of voeg één datum toe\",\"dSeVIm\":\"bestelling\",\"c/TIyD\":\"Bestelling & Ticket\",\"H5qWhm\":\"Bestelling geannuleerd\",\"b6+Y+n\":\"Bestelling voltooid\",\"x4MLWE\":\"Bestelling Bevestiging\",\"CsTTH0\":\"Bestelbevestiging succesvol opnieuw verzonden\",\"ppuQR4\":\"Bestelling aangemaakt\",\"0UZTSq\":\"Bestelvaluta\",\"xtQzag\":\"Bestelgegevens\",\"HdmwrI\":\"Bestelling E-mail\",\"bwBlJv\":\"Bestelling Voornaam\",\"vrSW9M\":\"Bestelling is geannuleerd en terugbetaald. De eigenaar van de bestelling is op de hoogte gesteld.\",\"rzw+wS\":\"Bestelhouders\",\"oI/hGR\":\"Bestelling-ID\",\"Pc729f\":\"Bestelling Wacht op Offline Betaling\",\"F4NXOl\":\"Bestelling Achternaam\",\"RQCXz6\":\"Bestellimieten\",\"SO9AEF\":\"Bestellingslimieten ingesteld\",\"5RDEEn\":\"Besteltaal\",\"vu6Arl\":\"Bestelling gemarkeerd als betaald\",\"sLbJQz\":\"Bestelling niet gevonden\",\"kvYpYu\":\"Bestelling niet gevonden\",\"i8VBuv\":\"Bestelnummer\",\"eJ8SvM\":\"Bestelnummer, aankoopdatum, e-mail van koper\",\"FaPYw+\":\"Eigenaar bestelling\",\"eB5vce\":\"Bestel eigenaars met een specifiek product\",\"CxLoxM\":\"Besteleigenaars met producten\",\"DoH3fD\":\"Bestelbetaling in Behandeling\",\"UkHo4c\":\"Bestelref.\",\"EZy55F\":\"Bestelling terugbetaald\",\"6eSHqs\":\"Bestelstatussen\",\"oW5877\":\"Bestelling Totaal\",\"e7eZuA\":\"Bijgewerkte bestelling\",\"1SQRYo\":\"Bestelling succesvol bijgewerkt\",\"KndP6g\":\"Bestelling URL\",\"3NT0Ck\":\"Bestelling is geannuleerd\",\"V5khLm\":\"bestellingen\",\"sd5IMt\":\"Voltooide bestellingen\",\"5It1cQ\":\"Geëxporteerde bestellingen\",\"tlKX/S\":\"Bestellingen die meerdere data beslaan, worden gemarkeerd voor handmatige beoordeling.\",\"UQ0ACV\":\"Totaal bestellingen\",\"B/EBQv\":\"Bestellingen:\",\"qtGTNu\":\"Organische accounts\",\"ucgZ0o\":\"Organisatie\",\"P/JHA4\":\"Organisator succesvol gearchiveerd\",\"S3CZ5M\":\"Organisator-dashboard\",\"GzjTd0\":\"Organisator succesvol verwijderd\",\"Uu0hZq\":\"Organisator e-mail\",\"Gy7BA3\":\"E-mailadres van de organisator\",\"SQqJd8\":\"Organisator niet gevonden\",\"HF8Bxa\":\"Organisator succesvol hersteld\",\"wpj63n\":\"Instellingen van organisator\",\"o1my93\":\"Bijwerken van organisatorstatus mislukt. Probeer het later opnieuw.\",\"rLHma1\":\"Organisatorstatus bijgewerkt\",\"LqBITi\":\"Organisator/standaardsjabloon wordt gebruikt\",\"q4zH+l\":\"Organisatoren\",\"/IX/7x\":\"Overig\",\"RsiDDQ\":\"Andere Lijsten (Ticket Niet Inbegrepen)\",\"aDfajK\":\"Buiten\",\"qMASRF\":\"Uitgaande berichten\",\"iCOVQO\":\"Overschrijven\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Prijs overschrijven\",\"cnVIpl\":\"Overschrijving verwijderd\",\"6/dCYd\":\"Overzicht\",\"6WdDG7\":\"Pagina\",\"8uqsE5\":\"Pagina niet meer beschikbaar\",\"QkLf4H\":\"Pagina-URL\",\"sF+Xp9\":\"Paginaweergaven\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Betaalde accounts\",\"5F7SYw\":\"Gedeeltelijke terugbetaling\",\"fFYotW\":[\"Gedeeltelijk terugbetaald: \",[\"0\"]],\"i8day5\":\"Kosten doorberekenen aan koper\",\"k4FLBQ\":\"Doorberekenen aan koper\",\"Ff0Dor\":\"Verleden\",\"BFjW8X\":\"Achterstallig\",\"xTPjSy\":\"Afgelopen evenementen\",\"/l/ckQ\":\"Plak URL\",\"URAE3q\":\"Gepauzeerd\",\"4fL/V7\":\"Betalen\",\"OZK07J\":\"Betaal om te ontgrendelen\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Betaaldatum\",\"ENEPLY\":\"Betaalmethode\",\"8Lx2X7\":\"Betaling ontvangen\",\"fx8BTd\":\"Betalingen niet beschikbaar\",\"C+ylwF\":\"Uitbetalingen\",\"UbRKMZ\":\"In behandeling\",\"UkM20g\":\"In afwachting van beoordeling\",\"dPYu1F\":\"Per deelnemer\",\"mQV/nJ\":\"per min\",\"VlXNyK\":\"Per bestelling\",\"hauDFf\":\"Per ticket\",\"mnF83a\":\"Percentage vergoeding\",\"TNLuRD\":\"Percentagekosten (%)\",\"MixU2P\":\"Percentage moet tussen 0 en 100 liggen\",\"MkuVAZ\":\"Percentage van transactiebedrag\",\"/Bh+7r\":\"Prestaties\",\"fIp56F\":\"Verwijder dit evenement en alle bijbehorende gegevens permanent.\",\"nJeeX7\":\"Verwijder deze organisator en al zijn evenementen permanent.\",\"wfCTgK\":\"Verwijder deze datum definitief\",\"6kPk3+\":\"Persoonlijke gegevens\",\"zmwvG2\":\"Telefoon\",\"SdM+Q1\":\"Kies een locatie\",\"tSR/oe\":\"Kies een einddatum\",\"e8kzpp\":\"Kies ten minste één dag van de maand\",\"35C8QZ\":\"Kies ten minste één dag van de week\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Geplaatst\",\"wBJR8i\":\"Een evenement plannen?\",\"J3lhKT\":\"Platformkosten\",\"RD51+P\":[\"Platformkosten van \",[\"0\"],\" afgetrokken van uw uitbetaling\"],\"br3Y/y\":\"Platformkosten\",\"3buiaw\":\"Platformkosten rapport\",\"kv9dM4\":\"Platformomzet\",\"PJ3Ykr\":\"Controleer je ticket voor de bijgewerkte tijd. Je tickets zijn nog steeds geldig — er is geen actie nodig tenzij de nieuwe tijden je niet uitkomen. Reageer op deze e-mail als je vragen hebt.\",\"OtjenF\":\"Voer een geldig e-mailadres in\",\"jEw0Mr\":\"Voer een geldige URL in\",\"n8+Ng/\":\"Voer de 5-cijferige code in\",\"r+lQXT\":\"Voer uw BTW-nummer in\",\"Dvq0wf\":\"Geef een afbeelding op.\",\"2cUopP\":\"Start het bestelproces opnieuw.\",\"GoXxOA\":\"Selecteer een datum en tijd\",\"8KmsFa\":\"Selecteer een datumbereik\",\"EFq6EG\":\"Selecteer een afbeelding.\",\"fuwKpE\":\"Probeer het opnieuw.\",\"klWBeI\":\"Wacht even voordat je een nieuwe code aanvraagt\",\"hfHhaa\":\"Even geduld terwijl we je affiliates voorbereiden voor export...\",\"o+tJN/\":\"Wacht even terwijl we je deelnemers voorbereiden voor export...\",\"+5Mlle\":\"Even geduld alstublieft terwijl we uw bestellingen klaarmaken voor export...\",\"trnWaw\":\"Pools\",\"luHAJY\":\"Populaire evenementen (Laatste 14 dagen)\",\"p/78dY\":\"Positie\",\"TjX7xL\":\"Post-Checkout Bericht\",\"OESu7I\":\"Voorkom oververkoop door voorraad te delen over meerdere tickettypes.\",\"NgVUL2\":\"Voorbeeld afrekenformulier\",\"cs5muu\":\"Voorbeeld van de evenementpagina\",\"+4yRWM\":\"Prijs van het ticket\",\"Jm2AC3\":\"Prijsklasse\",\"a5jvSX\":\"Prijsniveaus\",\"ReihZ7\":\"Afdrukvoorbeeld\",\"JnuPvH\":\"Ticket afdrukken\",\"tYF4Zq\":\"Afdrukken naar PDF\",\"LcET2C\":\"Privacybeleid\",\"8z6Y5D\":\"Terugbetaling verwerken\",\"JcejNJ\":\"Bestelling verwerken\",\"EWCLpZ\":\"Gemaakt product\",\"XkFYVB\":\"Product verwijderd\",\"YMwcbR\":\"Uitsplitsing productverkoop, inkomsten en belastingen\",\"ls0mTC\":\"Productinstellingen kunnen niet worden bewerkt voor geannuleerde data.\",\"2339ej\":\"Productinstellingen succesvol opgeslagen\",\"ldVIlB\":\"Bijgewerkt product\",\"CP3D8G\":\"Voortgang\",\"JoKGiJ\":\"Kortingscode\",\"k3wH7i\":\"Gebruik van promocodes en uitsplitsing van kortingen\",\"tZqL0q\":\"promotiecodes\",\"oCHiz3\":\"Promotiecodes\",\"uEhdRh\":\"Alleen promo\",\"dLm8V5\":\"Promotionele e-mails kunnen leiden tot accountopschorting\",\"XoEWtl\":\"Geef minstens één adresveld op voor de nieuwe locatie.\",\"2W/7Gz\":\"Verstrek het volgende vóór de volgende Stripe-controle om uitbetalingen door te laten gaan.\",\"aemBRq\":\"Aanbieder\",\"EEYbdt\":\"Publiceren\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Gekocht\",\"JunetL\":\"Koper\",\"phmeUH\":\"E-mail van koper\",\"ywR4ZL\":\"QR-code check-in\",\"oWXNE5\":\"Aant.\",\"biEyJ4\":\"Antwoorden\",\"k/bJj0\":\"Vragen herschikt\",\"b24kPi\":\"Wachtrij\",\"lTPqpM\":\"Snelle tip\",\"fqDzSu\":\"Tarief\",\"mnUGVC\":\"Limiet overschreden. Probeer het later opnieuw.\",\"t41hVI\":\"Plek opnieuw aanbieden\",\"TNclgc\":\"Deze datum heractiveren? De datum wordt heropend voor toekomstige verkopen.\",\"uqoRbb\":\"Realtime analyses\",\"xzRvs4\":[\"Productupdates van \",[\"0\"],\" ontvangen.\"],\"pLXbi8\":\"Recente accountaanmeldingen\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recente deelnemers\",\"qhfiwV\":\"Recente check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Recente bestellingen\",\"7hPBBn\":\"ontvanger\",\"jp5bq8\":\"ontvangers\",\"yPrbsy\":\"Ontvangers\",\"E1F5Ji\":\"Ontvangers zijn beschikbaar nadat het bericht is verzonden\",\"wuhHPE\":\"Terugkerend\",\"asLqwt\":\"Terugkerend evenement\",\"D0tAMe\":\"Terugkerende evenementen\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Doorverwijzen naar Stripe...\",\"pnoTN5\":\"Verwijzingsaccounts\",\"ACKu03\":\"Voorbeeld Vernieuwen\",\"vuFYA6\":\"Alle bestellingen voor deze data terugbetalen\",\"4cRUK3\":\"Alle bestellingen voor deze datum terugbetalen\",\"fKn/k6\":\"Terugbetalingsbedrag\",\"qY4rpA\":\"Terugbetaling mislukt\",\"TspTcZ\":\"Terugbetaling uitgegeven\",\"FaK/8G\":[\"Bestelling \",[\"0\"],\" terugbetalen\"],\"MGbi9P\":\"Terugbetaling in behandeling\",\"BDSRuX\":[\"Terugbetaald: \",[\"0\"]],\"bU4bS1\":\"Terugbetalingen\",\"rYXfOA\":\"Regionale instellingen\",\"5tl0Bp\":\"Registratievragen\",\"ZNo5k1\":\"Resterend\",\"EMnuA4\":\"Herinnering gepland\",\"Bjh87R\":\"Label van alle data verwijderen\",\"KkJtVK\":\"Heropenen voor nieuwe verkoop\",\"XJwWJp\":\"Deze datum heropenen voor nieuwe verkoop? Eerder geannuleerde tickets worden niet hersteld — getroffen deelnemers blijven geannuleerd en reeds uitgegeven terugbetalingen worden niet teruggedraaid.\",\"bAwDQs\":\"Herhaal elke\",\"CQeZT8\":\"Rapport niet gevonden\",\"JEPMXN\":\"Nieuwe link aanvragen\",\"TMLAx2\":\"Verplicht\",\"mdeIOH\":\"Code opnieuw verzenden\",\"sQxe68\":\"Bevestiging opnieuw verzenden\",\"bxoWpz\":\"Bevestigingsmail opnieuw verzenden\",\"G42SNI\":\"E-mail opnieuw verzenden\",\"TTpXL3\":[\"Opnieuw verzenden over \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Ticket opnieuw verzenden\",\"Uwsg2F\":\"Gereserveerd\",\"8wUjGl\":\"Gereserveerd tot\",\"a5z8mb\":\"Resetten naar basisprijs\",\"kCn6wb\":\"Opnieuw instellen...\",\"404zLK\":\"Opgeloste locatie- of locatienaam\",\"ZlCDf+\":\"Antwoord\",\"bsydMp\":\"Antwoorddetails\",\"yKu/3Y\":\"Herstellen\",\"RokrZf\":\"Evenement herstellen\",\"/JyMGh\":\"Organisator herstellen\",\"HFvFRb\":\"Herstel dit evenement om het weer zichtbaar te maken.\",\"DDIcqy\":\"Herstel deze organisator en maak hem weer actief.\",\"mO8KLE\":\"resultaten\",\"6gRgw8\":\"Opnieuw proberen\",\"1BG8ga\":\"Alles opnieuw proberen\",\"rDC+T6\":\"Taak opnieuw proberen\",\"CbnrWb\":\"Terug naar evenement\",\"mdQ0zb\":\"Herbruikbare locaties voor je evenementen. Locaties die zijn aangemaakt via de automatische aanvulling worden hier automatisch opgeslagen.\",\"XFOPle\":\"Hergebruiken\",\"1Zehp4\":\"Hergebruik een Stripe-verbinding van een andere organisator in dit account.\",\"Oo/PLb\":\"Omzetoverzicht\",\"O/8Ceg\":\"Omzet vandaag\",\"CfuueU\":\"Aanbod intrekken\",\"RIgKv+\":\"Doorlopen tot een specifieke datum\",\"JYRqp5\":\"Za\",\"dFFW9L\":[\"Uitverkoop eindigde \",[\"0\"]],\"loCKGB\":[\"Uitverkoop eindigt \",[\"0\"]],\"wlfBad\":\"Uitverkoopperiode\",\"qi81Jg\":\"Verkoopperiodedata gelden voor alle data in je planning. Gebruik de overschrijvingen op de <0>Sessieplanning-pagina om prijzen en beschikbaarheid voor afzonderlijke data te beheren.\",\"5CDM6r\":\"Verkoopperiode ingesteld\",\"ftzaMf\":\"Verkoopperiode, bestellingslimieten, zichtbaarheid\",\"zpekWp\":[\"Uitverkoop begint \",[\"0\"]],\"mUv9U4\":\"Verkoop\",\"9KnRdL\":\"Verkoop is gepauzeerd\",\"JC3J0k\":\"Verkoop-, aanwezigheids- en check-in-overzicht per sessie\",\"3VnlS9\":\"Verkopen, bestellingen en prestatie-indicatoren voor alle evenementen\",\"3Q1AWe\":\"Verkoop:\",\"LeuERW\":\"Gelijk aan evenement\",\"B4nE3N\":\"Voorbeeldticketprijs\",\"8BRPoH\":\"Voorbeeldlocatie\",\"PiK6Ld\":\"Za\",\"+5kO8P\":\"Zaterdag\",\"zJiuDn\":\"Kostenoverschrijving opslaan\",\"NB8Uxt\":\"Planning opslaan\",\"KZrfYJ\":\"Sociale links opslaan\",\"9Y3hAT\":\"Sjabloon Opslaan\",\"C8ne4X\":\"Ticketontwerp Opslaan\",\"cTI8IK\":\"Btw-instellingen opslaan\",\"6/TNCd\":\"BTW-instellingen opslaan\",\"4RvD9q\":\"Opgeslagen locatie\",\"cgw0cL\":\"Opgeslagen locaties\",\"lvSrsT\":\"Opgeslagen locaties\",\"Fbqm/I\":\"Bij het opslaan van een overschrijving wordt een eigen configuratie voor deze organisator aangemaakt als deze momenteel op de systeemstandaard staat.\",\"I+FvbD\":\"Scannen\",\"0zd6Nm\":\"Scan een ticket om een deelnemer in te checken\",\"bQG7Qk\":\"Gescande tickets verschijnen hier\",\"WDYSLJ\":\"Scannermodus\",\"gmB6oO\":\"Planning\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Planning succesvol aangemaakt\",\"YP7frt\":\"Planning eindigt op\",\"QS1Nla\":\"Later plannen\",\"NAzVVw\":\"Bericht plannen\",\"Fz09JP\":\"Schema begint op\",\"4ba0NE\":\"Gepland\",\"qcP/8K\":\"Geplande tijd\",\"A1taO8\":\"Zoeken\",\"ftNXma\":\"Zoek affiliates...\",\"VMU+zM\":\"Deelnemers zoeken\",\"VY+Bdn\":\"Zoeken op accountnaam of e-mail...\",\"VX+B3I\":\"Zoeken op evenement titel of organisator...\",\"R0wEyA\":\"Zoeken op taaknaam of uitzondering...\",\"VT+urE\":\"Zoeken op naam of e-mail...\",\"GHdjuo\":\"Zoeken op naam, e-mail of account...\",\"4mBFO7\":\"Zoek op naam, bestelnr., ticketnr. of e-mail\",\"20ce0U\":\"Zoeken op bestelling-ID, klantnaam of e-mail...\",\"4DSz7Z\":\"Zoeken op onderwerp, evenement of account...\",\"nQC7Z9\":\"Data zoeken...\",\"iRtEpV\":\"Data zoeken…\",\"JRM7ao\":\"Zoek een adres\",\"BWF1kC\":\"Berichten zoeken...\",\"3aD3GF\":\"Seizoensgebonden\",\"ku//5b\":\"Tweede\",\"Mck5ht\":\"Veilige afrekening\",\"s7tXqF\":\"Planning bekijken\",\"JFap6u\":\"Bekijk wat Stripe nog nodig heeft\",\"p7xUrt\":\"Selecteer een categorie\",\"hTKQwS\":\"Selecteer een datum en tijd\",\"e4L7bF\":\"Selecteer een bericht om de inhoud te bekijken\",\"zPRPMf\":\"Selecteer een niveau\",\"uqpVri\":\"Selecteer een tijd\",\"BFRSTT\":\"Selecteer Account\",\"wgNoIs\":\"Alles selecteren\",\"mCB6Je\":\"Selecteer alles\",\"aCEysm\":[\"Alles selecteren op \",[\"0\"]],\"a6+167\":\"Selecteer een evenement\",\"CFbaPk\":\"Selecteer deelnemersgroep\",\"88a49s\":\"Camera kiezen\",\"tVW/yo\":\"Selecteer valuta\",\"SJQM1I\":\"Datum selecteren\",\"n9ZhRa\":\"Selecteer einddatum en tijd\",\"gTN6Ws\":\"Selecteer eindtijd\",\"0U6E9W\":\"Selecteer evenementcategorie\",\"j9cPeF\":\"Soorten evenementen selecteren\",\"ypTjHL\":\"Sessie selecteren\",\"KizCK7\":\"Selecteer startdatum en tijd\",\"dJZTv2\":\"Selecteer starttijd\",\"x8XMsJ\":\"Selecteer het berichtenniveau voor dit account. Dit bepaalt berichtlimieten en linkrechten.\",\"aT3jZX\":\"Selecteer tijdzone\",\"TxfvH2\":\"Selecteer welke deelnemers dit bericht moeten ontvangen\",\"Ropvj0\":\"Selecteer welke evenementen deze webhook activeren\",\"+6YAwo\":\"geselecteerd\",\"ylXj1N\":\"Geselecteerd\",\"uq3CXQ\":\"Verkoop je evenement uit.\",\"j9b/iy\":\"Verkoopt snel 🔥\",\"73qYgo\":\"Verzenden als test\",\"HMAqFK\":\"Stuur e-mails naar deelnemers, tickethouders of bestelingseigenaren. Berichten kunnen direct worden verzonden of worden ingepland voor later.\",\"22Itl6\":\"Stuur mij een kopie\",\"NpEm3p\":\"Nu verzenden\",\"nOBvex\":\"Stuur realtime bestel- en deelnemergegevens naar je externe systemen.\",\"1lNPhX\":\"Terugbetalingsmelding e-mail verzenden\",\"eaUTwS\":\"Verstuur resetlink\",\"5cV4PY\":\"Verzend naar alle sessies of kies een specifieke\",\"QEQlnV\":\"Verstuur uw eerste bericht\",\"3nMAVT\":\"Verzonden over 2d 4u\",\"IoAuJG\":\"Verzenden...\",\"h69WC6\":\"Verzonden\",\"BVu2Hz\":\"Verzonden door\",\"ZFa8wv\":\"Verzonden naar deelnemers wanneer een geplande datum wordt geannuleerd\",\"SPdzrs\":\"Verzonden naar klanten wanneer ze een bestelling plaatsen\",\"LxSN5F\":\"Verzonden naar elke deelnemer met hun ticketgegevens\",\"hgvbYY\":\"September\",\"5sN96e\":\"Sessie geannuleerd\",\"89xaFU\":\"Stel de standaard platformkosteninstellingen in voor nieuwe evenementen onder deze organisator.\",\"eXssj5\":\"Stel standaardinstellingen in voor nieuwe evenementen die onder deze organisator worden gemaakt.\",\"uPe5p8\":\"Stel in hoe lang elke datum duurt\",\"xNsRxU\":\"Aantal data instellen\",\"ODuUEi\":\"Stel het datumlabel in of wis het\",\"buHACR\":\"Stel in dat de eindtijd van elke datum dit lang na de starttijd ligt.\",\"TaeFgl\":\"Instellen op onbeperkt (limiet verwijderen)\",\"pd6SSe\":\"Stel een terugkerende planning in om automatisch data aan te maken, of voeg ze één voor één toe.\",\"s0FkEx\":\"Stel inchecklijsten in voor verschillende ingangen, sessies of dagen.\",\"TaWVGe\":\"Uitbetalingen instellen\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Planning instellen\",\"xMO+Ao\":\"Stel je organisatie in\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Stel je planning in\",\"ETC76A\":\"De locatie of online gegevens van de sessie instellen, wijzigen of verwijderen\",\"C3htzi\":\"Instelling bijgewerkt\",\"Ohn74G\":\"Instellingen & ontwerp\",\"1W5XyZ\":\"De installatie duurt maar een paar minuten — je hebt geen bestaand Stripe-account nodig. Stripe regelt kaarten, wallets, regionale betaalmethoden en fraudebescherming, zodat jij je op je evenement kunt richten.\",\"GG7qDw\":\"Deel affiliatelink\",\"hL7sDJ\":\"Deel organisatorpagina\",\"jy6QDF\":\"Gedeeld capaciteitsbeheer\",\"jDNHW4\":\"Tijden verschuiven\",\"tPfIaW\":[\"Tijden verschoven voor \",[\"count\"],\" datum/data\"],\"WwlM8F\":\"Geavanceerde opties tonen\",\"cMW+gm\":[\"Toon alle platforms (\",[\"0\"],\" meer met waarden)\"],\"wXi9pZ\":\"Notities tonen aan niet-aangemeld personeel\",\"UVPI5D\":\"Toon minder platforms\",\"Eu/N/d\":\"Toon marketing opt-in selectievakje\",\"SXzpzO\":\"Toon marketing opt-in selectievakje standaard\",\"57tTk5\":\"Meer data tonen\",\"b33PL9\":\"Toon meer platforms\",\"Eut7p9\":\"Bestelgegevens tonen aan niet-aangemeld personeel\",\"+RoWKN\":\"Antwoorden tonen aan niet-aangemeld personeel\",\"t1LIQW\":[\"Toont \",[\"0\"],\" van \",[\"totalRows\"],\" records\"],\"E717U9\":[[\"0\"],\"–\",[\"1\"],\" van \",[\"2\"],\" weergegeven\"],\"5rzhBQ\":[[\"MAX_VISIBLE\"],\" van \",[\"totalAvailable\"],\" data weergegeven. Typ om te zoeken.\"],\"WSt3op\":[\"Eerste \",[\"0\"],\" weergegeven — de resterende \",[\"1\"],\" sessie(s) worden nog steeds bereikt wanneer het bericht wordt verzonden.\"],\"OJLTEL\":\"Wordt getoond aan personeel bij het eerste openen van de pagina.\",\"jVRHeq\":\"Aangemeld\",\"5C7J+P\":\"Eenmalig evenement\",\"E//btK\":\"Handmatig bewerkte data overslaan\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sociaal\",\"d0rUsW\":\"Sociale links\",\"j/TOB3\":\"Sociale links & website\",\"s9KGXU\":\"Verkocht\",\"iACSrw\":\"Sommige details zijn verborgen voor publieke toegang. Log in om alles te zien.\",\"KTxc6k\":\"Er is iets misgegaan. Probeer het opnieuw of neem contact op met support als het probleem zich blijft voordoen\",\"lkE00/\":\"Er is iets misgegaan. Probeer het later opnieuw.\",\"wdxz7K\":\"Bron\",\"fDG2by\":\"Spiritualiteit\",\"oPaRES\":\"Splits check-in per dag, zone of tickettype. Deel de link met personeel — geen account nodig.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Instructies voor personeel\",\"tXkhj/\":\"Start\",\"JcQp9p\":\"Startdatum & tijd\",\"0m/ekX\":\"Startdatum & tijd\",\"izRfYP\":\"Startdatum is verplicht\",\"tuO4fV\":\"Startdatum van de sessie\",\"2R1+Rv\":\"Starttijd van het evenement\",\"2Olov3\":\"Starttijd van de sessie\",\"n9ZrDo\":\"Begin met het typen van een locatie of adres...\",\"qeFVhN\":[\"Begint over \",[\"diffDays\"],\" dagen\"],\"AOqtxN\":[\"Begint over \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Begint over \",[\"h\"],\"u \",[\"m\"],\"m\"],\"Lo49in\":[\"Begint over \",[\"seconds\"],\"s\"],\"NqChgF\":\"Begint morgen\",\"2NbyY/\":\"Statistieken\",\"GVUxAX\":\"Statistieken zijn gebaseerd op de aanmaakdatum van het account\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Nog nodig\",\"wuV0bK\":\"Stop Imiteren\",\"s/KaDb\":\"Stripe verbonden\",\"Bk06QI\":\"Stripe verbonden\",\"akZMv8\":[\"Stripe-verbinding gekopieerd van \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe heeft geen installatielink teruggestuurd. Probeer het opnieuw.\",\"aKtF0O\":\"Stripe niet verbonden\",\"9i0++A\":\"Stripe betalings-ID\",\"R1lIMV\":\"Stripe heeft binnenkort meer gegevens nodig\",\"FzcCHA\":\"Stripe stelt je een paar korte vragen om de installatie af te ronden.\",\"eYbd7b\":\"Zo\",\"ii0qn/\":\"Onderwerp is verplicht\",\"M7Uapz\":\"Onderwerp verschijnt hier\",\"6aXq+t\":\"Onderwerp:\",\"JwTmB6\":\"Succesvol gedupliceerd product\",\"WUOCgI\":\"Plek succesvol aangeboden\",\"IvxA4G\":[\"Tickets succesvol aangeboden aan \",[\"count\"],\" personen\"],\"kKpkzy\":\"Tickets succesvol aangeboden aan 1 persoon\",\"Zi3Sbw\":\"Succesvol verwijderd van de wachtlijst\",\"RuaKfn\":\"Adres succesvol bijgewerkt\",\"kzx0uD\":\"Standaardinstellingen evenement succesvol bijgewerkt\",\"5n+Wwp\":\"Organisator succesvol bijgewerkt\",\"DMCX/I\":\"Standaard platformkosteninstellingen succesvol bijgewerkt\",\"URUYHc\":\"Platformkosteninstellingen succesvol bijgewerkt\",\"0Dk/l8\":\"SEO-instellingen succesvol bijgewerkt\",\"S8Tua9\":\"Instellingen succesvol bijgewerkt\",\"MhOoLQ\":\"Sociale links succesvol bijgewerkt\",\"CNSSfp\":\"Trackinginstellingen succesvol bijgewerkt\",\"kj7zYe\":\"Webhook succesvol bijgewerkt\",\"dXoieq\":\"Samenvatting\",\"/RfJXt\":[\"Zomer Muziekfestival \",[\"0\"]],\"CWOPIK\":\"Zomer Muziekfestival 2025\",\"D89zck\":\"Zo\",\"DBC3t5\":\"Zondag\",\"UaISq3\":\"Zweeds\",\"JZTQI0\":\"Wissel van organisator\",\"9YHrNC\":\"Systeemstandaard\",\"lruQkA\":\"Tik op het scherm om door te gaan\",\"TJUrME\":[\"Gericht op deelnemers van \",[\"0\"],\" geselecteerde sessies.\"],\"yT6dQ8\":\"Geïnde belasting gegroepeerd op belastingtype en evenement\",\"Ye321X\":\"Belastingnaam\",\"WyCBRt\":\"Belastingoverzicht\",\"GkH0Pq\":\"Belastingen en kosten toegepast\",\"Rwiyt2\":\"Belastingen geconfigureerd\",\"iQZff7\":\"Belastingen, kosten, zichtbaarheid, verkoopperiode, productmarkering en bestellingslimieten\",\"SXvRWU\":\"Teamsamenwerking\",\"vlf/In\":\"Technologie\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Vertel mensen wat ze kunnen verwachten van je evenement\",\"NiIUyb\":\"Vertel ons over je evenement\",\"DovcfC\":\"Vertel ons over je organisatie. Deze informatie wordt weergegeven op je evenementpagina's.\",\"69GWRq\":\"Vertel ons hoe vaak je evenement zich herhaalt en we maken alle data voor je aan.\",\"mXPbwY\":\"Geef je btw-registratiestatus door zodat we de juiste btw-behandeling op platformkosten toepassen.\",\"7wtpH5\":\"Sjabloon Actief\",\"QHhZeE\":\"Sjabloon succesvol aangemaakt\",\"xrWdPR\":\"Sjabloon succesvol verwijderd\",\"G04Zjt\":\"Sjabloon succesvol opgeslagen\",\"xowcRf\":\"Servicevoorwaarden\",\"6K0GjX\":\"Tekst kan moeilijk leesbaar zijn\",\"u0F1Ey\":\"Do\",\"nm3Iz/\":\"Bedankt voor uw aanwezigheid!\",\"pYwj0k\":\"Bedankt,\",\"k3IitN\":\"Dat was het\",\"KfmPRW\":\"De achtergrondkleur van de pagina. Bij gebruik van een omslagafbeelding wordt dit als overlay toegepast.\",\"MDNyJz\":\"De code verloopt over 10 minuten. Controleer je spammap als je de e-mail niet ziet.\",\"AIF7J2\":\"De valuta waarin de vaste kosten zijn gedefinieerd. Deze wordt bij het afrekenen omgerekend naar de valuta van de bestelling.\",\"MJm4Tq\":\"De valuta van de bestelling\",\"cDHM1d\":\"Het e-mailadres is gewijzigd. De deelnemer ontvangt een nieuw ticket op het bijgewerkte e-mailadres.\",\"I/NNtI\":\"De evenementlocatie\",\"tXadb0\":\"Het evenement dat je zoekt is momenteel niet beschikbaar. Mogelijk is het verwijderd, verlopen of is de URL onjuist.\",\"5fPdZe\":\"De eerste datum vanaf wanneer dit schema wordt gegenereerd.\",\"EBzPwC\":\"Het volledige evenementadres\",\"sxKqBm\":\"Het volledige bestellingsbedrag wordt terugbetaald naar de oorspronkelijke betalingsmethode van de klant.\",\"KgDp6G\":\"De link die u probeert te openen is verlopen of niet meer geldig. Controleer uw e-mail voor een bijgewerkte link om uw bestelling te beheren.\",\"5OmEal\":\"De taal van de klant\",\"Np4eLs\":[\"Het maximum is \",[\"MAX_PREVIEW\"],\" sessies. Verklein het datumbereik, de frequentie of het aantal sessies per dag.\"],\"sYLeDq\":\"De organisator die je zoekt is niet gevonden. De pagina is mogelijk verplaatst, verwijderd of de URL is onjuist.\",\"PCr4zw\":\"De overschrijving wordt vastgelegd in het audit-log van de bestelling.\",\"C4nQe5\":\"De platformkosten worden toegevoegd aan de ticketprijs. Kopers betalen meer, maar u ontvangt de volledige ticketprijs.\",\"HxxXZO\":\"De primaire merkkleur die wordt gebruikt voor knoppen en accenten\",\"z0KrIG\":\"De geplande tijd is vereist\",\"EWErQh\":\"De geplande tijd moet in de toekomst liggen\",\"UNd0OU\":[\"De sessie voor \\\"\",[\"title\"],\"\\\" die oorspronkelijk gepland stond voor \",[\"0\"],\" is verzet.\"],\"DEcpfp\":\"Het template body bevat ongeldige Liquid syntax. Corrigeer het en probeer opnieuw.\",\"injXD7\":\"Het BTW-nummer kon niet worden gevalideerd. Controleer het nummer en probeer het opnieuw.\",\"A4UmDy\":\"Theater\",\"tDwYhx\":\"Thema en kleuren\",\"O7g4eR\":\"Er zijn geen aankomende data voor dit evenement\",\"HrIl0p\":[\"Er is geen check-in lijst specifiek voor deze datum. De lijst \\\"\",[\"0\"],\"\\\" cheeckt deelnemers in voor elke datum — personeel dat een ticket voor een andere datum scant, slaagt nog steeds.\"],\"dt3TwA\":\"Dit zijn de standaardprijzen en -aantallen voor alle data. Verkoopdata op prijsklassen gelden globaal. Je kunt prijzen en aantallen voor afzonderlijke data overschrijven op de <0>Sessieplanning-pagina.\",\"062KsE\":\"Deze gegevens worden alleen weergegeven op het ticket en het besteloverzicht van de deelnemer voor deze datum.\",\"5Eu+tn\":\"Deze gegevens worden alleen weergegeven als de bestelling succesvol is afgerond.\",\"jQjwR+\":\"Deze gegevens vervangen elke bestaande locatie op de betreffende sessies en worden weergegeven op de tickets van bezoekers.\",\"QP3gP+\":\"Deze instellingen zijn alleen van toepassing op gekopieerde insluitcode en worden niet opgeslagen.\",\"HirZe8\":\"Deze sjablonen worden gebruikt als standaard voor alle evenementen in uw organisatie. Individuele evenementen kunnen deze sjablonen overschrijven met hun eigen aangepaste versies.\",\"lzAaG5\":\"Deze sjablonen overschrijven de organisator-standaarden alleen voor dit evenement. Als hier geen aangepaste sjabloon is ingesteld, wordt in plaats daarvan de organisatorsjabloon gebruikt.\",\"UlykKR\":\"Derde\",\"wkP5FM\":\"Dit geldt voor elke overeenkomende datum in het evenement, inclusief data die momenteel niet zichtbaar zijn. Deelnemers die op een van die data zijn ingeschreven, zijn bereikbaar via de berichtopsteller zodra de update is voltooid.\",\"SOmGDa\":\"Deze check-in lijst is gekoppeld aan een sessie die is geannuleerd, dus kan deze niet meer worden gebruikt voor check-ins.\",\"XBNC3E\":\"Deze code wordt gebruikt om verkopen bij te houden. Alleen letters, cijfers, streepjes en underscores toegestaan.\",\"AaP0M+\":\"Deze kleurencombinatie kan moeilijk leesbaar zijn voor sommige gebruikers\",\"o1phK/\":[\"Deze datum heeft \",[\"orderCount\"],\" bestelling(en) die worden beïnvloed.\"],\"F/UtGt\":\"Deze datum is geannuleerd. Je kunt deze nog steeds verwijderen om hem definitief te verwijderen.\",\"BLZ7pX\":\"Deze datum ligt in het verleden. De datum wordt aangemaakt, maar is niet zichtbaar voor deelnemers onder aankomende data.\",\"7IIY0z\":\"Deze datum is gemarkeerd als uitverkocht.\",\"bddWMP\":\"Deze datum is niet meer beschikbaar. Selecteer een andere datum.\",\"RzEvf5\":\"Dit evenement is afgelopen\",\"YClrdK\":\"Dit evenement is nog niet gepubliceerd\",\"dFJnia\":\"Dit is de naam van je organisator die aan je gebruikers wordt getoond.\",\"vt7jiq\":\"Dit is de enige keer dat het ondertekeningsgeheim wordt getoond. Kopieer het nu en bewaar het veilig.\",\"L7dIM7\":\"Deze link is ongeldig of verlopen.\",\"MR5ygV\":\"Deze link is niet meer geldig\",\"9LEqK0\":\"Deze naam is zichtbaar voor eindgebruikers\",\"QdUMM9\":\"Deze sessie is vol\",\"j5FdeA\":\"Deze bestelling wordt verwerkt.\",\"sjNPMw\":\"Deze bestelling is verlaten. U kunt op elk moment een nieuwe bestelling starten.\",\"OhCesD\":\"Deze bestelling is geannuleerd. Je kunt op elk moment een nieuwe bestelling plaatsen.\",\"lyD7rQ\":\"Dit organisatorprofiel is nog niet gepubliceerd\",\"9b5956\":\"Dit voorbeeld toont hoe uw e-mail eruit ziet met voorbeeldgegevens. Werkelijke e-mails gebruiken echte waarden.\",\"uM9Alj\":\"Dit product is uitgelicht op de evenementpagina\",\"RqSKdX\":\"Dit product is uitverkocht\",\"W12OdJ\":\"Dit rapport is alleen voor informatieve doeleinden. Raadpleeg altijd een belastingprofessional voordat u deze gegevens gebruikt voor boekhoudkundige of fiscale doeleinden. Controleer met uw Stripe-dashboard aangezien Hi.Events mogelijk historische gegevens mist.\",\"0Ew0uk\":\"Dit ticket is net gescand. Wacht even voordat u opnieuw scant.\",\"FYXq7k\":[\"Dit heeft invloed op \",[\"loadedAffectedCount\"],\" datum/data.\"],\"kvpxIU\":\"Dit wordt gebruikt voor meldingen en communicatie met je gebruikers.\",\"rhsath\":\"Dit is niet zichtbaar voor klanten, maar helpt je de affiliate te identificeren.\",\"hV6FeJ\":\"Doorstroom\",\"+FjWgX\":\"Do\",\"kkDQ8m\":\"Donderdag\",\"0GSPnc\":\"Ticketontwerp\",\"EZC/Cu\":\"Ticketontwerp succesvol opgeslagen\",\"bbslmb\":\"Ticket ontwerper\",\"1BPctx\":\"Ticket voor\",\"bgqf+K\":\"E-mail van tickethouder\",\"oR7zL3\":\"Naam van tickethouder\",\"HGuXjF\":\"Tickethouders\",\"CMUt3Y\":\"Tickethouders\",\"awHmAT\":\"Ticket-ID\",\"6czJik\":\"Ticket Logo\",\"OkRZ4Z\":\"Ticket Naam\",\"t79rDv\":\"Ticket niet gevonden\",\"6tmWch\":\"Ticket of product\",\"1tfWrD\":\"Ticketvoorbeeld voor\",\"KnjoUA\":\"Ticketprijs\",\"tGCY6d\":\"Ticket Prijs\",\"pGZOcL\":\"Ticket succesvol opnieuw verzonden\",\"o02GZM\":\"De ticketverkoop voor dit evenement is beëindigd\",\"8jLPgH\":\"Tickettype\",\"X26cQf\":\"Ticket URL\",\"8qsbZ5\":\"Ticketing & verkoop\",\"zNECqg\":\"tickets\",\"6GQNLE\":\"Tickets\",\"NRhrIB\":\"Tickets en producten\",\"OrWHoZ\":\"Tickets worden automatisch aangeboden aan klanten op de wachtlijst wanneer er capaciteit beschikbaar komt.\",\"EUnesn\":\"Tickets beschikbaar\",\"AGRilS\":\"Verkochte Tickets\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Tijd\",\"dMtLDE\":\"tot\",\"/jQctM\":\"Aan\",\"tiI71C\":\"Om uw limieten te verhogen, neem contact met ons op via\",\"ecUA8p\":\"Vandaag\",\"W428WC\":\"Kolommen schakelen\",\"BRMXj0\":\"Morgen\",\"UBSG1X\":\"Top organisatoren (Laatste 14 dagen)\",\"3sZ0xx\":\"Totaal Accounts\",\"EaAPbv\":\"Totaal betaald bedrag\",\"SMDzqJ\":\"Totaal deelnemers\",\"orBECM\":\"Totaal geïnd\",\"k5CU8c\":\"Totaal inschrijvingen\",\"4B7oCp\":\"Totale kosten\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Totaal Gebruikers\",\"oJjplO\":\"Totaal weergaven\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Volg accountgroei en prestaties per attributiebron\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Waar als offline betaling\",\"9GsDR2\":\"Waar als betaling in behandeling\",\"GUA0Jy\":\"Probeer een andere zoekterm of filter\",\"2P/OWN\":\"Probeer je filters aan te passen om meer data te zien.\",\"ouM5IM\":\"Probeer een ander e-mailadres\",\"3DZvE7\":\"Probeer Hi.Events Gratis\",\"7P/9OY\":\"Di\",\"vq2WxD\":\"Di\",\"G3myU+\":\"Dinsdag\",\"Kz91g/\":\"Turks\",\"GdOhw6\":\"Geluid uitschakelen\",\"KUOhTy\":\"Geluid inschakelen\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Typ \\\"verwijderen\\\" om te bevestigen\",\"XxecLm\":\"Type ticket\",\"IrVSu+\":\"Kan product niet dupliceren. Controleer uw gegevens\",\"Vx2J6x\":\"Kan deelnemer niet ophalen\",\"h0dx5e\":\"Kan niet aan de wachtlijst worden toegevoegd\",\"DaE0Hg\":\"Deelnemersdetails kunnen niet worden geladen.\",\"GlnD5Y\":\"Kan producten voor deze datum niet laden. Probeer het opnieuw.\",\"17VbmV\":\"Kan check-in niet ongedaan maken\",\"n57zCW\":\"Niet-toegewezen accounts\",\"9uI/rE\":\"Ongedaan maken\",\"b9SN9q\":\"Unieke bestelreferentie\",\"Ef7StM\":\"Onbekend\",\"ZBAScj\":\"Onbekende deelnemer\",\"MEIAzV\":\"Naamloos\",\"K6L5Mx\":\"Naamloze locatie\",\"X13xGn\":\"Niet vertrouwd\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Affiliate bijwerken\",\"59qHrb\":\"Capaciteit bijwerken\",\"Gaem9v\":\"Naam en beschrijving van evenement bijwerken\",\"7EhE4k\":\"Label bijwerken\",\"NPQWj8\":\"Locatie bijwerken\",\"75+lpR\":[\"Update: \",[\"subjectTitle\"],\" — wijzigingen in planning\"],\"UOGHdA\":[\"Update: \",[\"subjectTitle\"],\" — sessietijd gewijzigd\"],\"ogoTrw\":[[\"count\"],\" datum/data bijgewerkt\"],\"dDuona\":[\"Capaciteit bijgewerkt voor \",[\"count\"],\" datum/data\"],\"FT3LSc\":[\"Label bijgewerkt voor \",[\"count\"],\" datum/data\"],\"8EcY1g\":[\"Locatie bijgewerkt voor \",[\"count\"],\" sessie(s)\"],\"gJQsLv\":\"Upload een omslagafbeelding voor je organisator\",\"4kEGqW\":\"Upload een logo voor je organisator\",\"lnCMdg\":\"Afbeelding uploaden\",\"29w7p6\":\"Afbeelding uploaden...\",\"HtrFfw\":\"URL is vereist\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB-scanner actief\",\"dyTklH\":\"USB-scanner gepauzeerd\",\"OHJXlK\":\"Gebruik <0>Liquid-templating om uw e-mails te personaliseren\",\"g0WJMu\":\"Lijst voor alle data gebruiken\",\"0k4cdb\":\"Gebruik bestelgegevens voor alle deelnemers. Namen en e-mailadressen van deelnemers komen overeen met de informatie van de koper.\",\"MKK5oI\":\"De lijst voor alle data gebruiken of een lijst voor deze datum aanmaken?\",\"bA31T4\":\"Gebruik de gegevens van de koper voor alle deelnemers\",\"rnoQsz\":\"Gebruikt voor randen, accenten en QR-code styling\",\"BV4L/Q\":\"UTM-analyse\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Uw BTW-nummer valideren...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Btw-nummer\",\"pnVh83\":\"BTW-nummer\",\"CabI04\":\"BTW-nummer mag geen spaties bevatten\",\"PMhxAR\":\"BTW-nummer moet beginnen met een landcode van 2 letters gevolgd door 8-15 alfanumerieke tekens (bijv. NL123456789B01)\",\"gPgdNV\":\"BTW-nummer succesvol gevalideerd\",\"RUMiLy\":\"Validatie van BTW-nummer is mislukt\",\"vqji3Y\":\"Validatie van BTW-nummer is mislukt. Controleer uw BTW-nummer.\",\"8dENF9\":\"BTW op kosten\",\"ZutOKU\":\"BTW-tarief\",\"+KJZt3\":\"Btw-geregistreerd\",\"Nfbg76\":\"BTW-instellingen succesvol opgeslagen\",\"UvYql/\":\"BTW-instellingen opgeslagen. We valideren uw BTW-nummer op de achtergrond.\",\"bXn1Jz\":\"Btw-instellingen bijgewerkt\",\"tJylUv\":\"BTW-behandeling voor platformkosten\",\"FlGprQ\":\"BTW-behandeling voor platformkosten: EU BTW-geregistreerde bedrijven kunnen de verleggingsregeling gebruiken (0% - Artikel 196 van BTW-richtlijn 2006/112/EG). Niet-BTW-geregistreerde bedrijven worden Ierse BTW van 23% in rekening gebracht.\",\"516oLj\":\"BTW-validatieservice tijdelijk niet beschikbaar\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"Btw: niet geregistreerd\",\"AdWhjZ\":\"Verificatiecode\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Geverifieerd\",\"wCKkSr\":\"Verifieer e-mail\",\"/IBv6X\":\"Verifieer je e-mailadres\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Verifiëren...\",\"fROFIL\":\"Vietnamees\",\"p5nYkr\":\"Alles bekijken\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Bekijk alle mogelijkheden\",\"RnvnDc\":\"Bekijk alle berichten verzonden op het platform\",\"+WFMis\":\"Bekijk en download rapporten voor al uw evenementen. Alleen voltooide bestellingen zijn inbegrepen.\",\"c7VN/A\":\"Antwoorden bekijken\",\"SZw9tS\":\"Details bekijken\",\"9+84uW\":[\"Details van \",[\"0\"],\" \",[\"1\"],\" bekijken\"],\"FCVmuU\":\"Bekijk evenement\",\"c6SXHN\":\"Evenementpagina bekijken\",\"n6EaWL\":\"Logboeken bekijken\",\"OaKTzt\":\"Bekijk kaart\",\"zNZNMs\":\"Bericht bekijken\",\"67OJ7t\":\"Bestelling Bekijken\",\"tKKZn0\":\"Bekijk bestelgegevens\",\"KeCXJu\":\"Bekijk bestellingsdetails, geef terugbetalingen en verstuur bevestigingen opnieuw.\",\"9jnAcN\":\"Bekijk organisator-homepage\",\"1J/AWD\":\"Ticket Bekijken\",\"N9FyyW\":\"Bekijk, bewerk en exporteer je geregistreerde deelnemers.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Wachtend\",\"quR8Qp\":\"Wachten op betaling\",\"KrurBH\":\"Wachten op scan…\",\"u0n+wz\":\"Wachtlijst\",\"3RXFtE\":\"Wachtlijst ingeschakeld\",\"TwnTPy\":\"Wachtlijstaanbod verlopen\",\"NzIvKm\":\"Wachtlijst geactiveerd\",\"aUi/Dz\":\"Waarschuwing: dit is de standaardsysteemconfiguratie. Wijzigingen zijn van invloed op alle accounts die geen specifieke configuratie toegewezen hebben.\",\"qeygIa\":\"Wo\",\"aT/44s\":\"We konden die Stripe-verbinding niet kopiëren. Probeer het opnieuw.\",\"RRZDED\":\"We konden geen bestellingen vinden die gekoppeld zijn aan dit e-mailadres.\",\"2RZK9x\":\"We konden de bestelling die u zoekt niet vinden. De link is mogelijk verlopen of de bestelgegevens zijn gewijzigd.\",\"nefMIK\":\"We konden het ticket dat u zoekt niet vinden. De link is mogelijk verlopen of de ticketgegevens zijn gewijzigd.\",\"miysJh\":\"We konden deze bestelling niet vinden. Mogelijk is deze verwijderd.\",\"ADsQ23\":\"We konden Stripe nu niet bereiken. Probeer het zo opnieuw.\",\"HJKdzP\":\"Er is een probleem opgetreden bij het laden van deze pagina. Probeer het opnieuw.\",\"jegrvW\":\"We werken samen met Stripe om uitbetalingen rechtstreeks naar je bankrekening te sturen.\",\"IfN2Qo\":\"We raden een vierkant logo aan met minimale afmetingen van 200x200px\",\"wJzo/w\":\"We raden een formaat van 400x400 px aan, met een maximale bestandsgrootte van 5 MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"We gebruiken cookies om te begrijpen hoe de site wordt gebruikt en om je ervaring te verbeteren.\",\"x8rEDQ\":\"We konden uw BTW-nummer niet valideren na meerdere pogingen. We blijven het op de achtergrond proberen. Kom later terug.\",\"iy+M+c\":[\"We laten je per e-mail weten als er een plek beschikbaar komt voor \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Na het opslaan openen we een berichtopsteller met een vooraf ingevuld sjabloon. Jij controleert en verstuurt het — er wordt niets automatisch verzonden.\",\"q1BizZ\":\"We sturen je tickets naar dit e-mailadres\",\"ZOmUYW\":\"We valideren uw BTW-nummer op de achtergrond. Als er problemen zijn, laten we het u weten.\",\"LKjHr4\":[\"We hebben wijzigingen aangebracht in de planning voor \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" met invloed op \",[\"affectedCount\"],\" sessie(s).\"],\"Fq/Nx7\":\"We hebben een 5-cijferige verificatiecode verzonden naar:\",\"GdWB+V\":\"Webhook succesvol aangemaakt\",\"2X4ecw\":\"Webhook succesvol verwijderd\",\"ndBv0v\":\"Webhook-integraties\",\"CThMKa\":\"Webhook logboeken\",\"I0adYQ\":\"Webhook-ondertekeningsgeheim\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook verzendt geen meldingen\",\"FSaY52\":\"Webhook stuurt meldingen\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Wo\",\"VAcXNz\":\"Woensdag\",\"64X6l4\":\"week\",\"4XSc4l\":\"Wekelijks\",\"IAUiSh\":\"weken\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Welkom terug\",\"QDWsl9\":[\"Welkom bij \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Welkom bij \",[\"0\"],\", hier is een overzicht van al je evenementen\"],\"DDbx7K\":\"Welzijn\",\"ywRaYa\":\"Hoe laat?\",\"FaSXqR\":\"Wat voor type evenement?\",\"0WyYF4\":\"Wat niet-aangemeld personeel kan zien\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Wanneer een check-in wordt verwijderd\",\"RPe6bE\":\"Wanneer een datum van een terugkerend evenement wordt geannuleerd\",\"Gmd0hv\":\"Wanneer een nieuwe deelnemer wordt aangemaakt\",\"zyIyPe\":\"Wanneer een nieuw evenement wordt aangemaakt\",\"Lc18qn\":\"Wanneer een nieuwe order wordt aangemaakt\",\"dfkQIO\":\"Wanneer een nieuw product wordt gemaakt\",\"8OhzyY\":\"Wanneer een product wordt verwijderd\",\"tRXdQ9\":\"Wanneer een product wordt bijgewerkt\",\"9L9/28\":\"Wanneer een product uitverkocht is, kunnen klanten zich op een wachtlijst plaatsen om op de hoogte te worden gehouden wanneer er plekken beschikbaar komen.\",\"Q7CWxp\":\"Wanneer een deelnemer wordt geannuleerd\",\"IuUoyV\":\"Wanneer een deelnemer is ingecheckt\",\"nBVOd7\":\"Wanneer een deelnemer wordt bijgewerkt\",\"t7cuMp\":\"Wanneer een evenement wordt gearchiveerd\",\"gtoSzE\":\"Wanneer een evenement wordt bijgewerkt\",\"ny2r8d\":\"Wanneer een bestelling wordt geannuleerd\",\"c9RYbv\":\"Wanneer een bestelling is gemarkeerd als betaald\",\"ejMDw1\":\"Wanneer een bestelling wordt terugbetaald\",\"fVPt0F\":\"Wanneer een bestelling wordt bijgewerkt\",\"bcYlvb\":\"Wanneer check-in sluit\",\"XIG669\":\"Wanneer check-in opent\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"Indien ingeschakeld, kunnen nieuwe evenementen deelnemers hun eigen ticketgegevens beheren via een beveiligde link. Dit kan per evenement worden overschreven.\",\"blXLKj\":\"Indien ingeschakeld, tonen nieuwe evenementen een marketing opt-in selectievakje tijdens het afrekenen. Dit kan per evenement worden overschreven.\",\"Kj0Txn\":\"Indien ingeschakeld, worden er geen applicatiekosten in rekening gebracht bij Stripe Connect-transacties. Gebruik dit voor landen waar applicatiekosten niet worden ondersteund.\",\"tMqezN\":\"Of terugbetalingen worden verwerkt\",\"uchB0M\":\"Widget voorbeeld\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Schrijf hier je bericht...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"jaar\",\"zkWmBh\":\"Jaarlijks\",\"+BGee5\":\"jaren\",\"X/azM1\":\"Ja - Ik heb een geldig EU BTW-registratienummer\",\"Tz5oXG\":\"Ja, annuleer mijn bestelling\",\"QlSZU0\":[\"U imiteert <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"U geeft een gedeeltelijke terugbetaling uit. De klant krijgt \",[\"0\"],\" \",[\"1\"],\" terugbetaald.\"],\"o7LgX6\":\"U kunt extra servicekosten en belastingen configureren in uw accountinstellingen.\",\"rj3A7+\":\"Je kunt dit later voor afzonderlijke data overschrijven.\",\"paWwQ0\":\"U kunt tickets indien nodig nog steeds handmatig aanbieden.\",\"jTDzpA\":\"U kunt de laatste actieve organisator van uw account niet archiveren.\",\"5VGIlq\":\"U heeft uw berichtenlimiet bereikt.\",\"casL1O\":\"Je hebt belastingen en kosten toegevoegd aan een Gratis product. Wilt u deze verwijderen?\",\"9jJNZY\":\"Je moet je verantwoordelijkheden erkennen voordat je opslaat\",\"pCLes8\":\"U moet akkoord gaan met het ontvangen van berichten\",\"FVTVBy\":\"Je moet je e-mailadres verifiëren voordat je de status van de organisator kunt bijwerken.\",\"ze4bi/\":\"Je moet ten minste één sessie aanmaken voordat je deelnemers aan dit terugkerende evenement kunt toevoegen.\",\"w65ZgF\":\"U moet uw account-e-mailadres verifiëren voordat u e-mailsjablonen kunt wijzigen.\",\"FRl8Jv\":\"U moet het e-mailadres van uw account verifiëren voordat u berichten kunt verzenden.\",\"88cUW+\":\"U ontvangt\",\"O6/3cu\":\"In de volgende stap kun je data, planningen en herhalingsregels instellen.\",\"zKAheG\":\"Je wijzigt sessietijden\",\"MNFIxz\":[\"Je gaat naar \",[\"0\"],\"!\"],\"qGZz0m\":\"Je staat op de wachtlijst!\",\"/5HL6k\":\"Je hebt een plek aangeboden gekregen!\",\"gbjFFH\":\"Je hebt de sessietijd gewijzigd\",\"p/Sa0j\":\"Uw account heeft berichtenlimieten. Om uw limieten te verhogen, neem contact met ons op via\",\"x/xjzn\":\"Je affiliates zijn succesvol geëxporteerd.\",\"TF37u6\":\"Je deelnemers zijn succesvol geëxporteerd.\",\"79lXGw\":\"Je check-in lijst is succesvol aangemaakt. Deel de onderstaande link met je check-in personeel.\",\"BnlG9U\":\"Uw huidige bestelling gaat verloren.\",\"nBqgQb\":\"Uw e-mail\",\"GG1fRP\":\"Je evenement is live!\",\"ifRqmm\":\"Je bericht is succesvol verzonden!\",\"0/+Nn9\":\"Uw berichten verschijnen hier\",\"/Rj5P4\":\"Jouw naam\",\"PFjJxY\":\"Uw nieuwe wachtwoord moet minimaal 8 tekens lang zijn.\",\"gzrCuN\":\"Uw bestelgegevens zijn bijgewerkt. Er is een bevestigingsmail verzonden naar het nieuwe e-mailadres.\",\"naQW82\":\"Uw bestelling is geannuleerd.\",\"bhlHm/\":\"Je bestelling wacht op betaling\",\"XeNum6\":\"Je bestellingen zijn succesvol geëxporteerd.\",\"Xd1R1a\":\"Adres van je organisator\",\"WWYHKD\":\"Uw betaling is beveiligd met encryptie op bankniveau\",\"5b3QLi\":\"Uw plan\",\"N4Zkqc\":\"Je opgeslagen datumfilter is niet meer beschikbaar — alle data worden weergegeven.\",\"FNO5uZ\":\"Je ticket is nog steeds geldig — er is geen actie nodig tenzij de nieuwe tijd je niet uitkomt. Reageer op deze e-mail als je vragen hebt.\",\"CnZ3Ou\":\"Je tickets zijn bevestigd.\",\"EmFsMZ\":\"Uw BTW-nummer staat in de wachtrij voor validatie\",\"QBlhh4\":\"Uw BTW-nummer wordt gevalideerd wanneer u opslaat\",\"fT9VLt\":\"Je wachtlijstaanbod is verlopen en we konden je bestelling niet voltooien. Plaats je opnieuw op de wachtlijst om op de hoogte te worden gehouden wanneer er meer plekken beschikbaar komen.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/nl.po b/frontend/src/locales/nl.po index ca71a8a9c7..0f8fab05f5 100644 --- a/frontend/src/locales/nl.po +++ b/frontend/src/locales/nl.po @@ -61,7 +61,7 @@ msgstr "{0} <0>uitgevinkt succesvol" msgid "{0} Active Webhooks" msgstr "{0} Actieve webhooks" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} beschikbaar" @@ -79,7 +79,7 @@ msgstr "nog {0}" msgid "{0} logo" msgstr "{0} logo" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{0} van {1} plaatsen zijn bezet." @@ -91,7 +91,7 @@ msgstr "{0} organisatoren" msgid "{0} spots left" msgstr "Nog {0} plaatsen" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} tickets" @@ -115,7 +115,7 @@ msgstr "{appName} logo" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} deelnemers zijn ingeschreven voor deze sessie." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} van {totalCount} beschikbaar" @@ -123,7 +123,7 @@ msgstr "{availableCount} van {totalCount} beschikbaar" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} ingecheckt" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -152,7 +152,7 @@ msgstr "{eventCount} evenementen" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} uren, {minutes} minuten en {seconds} seconden" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "{loadedAffectedAttendees} deelnemers zijn ingeschreven over de betrokken sessies." @@ -164,11 +164,11 @@ msgstr "{minutes} minuten en {seconds} seconden" msgid "{organizerName}'s first event" msgstr "Eerste evenement van {organizerName}" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} tickettypen" @@ -231,7 +231,7 @@ msgstr "0 minuten en 0 seconden" msgid "1 Active Webhook" msgstr "1 Actieve webhook" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "1 deelnemer is ingeschreven over de betrokken sessies." @@ -239,35 +239,35 @@ msgstr "1 deelnemer is ingeschreven over de betrokken sessies." msgid "1 attendee is registered for this session." msgstr "1 deelnemer is ingeschreven voor deze sessie." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 dag na de einddatum" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 dag na de startdatum" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 dag voor het evenement" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 uur voor het evenement" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 ticket" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 tickettype" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 week voor het evenement" @@ -302,7 +302,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "Een annuleringsmelding is verzonden naar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "een wijziging in de duur" @@ -322,7 +322,7 @@ msgstr "Een Dropdown-ingang laat slechts één selectie toe" msgid "A fee, like a booking fee or a service fee" msgstr "Een vergoeding, zoals reserveringskosten of servicekosten" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -350,7 +350,7 @@ msgstr "Een promotiecode zonder korting kan worden gebruikt om verborgen product msgid "A Radio option has multiple options but only one can be selected." msgstr "Een Radio-optie heeft meerdere opties, maar er kan er maar één worden geselecteerd." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "een verschuiving in begin-/eindtijden" @@ -466,7 +466,7 @@ msgstr "Account succesvol bijgewerkt" msgid "Accounts" msgstr "Accounts" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Actie vereist: BTW-informatie nodig" @@ -494,10 +494,10 @@ msgstr "Activeringsdatum" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -517,11 +517,15 @@ msgstr "Actieve betaalmethoden" msgid "Activity" msgstr "Activiteit" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Datum toevoegen" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -557,7 +561,7 @@ msgstr "Opmerkingen over de bestelling toevoegen..." msgid "Add at least one time" msgstr "Voeg ten minste één tijd toe" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Voeg verbindingsgegevens toe voor het online evenement." @@ -573,15 +577,19 @@ msgstr "Datum toevoegen" msgid "Add Dates" msgstr "Data toevoegen" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Beschrijving toevoegen" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -627,7 +635,7 @@ msgstr "Vraag toevoegen" msgid "Add Tax or Fee" msgstr "Belasting of toeslag toevoegen" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Voeg deze deelnemer toch toe (capaciteit overschrijven)" @@ -635,8 +643,8 @@ msgstr "Voeg deze deelnemer toch toe (capaciteit overschrijven)" msgid "Add this event to your calendar" msgstr "Voeg dit evenement toe aan je agenda" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Tickets toevoegen" @@ -650,7 +658,7 @@ msgstr "Niveau toevoegen" msgid "Add to Calendar" msgstr "Toevoegen aan kalender" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Voeg trackingpixels toe aan je openbare evenementpagina's en organisatorhomepage. Er wordt een cookie-toestemmingsbanner getoond aan bezoekers wanneer tracking actief is." @@ -686,12 +694,12 @@ msgid "Address line 1" msgstr "Adresregel 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Adresregel 1" @@ -700,23 +708,23 @@ msgid "Address line 2" msgstr "Adresregel 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Adresregel 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Admin" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Beheerderstoegang vereist" @@ -726,7 +734,7 @@ msgstr "Beheerderstoegang vereist" msgid "Admin Dashboard" msgstr "Beheerders Dashboard" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Admin-gebruikers hebben volledige toegang tot evenementen en accountinstellingen." @@ -777,7 +785,7 @@ msgstr "Affiliates geëxporteerd" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Affiliates helpen je om verkopen van partners en influencers bij te houden. Maak affiliatecodes aan en deel ze om prestaties te monitoren." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "alle" @@ -791,19 +799,19 @@ msgid "All Archived Events" msgstr "Alle gearchiveerde evenementen" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Alle deelnemers" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "Alle deelnemers van de geselecteerde sessies" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Alle deelnemers aan dit evenement" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Alle deelnemers van deze sessie" @@ -839,12 +847,12 @@ msgstr "Alle mislukte taken verwijderd" msgid "All jobs queued for retry" msgstr "Alle taken in wachtrij voor opnieuw proberen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Alle overeenkomende data" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Alle sessies" @@ -898,7 +906,7 @@ msgstr "Heeft u al een account? <0>{0}" msgid "Already in" msgstr "Al binnen" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Al terugbetaald" @@ -906,11 +914,11 @@ msgstr "Al terugbetaald" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Gebruik je Stripe al bij een andere organisator? Hergebruik die verbinding." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Deze bestelling ook annuleren" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Deze bestelling ook terugbetalen" @@ -933,7 +941,7 @@ msgstr "Bedrag" msgid "Amount Paid" msgstr "Betaald bedrag" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Betaald bedrag ({0})" @@ -953,7 +961,7 @@ msgstr "Er is een fout opgetreden tijdens het laden van de pagina" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Een optioneel bericht om weer te geven op het uitgelichte product, bijv. \"Snel uitverkocht 🔥\" of \"Beste waarde\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Er is een onverwachte fout opgetreden." @@ -989,7 +997,7 @@ msgstr "Vragen van producthouders worden naar dit e-mailadres gestuurd. Dit e-ma msgid "Appearance" msgstr "Uiterlijk" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "toegepast" @@ -997,7 +1005,7 @@ msgstr "toegepast" msgid "Applies to {0} products" msgstr "Geldt voor {0} producten" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Van toepassing op {0} niet-geannuleerde data die momenteel op deze pagina geladen zijn." @@ -1009,7 +1017,7 @@ msgstr "Geldt voor 1 product" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Geldt voor iedereen die de check-in link opent zonder aangemeld te zijn. Aangemelde teamleden zien altijd alles." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Van toepassing op elke {0} niet-geannuleerde datum in dit evenement — inclusief data die momenteel niet geladen zijn." @@ -1017,11 +1025,11 @@ msgstr "Van toepassing op elke {0} niet-geannuleerde datum in dit evenement — msgid "Apply" msgstr "Toepassen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Wijzigingen toepassen" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Kortingscode toepassen" @@ -1029,7 +1037,7 @@ msgstr "Kortingscode toepassen" msgid "Apply this {type} to all new products" msgstr "Pas dit {type} toe op alle nieuwe producten" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Toepassen op" @@ -1045,36 +1053,35 @@ msgstr "Bericht goedkeuren" msgid "April" msgstr "April" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Archiveren" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Archief evenement" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Evenement archiveren" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Organisator archiveren" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Archiveer dit evenement om het voor het publiek te verbergen. U kunt het later herstellen." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Archiveer deze organisator. Dit archiveert ook alle evenementen van deze organisator." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Gearchiveerd" @@ -1086,15 +1093,15 @@ msgstr "Gearchiveerde organisatoren" msgid "Are you sure you want to activate this attendee?" msgstr "Weet je zeker dat je deze deelnemer wilt activeren?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Weet je zeker dat je dit evenement wilt archiveren?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Weet u zeker dat u dit evenement wilt archiveren? Het zal niet langer zichtbaar zijn voor het publiek." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Weet u zeker dat u deze organisator wilt archiveren? Dit archiveert ook alle evenementen van deze organisator." @@ -1124,7 +1131,7 @@ msgstr "Weet u zeker dat u alle mislukte taken wilt verwijderen?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Weet je zeker dat je deze affiliate wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Weet u zeker dat u deze configuratie wilt verwijderen? Dit kan van invloed zijn op accounts die deze gebruiken." @@ -1138,11 +1145,11 @@ msgstr "Weet je zeker dat je deze datum wilt verwijderen? Deze actie kan niet on msgid "Are you sure you want to delete this promo code?" msgstr "Weet je zeker dat je deze promotiecode wilt verwijderen?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Weet je zeker dat je deze sjabloon wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt en e-mails zullen terugvallen op de standaardsjabloon." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Weet je zeker dat je deze sjabloon wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt en e-mails zullen terugvallen op de organisator- of standaardsjabloon." @@ -1151,17 +1158,17 @@ msgstr "Weet je zeker dat je deze sjabloon wilt verwijderen? Deze actie kan niet msgid "Are you sure you want to delete this webhook?" msgstr "Weet je zeker dat je deze webhook wilt verwijderen?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Weet u zeker dat u wilt vertrekken?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Weet je zeker dat je dit evenement concept wilt maken? Dit maakt het evenement onzichtbaar voor het publiek" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Weet je zeker dat je dit evenement openbaar wilt maken? Hierdoor wordt het evenement zichtbaar voor het publiek" @@ -1201,15 +1208,15 @@ msgstr "Weet u zeker dat u de orderbevestiging opnieuw wilt verzenden naar {0}?" msgid "Are you sure you want to resend the ticket to {0}?" msgstr "Weet u zeker dat u het ticket opnieuw wilt verzenden naar {0}?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Weet u zeker dat u dit evenement wilt herstellen?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Weet je zeker dat je dit evenements wilt herstellen? Het zal worden hersteld als een conceptevenement." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Weet u zeker dat u deze organisator wilt herstellen?" @@ -1230,7 +1237,7 @@ msgstr "Weet je zeker dat je deze Capaciteitstoewijzing wilt verwijderen?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "Weet je zeker dat je deze Check-In lijst wilt verwijderen?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "Bent u BTW-geregistreerd in de EU?" @@ -1238,7 +1245,7 @@ msgstr "Bent u BTW-geregistreerd in de EU?" msgid "Art" msgstr "Kunst" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "Aangezien uw bedrijf gevestigd is in Ierland, is Ierse BTW van 23% automatisch van toepassing op alle platformkosten." @@ -1271,7 +1278,7 @@ msgstr "Toegewezen niveau" msgid "At least one event type must be selected" msgstr "Er moet minstens één evenement type worden geselecteerd" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Pogingen" @@ -1280,7 +1287,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Aanwezigheid en incheckpercentages voor alle evenementen" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "deelnemer" @@ -1288,7 +1294,7 @@ msgstr "deelnemer" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Deelnemer" @@ -1346,7 +1352,7 @@ msgid "Attendee Status" msgstr "Deelnemersstatus" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Bezoekerskaartje" @@ -1365,13 +1371,13 @@ msgstr "Ticket van deelnemer niet opgenomen in deze lijst" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "deelnemers" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1380,9 +1386,9 @@ msgstr "deelnemers" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Deelnemers" @@ -1394,16 +1400,16 @@ msgstr "deelnemers ingecheckt" msgid "Attendees Exported" msgstr "Geëxporteerde bezoekers" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Deelnemers geregistreerd" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Geregistreerde deelnemers" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Deelnemers met een specifiek ticket" @@ -1455,7 +1461,7 @@ msgstr "Pas de widgethoogte automatisch aan op basis van de inhoud. Wanneer uitg msgid "Available" msgstr "Beschikbaar" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Beschikbaar voor terugbetaling" @@ -1468,7 +1474,7 @@ msgid "Awaiting" msgstr "In afwachting" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "In afwachting van offline betaling" @@ -1483,7 +1489,7 @@ msgstr "Betaling open" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "Wacht op betaling" @@ -1514,14 +1520,14 @@ msgstr "Terug naar Accounts" msgid "Back to calendar" msgstr "Terug naar agenda" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Terug naar evenement" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Terug naar de evenementpagina" @@ -1549,7 +1555,7 @@ msgstr "Achtergrondkleur" msgid "Background Type" msgstr "Achtergrond Type" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1567,7 +1573,7 @@ msgstr "Gebaseerd op de algemene verkoopperiode hierboven, niet per datum" msgid "Basic Information" msgstr "Basisinformatie" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Factuuradres" @@ -1600,11 +1606,11 @@ msgstr "Ingebouwde fraudebescherming" msgid "Bulk Edit" msgstr "Bulk bewerken" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Data in bulk bewerken" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "Bulkupdate mislukt." @@ -1636,11 +1642,11 @@ msgstr "Koper betaalt" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Kopers zien een schone prijs. De platformkosten worden afgetrokken van uw uitbetaling." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "Door trackingpixels toe te voegen, erken je dat jij en dit platform gezamenlijke verwerkingsverantwoordelijken zijn voor de verzamelde gegevens. Jij bent verantwoordelijk om te zorgen voor een rechtmatige grondslag voor deze verwerking onder de geldende privacywetgeving (AVG, CCPA, enz.)." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Door verder te gaan, gaat u akkoord met de <0>{0} Servicevoorwaarden" @@ -1661,7 +1667,7 @@ msgstr "Door je te registreren ga je akkoord met onze <0>Servicevoorwaarden msgid "By ticket type" msgstr "Per tickettype" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Applicatiekosten omzeilen" @@ -1704,23 +1710,23 @@ msgid "Can't check in" msgstr "Inchecken niet mogelijk" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Annuleren" @@ -1730,7 +1736,7 @@ msgstr "Annuleren" msgid "Cancel {count} date(s)" msgstr "{count} datum/data annuleren" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Alle producten annuleren en terugzetten in de beschikbare pool" @@ -1744,7 +1750,7 @@ msgstr "Alle producten annuleren en terugzetten in de beschikbare pool" msgid "Cancel Date" msgstr "Datum annuleren" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "E-mailwijziging annuleren" @@ -1752,7 +1758,7 @@ msgstr "E-mailwijziging annuleren" msgid "Cancel order" msgstr "Bestelling annuleren" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Bestelling annuleren" @@ -1760,7 +1766,7 @@ msgstr "Bestelling annuleren" msgid "Cancel Order {0}" msgstr "Annuleer order {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "Annuleren zal alle deelnemers geassocieerd met deze bestelling annuleren en de tickets terugzetten in de beschikbare pool." @@ -1782,7 +1788,7 @@ msgstr "Annulering" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1792,7 +1798,7 @@ msgstr "Geannuleerd" msgid "Cancelled {0} date(s)" msgstr "{0} datum/data geannuleerd" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "Kan de standaardsysteemconfiguratie niet verwijderen" @@ -1826,7 +1832,7 @@ msgstr "Capaciteitsbeheer" msgid "Capacity must be 0 or greater" msgstr "Capaciteit moet 0 of hoger zijn" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "capaciteitsupdates" @@ -1834,7 +1840,7 @@ msgstr "capaciteitsupdates" msgid "Capacity Used" msgstr "Gebruikte capaciteit" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "Met categorieën kun je producten groeperen. Je kunt bijvoorbeeld een categorie hebben voor." @@ -1855,19 +1861,19 @@ msgstr "Categorie" msgid "Category Created Successfully" msgstr "Categorie succesvol aangemaakt" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Wijzigen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Duur wijzigen" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Wachtwoord wijzigen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Wijzig de deelnemerslimiet" @@ -1875,7 +1881,7 @@ msgstr "Wijzig de deelnemerslimiet" msgid "Change waitlist settings" msgstr "Wachtlijstinstellingen wijzigen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "Duur gewijzigd voor {count} datum/data" @@ -1892,15 +1898,15 @@ msgstr "Liefdadigheid" msgid "Check in" msgstr "Inchecken" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Inchecken {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Inchecken en bestelling als betaald markeren" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Alleen inchecken" @@ -1914,7 +1920,7 @@ msgstr "Uitchecken" msgid "Check out this event: {0}" msgstr "Bekijk dit evenement: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Bekijk dit evenement!" @@ -1995,7 +2001,7 @@ msgstr "Inchecklijsten" msgid "Check-In Lists" msgstr "Inchecklijsten" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Check-in navigatie" @@ -2075,11 +2081,11 @@ msgstr "Kies een kleur voor je achtergrond" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Kies een andere actie" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Kies een opgeslagen locatie om toe te passen." @@ -2109,12 +2115,12 @@ msgstr "Kies wie de platformkosten betaalt. Dit heeft geen invloed op extra kost #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Stad" @@ -2123,7 +2129,7 @@ msgstr "Stad" msgid "Clear" msgstr "Wissen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Locatie wissen — terugvallen op de standaard van het evenement" @@ -2135,7 +2141,7 @@ msgstr "Zoekopdracht wissen" msgid "Clear Search Text" msgstr "Zoektekst wissen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "Bij wissen wordt elke per-sessie overschrijving verwijderd. De betreffende sessies vallen terug op de standaardlocatie van het evenement." @@ -2155,7 +2161,7 @@ msgstr "Klik om te heropenen voor nieuwe verkoop" msgid "Click to view notes" msgstr "Klik om notities te bekijken" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "sluiten" @@ -2163,8 +2169,8 @@ msgstr "sluiten" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Sluit" @@ -2260,7 +2266,7 @@ msgstr "Binnenkort beschikbaar" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Door komma's gescheiden trefwoorden die het evenement beschrijven. Deze worden door zoekmachines gebruikt om het evenement te categoriseren en indexeren" -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Communicatievoorkeuren" @@ -2268,11 +2274,11 @@ msgstr "Communicatievoorkeuren" msgid "complete" msgstr "voltooid" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Volledige bestelling" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Volledige betaling" @@ -2281,11 +2287,11 @@ msgstr "Volledige betaling" msgid "Complete Stripe setup" msgstr "Stripe-installatie voltooien" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Voltooi je bestelling om je tickets veilig te stellen. Dit aanbod is tijdelijk, dus wacht niet te lang." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Voltooi je betaling om je tickets veilig te stellen." @@ -2294,17 +2300,17 @@ msgid "Complete your profile to join the team." msgstr "Voltooi uw profiel om deel te nemen aan het team." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Voltooid" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Afgeronde bestellingen" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Afgeronde bestellingen" @@ -2319,7 +2325,7 @@ msgid "Compose" msgstr "Opstellen" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2333,24 +2339,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Configuratie toegewezen" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Configuratie succesvol aangemaakt" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Configuratie succesvol verwijderd" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "Configuratienamen zijn zichtbaar voor eindgebruikers. Vaste kosten worden omgerekend naar de ordervaluta tegen de huidige wisselkoers." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Configuratie succesvol bijgewerkt" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Configuraties" @@ -2378,10 +2384,10 @@ msgstr "Geconfigureerde korting" msgid "Confirm" msgstr "Bevestig" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "Bevestig e-mailadres" @@ -2394,7 +2400,7 @@ msgstr "Bevestig e-mailwijziging" msgid "Confirm new password" msgstr "Bevestig nieuw wachtwoord" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Nieuw wachtwoord bevestigen" @@ -2429,16 +2435,16 @@ msgstr "E-mailadres bevestigen..." msgid "Congratulations! Your event is now visible to the public." msgstr "Gefeliciteerd! Je evenement is nu zichtbaar voor het publiek." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Streep aansluiten" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Verbind Stripe om sjabloonbewerking van e-mails in te schakelen" @@ -2446,7 +2452,7 @@ msgstr "Verbind Stripe om sjabloonbewerking van e-mails in te schakelen" msgid "Connect Stripe to enable messaging" msgstr "Verbind Stripe om berichten in te schakelen" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2454,11 +2460,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Maak verbinding met Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2494,7 +2500,7 @@ msgstr "Contact e-mail voor ondersteuning" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Ga verder" @@ -2509,7 +2515,7 @@ msgstr "Tekst doorgaan-knop" msgid "Continue Setup" msgstr "Doorgaan met instellen" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Verder naar afrekenen" @@ -2521,7 +2527,7 @@ msgstr "Ga door naar evenement aanmaken" msgid "Continue to next step" msgstr "Ga door naar de volgende stap" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Doorgaan naar betaling" @@ -2546,7 +2552,7 @@ msgstr "Wie er wanneer binnenkomt" msgid "Copied" msgstr "Gekopieerd" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Gekopieerd van boven" @@ -2592,7 +2598,7 @@ msgstr "Kopieer code" msgid "Copy customer link" msgstr "Klantlink kopiëren" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Kopieer gegevens naar eerste deelnemer" @@ -2610,7 +2616,7 @@ msgstr "Link kopiëren" msgid "Copy Link" msgstr "Link kopiëren" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Mijn gegevens kopiëren naar:" @@ -2631,7 +2637,7 @@ msgstr "URL kopiëren" msgid "Could not delete location" msgstr "Kan locatie niet verwijderen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Kon de bulkupdate niet voorbereiden." @@ -2653,13 +2659,17 @@ msgstr "Kan datum niet opslaan" msgid "Could not save location" msgstr "Kan locatie niet opslaan" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "Land" @@ -2672,6 +2682,10 @@ msgstr "Omslag" msgid "Cover Image" msgstr "Omslagafbeelding" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "Omslagafbeelding wordt bovenaan je evenementpagina weergegeven" @@ -2744,7 +2758,7 @@ msgstr "een organisator maken" msgid "Create and configure tickets and merchandise for sale." msgstr "Maak en configureer tickets en merchandise voor verkoop." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Aanwezige maken" @@ -2761,7 +2775,7 @@ msgid "Create category" msgstr "Categorie maken" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Categorie maken" @@ -2772,17 +2786,17 @@ msgstr "Categorie maken" msgid "Create Check-In List" msgstr "Check-in lijst maken" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Configuratie aanmaken" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Maak aangepaste e-mailsjablonen voor dit evenement die de organisator-standaarden overschrijven" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Maak Aangepaste Sjabloon" @@ -2794,16 +2808,16 @@ msgstr "Datum aanmaken" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Maak kortingen, toegangscodes voor verborgen tickets en speciale aanbiedingen." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Evenement creëren" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Aanmaken voor deze datum" @@ -2850,7 +2864,7 @@ msgstr "Creëer belasting of heffing" msgid "Create Ticket or Product" msgstr "Maak ticket of product aan" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2873,6 +2887,10 @@ msgstr "Maak je evenement aan" msgid "Create your first event" msgstr "Maak je eerste evenement" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2916,7 +2934,7 @@ msgstr "CTA label is verplicht" msgid "Currency" msgstr "Valuta" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Huidig wachtwoord" @@ -2932,7 +2950,7 @@ msgstr "Momenteel beschikbaar voor aankoop" msgid "Custom branding" msgstr "Aangepaste branding" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Aangepaste datum en tijd" @@ -2958,7 +2976,7 @@ msgstr "Aangepaste vragen" msgid "Custom Range" msgstr "Aangepast bereik" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Aangepaste sjabloon" @@ -2971,7 +2989,7 @@ msgstr "Klant" msgid "Customer link copied to clipboard" msgstr "Klantlink gekopieerd naar klembord" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "Klant ontvangt een e-mail ter bevestiging van de terugbetaling" @@ -2991,11 +3009,15 @@ msgstr "Achternaam van klant" msgid "Customers" msgstr "Klanten" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "De e-mail- en meldingsinstellingen voor dit evenement aanpassen" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Pas de e-mails aan die naar uw klanten worden verzonden met behulp van Liquid-sjablonen. Deze sjablonen worden gebruikt als standaard voor alle evenementen in uw organisatie." @@ -3028,6 +3050,10 @@ msgstr "Pas de tekst op de knop 'Doorgaan' aan" msgid "Customize your email template using Liquid templating" msgstr "Pas uw e-mailsjabloon aan met Liquid-sjablonen" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Pas het uiterlijk van je organisatorpagina aan" @@ -3080,7 +3106,7 @@ msgstr "Donker" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Dashboard" @@ -3101,7 +3127,7 @@ msgid "Date & Time" msgstr "Datum en tijd" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Datum annulering" @@ -3209,12 +3235,12 @@ msgstr "Standaardcapaciteit per datum" msgid "Default Fee Handling" msgstr "Standaard kostenafhandeling" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Standaardsjabloon wordt gebruikt" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "verwijderen" @@ -3268,8 +3294,8 @@ msgstr "Code verwijderen" msgid "Delete Date" msgstr "Datum verwijderen" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Evenement verwijderen" @@ -3286,8 +3312,8 @@ msgstr "Taak verwijderen" msgid "Delete location" msgstr "Locatie verwijderen" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Organisator verwijderen" @@ -3295,7 +3321,7 @@ msgstr "Organisator verwijderen" msgid "Delete Permanently" msgstr "Definitief verwijderen" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Sjabloon Verwijderen" @@ -3320,7 +3346,7 @@ msgstr "{0} datum/data verwijderd" msgid "Description" msgstr "Beschrijving" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3379,15 +3405,15 @@ msgstr "Korting in {0}" msgid "Discount Type" msgstr "Korting Type" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Sluiten" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Dit bericht negeren" @@ -3442,7 +3468,7 @@ msgstr "CSV downloaden" msgid "Download invoice" msgstr "Factuur downloaden" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Factuur downloaden" @@ -3455,14 +3481,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Download verkoop-, deelnemer- en financiële rapporten voor alle voltooide bestellingen." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "Factuur downloaden" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Concept" @@ -3470,7 +3495,7 @@ msgstr "Concept" msgid "Dropdown selection" msgstr "Dropdown selectie" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "Vanwege het hoge risico op spam moet u een Stripe-account verbinden voordat u e-mailsjablonen kunt wijzigen. Dit is om ervoor te zorgen dat alle evenementorganisatoren geverifieerd en verantwoordelijk zijn." @@ -3491,7 +3516,7 @@ msgstr "Dupliceren" msgid "Duplicate Date" msgstr "Datum dupliceren" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Dupliceer evenement" @@ -3509,7 +3534,7 @@ msgstr "Dupliceer opties" msgid "Duplicate Product" msgstr "Dupliceer product" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "Duur moet ten minste 1 minuut zijn." @@ -3521,7 +3546,7 @@ msgstr "Nederlands" msgid "e.g. 180 (3 hours)" msgstr "bijv. 180 (3 uur)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3531,11 +3556,11 @@ msgstr "bijv. Ochtendsessie" msgid "e.g., Get Tickets, Register Now" msgstr "bijv. Tickets kopen, Nu registreren" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "bijv. Belangrijke update over uw tickets" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "bijv. Standaard, Premium, Enterprise" @@ -3543,7 +3568,7 @@ msgstr "bijv. Standaard, Premium, Enterprise" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Elke persoon ontvangt een e-mail met een gereserveerde plek om de aankoop te voltooien." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Eerder" @@ -3612,7 +3637,7 @@ msgstr "Check-in lijst bewerken" msgid "Edit Code" msgstr "Code bewerken" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Configuratie bewerken" @@ -3660,8 +3685,8 @@ msgstr "Bewerk Vraag" msgid "Edit user" msgstr "Gebruiker bewerken" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Gebruiker bewerken" @@ -3709,7 +3734,7 @@ msgstr "In Aanmerking Komende Incheck Lijsten" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3722,7 +3747,7 @@ msgstr "In Aanmerking Komende Incheck Lijsten" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "E-mail" @@ -3744,10 +3769,10 @@ msgstr "E-mail & Sjablonen" msgid "Email address" msgstr "E-mailadres" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "E-mailadres" @@ -3756,8 +3781,8 @@ msgstr "E-mailadres" msgid "Email address copied to clipboard" msgstr "E-mailadres gekopieerd naar klembord" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "E-mailadressen komen niet overeen" @@ -3765,21 +3790,21 @@ msgstr "E-mailadressen komen niet overeen" msgid "Email Body" msgstr "E-mail Hoofdtekst" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "E-mailwijziging succesvol geannuleerd" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "E-mailwijziging in behandeling" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "E-mailbevestiging opnieuw verzonden" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "Bericht voettekst e-mail" @@ -3793,7 +3818,7 @@ msgstr "Bevestigingsmail succesvol opnieuw verstuurd" msgid "Email is required" msgstr "E-mail is verplicht" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "E-mail niet geverifieerd" @@ -3801,7 +3826,7 @@ msgstr "E-mail niet geverifieerd" msgid "Email Preview" msgstr "E-mail Voorbeeld" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "E-mail Sjablonen" @@ -3810,6 +3835,10 @@ msgstr "E-mail Sjablonen" msgid "Email Verification Required" msgstr "E-mailverificatie vereist" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "E-mail succesvol geverifieerd!" @@ -3898,12 +3927,11 @@ msgstr "Eindtijd (optioneel)" msgid "End time of the occurrence" msgstr "Eindtijd van de sessie" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Beëindigd" @@ -3921,11 +3949,11 @@ msgstr "Eindigt {0}" msgid "English" msgstr "Engels" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Voer een capaciteitswaarde in of kies onbeperkt." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Voer een label in of kies ervoor om het te verwijderen." @@ -3933,7 +3961,7 @@ msgstr "Voer een label in of kies ervoor om het te verwijderen." msgid "Enter a subject and body to see the preview" msgstr "Voer een onderwerp en hoofdtekst in om het voorbeeld te zien" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Voer een tijd in om mee te verschuiven." @@ -3950,11 +3978,11 @@ msgstr "Voer affiliate e-mail in (optioneel)" msgid "Enter affiliate name" msgstr "Voer affiliatenaam in" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Voer een bedrag in exclusief belastingen en toeslagen." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Capaciteit invoeren" @@ -3999,7 +4027,7 @@ msgstr "Voer uw e-mailadres in en wij sturen u instructies om uw wachtwoord opni msgid "Enter your name" msgstr "Voer je naam in" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Voer uw BTW-nummer in inclusief de landcode, zonder spaties (bijv. NL123456789B01, DE123456789)" @@ -4013,7 +4041,7 @@ msgstr "Inschrijvingen verschijnen hier wanneer klanten zich aanmelden voor de w #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Fout" @@ -4075,7 +4103,7 @@ msgstr "Evenement" msgid "Event Archived" msgstr "Evenement gearchiveerd" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Evenement succesvol gearchiveerd" @@ -4087,7 +4115,7 @@ msgstr "Evenementcategorie" msgid "Event Cover Image" msgstr "Evenement coverafbeelding" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4095,7 +4123,7 @@ msgstr "" msgid "Event Created" msgstr "Evenement aangemaakt" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Evenement aangepaste sjabloon" @@ -4114,7 +4142,7 @@ msgstr "Evenementdatum" msgid "Event Defaults" msgstr "Evenement Standaarden" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Evenement succesvol verwijderd" @@ -4146,10 +4174,14 @@ msgstr "Evenement succesvol gedupliceerd" msgid "Event Full Address" msgstr "Volledig Evenementadres" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Homepage evenement" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Evenement Locatie" @@ -4189,7 +4221,7 @@ msgstr "Evenement organisator naam" msgid "Event Page" msgstr "Evenementpagina" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Evenement succesvol hersteld" @@ -4198,17 +4230,17 @@ msgstr "Evenement succesvol hersteld" msgid "Event Settings" msgstr "Evenement instellingen" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Update status evenement mislukt. Probeer het later opnieuw" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Evenementstatus bijgewerkt" @@ -4241,7 +4273,7 @@ msgstr "Evenement titel" msgid "Event Too New" msgstr "Evenement te nieuw" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Totalen evenement" @@ -4406,7 +4438,7 @@ msgstr "Mislukt op" msgid "Failed Jobs" msgstr "Mislukte taken" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "Bestelling annuleren mislukt. Probeer het opnieuw." @@ -4440,7 +4472,7 @@ msgstr "Bestelling niet geannuleerd" msgid "Failed to create affiliate" msgstr "Aanmaken affiliate mislukt" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Kan configuratie niet aanmaken" @@ -4448,12 +4480,12 @@ msgstr "Kan configuratie niet aanmaken" msgid "Failed to create schedule" msgstr "Aanmaken van planning mislukt" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Sjabloon maken mislukt" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Kan configuratie niet verwijderen" @@ -4471,7 +4503,7 @@ msgstr "Verwijderen van datum mislukt. Er zijn mogelijk bestaande bestellingen." msgid "Failed to delete dates" msgstr "Verwijderen van data mislukt" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Evenement verwijderen mislukt" @@ -4483,7 +4515,7 @@ msgstr "Taak verwijderen mislukt" msgid "Failed to delete jobs" msgstr "Taken verwijderen mislukt" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Organisator verwijderen mislukt" @@ -4491,13 +4523,13 @@ msgstr "Organisator verwijderen mislukt" msgid "Failed to delete question" msgstr "Vraag verwijderen mislukt" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Sjabloon verwijderen mislukt" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Downloaden van factuur mislukt. Probeer het opnieuw." @@ -4595,14 +4627,14 @@ msgstr "Opslaan van prijsoverschrijving mislukt" msgid "Failed to save product settings" msgstr "Opslaan van productinstellingen mislukt" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Sjabloon opslaan mislukt" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Kan BTW-instellingen niet opslaan. Probeer het opnieuw." @@ -4640,11 +4672,11 @@ msgstr "Antwoord niet bijgewerkt." msgid "Failed to update attendee" msgstr "Deelnemer bijwerken mislukt" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Kan configuratie niet bijwerken" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Bijwerken van evenementstatus mislukt" @@ -4656,7 +4688,7 @@ msgstr "Bijwerken van berichtenniveau mislukt" msgid "Failed to update order" msgstr "Bestelling bijwerken mislukt" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Bijwerken van organisatorstatus mislukt" @@ -4702,7 +4734,7 @@ msgstr "Februari" msgid "Fee" msgstr "Tarief" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Valuta van de kosten" @@ -4721,7 +4753,7 @@ msgstr "" msgid "Fees" msgstr "Tarieven" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Kosten omzeild" @@ -4733,8 +4765,8 @@ msgstr "Festival" msgid "File is too large. Maximum size is 5MB." msgstr "Bestand is te groot. Maximale grootte is 5MB." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Vul eerst je gegevens hierboven in" @@ -4755,7 +4787,7 @@ msgstr "Filter Deelnemers" msgid "Filter by date" msgstr "Filteren op datum" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Filteren op evenement" @@ -4776,19 +4808,27 @@ msgstr "Filters ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Stripe-installatie afronden" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "Eerste" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "Eerste deelnemer" @@ -4799,22 +4839,22 @@ msgstr "Eerste factuurnummer" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Voornaam" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Voornaam" @@ -4844,16 +4884,16 @@ msgstr "Vast bedrag" msgid "Fixed fee" msgstr "Vaste kosten" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Vaste vergoeding" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Vaste kosten per transactie" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "Vaste vergoeding moet 0 of hoger zijn" @@ -4924,7 +4964,11 @@ msgstr "Vrijdag" msgid "Full data ownership" msgstr "Volledig data-eigendom" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Volledige terugbetaling" @@ -4932,11 +4976,11 @@ msgstr "Volledige terugbetaling" msgid "Full resolved address" msgstr "Volledig opgelost adres" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "toekomst" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Alleen toekomstige data" @@ -4993,7 +5037,7 @@ msgstr "Aan de slag" msgid "Get Tickets" msgstr "Koop Tickets" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Bereid je evenement voor" @@ -5014,7 +5058,7 @@ msgstr "Ga terug" msgid "Go back to profile" msgstr "Ga terug naar profiel" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Ga naar evenementpagina" @@ -5038,7 +5082,7 @@ msgstr "Google Agenda" msgid "Got it" msgstr "Begrepen" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Bruto-omzet" @@ -5046,22 +5090,22 @@ msgstr "Bruto-omzet" msgid "Gross Revenue" msgstr "Bruto-omzet" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Brutoverkoop" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Bruto verkoop" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5078,7 +5122,7 @@ msgstr "Gasten" msgid "Happening now" msgstr "Gaande nu" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Heb je een promotiecode?" @@ -5107,7 +5151,7 @@ msgstr "Hier is de React component die je kunt gebruiken om de widget in je appl msgid "Here is your affiliate link" msgstr "Hier is je affiliatelink" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Hi {0} 👋" @@ -5142,8 +5186,8 @@ msgstr "Verborgen voor het publiek" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "Verborgen vragen zijn alleen zichtbaar voor de organisator van het evenement en niet voor de klant." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Verberg" @@ -5240,8 +5284,8 @@ msgstr "Voorbeschouwing" msgid "Homer" msgstr "Homer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Uren" @@ -5270,11 +5314,11 @@ msgstr "Hoe vaak?" msgid "How to pay offline" msgstr "Hoe offline te betalen" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "Hoe btw wordt toegepast op de platformkosten die we je in rekening brengen." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "HTML karakterlimiet overschreden: {htmlLength}/{maxLength}" @@ -5294,7 +5338,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Hongaars" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Ik erken mijn verantwoordelijkheden als verwerkingsverantwoordelijke" @@ -5306,11 +5350,11 @@ msgstr "Ik ga akkoord met het ontvangen van e-mailmeldingen met betrekking tot d msgid "I agree to the <0>terms and conditions" msgstr "Ik ga akkoord met de <0>voorwaarden" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Ik bevestig dat dit een transactioneel bericht is met betrekking tot dit evenement" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Als er geen nieuw tabblad automatisch is geopend, klik dan op de knop hieronder om door te gaan naar afrekenen." @@ -5326,7 +5370,7 @@ msgstr "Als dit is ingeschakeld, kunnen incheckmedewerkers aanwezigen markeren a msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Als deze optie is ingeschakeld, ontvangt de organisator een e-mailbericht wanneer er een nieuwe bestelling is geplaatst" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Als je deze wijziging niet hebt aangevraagd, verander dan onmiddellijk je wachtwoord." @@ -5371,11 +5415,11 @@ msgstr "Imitatie gestart" msgid "Impersonation stopped" msgstr "Imitatie gestopt" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Belangrijke mededeling" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Belangrijk: Het wijzigen van uw e-mailadres zal de link naar deze bestelling bijwerken. U wordt na het opslaan doorgestuurd naar de nieuwe bestellink." @@ -5391,7 +5435,7 @@ msgstr "Over {diffMinutes} minuten" msgid "in last {0} min" msgstr "in de laatste {0} min" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "Op locatie — stel een locatie in" @@ -5402,15 +5446,15 @@ msgstr "in persoon, online, niet ingesteld of gemengd" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Inactief" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Inactieve gebruikers kunnen niet inloggen." @@ -5484,12 +5528,12 @@ msgstr "Ongeldig e-mailformaat" msgid "Invalid file type. Please upload an image." msgstr "Ongeldig bestandstype. Upload een afbeelding." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Ongeldige Liquid syntax. Corrigeer het en probeer opnieuw." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Ongeldig BTW-nummerformaat" @@ -5526,7 +5570,7 @@ msgid "Invoice" msgstr "Factuur" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Factuur succesvol gedownload" @@ -5546,7 +5590,7 @@ msgstr "Factuur Instellingen" msgid "Italian" msgstr "Italiaans" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Item" @@ -5629,7 +5673,7 @@ msgstr "zojuist" msgid "Just wrapped" msgstr "Net afgerond" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Houd mij op de hoogte van nieuws en evenementen van {0}" @@ -5648,13 +5692,13 @@ msgstr "Label" msgid "Label for the occurrence" msgstr "Label voor de sessie" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "labelupdates" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Taal" @@ -5682,7 +5726,7 @@ msgid "Last 24 hours" msgstr "Laatste 24 uur" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "Laatste 30 dagen" @@ -5698,13 +5742,13 @@ msgid "Last 6 months" msgstr "Laatste 6 maanden" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "Laatste 7 dagen" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "Laatste 90 dagen" @@ -5720,18 +5764,18 @@ msgid "Last name" msgstr "Achternaam" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Achternaam" @@ -5754,7 +5798,7 @@ msgstr "Laatst geactiveerd" msgid "Last Used" msgstr "Laatst gebruikt" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Later" @@ -5787,7 +5831,7 @@ msgstr "Laat ingeschakeld om elk ticket van het evenement te dekken. Schakel uit msgid "Let them know about the change" msgstr "Laat ze weten over de wijziging" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Laat ze weten over de wijzigingen" @@ -5831,12 +5875,11 @@ msgstr "Lijst" msgid "List view" msgstr "Lijstweergave" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "Live" @@ -5849,7 +5892,7 @@ msgstr "LIVE" msgid "Live Events" msgstr "Live Evenementen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Geladen data" @@ -5873,8 +5916,8 @@ msgstr "Webhooks laden" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Aan het laden..." @@ -5927,7 +5970,7 @@ msgstr "Locatie opgeslagen" msgid "Location updated" msgstr "Locatie bijgewerkt" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "locatie-updates" @@ -5991,7 +6034,7 @@ msgstr "Hoofdkantoor" msgid "Make billing address mandatory during checkout" msgstr "Maak factuuradres verplicht tijdens het afrekenen" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6024,7 +6067,7 @@ msgstr "Deelnemer beheren" msgid "Manage dates and times for your recurring event" msgstr "Beheer data en tijden voor je terugkerende evenement" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Evenement beheren" @@ -6040,10 +6083,14 @@ msgstr "Bestelling beheren" msgid "Manage payment and invoicing settings for this event." msgstr "Beheer de betalings- en factureringsinstellingen voor dit evenement." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Profiel beheren" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Planning beheren" @@ -6125,7 +6172,7 @@ msgstr "Medium" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Bericht" @@ -6142,7 +6189,7 @@ msgstr "Bericht deelnemer" msgid "Message Attendees" msgstr "Bericht Deelnemers" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Deelnemers berichten sturen met specifieke tickets" @@ -6166,7 +6213,7 @@ msgstr "Berichtinhoud" msgid "Message Details" msgstr "Berichtdetails" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Bericht individuele deelnemers" @@ -6174,15 +6221,15 @@ msgstr "Bericht individuele deelnemers" msgid "Message is required" msgstr "Bericht is verplicht" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Bestelbezitters berichten sturen met specifieke producten" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Bericht gepland" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Bericht verzonden" @@ -6213,8 +6260,8 @@ msgstr "Minimale prijs" msgid "minutes" msgstr "minuten" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Minuten" @@ -6230,7 +6277,7 @@ msgstr "Diverse instellingen" msgid "Mo" msgstr "Ma" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Modus" @@ -6283,7 +6330,7 @@ msgstr "Meer acties" msgid "Most Viewed Events (Last 14 Days)" msgstr "Meest bekeken evenementen (Laatste 14 dagen)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Verplaats alle data eerder of later" @@ -6291,7 +6338,7 @@ msgstr "Verplaats alle data eerder of later" msgid "Multi line text box" msgstr "Meerregelig tekstvak" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6344,7 +6391,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6354,11 +6401,11 @@ msgstr "Naam" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "Naam is verplicht" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "Naam moet minder dan 255 tekens bevatten" @@ -6385,21 +6432,21 @@ msgstr "Netto-omzet" msgid "Never" msgstr "Nooit" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Nieuwe capaciteit" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Nieuw label" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Nieuwe locatie" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "Nieuw wachtwoord" @@ -6427,7 +6474,7 @@ msgstr "Nachtleven" msgid "No" msgstr "Nee" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "Nee - Ik ben een particulier of een niet-BTW-geregistreerd bedrijf" @@ -6493,7 +6540,7 @@ msgid "No Capacity Assignments" msgstr "Geen capaciteitstoewijzingen" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6510,7 +6557,7 @@ msgstr "Geen incheck lijsten beschikbaar voor dit evenement." msgid "No check-ins yet" msgstr "Nog geen check-ins" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "Geen configuraties gevonden" @@ -6538,7 +6585,7 @@ msgstr "Geen check-in lijst specifiek voor deze datum" msgid "No dates available this month. Try navigating to another month." msgstr "Geen data beschikbaar deze maand. Probeer naar een andere maand te navigeren." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "Geen data komen overeen met de huidige filters." @@ -6583,8 +6630,8 @@ msgstr "Geen evenementen die beginnen in de komende 24 uur" msgid "No events to show" msgstr "Geen evenementen om weer te geven" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6632,8 +6679,8 @@ msgstr "Geen bestellingen gevonden" msgid "No orders to show" msgstr "Geen orders om te laten zien" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6644,7 +6691,7 @@ msgstr "Nog geen bestellingen voor deze datum." msgid "No organizer activity in the last 14 days" msgstr "Geen organisatoractiviteit in de laatste 14 dagen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "Geen organisatorcontext beschikbaar." @@ -6734,7 +6781,7 @@ msgstr "Nog geen reacties" msgid "No results" msgstr "Geen resultaten" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Nog geen opgeslagen locaties" @@ -6794,16 +6841,16 @@ msgstr "Er zijn nog geen webhook-events opgenomen voor dit eindpunt. Evenementen msgid "No Webhooks" msgstr "Geen webhooks" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "Nee, houd me hier" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "niet bewerkt" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Geen" @@ -6871,7 +6918,7 @@ msgstr "Nummer Voorvoegsel" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Sessie" @@ -7006,7 +7053,7 @@ msgstr "Informatie over offline betalingen" msgid "Offline Payments Settings" msgstr "Instellingen voor offline betalingen" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7029,7 +7076,7 @@ msgstr "Zodra je gegevens begint te verzamelen, zie je ze hier." msgid "Ongoing" msgstr "Doorlopend" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7037,11 +7084,11 @@ msgstr "Doorlopend" msgid "Online" msgstr "Online" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "Online — verbindingsgegevens opgeven" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Online en in persoon" @@ -7071,15 +7118,15 @@ msgstr "Verbindingsgegevens online evenement" msgid "Online Event Details" msgstr "Details online evenement" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Alleen accountbeheerders kunnen evenementen verwijderen of archiveren. Neem contact op met uw accountbeheerder voor hulp." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Alleen accountbeheerders kunnen organisatoren verwijderen of archiveren. Neem contact op met uw accountbeheerder voor hulp." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Alleen verzenden naar orders met deze statussen" @@ -7174,7 +7221,7 @@ msgstr "Bestelling & Ticket" msgid "Order #" msgstr "Bestelling #" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Bestelling geannuleerd" @@ -7183,13 +7230,13 @@ msgstr "Bestelling geannuleerd" msgid "Order Cancelled" msgstr "Bestelling geannuleerd" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Bestelling voltooid" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Bestelling Bevestiging" @@ -7274,7 +7321,7 @@ msgstr "Bestelling gemarkeerd als betaald" msgid "Order Marked as Paid" msgstr "Bestelling gemarkeerd als betaald" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Bestelling niet gevonden" @@ -7298,7 +7345,7 @@ msgstr "Bestelnummer, aankoopdatum, e-mail van koper" msgid "Order owner" msgstr "Eigenaar bestelling" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Bestel eigenaars met een specifiek product" @@ -7328,7 +7375,7 @@ msgstr "Bestelling terugbetaald" msgid "Order Status" msgstr "Bestelstatus" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Bestelstatussen" @@ -7342,7 +7389,7 @@ msgid "Order timeout" msgstr "Time-out bestelling" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Bestelling Totaal" @@ -7358,7 +7405,7 @@ msgstr "Bestelling succesvol bijgewerkt" msgid "Order URL" msgstr "Bestelling URL" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "Bestelling is geannuleerd" @@ -7375,8 +7422,8 @@ msgstr "bestellingen" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7435,7 +7482,7 @@ msgstr "Naam organisatie" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7445,17 +7492,17 @@ msgstr "Naam organisatie" msgid "Organizer" msgstr "Organisator" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Organisator succesvol gearchiveerd" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Organisator-dashboard" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Organisator succesvol verwijderd" @@ -7487,7 +7534,7 @@ msgstr "Naam organisator" msgid "Organizer Not Found" msgstr "Organisator niet gevonden" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Organisator succesvol hersteld" @@ -7505,7 +7552,7 @@ msgstr "Bijwerken van organisatorstatus mislukt. Probeer het later opnieuw." msgid "Organizer status updated" msgstr "Organisatorstatus bijgewerkt" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Organisator/standaardsjabloon wordt gebruikt" @@ -7513,7 +7560,7 @@ msgstr "Organisator/standaardsjabloon wordt gebruikt" msgid "Organizers" msgstr "Organisatoren" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Organisatoren kunnen alleen evenementen en producten beheren. Ze kunnen geen gebruikers, accountinstellingen of factureringsgegevens beheren." @@ -7564,7 +7611,7 @@ msgstr "Opvulling" msgid "Page" msgstr "Pagina" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Pagina niet meer beschikbaar" @@ -7576,7 +7623,7 @@ msgstr "Pagina niet gevonden" msgid "Page URL" msgstr "Pagina-URL" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Bekeken pagina's" @@ -7584,11 +7631,11 @@ msgstr "Bekeken pagina's" msgid "Page Views" msgstr "Paginaweergaven" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "betaald" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7600,7 +7647,7 @@ msgstr "Betaalde accounts" msgid "Paid Product" msgstr "Betaald product" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Gedeeltelijke terugbetaling" @@ -7624,7 +7671,7 @@ msgstr "Doorberekenen aan koper" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Wachtwoord" @@ -7695,7 +7742,7 @@ msgstr "Payload" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Betaling" @@ -7736,7 +7783,7 @@ msgstr "Betaalmethoden" msgid "Payment provider" msgstr "Betalingsprovider" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Betaling ontvangen" @@ -7748,7 +7795,7 @@ msgstr "Ontvangen betaling" msgid "Payment Status" msgstr "Betalingsstatus" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "Betaling gelukt!" @@ -7762,11 +7809,11 @@ msgstr "Betalingen niet beschikbaar" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Uitbetalingen" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "In behandeling" @@ -7802,8 +7849,8 @@ msgstr "Percentage" msgid "Percentage Amount" msgstr "Percentage Bedrag" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Percentage vergoeding" @@ -7811,11 +7858,11 @@ msgstr "Percentage vergoeding" msgid "Percentage fee (%)" msgstr "Percentagekosten (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "Percentage moet tussen 0 en 100 liggen" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Percentage van transactiebedrag" @@ -7823,11 +7870,11 @@ msgstr "Percentage van transactiebedrag" msgid "Performance" msgstr "Prestaties" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Verwijder dit evenement en alle bijbehorende gegevens permanent." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Verwijder deze organisator en al zijn evenementen permanent." @@ -7835,7 +7882,7 @@ msgstr "Verwijder deze organisator en al zijn evenementen permanent." msgid "Permanently remove this date" msgstr "Verwijder deze datum definitief" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Persoonlijke gegevens" @@ -7843,7 +7890,7 @@ msgstr "Persoonlijke gegevens" msgid "Phone" msgstr "Telefoon" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Kies een locatie" @@ -7893,7 +7940,7 @@ msgstr "Platformkosten van {0} afgetrokken van uw uitbetaling" msgid "Platform Fees" msgstr "Platformkosten" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Platformkosten rapport" @@ -7919,7 +7966,7 @@ msgstr "Controleer je e-mail en wachtwoord en probeer het opnieuw" msgid "Please check your email is valid" msgstr "Controleer of je e-mailadres geldig is" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Controleer je e-mail om je e-mailadres te bevestigen" @@ -7927,7 +7974,7 @@ msgstr "Controleer je e-mail om je e-mailadres te bevestigen" msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Controleer je ticket voor de bijgewerkte tijd. Je tickets zijn nog steeds geldig — er is geen actie nodig tenzij de nieuwe tijden je niet uitkomen. Reageer op deze e-mail als je vragen hebt." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Ga verder in het nieuwe tabblad" @@ -7956,7 +8003,7 @@ msgstr "Voer een geldige URL in" msgid "Please enter the 5-digit code" msgstr "Voer de 5-cijferige code in" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Voer uw BTW-nummer in" @@ -7972,11 +8019,11 @@ msgstr "Geef een afbeelding op." msgid "Please restart the checkout process." msgstr "Start het bestelproces opnieuw." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Ga terug naar de evenementpagina om opnieuw te beginnen." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Selecteer een datum en tijd" @@ -7988,7 +8035,7 @@ msgstr "Selecteer een datumbereik" msgid "Please select an image." msgstr "Selecteer een afbeelding." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Selecteer ten minste één product" @@ -7999,7 +8046,7 @@ msgstr "Selecteer ten minste één product" msgid "Please try again." msgstr "Probeer het opnieuw." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Controleer uw e-mailadres om toegang te krijgen tot alle functies" @@ -8016,7 +8063,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Wacht even terwijl we je deelnemers voorbereiden voor export..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Wacht even terwijl we uw factuur opstellen..." @@ -8125,7 +8172,7 @@ msgstr "Afdrukvoorbeeld" msgid "Print Ticket" msgstr "Ticket afdrukken" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Tickets afdrukken" @@ -8140,7 +8187,7 @@ msgstr "Afdrukken naar PDF" msgid "Privacy Policy" msgstr "Privacybeleid" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Terugbetaling verwerken" @@ -8181,7 +8228,7 @@ msgstr "Product succesvol verwijderd" msgid "Product Price Type" msgstr "Product Prijs Type" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8222,14 +8269,14 @@ msgstr "Product(en)" msgid "Products" msgstr "Producten" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Verkochte producten" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8240,11 +8287,11 @@ msgstr "Verkochte producten" msgid "Products sorted successfully" msgstr "Producten succesvol gesorteerd" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Profiel" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Profiel succesvol bijgewerkt" @@ -8252,7 +8299,7 @@ msgstr "Profiel succesvol bijgewerkt" msgid "Progress" msgstr "Voortgang" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Promo {promo_code} code toegepast" @@ -8299,7 +8346,7 @@ msgstr "Promocodes Rapport" msgid "Promo Only" msgstr "Alleen promo" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "Promotionele e-mails kunnen leiden tot accountopschorting" @@ -8311,11 +8358,11 @@ msgstr "" "Geef aanvullende context of instructies voor deze vraag. Gebruik dit veld om voorwaarden,\n" "richtlijnen of andere belangrijke informatie toe te voegen die deelnemers moeten weten voordat ze antwoorden." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Geef minstens één adresveld op voor de nieuwe locatie." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Verstrek het volgende vóór de volgende Stripe-controle om uitbetalingen door te laten gaan." @@ -8324,11 +8371,11 @@ msgid "Provider" msgstr "Aanbieder" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Publiceren" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8432,7 +8479,7 @@ msgstr "Realtime analyses" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Productupdates van {0} ontvangen." @@ -8440,6 +8487,10 @@ msgstr "Productupdates van {0} ontvangen." msgid "Recent Account Signups" msgstr "Recente accountaanmeldingen" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Recente deelnemers" @@ -8448,7 +8499,7 @@ msgstr "Recente deelnemers" msgid "Recent check-ins" msgstr "Recente check-ins" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8460,7 +8511,7 @@ msgstr "Recente bestellingen" msgid "recipient" msgstr "ontvanger" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Ontvanger" @@ -8469,7 +8520,7 @@ msgid "recipients" msgstr "ontvangers" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8479,7 +8530,8 @@ msgstr "Ontvangers" msgid "Recipients are available after the message is sent" msgstr "Ontvangers zijn beschikbaar nadat het bericht is verzonden" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Terugkerend" @@ -8518,7 +8570,7 @@ msgstr "Alle bestellingen voor deze data terugbetalen" msgid "Refund all orders for this date" msgstr "Alle bestellingen voor deze datum terugbetalen" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Terugbetalingsbedrag" @@ -8538,7 +8590,7 @@ msgstr "Terugbetaling uitgegeven" msgid "Refund order" msgstr "Bestelling terugbetalen" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Bestelling {0} terugbetalen" @@ -8556,9 +8608,9 @@ msgid "Refund Status" msgstr "Restitutie Status" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Terugbetaald" @@ -8572,7 +8624,7 @@ msgstr "Terugbetaald: {0}" msgid "Refunds" msgstr "Terugbetalingen" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Regionale instellingen" @@ -8599,18 +8651,18 @@ msgstr "Overblijvend gebruik" msgid "Reminder scheduled" msgstr "Herinnering gepland" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "verwijderen" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Verwijder" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Label van alle data verwijderen" @@ -8662,10 +8714,11 @@ msgid "Resend Confirmation Email" msgstr "Bevestigingsmail opnieuw verzenden" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "E-mail opnieuw verzenden" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "E-mailbevestiging opnieuw verzenden" @@ -8689,7 +8742,7 @@ msgstr "Ticket opnieuw verzenden" msgid "Resend ticket email" msgstr "Ticket e-mail opnieuw verzenden" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Opnieuw verzenden..." @@ -8730,30 +8783,30 @@ msgstr "Antwoord" msgid "Response Details" msgstr "Antwoorddetails" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Herstellen" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Evenement herstellen" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Evenement herstellen" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Organisator herstellen" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Herstel dit evenement om het weer zichtbaar te maken." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Herstel deze organisator en maak hem weer actief." @@ -8778,7 +8831,7 @@ msgstr "Taak opnieuw proberen" msgid "Return to Event" msgstr "Terug naar evenement" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Terug naar evenementpagina" @@ -8795,9 +8848,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Hergebruik een Stripe-verbinding van een andere organisator in dit account." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Inkomsten" @@ -8819,7 +8873,7 @@ msgstr "Uitnodiging intrekken" msgid "Revoke Offer" msgstr "Aanbod intrekken" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8873,7 +8927,7 @@ msgid "Sale starts {0}" msgstr "Uitverkoop begint {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Verkoop" @@ -8931,7 +8985,7 @@ msgstr "Zaterdag" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8945,16 +8999,16 @@ msgstr "Zaterdag" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Opslaan" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8994,16 +9048,16 @@ msgstr "Ticketontwerp Opslaan" msgid "Save VAT settings" msgstr "Btw-instellingen opslaan" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "BTW-instellingen opslaan" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Opgeslagen locatie" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Opgeslagen locaties" @@ -9016,7 +9070,7 @@ msgstr "Opgeslagen locaties" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "Bij het opslaan van een overschrijving wordt een eigen configuratie voor deze organisator aangemaakt als deze momenteel op de systeemstandaard staat." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Scannen" @@ -9036,6 +9090,10 @@ msgstr "Scannermodus" msgid "Schedule" msgstr "Planning" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Planning succesvol aangemaakt" @@ -9044,11 +9102,11 @@ msgstr "Planning succesvol aangemaakt" msgid "Schedule ends on" msgstr "Planning eindigt op" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Later plannen" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Bericht plannen" @@ -9062,11 +9120,11 @@ msgstr "Schema begint op" msgid "Scheduled" msgstr "Gepland" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Geplande tijd" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Zoeken" @@ -9229,11 +9287,11 @@ msgstr "Selecteer alles" msgid "Select all on {0}" msgstr "Alles selecteren op {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Selecteer een evenement" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Selecteer deelnemersgroep" @@ -9287,7 +9345,7 @@ msgid "Select Product Tier" msgstr "Selecteer productcategorie" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Selecteer producten" @@ -9299,7 +9357,7 @@ msgstr "Selecteer startdatum en tijd" msgid "Select start time" msgstr "Selecteer starttijd" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Selecteer status" @@ -9312,7 +9370,7 @@ msgid "Select Ticket" msgstr "Selecteer ticket" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Kies tickets" @@ -9326,7 +9384,7 @@ msgstr "Selecteer tijdsperiode" msgid "Select timezone" msgstr "Selecteer tijdzone" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Selecteer welke deelnemers dit bericht moeten ontvangen" @@ -9360,11 +9418,11 @@ msgstr "Verkoopt snel 🔥" msgid "Send" msgstr "Stuur" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Stuur een bericht" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Verzenden als test" @@ -9372,20 +9430,20 @@ msgstr "Verzenden als test" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "Stuur e-mails naar deelnemers, tickethouders of bestelingseigenaren. Berichten kunnen direct worden verzonden of worden ingepland voor later." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Stuur mij een kopie" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Verstuur bericht" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Nu verzenden" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Verzend orderbevestiging en ticket e-mail" @@ -9393,7 +9451,7 @@ msgstr "Verzend orderbevestiging en ticket e-mail" msgid "Send real-time order and attendee data to your external systems." msgstr "Stuur realtime bestel- en deelnemergegevens naar je externe systemen." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Terugbetalingsmelding e-mail verzenden" @@ -9401,11 +9459,11 @@ msgstr "Terugbetalingsmelding e-mail verzenden" msgid "Send reset link" msgstr "Verstuur resetlink" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Test verzenden" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Verzend naar alle sessies of kies een specifieke" @@ -9430,15 +9488,15 @@ msgstr "Verzonden" msgid "Sent By" msgstr "Verzonden door" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Verzonden naar deelnemers wanneer een geplande datum wordt geannuleerd" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Verzonden naar klanten wanneer ze een bestelling plaatsen" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Verzonden naar elke deelnemer met hun ticketgegevens" @@ -9491,7 +9549,7 @@ msgstr "Stel de standaard platformkosteninstellingen in voor nieuwe evenementen msgid "Set default settings for new events created under this organizer." msgstr "Stel standaardinstellingen in voor nieuwe evenementen die onder deze organisator worden gemaakt." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Stel in hoe lang elke datum duurt" @@ -9499,11 +9557,11 @@ msgstr "Stel in hoe lang elke datum duurt" msgid "Set number of dates" msgstr "Aantal data instellen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Stel het datumlabel in of wis het" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Stel in dat de eindtijd van elke datum dit lang na de starttijd ligt." @@ -9511,7 +9569,7 @@ msgstr "Stel in dat de eindtijd van elke datum dit lang na de starttijd ligt." msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Stel het startnummer voor factuurnummering in. Dit kan niet worden gewijzigd als de facturen eenmaal zijn gegenereerd." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Instellen op onbeperkt (limiet verwijderen)" @@ -9524,10 +9582,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Stel inchecklijsten in voor verschillende ingangen, sessies of dagen." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Uitbetalingen instellen" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9537,11 +9599,15 @@ msgstr "Planning instellen" msgid "Set up your organization" msgstr "Stel je organisatie in" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Stel je planning in" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "De locatie of online gegevens van de sessie instellen, wijzigen of verwijderen" @@ -9600,11 +9666,11 @@ msgstr "Deel organisatorpagina" msgid "Shared Capacity Management" msgstr "Gedeeld capaciteitsbeheer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Tijden verschuiven" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "Tijden verschoven voor {count} datum/data" @@ -9636,8 +9702,8 @@ msgstr "Toon marketing opt-in selectievakje" msgid "Show marketing opt-in checkbox by default" msgstr "Toon marketing opt-in selectievakje standaard" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Meer tonen" @@ -9674,7 +9740,7 @@ msgstr "{0}–{1} van {2} weergegeven" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "{MAX_VISIBLE} van {totalAvailable} data weergegeven. Typ om te zoeken." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "Eerste {0} weergegeven — de resterende {1} sessie(s) worden nog steeds bereikt wanneer het bericht wordt verzonden." @@ -9711,7 +9777,7 @@ msgstr "Eenmalig evenement" msgid "Single line text box" msgstr "Enkelregelig tekstvak" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Handmatig bewerkte data overslaan" @@ -9746,7 +9812,7 @@ msgstr "Sociale links & website" msgid "Sold" msgstr "Verkocht" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9767,7 +9833,7 @@ msgstr "Sommige details zijn verborgen voor publieke toegang. Log in om alles te #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Er is iets misgegaan" @@ -9785,7 +9851,7 @@ msgstr "Er is iets misgegaan. Probeer het opnieuw of neem contact op met support msgid "Something went wrong! Please try again" msgstr "Er ging iets mis! Probeer het opnieuw" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Er ging iets mis." @@ -9797,12 +9863,12 @@ msgstr "Er is iets misgegaan. Probeer het later opnieuw." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Er is iets misgegaan. Probeer het opnieuw." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Sorry, deze promotiecode wordt niet herkend" @@ -9898,12 +9964,12 @@ msgstr "Begint morgen" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "Staat of regio" @@ -9915,7 +9981,7 @@ msgstr "Statistieken" msgid "Statistics are based on account creation date" msgstr "Statistieken zijn gebaseerd op de aanmaakdatum van het account" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Stats" @@ -9932,7 +9998,7 @@ msgstr "Stats" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9987,7 +10053,7 @@ msgstr "Stripe betalings-ID" msgid "Stripe payments are not enabled for this event." msgstr "Stripe-betalingen zijn niet ingeschakeld voor dit evenement." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Stripe heeft binnenkort meer gegevens nodig" @@ -10000,7 +10066,7 @@ msgid "Su" msgstr "Zo" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10014,7 +10080,7 @@ msgstr "Onderwerp is verplicht" msgid "Subject will appear here" msgstr "Onderwerp verschijnt hier" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Onderwerp:" @@ -10025,11 +10091,11 @@ msgstr "Subtotaal" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Succes" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Succes! {0} ontvangt binnenkort een e-mail." @@ -10174,7 +10240,7 @@ msgstr "Instellingen succesvol bijgewerkt" msgid "Successfully Updated Social Links" msgstr "Sociale links succesvol bijgewerkt" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Trackinginstellingen succesvol bijgewerkt" @@ -10227,7 +10293,7 @@ msgstr "Zweeds" msgid "Switch Organizer" msgstr "Wissel van organisator" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Systeemstandaard" @@ -10239,7 +10305,7 @@ msgstr "T-shirt" msgid "Tap this screen to resume scanning" msgstr "Tik op het scherm om door te gaan" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "Gericht op deelnemers van {0} geselecteerde sessies." @@ -10337,7 +10403,7 @@ msgstr "Vertel ons over je organisatie. Deze informatie wordt weergegeven op je msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Vertel ons hoe vaak je evenement zich herhaalt en we maken alle data voor je aan." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Geef je btw-registratiestatus door zodat we de juiste btw-behandeling op platformkosten toepassen." @@ -10345,15 +10411,15 @@ msgstr "Geef je btw-registratiestatus door zodat we de juiste btw-behandeling op msgid "Template Active" msgstr "Sjabloon Actief" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Sjabloon succesvol aangemaakt" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Sjabloon succesvol verwijderd" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Sjabloon succesvol opgeslagen" @@ -10379,8 +10445,8 @@ msgstr "Bedankt voor uw aanwezigheid!" msgid "Thanks," msgstr "Bedankt," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Die promotiecode is ongeldig" @@ -10400,7 +10466,7 @@ msgstr "De check-in lijst die je zoekt bestaat niet." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "De code verloopt over 10 minuten. Controleer je spammap als je de e-mail niet ziet." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "De valuta waarin de vaste kosten zijn gedefinieerd. Deze wordt bij het afrekenen omgerekend naar de valuta van de bestelling." @@ -10418,7 +10484,7 @@ msgstr "De standaardvaluta voor je evenementen." msgid "The default timezone for your events." msgstr "De standaard tijdzone voor je evenementen." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "Het e-mailadres is gewijzigd. De deelnemer ontvangt een nieuw ticket op het bijgewerkte e-mailadres." @@ -10443,7 +10509,7 @@ msgstr "De eerste datum vanaf wanneer dit schema wordt gegenereerd." msgid "The full event address" msgstr "Het volledige evenementadres" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "Het volledige bestellingsbedrag wordt terugbetaald naar de oorspronkelijke betalingsmethode van de klant." @@ -10467,7 +10533,7 @@ msgstr "De taal van de klant" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "Het maximum is {MAX_PREVIEW} sessies. Verklein het datumbereik, de frequentie of het aantal sessies per dag." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "Het maximum aantal producten voor {0}is {1}" @@ -10476,7 +10542,7 @@ msgstr "Het maximum aantal producten voor {0}is {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "De organisator die je zoekt is niet gevonden. De pagina is mogelijk verplaatst, verwijderd of de URL is onjuist." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "De overschrijving wordt vastgelegd in het audit-log van de bestelling." @@ -10500,11 +10566,11 @@ msgstr "De prijs die aan de klant wordt getoond is exclusief belastingen en toes msgid "The primary brand color used for buttons and highlights" msgstr "De primaire merkkleur die wordt gebruikt voor knoppen en accenten" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "De geplande tijd is vereist" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "De geplande tijd moet in de toekomst liggen" @@ -10512,8 +10578,8 @@ msgstr "De geplande tijd moet in de toekomst liggen" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "De sessie voor \"{title}\" die oorspronkelijk gepland stond voor {0} is verzet." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "Het template body bevat ongeldige Liquid syntax. Corrigeer het en probeer opnieuw." @@ -10522,7 +10588,7 @@ msgstr "Het template body bevat ongeldige Liquid syntax. Corrigeer het en probee msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "De titel van het evenement die zal worden weergegeven in zoekmachineresultaten en bij het delen op sociale media. Standaard wordt de titel van het evenement gebruikt" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "Het BTW-nummer kon niet worden gevalideerd. Controleer het nummer en probeer het opnieuw." @@ -10535,19 +10601,19 @@ msgstr "Theater" msgid "Theme & Colors" msgstr "Thema en kleuren" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "Er zijn geen producten beschikbaar voor dit evenement" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "Er zijn geen producten beschikbaar in deze categorie" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "Er zijn geen aankomende data voor dit evenement" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "Er is een restitutie in behandeling. Wacht tot deze is voltooid voordat je een nieuwe restitutie aanvraagt." @@ -10579,7 +10645,7 @@ msgstr "Deze gegevens worden alleen weergegeven op het ticket en het besteloverz msgid "These details will only be shown if the order is completed successfully." msgstr "Deze gegevens worden alleen weergegeven als de bestelling succesvol is afgerond." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Deze gegevens vervangen elke bestaande locatie op de betreffende sessies en worden weergegeven op de tickets van bezoekers." @@ -10587,11 +10653,11 @@ msgstr "Deze gegevens vervangen elke bestaande locatie op de betreffende sessies msgid "These settings apply only to copied embed code and won't be stored." msgstr "Deze instellingen zijn alleen van toepassing op gekopieerde insluitcode en worden niet opgeslagen." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Deze sjablonen worden gebruikt als standaard voor alle evenementen in uw organisatie. Individuele evenementen kunnen deze sjablonen overschrijven met hun eigen aangepaste versies." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Deze sjablonen overschrijven de organisator-standaarden alleen voor dit evenement. Als hier geen aangepaste sjabloon is ingesteld, wordt in plaats daarvan de organisatorsjabloon gebruikt." @@ -10599,11 +10665,11 @@ msgstr "Deze sjablonen overschrijven de organisator-standaarden alleen voor dit msgid "Third" msgstr "Derde" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Dit geldt voor elke overeenkomende datum in het evenement, inclusief data die momenteel niet zichtbaar zijn. Deelnemers die op een van die data zijn ingeschreven, zijn bereikbaar via de berichtopsteller zodra de update is voltooid." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Deze deelnemer heeft een onbetaalde bestelling." @@ -10661,11 +10727,11 @@ msgstr "Deze datum is geannuleerd. Je kunt deze nog steeds verwijderen om hem de msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Deze datum ligt in het verleden. De datum wordt aangemaakt, maar is niet zichtbaar voor deelnemers onder aankomende data." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Deze datum is gemarkeerd als uitverkocht." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Deze datum is niet meer beschikbaar. Selecteer een andere datum." @@ -10714,19 +10780,19 @@ msgstr "Dit bericht wordt opgenomen in de voettekst van alle e-mails die vanuit msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Dit bericht wordt alleen weergegeven als de bestelling succesvol is afgerond. Bestellingen die op betaling wachten, krijgen dit bericht niet te zien" -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Deze naam is zichtbaar voor eindgebruikers" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Deze sessie is vol" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "Deze bestelling is al betaald." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "Deze bestelling is al terugbetaald." @@ -10734,7 +10800,7 @@ msgstr "Deze bestelling is al terugbetaald." msgid "This order has been cancelled." msgstr "Deze bestelling is geannuleerd." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "Deze bestelling is verlopen. Begin opnieuw." @@ -10746,15 +10812,15 @@ msgstr "Deze bestelling wordt verwerkt." msgid "This order is complete." msgstr "Deze bestelling is compleet." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Deze bestelpagina is niet langer beschikbaar." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "Deze bestelling is verlaten. U kunt op elk moment een nieuwe bestelling starten." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "Deze bestelling is geannuleerd. Je kunt op elk moment een nieuwe bestelling plaatsen." @@ -10786,7 +10852,7 @@ msgstr "Dit product is uitgelicht op de evenementpagina" msgid "This product is sold out" msgstr "Dit product is uitverkocht" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Dit rapport is alleen voor informatieve doeleinden. Raadpleeg altijd een belastingprofessional voordat u deze gegevens gebruikt voor boekhoudkundige of fiscale doeleinden. Controleer met uw Stripe-dashboard aangezien Hi.Events mogelijk historische gegevens mist." @@ -10798,11 +10864,11 @@ msgstr "Deze vraag is alleen zichtbaar voor de organisator van het evenement." msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Dit ticket is net gescand. Wacht even voordat u opnieuw scant." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Deze gebruiker is niet actief, omdat hij zijn uitnodiging niet heeft geaccepteerd." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Dit heeft invloed op {loadedAffectedCount} datum/data." @@ -10914,6 +10980,10 @@ msgstr "Ticket Prijs" msgid "Ticket resent successfully" msgstr "Ticket succesvol opnieuw verzonden" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "De ticketverkoop voor dit evenement is beëindigd" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10976,7 +11046,7 @@ msgstr "TikTok" msgid "Time" msgstr "Tijd" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Resterende tijd:" @@ -10995,7 +11065,7 @@ msgstr "Gebruikte tijden" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Tijdzone" @@ -11012,7 +11082,7 @@ msgid "To increase your limits, contact us at" msgstr "Om uw limieten te verhogen, neem contact met ons op via" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11041,6 +11111,7 @@ msgstr "Top organisatoren (Laatste 14 dagen)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Totaal" @@ -11076,11 +11147,11 @@ msgstr "Totaal inschrijvingen" msgid "Total Fee" msgstr "Totale kosten" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11094,7 +11165,7 @@ msgstr "Totaal Brutoverkoop" msgid "Total order amount" msgstr "Totaal bestelbedrag" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11102,16 +11173,16 @@ msgstr "" msgid "Total refunded" msgstr "Totaal terugbetaald" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Totaal Terugbetaald" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11134,7 +11205,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Volg accountgroei en prestaties per attributiebron" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "" @@ -11201,8 +11272,8 @@ msgstr "Twitch" msgid "Type" msgstr "Type" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Typ \"verwijderen\" om te bevestigen" @@ -11223,7 +11294,7 @@ msgstr "Deelnemer kan niet worden uitgecheckt" msgid "Unable to create product. Please check the your details" msgstr "Kan geen product maken. Controleer uw gegevens" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Kan geen product maken. Controleer uw gegevens" @@ -11247,7 +11318,7 @@ msgstr "Kan niet aan de wachtlijst worden toegevoegd" msgid "Unable to load attendee details." msgstr "Deelnemersdetails kunnen niet worden geladen." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Kan producten voor deze datum niet laden. Probeer het opnieuw." @@ -11285,7 +11356,7 @@ msgstr "Verenigde Staten" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Onbekend" @@ -11305,7 +11376,7 @@ msgstr "Onbekende deelnemer" msgid "Unlimited" msgstr "Onbeperkt" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Onbeperkt beschikbaar" @@ -11317,12 +11388,12 @@ msgstr "Onbeperkt gebruik toegestaan" msgid "Unnamed" msgstr "Naamloos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Naamloze locatie" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Onbetaalde bestelling" @@ -11338,7 +11409,7 @@ msgstr "Niet vertrouwd" msgid "Upcoming" msgstr "Komende" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11354,7 +11425,7 @@ msgstr "Update {0}" msgid "Update Affiliate" msgstr "Affiliate bijwerken" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Capaciteit bijwerken" @@ -11366,15 +11437,15 @@ msgstr "Naam en beschrijving van evenement bijwerken" msgid "Update event name, description and dates" msgstr "Naam, beschrijving en data van evenement bijwerken" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Label bijwerken" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Locatie bijwerken" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Profiel bijwerken" @@ -11386,19 +11457,19 @@ msgstr "Update: {subjectTitle} — wijzigingen in planning" msgid "Update: {subjectTitle} — session time changed" msgstr "Update: {subjectTitle} — sessietijd gewijzigd" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "{count} datum/data bijgewerkt" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "Capaciteit bijgewerkt voor {count} datum/data" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "Label bijgewerkt voor {count} datum/data" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Locatie bijgewerkt voor {count} sessie(s)" @@ -11508,14 +11579,14 @@ msgstr "Gebruikersbeheer" msgid "Users" msgstr "Gebruikers" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Gebruikers kunnen hun e-mailadres wijzigen in <0>Profielinstellingen" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11527,13 +11598,13 @@ msgstr "UTM-analyse" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "Uw BTW-nummer valideren..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "BTW" @@ -11545,28 +11616,28 @@ msgstr "" msgid "VAT number" msgstr "Btw-nummer" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "BTW-nummer" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "BTW-nummer mag geen spaties bevatten" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "BTW-nummer moet beginnen met een landcode van 2 letters gevolgd door 8-15 alfanumerieke tekens (bijv. NL123456789B01)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "BTW-nummer succesvol gevalideerd" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "Validatie van BTW-nummer is mislukt" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "Validatie van BTW-nummer is mislukt. Controleer uw BTW-nummer." @@ -11582,12 +11653,12 @@ msgstr "BTW-tarief" msgid "VAT registered" msgstr "Btw-geregistreerd" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "BTW-instellingen succesvol opgeslagen" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "BTW-instellingen opgeslagen. We valideren uw BTW-nummer op de achtergrond." @@ -11595,15 +11666,15 @@ msgstr "BTW-instellingen opgeslagen. We valideren uw BTW-nummer op de achtergron msgid "VAT settings updated" msgstr "Btw-instellingen bijgewerkt" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "BTW-behandeling voor platformkosten" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "BTW-behandeling voor platformkosten: EU BTW-geregistreerde bedrijven kunnen de verleggingsregeling gebruiken (0% - Artikel 196 van BTW-richtlijn 2006/112/EG). Niet-BTW-geregistreerde bedrijven worden Ierse BTW van 23% in rekening gebracht." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "BTW-validatieservice tijdelijk niet beschikbaar" @@ -11616,7 +11687,7 @@ msgid "VAT: not registered" msgstr "Btw: niet geregistreerd" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11626,6 +11697,10 @@ msgstr "Naam locatie" msgid "Verification code" msgstr "Verificatiecode" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11636,9 +11711,14 @@ msgid "Verify Email" msgstr "Verifieer e-mail" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Verifieer je e-mailadres" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "Verifiëren..." @@ -11656,8 +11736,7 @@ msgstr "Bekijk" msgid "View All" msgstr "Alles bekijken" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11697,7 +11776,7 @@ msgstr "Details van {0} {1} bekijken" msgid "View Event" msgstr "Bekijk evenement" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Evenementpagina bekijken" @@ -11730,8 +11809,8 @@ msgstr "Bekijk op Google Maps" msgid "View Order" msgstr "Bestelling Bekijken" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Bekijk bestelgegevens" @@ -11781,7 +11860,7 @@ msgstr "VK" msgid "Waiting" msgstr "Wachtend" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "Wachten op betaling" @@ -11801,7 +11880,7 @@ msgstr "Wachtlijst" msgid "Waitlist Enabled" msgstr "Wachtlijst ingeschakeld" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "Wachtlijstaanbod verlopen" @@ -11809,7 +11888,7 @@ msgstr "Wachtlijstaanbod verlopen" msgid "Waitlist triggered" msgstr "Wachtlijst geactiveerd" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Waarschuwing: dit is de standaardsysteemconfiguratie. Wijzigingen zijn van invloed op alle accounts die geen specifieke configuratie toegewezen hebben." @@ -11845,7 +11924,7 @@ msgstr "We konden de bestelling die u zoekt niet vinden. De link is mogelijk ver msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "We konden het ticket dat u zoekt niet vinden. De link is mogelijk verlopen of de ticketgegevens zijn gewijzigd." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "We konden deze bestelling niet vinden. Mogelijk is deze verwijderd." @@ -11861,7 +11940,7 @@ msgstr "We konden Stripe nu niet bereiken. Probeer het zo opnieuw." msgid "We couldn't reorder the categories. Please try again." msgstr "We konden de categorieën niet opnieuw ordenen. Probeer het opnieuw." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Er is een probleem opgetreden bij het laden van deze pagina. Probeer het opnieuw." @@ -11882,6 +11961,10 @@ msgstr "We raden afmetingen aan van 2160px bij 1080px en een maximale bestandsgr msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "We raden een formaat van 400x400 px aan, met een maximale bestandsgrootte van 5 MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "We gebruiken cookies om te begrijpen hoe de site wordt gebruikt en om je ervaring te verbeteren." @@ -11890,7 +11973,7 @@ msgstr "We gebruiken cookies om te begrijpen hoe de site wordt gebruikt en om je msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "We konden je betaling niet bevestigen. Probeer het opnieuw of neem contact op met de klantenservice." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "We konden uw BTW-nummer niet valideren na meerdere pogingen. We blijven het op de achtergrond proberen. Kom later terug." @@ -11898,16 +11981,16 @@ msgstr "We konden uw BTW-nummer niet valideren na meerdere pogingen. We blijven msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "We laten je per e-mail weten als er een plek beschikbaar komt voor {productDisplayName}." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Na het opslaan openen we een berichtopsteller met een vooraf ingevuld sjabloon. Jij controleert en verstuurt het — er wordt niets automatisch verzonden." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "We sturen je tickets naar dit e-mailadres" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "We valideren uw BTW-nummer op de achtergrond. Als er problemen zijn, laten we het u weten." @@ -12004,7 +12087,7 @@ msgstr "Welkom aan boord! Log in om verder te gaan." msgid "Welcome back" msgstr "Welkom terug" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Welkom terug{0} 👋" @@ -12024,7 +12107,7 @@ msgstr "Welzijn" msgid "What are Tiered Products?" msgstr "Wat zijn gelaagde producten?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "Wat is een categorie?" @@ -12144,6 +12227,10 @@ msgstr "Wanneer check-in sluit" msgid "When check-in opens" msgstr "Wanneer check-in opent" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "Als deze optie is ingeschakeld, worden facturen gegenereerd voor ticketbestellingen. Facturen worden samen met de e-mail ter bevestiging van de bestelling verzonden. Bezoekers kunnen hun facturen ook downloaden van de bestelbevestigingspagina." @@ -12156,7 +12243,7 @@ msgstr "Indien ingeschakeld, kunnen nieuwe evenementen deelnemers hun eigen tick msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "Indien ingeschakeld, tonen nieuwe evenementen een marketing opt-in selectievakje tijdens het afrekenen. Dit kan per evenement worden overschreven." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "Indien ingeschakeld, worden er geen applicatiekosten in rekening gebracht bij Stripe Connect-transacties. Gebruik dit voor landen waar applicatiekosten niet worden ondersteund." @@ -12192,11 +12279,11 @@ msgstr "Widget voorbeeld" msgid "Widget Settings" msgstr "Widget instellingen" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "Werken" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12230,7 +12317,7 @@ msgid "year" msgstr "jaar" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Jaar tot nu toe" @@ -12248,11 +12335,11 @@ msgstr "jaren" msgid "Yes" msgstr "Ja" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Ja - Ik heb een geldig EU BTW-registratienummer" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Ja, annuleer mijn bestelling" @@ -12268,7 +12355,7 @@ msgstr "Je wijzigt je e-mailadres in <0>{0}." msgid "You are impersonating <0>{0} ({1})" msgstr "U imiteert <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "U geeft een gedeeltelijke terugbetaling uit. De klant krijgt {0} {1} terugbetaald." @@ -12293,7 +12380,7 @@ msgstr "Je kunt dit later voor afzonderlijke data overschrijven." msgid "You can still manually offer tickets if needed." msgstr "U kunt tickets indien nodig nog steeds handmatig aanbieden." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "U kunt de laatste actieve organisator van uw account niet archiveren." @@ -12314,11 +12401,11 @@ msgstr "Je kunt de laatste categorie niet verwijderen." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "Je kunt dit prijsniveau niet verwijderen omdat er al producten voor dit niveau worden verkocht. In plaats daarvan kun je het verbergen." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "Je kunt de rol of status van de accounteigenaar niet bewerken." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "Je kunt een handmatig aangemaakte bestelling niet terugbetalen." @@ -12334,11 +12421,11 @@ msgstr "Je hebt deze uitnodiging al geaccepteerd. Log in om verder te gaan." msgid "You have no pending email change." msgstr "Je hebt geen in behandeling zijnde e-mailwijziging." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "U heeft uw berichtenlimiet bereikt." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "Je hebt geen tijd meer om je bestelling af te ronden." @@ -12346,11 +12433,11 @@ msgstr "Je hebt geen tijd meer om je bestelling af te ronden." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Je hebt belastingen en kosten toegevoegd aan een Gratis product. Wilt u deze verwijderen?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "U moet erkennen dat deze e-mail geen promotie is" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Je moet je verantwoordelijkheden erkennen voordat je opslaat" @@ -12410,7 +12497,7 @@ msgstr "U hebt een product nodig voordat u een capaciteitstoewijzing kunt maken. msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Je hebt minstens één product nodig om te beginnen. Gratis, betaald of laat de gebruiker beslissen wat hij wil betalen." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Je wijzigt sessietijden" @@ -12422,7 +12509,7 @@ msgstr "Je gaat naar {0}!" msgid "You're on the waitlist!" msgstr "Je staat op de wachtlijst!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "Je hebt een plek aangeboden gekregen!" @@ -12430,7 +12517,7 @@ msgstr "Je hebt een plek aangeboden gekregen!" msgid "You've changed the session time" msgstr "Je hebt de sessietijd gewijzigd" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Uw account heeft berichtenlimieten. Om uw limieten te verhogen, neem contact met ons op via" @@ -12458,11 +12545,11 @@ msgstr "Je geweldige website 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "Je check-in lijst is succesvol aangemaakt. Deel de onderstaande link met je check-in personeel." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "Uw huidige bestelling gaat verloren." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Uw gegevens" @@ -12470,7 +12557,7 @@ msgstr "Uw gegevens" msgid "Your Email" msgstr "Uw e-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "Uw verzoek om uw e-mail te wijzigen in <0>{0} is in behandeling. Controleer uw e-mail om te bevestigen" @@ -12498,7 +12585,7 @@ msgstr "Jouw naam" msgid "Your new password must be at least 8 characters long." msgstr "Uw nieuwe wachtwoord moet minimaal 8 tekens lang zijn." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Uw bestelling" @@ -12510,7 +12597,7 @@ msgstr "Uw bestelgegevens zijn bijgewerkt. Er is een bevestigingsmail verzonden msgid "Your order has been cancelled" msgstr "Uw bestelling is geannuleerd" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "Uw bestelling is geannuleerd." @@ -12535,7 +12622,7 @@ msgstr "Adres van je organisator" msgid "Your password" msgstr "Uw wachtwoord" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Je betaling wordt verwerkt." @@ -12543,11 +12630,11 @@ msgstr "Je betaling wordt verwerkt." msgid "Your payment is protected with bank-level encryption" msgstr "Uw betaling is beveiligd met encryptie op bankniveau" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Uw betaling is niet gelukt, probeer het opnieuw." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Uw betaling is mislukt. Probeer het opnieuw." @@ -12555,7 +12642,7 @@ msgstr "Uw betaling is mislukt. Probeer het opnieuw." msgid "Your Plan" msgstr "Uw plan" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Je terugbetaling wordt verwerkt." @@ -12571,19 +12658,19 @@ msgstr "Uw ticket voor" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "Je ticket is nog steeds geldig — er is geen actie nodig tenzij de nieuwe tijd je niet uitkomt. Reageer op deze e-mail als je vragen hebt." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "Je tickets zijn bevestigd." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "Uw BTW-nummer staat in de wachtrij voor validatie" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "Uw BTW-nummer wordt gevalideerd wanneer u opslaat" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "Je wachtlijstaanbod is verlopen en we konden je bestelling niet voltooien. Plaats je opnieuw op de wachtlijst om op de hoogte te worden gehouden wanneer er meer plekken beschikbaar komen." @@ -12591,19 +12678,19 @@ msgstr "Je wachtlijstaanbod is verlopen en we konden je bestelling niet voltooie msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "Postcode" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "Postcode" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "Postcode" diff --git a/frontend/src/locales/pl.js b/frontend/src/locales/pl.js index 36c34053d7..0ba120b576 100644 --- a/frontend/src/locales/pl.js +++ b/frontend/src/locales/pl.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Nie ma jeszcze nic do pokazania'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>wymeldowany pomyślnie\"],\"KMgp2+\":[[\"0\"],\" dostępne\"],\"Pmr5xp\":[[\"0\"],\" utworzony pomyślnie\"],\"FImCSc\":[[\"0\"],\" zaktualizowany pomyślnie\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dni, \",[\"hours\"],\" godzin, \",[\"minutes\"],\" minut i \",[\"seconds\"],\" sekund\"],\"f3RdEk\":[[\"hours\"],\" godzin, \",[\"minutes\"],\" minut i \",[\"seconds\"],\" sekund\"],\"fyE7Au\":[[\"minutes\"],\" minut i \",[\"seconds\"],\" sekund\"],\"NlQ0cx\":[\"Pierwsze wydarzenie \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://twoja-strona.com\",\"qnSLLW\":\"<0>Wprowadź cenę bez podatków i opłat.<1>Podatki i opłaty można dodać poniżej.\",\"ZjMs6e\":\"<0>Liczba produktów dostępnych dla tego produktu<1>Ta wartość może zostać zastąpiona, jeśli istnieją <2>Limity Pojemności związane z tym produktem.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minut i 0 sekund\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Główna Ulica\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Pole daty. Idealne do pytania o datę urodzenia itp.\",\"6euFZ/\":[\"Domyślny \",[\"type\"],\" jest automatycznie stosowany do wszystkich nowych produktów. Możesz to zastąpić dla każdego produktu indywidualnie.\"],\"SMUbbQ\":\"Pole rozwijane pozwala tylko na jedną selekcję\",\"qv4bfj\":\"Opłata, jak opłata rezerwacyjna lub opłata serwisowa\",\"POT0K/\":\"Stała kwota za produkt. Np. 0,50 USD za produkt\",\"f4vJgj\":\"Pole tekstowe wielowierszowe\",\"OIPtI5\":\"Procent ceny produktu. Np. 3,5% ceny produktu\",\"ZthcdI\":\"Kod promocyjny bez rabatu może być użyty do ujawnienia ukrytych produktów.\",\"AG/qmQ\":\"Opcja Radio ma wiele opcji, ale tylko jedna może być wybrana.\",\"h179TP\":\"Krótki opis wydarzenia, który będzie wyświetlany w wynikach wyszukiwania i podczas udostępniania w mediach społecznościowych. Domyślnie zostanie użyty opis wydarzenia\",\"WKMnh4\":\"Pole tekstowe jednowierszowe\",\"BHZbFy\":\"Jedno pytanie na zamówienie. Np. Jaki jest Twój adres wysyłki?\",\"Fuh+dI\":\"Jedno pytanie na produkt. Np. Jaki jest rozmiar Twojej koszulki?\",\"RlJmQg\":\"Standardowy podatek, jak VAT lub GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Akceptuj przelewy bankowe, czeki lub inne metody płatności offline\",\"hrvLf4\":\"Akceptuj płatności kartą kredytową za pomocą Stripe\",\"bfXQ+N\":\"Akceptuj zaproszenie\",\"AeXO77\":\"Konto\",\"lkNdiH\":\"Nazwa konta\",\"Puv7+X\":\"Ustawienia konta\",\"OmylXO\":\"Konto zaktualizowane pomyślnie\",\"7L01XJ\":\"Akcje\",\"FQBaXG\":\"Aktywuj\",\"5T2HxQ\":\"Data aktywacji\",\"F6pfE9\":\"Aktywny\",\"/PN1DA\":\"Dodaj opis dla tej listy odpraw\",\"0/vPdA\":\"Dodaj wszelkie notatki o uczestniku. Nie będą widoczne dla uczestnika.\",\"Or1CPR\":\"Dodaj wszelkie notatki o uczestniku...\",\"l3sZO1\":\"Dodaj wszelkie notatki o zamówieniu. Nie będą widoczne dla klienta.\",\"xMekgu\":\"Dodaj wszelkie notatki o zamówieniu...\",\"PGPGsL\":\"Dodaj opis\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Dodaj instrukcje dla płatności offline (np. szczegóły przelewu bankowego, gdzie wysłać czeki, terminy płatności)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Dodaj nowy\",\"TZxnm8\":\"Dodaj opcję\",\"24l4x6\":\"Dodaj produkt\",\"8q0EdE\":\"Dodaj produkt do kategorii\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Dodaj podatek lub opłatę\",\"goOKRY\":\"Dodaj poziom\",\"oZW/gT\":\"Dodaj do kalendarza\",\"pn5qSs\":\"Dodatkowe informacje\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adres\",\"NY/x1b\":\"Linia adresu 1\",\"POdIrN\":\"Linia adresu 1\",\"cormHa\":\"Linia adresu 2\",\"gwk5gg\":\"Linia adresu 2\",\"U3pytU\":\"Administrator\",\"HLDaLi\":\"Użytkownicy administratorzy mają pełny dostęp do wydarzeń i ustawień konta.\",\"W7AfhC\":\"Wszyscy uczestnicy tego wydarzenia\",\"cde2hc\":\"Wszystkie produkty\",\"5CQ+r0\":\"Zezwól uczestnikom powiązanym z nieopłaconymi zamówieniami na odprawę\",\"ipYKgM\":\"Zezwól na indeksowanie przez wyszukiwarki\",\"LRbt6D\":\"Zezwól wyszukiwarkom na indeksowanie tego wydarzenia\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Niesamowite, Wydarzenie, Słowa kluczowe...\",\"hehnjM\":\"Kwota\",\"R2O9Rg\":[\"Kwota zapłacona (\",[\"0\"],\")\"],\"V7MwOy\":\"Wystąpił błąd podczas ładowania strony\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Wystąpił nieoczekiwany błąd.\",\"byKna+\":\"Wystąpił nieoczekiwany błąd. Spróbuj ponownie.\",\"ubdMGz\":\"Wszystkie zapytania od posiadaczy produktów będą wysyłane na ten adres e-mail. Będzie również używany jako adres \\\"odpowiedz-do\\\" dla wszystkich e-maili wysyłanych z tego wydarzenia\",\"aAIQg2\":\"Wygląd\",\"Ym1gnK\":\"zastosowane\",\"sy6fss\":[\"Dotyczy \",[\"0\"],\" produktów\"],\"kadJKg\":\"Dotyczy 1 produktu\",\"DB8zMK\":\"Zastosuj\",\"GctSSm\":\"Zastosuj kod promocyjny\",\"ARBThj\":[\"Zastosuj to \",[\"type\"],\" do wszystkich nowych produktów\"],\"S0ctOE\":\"Zarchiwizuj wydarzenie\",\"TdfEV7\":\"Zarchiwizowane\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Czy na pewno chcesz aktywować tego uczestnika?\",\"TvkW9+\":\"Czy na pewno chcesz zarchiwizować to wydarzenie?\",\"/CV2x+\":\"Czy na pewno chcesz anulować tego uczestnika? To unieważni jego bilet\",\"YgRSEE\":\"Czy na pewno chcesz usunąć ten kod promocyjny?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Czy na pewno chcesz zrobić to wydarzenie szkicem? To sprawi, że wydarzenie będzie niewidoczne dla publiczności\",\"mEHQ8I\":\"Czy na pewno chcesz opublikować to wydarzenie? To sprawi, że wydarzenie będzie widoczne dla publiczności\",\"s4JozW\":\"Czy na pewno chcesz przywrócić to wydarzenie? Zostanie przywrócone jako szkic wydarzenia.\",\"vJuISq\":\"Czy na pewno chcesz usunąć to przypisanie pojemności?\",\"baHeCz\":\"Czy na pewno chcesz usunąć tę listę odpraw?\",\"LBLOqH\":\"Pytaj raz na zamówienie\",\"wu98dY\":\"Pytaj raz na produkt\",\"ss9PbX\":\"Uczestnik\",\"m0CFV2\":\"Szczegóły uczestnika\",\"QKim6l\":\"Uczestnik nie znaleziony\",\"R5IT/I\":\"Notatki uczestnika\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Bilet uczestnika\",\"9SZT4E\":\"Uczestnicy\",\"iPBfZP\":\"Uczestnicy zarejestrowani\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatyczne dopasowanie rozmiaru\",\"vZ5qKF\":\"Automatycznie dopasuj wysokość widgetu na podstawie zawartości. Gdy wyłączone, widget wypełni wysokość kontenera.\",\"4lVaWA\":\"Oczekuje na płatność offline\",\"2rHwhl\":\"Oczekuje na płatność offline\",\"3wF4Q/\":\"Oczekuje na płatność\",\"ioG+xt\":\"Oczekuje na płatność\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Świetny Organizator Sp. z o.o.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Powrót do strony wydarzenia\",\"VCoEm+\":\"Powrót do logowania\",\"k1bLf+\":\"Kolor tła\",\"I7xjqg\":\"Typ tła\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Adres rozliczeniowy\",\"/xC/im\":\"Ustawienia rozliczeń\",\"rp/zaT\":\"Brazylijski portugalski\",\"whqocw\":\"Rejestrując się, zgadzasz się na nasze <0>Warunki korzystania z usługi i <1>Politykę prywatności.\",\"bcCn6r\":\"Typ kalkulacji\",\"+8bmSu\":\"Kalifornia\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Anuluj\",\"Gjt/py\":\"Anuluj zmianę e-maila\",\"tVJk4q\":\"Anuluj zamówienie\",\"Os6n2a\":\"Anuluj zamówienie\",\"Mz7Ygx\":[\"Anuluj zamówienie \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Anulowane\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Pojemność\",\"V6Q5RZ\":\"Przypisanie pojemności utworzone pomyślnie\",\"k5p8dz\":\"Przypisanie pojemności usunięte pomyślnie\",\"nDBs04\":\"Zarządzanie pojemnością\",\"ddha3c\":\"Kategorie pozwalają grupować produkty razem. Na przykład, możesz mieć kategorię dla \\\"Biletów\\\" i inną dla \\\"Towarów\\\".\",\"iS0wAT\":\"Kategorie pomagają organizować Twoje produkty. Ten tytuł będzie wyświetlany na publicznej stronie wydarzenia.\",\"eorM7z\":\"Kategorie zostały pomyślnie przeorganizowane.\",\"3EXqwa\":\"Kategoria utworzona pomyślnie\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Zmień hasło\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Zameldowanie \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Zameldowanie i oznaczenie zamówienia jako opłacone\",\"QYLpB4\":\"Tylko zameldowanie\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Sprawdź to wydarzenie!\",\"gXcPxc\":\"Odprawa\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Lista odpraw usunięta pomyślnie\",\"+hBhWk\":\"Lista odpraw wygasła\",\"mBsBHq\":\"Lista odpraw nie jest aktywna\",\"vPqpQG\":\"Lista odpraw nie znaleziona\",\"tejfAy\":\"Listy odpraw\",\"hD1ocH\":\"URL zameldowania skopiowany do schowka\",\"CNafaC\":\"Opcje pól wyboru pozwalają na wielokrotny wybór\",\"SpabVf\":\"Pola wyboru\",\"CRu4lK\":\"Zameldowany\",\"znIg+z\":\"Płatność\",\"1WnhCL\":\"Ustawienia płatności\",\"6imsQS\":\"Chiński (uproszczony)\",\"JjkX4+\":\"Wybierz kolor dla swojego tła\",\"/Jizh9\":\"Wybierz konto\",\"3wV73y\":\"Miasto\",\"FG98gC\":\"Wyczyść tekst wyszukiwania\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Kliknij, aby skopiować\",\"yz7wBu\":\"Zamknij\",\"62Ciis\":\"Zamknij pasek boczny\",\"EWPtMO\":\"Kod\",\"ercTDX\":\"Kod musi mieć od 3 do 50 znaków\",\"oqr9HB\":\"Zwiń ten produkt, gdy strona wydarzenia jest początkowo ładowana\",\"jZlrte\":\"Kolor\",\"Vd+LC3\":\"Kolor musi być prawidłowym kodem koloru hex. Przykład: #ffffff\",\"1HfW/F\":\"Kolory\",\"VZeG/A\":\"Wkrótce\",\"yPI7n9\":\"Słowa kluczowe oddzielone przecinkami opisujące wydarzenie. Będą używane przez wyszukiwarki do kategoryzacji i indeksowania wydarzenia\",\"NPZqBL\":\"Zakończ zamówienie\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Zakończ płatność\",\"qqWcBV\":\"Zakończone\",\"6HK5Ct\":\"Zakończone zamówienia\",\"NWVRtl\":\"Zakończone zamówienia\",\"DwF9eH\":\"Kod komponentu\",\"Tf55h7\":\"Skonfigurowany rabat\",\"7VpPHA\":\"Potwierdź\",\"ZaEJZM\":\"Potwierdź zmianę e-maila\",\"yjkELF\":\"Potwierdź nowe hasło\",\"xnWESi\":\"Potwierdź hasło\",\"p2/GCq\":\"Potwierdź hasło\",\"wnDgGj\":\"Potwierdzanie adresu e-mail...\",\"pbAk7a\":\"Połącz Stripe\",\"UMGQOh\":\"Połącz z Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Szczegóły połączenia\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Kontynuuj\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Tekst przycisku kontynuacji\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Skopiowane\",\"T5rdis\":\"skopiowane do schowka\",\"he3ygx\":\"Kopiuj\",\"r2B2P8\":\"Kopiuj URL zameldowania\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Kopiuj link\",\"E6nRW7\":\"Kopiuj URL\",\"JNCzPW\":\"Kraj\",\"IF7RiR\":\"Okładka\",\"hYgDIe\":\"Utwórz\",\"b9XOHo\":[\"Utwórz \",[\"0\"]],\"k9RiLi\":\"Utwórz produkt\",\"6kdXbW\":\"Utwórz kod promocyjny\",\"n5pRtF\":\"Utwórz bilet\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"utwórz organizatora\",\"ipP6Ue\":\"Utwórz uczestnika\",\"VwdqVy\":\"Utwórz przypisanie pojemności\",\"EwoMtl\":\"Utwórz kategorię\",\"XletzW\":\"Utwórz kategorię\",\"WVbTwK\":\"Utwórz listę zameldowań\",\"uN355O\":\"Utwórz wydarzenie\",\"BOqY23\":\"Utwórz nowe\",\"kpJAeS\":\"Utwórz organizatora\",\"a0EjD+\":\"Utwórz produkt\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Utwórz kod promocyjny\",\"B3Mkdt\":\"Utwórz pytanie\",\"UKfi21\":\"Utwórz podatek lub opłatę\",\"d+F6q9\":\"Utworzone\",\"Q2lUR2\":\"Waluta\",\"DCKkhU\":\"Aktualne hasło\",\"uIElGP\":\"Niestandardowy URL map\",\"UEqXyt\":\"Niestandardowy zakres\",\"876pfE\":\"Klient\",\"QOg2Sf\":\"Dostosuj ustawienia e-mail i powiadomień dla tego wydarzenia\",\"Y9Z/vP\":\"Dostosuj stronę główną wydarzenia i komunikaty płatności\",\"2E2O5H\":\"Dostosuj różne ustawienia dla tego wydarzenia\",\"iJhSxe\":\"Dostosuj ustawienia SEO dla tego wydarzenia\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Strefa zagrożenia\",\"ZQKLI1\":\"Strefa zagrożenia\",\"7p5kLi\":\"Panel\",\"mYGY3B\":\"Data\",\"JvUngl\":\"Data i czas\",\"JJhRbH\":\"Pojemność pierwszego dnia\",\"cnGeoo\":\"Usuń\",\"jRJZxD\":\"Usuń pojemność\",\"VskHIx\":\"Usuń kategorię\",\"Qrc8RZ\":\"Usuń listę zameldowań\",\"WHf154\":\"Usuń kod\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Opis\",\"YC3oXa\":\"Opis dla personelu zameldowań\",\"URmyfc\":\"Szczegóły\",\"1lRT3t\":\"Wyłączenie tej pojemności będzie śledzić sprzedaż, ale nie zatrzyma jej po osiągnięciu limitu\",\"H6Ma8Z\":\"Zniżka\",\"ypJ62C\":\"Zniżka %\",\"3LtiBI\":[\"Zniżka w \",[\"0\"]],\"C8JLas\":\"Typ zniżki\",\"1QfxQT\":\"Zamknij\",\"DZlSLn\":\"Etykieta dokumentu\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Darowizna / Produkt zapłać ile chcesz\",\"OvNbls\":\"Pobierz .ics\",\"kodV18\":\"Pobierz CSV\",\"CELKku\":\"Pobierz fakturę\",\"LQrXcu\":\"Pobierz fakturę\",\"QIodqd\":\"Pobierz kod QR\",\"yhjU+j\":\"Pobieranie faktury\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Wybór z listy rozwijanej\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplikuj wydarzenie\",\"3ogkAk\":\"Duplikuj wydarzenie\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Opcje duplikacji\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Wcześniak\",\"ePK91l\":\"Edytuj\",\"N6j2JH\":[\"Edytuj \",[\"0\"]],\"kBkYSa\":\"Edytuj pojemność\",\"oHE9JT\":\"Edytuj przypisanie pojemności\",\"j1Jl7s\":\"Edytuj kategorię\",\"FU1gvP\":\"Edytuj listę zameldowań\",\"iFgaVN\":\"Edytuj kod\",\"jrBSO1\":\"Edytuj organizatora\",\"tdD/QN\":\"Edytuj produkt\",\"n143Tq\":\"Edytuj kategorię produktu\",\"9BdS63\":\"Edytuj kod promocyjny\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edytuj pytanie\",\"poTr35\":\"Edytuj użytkownika\",\"GTOcxw\":\"Edytuj użytkownika\",\"pqFrv2\":\"np. 2.50 za 2.50 USD\",\"3yiej1\":\"np. 23.5 za 23.5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Ustawienia e-mail i powiadomień\",\"ATGYL1\":\"Adres e-mail\",\"hzKQCy\":\"Adres e-mail\",\"HqP6Qf\":\"Zmiana e-mail anulowana pomyślnie\",\"mISwW1\":\"Zmiana e-mail w toku\",\"APuxIE\":\"Potwierdzenie e-mail wysłane ponownie\",\"YaCgdO\":\"Potwierdzenie e-mail wysłane ponownie pomyślnie\",\"jyt+cx\":\"Wiadomość w stopce e-mail\",\"I6F3cp\":\"E-mail nie zweryfikowany\",\"NTZ/NX\":\"Kod osadzenia\",\"4rnJq4\":\"Skrypt osadzenia\",\"8oPbg1\":\"Włącz fakturowanie\",\"j6w7d/\":\"Włącz tę pojemność, aby zatrzymać sprzedaż produktów po osiągnięciu limitu\",\"VFv2ZC\":\"Data zakończenia\",\"237hSL\":\"Zakończony\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Angielski\",\"MhVoma\":\"Wprowadź kwotę bez podatków i opłat.\",\"SlfejT\":\"Błąd\",\"3Z223G\":\"Błąd potwierdzania adresu e-mail\",\"a6gga1\":\"Błąd potwierdzania zmiany e-mail\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Wydarzenie\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Data wydarzenia\",\"0Zptey\":\"Domyślne ustawienia wydarzenia\",\"QcCPs8\":\"Szczegóły wydarzenia\",\"6fuA9p\":\"Wydarzenie zostało pomyślnie zduplikowane\",\"AEuj2m\":\"Strona główna wydarzenia\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Lokalizacja wydarzenia i szczegóły miejsca\",\"OopDbA\":\"Event page\",\"4/If97\":\"Aktualizacja statusu wydarzenia nie powiodła się. Spróbuj ponownie później\",\"btxLWj\":\"Status wydarzenia zaktualizowany\",\"nMU2d3\":\"Adres URL wydarzenia\",\"tst44n\":\"Wydarzenia\",\"sZg7s1\":\"Data wygaśnięcia\",\"KnN1Tu\":\"Wygasa\",\"uaSvqt\":\"Data wygaśnięcia\",\"GS+Mus\":\"Eksportuj\",\"9xAp/j\":\"Nie udało się anulować uczestnika\",\"ZpieFv\":\"Nie udało się anulować zamówienia\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Nie udało się pobrać faktury. Spróbuj ponownie.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Nie udało się załadować listy zameldowań\",\"ZQ15eN\":\"Nie udało się ponownie wysłać e-maila z biletem\",\"ejXy+D\":\"Nie udało się posortować produktów\",\"PLUB/s\":\"Opłata\",\"/mfICu\":\"Opłaty\",\"LyFC7X\":\"Filtruj zamówienia\",\"cSev+j\":\"Filtry\",\"CVw2MU\":[\"Filtry (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Pierwszy numer faktury\",\"V1EGGU\":\"Imię\",\"kODvZJ\":\"Imię\",\"S+tm06\":\"Imię musi mieć od 1 do 50 znaków\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Pierwsze użycie\",\"TpqW74\":\"Stały\",\"irpUxR\":\"Kwota stała\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Zapomniałeś hasła?\",\"2POOFK\":\"Darmowy\",\"P/OAYJ\":\"Darmowy produkt\",\"vAbVy9\":\"Darmowy produkt, nie wymaga informacji o płatności\",\"nLC6tu\":\"Francuski\",\"Weq9zb\":\"Ogólne\",\"DDcvSo\":\"Niemiecki\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Wróć do profilu\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Kalendarz Google\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Sprzedaż brutto\",\"yRg26W\":\"Sprzedaż brutto\",\"R4r4XO\":\"Goście\",\"26pGvx\":\"Masz kod promocyjny?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Oto przykład, jak możesz użyć komponentu w swojej aplikacji.\",\"Y1SSqh\":\"Oto komponent React, którego możesz użyć do osadzenia widżetu w swojej aplikacji.\",\"QuhVpV\":[\"Cześć \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Ukryte przed widokiem publicznym\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Ukryte pytania są widoczne tylko dla organizatora wydarzenia, a nie dla klienta.\",\"vLyv1R\":\"Ukryj\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Ukryj produkt po dacie zakończenia sprzedaży\",\"06s3w3\":\"Ukryj produkt przed datą rozpoczęcia sprzedaży\",\"axVMjA\":\"Ukryj produkt, chyba że użytkownik ma odpowiedni kod promocyjny\",\"ySQGHV\":\"Ukryj produkt po wyprzedaniu\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Ukryj ten produkt przed klientami\",\"Da29Y6\":\"Ukryj to pytanie\",\"fvDQhr\":\"Ukryj ten poziom przed użytkownikami\",\"lNipG+\":\"Ukrycie produktu uniemożliwi użytkownikom zobaczenie go na stronie wydarzenia.\",\"ZOBwQn\":\"Projekt strony głównej\",\"PRuBTd\":\"Projektant strony głównej\",\"YjVNGZ\":\"Podgląd strony głównej\",\"c3E/kw\":\"Jan\",\"8k8Njd\":\"Ile minut klient ma na ukończenie zamówienia. Zalecamy co najmniej 15 minut\",\"ySxKZe\":\"Ile razy można użyć tego kodu?\",\"dZsDbK\":[\"Przekroczono limit znaków HTML: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Zgadzam się z <0>regulaminem\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Jeśli włączone, personel odprawy może oznaczyć uczestników jako sprawdzonych lub oznaczyć zamówienie jako opłacone i sprawdzić uczestników. Jeśli wyłączone, uczestnicy powiązani z nieopłaconymi zamówieniami nie mogą być sprawdzeni.\",\"muXhGi\":\"Jeśli włączone, organizator otrzyma powiadomienie e-mail, gdy zostanie złożone nowe zamówienie\",\"6fLyj/\":\"Jeśli nie zażądałeś tej zmiany, natychmiast zmień hasło.\",\"n/ZDCz\":\"Obraz został pomyślnie usunięty\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Obraz został pomyślnie przesłany\",\"VyUuZb\":\"URL obrazu\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Nieaktywny\",\"T0K0yl\":\"Nieaktywni użytkownicy nie mogą się zalogować.\",\"kO44sp\":\"Dołącz szczegóły połączenia dla swojego wydarzenia online. Te szczegóły będą wyświetlane na stronie podsumowania zamówienia i stronie biletu uczestnika.\",\"FlQKnG\":\"Uwzględnij podatek i opłaty w cenie\",\"Vi+BiW\":[\"Zawiera \",[\"0\"],\" produktów\"],\"lpm0+y\":\"Zawiera 1 produkt\",\"UiAk5P\":\"Wstaw obraz\",\"OyLdaz\":\"Zaproszenie wysłane ponownie!\",\"HE6KcK\":\"Zaproszenie cofnięte!\",\"SQKPvQ\":\"Zaproś użytkownika\",\"bKOYkd\":\"Faktura została pomyślnie pobrana\",\"alD1+n\":\"Notatki do faktury\",\"kOtCs2\":\"Numeracja faktur\",\"UZ2GSZ\":\"Ustawienia faktury\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Przedmiot\",\"KFXip/\":\"Jan\",\"XcgRvb\":\"Kowalski\",\"87a/t/\":\"Etykieta\",\"vXIe7J\":\"Język\",\"2LMsOq\":\"Ostatnie 12 miesięcy\",\"vfe90m\":\"Ostatnie 14 dni\",\"aK4uBd\":\"Ostatnie 24 godziny\",\"uq2BmQ\":\"Ostatnie 30 dni\",\"bB6Ram\":\"Ostatnie 48 godzin\",\"VlnB7s\":\"Ostatnie 6 miesięcy\",\"ct2SYD\":\"Ostatnie 7 dni\",\"XgOuA7\":\"Ostatnie 90 dni\",\"I3yitW\":\"Ostatnie logowanie\",\"1ZaQUH\":\"Nazwisko\",\"UXBCwc\":\"Nazwisko\",\"tKCBU0\":\"Ostatnio używany\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Pozostaw puste, aby użyć domyślnego słowa \\\"Faktura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Ładowanie...\",\"wJijgU\":\"Lokalizacja\",\"sQia9P\":\"Zaloguj się\",\"zUDyah\":\"Logowanie\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Wyloguj się\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Uczyń adres rozliczeniowy obowiązkowym podczas płatności\",\"MU3ijv\":\"Uczyń to pytanie obowiązkowym\",\"wckWOP\":\"Zarządzaj\",\"onpJrA\":\"Zarządzaj uczestnikiem\",\"n4SpU5\":\"Zarządzaj wydarzeniem\",\"WVgSTy\":\"Zarządzaj zamówieniem\",\"1MAvUY\":\"Zarządzaj ustawieniami płatności i fakturowania dla tego wydarzenia.\",\"cQrNR3\":\"Zarządzaj profilem\",\"AtXtSw\":\"Zarządzaj podatkami i opłatami, które mogą być zastosowane do Twoich produktów\",\"ophZVW\":\"Zarządzaj biletami\",\"DdHfeW\":\"Zarządzaj szczegółami konta i ustawieniami domyślnymi\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Zarządzaj użytkownikami i ich uprawnieniami\",\"1m+YT2\":\"Obowiązkowe pytania muszą być odpowiedzi przed dokonaniem płatności przez klienta.\",\"Dim4LO\":\"Dodaj uczestnika ręcznie\",\"e4KdjJ\":\"Dodaj uczestnika ręcznie\",\"vFjEnF\":\"Oznacz jako opłacone\",\"g9dPPQ\":\"Maksimum na zamówienie\",\"l5OcwO\":\"Wyślij wiadomość do uczestnika\",\"Gv5AMu\":\"Wyślij wiadomość do uczestników\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Wyślij wiadomość do kupującego\",\"tNZzFb\":\"Treść wiadomości\",\"lYDV/s\":\"Wyślij wiadomość do indywidualnych uczestników\",\"V7DYWd\":\"Wiadomość wysłana\",\"t7TeQU\":\"Wiadomości\",\"xFRMlO\":\"Minimum na zamówienie\",\"QYcUEf\":\"Cena minimalna\",\"RDie0n\":\"Różne\",\"mYLhkl\":\"Ustawienia różne\",\"KYveV8\":\"Pole tekstowe wielowierszowe\",\"VD0iA7\":\"Wiele opcji cenowych. Idealne dla produktów wczesnych ptaków itp.\",\"/bhMdO\":\"Opis mojego niesamowitego wydarzenia...\",\"vX8/tc\":\"Tytuł mojego niesamowitego wydarzenia...\",\"hKtWk2\":\"Mój profil\",\"fj5byd\":\"N/D\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nazwa\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Przejdź do uczestnika\",\"qqeAJM\":\"Nigdy\",\"7vhWI8\":\"Nowe hasło\",\"1UzENP\":\"Nie\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Brak zarchiwizowanych wydarzeń do wyświetlenia.\",\"q2LEDV\":\"Nie znaleziono uczestników dla tego zamówienia.\",\"zlHa5R\":\"Żadni uczestnicy nie zostali dodani do tego zamówienia.\",\"Wjz5KP\":\"Brak uczestników do wyświetlenia\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Brak przypisań pojemności\",\"a/gMx2\":\"Brak list zameldowań\",\"tMFDem\":\"Brak dostępnych danych\",\"6Z/F61\":\"Brak danych do wyświetlenia. Wybierz zakres dat\",\"fFeCKc\":\"Brak zniżki\",\"HFucK5\":\"Brak zakończonych wydarzeń do wyświetlenia.\",\"yAlJXG\":\"Brak wydarzeń do wyświetlenia\",\"GqvPcv\":\"Brak dostępnych filtrów\",\"KPWxKD\":\"Brak wiadomości do wyświetlenia\",\"J2LkP8\":\"Brak zamówień do wyświetlenia\",\"RBXXtB\":\"Żadne metody płatności nie są obecnie dostępne. Skontaktuj się z organizatorem wydarzenia w celu uzyskania pomocy.\",\"ZWEfBE\":\"Brak wymaganej płatności\",\"ZPoHOn\":\"Żaden produkt nie jest powiązany z tym uczestnikiem.\",\"Ya1JhR\":\"Brak produktów dostępnych w tej kategorii.\",\"FTfObB\":\"Brak produktów jeszcze\",\"+Y976X\":\"Brak kodów promocyjnych do wyświetlenia\",\"MAavyl\":\"Żadne pytania nie zostały odpowiedzi przez tego uczestnika.\",\"SnlQeq\":\"Żadne pytania nie zostały zadane dla tego zamówienia.\",\"Ev2r9A\":\"Brak wyników\",\"gk5uwN\":\"Brak wyników wyszukiwania\",\"RHyZUL\":\"Brak wyników wyszukiwania.\",\"RY2eP1\":\"Żadne podatki lub opłaty nie zostały dodane.\",\"EdQY6l\":\"Żaden\",\"OJx3wK\":\"Niedostępny\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notatki\",\"jtrY3S\":\"Nic do pokazania jeszcze\",\"hFwWnI\":\"Ustawienia powiadomień\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Powiadom organizatora o nowych zamówieniach\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Liczba dni dozwolonych na płatność (pozostaw puste, aby pominąć warunki płatności z faktur)\",\"n86jmj\":\"Prefiks numeru\",\"mwe+2z\":\"Zamówienia offline nie są odzwierciedlane w statystykach wydarzenia, dopóki zamówienie nie zostanie oznaczone jako opłacone.\",\"dWBrJX\":\"Płatność offline nie powiodła się. Spróbuj ponownie lub skontaktuj się z organizatorem wydarzenia.\",\"fcnqjw\":\"Instrukcje płatności offline\",\"+eZ7dp\":\"Płatności offline\",\"ojDQlR\":\"Informacje o płatnościach offline\",\"u5oO/W\":\"Ustawienia płatności offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"W sprzedaży\",\"Ug4SfW\":\"Po utworzeniu wydarzenia, zobaczysz je tutaj.\",\"ZxnK5C\":\"Po rozpoczęciu zbierania danych, zobaczysz je tutaj.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Trwający\",\"z+nuVJ\":\"Wydarzenie online\",\"WKHW0N\":\"Szczegóły wydarzenia online\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Otwórz stronę zameldowania\",\"OdnLE4\":\"Otwórz pasek boczny\",\"ZZEYpT\":[\"Opcja \",[\"i\"]],\"oPknTP\":\"Opcjonalne dodatkowe informacje, które pojawią się na wszystkich fakturach (np. warunki płatności, opłaty za opóźnienia, polityka zwrotów)\",\"OrXJBY\":\"Opcjonalny prefiks dla numerów faktur (np. INV-)\",\"0zpgxV\":\"Opcje\",\"BzEFor\":\"lub\",\"UYUgdb\":\"Zamówienie\",\"mm+eaX\":\"Zamówienie nr\",\"B3gPuX\":\"Zamówienie anulowane\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Data zamówienia\",\"Tol4BF\":\"Szczegóły zamówienia\",\"WbImlQ\":\"Zamówienie zostało anulowane, a właściciel zamówienia został powiadomiony.\",\"nAn4Oe\":\"Zamówienie oznaczone jako opłacone\",\"uzEfRz\":\"Notatki zamówienia\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Referencja zamówienia\",\"acIJ41\":\"Status zamówienia\",\"GX6dZv\":\"Podsumowanie zamówienia\",\"tDTq0D\":\"Limit czasu zamówienia\",\"1h+RBg\":\"Zamówienia\",\"3y+V4p\":\"Adres organizacji\",\"GVcaW6\":\"Szczegóły organizacji\",\"nfnm9D\":\"Nazwa organizacji\",\"G5RhpL\":\"Organizator\",\"mYygCM\":\"Organizator jest wymagany\",\"Pa6G7v\":\"Nazwa organizatora\",\"l894xP\":\"Organizatorzy mogą zarządzać tylko wydarzeniami i produktami. Nie mogą zarządzać użytkownikami, ustawieniami konta ani informacjami rozliczeniowymi.\",\"fdjq4c\":\"Wypełnienie\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Strona nie znaleziona\",\"QbrUIo\":\"Wyświetlenia strony\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"opłacony\",\"HVW65c\":\"Opłacony produkt\",\"ZfxaB4\":\"Częściowo zwrócony\",\"8ZsakT\":\"Hasło\",\"TUJAyx\":\"Hasło musi mieć minimum 8 znaków\",\"vwGkYB\":\"Hasło musi mieć co najmniej 8 znaków\",\"BLTZ42\":\"Hasło zostało pomyślnie zresetowane. Zaloguj się nowym hasłem.\",\"f7SUun\":\"Hasła nie są takie same\",\"aEDp5C\":\"Wklej to tam, gdzie chcesz, aby widget się pojawił.\",\"+23bI/\":\"Patryk\",\"iAS9f2\":\"patryk@acme.com\",\"621rYf\":\"Płatność\",\"Lg+ewC\":\"Płatności i fakturowanie\",\"DZjk8u\":\"Ustawienia płatności i fakturowania\",\"lflimf\":\"Okres płatności\",\"JhtZAK\":\"Płatność nie powiodła się\",\"JEdsvQ\":\"Instrukcje płatności\",\"bLB3MJ\":\"Metody płatności\",\"QzmQBG\":\"Dostawca płatności\",\"lsxOPC\":\"Płatność otrzymana\",\"wJTzyi\":\"Status płatności\",\"xgav5v\":\"Płatność powiodła się!\",\"R29lO5\":\"Warunki płatności\",\"/roQKz\":\"Procent\",\"vPJ1FI\":\"Kwota procentowa\",\"xdA9ud\":\"Umieść to w swojej strony internetowej.\",\"blK94r\":\"Dodaj co najmniej jedną opcję\",\"FJ9Yat\":\"Sprawdź, czy podane informacje są poprawne\",\"TkQVup\":\"Sprawdź swój email i hasło i spróbuj ponownie\",\"sMiGXD\":\"Sprawdź, czy Twój email jest prawidłowy\",\"Ajavq0\":\"Sprawdź swój email, aby potwierdzić adres email\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Kontynuuj w nowej karcie\",\"hcX103\":\"Utwórz produkt\",\"cdR8d6\":\"Utwórz bilet\",\"x2mjl4\":\"Wprowadź prawidłowy URL obrazu, który wskazuje na obraz.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Uwaga\",\"C63rRe\":\"Wróć do strony wydarzenia, aby zacząć od nowa.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Wybierz co najmniej jeden produkt\",\"igBrCH\":\"Zweryfikuj swój adres email, aby uzyskać dostęp do wszystkich funkcji\",\"/IzmnP\":\"Poczekaj, przygotowujemy Twoją fakturę...\",\"MOERNx\":\"Portugalski\",\"qCJyMx\":\"Wiadomość po płatności\",\"g2UNkE\":\"Powered by\",\"Rs7IQv\":\"Wiadomość przed płatnością\",\"rdUucN\":\"Podgląd\",\"a7u1N9\":\"Cena\",\"CmoB9j\":\"Tryb wyświetlania ceny\",\"BI7D9d\":\"Cena nie ustawiona\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Typ ceny\",\"6RmHKN\":\"Główny kolor\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Główny kolor tekstu\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Drukuj wszystkie bilety\",\"DKwDdj\":\"Drukuj bilety\",\"K47k8R\":\"Produkt\",\"1JwlHk\":\"Kategoria produktu\",\"U61sAj\":\"Kategoria produktu została pomyślnie zaktualizowana.\",\"1USFWA\":\"Produkt został pomyślnie usunięty\",\"4Y2FZT\":\"Typ ceny produktu\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Sprzedaż produktów\",\"U/R4Ng\":\"Poziom produktu\",\"sJsr1h\":\"Typ produktu\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produkt(y)\",\"N0qXpE\":\"Produkty\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Sprzedane produkty\",\"/u4DIx\":\"Sprzedane produkty\",\"DJQEZc\":\"Produkty zostały pomyślnie posortowane\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil został pomyślnie zaktualizowany\",\"cl5WYc\":[\"Kod promocyjny \",[\"promo_code\"],\" zastosowany\"],\"P5sgAk\":\"Kod promocyjny\",\"yKWfjC\":\"Strona kodu promocyjnego\",\"RVb8Fo\":\"Kody promocyjne\",\"BZ9GWa\":\"Kody promocyjne mogą być używane do oferowania rabatów, dostępu przed sprzedażą lub zapewnienia specjalnego dostępu do Twojego wydarzenia.\",\"OP094m\":\"Raport kodów promocyjnych\",\"4kyDD5\":\"Podaj dodatkowy kontekst lub instrukcje dla tego pytania. Użyj tego pola, aby dodać warunki\\noraz zasady, wskazówki lub inne ważne informacje, które uczestnicy muszą znać przed udzieleniem odpowiedzi.\",\"toutGW\":\"Kod QR\",\"LkMOWF\":\"Dostępna ilość\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Pytanie usunięte\",\"avf0gk\":\"Opis pytania\",\"oQvMPn\":\"Tytuł pytania\",\"enzGAL\":\"Pytania\",\"ROv2ZT\":\"Pytania i odpowiedzi\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Opcja radiowa\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Odbiorca\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Zwrot nie powiódł się\",\"n10yGu\":\"Zwróć zamówienie\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Zwrot oczekuje\",\"xHpVRl\":\"Status zwrotu\",\"/BI0y9\":\"Zwrócony\",\"fgLNSM\":\"Zarejestruj się\",\"9+8Vez\":\"Pozostałe użycia\",\"tasfos\":\"usuń\",\"t/YqKh\":\"Usuń\",\"t9yxlZ\":\"Raporty\",\"prZGMe\":\"Wymagaj adresu rozliczeniowego\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Wyślij ponownie potwierdzenie emaila\",\"wIa8Qe\":\"Wyślij ponownie zaproszenie\",\"VeKsnD\":\"Wyślij ponownie email zamówienia\",\"dFuEhO\":\"Wyślij ponownie email biletu\",\"o6+Y6d\":\"Wysyłanie ponownie...\",\"OfhWJH\":\"Resetuj\",\"RfwZxd\":\"Resetuj hasło\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Przywróć wydarzenie\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Wróć do strony wydarzenia\",\"8YBH95\":\"Przychody\",\"PO/sOY\":\"Cofnij zaproszenie\",\"GDvlUT\":\"Rola\",\"ELa4O9\":\"Data zakończenia sprzedaży\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Data rozpoczęcia sprzedaży\",\"hBsw5C\":\"Sprzedaż zakończona\",\"kpAzPe\":\"Sprzedaż rozpoczyna się\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Zapisz\",\"IUwGEM\":\"Zapisz zmiany\",\"U65fiW\":\"Zapisz organizatora\",\"UGT5vp\":\"Zapisz ustawienia\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Szukaj po nazwie uczestnika, e-mailu lub numerze zamówienia...\",\"+pr/FY\":\"Szukaj po nazwie wydarzenia...\",\"3zRbWw\":\"Szukaj po nazwie, e-mailu lub numerze zamówienia...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Szukaj po nazwie...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Szukaj przypisania pojemności...\",\"r9M1hc\":\"Szukaj list odpraw...\",\"+0Yy2U\":\"Szukaj produktów\",\"YIix5Y\":\"Szukaj...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Kolor wtórny\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Kolor tekstu wtórnego\",\"02ePaq\":[\"Wybierz \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Wybierz kategorię...\",\"kWI/37\":\"Wybierz organizatora\",\"ixIx1f\":\"Wybierz produkt\",\"3oSV95\":\"Wybierz poziom produktu\",\"C4Y1hA\":\"Wybierz produkty\",\"hAjDQy\":\"Wybierz status\",\"QYARw/\":\"Wybierz bilet\",\"OMX4tH\":\"Wybierz bilety\",\"DrwwNd\":\"Wybierz okres czasu\",\"O/7I0o\":\"Wybierz...\",\"JlFcis\":\"Wyślij\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Wyślij wiadomość\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Wyślij wiadomość\",\"D7ZemV\":\"Wyślij potwierdzenie zamówienia i email biletu\",\"v1rRtW\":\"Wyślij test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Opis SEO\",\"/SIY6o\":\"Słowa kluczowe SEO\",\"GfWoKv\":\"Ustawienia SEO\",\"rXngLf\":\"Tytuł SEO\",\"/jZOZa\":\"Opłata za usługę\",\"Bj/QGQ\":\"Ustaw cenę minimalną i pozwól użytkownikom zapłacić więcej, jeśli się zdecydują\",\"L0pJmz\":\"Ustaw numer początkowy numeracji faktur. Nie można tego zmienić po wygenerowaniu faktur.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Ustawienia\",\"Z8lGw6\":\"Udostępnij\",\"B2V3cA\":\"Udostępnij wydarzenie\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Pokaż dostępną ilość produktu\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Pokaż więcej\",\"izwOOD\":\"Pokaż podatki i opłaty oddzielnie\",\"1SbbH8\":\"Pokazane klientowi po ich potwierdzeniu, na stronie podsumowania zamówienia.\",\"YfHZv0\":\"Pokazane klientowi przed potwierdzeniem\",\"CBBcly\":\"Pokazuje typowe pola adresu, w tym kraj\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Pole tekstowe jednoliniowe\",\"+P0Cn2\":\"Pomin to krok\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Wyprzedane\",\"Mi1rVn\":\"Wyprzedane\",\"nwtY4N\":\"Coś poszło nie tak\",\"GRChTw\":\"Coś poszło nie tak podczas usuwania podatku lub opłaty\",\"YHFrbe\":\"Coś poszło nie tak! Spróbuj ponownie\",\"kf83Ld\":\"Coś poszło nie tak.\",\"fWsBTs\":\"Coś poszło nie tak. Spróbuj ponownie.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Przepraszamy, ten kod promocyjny nie jest rozpoznany\",\"65A04M\":\"Hiszpański\",\"mFuBqb\":\"Produkt standardowy o stałej cenie\",\"D3iCkb\":\"Data rozpoczęcia\",\"/2by1f\":\"Staat lub region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Płatności Stripe nie są włączone dla tego wydarzenia.\",\"UJmAAK\":\"Temat\",\"X2rrlw\":\"Razem część\",\"zzDlyQ\":\"Powodzenie\",\"b0HJ45\":[\"Powodzenie! \",[\"0\"],\" otrzyma email wkrótce.\"],\"BJIEiF\":[\"Pomyślnie \",[\"0\"],\" uczestnika\"],\"OtgNFx\":\"Pomyślnie potwierdzona adres e-mail\",\"IKwyaF\":\"Pomyślnie potwierdzona zmiana e-maila\",\"zLmvhE\":\"Pomyślnie utworzony uczestnik\",\"gP22tw\":\"Pomyślnie utworzony produkt\",\"9mZEgt\":\"Pomyślnie utworzony kod promocyjny\",\"aIA9C4\":\"Pomyślnie utworzone pytanie\",\"J3RJSZ\":\"Pomyślnie zaktualizowany uczestnik\",\"3suLF0\":\"Pomyślnie zaktualizowane przypisanie pojemności\",\"Z+rnth\":\"Pomyślnie zaktualizowana lista odpraw\",\"vzJenu\":\"Pomyślnie zaktualizowane ustawienia email\",\"7kOMfV\":\"Pomyślnie zaktualizowane wydarzenie\",\"G0KW+e\":\"Pomyślnie zaktualizowany projekt strony głównej\",\"k9m6/E\":\"Pomyślnie zaktualizowane ustawienia strony głównej\",\"y/NR6s\":\"Pomyślnie zaktualizowana lokalizacja\",\"73nxDO\":\"Pomyślnie zaktualizowane różne ustawienia\",\"4H80qv\":\"Pomyślnie zaktualizowane zamówienie\",\"6xCBVN\":\"Pomyślnie zaktualizowane ustawienia płatności i fakturowania\",\"1Ycaad\":\"Pomyślnie zaktualizowano produkt\",\"70dYC8\":\"Pomyślnie zaktualizowany kod promocyjny\",\"F+pJnL\":\"Pomyślnie zaktualizowane ustawienia Seo\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Email wsparcia\",\"uRfugr\":\"Koszulka\",\"JpohL9\":\"Podatek\",\"geUFpZ\":\"Podatki i opłaty\",\"dFHcIn\":\"Szczegóły podatku\",\"wQzCPX\":\"Informacje podatkowe wyświetlane na dole wszystkich faktur (np. numer VAT, rejestracja podatkowa)\",\"0RXCDo\":\"Podatek lub opłata usunięte pomyślnie\",\"ZowkxF\":\"Podatki\",\"qu6/03\":\"Podatki i opłaty\",\"gypigA\":\"Ten kod promocyjny jest nieprawidłowy\",\"5ShqeM\":\"Lista kontrolna, której szukasz, nie istnieje.\",\"QXlz+n\":\"Domyślna waluta dla Twoich imprez.\",\"mnafgQ\":\"Domyślna strefa czasowa dla Twoich imprez.\",\"o7s5FA\":\"Język, w którym uczestnik otrzyma e-maile.\",\"NlfnUd\":\"Kliknięty link jest nieprawidłowy.\",\"HsFnrk\":[\"Maksymalna liczba produktów dla \",[\"0\"],\" to \",[\"1\"]],\"TSAiPM\":\"Strona, której szukasz, nie istnieje\",\"MSmKHn\":\"Cena wyświetlana klientowi będzie zawierać podatki i opłaty.\",\"6zQOg1\":\"Cena wyświetlana klientowi nie będzie zawierać podatków i opłat. Będą one wyświetlane oddzielnie\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Tytuł wydarzenia, który będzie wyświetlany w wynikach wyszukiwarki i podczas udostępniania w mediach społecznościowych. Domyślnie będzie używany tytuł wydarzenia\",\"wDx3FF\":\"Brak dostępnych produktów dla tego wydarzenia\",\"pNgdBv\":\"Brak dostępnych produktów w tej kategorii\",\"rMcHYt\":\"Zwrot jest w toku. Proszę czekać na jego zakończenie przed złożeniem nowego żądania zwrotu.\",\"F89D36\":\"Błąd podczas oznaczania zamówienia jako opłaconego\",\"68Axnm\":\"Podczas przetwarzania Twojego żądania pojawiła się błąd. Proszę spróbować ponownie.\",\"mVKOW6\":\"Błąd podczas wysyłania wiadomości\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Ten uczestnik ma nieopłacone zamówienie.\",\"mf3FrP\":\"Ta kategoria nie ma jeszcze żadnych produktów.\",\"8QH2Il\":\"Ta kategoria jest ukryta przed publicznym widokiem\",\"xxv3BZ\":\"Ta lista kontrolna wygasła\",\"Sa7w7S\":\"Ta lista odpraw wygasła i nie jest już dostępna.\",\"Uicx2U\":\"Ta lista kontrolna jest aktywna\",\"1k0Mp4\":\"Ta lista kontrolna nie jest jeszcze aktywna\",\"K6fmBI\":\"Ta lista odpraw nie jest jeszcze aktywna i nie jest dostępna.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Te informacje będą wyświetlane na stronie płatności, stronie podsumowania zamówienia i w e-mailu potwierdzającym zamówienie.\",\"XAHqAg\":\"To jest produkt ogólny, taki jak koszulka lub kubek. Bilet nie będzie wystawiony\",\"CNk/ro\":\"To jest wydarzenia online\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Ta wiadomość będzie zawarta w stopce wszystkich e-maili wysłanych z tego wydarzenia\",\"55i7Fa\":\"Ta wiadomość będzie wyświetlana tylko wtedy, gdy zamówienie zostanie pomyślnie zrealizowane. Zamówienia oczekujące na płatność nie będą wyświetlać tej wiadomości\",\"RjwlZt\":\"To zamówienie zostało już opłacone.\",\"5K8REg\":\"To zamówienie zostało już zwrócone.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"To zamówienie zostało anulowane.\",\"Q0zd4P\":\"To zamówienie wygasło. Proszę spróbować ponownie.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"To zamówienie jest pełne.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Ta strona zamówienia nie jest już dostępna.\",\"i0TtkR\":\"To przesłania wszystkie ustawienia widoczności i ukryje produkt przed wszystkimi klientami.\",\"cRRc+F\":\"Ten produkt nie może być usunięty, ponieważ jest powiązany z zamówieniem. Możesz go zamiast tego ukryć.\",\"3Kzsk7\":\"Ten produkt jest biletem. Kupującym zostanie wystawiony bilet przy zakupie\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Ten link resetowania hasła jest nieprawidłowy lub wygasł.\",\"IV9xTT\":\"Ten użytkownik nie jest aktywny, ponieważ nie zaakceptował zaproszenia.\",\"5AnPaO\":\"bilet\",\"kjAL4v\":\"Bilet\",\"dtGC3q\":\"E-mail z biletem został ponownie wysłany do uczestnika\",\"54q0zp\":\"Bilety dla\",\"xN9AhL\":[\"Warstwa \",[\"0\"]],\"jZj9y9\":\"Produkt warstwowy\",\"8wITQA\":\"Produkty warstwowe pozwalają oferować wiele opcji cenowych dla tego samego produktu. Doskonale nadaje się do produktów wczesnych ptaków lub oferowania różnych opcji cenowych dla różnych grup ludzi.\",\"nn3mSR\":\"Pozostały czas:\",\"s/0RpH\":\"Liczba użyć\",\"y55eMd\":\"Liczba użyć\",\"40Gx0U\":\"Strefa czasowa\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Narzędzia\",\"72c5Qo\":\"Razem\",\"YXx+fG\":\"Razem przed rabatami\",\"NRWNfv\":\"Łączna kwota rabatu\",\"BxsfMK\":\"Razem opłaty\",\"2bR+8v\":\"Łączna sprzedaż brutto\",\"mpB/d9\":\"Łączna kwota zamówienia\",\"m3FM1g\":\"Razem zwrócono\",\"jEbkcB\":\"Razem zwrócono\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Razem podatek\",\"+zy2Nq\":\"Typ\",\"FMdMfZ\":\"Nie można sprawdzić w uczestnika\",\"bPWBLL\":\"Nie można wylogować uczestnika\",\"9+P7zk\":\"Nie można stworzyć produktu. Proszę sprawdzić swoje dane\",\"WLxtFC\":\"Nie można stworzyć produktu. Proszę sprawdzić swoje dane\",\"/cSMqv\":\"Nie można stworzyć pytania. Proszę sprawdzić swoje dane\",\"MH/lj8\":\"Nie można zaktualizować pytania. Proszę sprawdzić swoje dane\",\"nnfSdK\":\"Unikalne klienty\",\"Mqy/Zy\":\"Stany Zjednoczone\",\"NIuIk1\":\"Bez limitu\",\"/p9Fhq\":\"Bez limitu dostępny\",\"E0q9qH\":\"Dozwolone nieograniczone użycia\",\"h10Wm5\":\"Nieopłacone zamówienie\",\"ia8YsC\":\"Nadchodzące\",\"TlEeFv\":\"Nadchodzące wydarzenia\",\"L/gNNk\":[\"Aktualizuj \",[\"0\"]],\"+qqX74\":\"Aktualizuj nazwę wydarzenia, opis i daty\",\"vXPSuB\":\"Aktualizuj profil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL skopiowany do schowka\",\"e5lF64\":\"Przykład użycia\",\"fiV0xj\":\"Limit użycia\",\"sGEOe4\":\"Użyj rozmytej wersji obrazu okładki jako tła\",\"OadMRm\":\"Użyj obrazu okładki\",\"7PzzBU\":\"Użytkownik\",\"yDOdwQ\":\"Zarządzanie użytkownikami\",\"Sxm8rQ\":\"Użytkownicy\",\"VEsDvU\":\"Użytkownicy mogą zmienić swój e-mail w <0>Ustawieniach profilu\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Nazwa miejsca\",\"jpctdh\":\"Zobacz\",\"Pte1Hv\":\"Zobacz szczegóły uczestnika\",\"/5PEQz\":\"Zobacz stronę wydarzenia\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Zobacz w Mapach Google\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Lista odpraw VIP\",\"tF+VVr\":\"Bilet VIP\",\"2q/Q7x\":\"Widoczność\",\"vmOFL/\":\"Nie mogliśmy przetworzyć Twojej płatności. Proszę spróbować ponownie lub skontaktować się z pomocą techniczną.\",\"45Srzt\":\"Nie mogliśmy usunąć kategorii. Proszę spróbować ponownie.\",\"/DNy62\":[\"Nie mogliśmy znaleźć żadnych biletów pasujących do \",[\"0\"]],\"1E0vyy\":\"Nie mogliśmy załadować danych. Proszę spróbować ponownie.\",\"NmpGKr\":\"Nie mogliśmy zmienić kolejności kategorii. Proszę spróbować ponownie.\",\"BJtMTd\":\"Zalecamy wymiary 1950px na 650px, współczynnik 3:1 i maksymalny rozmiar pliku 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Nie mogliśmy potwierdzić Twojej płatności. Proszę spróbować ponownie lub skontaktować się z pomocą techniczną.\",\"Gspam9\":\"Przetwarzamy Twoje zamówienie. Proszę czekać...\",\"LuY52w\":\"Witamy na pokładzie! Proszę zalogować się, aby kontynuować.\",\"dVxpp5\":[\"Witamy ponownie\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Czym są produkty warstwowe?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Czym jest kategoria?\",\"gxeWAU\":\"Do jakich produktów odnosi się ten kod?\",\"hFHnxR\":\"Do jakich produktów odnosi się ten kod? (Domyślnie dotyczy wszystkich)\",\"AeejQi\":\"Do jakich produktów powinna dotyczyć ta pojemność?\",\"Rb0XUE\":\"O której godzinie przyjedziesz?\",\"5N4wLD\":\"Jaki to typ pytania?\",\"gyLUYU\":\"Gdy włączone, faktury będą generowane dla zamówień biletów. Faktury będą wysyłane wraz z e-mailem potwierdzenia zamówienia. Uczestnicy mogą również pobrać faktury ze strony potwierdzenia zamówienia.\",\"D3opg4\":\"Gdy płatności offline są włączone, użytkownicy będą mogli ukończyć zamówienia i otrzymać bilety. Ich bilety będą wyraźnie wskazywać, że zamówienie nie jest opłacone, a narzędzie odprawy powiadomi personel odprawy, jeśli zamówienie wymaga płatności.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Które bilety powinny być powiązane z tą listą odpraw?\",\"S+OdxP\":\"Kto organizuje to wydarzenie?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Kto powinien zostać zapytany o to pytanie?\",\"VxFvXQ\":\"Osadzanie widgetu\",\"v1P7Gm\":\"Ustawienia widgetu\",\"b4itZn\":\"W toku\",\"hqmXmc\":\"W toku...\",\"+G/XiQ\":\"Od początku roku\",\"l75CjT\":\"Tak\",\"QcwyCh\":\"Tak, usuń je\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Zmieniasz swój e-mail na <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Jesteś offline\",\"sdB7+6\":\"Możesz utworzyć kod promocyjny, który jest ukierunkowany na ten produkt w\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Nie możesz zmienić typu produktu, ponieważ istnieją uczestnicy powiązani z tym produktem.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Nie możesz odprawić uczestników z nieopłaconymi zamówieniami. To ustawienie można zmienić w ustawieniach wydarzenia.\",\"c9Evkd\":\"Nie możesz usunąć ostatniej kategorii.\",\"6uwAvx\":\"Nie możesz usunąć tej warstwy cenowej, ponieważ istnieją już produkty sprzedane dla tej warstwy. Możesz ją zamiast tego ukryć.\",\"tFbRKJ\":\"Nie możesz edytować roli lub statusu właściciela konta.\",\"fHfiEo\":\"Nie możesz zwrócić ręcznie utworzonego zamówienia.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Masz dostęp do wielu kont. Proszę wybierz jedno, aby kontynuować.\",\"Z6q0Vl\":\"Już zaakceptowałeś to zaproszenie. Proszę zalogować się, aby kontynuować.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Nie masz oczekującej zmiany e-mail.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Skończył się czas na ukończenie zamówienia.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Musisz potwierdzić, że ten e-mail nie jest promocyjny\",\"3ZI8IL\":\"Musisz zgodzić się na warunki\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Musisz utworzyć bilet, zanim będziesz mógł ręcznie dodać uczestnika.\",\"jE4Z8R\":\"Musisz mieć co najmniej jedną warstwę cenową\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Będziesz musiał ręcznie oznaczyć zamówienie jako opłacone. Można to zrobić na stronie zarządzania zamówieniem.\",\"L/+xOk\":\"Będziesz potrzebować biletu, zanim będziesz mógł utworzyć listę odpraw.\",\"Djl45M\":\"Będziesz potrzebować produktu, zanim będziesz mógł utworzyć przypisanie pojemności.\",\"y3qNri\":\"Będziesz potrzebować co najmniej jednego produktu, aby zacząć. Darmowy, płatny lub pozwól użytkownikowi zdecydować, ile zapłacić.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Nazwa Twojego konta jest używana na stronach wydarzeń i w e-mailach.\",\"veessc\":\"Twoi uczestnicy pojawią się tutaj po zarejestrowaniu się na Twoje wydarzenie. Możesz również ręcznie dodać uczestników.\",\"Eh5Wrd\":\"Twoja niesamowita strona internetowa 🎉\",\"lkMK2r\":\"Twoje szczegóły\",\"3ENYTQ\":[\"Twoja prośba o zmianę e-maila na <0>\",[\"0\"],\" jest w toku. Proszę sprawdzić e-mail, aby potwierdzić\"],\"yZfBoy\":\"Twoja wiadomość została wysłana\",\"KSQ8An\":\"Twoje zamówienie\",\"Jwiilf\":\"Twoje zamówienie zostało anulowane\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Twoje zamówienia pojawią się tutaj, gdy zaczną napływać.\",\"9TO8nT\":\"Twoje hasło\",\"P8hBau\":\"Twoja płatność jest przetwarzana.\",\"UdY1lL\":\"Twoja płatność nie powiodła się, proszę spróbować ponownie.\",\"fzuM26\":\"Twoja płatność nie powiodła się. Proszę spróbować ponownie.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Zwrot jest procesowany.\",\"IFHV2p\":\"Twój bilet na\",\"x1PPdr\":\"Kod pocztowy\",\"BM/KQm\":\"Kod pocztowy\",\"+LtVBt\":\"Kod pocztowy\",\"25QDJ1\":\"- Kliknij, aby opublikować\",\"WOyJmc\":\"- Kliknij, aby cofnąć publikację\",\"ncwQad\":\"(puste)\",\"B/gRsg\":\"(brak)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" jest już zameldowany\"],\"3beCx0\":[[\"0\"],\" <0>zameldowany\"],\"S4PqS9\":[[\"0\"],\" Aktywne webhooki\"],\"6MIiOI\":[[\"0\"],\" pozostało\"],\"COnw8D\":[\"logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" z \",[\"1\"],\" miejsc jest zajętych.\"],\"B7pZfX\":[[\"0\"],\" organizatorów\"],\"rZTf6P\":[\"Pozostało miejsc: \",[\"0\"]],\"/HkCs4\":[[\"0\"],\" biletów\"],\"dtXkP9\":[[\"0\"],\" nadchodzących terminów\"],\"30bTiU\":[[\"activeCount\"],\" włączone\"],\"jTs4am\":[\"logo \",[\"appName\"]],\"gbJOk9\":[\"Na tę sesję zarejestrowanych jest \",[\"attendeeCount\"],\" uczestników.\"],\"TjbIUI\":[[\"availableCount\"],\" z \",[\"totalCount\"],\" dostępnych\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" zameldowanych\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" godz. temu\"],\"NRSLBe\":[[\"diffMin\"],\" min temu\"],\"iYfwJE\":[[\"diffSec\"],\" s temu\"],\"OJnhhX\":[[\"eventCount\"],\" wydarzeń\"],\"mhZbzw\":[\"W dotkniętych sesjach zarejestrowanych jest \",[\"loadedAffectedAttendees\"],\" uczestników.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" typów biletów\"],\"0cLzoF\":[[\"totalOccurrences\"],\" terminów\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sesji w \",[\"0\"],\" terminach (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sesja\"],\"other\":[\"#\",\" sesji\"]}],\" dziennie)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Podatek/Opłaty\",\"B1St2O\":\"<0>Listy odpraw pomagają zarządzać wejściem na wydarzenie według dnia, obszaru lub typu biletu. Możesz łączyć bilety z konkretnymi listami, takimi jak strefy VIP lub bilety na Dzień 1, i udostępniać bezpieczny link do odprawy personelowi. Nie jest wymagane konto. Odprawa działa na urządzeniach mobilnych, desktopowych lub tabletach, używając kamery urządzenia lub skanera HID USB. \",\"v9VSIS\":\"<0>Ustaw pojedynczy całkowity limit frekwencji, który dotyczy wielu typów biletów jednocześnie.<1>Na przykład, jeśli połączysz bilet <2>Day Pass i <3>Full Weekend, oba będą czerpać z tej samej puli miejsc. Po osiągnięciu limitu wszystkie połączone bilety automatycznie przestaną być sprzedawane.\",\"vKXqag\":\"<0>To jest domyślna liczba dla wszystkich terminów. Pojemność każdego terminu może dodatkowo ograniczać dostępność na <1>stronie harmonogramu sesji.\",\"ZnVt5v\":\"<0>Webhooki natychmiast powiadamiają zewnętrzne usługi, gdy zachodzą zdarzenia, takie jak dodanie nowego uczestnika do CRM lub listy mailingowej po rejestracji, zapewniając płynną automatyzację.<1>Użyj usług trzecich, takich jak <2>Zapier, <3>IFTTT lub <4>Make, aby tworzyć niestandardowe przepływy pracy i automatyzować zadania.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" po aktualnym kursie\"],\"M2DyLc\":\"1 Aktywny webhook\",\"6hIk/x\":\"W dotkniętych sesjach zarejestrowany jest 1 uczestnik.\",\"qOyE2U\":\"Na tę sesję zarejestrowany jest 1 uczestnik.\",\"943BwI\":\"1 dzień po dacie zakończenia\",\"yj3N+g\":\"1 dzień po dacie rozpoczęcia\",\"Z3etYG\":\"1 dzień przed wydarzeniem\",\"szSnlj\":\"1 godzinę przed wydarzeniem\",\"yTsaLw\":\"1 bilet\",\"nz96Ue\":\"1 typ biletu\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 tydzień przed wydarzeniem\",\"09VFYl\":\"Zaoferowano 12 biletów\",\"HR/cvw\":\"123 Przykładowa Ulica\",\"dgKxZ5\":\"135+ walut i 40+ metod płatności\",\"kMU5aM\":\"Wiadomość o anulowaniu została wysłana do\",\"o++0qa\":\"zmianę czasu trwania\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Nowy kod weryfikacyjny został wysłany na Twój email\",\"sr2Je0\":\"przesunięcie czasów rozpoczęcia/zakończenia\",\"/z/bH1\":\"Krótki opis Twojego organizatora, który będzie wyświetlany Twoim użytkownikom.\",\"aS0jtz\":\"Porzucony\",\"uyJsf6\":\"O\",\"JvuLls\":\"Absorbuj opłatę\",\"lk74+I\":\"Absorbuj Opłatę\",\"1uJlG9\":\"Kolor Akcentu\",\"g3UF2V\":\"Akceptuj\",\"K5+3xg\":\"Zaakceptuj zaproszenie\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Konto · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informacja o koncie\",\"EHNORh\":\"Konto nie znalezione\",\"bPwFdf\":\"Konta\",\"AhwTa1\":\"Wymagane działanie: Potrzebne informacje VAT\",\"APyAR/\":\"Aktywne wydarzenia\",\"kCl6ja\":\"Aktywne metody płatności\",\"XJOV1Y\":\"Aktywność\",\"0YEoxS\":\"Dodaj termin\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Dodaj pojedynczy termin\",\"CjvTPJ\":\"Dodaj kolejną godzinę\",\"0XCduh\":\"Dodaj co najmniej jedną godzinę\",\"/chGpa\":\"Dodaj dane połączenia dla wydarzenia online.\",\"UWWRyd\":\"Dodaj niestandardowe pytania, aby zebrać dodatkowe informacje podczas płatności\",\"Z/dcxc\":\"Dodaj termin\",\"Q219NT\":\"Dodaj terminy\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Dodaj lokalizację\",\"VX6WUv\":\"Dodaj lokalizację\",\"GCQlV2\":\"Dodaj kilka godzin, jeśli prowadzisz kilka sesji dziennie.\",\"7JF9w9\":\"Dodaj pytanie\",\"NLbIb6\":\"Dodaj uczestnika mimo to (zignoruj pojemność)\",\"6PNlRV\":\"Dodaj to wydarzenie do swojego kalendarza\",\"BGD9Yt\":\"Dodaj bilety\",\"uIv4Op\":\"Dodaj piksele śledzące do publicznych stron wydarzeń i strony głównej organizatora. Gdy śledzenie jest aktywne, odwiedzającym wyświetli się baner zgody na pliki cookie.\",\"QN2F+7\":\"Dodaj webhook\",\"NsWqSP\":\"Dodaj swoje uchwyty mediów społecznościowych i URL strony internetowej. Będą wyświetlane na Twojej publicznej stronie organizatora.\",\"bVjDs9\":\"Dodatkowe opłaty\",\"MKqSg4\":\"Wymagany dostęp administratora\",\"0Zypnp\":\"Panel administratora\",\"YAV57v\":\"Partner\",\"I+utEq\":\"Kod partnerski nie może zostać zmieniony\",\"/jHBj5\":\"Partner utworzony pomyślnie\",\"uCFbG2\":\"Partner usunięty pomyślnie\",\"ld8I+f\":\"Program partnerski\",\"a41PKA\":\"Sprzedaż partnerska będzie śledzona\",\"mJJh2s\":\"Sprzedaż partnerska nie będzie śledzona. To dezaktywuje partnera.\",\"jabmnm\":\"Partner zaktualizowany pomyślnie\",\"CPXP5Z\":\"Partnerzy\",\"9Wh+ug\":\"Partnerzy wyeksportowani\",\"3cqmut\":\"Partnerzy pomagają śledzić sprzedaż generowaną przez partnerów i influencerów. Utwórz kody partnerskie i udostępnij je, aby monitorować wydajność.\",\"z7GAMJ\":\"wszystkie\",\"N40H+G\":\"Wszyscy\",\"7rLTkE\":\"Wszystkie zarchiwizowane wydarzenia\",\"gKq1fa\":\"Wszyscy uczestnicy\",\"63gRoO\":\"Wszyscy uczestnicy wybranych sesji\",\"uWxIoH\":\"Wszyscy uczestnicy tej sesji\",\"pMLul+\":\"Wszystkie waluty\",\"sgUdRZ\":\"Wszystkie terminy\",\"e4q4uO\":\"Wszystkie terminy\",\"ZS/D7f\":\"Wszystkie zakończone wydarzenia\",\"QsYjci\":\"Wszystkie wydarzenia\",\"31KB8w\":\"Wszystkie nieudane zadania usunięte\",\"D2g7C7\":\"Wszystkie zadania w kolejce do ponowienia\",\"B4RFBk\":\"Wszystkie pasujące terminy\",\"F1/VgK\":\"Wszystkie sesje\",\"OpWjMq\":\"Wszystkie sesje\",\"Sxm1lO\":\"Wszystkie statusy\",\"dr7CWq\":\"Wszystkie nadchodzące wydarzenia\",\"GpT6Uf\":\"Zezwól uczestnikom na aktualizację informacji o bilecie (imię, e-mail) za pośrednictwem bezpiecznego linku wysłanego z potwierdzeniem zamówienia.\",\"F3mW5G\":\"Pozwól klientom dołączyć do listy oczekujących, gdy ten produkt jest wyprzedany\",\"c4uJfc\":\"Prawie gotowe! Czekamy tylko na przetworzenie Twojej płatności. To powinno zająć tylko kilka sekund.\",\"ocS8eq\":[\"Masz już konto? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Już w środku\",\"/H326L\":\"Już zwrócone\",\"USEpOK\":\"Korzystasz już ze Stripe u innego organizatora? Użyj tego połączenia ponownie.\",\"RtxQTF\":\"Również anuluj to zamówienie\",\"jkNgQR\":\"Również zwróć to zamówienie\",\"xYqsHg\":\"Zawsze dostępne\",\"Wvrz79\":\"Kwota zapłacona\",\"Zkymb9\":\"E-mail do powiązania z tym partnerem. Partner nie zostanie powiadomiony.\",\"vRznIT\":\"Wystąpił błąd podczas sprawdzania statusu eksportu.\",\"eusccx\":\"Opcjonalna wiadomość do wyświetlenia na wyróżnionym produkcie, np. \\\"Sprzedaje się szybko 🔥\\\" lub \\\"Najlepsza wartość\\\"\",\"5GJuNp\":[\"i jeszcze \",[\"0\"],\"...\"],\"QNrkms\":\"Odpowiedź zaktualizowana pomyślnie.\",\"+qygei\":\"Odpowiedzi\",\"GK7Lnt\":\"Odpowiedzi przy zamówieniu (np. wybór posiłku)\",\"lE8PgT\":\"Wszystkie ręcznie dostosowane terminy zostaną zachowane.\",\"vP3Nzg\":[\"Dotyczy \",[\"0\"],\" nieanulowanych terminów aktualnie załadowanych na tej stronie.\"],\"kkVyZZ\":\"Dotyczy osób otwierających link bez zalogowania. Zalogowani zawsze widzą wszystko.\",\"je4muG\":[\"Dotyczy każdego \",[\"0\"],\" nieanulowanego terminu w tym wydarzeniu — także terminów, które nie są aktualnie załadowane.\"],\"YIIQtt\":\"Zastosuj zmiany\",\"NzWX1Y\":\"Zastosuj do\",\"Ps5oDT\":\"Zastosuj do wszystkich biletów\",\"261RBr\":\"Zatwierdź wiadomość\",\"naCW6Z\":\"Kwiecień\",\"B495Gs\":\"Archiwizuj\",\"5sNliy\":\"Archiwizuj wydarzenie\",\"BrwnrJ\":\"Archiwizuj organizatora\",\"E5eghW\":\"Zarchiwizuj to wydarzenie, aby ukryć je przed publicznością. Możesz je później przywrócić.\",\"eqFkeI\":\"Zarchiwizuj tego organizatora. Spowoduje to również archiwizację wszystkich wydarzeń należących do tego organizatora.\",\"BzcxWv\":\"Zarchiwizowani organizatorzy\",\"9cQBd6\":\"Czy na pewno chcesz zarchiwizować to wydarzenie? Nie będzie już widoczne dla publiczności.\",\"Trnl3E\":\"Czy na pewno chcesz zarchiwizować tego organizatora? Spowoduje to również archiwizację wszystkich wydarzeń należących do tego organizatora.\",\"wOvn+e\":[\"Czy na pewno chcesz anulować \",[\"count\"],\" termin(ów)? Dotknięci uczestnicy zostaną powiadomieni e-mailem.\"],\"GTxE0U\":\"Czy na pewno chcesz anulować ten termin? Dotknięci uczestnicy zostaną powiadomieni e-mailem.\",\"VkSk/i\":\"Czy na pewno chcesz anulować tę zaplanowaną wiadomość?\",\"0aVEBY\":\"Czy na pewno chcesz usunąć wszystkie nieudane zadania?\",\"LchiNd\":\"Czy na pewno chcesz usunąć tego partnera? Tej akcji nie można cofnąć.\",\"vPeW/6\":\"Czy na pewno chcesz usunąć tę konfigurację? Może to wpłynąć na konta jej używające.\",\"h42Hc/\":\"Czy na pewno chcesz usunąć ten termin? Tej operacji nie można cofnąć.\",\"JmVITJ\":\"Czy na pewno chcesz usunąć ten szablon? Tej akcji nie można cofnąć, a e-maile powrócą do domyślnego szablonu.\",\"aLS+A6\":\"Czy na pewno chcesz usunąć ten szablon? Tej akcji nie można cofnąć, a e-maile powrócą do szablonu organizatora lub domyślnego.\",\"5H3Z78\":\"Czy na pewno chcesz usunąć ten webhook?\",\"147G4h\":\"Czy na pewno chcesz wyjść?\",\"VDWChT\":\"Czy na pewno chcesz zrobić tę stronę organizatora szkicem? To sprawi, że strona organizatora będzie niewidoczna dla publiczności\",\"pWtQJM\":\"Czy na pewno chcesz opublikować tę stronę organizatora? To sprawi, że strona organizatora będzie widoczna dla publiczności\",\"EOqL/A\":\"Czy na pewno chcesz zaoferować miejsce tej osobie? Otrzyma ona powiadomienie e-mail.\",\"yAXqWW\":\"Czy na pewno chcesz trwale usunąć ten termin? Tej operacji nie można cofnąć.\",\"WFHOlF\":\"Czy na pewno chcesz opublikować to wydarzenie? Po opublikowaniu będzie widoczne dla publiczności.\",\"4TNVdy\":\"Czy na pewno chcesz opublikować ten profil organizatora? Po opublikowaniu będzie widoczny dla publiczności.\",\"8x0pUg\":\"Czy na pewno chcesz usunąć ten wpis z listy oczekujących?\",\"cDtoWq\":[\"Czy na pewno chcesz ponownie wysłać potwierdzenie zamówienia do \",[\"0\"],\"?\"],\"xeIaKw\":[\"Czy na pewno chcesz ponownie wysłać bilet do \",[\"0\"],\"?\"],\"BjbocR\":\"Czy na pewno chcesz przywrócić to wydarzenie?\",\"7MjfcR\":\"Czy na pewno chcesz przywrócić tego organizatora?\",\"ExDt3P\":\"Czy na pewno chcesz cofnąć publikację tego wydarzenia? Nie będzie już widoczne dla publiczności.\",\"5Qmxo/\":\"Czy na pewno chcesz cofnąć publikację tego profilu organizatora? Nie będzie już widoczny dla publiczności.\",\"Uqefyd\":\"Czy jesteś zarejestrowany na VAT w UE?\",\"+QARA4\":\"Sztuka\",\"tLf3yJ\":\"Ponieważ Twoja firma ma siedzibę w Irlandii, irlandzki VAT w wysokości 23% stosuje się automatycznie do wszystkich opłat platformy.\",\"tMeVa/\":\"Pytaj o imię i e-mail dla każdego zakupionego biletu\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Przypisz plan\",\"xdiER7\":\"Przypisany poziom\",\"F2rX0R\":\"Musi być wybrany co najmniej jeden typ wydarzenia\",\"BCmibk\":\"Próby\",\"6PecK3\":\"Frekwencja i wskaźniki odpraw we wszystkich wydarzeniach\",\"K2tp3v\":\"uczestnik\",\"AJ4rvK\":\"Uczestnik anulowany\",\"qvylEK\":\"Uczestnik utworzony\",\"Aspq3b\":\"Zbieranie szczegółów uczestnika\",\"fpb0rX\":\"Szczegóły uczestnika skopiowane z zamówienia\",\"0R3Y+9\":\"E-mail uczestnika\",\"94aQMU\":\"Informacje o uczestniku\",\"KkrBiR\":\"Zbieranie informacji o uczestniku\",\"av+gjP\":\"Imię uczestnika\",\"sjPjOg\":\"Notatki uczestnika\",\"cosfD8\":\"Status uczestnika\",\"D2qlBU\":\"Uczestnik zaktualizowany\",\"22BOve\":\"Uczestnik zaktualizowany pomyślnie\",\"x8Vnvf\":\"Bilet uczestnika nie jest uwzględniony na tej liście\",\"/Ywywr\":\"uczestnicy\",\"zLRobu\":\"uczestników zameldowanych\",\"k3Tngl\":\"Uczestnicy wyeksportowani\",\"UoIRW8\":\"Uczestnicy zarejestrowani\",\"5UbY+B\":\"Uczestnicy z konkretnym biletem\",\"4HVzhV\":\"Uczestnicy:\",\"HVkhy2\":\"Analityka atrybucji\",\"dMMjeD\":\"Podział atrybucji\",\"1oPDuj\":\"Wartość atrybucji\",\"DBHTm/\":\"Sierpień\",\"JgREph\":\"Automatyczna oferta jest włączona\",\"V7Tejz\":\"Automatyczne przetwarzanie listy oczekujących\",\"PZ7FTW\":\"Automatycznie wykrywane na podstawie koloru tła, ale można nadpisać\",\"zlnTuI\":\"Automatycznie oferuj bilety kolejnej osobie, gdy pojawi się wolne miejsce. Po wyłączeniu możesz ręcznie obsługiwać listę oczekujących ze strony listy oczekujących.\",\"csDS2L\":\"Dostępne\",\"clF06r\":\"Dostępne do zwrotu\",\"NB5+UG\":\"Dostępne tokeny\",\"L+wGOG\":\"Oczekuje\",\"qcw2OD\":\"Oczekuje zapłaty\",\"kNmmvE\":\"Świetne Wydarzenia Sp. z o.o.\",\"iH8pgl\":\"Wstecz\",\"TeSaQO\":\"Powrót do kont\",\"X7Q/iM\":\"Powrót do kalendarza\",\"kYqM1A\":\"Powrót do wydarzenia\",\"s5QRF3\":\"Powrót do wiadomości\",\"td/bh+\":\"Powrót do raportów\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Cena bazowa\",\"hviJef\":\"Na podstawie globalnego okresu sprzedaży powyżej, nie dla poszczególnych terminów\",\"jIPNJG\":\"Podstawowe informacje\",\"UabgBd\":\"Treść jest wymagana\",\"HWXuQK\":\"Dodaj tę stronę do zakładek, aby zarządzać zamówieniem w dowolnym momencie.\",\"CUKVDt\":\"Zbranduj swoje bilety niestandardowym logo, kolorami i komunikatem w stopce.\",\"4BZj5p\":\"Wbudowana ochrona przed oszustwami\",\"cr7kGH\":\"Edycja zbiorcza\",\"1Fbd6n\":\"Zbiorcza edycja terminów\",\"Eq6Tu9\":\"Aktualizacja zbiorcza nie powiodła się.\",\"9N+p+g\":\"Biznes\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nazwa firmy\",\"bv6RXK\":\"Etykieta przycisku\",\"ChDLlO\":\"Tekst przycisku\",\"BUe8Wj\":\"Kupujący płaci\",\"qF1qbA\":\"Kupujący widzą czystą cenę. Opłata platformy jest odejmowana od Twojej wypłaty.\",\"dg05rc\":\"Dodając piksele śledzące, potwierdzasz, że Ty i ta platforma jesteście współadministratorami zbieranych danych. Jesteś odpowiedzialny za zapewnienie podstawy prawnej do tego przetwarzania zgodnie z obowiązującymi przepisami o ochronie prywatności (RODO, CCPA itp.).\",\"DFqasq\":[\"Kontynuując, zgadzasz się na <0>\",[\"0\"],\" Warunki korzystania z usługi\"],\"wVSa+U\":\"Według dnia miesiąca\",\"0MnNgi\":\"Według dnia tygodnia\",\"CetOZE\":\"Według typu biletu\",\"lFdbRS\":\"Pomiń opłaty aplikacji\",\"AjVXBS\":\"Kalendarz\",\"alkXJ5\":\"Widok kalendarza\",\"2VLZwd\":\"Przycisk wezwania do działania\",\"rT2cV+\":\"Kamera\",\"7hYa9y\":\"Odmówiono dostępu do kamery. <0>Poproś ponownie lub udziel dostępu do kamery w ustawieniach przeglądarki.\",\"D02dD9\":\"Kampania\",\"RRPA79\":\"Nie można zameldować\",\"OcVwAd\":[\"Anuluj \",[\"count\"],\" termin(ów)\"],\"H4nE+E\":\"Anuluj wszystkie produkty i zwolnij je z powrotem do puli\",\"Py78q9\":\"Anuluj termin\",\"tOXAdc\":\"Anulowanie anuluje wszystkich uczestników związanych z tym zamówieniem i zwolni bilety z powrotem do dostępnej puli.\",\"vev1Jl\":\"Anulowanie\",\"Ha17hq\":[\"Anulowano \",[\"0\"],\" termin(ów)\"],\"01sEfm\":\"Nie można usunąć domyślnej konfiguracji systemu\",\"VsM1HH\":\"Przypisania pojemności\",\"9bIMVF\":\"Zarządzanie pojemnością\",\"H7K8og\":\"Pojemność musi wynosić 0 lub więcej\",\"nzao08\":\"aktualizacje pojemności\",\"4cp9NP\":\"Wykorzystana pojemność\",\"K7tIrx\":\"Kategoria\",\"o+XJ9D\":\"Zmień\",\"kJkjoB\":\"Zmień czas trwania\",\"J0KExZ\":\"Zmień limit uczestników\",\"CIHJJf\":\"Zmień ustawienia listy oczekujących\",\"B5icLR\":[\"Zmieniono czas trwania dla \",[\"count\"],\" termin(ów)\"],\"Kb+0BT\":\"Obciążenia\",\"2tbLdK\":\"Dobroczynność\",\"BPWGKn\":\"Zamelduj\",\"6uFFoY\":\"Wymelduj\",\"FjAlwK\":[\"Sprawdź to wydarzenie: \",[\"0\"]],\"v4fiSg\":\"Sprawdź swoją pocztę e-mail\",\"51AsAN\":\"Sprawdź swoją skrzynkę odbiorczą! Jeśli bilety są powiązane z tym e-mailem, otrzymasz link do ich wyświetlenia.\",\"Y3FYXy\":\"Odprawa\",\"udRwQs\":\"Odprawa utworzona\",\"F4SRy3\":\"Odprawa usunięta\",\"as6XfO\":[\"Odprawa \",[\"0\"],\" została cofnięta\"],\"9s/wrQ\":\"Historia odprawy\",\"Wwztk4\":\"Lista odpraw\",\"9gPPUY\":\"Lista odpraw utworzona\",\"dwjiJt\":\"Informacje o liście\",\"7od0PV\":\"listy odpraw\",\"f2vU9t\":\"Listy odpraw\",\"XprdTn\":\"Nawigacja odprawy\",\"5tV1in\":\"Postęp odprawy\",\"SHJwyq\":\"Wskaźnik zameldowań\",\"qCqdg6\":\"Status zameldowania\",\"cKj6OE\":\"Podsumowanie zameldowań\",\"7B5M35\":\"Zameldowania\",\"VrmydS\":\"Zameldowany\",\"DM4gBB\":\"Chiński (tradycyjny)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Wybierz inną akcję\",\"fkb+y3\":\"Wybierz zapisaną lokalizację do zastosowania.\",\"Zok1Gx\":\"Wybierz organizatora\",\"pkk46Q\":\"Wybierz organizatora\",\"Crr3pG\":\"Wybierz kalendarz\",\"LAW8Vb\":\"Wybierz domyślne ustawienie dla nowych wydarzeń. Można to nadpisać dla poszczególnych wydarzeń.\",\"pjp2n5\":\"Wybierz, kto płaci opłatę platformy. Nie wpływa to na dodatkowe opłaty skonfigurowane w ustawieniach konta.\",\"xCJdfg\":\"Wyczyść\",\"QyOWu9\":\"Wyczyść lokalizację — wróć do domyślnej lokalizacji wydarzenia\",\"V8yTm6\":\"Wyczyść wyszukiwanie\",\"kmnKnX\":\"Wyczyszczenie usuwa wszelkie nadpisania dla pojedynczych sesji. Sesje, których to dotyczy, powrócą do domyślnej lokalizacji wydarzenia.\",\"/o+aQX\":\"Kliknij, aby anulować\",\"gD7WGV\":\"Kliknij, aby ponownie otworzyć dla nowej sprzedaży\",\"CySr+W\":\"Kliknij, aby zobaczyć notatki\",\"RG3szS\":\"zamknij\",\"RWw9Lg\":\"Zamknij modal\",\"XwdMMg\":\"Kod może zawierać tylko litery, cyfry, myślniki i podkreślenia\",\"+yMJb7\":\"Kod jest wymagany\",\"m9SD3V\":\"Kod musi mieć co najmniej 3 znaki\",\"V1krgP\":\"Kod nie może mieć więcej niż 20 znaków\",\"psqIm5\":\"Współpracuj ze swoją drużyną, aby tworzyć niesamowite wydarzenia razem.\",\"4bUH9i\":\"Zbierz szczegóły uczestnika dla każdego zakupionego biletu.\",\"TkfG8v\":\"Zbierz szczegóły na zamówienie\",\"96ryID\":\"Zbierz szczegóły na bilet\",\"FpsvqB\":\"Tryb koloru\",\"jEu4bB\":\"Kolumny\",\"CWk59I\":\"Komedia\",\"rPA+Gc\":\"Preferencje komunikacyjne\",\"zFT5rr\":\"ukończono\",\"bUQMpb\":\"Zakończ konfigurację Stripe\",\"744BMm\":\"Dokończ zamówienie, aby zabezpieczyć swoje bilety. Ta oferta jest ograniczona czasowo, więc nie zwlekaj zbyt długo.\",\"5YrKW7\":\"Zakończ płatność, aby zabezpieczyć swoje bilety.\",\"xGU92i\":\"Uzupełnij swój profil, aby dołączyć do drużyny.\",\"QOhkyl\":\"Napisz\",\"ih35UP\":\"Centrum konferencyjne\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Konfiguracja przypisana\",\"X1zdE7\":\"Konfiguracja utworzona pomyślnie\",\"mLBUMQ\":\"Konfiguracja usunięta pomyślnie\",\"UIENhw\":\"Nazwy konfiguracji są widoczne dla użytkowników końcowych. Opłaty stałe zostaną przeliczone na walutę zamówienia po aktualnym kursie wymiany.\",\"eeZdaB\":\"Konfiguracja zaktualizowana pomyślnie\",\"3cKoxx\":\"Konfiguracje\",\"8v2LRU\":\"Skonfiguruj szczegóły wydarzenia, lokalizację, opcje płatności i powiadomienia e-mail.\",\"raw09+\":\"Skonfiguruj, jak zbierane są szczegóły uczestnika podczas płatności\",\"FI60XC\":\"Skonfiguruj podatki i opłaty\",\"av6ukY\":\"Skonfiguruj, które produkty są dostępne dla tej sesji i opcjonalnie dostosuj ceny.\",\"NGXKG/\":\"Potwierdź adres e-mail\",\"JRQitQ\":\"Potwierdź nowe hasło\",\"Auz0Mz\":\"Potwierdź swój e-mail, aby uzyskać dostęp do wszystkich funkcji.\",\"7+grte\":\"E-mail potwierdzający wysłany! Sprawdź swoją skrzynkę odbiorczą.\",\"n/7+7Q\":\"Potwierdzenie wysłane do\",\"x3wVFc\":\"Gratulacje! Twoje wydarzenie jest teraz widoczne publicznie.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Połącz Stripe, aby włączyć edycję szablonów e-mail\",\"LmvZ+E\":\"Połącz Stripe, aby włączyć wiadomości\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakt \",[\"0\"]],\"41BQ3k\":\"E-mail kontaktowy\",\"KcXRN+\":\"E-mail kontaktowy do wsparcia\",\"m8WD6t\":\"Kontynuuj konfigurację\",\"0GwUT4\":\"Przejdź do płatności\",\"sBV87H\":\"Przejdź do tworzenia wydarzenia\",\"nKtyYu\":\"Przejdź do następnego kroku\",\"F3/nus\":\"Przejdź do płatności\",\"p2FRHj\":\"Kontroluj, jak opłaty platformy są obsługiwane dla tego wydarzenia\",\"NqfabH\":\"Kontroluj, kto wchodzi w tym terminie\",\"fmYxZx\":\"Kto i kiedy wejdzie\",\"1JnTgU\":\"Skopiowane z góry\",\"FxVG/l\":\"Skopiowane do schowka\",\"PiH3UR\":\"Skopiowane!\",\"4i7smN\":\"Skopiuj identyfikator konta\",\"uUPbPg\":\"Kopiuj link partnera\",\"iVm46+\":\"Kopiuj kod\",\"cF2ICc\":\"Skopiuj link klienta\",\"+2ZJ7N\":\"Kopiuj szczegóły do pierwszego uczestnika\",\"ZN1WLO\":\"Kopiuj e-mail\",\"y1eoq1\":\"Skopiuj link\",\"tUGbi8\":\"Kopiuj moje szczegóły do:\",\"y22tv0\":\"Kopiuj ten link, aby udostępnić go wszędzie\",\"/4gGIX\":\"Kopiuj do schowka\",\"e0f4yB\":\"Nie można usunąć lokalizacji\",\"vkiDx2\":\"Nie udało się przygotować masowej aktualizacji.\",\"KOavaU\":\"Nie można pobrać szczegółów adresu\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Nie można zapisać terminu\",\"eeLExK\":\"Nie można zapisać lokalizacji\",\"P0rbCt\":\"Obraz okładki\",\"60u+dQ\":\"Obraz okładki będzie wyświetlany na górze strony wydarzenia\",\"2NLjA6\":\"Obraz okładki będzie wyświetlany na górze strony organizatora\",\"GkrqoY\":\"Obejmuje każdy bilet\",\"zg4oSu\":[\"Utwórz szablon \",[\"0\"]],\"RKKhnW\":\"Utwórz niestandardowy widget do sprzedaży biletów na swojej stronie.\",\"6sk7PP\":\"Utwórz określoną liczbę\",\"PhioFp\":\"Utwórz nową listę odpraw dla aktywnej sesji lub skontaktuj się z organizatorem, jeśli uważasz, że to pomyłka.\",\"yIRev4\":\"Utwórz hasło\",\"j7xZ7J\":\"Utwórz dodatkowych organizatorów, aby zarządzać oddzielnymi markami, działami lub seriami wydarzeń w ramach jednego konta. Każdy organizator ma własne wydarzenia, ustawienia i stronę publiczną.\",\"xfKgwv\":\"Utwórz partnera\",\"tudG8q\":\"Utwórz i skonfiguruj bilety i towary na sprzedaż.\",\"YAl9Hg\":\"Utwórz konfigurację\",\"BTne9e\":\"Utwórz niestandardowe szablony e-mail dla tego wydarzenia, które nadpisują domyślne organizatora\",\"YIDzi/\":\"Utwórz niestandardowy szablon\",\"tsGqx5\":\"Utwórz termin\",\"Nc3l/D\":\"Utwórz rabaty, kody dostępu dla ukrytych biletów i specjalne oferty.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Utwórz dla tego terminu\",\"eWEV9G\":\"Utwórz nowe hasło\",\"wl2iai\":\"Utwórz harmonogram\",\"8AiKIu\":\"Utwórz bilet lub produkt\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Utwórz śledzone linki, aby nagradzać partnerów, którzy promują Twoje wydarzenie.\",\"dkAPxi\":\"Utwórz webhook\",\"5slqwZ\":\"Utwórz swoje wydarzenie\",\"JQNMrj\":\"Utwórz swoje pierwsze wydarzenie\",\"ZCSSd+\":\"Utwórz własne wydarzenie\",\"67NsZP\":\"Tworzenie wydarzenia...\",\"H34qcM\":\"Tworzenie organizatora...\",\"1YMS+X\":\"Tworzenie Twojego wydarzenia, proszę czekać\",\"yiy8Jt\":\"Tworzenie Twojego profilu organizatora, proszę czekać\",\"lfLHNz\":\"Etykieta CTA jest wymagana\",\"0xLR6W\":\"Aktualnie przypisane\",\"iTvh6I\":\"Obecnie dostępne do zakupu\",\"A42Dqn\":\"Niestandardowy branding\",\"Guo0lU\":\"Niestandardowa data i godzina\",\"mimF6c\":\"Niestandardowa wiadomość po płatności\",\"WDMdn8\":\"Niestandardowe pytania\",\"O6mra8\":\"Niestandardowe pytania\",\"axv/Mi\":\"Niestandardowy szablon\",\"2YeVGY\":\"Link klienta skopiowany do schowka\",\"QMHSMS\":\"Klient otrzyma e-mail potwierdzający zwrot\",\"L/Qc+w\":\"Adres e-mail klienta\",\"wpfWhJ\":\"Imię klienta\",\"GIoqtA\":\"Nazwisko klienta\",\"NihQNk\":\"Klienci\",\"7gsjkI\":\"Dostosuj e-maile wysyłane do Twoich klientów za pomocą szablonów Liquid. Te szablony będą używane jako domyślne dla wszystkich wydarzeń w Twojej organizacji.\",\"xJaTUK\":\"Dostosuj układ, kolory i branding strony głównej Twojego wydarzenia.\",\"MXZfGN\":\"Dostosuj pytania zadawane podczas płatności, aby zebrać ważne informacje od Twoich uczestników.\",\"iX6SLo\":\"Dostosuj tekst wyświetlany na przycisku kontynuacji\",\"pxNIxa\":\"Dostosuj swój szablon e-mail za pomocą szablonów Liquid\",\"3trPKm\":\"Dostosuj wygląd strony organizatora\",\"U0sC6H\":\"Codziennie\",\"/gWrVZ\":\"Codzienne przychody, podatki, opłaty i zwroty we wszystkich wydarzeniach\",\"zgCHnE\":\"Codzienny raport sprzedaży\",\"nHm0AI\":\"Codzienna sprzedaż, podział podatków i opłat\",\"1aPnDT\":\"Taniec\",\"pvnfJD\":\"Ciemny\",\"MaB9wW\":\"Anulowanie terminu\",\"e6cAxJ\":\"Termin anulowany\",\"81jBnC\":\"Termin pomyślnie anulowany\",\"a/C/6R\":\"Termin pomyślnie utworzony\",\"IW7Q+u\":\"Termin usunięty\",\"rngCAz\":\"Termin pomyślnie usunięty\",\"lnYE59\":\"Data wydarzenia\",\"gnBreG\":\"Data złożenia zamówienia\",\"vHbfoQ\":\"Termin reaktywowany\",\"hvah+S\":\"Data ponownie otwarta dla nowej sprzedaży\",\"Ez0YsD\":\"Termin pomyślnie zaktualizowany\",\"VTsZuy\":\"Terminy i godziny są zarządzane na\",\"/ITcnz\":\"dzień\",\"H7OUPr\":\"Dzień\",\"JtHrX9\":\"Dzień miesiąca\",\"J/Upwb\":\"dni\",\"vDVA2I\":\"Dni miesiąca\",\"rDLvlL\":\"Dni tygodnia\",\"r6zgGo\":\"Grudzień\",\"jbq7j2\":\"Odrzuć\",\"ovBPCi\":\"Domyślny\",\"JtI4vj\":\"Domyślne zbieranie informacji o uczestniku\",\"ULjv90\":\"Domyślna pojemność na termin\",\"3R/Tu2\":\"Domyślne obsługiwanie opłat\",\"1bZAZA\":\"Zostanie użyty domyślny szablon\",\"HNlEFZ\":\"usuń\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Usunąć \",[\"count\"],\" wybranych termin(ów)? Terminy z zamówieniami zostaną pominięte. Tej operacji nie można cofnąć.\"],\"vu7gDm\":\"Usuń partnera\",\"KZN4Lc\":\"Usuń wszystko\",\"6EkaOO\":\"Usuń termin\",\"io0G93\":\"Usuń wydarzenie\",\"+jw/c1\":\"Usuń obraz\",\"hdyeZ0\":\"Usuń zadanie\",\"xxjZeP\":\"Usuń lokalizację\",\"sY3tIw\":\"Usuń organizatora\",\"UBv8UK\":\"Usuń trwale\",\"dPyJ15\":\"Usuń szablon\",\"mxsm1o\":\"Usunąć to pytanie? Tej akcji nie można cofnąć.\",\"snMaH4\":\"Usuń webhook\",\"LIZZLY\":[\"Usunięto \",[\"0\"],\" termin(ów)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Odznacz wszystko\",\"NvuEhl\":\"Elementy projektu\",\"H8kMHT\":\"Nie otrzymałeś kodu?\",\"G8KNgd\":\"Inna lokalizacja\",\"E/QGRL\":\"Wyłączone\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Odrzuć tę wiadomość\",\"BREO0S\":\"Wyświetl pole wyboru pozwalające klientom wyrazić zgodę na otrzymywanie komunikacji marketingowej od organizatora wydarzenia.\",\"pfa8F0\":\"Nazwa wyświetlana\",\"Kdpf90\":\"Nie zapomnij!\",\"352VU2\":\"Nie masz konta? <0>Zarejestruj się\",\"AXXqG+\":\"Darowizna\",\"DPfwMq\":\"Gotowe\",\"JoPiZ2\":\"Instrukcje dla obsługi wejścia\",\"2+O9st\":\"Pobierz raporty sprzedaży, uczestników i finansowe dla wszystkich zakończonych zamówień.\",\"eneWvv\":\"Wersja robocza\",\"Ts8hhq\":\"Ze względu na wysokie ryzyko spamu, musisz połączyć konto Stripe przed modyfikacją szablonów e-mail. To zapewnia, że wszyscy organizatorzy wydarzeń są zweryfikowani i odpowiedzialni.\",\"TnzbL+\":\"Ze względu na wysokie ryzyko spamu musisz połączyć konto Stripe, zanim będziesz mógł wysyłać wiadomości do uczestników.\\nMa to zapewnić, że wszyscy organizatorzy wydarzeń są zweryfikowani i odpowiedzialni.\",\"euc6Ns\":\"Duplikuj\",\"YueC+F\":\"Zduplikuj termin\",\"KRmTkx\":\"Duplikuj produkt\",\"Jd3ymG\":\"Czas trwania musi wynosić co najmniej 1 minutę.\",\"KIjvtr\":\"Holenderski\",\"22xieU\":\"np. 180 (3 godziny)\",\"/zajIE\":\"np. Sesja poranna\",\"SPKbfM\":\"np. Kup bilety, Zarejestruj się teraz\",\"fc7wGW\":\"np. Ważna aktualizacja dotycząca Twoich biletów\",\"54MPqC\":\"np. Standard, Premium, Enterprise\",\"3RQ81z\":\"Każda osoba otrzyma e-mail z zarezerwowanym miejscem do sfinalizowania zakupu.\",\"5oD9f/\":\"Wcześniej\",\"LTzmgK\":[\"Edytuj szablon \",[\"0\"]],\"v4+lcZ\":\"Edytuj partnera\",\"2iZEz7\":\"Edytuj odpowiedź\",\"t2bbp8\":\"Edytuj uczestnika\",\"etaWtB\":\"Edytuj szczegóły uczestnika\",\"+guao5\":\"Edytuj konfigurację\",\"1Mp/A4\":\"Edytuj termin\",\"m0ZqOT\":\"Edytuj lokalizację\",\"8oivFT\":\"Edytuj lokalizację\",\"vRWOrM\":\"Edytuj szczegóły zamówienia\",\"fW5sSv\":\"Edytuj webhook\",\"nP7CdQ\":\"Edytuj webhook\",\"MRZxAn\":\"Edytowane\",\"uBAxNB\":\"Edytor\",\"aqxYLv\":\"Edukacja\",\"iiWXDL\":\"Niepowodzenia kwalifikacji\",\"zPiC+q\":\"Kwalifikujące się listy zameldowań\",\"SiVstt\":\"E-mail i zaplanowane wiadomości\",\"V2sk3H\":\"E-mail i szablony\",\"hbwCKE\":\"Adres e-mail skopiowany do schowka\",\"dSyJj6\":\"Adresy e-mail nie pasują\",\"elW7Tn\":\"Treść e-mail\",\"ZsZeV2\":\"E-mail jest wymagany\",\"Be4gD+\":\"Podgląd e-mail\",\"6IwNUc\":\"Szablony e-mail\",\"H/UMUG\":\"Wymagane jest weryfikacja e-mail\",\"L86zy2\":\"E-mail zweryfikowany pomyślnie!\",\"FSN4TS\":\"Osadź widżet\",\"z9NkYY\":\"Widżet do osadzenia\",\"Qj0GKe\":\"Włącz samoobsługę uczestnika\",\"hEtQsg\":\"Włącz samoobsługę uczestnika domyślnie\",\"Upeg/u\":\"Włącz ten szablon do wysyłania e-maili\",\"7dSOhU\":\"Włącz listę oczekujących\",\"RxzN1M\":\"Włączony\",\"xDr/ct\":\"Koniec\",\"sGjBEq\":\"Data i czas zakończenia (opcjonalne)\",\"PKXt9R\":\"Data zakończenia musi być po dacie rozpoczęcia\",\"UmzbPa\":\"Data zakończenia sesji\",\"ZayGC7\":\"Zakończ w określonym dniu\",\"48Y16Q\":\"Czas zakończenia (opcjonalny)\",\"jpNdOC\":\"Godzina zakończenia sesji\",\"TbaYrr\":[\"Zakończone \",[\"0\"]],\"CFgwiw\":[\"Kończy się \",[\"0\"]],\"SqOIQU\":\"Wprowadź wartość pojemności lub wybierz bez limitu.\",\"h37gRz\":\"Wprowadź etykietę lub wybierz jej usunięcie.\",\"7YZofi\":\"Wprowadź temat i treść, aby zobaczyć podgląd\",\"khyScF\":\"Wprowadź czas przesunięcia.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Wprowadź e-mail partnera (opcjonalne)\",\"ARkzso\":\"Wprowadź nazwę partnera\",\"ej4L8b\":\"Wprowadź pojemność\",\"6KnyG0\":\"Wprowadź e-mail\",\"INDKM9\":\"Wprowadź temat e-mail...\",\"xUgUTh\":\"Wprowadź imię\",\"9/1YKL\":\"Wprowadź nazwisko\",\"VpwcSk\":\"Wprowadź nowe hasło\",\"kWg31j\":\"Wprowadź unikalny kod partnera\",\"C3nD/1\":\"Wprowadź swój e-mail\",\"VmXiz4\":\"Wprowadź swój e-mail, a wyślemy Ci instrukcje resetowania hasła.\",\"n9V+ps\":\"Wprowadź swoje imię\",\"IdULhL\":\"Wprowadź swój numer VAT wraz z kodem kraju, bez spacji (np. IE1234567A, DE123456789)\",\"o21Y+P\":\"wpisy\",\"X88/6w\":\"Wpisy pojawią się tutaj, gdy klienci dołączą do listy oczekujących na wyprzedane produkty.\",\"LslKhj\":\"Błąd ładowania logów\",\"VCNHvW\":\"Wydarzenie zarchiwizowane\",\"ZD0XSb\":\"Wydarzenie zostało pomyślnie zarchiwizowane\",\"WgD6rb\":\"Kategoria wydarzenia\",\"b46pt5\":\"Obraz okładki wydarzenia\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Wydarzenie utworzone\",\"1Hzev4\":\"Niestandardowy szablon wydarzenia\",\"7u9/DO\":\"Wydarzenie zostało pomyślnie usunięte\",\"imgKgl\":\"Opis wydarzenia\",\"kJDmsI\":\"Szczegóły wydarzenia\",\"m/N7Zq\":\"Pełny adres wydarzenia\",\"Nl1ZtM\":\"Lokalizacja wydarzenia\",\"PYs3rP\":\"Nazwa wydarzenia\",\"HhwcTQ\":\"Nazwa wydarzenia\",\"WZZzB6\":\"Nazwa wydarzenia jest wymagana\",\"Wd5CDM\":\"Nazwa wydarzenia powinna mieć mniej niż 150 znaków\",\"4JzCvP\":\"Wydarzenie niedostępne\",\"Gh9Oqb\":\"Nazwa organizatora wydarzenia\",\"mImacG\":\"Strona wydarzenia\",\"Hk9Ki/\":\"Wydarzenie zostało pomyślnie przywrócone\",\"JyD0LH\":\"Ustawienia wydarzenia\",\"cOePZk\":\"Czas wydarzenia\",\"e8WNln\":\"Strefa czasowa wydarzenia\",\"GeqWgj\":\"Strefa czasowa wydarzenia\",\"XVLu2v\":\"Tytuł wydarzenia\",\"OfmsI9\":\"Wydarzenie zbyt nowe\",\"4SILkp\":\"Sumy wydarzenia\",\"YDVUVl\":\"Typy wydarzeń\",\"+HeiVx\":\"Wydarzenie zaktualizowane\",\"4K2OjV\":\"Miejsce wydarzenia\",\"19j6uh\":\"Wydajność wydarzeń\",\"PC3/fk\":\"Wydarzenia rozpoczynające się w ciągu następnych 24 godzin\",\"nwiZdc\":[\"Co \",[\"0\"]],\"2LJU4o\":[\"Co \",[\"0\"],\" dni\"],\"yLiYx+\":[\"Co \",[\"0\"],\" miesięcy\"],\"nn9ice\":[\"Co \",[\"0\"],\" tygodni\"],\"Cdr8f9\":[\"Co \",[\"0\"],\" tygodni w \",[\"1\"]],\"GVEHRk\":[\"Co \",[\"0\"],\" lat\"],\"fTFfOK\":\"Każdy szablon e-mail musi zawierać przycisk wezwania do działania, który prowadzi do odpowiedniej strony\",\"BVinvJ\":\"Przykłady: \\\"Jak się o nas dowiedziałeś?\\\", \\\"Nazwa firmy na fakturze\\\"\",\"2hGPQG\":\"Przykłady: \\\"Rozmiar koszulki\\\", \\\"Preferencje posiłków\\\", \\\"Stanowisko\\\"\",\"qNuTh3\":\"Wyjątek\",\"M1RnFv\":\"Wygasłe\",\"kF8HQ7\":\"Eksportuj odpowiedzi\",\"2KAI4N\":\"Eksportuj CSV\",\"JKfSAv\":\"Eksport nie powiódł się. Spróbuj ponownie.\",\"SVOEsu\":\"Eksport rozpoczęty. Przygotowywanie pliku...\",\"wuyaZh\":\"Eksport pomyślny\",\"9bpUSo\":\"Eksportowanie partnerów\",\"jtrqH9\":\"Eksportowanie uczestników\",\"R4Oqr8\":\"Eksport zakończony. Pobieranie pliku...\",\"UlAK8E\":\"Eksportowanie zamówień\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Nie powiodło się\",\"8uOlgz\":\"Nie powiodło się o\",\"tKcbYd\":\"Nieudane zadania\",\"SsI9v/\":\"Nie udało się porzucić zamówienia. Spróbuj ponownie.\",\"LdPKPR\":\"Nie udało się przypisać konfiguracji\",\"PO0cfn\":\"Nie udało się anulować terminu\",\"YUX+f+\":\"Nie udało się anulować terminów\",\"SIHgVQ\":\"Nie udało się anulować wiadomości\",\"cEFg3R\":\"Nie udało się utworzyć partnera\",\"dVgNF1\":\"Nie udało się utworzyć konfiguracji\",\"fAoRRJ\":\"Nie udało się utworzyć harmonogramu\",\"U66oUa\":\"Nie udało się utworzyć szablonu\",\"aFk48v\":\"Nie udało się usunąć konfiguracji\",\"n1CYMH\":\"Nie udało się usunąć terminu\",\"KXv+Qn\":\"Nie udało się usunąć terminu. Mogą istnieć powiązane zamówienia.\",\"JJ0uRo\":\"Nie udało się usunąć terminów\",\"rgoBnv\":\"Nie udało się usunąć wydarzenia\",\"Zw6LWb\":\"Nie udało się usunąć zadania\",\"tq0abZ\":\"Nie udało się usunąć zadań\",\"2mkc3c\":\"Nie udało się usunąć organizatora\",\"vKMKnu\":\"Nie udało się usunąć pytania\",\"xFj7Yj\":\"Nie udało się usunąć szablonu\",\"jo3Gm6\":\"Nie udało się wyeksportować partnerów\",\"Jjw03p\":\"Nie udało się wyeksportować uczestników\",\"ZPwFnN\":\"Nie udało się wyeksportować zamówień\",\"zGE3CH\":\"Nie udało się wyeksportować raportu. Spróbuj ponownie.\",\"lS9/aZ\":\"Nie udało się załadować odbiorców\",\"X4o0MX\":\"Nie udało się załadować webhooka\",\"ETcU7q\":\"Nie udało się zaoferować miejsca\",\"5670b9\":\"Nie udało się zaoferować biletów\",\"e5KIbI\":\"Nie udało się reaktywować terminu\",\"7zyx8a\":\"Nie udało się usunąć z listy oczekujących\",\"A/P7PX\":\"Nie udało się usunąć nadpisania\",\"ogWc1z\":\"Nie udało się ponownie otworzyć daty\",\"0+iwE5\":\"Nie udało się zmienić kolejności pytań\",\"EJPAcd\":\"Nie udało się ponownie wysłać potwierdzenia zamówienia\",\"DjSbj3\":\"Nie udało się ponownie wysłać biletu\",\"YQ3QSS\":\"Nie udało się ponownie wysłać kodu weryfikacyjnego\",\"wDioLj\":\"Nie udało się ponowić zadania\",\"DKYTWG\":\"Nie udało się ponowić zadań\",\"WRREqF\":\"Nie udało się zapisać nadpisania\",\"sj/eZA\":\"Nie udało się zapisać nadpisania ceny\",\"780n8A\":\"Nie udało się zapisać ustawień produktu\",\"zTkTF3\":\"Nie udało się zapisać szablonu\",\"l6acRV\":\"Nie udało się zapisać ustawień VAT. Spróbuj ponownie.\",\"T6B2gk\":\"Nie udało się wysłać wiadomości. Spróbuj ponownie.\",\"lKh069\":\"Nie udało się rozpocząć zadania eksportu\",\"t/KVOk\":\"Nie udało się rozpocząć personifikacji. Spróbuj ponownie.\",\"QXgjH0\":\"Nie udało się zatrzymać personifikacji. Spróbuj ponownie.\",\"i0QKrm\":\"Nie udało się zaktualizować partnera\",\"NNc33d\":\"Nie udało się zaktualizować odpowiedzi.\",\"E9jY+o\":\"Nie udało się zaktualizować uczestnika\",\"uQynyf\":\"Nie udało się zaktualizować konfiguracji\",\"i2PFQJ\":\"Nie udało się zaktualizować statusu wydarzenia\",\"EhlbcI\":\"Nie udało się zaktualizować poziomu wiadomości\",\"rpGMzC\":\"Nie udało się zaktualizować zamówienia\",\"T2aCOV\":\"Nie udało się zaktualizować statusu organizatora\",\"Eeo/Gy\":\"Nie udało się zaktualizować ustawienia\",\"kqA9lY\":\"Nie udało się zaktualizować ustawień VAT\",\"7/9RFs\":\"Nie udało się przesłać obrazu.\",\"nkNfWu\":\"Nie udało się przesłać obrazu. Spróbuj ponownie.\",\"rxy0tG\":\"Nie udało się zweryfikować adresu e-mail\",\"QRUpCk\":\"Rodzina\",\"5LO38w\":\"Szybkie wypłaty na konto bankowe\",\"4lgLew\":\"Luty\",\"9bHCo2\":\"Waluta opłaty\",\"/sV91a\":\"Obsługa opłat\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Opłaty ominięte\",\"cf35MA\":\"Festiwal\",\"pAey+4\":\"Plik jest zbyt duży. Maksymalny rozmiar to 5 MB.\",\"VejKUM\":\"Najpierw wypełnij swoje dane powyżej\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filtruj uczestników\",\"8OvVZZ\":\"Filtruj uczestników\",\"N/H3++\":\"Filtruj według daty\",\"mvrlBO\":\"Filtruj według wydarzenia\",\"g+xRXP\":\"Dokończ konfigurację Stripe\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"Pierwszy\",\"1vBhpG\":\"Pierwszy uczestnik\",\"4pwejF\":\"Imię jest wymagane\",\"3lkYdQ\":\"Stała opłata\",\"6bBh3/\":\"Opłata stała\",\"zWqUyJ\":\"Stała opłata pobierana za transakcję\",\"LWL3Bs\":\"Opłata stała musi wynosić 0 lub więcej\",\"0RI8m4\":\"Lampa wyłączona\",\"q0923e\":\"Lampa włączona\",\"lWxAUo\":\"Jedzenie i napoje\",\"nFm+5u\":\"Tekst stopki\",\"a8nooQ\":\"Czwarty\",\"mob/am\":\"Pt\",\"wtuVU4\":\"Częstotliwość\",\"xVhQZV\":\"Pt\",\"39y5bn\":\"Piątek\",\"f5UbZ0\":\"Pełna własność danych\",\"MY2SVM\":\"Pełny zwrot\",\"UsIfa8\":\"Pełny rozpoznany adres\",\"PGQLdy\":\"przyszłe\",\"8N/j1s\":\"Tylko przyszłe terminy\",\"yRx/6K\":\"Przyszłe terminy zostaną skopiowane z pojemnością ustawioną na zero\",\"T02gNN\":\"Wstęp ogólny\",\"3ep0Gx\":\"Ogólne informacje o organizatorze\",\"ziAjHi\":\"Generuj\",\"exy8uo\":\"Generuj kod\",\"4CETZY\":\"Uzyskaj wskazówki\",\"pjkEcB\":\"Otrzymaj wypłatę\",\"lGYzP6\":\"Odbieraj płatności przez Stripe\",\"ZDIydz\":\"Zacznij\",\"u6FPxT\":\"Zdobądź bilety\",\"8KDgYV\":\"Przygotuj swoje wydarzenie\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Wstecz\",\"oNL5vN\":\"Przejdź do strony wydarzenia\",\"gHSuV/\":\"Przejdź do strony głównej\",\"8+Cj55\":\"Przejdź do harmonogramu\",\"6nDzTl\":\"Dobra czytelność\",\"76gPWk\":\"Rozumiem\",\"aGWZUr\":\"Przychód brutto\",\"n8IUs7\":\"Przychód brutto\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Zarządzanie gośćmi\",\"NUsTc4\":\"Trwa teraz\",\"kTSQej\":[\"Cześć \",[\"0\"],\", zarządzaj swoją platformą stąd.\"],\"dORAcs\":\"Oto wszystkie bilety powiązane z Twoim adresem e-mail.\",\"g+2103\":\"Oto Twój link partnerski\",\"bVsnqU\":\"Cześć,\",\"/iE8xx\":\"Opłata Hi.Events\",\"zppscQ\":\"Opłaty platformy Hi.Events i podział VAT według transakcji\",\"D+zLDD\":\"Ukryty\",\"DRErHC\":\"Ukryte przed uczestnikami - widoczne tylko dla organizatorów\",\"NNnsM0\":\"Ukryj opcje zaawansowane\",\"P+5Pbo\":\"Ukryj odpowiedzi\",\"VMlRqi\":\"Ukryj szczegóły\",\"FmogyU\":\"Ukryj opcje\",\"gtEbeW\":\"Wyróżnij\",\"NF8sdv\":\"Wiadomość wyróżniająca\",\"MXSqmS\":\"Wyróżnij ten produkt\",\"7ER2sc\":\"Wyróżniony\",\"sq7vjE\":\"Wyróżnione produkty będą miały inny kolor tła, aby wyróżnić się na stronie wydarzenia.\",\"1+WSY1\":\"Hobby\",\"yY8wAv\":\"Godziny\",\"sy9anN\":\"Jak długo klient ma na sfinalizowanie zakupu po otrzymaniu oferty. Pozostaw puste, aby nie było limitu czasu.\",\"n2ilNh\":\"Jak długo trwa harmonogram?\",\"DMr2XN\":\"Jak często?\",\"AVpmAa\":\"Jak płacić offline\",\"cceMns\":\"W jaki sposób VAT jest naliczany do opłat platformy, którymi Cię obciążamy.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Węgierski\",\"8Wgd41\":\"Potwierdzam swoje obowiązki jako administratora danych\",\"O8m7VA\":\"Zgadzam się na otrzymywanie powiadomień e-mail związanych z tym wydarzeniem\",\"YLgdk5\":\"Potwierdzam, że jest to wiadomość transakcyjna związana z tym wydarzeniem\",\"4/kP5a\":\"Jeśli nowa karta nie otworzyła się automatycznie, kliknij przycisk poniżej, aby kontynuować płatność.\",\"W/eN+G\":\"Jeśli puste, adres zostanie użyty do wygenerowania linku Google Maps\",\"iIEaNB\":\"Jeśli masz konto u nas, otrzymasz e-mail z instrukcjami dotyczącymi resetowania hasła.\",\"an5hVd\":\"Obrazy\",\"tSVr6t\":\"Podszywaj się\",\"TWXU0c\":\"Podszywaj się pod użytkownika\",\"5LAZwq\":\"Podszywanie się rozpoczęte\",\"IMwcdR\":\"Podszywanie się zatrzymane\",\"0I0Hac\":\"Ważne ogłoszenie\",\"yD3avI\":\"Ważne: Zmiana adresu e-mail zaktualizuje link do dostępu do tego zamówienia. Po zapisaniu zostaniesz przekierowany do nowego linku zamówienia.\",\"jT142F\":[\"Za \",[\"diffHours\"],\" godzin\"],\"OoSyqO\":[\"Za \",[\"diffMinutes\"],\" minut\"],\"PdMhEx\":[\"w ciągu ostatnich \",[\"0\"],\" min\"],\"u7r0G5\":\"Osobiście — ustaw miejsce\",\"Ip0hl5\":\"stacjonarne, online, nieustawione lub mieszane\",\"F1Xp97\":\"Pojedynczy uczestnicy\",\"85e6zs\":\"Wstaw token Liquid\",\"38KFY0\":\"Wstaw zmienną\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Natychmiastowe wypłaty Stripe\",\"nbfdhU\":\"Integracje\",\"I8eJ6/\":\"Wewnętrzne notatki na bilecie uczestnika\",\"B2Tpo0\":\"Nieprawidłowy e-mail\",\"5tT0+u\":\"Nieprawidłowy format e-maila\",\"f9WRpE\":\"Nieprawidłowy typ pliku. Prześlij obraz.\",\"tnL+GP\":\"Nieprawidłowa składnia Liquid. Popraw ją i spróbuj ponownie.\",\"N9JsFT\":\"Nieprawidłowy format numeru VAT\",\"g+lLS9\":\"Zaproś członka zespołu\",\"1z26sk\":\"Zaproś członka zespołu\",\"KR0679\":\"Zaproś członków zespołu\",\"aH6ZIb\":\"Zaproś swój zespół\",\"IuMGvq\":\"Faktura\",\"Lj7sBL\":\"Włoski\",\"F5/CBH\":\"przedmiot(y)\",\"BzfzPK\":\"Przedmioty\",\"rjyWPb\":\"Styczeń\",\"KmWyx0\":\"Zadanie\",\"o5r6b2\":\"Zadanie usunięte\",\"cd0jIM\":\"Szczegóły zadania\",\"ruJO57\":\"Nazwa zadania\",\"YZi+Hu\":\"Zadanie w kolejce do ponowienia\",\"nCywLA\":\"Dołącz z dowolnego miejsca\",\"SNzppu\":\"Dołącz do listy oczekujących\",\"dLouFI\":[\"Dołącz do listy oczekujących dla \",[\"productDisplayName\"]],\"2gMuHR\":\"Dołączono\",\"u4ex5r\":\"Lipiec\",\"zeEQd/\":\"Czerwiec\",\"MxjCqk\":\"Szukasz tylko swoich biletów?\",\"xOTzt5\":\"przed chwilą\",\"0RihU9\":\"Właśnie się zakończyło\",\"lB2hSG\":[\"Informuj mnie o nowościach i wydarzeniach od \",[\"0\"]],\"ioFA9i\":\"Zachowaj zysk.\",\"4Sffp7\":\"Etykieta dla sesji\",\"o66QSP\":\"aktualizacje etykiety\",\"RtKKbA\":\"Ostatni\",\"DruLRc\":\"Ostatnie 14 dni\",\"ve9JTU\":\"Nazwisko jest wymagane\",\"h0Q9Iw\":\"Ostatnia odpowiedź\",\"gw3Ur5\":\"Ostatnio uruchomiony\",\"FIq1Ba\":\"Później\",\"xvnLMP\":\"Ostatnie odprawy\",\"pzAivY\":\"Szerokość geograficzna rozpoznanej lokalizacji\",\"N5TErv\":\"Pozostaw puste dla braku limitu\",\"L/hDDD\":\"Pozostaw puste, aby zastosować tę listę odpraw do wszystkich sesji\",\"9Pf3wk\":\"Pozostaw włączone, aby obejmowało każdy bilet wydarzenia. Wyłącz, aby wybrać konkretne bilety.\",\"Hq2BzX\":\"Powiadom ich o zmianie\",\"+uexiy\":\"Powiadom ich o zmianach\",\"exYcTF\":\"Biblioteka\",\"1njn7W\":\"Jasny\",\"1qY5Ue\":\"Link wygasł lub jest nieprawidłowy\",\"+zSD/o\":\"Link do strony głównej wydarzenia\",\"psosdY\":\"Link do szczegółów zamówienia\",\"6JzK4N\":\"Link do biletu\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Linki dozwolone\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Widok listy\",\"dF6vP6\":\"Na żywo\",\"fpMs2Z\":\"NA ŻYWO\",\"D9zTjx\":\"Wydarzenia na żywo\",\"C33p4q\":\"Załadowane terminy\",\"WdmJIX\":\"Ładowanie podglądu...\",\"IoDI2o\":\"Ładowanie tokenów...\",\"G3Ge9Z\":\"Ładowanie logów webhooka...\",\"NFxlHW\":\"Ładowanie webhooków\",\"E0DoRM\":\"Lokalizacja usunięta\",\"NtLHT3\":\"Sformatowany adres lokalizacji\",\"h4vxDc\":\"Szerokość geograficzna lokalizacji\",\"f2TMhR\":\"Długość geograficzna lokalizacji\",\"lnCo2f\":\"Tryb lokalizacji\",\"8pmGFk\":\"Nazwa lokalizacji\",\"7w8lJU\":\"Lokalizacja zapisana\",\"YsRXDD\":\"Lokalizacja zaktualizowana\",\"A/kIva\":\"aktualizacje lokalizacji\",\"VppBoU\":\"Lokalizacje\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo i okładka\",\"gddQe0\":\"Logo i obraz okładki dla Twojego organizatora\",\"TBEnp1\":\"Logo będzie wyświetlane w nagłówku\",\"Jzu30R\":\"Logo będzie wyświetlane na bilecie\",\"zKTMTg\":\"Długość geograficzna rozpoznanej lokalizacji\",\"PSRm6/\":\"Znajdź moje bilety\",\"yJFu/X\":\"Biuro główne\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Zarządzaj \",[\"0\"]],\"wZJfA8\":\"Zarządzaj terminami i godzinami swojego cyklicznego wydarzenia\",\"RlzPUE\":\"Zarządzaj w Stripe\",\"6NXJRK\":\"Zarządzaj harmonogramem\",\"zXuaxY\":\"Zarządzaj listą oczekujących na swoim wydarzeniu, przeglądaj statystyki i oferuj bilety uczestnikom.\",\"BWTzAb\":\"Ręczne\",\"g2npA5\":\"Oferta ręczna\",\"hg6l4j\":\"Marzec\",\"pqRBOz\":\"Oznacz jako zweryfikowane (nadpisanie administratora)\",\"2L3vle\":\"Maks wiadomości / 24h\",\"Qp4HWD\":\"Maks odbiorców / wiadomość\",\"3JzsDb\":\"Maj\",\"agPptk\":\"Średni\",\"xDAtGP\":\"Wiadomość\",\"bECJqy\":\"Wiadomość zatwierdzona pomyślnie\",\"1jRD0v\":\"Wyślij wiadomość do uczestników z konkretnymi biletami\",\"uQLXbS\":\"Wiadomość anulowana\",\"48rf3i\":\"Wiadomość nie może przekraczać 5000 znaków\",\"ZPj0Q8\":\"Szczegóły wiadomości\",\"Vjat/X\":\"Wiadomość jest wymagana\",\"0/yJtP\":\"Wyślij wiadomość do właścicieli zamówień z konkretnymi produktami\",\"saG4At\":\"Wiadomość zaplanowana\",\"mFdA+i\":\"Poziom wiadomości\",\"v7xKtM\":\"Poziom wiadomości zaktualizowany pomyślnie\",\"H9HlDe\":\"minut\",\"agRWc1\":\"Minuty\",\"YYzBv9\":\"Pn\",\"zz/Wd/\":\"Tryb\",\"fpMgHS\":\"Pn\",\"hty0d5\":\"Poniedziałek\",\"JbIgPz\":\"Wartości pieniężne są przybliżonymi sumami we wszystkich walutach\",\"qvF+MT\":\"Monitoruj i zarządzaj nieudanymi zadaniami w tle\",\"kY2ll9\":\"miesiąc\",\"HajiZl\":\"Miesiąc\",\"+8Nek/\":\"Miesięcznie\",\"1LkxnU\":\"Wzorzec miesięczny\",\"6jefe3\":\"miesiące\",\"f8jrkd\":\"więcej\",\"JcD7qf\":\"Więcej akcji\",\"w36OkR\":\"Najczęściej oglądane wydarzenia (ostatnie 14 dni)\",\"+Y/na7\":\"Przesuń wszystkie terminy wcześniej lub później\",\"3DIpY0\":\"Wiele lokalizacji\",\"g9cQCP\":\"Wiele typów biletów\",\"GfaxEk\":\"Muzyka\",\"oVGCGh\":\"Moje bilety\",\"8/brI5\":\"Nazwa jest wymagana\",\"sFFArG\":\"Nazwa musi mieć mniej niż 255 znaków\",\"sCV5Yc\":\"Nazwa wydarzenia\",\"xxU3NX\":\"Dochód netto\",\"7I8LlL\":\"Nowa pojemność\",\"n1GRql\":\"Nowa etykieta\",\"y0Fcpd\":\"Nowa lokalizacja\",\"ArHT/C\":\"Nowe rejestracje\",\"uK7xWf\":\"Nowa godzina:\",\"veT5Br\":\"Następna sesja\",\"WXtl5X\":[\"Następna: \",[\"nextFormatted\"]],\"eWRECP\":\"Życie nocne\",\"HSw5l3\":\"Nie - jestem osobą prywatną lub firmą niezarejestrowaną na VAT\",\"VHfLAW\":\"Brak kont\",\"+jIeoh\":\"Nie znaleziono kont\",\"074+X8\":\"Brak aktywnych webhooków\",\"zxnup4\":\"Brak partnerów do wyświetlenia\",\"Dwf4dR\":\"Brak pytań dla uczestników jeszcze\",\"th7rdT\":\"Brak uczestników\",\"PKySlW\":\"Brak uczestników dla tego terminu.\",\"/UC6qk\":\"Nie znaleziono danych atrybucji\",\"E2vYsO\":\"Stripe nie zgłosił jeszcze żadnych możliwości.\",\"amMkpL\":\"Brak miejsc\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Brak dostępnych list zameldowań dla tego wydarzenia.\",\"wG+knX\":\"Brak odpraw\",\"+dAKxg\":\"Nie znaleziono konfiguracji\",\"LiLk8u\":\"Brak dostępnych połączeń\",\"eb47T5\":\"Nie znaleziono danych dla wybranych filtrów. Spróbuj dostosować zakres dat lub walutę.\",\"lFVUyx\":\"Brak listy odpraw przypisanej do terminu\",\"I8mtzP\":\"Brak dostępnych terminów w tym miesiącu. Spróbuj przejść do innego miesiąca.\",\"yDukIL\":\"Brak terminów pasujących do aktualnych filtrów.\",\"B7phdj\":\"Brak terminów pasujących do filtrów\",\"/ZB4Um\":\"Brak terminów pasujących do wyszukiwania\",\"gEdNe8\":\"Nie zaplanowano jeszcze żadnych terminów\",\"27GYXJ\":\"Nie zaplanowano żadnych terminów.\",\"pZNOT9\":\"Brak daty zakończenia\",\"dW40Uz\":\"Nie znaleziono wydarzeń\",\"8pQ3NJ\":\"Brak wydarzeń rozpoczynających się w ciągu następnych 24 godzin\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Brak nieudanych zadań\",\"EpvBAp\":\"Brak faktury\",\"XZkeaI\":\"Nie znaleziono logów\",\"nrSs2u\":\"Nie znaleziono wiadomości\",\"Rj99yx\":\"Brak dostępnych sesji\",\"IFU1IG\":\"Brak sesji w tym dniu\",\"OVFwlg\":\"Brak pytań dotyczących zamówienia jeszcze\",\"EJ7bVz\":\"Nie znaleziono zamówień\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Brak zamówień dla tego terminu.\",\"wUv5xQ\":\"Brak aktywności organizatora w ciągu ostatnich 14 dni\",\"vLd1tV\":\"Brak dostępnego kontekstu organizatora.\",\"B7w4KY\":\"Brak innych dostępnych organizatorów\",\"PChXMe\":\"Brak opłaconych zamówień\",\"6jYQGG\":\"Brak przeszłych wydarzeń\",\"CHzaTD\":\"Brak popularnych wydarzeń w ciągu ostatnich 14 dni\",\"zK/+ef\":\"Brak produktów dostępnych do wyboru\",\"M1/lXs\":\"Brak produktów skonfigurowanych dla tego wydarzenia.\",\"kY7XDn\":\"Żadne produkty nie mają wpisów na liście oczekujących\",\"wYiAtV\":\"Brak ostatnich rejestracji kont\",\"UW90md\":\"Nie znaleziono odbiorców\",\"QoAi8D\":\"Brak odpowiedzi\",\"JeO7SI\":\"Brak odpowiedzi\",\"EK/G11\":\"Brak odpowiedzi jeszcze\",\"7J5OKy\":\"Brak zapisanych lokalizacji\",\"wpCjcf\":\"Brak zapisanych lokalizacji. Pojawią się tutaj, gdy utworzysz wydarzenia z adresami.\",\"mPdY6W\":\"Brak sugestii\",\"3sRuiW\":\"Nie znaleziono biletów\",\"k2C0ZR\":\"Brak nadchodzących terminów\",\"yM5c0q\":\"Brak nadchodzących wydarzeń\",\"qpC74J\":\"Nie znaleziono użytkowników\",\"8wgkoi\":\"Brak oglądanych wydarzeń w ciągu ostatnich 14 dni\",\"Arzxc1\":\"Brak wpisów na liście oczekujących\",\"n5vdm2\":\"Żadne zdarzenia webhook nie zostały jeszcze zarejestrowane dla tego punktu końcowego. Zdarzenia pojawią się tutaj po ich wywołaniu.\",\"4GhX3c\":\"Brak webhooków\",\"4+am6b\":\"Nie, zostaw mnie tutaj\",\"4JVMUi\":\"nieedytowane\",\"Itw24Q\":\"Nie zameldowany\",\"x5+Lcz\":\"Nie zameldowany\",\"8n10sz\":\"Nie kwalifikuje się\",\"kLvU3F\":\"Powiadom uczestników i wstrzymaj sprzedaż\",\"t9QlBd\":\"Listopad\",\"kAREMN\":\"Liczba terminów do utworzenia\",\"6u1B3O\":\"Sesja\",\"mmoE62\":\"Sesja anulowana\",\"UYWXdN\":\"Data zakończenia sesji\",\"k7dZT5\":\"Godzina zakończenia sesji\",\"Opinaj\":\"Etykieta sesji\",\"V9flmL\":\"Harmonogram sesji\",\"NUTUUs\":\"strona harmonogramu sesji\",\"AT8UKD\":\"Data rozpoczęcia sesji\",\"Um8bvD\":\"Godzina rozpoczęcia sesji\",\"Kh3WO8\":\"Podsumowanie sesji\",\"byXCTu\":\"Sesje\",\"KATw3p\":\"Sesje (tylko przyszłe)\",\"85rTR2\":\"Sesje można skonfigurować po utworzeniu\",\"dzQfDY\":\"Październik\",\"BwJKBw\":\"z\",\"9h7RDh\":\"Zaproponuj\",\"EfK2O6\":\"Zaproponuj miejsce\",\"3sVRey\":\"Zaoferuj bilety\",\"2O7Ybb\":\"Limit czasu oferty\",\"1jUg5D\":\"Zaoferowano\",\"l+/HS6\":[\"Oferty wygasają po \",[\"timeoutHours\"],\" godzinach.\"],\"lQgMLn\":\"Nazwa biura lub miejsca\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Płatność offline\",\"nO3VbP\":[\"W sprzedaży \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — podaj dane połączenia\",\"LuZBbx\":\"Online i stacjonarnie\",\"IXuOqt\":\"Online i stacjonarnie — zobacz harmonogram\",\"w3DG44\":\"Szczegóły połączenia online\",\"WjSpu5\":\"Wydarzenie online\",\"TP6jss\":\"Szczegóły połączenia dla wydarzenia online\",\"NdOxqr\":\"Tylko administratorzy konta mogą usuwać lub archiwizować wydarzenia. Skontaktuj się z administratorem swojego konta w celu uzyskania pomocy.\",\"rnoDMF\":\"Tylko administratorzy konta mogą usuwać lub archiwizować organizatorów. Skontaktuj się z administratorem swojego konta w celu uzyskania pomocy.\",\"bU7oUm\":\"Wysyłaj tylko do zamówień z tymi statusami\",\"M2w1ni\":\"Widoczne tylko z kodem promocyjnym\",\"y8Bm7C\":\"Otwórz odprawę\",\"RLz7P+\":\"Otwórz sesję\",\"cDSdPb\":\"Opcjonalny pseudonim wyświetlany w listach, np. \\\"Sala konferencyjna HQ\\\"\",\"HXMJxH\":\"Opcjonalny tekst dla zastrzeżeń, informacji kontaktowych lub notek z podziękowaniami (tylko jedna linia)\",\"L565X2\":\"opcje\",\"8m9emP\":\"lub dodaj pojedynczy termin\",\"dSeVIm\":\"zamówienie\",\"c/TIyD\":\"Zamówienie i bilet\",\"H5qWhm\":\"Zamówienie anulowane\",\"b6+Y+n\":\"Zamówienie zakończone\",\"x4MLWE\":\"Potwierdzenie zamówienia\",\"CsTTH0\":\"Potwierdzenie zamówienia zostało pomyślnie wysłane ponownie\",\"ppuQR4\":\"Zamówienie utworzone\",\"0UZTSq\":\"Waluta zamówienia\",\"xtQzag\":\"Szczegóły zamówienia\",\"HdmwrI\":\"Email zamówienia\",\"bwBlJv\":\"Imię zamówienia\",\"vrSW9M\":\"Zamówienie zostało anulowane i zwrócone. Właściciel zamówienia został powiadomiony.\",\"rzw+wS\":\"Posiadacze zamówień\",\"oI/hGR\":\"ID zamówienia\",\"Pc729f\":\"Zamówienie oczekuje na płatność offline\",\"F4NXOl\":\"Nazwisko zamówienia\",\"RQCXz6\":\"Limity zamówień\",\"SO9AEF\":\"Ustawione limity zamówień\",\"5RDEEn\":\"Lokalizacja zamówienia\",\"vu6Arl\":\"Zamówienie oznaczone jako opłacone\",\"sLbJQz\":\"Zamówienie nie znalezione\",\"kvYpYu\":\"Zamówienie nie znalezione\",\"i8VBuv\":\"Numer zamówienia\",\"eJ8SvM\":\"Numer, data zakupu, email kupującego\",\"FaPYw+\":\"Właściciel zamówienia\",\"eB5vce\":\"Właściciele zamówień z konkretnym produktem\",\"CxLoxM\":\"Właściciele zamówień z produktami\",\"DoH3fD\":\"Płatność zamówienia oczekuje\",\"UkHo4c\":\"Ref zamówienia\",\"EZy55F\":\"Zamówienie zwrócone\",\"6eSHqs\":\"Statusy zamówień\",\"oW5877\":\"Suma zamówienia\",\"e7eZuA\":\"Zamówienie zaktualizowane\",\"1SQRYo\":\"Zamówienie zostało pomyślnie zaktualizowane\",\"KndP6g\":\"URL zamówienia\",\"3NT0Ck\":\"Zamówienie zostało anulowane\",\"V5khLm\":\"zamówienia\",\"sd5IMt\":\"Zamówienia zakończone\",\"5It1cQ\":\"Zamówienia wyeksportowane\",\"tlKX/S\":\"Zamówienia obejmujące wiele terminów zostaną oznaczone do ręcznego przeglądu.\",\"UQ0ACV\":\"Suma zamówień\",\"B/EBQv\":\"Zamówienia:\",\"qtGTNu\":\"Konta organiczne\",\"ucgZ0o\":\"Organizacja\",\"P/JHA4\":\"Organizator został pomyślnie zarchiwizowany\",\"S3CZ5M\":\"Panel organizatora\",\"GzjTd0\":\"Organizator został pomyślnie usunięty\",\"Uu0hZq\":\"Email organizatora\",\"Gy7BA3\":\"Adres email organizatora\",\"SQqJd8\":\"Organizator nie znaleziony\",\"HF8Bxa\":\"Organizator został pomyślnie przywrócony\",\"wpj63n\":\"Ustawienia organizatora\",\"o1my93\":\"Aktualizacja statusu organizatora nie powiodła się. Spróbuj ponownie później\",\"rLHma1\":\"Status organizatora zaktualizowany\",\"LqBITi\":\"Zostanie użyty szablon organizatora/domyślny\",\"q4zH+l\":\"Organizatorzy\",\"/IX/7x\":\"Inne\",\"RsiDDQ\":\"Inne listy (bilet nie włączony)\",\"aDfajK\":\"Na świeżym powietrzu\",\"qMASRF\":\"Wiadomości wychodzące\",\"iCOVQO\":\"Nadpisz\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Nadpisz cenę\",\"cnVIpl\":\"Nadpisanie usunięte\",\"6/dCYd\":\"Przegląd\",\"6WdDG7\":\"Strona\",\"8uqsE5\":\"Strona nie jest już dostępna\",\"QkLf4H\":\"URL strony\",\"sF+Xp9\":\"Wyświetlenia strony\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Opłacone konta\",\"5F7SYw\":\"Częściowy zwrot\",\"fFYotW\":[\"Częściowo zwrócony: \",[\"0\"]],\"i8day5\":\"Przekaż opłatę kupującemu\",\"k4FLBQ\":\"Przekaż kupującemu\",\"Ff0Dor\":\"Przeszłe\",\"BFjW8X\":\"Zaległe\",\"xTPjSy\":\"Przeszłe wydarzenia\",\"/l/ckQ\":\"Wklej URL\",\"URAE3q\":\"Wstrzymany\",\"4fL/V7\":\"Zapłać\",\"OZK07J\":\"Zapłać, aby odblokować\",\"c2/9VE\":\"Ładunek\",\"5cxUwd\":\"Data płatności\",\"ENEPLY\":\"Metoda płatności\",\"8Lx2X7\":\"Płatność otrzymana\",\"fx8BTd\":\"Płatności niedostępne\",\"C+ylwF\":\"Wypłaty\",\"UbRKMZ\":\"Oczekujące\",\"UkM20g\":\"Oczekuje na recenzję\",\"dPYu1F\":\"Na uczestnika\",\"mQV/nJ\":\"na min\",\"VlXNyK\":\"Na zamówienie\",\"hauDFf\":\"Na bilet\",\"mnF83a\":\"Opłata procentowa\",\"TNLuRD\":\"Opłata procentowa (%)\",\"MixU2P\":\"Procent musi wynosić od 0 do 100\",\"MkuVAZ\":\"Procent kwoty transakcji\",\"/Bh+7r\":\"Wydajność\",\"fIp56F\":\"Trwale usuń to wydarzenie i wszystkie powiązane dane.\",\"nJeeX7\":\"Trwale usuń tego organizatora i wszystkie jego wydarzenia.\",\"wfCTgK\":\"Trwale usuń ten termin\",\"6kPk3+\":\"Informacje osobiste\",\"zmwvG2\":\"Telefon\",\"SdM+Q1\":\"Wybierz lokalizację\",\"tSR/oe\":\"Wybierz datę zakończenia\",\"e8kzpp\":\"Wybierz co najmniej jeden dzień miesiąca\",\"35C8QZ\":\"Wybierz co najmniej jeden dzień tygodnia\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Złożone\",\"wBJR8i\":\"Planujesz wydarzenie?\",\"J3lhKT\":\"Opłata platformy\",\"RD51+P\":[\"Opłata platformy \",[\"0\"],\" odjęta od Twojej wypłaty\"],\"br3Y/y\":\"Opłaty platformy\",\"3buiaw\":\"Raport opłat platformy\",\"kv9dM4\":\"Przychody platformy\",\"PJ3Ykr\":\"Sprawdź swój bilet pod kątem zaktualizowanej godziny. Twoje bilety są nadal ważne — nie musisz nic robić, chyba że nowe godziny Ci nie odpowiadają. Odpowiedz na ten e-mail w razie pytań.\",\"OtjenF\":\"Proszę podać prawidłowy adres e-mail\",\"jEw0Mr\":\"Wprowadź prawidłowy URL\",\"n8+Ng/\":\"Wprowadź 5-cyfrowy kod\",\"r+lQXT\":\"Wprowadź swój numer VAT\",\"Dvq0wf\":\"Podaj obraz.\",\"2cUopP\":\"Uruchom ponownie proces płatności.\",\"GoXxOA\":\"Wybierz datę i godzinę\",\"8KmsFa\":\"Wybierz zakres dat\",\"EFq6EG\":\"Wybierz obraz.\",\"fuwKpE\":\"Spróbuj ponownie.\",\"klWBeI\":\"Poczekaj przed żądaniem innego kodu\",\"hfHhaa\":\"Poczekaj, przygotowujemy Twoich partnerów do eksportu...\",\"o+tJN/\":\"Poczekaj, przygotowujemy Twoich uczestników do eksportu...\",\"+5Mlle\":\"Poczekaj, przygotowujemy Twoje zamówienia do eksportu...\",\"trnWaw\":\"Polski\",\"luHAJY\":\"Popularne wydarzenia (ostatnie 14 dni)\",\"p/78dY\":\"Pozycja\",\"TjX7xL\":\"Wiadomość po płatności\",\"OESu7I\":\"Zapobiegaj nadmiernej sprzedaży, dzieląc zapasy między wieloma typami biletów.\",\"NgVUL2\":\"Podgląd formularza płatności\",\"cs5muu\":\"Podgląd strony wydarzenia\",\"+4yRWM\":\"Cena biletu\",\"Jm2AC3\":\"Próg cenowy\",\"a5jvSX\":\"Poziomy cenowe\",\"ReihZ7\":\"Podgląd wydruku\",\"JnuPvH\":\"Drukuj bilet\",\"tYF4Zq\":\"Drukuj do PDF\",\"LcET2C\":\"Polityka prywatności\",\"8z6Y5D\":\"Przetwórz zwrot\",\"JcejNJ\":\"Przetwarzanie zamówienia\",\"EWCLpZ\":\"Produkt utworzony\",\"XkFYVB\":\"Produkt usunięty\",\"YMwcbR\":\"Sprzedaż produktów, przychody i podział podatków\",\"ls0mTC\":\"Nie można edytować ustawień produktu dla anulowanych terminów.\",\"2339ej\":\"Ustawienia produktu pomyślnie zapisane\",\"ldVIlB\":\"Produkt zaktualizowany\",\"CP3D8G\":\"Postęp\",\"JoKGiJ\":\"Kod promocyjny\",\"k3wH7i\":\"Użycie kodu promocyjnego i podział rabatów\",\"tZqL0q\":\"kody promocyjne\",\"oCHiz3\":\"Kody promocyjne\",\"uEhdRh\":\"Tylko promocyjne\",\"dLm8V5\":\"E-maile promocyjne mogą skutkować zawieszeniem konta\",\"XoEWtl\":\"Podaj co najmniej jedno pole adresu dla nowej lokalizacji.\",\"2W/7Gz\":\"Podaj poniższe informacje przed kolejną kontrolą Stripe, aby zachować płynność wypłat.\",\"aemBRq\":\"Dostawca\",\"EEYbdt\":\"Opublikuj\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Zakupiony\",\"JunetL\":\"Kupujący\",\"phmeUH\":\"Email kupującego\",\"ywR4ZL\":\"Odprawa przez kod QR\",\"oWXNE5\":\"Ilość\",\"biEyJ4\":\"Odpowiedzi\",\"k/bJj0\":\"Pytania zostały przeorganizowane\",\"b24kPi\":\"Kolejka\",\"lTPqpM\":\"Szybka wskazówka\",\"fqDzSu\":\"Stawka\",\"mnUGVC\":\"Przekroczono limit stawki. Spróbuj ponownie później.\",\"t41hVI\":\"Zaproponuj miejsce ponownie\",\"TNclgc\":\"Reaktywować ten termin? Zostanie ponownie otwarty dla przyszłej sprzedaży.\",\"uqoRbb\":\"Analityka w czasie rzeczywistym\",\"xzRvs4\":[\"Otrzymuj aktualizacje produktów od \",[\"0\"],\".\"],\"pLXbi8\":\"Ostatnie rejestracje kont\",\"3kJ0gv\":\"Ostatni uczestnicy\",\"qhfiwV\":\"Ostatnie odprawy\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Ostatnie zamówienia\",\"7hPBBn\":\"odbiorca\",\"jp5bq8\":\"odbiorców\",\"yPrbsy\":\"Odbiorcy\",\"E1F5Ji\":\"Odbiorcy są dostępni po wysłaniu wiadomości\",\"wuhHPE\":\"Cykliczne\",\"asLqwt\":\"Wydarzenie cykliczne\",\"D0tAMe\":\"Wydarzenia cykliczne\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Przekierowywanie do Stripe...\",\"pnoTN5\":\"Konta poleceń\",\"ACKu03\":\"Odśwież podgląd\",\"vuFYA6\":\"Zwróć wszystkie zamówienia dla tych terminów\",\"4cRUK3\":\"Zwróć wszystkie zamówienia dla tego terminu\",\"fKn/k6\":\"Kwota zwrotu\",\"qY4rpA\":\"Zwrot nie powiódł się\",\"TspTcZ\":\"Zwrot wykonany\",\"FaK/8G\":[\"Zwróć zamówienie \",[\"0\"]],\"MGbi9P\":\"Zwrot oczekuje\",\"BDSRuX\":[\"Zwrócony: \",[\"0\"]],\"bU4bS1\":\"Zwroty\",\"rYXfOA\":\"Ustawienia regionalne\",\"5tl0Bp\":\"Pytania rejestracyjne\",\"ZNo5k1\":\"Pozostało\",\"EMnuA4\":\"Przypomnienie zaplanowane\",\"Bjh87R\":\"Usuń etykietę ze wszystkich terminów\",\"KkJtVK\":\"Otwórz ponownie dla nowej sprzedaży\",\"XJwWJp\":\"Otworzyć ponownie tę datę dla nowej sprzedaży? Wcześniej anulowane bilety nie zostaną przywrócone — dotknięci uczestnicy pozostaną anulowani, a wszelkie już wydane zwroty nie zostaną cofnięte.\",\"bAwDQs\":\"Powtarzaj co\",\"CQeZT8\":\"Raport nie znaleziony\",\"JEPMXN\":\"Poproś o nowy link\",\"TMLAx2\":\"Wymagane\",\"mdeIOH\":\"Wyślij ponownie kod\",\"sQxe68\":\"Wyślij ponownie potwierdzenie\",\"bxoWpz\":\"Wyślij ponownie email potwierdzenia\",\"G42SNI\":\"Wyślij ponownie email\",\"TTpXL3\":[\"Wyślij ponownie za \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Wyślij ponownie bilet\",\"Uwsg2F\":\"Zarezerwowane\",\"8wUjGl\":\"Zarezerwowane do\",\"a5z8mb\":\"Przywróć cenę bazową\",\"kCn6wb\":\"Resetowanie...\",\"404zLK\":\"Rozpoznana lokalizacja lub nazwa miejsca\",\"ZlCDf+\":\"Odpowiedź\",\"bsydMp\":\"Szczegóły odpowiedzi\",\"yKu/3Y\":\"Przywróć\",\"RokrZf\":\"Przywróć wydarzenie\",\"/JyMGh\":\"Przywróć organizatora\",\"HFvFRb\":\"Przywróć to wydarzenie, aby ponownie było widoczne.\",\"DDIcqy\":\"Przywróć tego organizatora i ponownie uczyń go aktywnym.\",\"mO8KLE\":\"wyniki\",\"6gRgw8\":\"Spróbuj ponownie\",\"1BG8ga\":\"Spróbuj ponownie wszystkie\",\"rDC+T6\":\"Spróbuj ponownie zadanie\",\"CbnrWb\":\"Wróć do wydarzenia\",\"mdQ0zb\":\"Wielokrotnego użytku miejsca dla Twoich wydarzeń. Lokalizacje utworzone z autouzupełniania są tutaj zapisywane automatycznie.\",\"XFOPle\":\"Użyj ponownie\",\"1Zehp4\":\"Użyj ponownie połączenia Stripe innego organizatora w tym koncie.\",\"Oo/PLb\":\"Podsumowanie przychodów\",\"O/8Ceg\":\"Przychód dzisiaj\",\"CfuueU\":\"Cofnij ofertę\",\"RIgKv+\":\"Trwaj do konkretnej daty\",\"JYRqp5\":\"So\",\"dFFW9L\":[\"Sprzedaż zakończona \",[\"0\"]],\"loCKGB\":[\"Sprzedaż kończy się \",[\"0\"]],\"wlfBad\":\"Okres sprzedaży\",\"qi81Jg\":\"Daty okresu sprzedaży dotyczą wszystkich terminów w Twoim harmonogramie. Aby kontrolować ceny i dostępność dla poszczególnych terminów, użyj nadpisań na <0>stronie harmonogramu sesji.\",\"5CDM6r\":\"Ustawiony okres sprzedaży\",\"ftzaMf\":\"Okres sprzedaży, limity zamówień, widoczność\",\"zpekWp\":[\"Sprzedaż rozpoczyna się \",[\"0\"]],\"mUv9U4\":\"Sprzedaż\",\"9KnRdL\":\"Sprzedaż jest wstrzymana\",\"JC3J0k\":\"Sprzedaż, frekwencja i podział odpraw na sesję\",\"3VnlS9\":\"Sprzedaż, zamówienia i metryki wydajności dla wszystkich wydarzeń\",\"3Q1AWe\":\"Sprzedaż:\",\"LeuERW\":\"Tak samo jak wydarzenie\",\"B4nE3N\":\"Przykładowa cena biletu\",\"8BRPoH\":\"Przykładowa Sala\",\"PiK6Ld\":\"So\",\"+5kO8P\":\"Sobota\",\"zJiuDn\":\"Zapisz nadpisanie opłaty\",\"NB8Uxt\":\"Zapisz harmonogram\",\"KZrfYJ\":\"Zapisz linki społeczne\",\"9Y3hAT\":\"Zapisz szablon\",\"C8ne4X\":\"Zapisz projekt biletu\",\"cTI8IK\":\"Zapisz ustawienia VAT\",\"6/TNCd\":\"Zapisz ustawienia VAT\",\"4RvD9q\":\"Zapisana lokalizacja\",\"cgw0cL\":\"Zapisane lokalizacje\",\"lvSrsT\":\"Zapisane lokalizacje\",\"Fbqm/I\":\"Zapisanie nadpisania tworzy dedykowaną konfigurację dla tego organizatora, jeśli aktualnie używa domyślnych ustawień systemowych.\",\"I+FvbD\":\"Skanuj\",\"0zd6Nm\":\"Zeskanuj bilet, aby zameldować uczestnika\",\"bQG7Qk\":\"Zeskanowane bilety pojawią się tutaj\",\"WDYSLJ\":\"Tryb skanera\",\"gmB6oO\":\"Harmonogram\",\"j6NnBq\":\"Harmonogram pomyślnie utworzony\",\"YP7frt\":\"Harmonogram kończy się\",\"QS1Nla\":\"Zaplanuj na później\",\"NAzVVw\":\"Zaplanuj wiadomość\",\"Fz09JP\":\"Harmonogram rozpoczyna się\",\"4ba0NE\":\"Zaplanowane\",\"qcP/8K\":\"Zaplanowany czas\",\"A1taO8\":\"Szukaj\",\"ftNXma\":\"Szukaj partnerów...\",\"VMU+zM\":\"Szukaj uczestników\",\"VY+Bdn\":\"Szukaj po nazwie konta lub e-mailu...\",\"VX+B3I\":\"Szukaj po tytule wydarzenia lub organizatorze...\",\"R0wEyA\":\"Szukaj po nazwie zadania lub wyjątku...\",\"VT+urE\":\"Szukaj po nazwie lub e-mailu...\",\"GHdjuo\":\"Szukaj po nazwie, e-mailu lub koncie...\",\"4mBFO7\":\"Szukaj po imieniu, nr zamówienia, nr biletu lub emailu\",\"20ce0U\":\"Szukaj po identyfikatorze zamówienia, nazwie klienta lub e-mailu...\",\"4DSz7Z\":\"Szukaj po temacie, wydarzeniu lub koncie...\",\"nQC7Z9\":\"Szukaj terminów...\",\"iRtEpV\":\"Szukaj terminów…\",\"JRM7ao\":\"Wyszukaj adres\",\"BWF1kC\":\"Szukaj wiadomości...\",\"3aD3GF\":\"Sezonowe\",\"ku//5b\":\"Drugi\",\"Mck5ht\":\"Bezpieczne potwierdzenie\",\"s7tXqF\":\"Zobacz harmonogram\",\"JFap6u\":\"Zobacz, czego Stripe jeszcze potrzebuje\",\"p7xUrt\":\"Wybierz kategorię\",\"hTKQwS\":\"Wybierz datę i godzinę\",\"e4L7bF\":\"Wybierz wiadomość, aby zobaczyć jej treść\",\"zPRPMf\":\"Wybierz poziom\",\"uqpVri\":\"Wybierz godzinę\",\"BFRSTT\":\"Wybierz konto\",\"wgNoIs\":\"Zaznacz wszystko\",\"mCB6Je\":\"Zaznacz wszystko\",\"aCEysm\":[\"Zaznacz wszystko w \",[\"0\"]],\"a6+167\":\"Wybierz wydarzenie\",\"CFbaPk\":\"Wybierz grupę uczestników\",\"88a49s\":\"Wybierz kamerę\",\"tVW/yo\":\"Wybierz walutę\",\"SJQM1I\":\"Wybierz datę\",\"n9ZhRa\":\"Wybierz datę i czas zakończenia\",\"gTN6Ws\":\"Wybierz czas zakończenia\",\"0U6E9W\":\"Wybierz kategorię wydarzenia\",\"j9cPeF\":\"Wybierz typy wydarzeń\",\"ypTjHL\":\"Wybierz sesję\",\"KizCK7\":\"Wybierz datę i czas rozpoczęcia\",\"dJZTv2\":\"Wybierz czas rozpoczęcia\",\"x8XMsJ\":\"Wybierz poziom wiadomości dla tego konta. To kontroluje limity wiadomości i uprawnienia do łączy.\",\"aT3jZX\":\"Wybierz strefę czasową\",\"TxfvH2\":\"Wybierz, którzy uczestnicy powinni otrzymać tę wiadomość\",\"Ropvj0\":\"Wybierz, które wydarzenia spowodują ten webhook\",\"+6YAwo\":\"zaznaczone\",\"ylXj1N\":\"Wybrane\",\"uq3CXQ\":\"Wyprzedaj swoje wydarzenie.\",\"j9b/iy\":\"Szybko się sprzedaje 🔥\",\"73qYgo\":\"Wyślij jako test\",\"HMAqFK\":\"Wysyłaj e-maile do uczestników, posiadaczy biletów lub właścicieli zamówień. Wiadomości mogą być wysłane natychmiast lub zaplanowane na później.\",\"22Itl6\":\"Wyślij mi kopię\",\"NpEm3p\":\"Wyślij teraz\",\"nOBvex\":\"Wysyłaj w czasie rzeczywistym dane o zamówieniach i uczestnikach do swoich zewnętrznych systemów.\",\"1lNPhX\":\"Wyślij email powiadomienia o zwrocie\",\"eaUTwS\":\"Wyślij link resetowania\",\"5cV4PY\":\"Wyślij do wszystkich sesji lub wybierz konkretną\",\"QEQlnV\":\"Wyślij swoją pierwszą wiadomość\",\"3nMAVT\":\"Wysyłanie za 2d 4h\",\"IoAuJG\":\"Wysyłanie...\",\"h69WC6\":\"Wysłane\",\"BVu2Hz\":\"Wysłane przez\",\"ZFa8wv\":\"Wysyłane do uczestników, gdy zaplanowany termin zostanie anulowany\",\"SPdzrs\":\"Wysłane do klientów, gdy złożą zamówienie\",\"LxSN5F\":\"Wysłane do każdego uczestnika z jego szczegółami biletu\",\"hgvbYY\":\"Wrzesień\",\"5sN96e\":\"Sesja anulowana\",\"89xaFU\":\"Ustaw domyślne ustawienia opłat platformy dla nowych wydarzeń utworzonych pod tym organizatorem.\",\"eXssj5\":\"Ustaw domyślne ustawienia dla nowych wydarzeń utworzonych pod tym organizatorem.\",\"uPe5p8\":\"Ustaw, jak długo trwa każdy termin\",\"xNsRxU\":\"Ustaw liczbę terminów\",\"ODuUEi\":\"Ustaw lub wyczyść etykietę terminu\",\"buHACR\":\"Ustaw godzinę zakończenia każdego terminu na taki czas po jego rozpoczęciu.\",\"TaeFgl\":\"Ustaw na bez limitu (usuń limit)\",\"pd6SSe\":\"Skonfiguruj cykliczny harmonogram, aby automatycznie tworzyć terminy, lub dodawaj je pojedynczo.\",\"s0FkEx\":\"Ustaw listy odpraw dla różnych wejść, sesji lub dni.\",\"TaWVGe\":\"Skonfiguruj wypłaty\",\"gzXY7l\":\"Skonfiguruj harmonogram\",\"xMO+Ao\":\"Ustaw swoją organizację\",\"h/9JiC\":\"Skonfiguruj swój harmonogram\",\"ETC76A\":\"Ustaw, zmień lub usuń lokalizację lub dane online sesji\",\"C3htzi\":\"Ustawienie zaktualizowane\",\"Ohn74G\":\"Konfiguracja i projekt\",\"1W5XyZ\":\"Konfiguracja zajmuje tylko kilka minut — nie potrzebujesz istniejącego konta Stripe. Stripe obsługuje karty, portfele, regionalne metody płatności i ochronę przed oszustwami, więc Ty możesz skupić się na wydarzeniu.\",\"GG7qDw\":\"Udostępnij link partnera\",\"hL7sDJ\":\"Udostępnij stronę organizatora\",\"jy6QDF\":\"Zarządzanie wspólną pojemnością\",\"jDNHW4\":\"Przesuń godziny\",\"tPfIaW\":[\"Przesunięto godziny dla \",[\"count\"],\" termin(ów)\"],\"WwlM8F\":\"Pokaż opcje zaawansowane\",\"cMW+gm\":[\"Pokaż wszystkie platformy (\",[\"0\"],\" więcej z wartościami)\"],\"wXi9pZ\":\"Pokaż notatki niezalogowanym\",\"UVPI5D\":\"Pokaż mniej platform\",\"Eu/N/d\":\"Pokaż checkbox opt-in marketingu\",\"SXzpzO\":\"Pokaż checkbox opt-in marketingu domyślnie\",\"57tTk5\":\"Pokaż więcej terminów\",\"b33PL9\":\"Pokaż więcej platform\",\"Eut7p9\":\"Pokaż szczegóły niezalogowanym\",\"+RoWKN\":\"Pokaż odpowiedzi niezalogowanym\",\"t1LIQW\":[\"Wyświetlanie \",[\"0\"],\" z \",[\"totalRows\"],\" rekordów\"],\"E717U9\":[\"Wyświetlanie \",[\"0\"],\"–\",[\"1\"],\" z \",[\"2\"]],\"5rzhBQ\":[\"Wyświetlanie \",[\"MAX_VISIBLE\"],\" z \",[\"totalAvailable\"],\" terminów. Wpisz, aby wyszukać.\"],\"WSt3op\":[\"Wyświetlanie pierwszych \",[\"0\"],\" — pozostałe \",[\"1\"],\" sesja(e) nadal zostaną uwzględnione przy wysyłaniu wiadomości.\"],\"OJLTEL\":\"Pokazane przy pierwszym otwarciu strony.\",\"jVRHeq\":\"Zarejestrowany\",\"5C7J+P\":\"Pojedyncze wydarzenie\",\"E//btK\":\"Pomiń ręcznie edytowane terminy\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Społeczność\",\"d0rUsW\":\"Linki społeczne\",\"j/TOB3\":\"Linki społeczne i strona internetowa\",\"s9KGXU\":\"Sprzedane\",\"iACSrw\":\"Niektóre dane są ukryte w dostępie publicznym. Zaloguj się, aby zobaczyć wszystko.\",\"KTxc6k\":\"Coś poszło nie tak, spróbuj ponownie lub skontaktuj się z pomocą, jeśli problem będzie się powtarzać\",\"lkE00/\":\"Coś poszło nie tak. Spróbuj ponownie później.\",\"wdxz7K\":\"Źródło\",\"fDG2by\":\"Duchowość\",\"oPaRES\":\"Podziel odprawę według dni, stref lub typów biletów. Udostępnij link obsłudze — bez konta.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Instrukcje dla obsługi\",\"tXkhj/\":\"Początek\",\"JcQp9p\":\"Data i czas rozpoczęcia\",\"0m/ekX\":\"Data i czas rozpoczęcia\",\"izRfYP\":\"Data rozpoczęcia jest wymagana\",\"tuO4fV\":\"Data rozpoczęcia sesji\",\"2R1+Rv\":\"Czas rozpoczęcia wydarzenia\",\"2Olov3\":\"Godzina rozpoczęcia sesji\",\"n9ZrDo\":\"Zacznij wpisywać nazwę miejsca lub adres...\",\"qeFVhN\":[\"Rozpoczyna się za \",[\"diffDays\"],\" dni\"],\"AOqtxN\":[\"Rozpoczyna się za \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Rozpoczyna się za \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Rozpoczyna się za \",[\"seconds\"],\"s\"],\"NqChgF\":\"Rozpoczyna się jutro\",\"2NbyY/\":\"Statystyki\",\"GVUxAX\":\"Statystyki są oparte na dacie utworzenia konta\",\"29Hx9U\":\"Statystyki\",\"5ia+r6\":\"Nadal wymagane\",\"wuV0bK\":\"Zatrzymaj personifikację\",\"s/KaDb\":\"Stripe połączony\",\"Bk06QI\":\"Stripe połączony\",\"akZMv8\":[\"Skopiowano połączenie Stripe od \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe nie zwrócił linku konfiguracji. Spróbuj ponownie.\",\"aKtF0O\":\"Stripe nie połączony\",\"9i0++A\":\"Identyfikator płatności Stripe\",\"R1lIMV\":\"Stripe wkrótce poprosi o więcej informacji\",\"FzcCHA\":\"Stripe poprowadzi Cię przez kilka krótkich pytań, aby zakończyć konfigurację.\",\"eYbd7b\":\"Nd\",\"ii0qn/\":\"Temat jest wymagany\",\"M7Uapz\":\"Temat pojawi się tutaj\",\"6aXq+t\":\"Temat:\",\"JwTmB6\":\"Pomyślnie zduplikowany produkt\",\"WUOCgI\":\"Pomyślnie zaproponowano miejsce\",\"IvxA4G\":[\"Pomyślnie zaproponowano bilety \",[\"count\"],\" osobom\"],\"kKpkzy\":\"Pomyślnie zaproponowano bilety 1 osobie\",\"Zi3Sbw\":\"Pomyślnie usunięto z listy oczekujących\",\"RuaKfn\":\"Pomyślnie zaktualizowany adres\",\"kzx0uD\":\"Pomyślnie zaktualizowane domyślne ustawienia wydarzenia\",\"5n+Wwp\":\"Pomyślnie zaktualizowany organizator\",\"DMCX/I\":\"Pomyślnie zaktualizowane domyślne ustawienia opłat platformy\",\"URUYHc\":\"Pomyślnie zaktualizowane ustawienia opłat platformy\",\"0Dk/l8\":\"Pomyślnie zaktualizowane ustawienia SEO\",\"S8Tua9\":\"Ustawienia pomyślnie zaktualizowane\",\"MhOoLQ\":\"Pomyślnie zaktualizowane linki społeczne\",\"CNSSfp\":\"Ustawienia śledzenia pomyślnie zaktualizowane\",\"kj7zYe\":\"Pomyślnie zaktualizowany Webhook\",\"dXoieq\":\"Podsumowanie\",\"/RfJXt\":[\"Letni Festiwal Muzyki \",[\"0\"]],\"CWOPIK\":\"Letni Festiwal Muzyki 2025\",\"D89zck\":\"Nd\",\"DBC3t5\":\"Niedziela\",\"UaISq3\":\"Szwedzki\",\"JZTQI0\":\"Zmień organizatora\",\"9YHrNC\":\"Domyślnie systemowe\",\"lruQkA\":\"Dotknij ekranu, aby wznowić\",\"TJUrME\":[\"Docelowo uczestnicy z \",[\"0\"],\" wybranych sesji.\"],\"yT6dQ8\":\"Podatek zebrane pogrupowane po typie podatku i imprezie\",\"Ye321X\":\"Nazwa podatku\",\"WyCBRt\":\"Podsumowanie podatków\",\"GkH0Pq\":\"Zastosowane podatki i opłaty\",\"Rwiyt2\":\"Podatki skonfigurowane\",\"iQZff7\":\"Podatki, opłaty, widoczność, okres sprzedaży, wyłączenie produktu i limity zamówień\",\"SXvRWU\":\"Współpraca zespołowa\",\"vlf/In\":\"Technologia\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Powiedz ludziom czego się spodziewać na Twojej imprezie\",\"NiIUyb\":\"Powiedz nam o Twojej imprezie\",\"DovcfC\":\"Powiedz nam o Twojej organizacji. Informacja ta będzie wyświetlana na stronach Twoich imprez.\",\"69GWRq\":\"Powiedz nam, jak często powtarza się Twoje wydarzenie, a utworzymy dla Ciebie wszystkie terminy.\",\"mXPbwY\":\"Podaj swój status rejestracji VAT, abyśmy mogli zastosować właściwą obsługę VAT do opłat platformy.\",\"7wtpH5\":\"Szablon aktywny\",\"QHhZeE\":\"Szablon utworzony pomyślnie\",\"xrWdPR\":\"Szablon usunięty pomyślnie\",\"G04Zjt\":\"Szablon zapisany pomyślnie\",\"xowcRf\":\"Warunki korzystania z usługi\",\"6K0GjX\":\"Tekst może być trudny do przeczytania\",\"u0F1Ey\":\"Cz\",\"nm3Iz/\":\"Dziękujemy za udział!\",\"pYwj0k\":\"Dziękujemy,\",\"k3IitN\":\"To już koniec\",\"KfmPRW\":\"Kolor tła strony. W przypadku używania obrazu okładki jest on stosowany jako nakładka.\",\"MDNyJz\":\"Kod wygaśnie za 10 minut. Sprawdź folder spam, jeśli nie widzisz wiadomości e-mail.\",\"AIF7J2\":\"Waluta, w której zdefiniowana jest stała opłata. Zostanie przeliczona na walutę zamówienia przy finalizacji zakupu.\",\"MJm4Tq\":\"Waluta zamówienia\",\"cDHM1d\":\"Adres e-mail został zmieniony. Uczestnik otrzyma nowy bilet na zaktualizowany adres e-mail.\",\"I/NNtI\":\"Miejsce imprezy\",\"tXadb0\":\"Impreza, którą szukasz, nie jest dostępna w chwili obecnej. Mogła zostać usunięta, wygaśnięta lub adres URL może być nieprawidłowy.\",\"5fPdZe\":\"Pierwsza data, od której ten harmonogram będzie generowany.\",\"EBzPwC\":\"Pełny adres imprezy\",\"sxKqBm\":\"Pełna kwota zamówienia zostanie zwrócona do oryginalnej metody płatności klienta.\",\"KgDp6G\":\"Link, który próbujesz otworzyć, wygasł lub nie jest już ważny. Sprawdź swoją pocztę e-mail, aby uzyskać zaktualizowany link do zarządzania zamówieniem.\",\"5OmEal\":\"Język klienta\",\"Np4eLs\":[\"Maksimum to \",[\"MAX_PREVIEW\"],\" sesji. Zmniejsz zakres dat, częstotliwość lub liczbę sesji dziennie.\"],\"sYLeDq\":\"Organizator, którego szukasz, nie został znaleziony. Strona mogła być przeniesiona, usunięta lub adres URL może być nieprawidłowy.\",\"PCr4zw\":\"Nadpisanie jest zapisywane w dzienniku audytu zamówienia.\",\"C4nQe5\":\"Opłata platformy jest dodawana do ceny biletu. Kupujący płacą więcej, ale Ty otrzymujesz pełną cenę biletu.\",\"HxxXZO\":\"Podstawowy kolor marki używany na przyciskach i podświetleniach\",\"z0KrIG\":\"Zaplanowany czas jest wymagany\",\"EWErQh\":\"Zaplanowany czas musi być w przyszłości\",\"UNd0OU\":[\"Sesja \\\"\",[\"title\"],\"\\\" pierwotnie zaplanowana na \",[\"0\"],\" została przeniesiona.\"],\"DEcpfp\":\"Treść szablonu zawiera nieprawidłową składnię Liquid. Proszę to poprawić i spróbować ponownie.\",\"injXD7\":\"Numer VAT nie mógł być zweryfikowany. Proszę sprawdzić numer i spróbować ponownie.\",\"A4UmDy\":\"Teatr\",\"tDwYhx\":\"Motyw i kolory\",\"O7g4eR\":\"Brak nadchodzących terminów dla tego wydarzenia\",\"HrIl0p\":[\"Nie ma listy odpraw przypisanej do tego terminu. Lista \\\"\",[\"0\"],\"\\\" odprawia uczestników we wszystkich terminach — personel skanujący bilet na inny termin nadal zakończy odprawę pomyślnie.\"],\"dt3TwA\":\"To są domyślne ceny i ilości dla wszystkich terminów. Daty sprzedaży na progach obowiązują globalnie. Możesz nadpisać ceny i ilości dla poszczególnych terminów na <0>stronie harmonogramu sesji.\",\"062KsE\":\"Te szczegóły są wyświetlane na bilecie uczestnika i podsumowaniu zamówienia tylko dla tego terminu.\",\"5Eu+tn\":\"Te szczegóły będą widoczne tylko po pomyślnym sfinalizowaniu zamówienia.\",\"jQjwR+\":\"Te dane zastąpią dotychczasową lokalizację na objętych sesjach i pojawią się na biletach uczestników.\",\"QP3gP+\":\"Te ustawienia mają zastosowanie tylko do skopiowanego kodu osadzanego i nie będą przechowywane.\",\"HirZe8\":\"Te szablony będą używane jako domyślne dla wszystkich wydarzeń w Twojej organizacji. Poszczególne wydarzenia mogą zastąpić te szablony własnymi wersjami niestandardowymi.\",\"lzAaG5\":\"Te szablony będą zastępować domyślne ustawienia organizatora tylko dla tego wydarzenia. Jeśli tutaj nie jest ustawiony żaden niestandardowy szablon, zostanie użyty szablon organizatora.\",\"UlykKR\":\"Trzeci\",\"wkP5FM\":\"Dotyczy każdego pasującego terminu w wydarzeniu, w tym terminów, które nie są aktualnie widoczne. Uczestnicy zarejestrowani na którymkolwiek z tych terminów będą dostępni w kreatorze wiadomości po zakończeniu aktualizacji.\",\"SOmGDa\":\"Ta lista odpraw jest przypisana do sesji, która została anulowana, więc nie może być już używana do odpraw.\",\"XBNC3E\":\"Ten kod będzie używany do śledzenia sprzedaży. Dozwolone są tylko litery, cyfry, łączniki i podkreślenia.\",\"AaP0M+\":\"Ta kombinacja kolorów może być trudna do odczytania dla niektórych użytkowników\",\"o1phK/\":[\"Ten termin ma \",[\"orderCount\"],\" zamówień, na które wpłynie zmiana.\"],\"F/UtGt\":\"Ten termin został anulowany. Nadal możesz go usunąć, aby trwale go wyeliminować.\",\"BLZ7pX\":\"Ten termin jest w przeszłości. Zostanie utworzony, ale nie będzie widoczny dla uczestników wśród nadchodzących terminów.\",\"7IIY0z\":\"Ten termin jest oznaczony jako wyprzedany.\",\"bddWMP\":\"Ten termin nie jest już dostępny. Wybierz inny termin.\",\"RzEvf5\":\"To wydarzenie się skończyło\",\"YClrdK\":\"To wydarzenie nie zostało jeszcze opublikowane\",\"dFJnia\":\"To jest nazwa Twojego organizatora, która będzie wyświetlana użytkownikom.\",\"vt7jiq\":\"Klucz podpisu zostanie wyświetlony tylko ten jeden raz. Skopiuj go teraz i przechowuj w bezpiecznym miejscu.\",\"L7dIM7\":\"Ten link jest nieprawidłowy lub wygasł.\",\"MR5ygV\":\"Ten link nie jest już ważny\",\"9LEqK0\":\"Ta nazwa jest widoczna dla użytkowników końcowych\",\"QdUMM9\":\"Ta sesja osiągnęła maksymalną pojemność\",\"j5FdeA\":\"To zamówienie jest przetwarzane.\",\"sjNPMw\":\"To zamówienie zostało porzucone. Możesz rozpocząć nowe zamówienie w dowolnym momencie.\",\"OhCesD\":\"To zamówienie zostało anulowane. Możesz rozpocząć nowe zamówienie w dowolnym momencie.\",\"lyD7rQ\":\"Ten profil organizatora nie został jeszcze opublikowany\",\"9b5956\":\"Ten podgląd pokazuje, jak Twój e-mail będzie wyglądać z przykładowymi danymi. Rzeczywiste e-maile będą używać rzeczywistych wartości.\",\"uM9Alj\":\"Ten produkt jest wyróżniony na stronie wydarzenia\",\"RqSKdX\":\"Ten produkt jest wyprzedany\",\"W12OdJ\":\"Ten raport jest tylko do celów informacyjnych. Zawsze konsultuj się z profesjonalistą podatkowymi przed użyciem tych danych do celów rachunkowych lub podatkowych. Proszę odnieść się do pulpitu Stripe, ponieważ Hi.Events może brakować danych historycznych.\",\"0Ew0uk\":\"Ten bilet właśnie został zeskanowany. Proszę czekać przed zeskanowaniem ponownie.\",\"FYXq7k\":[\"Wpłynie to na \",[\"loadedAffectedCount\"],\" termin(ów).\"],\"kvpxIU\":\"Będzie to używane do powiadomień i komunikacji z użytkownikami.\",\"rhsath\":\"Nie będzie to widoczne dla klientów, ale pomaga Ci zidentyfikować partnera afiliacji.\",\"hV6FeJ\":\"Przepustowość\",\"+FjWgX\":\"Cz\",\"kkDQ8m\":\"Czwartek\",\"0GSPnc\":\"Projektowanie biletów\",\"EZC/Cu\":\"Projekt biletów został pomyślnie zapisany\",\"bbslmb\":\"Projektant biletów\",\"1BPctx\":\"Bilet dla\",\"bgqf+K\":\"E-mail posiadacza biletu\",\"oR7zL3\":\"Imię i nazwisko posiadacza biletu\",\"HGuXjF\":\"Posiadacze biletów\",\"CMUt3Y\":\"Posiadacze biletów\",\"awHmAT\":\"ID biletu\",\"6czJik\":\"Logo biletu\",\"OkRZ4Z\":\"Nazwa biletu\",\"t79rDv\":\"Bilet nie znaleziony\",\"6tmWch\":\"Bilet lub produkt\",\"1tfWrD\":\"Podgląd biletu dla\",\"KnjoUA\":\"Cena biletu\",\"tGCY6d\":\"Cena biletu\",\"pGZOcL\":\"Bilet został pomyślnie ponownie wysłany\",\"8jLPgH\":\"Typ biletu\",\"X26cQf\":\"URL biletu\",\"8qsbZ5\":\"Ticketing i sprzedaż\",\"zNECqg\":\"bilety\",\"6GQNLE\":\"Bilety\",\"NRhrIB\":\"Bilety i produkty\",\"OrWHoZ\":\"Bilety są automatycznie oferowane klientom z listy oczekujących, gdy pojawi się dostępność.\",\"EUnesn\":\"Dostępne bilety\",\"AGRilS\":\"Sprzedane bilety\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Godzina\",\"dMtLDE\":\"do\",\"/jQctM\":\"Do\",\"tiI71C\":\"Aby zwiększyć swoje limity, skontaktuj się z nami pod adresem\",\"ecUA8p\":\"Dzisiaj\",\"W428WC\":\"Przełącz kolumny\",\"BRMXj0\":\"Jutro\",\"UBSG1X\":\"Najlepsi organizatorzy (ostatnie 14 dni)\",\"3sZ0xx\":\"Razem kont\",\"EaAPbv\":\"Łączna kwota zapłacona\",\"SMDzqJ\":\"Łącznie uczestników\",\"orBECM\":\"Razem zebrano\",\"k5CU8c\":\"Łączna liczba wpisów\",\"4B7oCp\":\"Łączna opłata\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Razem użytkowników\",\"oJjplO\":\"Razem wyświetleń\",\"rBZ9pz\":\"Wycieczki\",\"orluER\":\"Śledź wzrost konta i wydajność według źródła atrybuacji\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Prawda, jeśli płatność offline\",\"9GsDR2\":\"Prawda, jeśli płatność jest w toku\",\"GUA0Jy\":\"Spróbuj innego wyszukiwania lub filtru\",\"2P/OWN\":\"Spróbuj zmienić filtry, aby zobaczyć więcej terminów.\",\"ouM5IM\":\"Spróbuj innego e-maila\",\"3DZvE7\":\"Spróbuj Hi.Events za darmo\",\"7P/9OY\":\"Wt\",\"vq2WxD\":\"Wt\",\"G3myU+\":\"Wtorek\",\"Kz91g/\":\"Turecki\",\"GdOhw6\":\"Wyłącz dźwięk\",\"KUOhTy\":\"Włącz dźwięk\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Wpisz \\\"usuń\\\", aby potwierdzić\",\"XxecLm\":\"Typ biletu\",\"IrVSu+\":\"Nie można zduplikować produktu. Proszę sprawdzić swoje dane\",\"Vx2J6x\":\"Nie można pobrać uczestnika\",\"h0dx5e\":\"Nie udało się dołączyć do listy oczekujących\",\"DaE0Hg\":\"Nie można załadować szczegółów uczestnika.\",\"GlnD5Y\":\"Nie można załadować produktów dla tego terminu. Spróbuj ponownie.\",\"17VbmV\":\"Nie można cofnąć odprawy\",\"n57zCW\":\"Konta nieprzypisane\",\"9uI/rE\":\"Cofnij\",\"b9SN9q\":\"Unikalna referencja zamówienia\",\"Ef7StM\":\"Nieznany\",\"ZBAScj\":\"Nieznany uczestnik\",\"MEIAzV\":\"Bez nazwy\",\"K6L5Mx\":\"Lokalizacja bez nazwy\",\"X13xGn\":\"Niezaufane\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Aktualizuj partnera afiliacji\",\"59qHrb\":\"Zaktualizuj pojemność\",\"Gaem9v\":\"Zaktualizuj nazwę i opis wydarzenia\",\"7EhE4k\":\"Zaktualizuj etykietę\",\"NPQWj8\":\"Aktualizuj lokalizację\",\"75+lpR\":[\"Aktualizacja: \",[\"subjectTitle\"],\" — zmiany w harmonogramie\"],\"UOGHdA\":[\"Aktualizacja: \",[\"subjectTitle\"],\" — zmiana godziny sesji\"],\"ogoTrw\":[\"Zaktualizowano \",[\"count\"],\" termin(ów)\"],\"dDuona\":[\"Zaktualizowano pojemność dla \",[\"count\"],\" termin(ów)\"],\"FT3LSc\":[\"Zaktualizowano etykietę dla \",[\"count\"],\" termin(ów)\"],\"8EcY1g\":[\"Zaktualizowano lokalizację dla \",[\"count\"],\" sesji\"],\"gJQsLv\":\"Prześlij obraz okładki dla swojego organizatora\",\"4kEGqW\":\"Prześlij logo dla swojego organizatora\",\"lnCMdg\":\"Prześlij obraz\",\"29w7p6\":\"Przesyłanie obrazu...\",\"HtrFfw\":\"URL jest wymagany\",\"vzWC39\":\"USB\",\"td5pxI\":\"Skaner USB aktywny\",\"dyTklH\":\"Skaner USB wstrzymany\",\"OHJXlK\":\"Użyj <0>szablonów Liquid, aby spersonalizować swoje e-maile\",\"g0WJMu\":\"Użyj listy dla wszystkich terminów\",\"0k4cdb\":\"Użyj danych zamówienia dla wszystkich uczestników. Nazwiska i e-maile uczestników będą zgodne z danymi kupującego.\",\"MKK5oI\":\"Użyć listy dla wszystkich terminów czy utworzyć listę dla tego terminu?\",\"bA31T4\":\"Użyj danych kupującego dla wszystkich uczestników\",\"rnoQsz\":\"Używany do obramowań, wyróżnień i stylizacji kodu QR\",\"BV4L/Q\":\"Analityka UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Weryfikowanie Twojego numeru VAT...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Numer VAT\",\"pnVh83\":\"Numer VAT\",\"CabI04\":\"Numer VAT nie może zawierać spacji\",\"PMhxAR\":\"Numer VAT musi zaczynać się od 2-literowego kodu kraju, po którym następuje 8-15 znaków alfanumerycznych (np. DE123456789)\",\"gPgdNV\":\"Numer VAT pomyślnie zweryfikowany\",\"RUMiLy\":\"Weryfikacja numeru VAT nie powiodła się\",\"vqji3Y\":\"Weryfikacja numeru VAT nie powiodła się. Sprawdź swój numer VAT.\",\"8dENF9\":\"VAT na opłacie\",\"ZutOKU\":\"Stawka VAT\",\"+KJZt3\":\"Zarejestrowany jako podatnik VAT\",\"Nfbg76\":\"Ustawienia VAT pomyślnie zapisane\",\"UvYql/\":\"Ustawienia VAT zapisane. Weryfikujemy Twój numer VAT w tle.\",\"bXn1Jz\":\"Ustawienia VAT zaktualizowane\",\"tJylUv\":\"Traktowanie VAT dla opłat platformy\",\"FlGprQ\":\"Traktowanie VAT dla opłat platformy: firmy zarejestrowane jako podatnicy VAT w UE mogą korzystać z mechanizmu odwrotnego obciążenia (0% — Artykuł 196 dyrektywy VAT 2006/112/WE). Firmy niezarejestrowane jako podatnicy VAT są obciążane irlandzkim VAT w wysokości 23%.\",\"516oLj\":\"Usługa weryfikacji VAT jest tymczasowo niedostępna\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Kod weryfikacyjny\",\"QDEWii\":\"Zweryfikowano\",\"wCKkSr\":\"Zweryfikuj e-mail\",\"/IBv6X\":\"Zweryfikuj swój e-mail\",\"e/cvV1\":\"Weryfikowanie...\",\"fROFIL\":\"Wietnamski\",\"p5nYkr\":\"Zobacz wszystko\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Pokaż wszystkie możliwości\",\"RnvnDc\":\"Zobacz wszystkie wiadomości wysłane na platformie\",\"+WFMis\":\"Przeglądaj i pobieraj raporty dla wszystkich swoich wydarzeń. Uwzględniane są tylko zakończone zamówienia.\",\"c7VN/A\":\"Zobacz odpowiedzi\",\"SZw9tS\":\"Zobacz szczegóły\",\"9+84uW\":[\"Zobacz szczegóły \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Zobacz wydarzenie\",\"c6SXHN\":\"Zobacz stronę wydarzenia\",\"n6EaWL\":\"Zobacz logi\",\"OaKTzt\":\"Zobacz mapę\",\"zNZNMs\":\"Zobacz wiadomość\",\"67OJ7t\":\"Zobacz zamówienie\",\"tKKZn0\":\"Zobacz szczegóły zamówienia\",\"KeCXJu\":\"Przeglądaj szczegóły zamówień, wykonuj zwroty i ponownie wysyłaj potwierdzenia.\",\"9jnAcN\":\"Zobacz stronę główną organizatora\",\"1J/AWD\":\"Zobacz bilet\",\"N9FyyW\":\"Przeglądaj, edytuj i eksportuj zarejestrowanych uczestników.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Oczekuje\",\"quR8Qp\":\"Oczekiwanie na płatność\",\"KrurBH\":\"Oczekiwanie na skan…\",\"u0n+wz\":\"Lista oczekujących\",\"3RXFtE\":\"Lista oczekujących włączona\",\"TwnTPy\":\"Oferta z listy oczekujących wygasła\",\"NzIvKm\":\"Lista oczekujących uruchomiona\",\"aUi/Dz\":\"Ostrzeżenie: To jest domyślna konfiguracja systemu. Zmiany wpłyną na wszystkie konta, które nie mają przypisanej konkretnej konfiguracji.\",\"qeygIa\":\"Śr\",\"aT/44s\":\"Nie udało się skopiować tego połączenia Stripe. Spróbuj ponownie.\",\"RRZDED\":\"Nie mogliśmy znaleźć żadnych zamówień związanych z tym adresem e-mail.\",\"2RZK9x\":\"Nie mogliśmy znaleźć szukanego zamówienia. Link mógł wygasnąć lub szczegóły zamówienia mogły się zmienić.\",\"nefMIK\":\"Nie mogliśmy znaleźć szukanego biletu. Link mógł wygasnąć lub szczegóły biletu mogły się zmienić.\",\"miysJh\":\"Nie mogliśmy znaleźć tego zamówienia. Mogło zostać usunięte.\",\"ADsQ23\":\"Nie udało się teraz połączyć ze Stripe. Spróbuj ponownie za chwilę.\",\"HJKdzP\":\"Napotkaliśmy problem podczas ładowania tej strony. Proszę spróbować ponownie.\",\"jegrvW\":\"Współpracujemy ze Stripe, aby wypłaty trafiały bezpośrednio na Twoje konto bankowe.\",\"IfN2Qo\":\"Zalecamy kwadratowe logo o minimalnych wymiarach 200x200px\",\"wJzo/w\":\"Zalecamy wymiary 400px na 400px i maksymalny rozmiar pliku 5MB\",\"KRCDqH\":\"Używamy plików cookie, aby pomóc nam zrozumieć, jak strona jest używana, i poprawić Twoje doświadczenia.\",\"x8rEDQ\":\"Nie mogliśmy zweryfikować numeru VAT po wielu próbach. Będziemy kontynuować próby w tle. Proszę sprawdzić później.\",\"iy+M+c\":[\"Powiadomimy Cię e-mailem, gdy zwolni się miejsce dla \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Po zapisaniu otworzymy kreator wiadomości z wstępnie wypełnionym szablonem. Przejrzyj go i wyślij — nic nie jest wysyłane automatycznie.\",\"q1BizZ\":\"Wyślemy Twoje bilety na ten e-mail\",\"ZOmUYW\":\"Zweryfikujemy Twój numer VAT w tle. W przypadku jakichkolwiek problemów damy Ci znać.\",\"LKjHr4\":[\"Wprowadziliśmy zmiany w harmonogramie \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" dotyczące \",[\"affectedCount\"],\" sesji.\"],\"Fq/Nx7\":\"Wysłaliśmy 5-cyfrowy kod weryfikacyjny na:\",\"GdWB+V\":\"Webhook został pomyślnie utworzony\",\"2X4ecw\":\"Webhook został pomyślnie usunięty\",\"ndBv0v\":\"Integracje webhooków\",\"CThMKa\":\"Dzienniki webhook\",\"I0adYQ\":\"Klucz podpisu Webhook\",\"nuh/Wq\":\"URL webhook\",\"8BMPMe\":\"Webhook nie będzie wysyłał powiadomień\",\"FSaY52\":\"Webhook będzie wysyłał powiadomienia\",\"v1kQyJ\":\"Webhooki\",\"On0aF2\":\"Strona internetowa\",\"0f7U0k\":\"Śr\",\"VAcXNz\":\"Środa\",\"64X6l4\":\"tydzień\",\"4XSc4l\":\"Co tydzień\",\"IAUiSh\":\"tygodnie\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Witamy ponownie\",\"QDWsl9\":[\"Witamy w \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Witamy w \",[\"0\"],\", oto lista wszystkich Twoich wydarzeń\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"O której godzinie?\",\"FaSXqR\":\"Jaki typ wydarzenia?\",\"0WyYF4\":\"Co widzi niezalogowana obsługa\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Gdy odprawa zostanie usunięta\",\"RPe6bE\":\"Gdy termin cyklicznego wydarzenia zostaje anulowany\",\"Gmd0hv\":\"Gdy nowy uczestnik zostanie utworzony\",\"zyIyPe\":\"Gdy zostaje utworzone nowe wydarzenie\",\"Lc18qn\":\"Gdy nowe zamówienie zostanie utworzone\",\"dfkQIO\":\"Gdy nowy produkt zostanie utworzony\",\"8OhzyY\":\"Gdy produkt zostanie usunięty\",\"tRXdQ9\":\"Gdy produkt zostanie zaktualizowany\",\"9L9/28\":\"Gdy produkt zostanie wyprzedany, klienci mogą dołączyć do listy oczekujących, aby otrzymać powiadomienie, gdy zwolnią się miejsca.\",\"Q7CWxp\":\"Gdy uczestnik zostanie anulowany\",\"IuUoyV\":\"Gdy uczestnik zostanie odprawiony\",\"nBVOd7\":\"Gdy uczestnik zostanie zaktualizowany\",\"t7cuMp\":\"Gdy wydarzenie zostaje zarchiwizowane\",\"gtoSzE\":\"Gdy wydarzenie zostaje zaktualizowane\",\"ny2r8d\":\"Gdy zamówienie zostanie anulowane\",\"c9RYbv\":\"Gdy zamówienie zostanie oznaczone jako opłacone\",\"ejMDw1\":\"Gdy zamówienie zostanie zwrócone\",\"fVPt0F\":\"Gdy zamówienie zostanie zaktualizowane\",\"bcYlvb\":\"Gdy odprawa się zakończy\",\"XIG669\":\"Gdy odprawa się rozpocznie\",\"403wpZ\":\"Gdy włączone, nowe wydarzenia pozwolą uczestnikom zarządzać własnymi szczegółami biletów za pomocą bezpiecznego linku. Można to zmienić dla każdego wydarzenia.\",\"blXLKj\":\"Gdy włączone, nowe wydarzenia wyświetlą pole wyboru zgody marketingowej podczas realizacji zamówienia. Można to zmienić dla każdego wydarzenia.\",\"Kj0Txn\":\"Gdy włączone, nie będą pobierane opłaty aplikacyjne za transakcje Stripe Connect. Użyj tego dla krajów, w których opłaty aplikacyjne nie są obsługiwane.\",\"tMqezN\":\"Czy zwroty są przetwarzane\",\"uchB0M\":\"Podgląd widgetu\",\"uvIqcj\":\"Warsztaty\",\"EpknJA\":\"Napisz swoją wiadomość tutaj...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"rok\",\"zkWmBh\":\"Co rok\",\"+BGee5\":\"lata\",\"X/azM1\":\"Tak - mam ważny numer rejestracji VAT w UE\",\"Tz5oXG\":\"Tak, anuluj moje zamówienie\",\"QlSZU0\":[\"Podszywa się pod <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Wystawiasz częściowy zwrot. Klient otrzyma zwrot \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Możesz skonfigurować dodatkowe opłaty za usługi i podatki w ustawieniach konta.\",\"rj3A7+\":\"Możesz nadpisać to dla poszczególnych terminów później.\",\"paWwQ0\":\"W razie potrzeby nadal możesz ręcznie oferować bilety.\",\"jTDzpA\":\"Nie możesz zarchiwizować ostatniego aktywnego organizatora na swoim koncie.\",\"5VGIlq\":\"Osiągnąłeś limit wiadomości.\",\"casL1O\":\"Masz podatki i opłaty dodane do darmowego produktu. Czy chcesz je usunąć?\",\"9jJNZY\":\"Musisz potwierdzić swoje obowiązki przed zapisaniem\",\"pCLes8\":\"Musisz wyrazić zgodę na otrzymywanie wiadomości\",\"FVTVBy\":\"Musisz zweryfikować swój adres e-mail, zanim będziesz mógł zaktualizować status organizatora.\",\"ze4bi/\":\"Musisz utworzyć co najmniej jedną sesję, zanim będziesz mógł dodać uczestników do tego cyklicznego wydarzenia.\",\"w65ZgF\":\"Musisz zweryfikować e-mail konta, zanim będziesz mógł modyfikować szablony e-mail.\",\"FRl8Jv\":\"Musisz zweryfikować e-mail konta, zanim będziesz mógł wysyłać wiadomości.\",\"88cUW+\":\"Otrzymujesz\",\"O6/3cu\":\"W następnym kroku będziesz mógł skonfigurować terminy, harmonogramy i reguły powtarzania.\",\"zKAheG\":\"Zmieniasz godziny sesji\",\"MNFIxz\":[\"Idziesz na \",[\"0\"],\"!\"],\"qGZz0m\":\"Jesteś na liście oczekujących!\",\"/5HL6k\":\"Zaproponowano Ci miejsce!\",\"gbjFFH\":\"Zmieniono godzinę sesji\",\"p/Sa0j\":\"Twoje konto ma limity wiadomości. Aby zwiększyć swoje limity, skontaktuj się z nami pod adresem\",\"x/xjzn\":\"Twoi partnerzy afiliacji zostali pomyślnie wyeksportowani.\",\"TF37u6\":\"Twoi uczestnicy zostali pomyślnie wyeksportowani.\",\"79lXGw\":\"Twoja lista odpraw została pomyślnie utworzona. Udostępnij poniższy link personelowi odprawy.\",\"BnlG9U\":\"Twoje obecne zamówienie zostanie utracone.\",\"nBqgQb\":\"Twój e-mail\",\"GG1fRP\":\"Twoje wydarzenie jest aktywne!\",\"ifRqmm\":\"Twoja wiadomość została pomyślnie wysłana!\",\"0/+Nn9\":\"Twoje wiadomości pojawią się tutaj\",\"/Rj5P4\":\"Twoje imię\",\"PFjJxY\":\"Twoje nowe hasło musi mieć co najmniej 8 znaków.\",\"gzrCuN\":\"Szczegóły Twojego zamówienia zostały zaktualizowane. E-mail potwierdzenia został wysłany na nowy adres e-mail.\",\"naQW82\":\"Twoje zamówienie zostało anulowane.\",\"bhlHm/\":\"Twoje zamówienie oczekuje na płatność\",\"XeNum6\":\"Twoje zamówienia zostały pomyślnie wyeksportowane.\",\"Xd1R1a\":\"Adres Twojego organizatora\",\"WWYHKD\":\"Twoja płatność jest chroniona szyfrowaniem na poziomie bankowym\",\"5b3QLi\":\"Twój plan\",\"N4Zkqc\":\"Twój zapisany filtr daty nie jest już dostępny — wyświetlane są wszystkie terminy.\",\"FNO5uZ\":\"Twój bilet jest nadal ważny — nie musisz nic robić, chyba że nowa godzina Ci nie odpowiada. Odpowiedz na ten e-mail w razie pytań.\",\"CnZ3Ou\":\"Twoje bilety zostały potwierdzone.\",\"EmFsMZ\":\"Numer VAT czeka na weryfikację\",\"QBlhh4\":\"Numer VAT zostanie zweryfikowany po zapisaniu\",\"fT9VLt\":\"Twoja oferta z listy oczekujących wygasła i nie udało nam się sfinalizować Twojego zamówienia. Dołącz ponownie do listy oczekujących, aby otrzymać powiadomienie, gdy zwolnią się kolejne miejsca.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Nie ma jeszcze nic do pokazania'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>wymeldowany pomyślnie\"],\"KMgp2+\":[[\"0\"],\" dostępne\"],\"Pmr5xp\":[[\"0\"],\" utworzony pomyślnie\"],\"FImCSc\":[[\"0\"],\" zaktualizowany pomyślnie\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dni, \",[\"hours\"],\" godzin, \",[\"minutes\"],\" minut i \",[\"seconds\"],\" sekund\"],\"f3RdEk\":[[\"hours\"],\" godzin, \",[\"minutes\"],\" minut i \",[\"seconds\"],\" sekund\"],\"fyE7Au\":[[\"minutes\"],\" minut i \",[\"seconds\"],\" sekund\"],\"NlQ0cx\":[\"Pierwsze wydarzenie \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://twoja-strona.com\",\"qnSLLW\":\"<0>Wprowadź cenę bez podatków i opłat.<1>Podatki i opłaty można dodać poniżej.\",\"ZjMs6e\":\"<0>Liczba produktów dostępnych dla tego produktu<1>Ta wartość może zostać zastąpiona, jeśli istnieją <2>Limity Pojemności związane z tym produktem.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minut i 0 sekund\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Główna Ulica\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Pole daty. Idealne do pytania o datę urodzenia itp.\",\"6euFZ/\":[\"Domyślny \",[\"type\"],\" jest automatycznie stosowany do wszystkich nowych produktów. Możesz to zastąpić dla każdego produktu indywidualnie.\"],\"SMUbbQ\":\"Pole rozwijane pozwala tylko na jedną selekcję\",\"qv4bfj\":\"Opłata, jak opłata rezerwacyjna lub opłata serwisowa\",\"POT0K/\":\"Stała kwota za produkt. Np. 0,50 USD za produkt\",\"f4vJgj\":\"Pole tekstowe wielowierszowe\",\"OIPtI5\":\"Procent ceny produktu. Np. 3,5% ceny produktu\",\"ZthcdI\":\"Kod promocyjny bez rabatu może być użyty do ujawnienia ukrytych produktów.\",\"AG/qmQ\":\"Opcja Radio ma wiele opcji, ale tylko jedna może być wybrana.\",\"h179TP\":\"Krótki opis wydarzenia, który będzie wyświetlany w wynikach wyszukiwania i podczas udostępniania w mediach społecznościowych. Domyślnie zostanie użyty opis wydarzenia\",\"WKMnh4\":\"Pole tekstowe jednowierszowe\",\"BHZbFy\":\"Jedno pytanie na zamówienie. Np. Jaki jest Twój adres wysyłki?\",\"Fuh+dI\":\"Jedno pytanie na produkt. Np. Jaki jest rozmiar Twojej koszulki?\",\"RlJmQg\":\"Standardowy podatek, jak VAT lub GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Akceptuj przelewy bankowe, czeki lub inne metody płatności offline\",\"hrvLf4\":\"Akceptuj płatności kartą kredytową za pomocą Stripe\",\"bfXQ+N\":\"Akceptuj zaproszenie\",\"AeXO77\":\"Konto\",\"lkNdiH\":\"Nazwa konta\",\"Puv7+X\":\"Ustawienia konta\",\"OmylXO\":\"Konto zaktualizowane pomyślnie\",\"7L01XJ\":\"Akcje\",\"FQBaXG\":\"Aktywuj\",\"5T2HxQ\":\"Data aktywacji\",\"F6pfE9\":\"Aktywny\",\"/PN1DA\":\"Dodaj opis dla tej listy odpraw\",\"0/vPdA\":\"Dodaj wszelkie notatki o uczestniku. Nie będą widoczne dla uczestnika.\",\"Or1CPR\":\"Dodaj wszelkie notatki o uczestniku...\",\"l3sZO1\":\"Dodaj wszelkie notatki o zamówieniu. Nie będą widoczne dla klienta.\",\"xMekgu\":\"Dodaj wszelkie notatki o zamówieniu...\",\"PGPGsL\":\"Dodaj opis\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Dodaj instrukcje dla płatności offline (np. szczegóły przelewu bankowego, gdzie wysłać czeki, terminy płatności)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Dodaj nowy\",\"TZxnm8\":\"Dodaj opcję\",\"24l4x6\":\"Dodaj produkt\",\"8q0EdE\":\"Dodaj produkt do kategorii\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Dodaj podatek lub opłatę\",\"goOKRY\":\"Dodaj poziom\",\"oZW/gT\":\"Dodaj do kalendarza\",\"pn5qSs\":\"Dodatkowe informacje\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adres\",\"NY/x1b\":\"Linia adresu 1\",\"POdIrN\":\"Linia adresu 1\",\"cormHa\":\"Linia adresu 2\",\"gwk5gg\":\"Linia adresu 2\",\"U3pytU\":\"Administrator\",\"HLDaLi\":\"Użytkownicy administratorzy mają pełny dostęp do wydarzeń i ustawień konta.\",\"W7AfhC\":\"Wszyscy uczestnicy tego wydarzenia\",\"cde2hc\":\"Wszystkie produkty\",\"5CQ+r0\":\"Zezwól uczestnikom powiązanym z nieopłaconymi zamówieniami na odprawę\",\"ipYKgM\":\"Zezwól na indeksowanie przez wyszukiwarki\",\"LRbt6D\":\"Zezwól wyszukiwarkom na indeksowanie tego wydarzenia\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Niesamowite, Wydarzenie, Słowa kluczowe...\",\"hehnjM\":\"Kwota\",\"R2O9Rg\":[\"Kwota zapłacona (\",[\"0\"],\")\"],\"V7MwOy\":\"Wystąpił błąd podczas ładowania strony\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Wystąpił nieoczekiwany błąd.\",\"byKna+\":\"Wystąpił nieoczekiwany błąd. Spróbuj ponownie.\",\"ubdMGz\":\"Wszystkie zapytania od posiadaczy produktów będą wysyłane na ten adres e-mail. Będzie również używany jako adres \\\"odpowiedz-do\\\" dla wszystkich e-maili wysyłanych z tego wydarzenia\",\"aAIQg2\":\"Wygląd\",\"Ym1gnK\":\"zastosowane\",\"sy6fss\":[\"Dotyczy \",[\"0\"],\" produktów\"],\"kadJKg\":\"Dotyczy 1 produktu\",\"DB8zMK\":\"Zastosuj\",\"GctSSm\":\"Zastosuj kod promocyjny\",\"ARBThj\":[\"Zastosuj to \",[\"type\"],\" do wszystkich nowych produktów\"],\"S0ctOE\":\"Zarchiwizuj wydarzenie\",\"TdfEV7\":\"Zarchiwizowane\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Czy na pewno chcesz aktywować tego uczestnika?\",\"TvkW9+\":\"Czy na pewno chcesz zarchiwizować to wydarzenie?\",\"/CV2x+\":\"Czy na pewno chcesz anulować tego uczestnika? To unieważni jego bilet\",\"YgRSEE\":\"Czy na pewno chcesz usunąć ten kod promocyjny?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Czy na pewno chcesz zrobić to wydarzenie szkicem? To sprawi, że wydarzenie będzie niewidoczne dla publiczności\",\"mEHQ8I\":\"Czy na pewno chcesz opublikować to wydarzenie? To sprawi, że wydarzenie będzie widoczne dla publiczności\",\"s4JozW\":\"Czy na pewno chcesz przywrócić to wydarzenie? Zostanie przywrócone jako szkic wydarzenia.\",\"vJuISq\":\"Czy na pewno chcesz usunąć to przypisanie pojemności?\",\"baHeCz\":\"Czy na pewno chcesz usunąć tę listę odpraw?\",\"LBLOqH\":\"Pytaj raz na zamówienie\",\"wu98dY\":\"Pytaj raz na produkt\",\"ss9PbX\":\"Uczestnik\",\"m0CFV2\":\"Szczegóły uczestnika\",\"QKim6l\":\"Uczestnik nie znaleziony\",\"R5IT/I\":\"Notatki uczestnika\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Bilet uczestnika\",\"9SZT4E\":\"Uczestnicy\",\"iPBfZP\":\"Uczestnicy zarejestrowani\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatyczne dopasowanie rozmiaru\",\"vZ5qKF\":\"Automatycznie dopasuj wysokość widgetu na podstawie zawartości. Gdy wyłączone, widget wypełni wysokość kontenera.\",\"4lVaWA\":\"Oczekuje na płatność offline\",\"2rHwhl\":\"Oczekuje na płatność offline\",\"3wF4Q/\":\"Oczekuje na płatność\",\"ioG+xt\":\"Oczekuje na płatność\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Świetny Organizator Sp. z o.o.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Powrót do strony wydarzenia\",\"VCoEm+\":\"Powrót do logowania\",\"k1bLf+\":\"Kolor tła\",\"I7xjqg\":\"Typ tła\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Adres rozliczeniowy\",\"/xC/im\":\"Ustawienia rozliczeń\",\"rp/zaT\":\"Brazylijski portugalski\",\"whqocw\":\"Rejestrując się, zgadzasz się na nasze <0>Warunki korzystania z usługi i <1>Politykę prywatności.\",\"bcCn6r\":\"Typ kalkulacji\",\"+8bmSu\":\"Kalifornia\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Anuluj\",\"Gjt/py\":\"Anuluj zmianę e-maila\",\"tVJk4q\":\"Anuluj zamówienie\",\"Os6n2a\":\"Anuluj zamówienie\",\"Mz7Ygx\":[\"Anuluj zamówienie \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Anulowane\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Pojemność\",\"V6Q5RZ\":\"Przypisanie pojemności utworzone pomyślnie\",\"k5p8dz\":\"Przypisanie pojemności usunięte pomyślnie\",\"nDBs04\":\"Zarządzanie pojemnością\",\"ddha3c\":\"Kategorie pozwalają grupować produkty razem. Na przykład, możesz mieć kategorię dla \\\"Biletów\\\" i inną dla \\\"Towarów\\\".\",\"iS0wAT\":\"Kategorie pomagają organizować Twoje produkty. Ten tytuł będzie wyświetlany na publicznej stronie wydarzenia.\",\"eorM7z\":\"Kategorie zostały pomyślnie przeorganizowane.\",\"3EXqwa\":\"Kategoria utworzona pomyślnie\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Zmień hasło\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Zameldowanie \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Zameldowanie i oznaczenie zamówienia jako opłacone\",\"QYLpB4\":\"Tylko zameldowanie\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Sprawdź to wydarzenie!\",\"gXcPxc\":\"Odprawa\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Lista odpraw usunięta pomyślnie\",\"+hBhWk\":\"Lista odpraw wygasła\",\"mBsBHq\":\"Lista odpraw nie jest aktywna\",\"vPqpQG\":\"Lista odpraw nie znaleziona\",\"tejfAy\":\"Listy odpraw\",\"hD1ocH\":\"URL zameldowania skopiowany do schowka\",\"CNafaC\":\"Opcje pól wyboru pozwalają na wielokrotny wybór\",\"SpabVf\":\"Pola wyboru\",\"CRu4lK\":\"Zameldowany\",\"znIg+z\":\"Płatność\",\"1WnhCL\":\"Ustawienia płatności\",\"6imsQS\":\"Chiński (uproszczony)\",\"JjkX4+\":\"Wybierz kolor dla swojego tła\",\"/Jizh9\":\"Wybierz konto\",\"3wV73y\":\"Miasto\",\"FG98gC\":\"Wyczyść tekst wyszukiwania\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Kliknij, aby skopiować\",\"yz7wBu\":\"Zamknij\",\"62Ciis\":\"Zamknij pasek boczny\",\"EWPtMO\":\"Kod\",\"ercTDX\":\"Kod musi mieć od 3 do 50 znaków\",\"oqr9HB\":\"Zwiń ten produkt, gdy strona wydarzenia jest początkowo ładowana\",\"jZlrte\":\"Kolor\",\"Vd+LC3\":\"Kolor musi być prawidłowym kodem koloru hex. Przykład: #ffffff\",\"1HfW/F\":\"Kolory\",\"VZeG/A\":\"Wkrótce\",\"yPI7n9\":\"Słowa kluczowe oddzielone przecinkami opisujące wydarzenie. Będą używane przez wyszukiwarki do kategoryzacji i indeksowania wydarzenia\",\"NPZqBL\":\"Zakończ zamówienie\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Zakończ płatność\",\"qqWcBV\":\"Zakończone\",\"6HK5Ct\":\"Zakończone zamówienia\",\"NWVRtl\":\"Zakończone zamówienia\",\"DwF9eH\":\"Kod komponentu\",\"Tf55h7\":\"Skonfigurowany rabat\",\"7VpPHA\":\"Potwierdź\",\"ZaEJZM\":\"Potwierdź zmianę e-maila\",\"yjkELF\":\"Potwierdź nowe hasło\",\"xnWESi\":\"Potwierdź hasło\",\"p2/GCq\":\"Potwierdź hasło\",\"wnDgGj\":\"Potwierdzanie adresu e-mail...\",\"pbAk7a\":\"Połącz Stripe\",\"UMGQOh\":\"Połącz z Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Szczegóły połączenia\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Kontynuuj\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Tekst przycisku kontynuacji\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Skopiowane\",\"T5rdis\":\"skopiowane do schowka\",\"he3ygx\":\"Kopiuj\",\"r2B2P8\":\"Kopiuj URL zameldowania\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Kopiuj link\",\"E6nRW7\":\"Kopiuj URL\",\"JNCzPW\":\"Kraj\",\"IF7RiR\":\"Okładka\",\"hYgDIe\":\"Utwórz\",\"b9XOHo\":[\"Utwórz \",[\"0\"]],\"k9RiLi\":\"Utwórz produkt\",\"6kdXbW\":\"Utwórz kod promocyjny\",\"n5pRtF\":\"Utwórz bilet\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"utwórz organizatora\",\"ipP6Ue\":\"Utwórz uczestnika\",\"VwdqVy\":\"Utwórz przypisanie pojemności\",\"EwoMtl\":\"Utwórz kategorię\",\"XletzW\":\"Utwórz kategorię\",\"WVbTwK\":\"Utwórz listę zameldowań\",\"uN355O\":\"Utwórz wydarzenie\",\"BOqY23\":\"Utwórz nowe\",\"kpJAeS\":\"Utwórz organizatora\",\"a0EjD+\":\"Utwórz produkt\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Utwórz kod promocyjny\",\"B3Mkdt\":\"Utwórz pytanie\",\"UKfi21\":\"Utwórz podatek lub opłatę\",\"d+F6q9\":\"Utworzone\",\"Q2lUR2\":\"Waluta\",\"DCKkhU\":\"Aktualne hasło\",\"uIElGP\":\"Niestandardowy URL map\",\"UEqXyt\":\"Niestandardowy zakres\",\"876pfE\":\"Klient\",\"QOg2Sf\":\"Dostosuj ustawienia e-mail i powiadomień dla tego wydarzenia\",\"Y9Z/vP\":\"Dostosuj stronę główną wydarzenia i komunikaty płatności\",\"2E2O5H\":\"Dostosuj różne ustawienia dla tego wydarzenia\",\"iJhSxe\":\"Dostosuj ustawienia SEO dla tego wydarzenia\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Strefa zagrożenia\",\"ZQKLI1\":\"Strefa zagrożenia\",\"7p5kLi\":\"Panel\",\"mYGY3B\":\"Data\",\"JvUngl\":\"Data i czas\",\"JJhRbH\":\"Pojemność pierwszego dnia\",\"cnGeoo\":\"Usuń\",\"jRJZxD\":\"Usuń pojemność\",\"VskHIx\":\"Usuń kategorię\",\"Qrc8RZ\":\"Usuń listę zameldowań\",\"WHf154\":\"Usuń kod\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Opis\",\"YC3oXa\":\"Opis dla personelu zameldowań\",\"URmyfc\":\"Szczegóły\",\"1lRT3t\":\"Wyłączenie tej pojemności będzie śledzić sprzedaż, ale nie zatrzyma jej po osiągnięciu limitu\",\"H6Ma8Z\":\"Zniżka\",\"ypJ62C\":\"Zniżka %\",\"3LtiBI\":[\"Zniżka w \",[\"0\"]],\"C8JLas\":\"Typ zniżki\",\"1QfxQT\":\"Zamknij\",\"DZlSLn\":\"Etykieta dokumentu\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Darowizna / Produkt zapłać ile chcesz\",\"OvNbls\":\"Pobierz .ics\",\"kodV18\":\"Pobierz CSV\",\"CELKku\":\"Pobierz fakturę\",\"LQrXcu\":\"Pobierz fakturę\",\"QIodqd\":\"Pobierz kod QR\",\"yhjU+j\":\"Pobieranie faktury\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Wybór z listy rozwijanej\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplikuj wydarzenie\",\"3ogkAk\":\"Duplikuj wydarzenie\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Opcje duplikacji\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Wcześniak\",\"ePK91l\":\"Edytuj\",\"N6j2JH\":[\"Edytuj \",[\"0\"]],\"kBkYSa\":\"Edytuj pojemność\",\"oHE9JT\":\"Edytuj przypisanie pojemności\",\"j1Jl7s\":\"Edytuj kategorię\",\"FU1gvP\":\"Edytuj listę zameldowań\",\"iFgaVN\":\"Edytuj kod\",\"jrBSO1\":\"Edytuj organizatora\",\"tdD/QN\":\"Edytuj produkt\",\"n143Tq\":\"Edytuj kategorię produktu\",\"9BdS63\":\"Edytuj kod promocyjny\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edytuj pytanie\",\"poTr35\":\"Edytuj użytkownika\",\"GTOcxw\":\"Edytuj użytkownika\",\"pqFrv2\":\"np. 2.50 za 2.50 USD\",\"3yiej1\":\"np. 23.5 za 23.5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Ustawienia e-mail i powiadomień\",\"ATGYL1\":\"Adres e-mail\",\"hzKQCy\":\"Adres e-mail\",\"HqP6Qf\":\"Zmiana e-mail anulowana pomyślnie\",\"mISwW1\":\"Zmiana e-mail w toku\",\"APuxIE\":\"Potwierdzenie e-mail wysłane ponownie\",\"YaCgdO\":\"Potwierdzenie e-mail wysłane ponownie pomyślnie\",\"jyt+cx\":\"Wiadomość w stopce e-mail\",\"I6F3cp\":\"E-mail nie zweryfikowany\",\"NTZ/NX\":\"Kod osadzenia\",\"4rnJq4\":\"Skrypt osadzenia\",\"8oPbg1\":\"Włącz fakturowanie\",\"j6w7d/\":\"Włącz tę pojemność, aby zatrzymać sprzedaż produktów po osiągnięciu limitu\",\"VFv2ZC\":\"Data zakończenia\",\"237hSL\":\"Zakończony\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Angielski\",\"MhVoma\":\"Wprowadź kwotę bez podatków i opłat.\",\"SlfejT\":\"Błąd\",\"3Z223G\":\"Błąd potwierdzania adresu e-mail\",\"a6gga1\":\"Błąd potwierdzania zmiany e-mail\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Wydarzenie\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Data wydarzenia\",\"0Zptey\":\"Domyślne ustawienia wydarzenia\",\"QcCPs8\":\"Szczegóły wydarzenia\",\"6fuA9p\":\"Wydarzenie zostało pomyślnie zduplikowane\",\"AEuj2m\":\"Strona główna wydarzenia\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Lokalizacja wydarzenia i szczegóły miejsca\",\"OopDbA\":\"Event page\",\"4/If97\":\"Aktualizacja statusu wydarzenia nie powiodła się. Spróbuj ponownie później\",\"btxLWj\":\"Status wydarzenia zaktualizowany\",\"nMU2d3\":\"Adres URL wydarzenia\",\"tst44n\":\"Wydarzenia\",\"sZg7s1\":\"Data wygaśnięcia\",\"KnN1Tu\":\"Wygasa\",\"uaSvqt\":\"Data wygaśnięcia\",\"GS+Mus\":\"Eksportuj\",\"9xAp/j\":\"Nie udało się anulować uczestnika\",\"ZpieFv\":\"Nie udało się anulować zamówienia\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Nie udało się pobrać faktury. Spróbuj ponownie.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Nie udało się załadować listy zameldowań\",\"ZQ15eN\":\"Nie udało się ponownie wysłać e-maila z biletem\",\"ejXy+D\":\"Nie udało się posortować produktów\",\"PLUB/s\":\"Opłata\",\"/mfICu\":\"Opłaty\",\"LyFC7X\":\"Filtruj zamówienia\",\"cSev+j\":\"Filtry\",\"CVw2MU\":[\"Filtry (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Pierwszy numer faktury\",\"V1EGGU\":\"Imię\",\"kODvZJ\":\"Imię\",\"S+tm06\":\"Imię musi mieć od 1 do 50 znaków\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Pierwsze użycie\",\"TpqW74\":\"Stały\",\"irpUxR\":\"Kwota stała\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Zapomniałeś hasła?\",\"2POOFK\":\"Darmowy\",\"P/OAYJ\":\"Darmowy produkt\",\"vAbVy9\":\"Darmowy produkt, nie wymaga informacji o płatności\",\"nLC6tu\":\"Francuski\",\"Weq9zb\":\"Ogólne\",\"DDcvSo\":\"Niemiecki\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Wróć do profilu\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Kalendarz Google\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Sprzedaż brutto\",\"yRg26W\":\"Sprzedaż brutto\",\"R4r4XO\":\"Goście\",\"26pGvx\":\"Masz kod promocyjny?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Oto przykład, jak możesz użyć komponentu w swojej aplikacji.\",\"Y1SSqh\":\"Oto komponent React, którego możesz użyć do osadzenia widżetu w swojej aplikacji.\",\"QuhVpV\":[\"Cześć \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Ukryte przed widokiem publicznym\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Ukryte pytania są widoczne tylko dla organizatora wydarzenia, a nie dla klienta.\",\"vLyv1R\":\"Ukryj\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Ukryj produkt po dacie zakończenia sprzedaży\",\"06s3w3\":\"Ukryj produkt przed datą rozpoczęcia sprzedaży\",\"axVMjA\":\"Ukryj produkt, chyba że użytkownik ma odpowiedni kod promocyjny\",\"ySQGHV\":\"Ukryj produkt po wyprzedaniu\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Ukryj ten produkt przed klientami\",\"Da29Y6\":\"Ukryj to pytanie\",\"fvDQhr\":\"Ukryj ten poziom przed użytkownikami\",\"lNipG+\":\"Ukrycie produktu uniemożliwi użytkownikom zobaczenie go na stronie wydarzenia.\",\"ZOBwQn\":\"Projekt strony głównej\",\"PRuBTd\":\"Projektant strony głównej\",\"YjVNGZ\":\"Podgląd strony głównej\",\"c3E/kw\":\"Jan\",\"8k8Njd\":\"Ile minut klient ma na ukończenie zamówienia. Zalecamy co najmniej 15 minut\",\"ySxKZe\":\"Ile razy można użyć tego kodu?\",\"dZsDbK\":[\"Przekroczono limit znaków HTML: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Zgadzam się z <0>regulaminem\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Jeśli włączone, personel odprawy może oznaczyć uczestników jako sprawdzonych lub oznaczyć zamówienie jako opłacone i sprawdzić uczestników. Jeśli wyłączone, uczestnicy powiązani z nieopłaconymi zamówieniami nie mogą być sprawdzeni.\",\"muXhGi\":\"Jeśli włączone, organizator otrzyma powiadomienie e-mail, gdy zostanie złożone nowe zamówienie\",\"6fLyj/\":\"Jeśli nie zażądałeś tej zmiany, natychmiast zmień hasło.\",\"n/ZDCz\":\"Obraz został pomyślnie usunięty\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Obraz został pomyślnie przesłany\",\"VyUuZb\":\"URL obrazu\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Nieaktywny\",\"T0K0yl\":\"Nieaktywni użytkownicy nie mogą się zalogować.\",\"kO44sp\":\"Dołącz szczegóły połączenia dla swojego wydarzenia online. Te szczegóły będą wyświetlane na stronie podsumowania zamówienia i stronie biletu uczestnika.\",\"FlQKnG\":\"Uwzględnij podatek i opłaty w cenie\",\"Vi+BiW\":[\"Zawiera \",[\"0\"],\" produktów\"],\"lpm0+y\":\"Zawiera 1 produkt\",\"UiAk5P\":\"Wstaw obraz\",\"OyLdaz\":\"Zaproszenie wysłane ponownie!\",\"HE6KcK\":\"Zaproszenie cofnięte!\",\"SQKPvQ\":\"Zaproś użytkownika\",\"bKOYkd\":\"Faktura została pomyślnie pobrana\",\"alD1+n\":\"Notatki do faktury\",\"kOtCs2\":\"Numeracja faktur\",\"UZ2GSZ\":\"Ustawienia faktury\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Przedmiot\",\"KFXip/\":\"Jan\",\"XcgRvb\":\"Kowalski\",\"87a/t/\":\"Etykieta\",\"vXIe7J\":\"Język\",\"2LMsOq\":\"Ostatnie 12 miesięcy\",\"vfe90m\":\"Ostatnie 14 dni\",\"aK4uBd\":\"Ostatnie 24 godziny\",\"uq2BmQ\":\"Ostatnie 30 dni\",\"bB6Ram\":\"Ostatnie 48 godzin\",\"VlnB7s\":\"Ostatnie 6 miesięcy\",\"ct2SYD\":\"Ostatnie 7 dni\",\"XgOuA7\":\"Ostatnie 90 dni\",\"I3yitW\":\"Ostatnie logowanie\",\"1ZaQUH\":\"Nazwisko\",\"UXBCwc\":\"Nazwisko\",\"tKCBU0\":\"Ostatnio używany\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Pozostaw puste, aby użyć domyślnego słowa \\\"Faktura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Ładowanie...\",\"wJijgU\":\"Lokalizacja\",\"sQia9P\":\"Zaloguj się\",\"zUDyah\":\"Logowanie\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Wyloguj się\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Uczyń adres rozliczeniowy obowiązkowym podczas płatności\",\"MU3ijv\":\"Uczyń to pytanie obowiązkowym\",\"wckWOP\":\"Zarządzaj\",\"onpJrA\":\"Zarządzaj uczestnikiem\",\"n4SpU5\":\"Zarządzaj wydarzeniem\",\"WVgSTy\":\"Zarządzaj zamówieniem\",\"1MAvUY\":\"Zarządzaj ustawieniami płatności i fakturowania dla tego wydarzenia.\",\"cQrNR3\":\"Zarządzaj profilem\",\"AtXtSw\":\"Zarządzaj podatkami i opłatami, które mogą być zastosowane do Twoich produktów\",\"ophZVW\":\"Zarządzaj biletami\",\"DdHfeW\":\"Zarządzaj szczegółami konta i ustawieniami domyślnymi\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Zarządzaj użytkownikami i ich uprawnieniami\",\"1m+YT2\":\"Obowiązkowe pytania muszą być odpowiedzi przed dokonaniem płatności przez klienta.\",\"Dim4LO\":\"Dodaj uczestnika ręcznie\",\"e4KdjJ\":\"Dodaj uczestnika ręcznie\",\"vFjEnF\":\"Oznacz jako opłacone\",\"g9dPPQ\":\"Maksimum na zamówienie\",\"l5OcwO\":\"Wyślij wiadomość do uczestnika\",\"Gv5AMu\":\"Wyślij wiadomość do uczestników\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Wyślij wiadomość do kupującego\",\"tNZzFb\":\"Treść wiadomości\",\"lYDV/s\":\"Wyślij wiadomość do indywidualnych uczestników\",\"V7DYWd\":\"Wiadomość wysłana\",\"t7TeQU\":\"Wiadomości\",\"xFRMlO\":\"Minimum na zamówienie\",\"QYcUEf\":\"Cena minimalna\",\"RDie0n\":\"Różne\",\"mYLhkl\":\"Ustawienia różne\",\"KYveV8\":\"Pole tekstowe wielowierszowe\",\"VD0iA7\":\"Wiele opcji cenowych. Idealne dla produktów wczesnych ptaków itp.\",\"/bhMdO\":\"Opis mojego niesamowitego wydarzenia...\",\"vX8/tc\":\"Tytuł mojego niesamowitego wydarzenia...\",\"hKtWk2\":\"Mój profil\",\"fj5byd\":\"N/D\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nazwa\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Przejdź do uczestnika\",\"qqeAJM\":\"Nigdy\",\"7vhWI8\":\"Nowe hasło\",\"1UzENP\":\"Nie\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Brak zarchiwizowanych wydarzeń do wyświetlenia.\",\"q2LEDV\":\"Nie znaleziono uczestników dla tego zamówienia.\",\"zlHa5R\":\"Żadni uczestnicy nie zostali dodani do tego zamówienia.\",\"Wjz5KP\":\"Brak uczestników do wyświetlenia\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Brak przypisań pojemności\",\"a/gMx2\":\"Brak list zameldowań\",\"tMFDem\":\"Brak dostępnych danych\",\"6Z/F61\":\"Brak danych do wyświetlenia. Wybierz zakres dat\",\"fFeCKc\":\"Brak zniżki\",\"HFucK5\":\"Brak zakończonych wydarzeń do wyświetlenia.\",\"yAlJXG\":\"Brak wydarzeń do wyświetlenia\",\"GqvPcv\":\"Brak dostępnych filtrów\",\"KPWxKD\":\"Brak wiadomości do wyświetlenia\",\"J2LkP8\":\"Brak zamówień do wyświetlenia\",\"RBXXtB\":\"Żadne metody płatności nie są obecnie dostępne. Skontaktuj się z organizatorem wydarzenia w celu uzyskania pomocy.\",\"ZWEfBE\":\"Brak wymaganej płatności\",\"ZPoHOn\":\"Żaden produkt nie jest powiązany z tym uczestnikiem.\",\"Ya1JhR\":\"Brak produktów dostępnych w tej kategorii.\",\"FTfObB\":\"Brak produktów jeszcze\",\"+Y976X\":\"Brak kodów promocyjnych do wyświetlenia\",\"MAavyl\":\"Żadne pytania nie zostały odpowiedzi przez tego uczestnika.\",\"SnlQeq\":\"Żadne pytania nie zostały zadane dla tego zamówienia.\",\"Ev2r9A\":\"Brak wyników\",\"gk5uwN\":\"Brak wyników wyszukiwania\",\"RHyZUL\":\"Brak wyników wyszukiwania.\",\"RY2eP1\":\"Żadne podatki lub opłaty nie zostały dodane.\",\"EdQY6l\":\"Żaden\",\"OJx3wK\":\"Niedostępny\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notatki\",\"jtrY3S\":\"Nic do pokazania jeszcze\",\"hFwWnI\":\"Ustawienia powiadomień\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Powiadom organizatora o nowych zamówieniach\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Liczba dni dozwolonych na płatność (pozostaw puste, aby pominąć warunki płatności z faktur)\",\"n86jmj\":\"Prefiks numeru\",\"mwe+2z\":\"Zamówienia offline nie są odzwierciedlane w statystykach wydarzenia, dopóki zamówienie nie zostanie oznaczone jako opłacone.\",\"dWBrJX\":\"Płatność offline nie powiodła się. Spróbuj ponownie lub skontaktuj się z organizatorem wydarzenia.\",\"fcnqjw\":\"Instrukcje płatności offline\",\"+eZ7dp\":\"Płatności offline\",\"ojDQlR\":\"Informacje o płatnościach offline\",\"u5oO/W\":\"Ustawienia płatności offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"W sprzedaży\",\"Ug4SfW\":\"Po utworzeniu wydarzenia, zobaczysz je tutaj.\",\"ZxnK5C\":\"Po rozpoczęciu zbierania danych, zobaczysz je tutaj.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Trwający\",\"z+nuVJ\":\"Wydarzenie online\",\"WKHW0N\":\"Szczegóły wydarzenia online\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Otwórz stronę zameldowania\",\"OdnLE4\":\"Otwórz pasek boczny\",\"ZZEYpT\":[\"Opcja \",[\"i\"]],\"oPknTP\":\"Opcjonalne dodatkowe informacje, które pojawią się na wszystkich fakturach (np. warunki płatności, opłaty za opóźnienia, polityka zwrotów)\",\"OrXJBY\":\"Opcjonalny prefiks dla numerów faktur (np. INV-)\",\"0zpgxV\":\"Opcje\",\"BzEFor\":\"lub\",\"UYUgdb\":\"Zamówienie\",\"mm+eaX\":\"Zamówienie nr\",\"B3gPuX\":\"Zamówienie anulowane\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Data zamówienia\",\"Tol4BF\":\"Szczegóły zamówienia\",\"WbImlQ\":\"Zamówienie zostało anulowane, a właściciel zamówienia został powiadomiony.\",\"nAn4Oe\":\"Zamówienie oznaczone jako opłacone\",\"uzEfRz\":\"Notatki zamówienia\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Referencja zamówienia\",\"acIJ41\":\"Status zamówienia\",\"GX6dZv\":\"Podsumowanie zamówienia\",\"tDTq0D\":\"Limit czasu zamówienia\",\"1h+RBg\":\"Zamówienia\",\"3y+V4p\":\"Adres organizacji\",\"GVcaW6\":\"Szczegóły organizacji\",\"nfnm9D\":\"Nazwa organizacji\",\"G5RhpL\":\"Organizator\",\"mYygCM\":\"Organizator jest wymagany\",\"Pa6G7v\":\"Nazwa organizatora\",\"l894xP\":\"Organizatorzy mogą zarządzać tylko wydarzeniami i produktami. Nie mogą zarządzać użytkownikami, ustawieniami konta ani informacjami rozliczeniowymi.\",\"fdjq4c\":\"Wypełnienie\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Strona nie znaleziona\",\"QbrUIo\":\"Wyświetlenia strony\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"opłacony\",\"HVW65c\":\"Opłacony produkt\",\"ZfxaB4\":\"Częściowo zwrócony\",\"8ZsakT\":\"Hasło\",\"TUJAyx\":\"Hasło musi mieć minimum 8 znaków\",\"vwGkYB\":\"Hasło musi mieć co najmniej 8 znaków\",\"BLTZ42\":\"Hasło zostało pomyślnie zresetowane. Zaloguj się nowym hasłem.\",\"f7SUun\":\"Hasła nie są takie same\",\"aEDp5C\":\"Wklej to tam, gdzie chcesz, aby widget się pojawił.\",\"+23bI/\":\"Patryk\",\"iAS9f2\":\"patryk@acme.com\",\"621rYf\":\"Płatność\",\"Lg+ewC\":\"Płatności i fakturowanie\",\"DZjk8u\":\"Ustawienia płatności i fakturowania\",\"lflimf\":\"Okres płatności\",\"JhtZAK\":\"Płatność nie powiodła się\",\"JEdsvQ\":\"Instrukcje płatności\",\"bLB3MJ\":\"Metody płatności\",\"QzmQBG\":\"Dostawca płatności\",\"lsxOPC\":\"Płatność otrzymana\",\"wJTzyi\":\"Status płatności\",\"xgav5v\":\"Płatność powiodła się!\",\"R29lO5\":\"Warunki płatności\",\"/roQKz\":\"Procent\",\"vPJ1FI\":\"Kwota procentowa\",\"xdA9ud\":\"Umieść to w swojej strony internetowej.\",\"blK94r\":\"Dodaj co najmniej jedną opcję\",\"FJ9Yat\":\"Sprawdź, czy podane informacje są poprawne\",\"TkQVup\":\"Sprawdź swój email i hasło i spróbuj ponownie\",\"sMiGXD\":\"Sprawdź, czy Twój email jest prawidłowy\",\"Ajavq0\":\"Sprawdź swój email, aby potwierdzić adres email\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Kontynuuj w nowej karcie\",\"hcX103\":\"Utwórz produkt\",\"cdR8d6\":\"Utwórz bilet\",\"x2mjl4\":\"Wprowadź prawidłowy URL obrazu, który wskazuje na obraz.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Uwaga\",\"C63rRe\":\"Wróć do strony wydarzenia, aby zacząć od nowa.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Wybierz co najmniej jeden produkt\",\"igBrCH\":\"Zweryfikuj swój adres email, aby uzyskać dostęp do wszystkich funkcji\",\"/IzmnP\":\"Poczekaj, przygotowujemy Twoją fakturę...\",\"MOERNx\":\"Portugalski\",\"qCJyMx\":\"Wiadomość po płatności\",\"g2UNkE\":\"Powered by\",\"Rs7IQv\":\"Wiadomość przed płatnością\",\"rdUucN\":\"Podgląd\",\"a7u1N9\":\"Cena\",\"CmoB9j\":\"Tryb wyświetlania ceny\",\"BI7D9d\":\"Cena nie ustawiona\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Typ ceny\",\"6RmHKN\":\"Główny kolor\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Główny kolor tekstu\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Drukuj wszystkie bilety\",\"DKwDdj\":\"Drukuj bilety\",\"K47k8R\":\"Produkt\",\"1JwlHk\":\"Kategoria produktu\",\"U61sAj\":\"Kategoria produktu została pomyślnie zaktualizowana.\",\"1USFWA\":\"Produkt został pomyślnie usunięty\",\"4Y2FZT\":\"Typ ceny produktu\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Sprzedaż produktów\",\"U/R4Ng\":\"Poziom produktu\",\"sJsr1h\":\"Typ produktu\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produkt(y)\",\"N0qXpE\":\"Produkty\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Sprzedane produkty\",\"/u4DIx\":\"Sprzedane produkty\",\"DJQEZc\":\"Produkty zostały pomyślnie posortowane\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil został pomyślnie zaktualizowany\",\"cl5WYc\":[\"Kod promocyjny \",[\"promo_code\"],\" zastosowany\"],\"P5sgAk\":\"Kod promocyjny\",\"yKWfjC\":\"Strona kodu promocyjnego\",\"RVb8Fo\":\"Kody promocyjne\",\"BZ9GWa\":\"Kody promocyjne mogą być używane do oferowania rabatów, dostępu przed sprzedażą lub zapewnienia specjalnego dostępu do Twojego wydarzenia.\",\"OP094m\":\"Raport kodów promocyjnych\",\"4kyDD5\":\"Podaj dodatkowy kontekst lub instrukcje dla tego pytania. Użyj tego pola, aby dodać warunki\\noraz zasady, wskazówki lub inne ważne informacje, które uczestnicy muszą znać przed udzieleniem odpowiedzi.\",\"toutGW\":\"Kod QR\",\"LkMOWF\":\"Dostępna ilość\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Pytanie usunięte\",\"avf0gk\":\"Opis pytania\",\"oQvMPn\":\"Tytuł pytania\",\"enzGAL\":\"Pytania\",\"ROv2ZT\":\"Pytania i odpowiedzi\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Opcja radiowa\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Odbiorca\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Zwrot nie powiódł się\",\"n10yGu\":\"Zwróć zamówienie\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Zwrot oczekuje\",\"xHpVRl\":\"Status zwrotu\",\"/BI0y9\":\"Zwrócony\",\"fgLNSM\":\"Zarejestruj się\",\"9+8Vez\":\"Pozostałe użycia\",\"tasfos\":\"usuń\",\"t/YqKh\":\"Usuń\",\"t9yxlZ\":\"Raporty\",\"prZGMe\":\"Wymagaj adresu rozliczeniowego\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Wyślij ponownie potwierdzenie emaila\",\"wIa8Qe\":\"Wyślij ponownie zaproszenie\",\"VeKsnD\":\"Wyślij ponownie email zamówienia\",\"dFuEhO\":\"Wyślij ponownie email biletu\",\"o6+Y6d\":\"Wysyłanie ponownie...\",\"OfhWJH\":\"Resetuj\",\"RfwZxd\":\"Resetuj hasło\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Przywróć wydarzenie\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Wróć do strony wydarzenia\",\"8YBH95\":\"Przychody\",\"PO/sOY\":\"Cofnij zaproszenie\",\"GDvlUT\":\"Rola\",\"ELa4O9\":\"Data zakończenia sprzedaży\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Data rozpoczęcia sprzedaży\",\"hBsw5C\":\"Sprzedaż zakończona\",\"kpAzPe\":\"Sprzedaż rozpoczyna się\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Zapisz\",\"IUwGEM\":\"Zapisz zmiany\",\"U65fiW\":\"Zapisz organizatora\",\"UGT5vp\":\"Zapisz ustawienia\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Szukaj po nazwie uczestnika, e-mailu lub numerze zamówienia...\",\"+pr/FY\":\"Szukaj po nazwie wydarzenia...\",\"3zRbWw\":\"Szukaj po nazwie, e-mailu lub numerze zamówienia...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Szukaj po nazwie...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Szukaj przypisania pojemności...\",\"r9M1hc\":\"Szukaj list odpraw...\",\"+0Yy2U\":\"Szukaj produktów\",\"YIix5Y\":\"Szukaj...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Kolor wtórny\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Kolor tekstu wtórnego\",\"02ePaq\":[\"Wybierz \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Wybierz kategorię...\",\"kWI/37\":\"Wybierz organizatora\",\"ixIx1f\":\"Wybierz produkt\",\"3oSV95\":\"Wybierz poziom produktu\",\"C4Y1hA\":\"Wybierz produkty\",\"hAjDQy\":\"Wybierz status\",\"QYARw/\":\"Wybierz bilet\",\"OMX4tH\":\"Wybierz bilety\",\"DrwwNd\":\"Wybierz okres czasu\",\"O/7I0o\":\"Wybierz...\",\"JlFcis\":\"Wyślij\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Wyślij wiadomość\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Wyślij wiadomość\",\"D7ZemV\":\"Wyślij potwierdzenie zamówienia i email biletu\",\"v1rRtW\":\"Wyślij test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Opis SEO\",\"/SIY6o\":\"Słowa kluczowe SEO\",\"GfWoKv\":\"Ustawienia SEO\",\"rXngLf\":\"Tytuł SEO\",\"/jZOZa\":\"Opłata za usługę\",\"Bj/QGQ\":\"Ustaw cenę minimalną i pozwól użytkownikom zapłacić więcej, jeśli się zdecydują\",\"L0pJmz\":\"Ustaw numer początkowy numeracji faktur. Nie można tego zmienić po wygenerowaniu faktur.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Ustawienia\",\"Z8lGw6\":\"Udostępnij\",\"B2V3cA\":\"Udostępnij wydarzenie\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Pokaż dostępną ilość produktu\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Pokaż więcej\",\"izwOOD\":\"Pokaż podatki i opłaty oddzielnie\",\"1SbbH8\":\"Pokazane klientowi po ich potwierdzeniu, na stronie podsumowania zamówienia.\",\"YfHZv0\":\"Pokazane klientowi przed potwierdzeniem\",\"CBBcly\":\"Pokazuje typowe pola adresu, w tym kraj\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Pole tekstowe jednoliniowe\",\"+P0Cn2\":\"Pomin to krok\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Wyprzedane\",\"Mi1rVn\":\"Wyprzedane\",\"nwtY4N\":\"Coś poszło nie tak\",\"GRChTw\":\"Coś poszło nie tak podczas usuwania podatku lub opłaty\",\"YHFrbe\":\"Coś poszło nie tak! Spróbuj ponownie\",\"kf83Ld\":\"Coś poszło nie tak.\",\"fWsBTs\":\"Coś poszło nie tak. Spróbuj ponownie.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Przepraszamy, ten kod promocyjny nie jest rozpoznany\",\"65A04M\":\"Hiszpański\",\"mFuBqb\":\"Produkt standardowy o stałej cenie\",\"D3iCkb\":\"Data rozpoczęcia\",\"/2by1f\":\"Staat lub region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Płatności Stripe nie są włączone dla tego wydarzenia.\",\"UJmAAK\":\"Temat\",\"X2rrlw\":\"Razem część\",\"zzDlyQ\":\"Powodzenie\",\"b0HJ45\":[\"Powodzenie! \",[\"0\"],\" otrzyma email wkrótce.\"],\"BJIEiF\":[\"Pomyślnie \",[\"0\"],\" uczestnika\"],\"OtgNFx\":\"Pomyślnie potwierdzona adres e-mail\",\"IKwyaF\":\"Pomyślnie potwierdzona zmiana e-maila\",\"zLmvhE\":\"Pomyślnie utworzony uczestnik\",\"gP22tw\":\"Pomyślnie utworzony produkt\",\"9mZEgt\":\"Pomyślnie utworzony kod promocyjny\",\"aIA9C4\":\"Pomyślnie utworzone pytanie\",\"J3RJSZ\":\"Pomyślnie zaktualizowany uczestnik\",\"3suLF0\":\"Pomyślnie zaktualizowane przypisanie pojemności\",\"Z+rnth\":\"Pomyślnie zaktualizowana lista odpraw\",\"vzJenu\":\"Pomyślnie zaktualizowane ustawienia email\",\"7kOMfV\":\"Pomyślnie zaktualizowane wydarzenie\",\"G0KW+e\":\"Pomyślnie zaktualizowany projekt strony głównej\",\"k9m6/E\":\"Pomyślnie zaktualizowane ustawienia strony głównej\",\"y/NR6s\":\"Pomyślnie zaktualizowana lokalizacja\",\"73nxDO\":\"Pomyślnie zaktualizowane różne ustawienia\",\"4H80qv\":\"Pomyślnie zaktualizowane zamówienie\",\"6xCBVN\":\"Pomyślnie zaktualizowane ustawienia płatności i fakturowania\",\"1Ycaad\":\"Pomyślnie zaktualizowano produkt\",\"70dYC8\":\"Pomyślnie zaktualizowany kod promocyjny\",\"F+pJnL\":\"Pomyślnie zaktualizowane ustawienia Seo\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Email wsparcia\",\"uRfugr\":\"Koszulka\",\"JpohL9\":\"Podatek\",\"geUFpZ\":\"Podatki i opłaty\",\"dFHcIn\":\"Szczegóły podatku\",\"wQzCPX\":\"Informacje podatkowe wyświetlane na dole wszystkich faktur (np. numer VAT, rejestracja podatkowa)\",\"0RXCDo\":\"Podatek lub opłata usunięte pomyślnie\",\"ZowkxF\":\"Podatki\",\"qu6/03\":\"Podatki i opłaty\",\"gypigA\":\"Ten kod promocyjny jest nieprawidłowy\",\"5ShqeM\":\"Lista kontrolna, której szukasz, nie istnieje.\",\"QXlz+n\":\"Domyślna waluta dla Twoich imprez.\",\"mnafgQ\":\"Domyślna strefa czasowa dla Twoich imprez.\",\"o7s5FA\":\"Język, w którym uczestnik otrzyma e-maile.\",\"NlfnUd\":\"Kliknięty link jest nieprawidłowy.\",\"HsFnrk\":[\"Maksymalna liczba produktów dla \",[\"0\"],\" to \",[\"1\"]],\"TSAiPM\":\"Strona, której szukasz, nie istnieje\",\"MSmKHn\":\"Cena wyświetlana klientowi będzie zawierać podatki i opłaty.\",\"6zQOg1\":\"Cena wyświetlana klientowi nie będzie zawierać podatków i opłat. Będą one wyświetlane oddzielnie\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Tytuł wydarzenia, który będzie wyświetlany w wynikach wyszukiwarki i podczas udostępniania w mediach społecznościowych. Domyślnie będzie używany tytuł wydarzenia\",\"wDx3FF\":\"Brak dostępnych produktów dla tego wydarzenia\",\"pNgdBv\":\"Brak dostępnych produktów w tej kategorii\",\"rMcHYt\":\"Zwrot jest w toku. Proszę czekać na jego zakończenie przed złożeniem nowego żądania zwrotu.\",\"F89D36\":\"Błąd podczas oznaczania zamówienia jako opłaconego\",\"68Axnm\":\"Podczas przetwarzania Twojego żądania pojawiła się błąd. Proszę spróbować ponownie.\",\"mVKOW6\":\"Błąd podczas wysyłania wiadomości\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Ten uczestnik ma nieopłacone zamówienie.\",\"mf3FrP\":\"Ta kategoria nie ma jeszcze żadnych produktów.\",\"8QH2Il\":\"Ta kategoria jest ukryta przed publicznym widokiem\",\"xxv3BZ\":\"Ta lista kontrolna wygasła\",\"Sa7w7S\":\"Ta lista odpraw wygasła i nie jest już dostępna.\",\"Uicx2U\":\"Ta lista kontrolna jest aktywna\",\"1k0Mp4\":\"Ta lista kontrolna nie jest jeszcze aktywna\",\"K6fmBI\":\"Ta lista odpraw nie jest jeszcze aktywna i nie jest dostępna.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Te informacje będą wyświetlane na stronie płatności, stronie podsumowania zamówienia i w e-mailu potwierdzającym zamówienie.\",\"XAHqAg\":\"To jest produkt ogólny, taki jak koszulka lub kubek. Bilet nie będzie wystawiony\",\"CNk/ro\":\"To jest wydarzenia online\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Ta wiadomość będzie zawarta w stopce wszystkich e-maili wysłanych z tego wydarzenia\",\"55i7Fa\":\"Ta wiadomość będzie wyświetlana tylko wtedy, gdy zamówienie zostanie pomyślnie zrealizowane. Zamówienia oczekujące na płatność nie będą wyświetlać tej wiadomości\",\"RjwlZt\":\"To zamówienie zostało już opłacone.\",\"5K8REg\":\"To zamówienie zostało już zwrócone.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"To zamówienie zostało anulowane.\",\"Q0zd4P\":\"To zamówienie wygasło. Proszę spróbować ponownie.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"To zamówienie jest pełne.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Ta strona zamówienia nie jest już dostępna.\",\"i0TtkR\":\"To przesłania wszystkie ustawienia widoczności i ukryje produkt przed wszystkimi klientami.\",\"cRRc+F\":\"Ten produkt nie może być usunięty, ponieważ jest powiązany z zamówieniem. Możesz go zamiast tego ukryć.\",\"3Kzsk7\":\"Ten produkt jest biletem. Kupującym zostanie wystawiony bilet przy zakupie\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Ten link resetowania hasła jest nieprawidłowy lub wygasł.\",\"IV9xTT\":\"Ten użytkownik nie jest aktywny, ponieważ nie zaakceptował zaproszenia.\",\"5AnPaO\":\"bilet\",\"kjAL4v\":\"Bilet\",\"dtGC3q\":\"E-mail z biletem został ponownie wysłany do uczestnika\",\"54q0zp\":\"Bilety dla\",\"xN9AhL\":[\"Warstwa \",[\"0\"]],\"jZj9y9\":\"Produkt warstwowy\",\"8wITQA\":\"Produkty warstwowe pozwalają oferować wiele opcji cenowych dla tego samego produktu. Doskonale nadaje się do produktów wczesnych ptaków lub oferowania różnych opcji cenowych dla różnych grup ludzi.\",\"nn3mSR\":\"Pozostały czas:\",\"s/0RpH\":\"Liczba użyć\",\"y55eMd\":\"Liczba użyć\",\"40Gx0U\":\"Strefa czasowa\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Narzędzia\",\"72c5Qo\":\"Razem\",\"YXx+fG\":\"Razem przed rabatami\",\"NRWNfv\":\"Łączna kwota rabatu\",\"BxsfMK\":\"Razem opłaty\",\"2bR+8v\":\"Łączna sprzedaż brutto\",\"mpB/d9\":\"Łączna kwota zamówienia\",\"m3FM1g\":\"Razem zwrócono\",\"jEbkcB\":\"Razem zwrócono\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Razem podatek\",\"+zy2Nq\":\"Typ\",\"FMdMfZ\":\"Nie można sprawdzić w uczestnika\",\"bPWBLL\":\"Nie można wylogować uczestnika\",\"9+P7zk\":\"Nie można stworzyć produktu. Proszę sprawdzić swoje dane\",\"WLxtFC\":\"Nie można stworzyć produktu. Proszę sprawdzić swoje dane\",\"/cSMqv\":\"Nie można stworzyć pytania. Proszę sprawdzić swoje dane\",\"MH/lj8\":\"Nie można zaktualizować pytania. Proszę sprawdzić swoje dane\",\"nnfSdK\":\"Unikalne klienty\",\"Mqy/Zy\":\"Stany Zjednoczone\",\"NIuIk1\":\"Bez limitu\",\"/p9Fhq\":\"Bez limitu dostępny\",\"E0q9qH\":\"Dozwolone nieograniczone użycia\",\"h10Wm5\":\"Nieopłacone zamówienie\",\"ia8YsC\":\"Nadchodzące\",\"TlEeFv\":\"Nadchodzące wydarzenia\",\"L/gNNk\":[\"Aktualizuj \",[\"0\"]],\"+qqX74\":\"Aktualizuj nazwę wydarzenia, opis i daty\",\"vXPSuB\":\"Aktualizuj profil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL skopiowany do schowka\",\"e5lF64\":\"Przykład użycia\",\"fiV0xj\":\"Limit użycia\",\"sGEOe4\":\"Użyj rozmytej wersji obrazu okładki jako tła\",\"OadMRm\":\"Użyj obrazu okładki\",\"7PzzBU\":\"Użytkownik\",\"yDOdwQ\":\"Zarządzanie użytkownikami\",\"Sxm8rQ\":\"Użytkownicy\",\"VEsDvU\":\"Użytkownicy mogą zmienić swój e-mail w <0>Ustawieniach profilu\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Nazwa miejsca\",\"jpctdh\":\"Zobacz\",\"Pte1Hv\":\"Zobacz szczegóły uczestnika\",\"/5PEQz\":\"Zobacz stronę wydarzenia\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Zobacz w Mapach Google\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Lista odpraw VIP\",\"tF+VVr\":\"Bilet VIP\",\"2q/Q7x\":\"Widoczność\",\"vmOFL/\":\"Nie mogliśmy przetworzyć Twojej płatności. Proszę spróbować ponownie lub skontaktować się z pomocą techniczną.\",\"45Srzt\":\"Nie mogliśmy usunąć kategorii. Proszę spróbować ponownie.\",\"/DNy62\":[\"Nie mogliśmy znaleźć żadnych biletów pasujących do \",[\"0\"]],\"1E0vyy\":\"Nie mogliśmy załadować danych. Proszę spróbować ponownie.\",\"NmpGKr\":\"Nie mogliśmy zmienić kolejności kategorii. Proszę spróbować ponownie.\",\"BJtMTd\":\"Zalecamy wymiary 1950px na 650px, współczynnik 3:1 i maksymalny rozmiar pliku 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Nie mogliśmy potwierdzić Twojej płatności. Proszę spróbować ponownie lub skontaktować się z pomocą techniczną.\",\"Gspam9\":\"Przetwarzamy Twoje zamówienie. Proszę czekać...\",\"LuY52w\":\"Witamy na pokładzie! Proszę zalogować się, aby kontynuować.\",\"dVxpp5\":[\"Witamy ponownie\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Czym są produkty warstwowe?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Czym jest kategoria?\",\"gxeWAU\":\"Do jakich produktów odnosi się ten kod?\",\"hFHnxR\":\"Do jakich produktów odnosi się ten kod? (Domyślnie dotyczy wszystkich)\",\"AeejQi\":\"Do jakich produktów powinna dotyczyć ta pojemność?\",\"Rb0XUE\":\"O której godzinie przyjedziesz?\",\"5N4wLD\":\"Jaki to typ pytania?\",\"gyLUYU\":\"Gdy włączone, faktury będą generowane dla zamówień biletów. Faktury będą wysyłane wraz z e-mailem potwierdzenia zamówienia. Uczestnicy mogą również pobrać faktury ze strony potwierdzenia zamówienia.\",\"D3opg4\":\"Gdy płatności offline są włączone, użytkownicy będą mogli ukończyć zamówienia i otrzymać bilety. Ich bilety będą wyraźnie wskazywać, że zamówienie nie jest opłacone, a narzędzie odprawy powiadomi personel odprawy, jeśli zamówienie wymaga płatności.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Które bilety powinny być powiązane z tą listą odpraw?\",\"S+OdxP\":\"Kto organizuje to wydarzenie?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Kto powinien zostać zapytany o to pytanie?\",\"VxFvXQ\":\"Osadzanie widgetu\",\"v1P7Gm\":\"Ustawienia widgetu\",\"b4itZn\":\"W toku\",\"hqmXmc\":\"W toku...\",\"+G/XiQ\":\"Od początku roku\",\"l75CjT\":\"Tak\",\"QcwyCh\":\"Tak, usuń je\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Zmieniasz swój e-mail na <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Jesteś offline\",\"sdB7+6\":\"Możesz utworzyć kod promocyjny, który jest ukierunkowany na ten produkt w\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Nie możesz zmienić typu produktu, ponieważ istnieją uczestnicy powiązani z tym produktem.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Nie możesz odprawić uczestników z nieopłaconymi zamówieniami. To ustawienie można zmienić w ustawieniach wydarzenia.\",\"c9Evkd\":\"Nie możesz usunąć ostatniej kategorii.\",\"6uwAvx\":\"Nie możesz usunąć tej warstwy cenowej, ponieważ istnieją już produkty sprzedane dla tej warstwy. Możesz ją zamiast tego ukryć.\",\"tFbRKJ\":\"Nie możesz edytować roli lub statusu właściciela konta.\",\"fHfiEo\":\"Nie możesz zwrócić ręcznie utworzonego zamówienia.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Masz dostęp do wielu kont. Proszę wybierz jedno, aby kontynuować.\",\"Z6q0Vl\":\"Już zaakceptowałeś to zaproszenie. Proszę zalogować się, aby kontynuować.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Nie masz oczekującej zmiany e-mail.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Skończył się czas na ukończenie zamówienia.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Musisz potwierdzić, że ten e-mail nie jest promocyjny\",\"3ZI8IL\":\"Musisz zgodzić się na warunki\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Musisz utworzyć bilet, zanim będziesz mógł ręcznie dodać uczestnika.\",\"jE4Z8R\":\"Musisz mieć co najmniej jedną warstwę cenową\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Będziesz musiał ręcznie oznaczyć zamówienie jako opłacone. Można to zrobić na stronie zarządzania zamówieniem.\",\"L/+xOk\":\"Będziesz potrzebować biletu, zanim będziesz mógł utworzyć listę odpraw.\",\"Djl45M\":\"Będziesz potrzebować produktu, zanim będziesz mógł utworzyć przypisanie pojemności.\",\"y3qNri\":\"Będziesz potrzebować co najmniej jednego produktu, aby zacząć. Darmowy, płatny lub pozwól użytkownikowi zdecydować, ile zapłacić.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Nazwa Twojego konta jest używana na stronach wydarzeń i w e-mailach.\",\"veessc\":\"Twoi uczestnicy pojawią się tutaj po zarejestrowaniu się na Twoje wydarzenie. Możesz również ręcznie dodać uczestników.\",\"Eh5Wrd\":\"Twoja niesamowita strona internetowa 🎉\",\"lkMK2r\":\"Twoje szczegóły\",\"3ENYTQ\":[\"Twoja prośba o zmianę e-maila na <0>\",[\"0\"],\" jest w toku. Proszę sprawdzić e-mail, aby potwierdzić\"],\"yZfBoy\":\"Twoja wiadomość została wysłana\",\"KSQ8An\":\"Twoje zamówienie\",\"Jwiilf\":\"Twoje zamówienie zostało anulowane\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Twoje zamówienia pojawią się tutaj, gdy zaczną napływać.\",\"9TO8nT\":\"Twoje hasło\",\"P8hBau\":\"Twoja płatność jest przetwarzana.\",\"UdY1lL\":\"Twoja płatność nie powiodła się, proszę spróbować ponownie.\",\"fzuM26\":\"Twoja płatność nie powiodła się. Proszę spróbować ponownie.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Zwrot jest procesowany.\",\"IFHV2p\":\"Twój bilet na\",\"x1PPdr\":\"Kod pocztowy\",\"BM/KQm\":\"Kod pocztowy\",\"+LtVBt\":\"Kod pocztowy\",\"25QDJ1\":\"- Kliknij, aby opublikować\",\"WOyJmc\":\"- Kliknij, aby cofnąć publikację\",\"ncwQad\":\"(puste)\",\"B/gRsg\":\"(brak)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" jest już zameldowany\"],\"3beCx0\":[[\"0\"],\" <0>zameldowany\"],\"S4PqS9\":[[\"0\"],\" Aktywne webhooki\"],\"6MIiOI\":[[\"0\"],\" pozostało\"],\"COnw8D\":[\"logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" z \",[\"1\"],\" miejsc jest zajętych.\"],\"B7pZfX\":[[\"0\"],\" organizatorów\"],\"rZTf6P\":[\"Pozostało miejsc: \",[\"0\"]],\"/HkCs4\":[[\"0\"],\" biletów\"],\"dtXkP9\":[[\"0\"],\" nadchodzących terminów\"],\"30bTiU\":[[\"activeCount\"],\" włączone\"],\"jTs4am\":[\"logo \",[\"appName\"]],\"gbJOk9\":[\"Na tę sesję zarejestrowanych jest \",[\"attendeeCount\"],\" uczestników.\"],\"TjbIUI\":[[\"availableCount\"],\" z \",[\"totalCount\"],\" dostępnych\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" zameldowanych\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" godz. temu\"],\"NRSLBe\":[[\"diffMin\"],\" min temu\"],\"iYfwJE\":[[\"diffSec\"],\" s temu\"],\"OJnhhX\":[[\"eventCount\"],\" wydarzeń\"],\"mhZbzw\":[\"W dotkniętych sesjach zarejestrowanych jest \",[\"loadedAffectedAttendees\"],\" uczestników.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" typów biletów\"],\"0cLzoF\":[[\"totalOccurrences\"],\" terminów\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sesji w \",[\"0\"],\" terminach (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sesja\"],\"other\":[\"#\",\" sesji\"]}],\" dziennie)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Podatek/Opłaty\",\"B1St2O\":\"<0>Listy odpraw pomagają zarządzać wejściem na wydarzenie według dnia, obszaru lub typu biletu. Możesz łączyć bilety z konkretnymi listami, takimi jak strefy VIP lub bilety na Dzień 1, i udostępniać bezpieczny link do odprawy personelowi. Nie jest wymagane konto. Odprawa działa na urządzeniach mobilnych, desktopowych lub tabletach, używając kamery urządzenia lub skanera HID USB. \",\"v9VSIS\":\"<0>Ustaw pojedynczy całkowity limit frekwencji, który dotyczy wielu typów biletów jednocześnie.<1>Na przykład, jeśli połączysz bilet <2>Day Pass i <3>Full Weekend, oba będą czerpać z tej samej puli miejsc. Po osiągnięciu limitu wszystkie połączone bilety automatycznie przestaną być sprzedawane.\",\"vKXqag\":\"<0>To jest domyślna liczba dla wszystkich terminów. Pojemność każdego terminu może dodatkowo ograniczać dostępność na <1>stronie harmonogramu sesji.\",\"ZnVt5v\":\"<0>Webhooki natychmiast powiadamiają zewnętrzne usługi, gdy zachodzą zdarzenia, takie jak dodanie nowego uczestnika do CRM lub listy mailingowej po rejestracji, zapewniając płynną automatyzację.<1>Użyj usług trzecich, takich jak <2>Zapier, <3>IFTTT lub <4>Make, aby tworzyć niestandardowe przepływy pracy i automatyzować zadania.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" po aktualnym kursie\"],\"M2DyLc\":\"1 Aktywny webhook\",\"6hIk/x\":\"W dotkniętych sesjach zarejestrowany jest 1 uczestnik.\",\"qOyE2U\":\"Na tę sesję zarejestrowany jest 1 uczestnik.\",\"943BwI\":\"1 dzień po dacie zakończenia\",\"yj3N+g\":\"1 dzień po dacie rozpoczęcia\",\"Z3etYG\":\"1 dzień przed wydarzeniem\",\"szSnlj\":\"1 godzinę przed wydarzeniem\",\"yTsaLw\":\"1 bilet\",\"nz96Ue\":\"1 typ biletu\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 tydzień przed wydarzeniem\",\"09VFYl\":\"Zaoferowano 12 biletów\",\"HR/cvw\":\"123 Przykładowa Ulica\",\"dgKxZ5\":\"135+ walut i 40+ metod płatności\",\"kMU5aM\":\"Wiadomość o anulowaniu została wysłana do\",\"o++0qa\":\"zmianę czasu trwania\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Nowy kod weryfikacyjny został wysłany na Twój email\",\"sr2Je0\":\"przesunięcie czasów rozpoczęcia/zakończenia\",\"/z/bH1\":\"Krótki opis Twojego organizatora, który będzie wyświetlany Twoim użytkownikom.\",\"aS0jtz\":\"Porzucony\",\"uyJsf6\":\"O\",\"JvuLls\":\"Absorbuj opłatę\",\"lk74+I\":\"Absorbuj Opłatę\",\"1uJlG9\":\"Kolor Akcentu\",\"g3UF2V\":\"Akceptuj\",\"K5+3xg\":\"Zaakceptuj zaproszenie\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Konto · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informacja o koncie\",\"EHNORh\":\"Konto nie znalezione\",\"bPwFdf\":\"Konta\",\"AhwTa1\":\"Wymagane działanie: Potrzebne informacje VAT\",\"APyAR/\":\"Aktywne wydarzenia\",\"kCl6ja\":\"Aktywne metody płatności\",\"XJOV1Y\":\"Aktywność\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Dodaj termin\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Dodaj pojedynczy termin\",\"CjvTPJ\":\"Dodaj kolejną godzinę\",\"0XCduh\":\"Dodaj co najmniej jedną godzinę\",\"/chGpa\":\"Dodaj dane połączenia dla wydarzenia online.\",\"UWWRyd\":\"Dodaj niestandardowe pytania, aby zebrać dodatkowe informacje podczas płatności\",\"Z/dcxc\":\"Dodaj termin\",\"Q219NT\":\"Dodaj terminy\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Dodaj lokalizację\",\"VX6WUv\":\"Dodaj lokalizację\",\"GCQlV2\":\"Dodaj kilka godzin, jeśli prowadzisz kilka sesji dziennie.\",\"7JF9w9\":\"Dodaj pytanie\",\"NLbIb6\":\"Dodaj uczestnika mimo to (zignoruj pojemność)\",\"6PNlRV\":\"Dodaj to wydarzenie do swojego kalendarza\",\"BGD9Yt\":\"Dodaj bilety\",\"uIv4Op\":\"Dodaj piksele śledzące do publicznych stron wydarzeń i strony głównej organizatora. Gdy śledzenie jest aktywne, odwiedzającym wyświetli się baner zgody na pliki cookie.\",\"QN2F+7\":\"Dodaj webhook\",\"NsWqSP\":\"Dodaj swoje uchwyty mediów społecznościowych i URL strony internetowej. Będą wyświetlane na Twojej publicznej stronie organizatora.\",\"bVjDs9\":\"Dodatkowe opłaty\",\"MKqSg4\":\"Wymagany dostęp administratora\",\"0Zypnp\":\"Panel administratora\",\"YAV57v\":\"Partner\",\"I+utEq\":\"Kod partnerski nie może zostać zmieniony\",\"/jHBj5\":\"Partner utworzony pomyślnie\",\"uCFbG2\":\"Partner usunięty pomyślnie\",\"ld8I+f\":\"Program partnerski\",\"a41PKA\":\"Sprzedaż partnerska będzie śledzona\",\"mJJh2s\":\"Sprzedaż partnerska nie będzie śledzona. To dezaktywuje partnera.\",\"jabmnm\":\"Partner zaktualizowany pomyślnie\",\"CPXP5Z\":\"Partnerzy\",\"9Wh+ug\":\"Partnerzy wyeksportowani\",\"3cqmut\":\"Partnerzy pomagają śledzić sprzedaż generowaną przez partnerów i influencerów. Utwórz kody partnerskie i udostępnij je, aby monitorować wydajność.\",\"z7GAMJ\":\"wszystkie\",\"N40H+G\":\"Wszyscy\",\"7rLTkE\":\"Wszystkie zarchiwizowane wydarzenia\",\"gKq1fa\":\"Wszyscy uczestnicy\",\"63gRoO\":\"Wszyscy uczestnicy wybranych sesji\",\"uWxIoH\":\"Wszyscy uczestnicy tej sesji\",\"pMLul+\":\"Wszystkie waluty\",\"sgUdRZ\":\"Wszystkie terminy\",\"e4q4uO\":\"Wszystkie terminy\",\"ZS/D7f\":\"Wszystkie zakończone wydarzenia\",\"QsYjci\":\"Wszystkie wydarzenia\",\"31KB8w\":\"Wszystkie nieudane zadania usunięte\",\"D2g7C7\":\"Wszystkie zadania w kolejce do ponowienia\",\"B4RFBk\":\"Wszystkie pasujące terminy\",\"F1/VgK\":\"Wszystkie sesje\",\"OpWjMq\":\"Wszystkie sesje\",\"Sxm1lO\":\"Wszystkie statusy\",\"dr7CWq\":\"Wszystkie nadchodzące wydarzenia\",\"GpT6Uf\":\"Zezwól uczestnikom na aktualizację informacji o bilecie (imię, e-mail) za pośrednictwem bezpiecznego linku wysłanego z potwierdzeniem zamówienia.\",\"F3mW5G\":\"Pozwól klientom dołączyć do listy oczekujących, gdy ten produkt jest wyprzedany\",\"c4uJfc\":\"Prawie gotowe! Czekamy tylko na przetworzenie Twojej płatności. To powinno zająć tylko kilka sekund.\",\"ocS8eq\":[\"Masz już konto? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Już w środku\",\"/H326L\":\"Już zwrócone\",\"USEpOK\":\"Korzystasz już ze Stripe u innego organizatora? Użyj tego połączenia ponownie.\",\"RtxQTF\":\"Również anuluj to zamówienie\",\"jkNgQR\":\"Również zwróć to zamówienie\",\"xYqsHg\":\"Zawsze dostępne\",\"Wvrz79\":\"Kwota zapłacona\",\"Zkymb9\":\"E-mail do powiązania z tym partnerem. Partner nie zostanie powiadomiony.\",\"vRznIT\":\"Wystąpił błąd podczas sprawdzania statusu eksportu.\",\"eusccx\":\"Opcjonalna wiadomość do wyświetlenia na wyróżnionym produkcie, np. \\\"Sprzedaje się szybko 🔥\\\" lub \\\"Najlepsza wartość\\\"\",\"5GJuNp\":[\"i jeszcze \",[\"0\"],\"...\"],\"QNrkms\":\"Odpowiedź zaktualizowana pomyślnie.\",\"+qygei\":\"Odpowiedzi\",\"GK7Lnt\":\"Odpowiedzi przy zamówieniu (np. wybór posiłku)\",\"lE8PgT\":\"Wszystkie ręcznie dostosowane terminy zostaną zachowane.\",\"vP3Nzg\":[\"Dotyczy \",[\"0\"],\" nieanulowanych terminów aktualnie załadowanych na tej stronie.\"],\"kkVyZZ\":\"Dotyczy osób otwierających link bez zalogowania. Zalogowani zawsze widzą wszystko.\",\"je4muG\":[\"Dotyczy każdego \",[\"0\"],\" nieanulowanego terminu w tym wydarzeniu — także terminów, które nie są aktualnie załadowane.\"],\"YIIQtt\":\"Zastosuj zmiany\",\"NzWX1Y\":\"Zastosuj do\",\"Ps5oDT\":\"Zastosuj do wszystkich biletów\",\"261RBr\":\"Zatwierdź wiadomość\",\"naCW6Z\":\"Kwiecień\",\"B495Gs\":\"Archiwizuj\",\"5sNliy\":\"Archiwizuj wydarzenie\",\"BrwnrJ\":\"Archiwizuj organizatora\",\"E5eghW\":\"Zarchiwizuj to wydarzenie, aby ukryć je przed publicznością. Możesz je później przywrócić.\",\"eqFkeI\":\"Zarchiwizuj tego organizatora. Spowoduje to również archiwizację wszystkich wydarzeń należących do tego organizatora.\",\"BzcxWv\":\"Zarchiwizowani organizatorzy\",\"9cQBd6\":\"Czy na pewno chcesz zarchiwizować to wydarzenie? Nie będzie już widoczne dla publiczności.\",\"Trnl3E\":\"Czy na pewno chcesz zarchiwizować tego organizatora? Spowoduje to również archiwizację wszystkich wydarzeń należących do tego organizatora.\",\"wOvn+e\":[\"Czy na pewno chcesz anulować \",[\"count\"],\" termin(ów)? Dotknięci uczestnicy zostaną powiadomieni e-mailem.\"],\"GTxE0U\":\"Czy na pewno chcesz anulować ten termin? Dotknięci uczestnicy zostaną powiadomieni e-mailem.\",\"VkSk/i\":\"Czy na pewno chcesz anulować tę zaplanowaną wiadomość?\",\"0aVEBY\":\"Czy na pewno chcesz usunąć wszystkie nieudane zadania?\",\"LchiNd\":\"Czy na pewno chcesz usunąć tego partnera? Tej akcji nie można cofnąć.\",\"vPeW/6\":\"Czy na pewno chcesz usunąć tę konfigurację? Może to wpłynąć na konta jej używające.\",\"h42Hc/\":\"Czy na pewno chcesz usunąć ten termin? Tej operacji nie można cofnąć.\",\"JmVITJ\":\"Czy na pewno chcesz usunąć ten szablon? Tej akcji nie można cofnąć, a e-maile powrócą do domyślnego szablonu.\",\"aLS+A6\":\"Czy na pewno chcesz usunąć ten szablon? Tej akcji nie można cofnąć, a e-maile powrócą do szablonu organizatora lub domyślnego.\",\"5H3Z78\":\"Czy na pewno chcesz usunąć ten webhook?\",\"147G4h\":\"Czy na pewno chcesz wyjść?\",\"VDWChT\":\"Czy na pewno chcesz zrobić tę stronę organizatora szkicem? To sprawi, że strona organizatora będzie niewidoczna dla publiczności\",\"pWtQJM\":\"Czy na pewno chcesz opublikować tę stronę organizatora? To sprawi, że strona organizatora będzie widoczna dla publiczności\",\"EOqL/A\":\"Czy na pewno chcesz zaoferować miejsce tej osobie? Otrzyma ona powiadomienie e-mail.\",\"yAXqWW\":\"Czy na pewno chcesz trwale usunąć ten termin? Tej operacji nie można cofnąć.\",\"WFHOlF\":\"Czy na pewno chcesz opublikować to wydarzenie? Po opublikowaniu będzie widoczne dla publiczności.\",\"4TNVdy\":\"Czy na pewno chcesz opublikować ten profil organizatora? Po opublikowaniu będzie widoczny dla publiczności.\",\"8x0pUg\":\"Czy na pewno chcesz usunąć ten wpis z listy oczekujących?\",\"cDtoWq\":[\"Czy na pewno chcesz ponownie wysłać potwierdzenie zamówienia do \",[\"0\"],\"?\"],\"xeIaKw\":[\"Czy na pewno chcesz ponownie wysłać bilet do \",[\"0\"],\"?\"],\"BjbocR\":\"Czy na pewno chcesz przywrócić to wydarzenie?\",\"7MjfcR\":\"Czy na pewno chcesz przywrócić tego organizatora?\",\"ExDt3P\":\"Czy na pewno chcesz cofnąć publikację tego wydarzenia? Nie będzie już widoczne dla publiczności.\",\"5Qmxo/\":\"Czy na pewno chcesz cofnąć publikację tego profilu organizatora? Nie będzie już widoczny dla publiczności.\",\"Uqefyd\":\"Czy jesteś zarejestrowany na VAT w UE?\",\"+QARA4\":\"Sztuka\",\"tLf3yJ\":\"Ponieważ Twoja firma ma siedzibę w Irlandii, irlandzki VAT w wysokości 23% stosuje się automatycznie do wszystkich opłat platformy.\",\"tMeVa/\":\"Pytaj o imię i e-mail dla każdego zakupionego biletu\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Przypisz plan\",\"xdiER7\":\"Przypisany poziom\",\"F2rX0R\":\"Musi być wybrany co najmniej jeden typ wydarzenia\",\"BCmibk\":\"Próby\",\"6PecK3\":\"Frekwencja i wskaźniki odpraw we wszystkich wydarzeniach\",\"K2tp3v\":\"uczestnik\",\"AJ4rvK\":\"Uczestnik anulowany\",\"qvylEK\":\"Uczestnik utworzony\",\"Aspq3b\":\"Zbieranie szczegółów uczestnika\",\"fpb0rX\":\"Szczegóły uczestnika skopiowane z zamówienia\",\"0R3Y+9\":\"E-mail uczestnika\",\"94aQMU\":\"Informacje o uczestniku\",\"KkrBiR\":\"Zbieranie informacji o uczestniku\",\"av+gjP\":\"Imię uczestnika\",\"sjPjOg\":\"Notatki uczestnika\",\"cosfD8\":\"Status uczestnika\",\"D2qlBU\":\"Uczestnik zaktualizowany\",\"22BOve\":\"Uczestnik zaktualizowany pomyślnie\",\"x8Vnvf\":\"Bilet uczestnika nie jest uwzględniony na tej liście\",\"/Ywywr\":\"uczestnicy\",\"zLRobu\":\"uczestników zameldowanych\",\"k3Tngl\":\"Uczestnicy wyeksportowani\",\"UoIRW8\":\"Uczestnicy zarejestrowani\",\"5UbY+B\":\"Uczestnicy z konkretnym biletem\",\"4HVzhV\":\"Uczestnicy:\",\"HVkhy2\":\"Analityka atrybucji\",\"dMMjeD\":\"Podział atrybucji\",\"1oPDuj\":\"Wartość atrybucji\",\"DBHTm/\":\"Sierpień\",\"JgREph\":\"Automatyczna oferta jest włączona\",\"V7Tejz\":\"Automatyczne przetwarzanie listy oczekujących\",\"PZ7FTW\":\"Automatycznie wykrywane na podstawie koloru tła, ale można nadpisać\",\"zlnTuI\":\"Automatycznie oferuj bilety kolejnej osobie, gdy pojawi się wolne miejsce. Po wyłączeniu możesz ręcznie obsługiwać listę oczekujących ze strony listy oczekujących.\",\"csDS2L\":\"Dostępne\",\"clF06r\":\"Dostępne do zwrotu\",\"NB5+UG\":\"Dostępne tokeny\",\"L+wGOG\":\"Oczekuje\",\"qcw2OD\":\"Oczekuje zapłaty\",\"kNmmvE\":\"Świetne Wydarzenia Sp. z o.o.\",\"iH8pgl\":\"Wstecz\",\"TeSaQO\":\"Powrót do kont\",\"X7Q/iM\":\"Powrót do kalendarza\",\"kYqM1A\":\"Powrót do wydarzenia\",\"s5QRF3\":\"Powrót do wiadomości\",\"td/bh+\":\"Powrót do raportów\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Cena bazowa\",\"hviJef\":\"Na podstawie globalnego okresu sprzedaży powyżej, nie dla poszczególnych terminów\",\"jIPNJG\":\"Podstawowe informacje\",\"UabgBd\":\"Treść jest wymagana\",\"HWXuQK\":\"Dodaj tę stronę do zakładek, aby zarządzać zamówieniem w dowolnym momencie.\",\"CUKVDt\":\"Zbranduj swoje bilety niestandardowym logo, kolorami i komunikatem w stopce.\",\"4BZj5p\":\"Wbudowana ochrona przed oszustwami\",\"cr7kGH\":\"Edycja zbiorcza\",\"1Fbd6n\":\"Zbiorcza edycja terminów\",\"Eq6Tu9\":\"Aktualizacja zbiorcza nie powiodła się.\",\"9N+p+g\":\"Biznes\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nazwa firmy\",\"bv6RXK\":\"Etykieta przycisku\",\"ChDLlO\":\"Tekst przycisku\",\"BUe8Wj\":\"Kupujący płaci\",\"qF1qbA\":\"Kupujący widzą czystą cenę. Opłata platformy jest odejmowana od Twojej wypłaty.\",\"dg05rc\":\"Dodając piksele śledzące, potwierdzasz, że Ty i ta platforma jesteście współadministratorami zbieranych danych. Jesteś odpowiedzialny za zapewnienie podstawy prawnej do tego przetwarzania zgodnie z obowiązującymi przepisami o ochronie prywatności (RODO, CCPA itp.).\",\"DFqasq\":[\"Kontynuując, zgadzasz się na <0>\",[\"0\"],\" Warunki korzystania z usługi\"],\"wVSa+U\":\"Według dnia miesiąca\",\"0MnNgi\":\"Według dnia tygodnia\",\"CetOZE\":\"Według typu biletu\",\"lFdbRS\":\"Pomiń opłaty aplikacji\",\"AjVXBS\":\"Kalendarz\",\"alkXJ5\":\"Widok kalendarza\",\"2VLZwd\":\"Przycisk wezwania do działania\",\"rT2cV+\":\"Kamera\",\"7hYa9y\":\"Odmówiono dostępu do kamery. <0>Poproś ponownie lub udziel dostępu do kamery w ustawieniach przeglądarki.\",\"D02dD9\":\"Kampania\",\"RRPA79\":\"Nie można zameldować\",\"OcVwAd\":[\"Anuluj \",[\"count\"],\" termin(ów)\"],\"H4nE+E\":\"Anuluj wszystkie produkty i zwolnij je z powrotem do puli\",\"Py78q9\":\"Anuluj termin\",\"tOXAdc\":\"Anulowanie anuluje wszystkich uczestników związanych z tym zamówieniem i zwolni bilety z powrotem do dostępnej puli.\",\"vev1Jl\":\"Anulowanie\",\"Ha17hq\":[\"Anulowano \",[\"0\"],\" termin(ów)\"],\"01sEfm\":\"Nie można usunąć domyślnej konfiguracji systemu\",\"VsM1HH\":\"Przypisania pojemności\",\"9bIMVF\":\"Zarządzanie pojemnością\",\"H7K8og\":\"Pojemność musi wynosić 0 lub więcej\",\"nzao08\":\"aktualizacje pojemności\",\"4cp9NP\":\"Wykorzystana pojemność\",\"K7tIrx\":\"Kategoria\",\"o+XJ9D\":\"Zmień\",\"kJkjoB\":\"Zmień czas trwania\",\"J0KExZ\":\"Zmień limit uczestników\",\"CIHJJf\":\"Zmień ustawienia listy oczekujących\",\"B5icLR\":[\"Zmieniono czas trwania dla \",[\"count\"],\" termin(ów)\"],\"Kb+0BT\":\"Obciążenia\",\"2tbLdK\":\"Dobroczynność\",\"BPWGKn\":\"Zamelduj\",\"6uFFoY\":\"Wymelduj\",\"FjAlwK\":[\"Sprawdź to wydarzenie: \",[\"0\"]],\"v4fiSg\":\"Sprawdź swoją pocztę e-mail\",\"51AsAN\":\"Sprawdź swoją skrzynkę odbiorczą! Jeśli bilety są powiązane z tym e-mailem, otrzymasz link do ich wyświetlenia.\",\"Y3FYXy\":\"Odprawa\",\"udRwQs\":\"Odprawa utworzona\",\"F4SRy3\":\"Odprawa usunięta\",\"as6XfO\":[\"Odprawa \",[\"0\"],\" została cofnięta\"],\"9s/wrQ\":\"Historia odprawy\",\"Wwztk4\":\"Lista odpraw\",\"9gPPUY\":\"Lista odpraw utworzona\",\"dwjiJt\":\"Informacje o liście\",\"7od0PV\":\"listy odpraw\",\"f2vU9t\":\"Listy odpraw\",\"XprdTn\":\"Nawigacja odprawy\",\"5tV1in\":\"Postęp odprawy\",\"SHJwyq\":\"Wskaźnik zameldowań\",\"qCqdg6\":\"Status zameldowania\",\"cKj6OE\":\"Podsumowanie zameldowań\",\"7B5M35\":\"Zameldowania\",\"VrmydS\":\"Zameldowany\",\"DM4gBB\":\"Chiński (tradycyjny)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Wybierz inną akcję\",\"fkb+y3\":\"Wybierz zapisaną lokalizację do zastosowania.\",\"Zok1Gx\":\"Wybierz organizatora\",\"pkk46Q\":\"Wybierz organizatora\",\"Crr3pG\":\"Wybierz kalendarz\",\"LAW8Vb\":\"Wybierz domyślne ustawienie dla nowych wydarzeń. Można to nadpisać dla poszczególnych wydarzeń.\",\"pjp2n5\":\"Wybierz, kto płaci opłatę platformy. Nie wpływa to na dodatkowe opłaty skonfigurowane w ustawieniach konta.\",\"xCJdfg\":\"Wyczyść\",\"QyOWu9\":\"Wyczyść lokalizację — wróć do domyślnej lokalizacji wydarzenia\",\"V8yTm6\":\"Wyczyść wyszukiwanie\",\"kmnKnX\":\"Wyczyszczenie usuwa wszelkie nadpisania dla pojedynczych sesji. Sesje, których to dotyczy, powrócą do domyślnej lokalizacji wydarzenia.\",\"/o+aQX\":\"Kliknij, aby anulować\",\"gD7WGV\":\"Kliknij, aby ponownie otworzyć dla nowej sprzedaży\",\"CySr+W\":\"Kliknij, aby zobaczyć notatki\",\"RG3szS\":\"zamknij\",\"RWw9Lg\":\"Zamknij modal\",\"XwdMMg\":\"Kod może zawierać tylko litery, cyfry, myślniki i podkreślenia\",\"+yMJb7\":\"Kod jest wymagany\",\"m9SD3V\":\"Kod musi mieć co najmniej 3 znaki\",\"V1krgP\":\"Kod nie może mieć więcej niż 20 znaków\",\"psqIm5\":\"Współpracuj ze swoją drużyną, aby tworzyć niesamowite wydarzenia razem.\",\"4bUH9i\":\"Zbierz szczegóły uczestnika dla każdego zakupionego biletu.\",\"TkfG8v\":\"Zbierz szczegóły na zamówienie\",\"96ryID\":\"Zbierz szczegóły na bilet\",\"FpsvqB\":\"Tryb koloru\",\"jEu4bB\":\"Kolumny\",\"CWk59I\":\"Komedia\",\"rPA+Gc\":\"Preferencje komunikacyjne\",\"zFT5rr\":\"ukończono\",\"bUQMpb\":\"Zakończ konfigurację Stripe\",\"744BMm\":\"Dokończ zamówienie, aby zabezpieczyć swoje bilety. Ta oferta jest ograniczona czasowo, więc nie zwlekaj zbyt długo.\",\"5YrKW7\":\"Zakończ płatność, aby zabezpieczyć swoje bilety.\",\"xGU92i\":\"Uzupełnij swój profil, aby dołączyć do drużyny.\",\"QOhkyl\":\"Napisz\",\"ih35UP\":\"Centrum konferencyjne\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Konfiguracja przypisana\",\"X1zdE7\":\"Konfiguracja utworzona pomyślnie\",\"mLBUMQ\":\"Konfiguracja usunięta pomyślnie\",\"UIENhw\":\"Nazwy konfiguracji są widoczne dla użytkowników końcowych. Opłaty stałe zostaną przeliczone na walutę zamówienia po aktualnym kursie wymiany.\",\"eeZdaB\":\"Konfiguracja zaktualizowana pomyślnie\",\"3cKoxx\":\"Konfiguracje\",\"8v2LRU\":\"Skonfiguruj szczegóły wydarzenia, lokalizację, opcje płatności i powiadomienia e-mail.\",\"raw09+\":\"Skonfiguruj, jak zbierane są szczegóły uczestnika podczas płatności\",\"FI60XC\":\"Skonfiguruj podatki i opłaty\",\"av6ukY\":\"Skonfiguruj, które produkty są dostępne dla tej sesji i opcjonalnie dostosuj ceny.\",\"NGXKG/\":\"Potwierdź adres e-mail\",\"JRQitQ\":\"Potwierdź nowe hasło\",\"Auz0Mz\":\"Potwierdź swój e-mail, aby uzyskać dostęp do wszystkich funkcji.\",\"7+grte\":\"E-mail potwierdzający wysłany! Sprawdź swoją skrzynkę odbiorczą.\",\"n/7+7Q\":\"Potwierdzenie wysłane do\",\"x3wVFc\":\"Gratulacje! Twoje wydarzenie jest teraz widoczne publicznie.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Połącz Stripe, aby włączyć edycję szablonów e-mail\",\"LmvZ+E\":\"Połącz Stripe, aby włączyć wiadomości\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakt \",[\"0\"]],\"41BQ3k\":\"E-mail kontaktowy\",\"KcXRN+\":\"E-mail kontaktowy do wsparcia\",\"m8WD6t\":\"Kontynuuj konfigurację\",\"0GwUT4\":\"Przejdź do płatności\",\"sBV87H\":\"Przejdź do tworzenia wydarzenia\",\"nKtyYu\":\"Przejdź do następnego kroku\",\"F3/nus\":\"Przejdź do płatności\",\"p2FRHj\":\"Kontroluj, jak opłaty platformy są obsługiwane dla tego wydarzenia\",\"NqfabH\":\"Kontroluj, kto wchodzi w tym terminie\",\"fmYxZx\":\"Kto i kiedy wejdzie\",\"1JnTgU\":\"Skopiowane z góry\",\"FxVG/l\":\"Skopiowane do schowka\",\"PiH3UR\":\"Skopiowane!\",\"4i7smN\":\"Skopiuj identyfikator konta\",\"uUPbPg\":\"Kopiuj link partnera\",\"iVm46+\":\"Kopiuj kod\",\"cF2ICc\":\"Skopiuj link klienta\",\"+2ZJ7N\":\"Kopiuj szczegóły do pierwszego uczestnika\",\"ZN1WLO\":\"Kopiuj e-mail\",\"y1eoq1\":\"Skopiuj link\",\"tUGbi8\":\"Kopiuj moje szczegóły do:\",\"y22tv0\":\"Kopiuj ten link, aby udostępnić go wszędzie\",\"/4gGIX\":\"Kopiuj do schowka\",\"e0f4yB\":\"Nie można usunąć lokalizacji\",\"vkiDx2\":\"Nie udało się przygotować masowej aktualizacji.\",\"KOavaU\":\"Nie można pobrać szczegółów adresu\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Nie można zapisać terminu\",\"eeLExK\":\"Nie można zapisać lokalizacji\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Obraz okładki\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Obraz okładki będzie wyświetlany na górze strony wydarzenia\",\"2NLjA6\":\"Obraz okładki będzie wyświetlany na górze strony organizatora\",\"GkrqoY\":\"Obejmuje każdy bilet\",\"zg4oSu\":[\"Utwórz szablon \",[\"0\"]],\"RKKhnW\":\"Utwórz niestandardowy widget do sprzedaży biletów na swojej stronie.\",\"6sk7PP\":\"Utwórz określoną liczbę\",\"PhioFp\":\"Utwórz nową listę odpraw dla aktywnej sesji lub skontaktuj się z organizatorem, jeśli uważasz, że to pomyłka.\",\"yIRev4\":\"Utwórz hasło\",\"j7xZ7J\":\"Utwórz dodatkowych organizatorów, aby zarządzać oddzielnymi markami, działami lub seriami wydarzeń w ramach jednego konta. Każdy organizator ma własne wydarzenia, ustawienia i stronę publiczną.\",\"xfKgwv\":\"Utwórz partnera\",\"tudG8q\":\"Utwórz i skonfiguruj bilety i towary na sprzedaż.\",\"YAl9Hg\":\"Utwórz konfigurację\",\"BTne9e\":\"Utwórz niestandardowe szablony e-mail dla tego wydarzenia, które nadpisują domyślne organizatora\",\"YIDzi/\":\"Utwórz niestandardowy szablon\",\"tsGqx5\":\"Utwórz termin\",\"Nc3l/D\":\"Utwórz rabaty, kody dostępu dla ukrytych biletów i specjalne oferty.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Utwórz dla tego terminu\",\"eWEV9G\":\"Utwórz nowe hasło\",\"wl2iai\":\"Utwórz harmonogram\",\"8AiKIu\":\"Utwórz bilet lub produkt\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Utwórz śledzone linki, aby nagradzać partnerów, którzy promują Twoje wydarzenie.\",\"dkAPxi\":\"Utwórz webhook\",\"5slqwZ\":\"Utwórz swoje wydarzenie\",\"JQNMrj\":\"Utwórz swoje pierwsze wydarzenie\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Utwórz własne wydarzenie\",\"67NsZP\":\"Tworzenie wydarzenia...\",\"H34qcM\":\"Tworzenie organizatora...\",\"1YMS+X\":\"Tworzenie Twojego wydarzenia, proszę czekać\",\"yiy8Jt\":\"Tworzenie Twojego profilu organizatora, proszę czekać\",\"lfLHNz\":\"Etykieta CTA jest wymagana\",\"0xLR6W\":\"Aktualnie przypisane\",\"iTvh6I\":\"Obecnie dostępne do zakupu\",\"A42Dqn\":\"Niestandardowy branding\",\"Guo0lU\":\"Niestandardowa data i godzina\",\"mimF6c\":\"Niestandardowa wiadomość po płatności\",\"WDMdn8\":\"Niestandardowe pytania\",\"O6mra8\":\"Niestandardowe pytania\",\"axv/Mi\":\"Niestandardowy szablon\",\"2YeVGY\":\"Link klienta skopiowany do schowka\",\"QMHSMS\":\"Klient otrzyma e-mail potwierdzający zwrot\",\"L/Qc+w\":\"Adres e-mail klienta\",\"wpfWhJ\":\"Imię klienta\",\"GIoqtA\":\"Nazwisko klienta\",\"NihQNk\":\"Klienci\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Dostosuj e-maile wysyłane do Twoich klientów za pomocą szablonów Liquid. Te szablony będą używane jako domyślne dla wszystkich wydarzeń w Twojej organizacji.\",\"xJaTUK\":\"Dostosuj układ, kolory i branding strony głównej Twojego wydarzenia.\",\"MXZfGN\":\"Dostosuj pytania zadawane podczas płatności, aby zebrać ważne informacje od Twoich uczestników.\",\"iX6SLo\":\"Dostosuj tekst wyświetlany na przycisku kontynuacji\",\"pxNIxa\":\"Dostosuj swój szablon e-mail za pomocą szablonów Liquid\",\"3trPKm\":\"Dostosuj wygląd strony organizatora\",\"U0sC6H\":\"Codziennie\",\"/gWrVZ\":\"Codzienne przychody, podatki, opłaty i zwroty we wszystkich wydarzeniach\",\"zgCHnE\":\"Codzienny raport sprzedaży\",\"nHm0AI\":\"Codzienna sprzedaż, podział podatków i opłat\",\"1aPnDT\":\"Taniec\",\"pvnfJD\":\"Ciemny\",\"MaB9wW\":\"Anulowanie terminu\",\"e6cAxJ\":\"Termin anulowany\",\"81jBnC\":\"Termin pomyślnie anulowany\",\"a/C/6R\":\"Termin pomyślnie utworzony\",\"IW7Q+u\":\"Termin usunięty\",\"rngCAz\":\"Termin pomyślnie usunięty\",\"lnYE59\":\"Data wydarzenia\",\"gnBreG\":\"Data złożenia zamówienia\",\"vHbfoQ\":\"Termin reaktywowany\",\"hvah+S\":\"Data ponownie otwarta dla nowej sprzedaży\",\"Ez0YsD\":\"Termin pomyślnie zaktualizowany\",\"VTsZuy\":\"Terminy i godziny są zarządzane na\",\"/ITcnz\":\"dzień\",\"H7OUPr\":\"Dzień\",\"JtHrX9\":\"Dzień miesiąca\",\"J/Upwb\":\"dni\",\"vDVA2I\":\"Dni miesiąca\",\"rDLvlL\":\"Dni tygodnia\",\"r6zgGo\":\"Grudzień\",\"jbq7j2\":\"Odrzuć\",\"ovBPCi\":\"Domyślny\",\"JtI4vj\":\"Domyślne zbieranie informacji o uczestniku\",\"ULjv90\":\"Domyślna pojemność na termin\",\"3R/Tu2\":\"Domyślne obsługiwanie opłat\",\"1bZAZA\":\"Zostanie użyty domyślny szablon\",\"HNlEFZ\":\"usuń\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Usunąć \",[\"count\"],\" wybranych termin(ów)? Terminy z zamówieniami zostaną pominięte. Tej operacji nie można cofnąć.\"],\"vu7gDm\":\"Usuń partnera\",\"KZN4Lc\":\"Usuń wszystko\",\"6EkaOO\":\"Usuń termin\",\"io0G93\":\"Usuń wydarzenie\",\"+jw/c1\":\"Usuń obraz\",\"hdyeZ0\":\"Usuń zadanie\",\"xxjZeP\":\"Usuń lokalizację\",\"sY3tIw\":\"Usuń organizatora\",\"UBv8UK\":\"Usuń trwale\",\"dPyJ15\":\"Usuń szablon\",\"mxsm1o\":\"Usunąć to pytanie? Tej akcji nie można cofnąć.\",\"snMaH4\":\"Usuń webhook\",\"LIZZLY\":[\"Usunięto \",[\"0\"],\" termin(ów)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Odznacz wszystko\",\"NvuEhl\":\"Elementy projektu\",\"H8kMHT\":\"Nie otrzymałeś kodu?\",\"G8KNgd\":\"Inna lokalizacja\",\"E/QGRL\":\"Wyłączone\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Odrzuć tę wiadomość\",\"BREO0S\":\"Wyświetl pole wyboru pozwalające klientom wyrazić zgodę na otrzymywanie komunikacji marketingowej od organizatora wydarzenia.\",\"pfa8F0\":\"Nazwa wyświetlana\",\"Kdpf90\":\"Nie zapomnij!\",\"352VU2\":\"Nie masz konta? <0>Zarejestruj się\",\"AXXqG+\":\"Darowizna\",\"DPfwMq\":\"Gotowe\",\"JoPiZ2\":\"Instrukcje dla obsługi wejścia\",\"2+O9st\":\"Pobierz raporty sprzedaży, uczestników i finansowe dla wszystkich zakończonych zamówień.\",\"eneWvv\":\"Wersja robocza\",\"Ts8hhq\":\"Ze względu na wysokie ryzyko spamu, musisz połączyć konto Stripe przed modyfikacją szablonów e-mail. To zapewnia, że wszyscy organizatorzy wydarzeń są zweryfikowani i odpowiedzialni.\",\"TnzbL+\":\"Ze względu na wysokie ryzyko spamu musisz połączyć konto Stripe, zanim będziesz mógł wysyłać wiadomości do uczestników.\\nMa to zapewnić, że wszyscy organizatorzy wydarzeń są zweryfikowani i odpowiedzialni.\",\"euc6Ns\":\"Duplikuj\",\"YueC+F\":\"Zduplikuj termin\",\"KRmTkx\":\"Duplikuj produkt\",\"Jd3ymG\":\"Czas trwania musi wynosić co najmniej 1 minutę.\",\"KIjvtr\":\"Holenderski\",\"22xieU\":\"np. 180 (3 godziny)\",\"/zajIE\":\"np. Sesja poranna\",\"SPKbfM\":\"np. Kup bilety, Zarejestruj się teraz\",\"fc7wGW\":\"np. Ważna aktualizacja dotycząca Twoich biletów\",\"54MPqC\":\"np. Standard, Premium, Enterprise\",\"3RQ81z\":\"Każda osoba otrzyma e-mail z zarezerwowanym miejscem do sfinalizowania zakupu.\",\"5oD9f/\":\"Wcześniej\",\"LTzmgK\":[\"Edytuj szablon \",[\"0\"]],\"v4+lcZ\":\"Edytuj partnera\",\"2iZEz7\":\"Edytuj odpowiedź\",\"t2bbp8\":\"Edytuj uczestnika\",\"etaWtB\":\"Edytuj szczegóły uczestnika\",\"+guao5\":\"Edytuj konfigurację\",\"1Mp/A4\":\"Edytuj termin\",\"m0ZqOT\":\"Edytuj lokalizację\",\"8oivFT\":\"Edytuj lokalizację\",\"vRWOrM\":\"Edytuj szczegóły zamówienia\",\"fW5sSv\":\"Edytuj webhook\",\"nP7CdQ\":\"Edytuj webhook\",\"MRZxAn\":\"Edytowane\",\"uBAxNB\":\"Edytor\",\"aqxYLv\":\"Edukacja\",\"iiWXDL\":\"Niepowodzenia kwalifikacji\",\"zPiC+q\":\"Kwalifikujące się listy zameldowań\",\"SiVstt\":\"E-mail i zaplanowane wiadomości\",\"V2sk3H\":\"E-mail i szablony\",\"hbwCKE\":\"Adres e-mail skopiowany do schowka\",\"dSyJj6\":\"Adresy e-mail nie pasują\",\"elW7Tn\":\"Treść e-mail\",\"ZsZeV2\":\"E-mail jest wymagany\",\"Be4gD+\":\"Podgląd e-mail\",\"6IwNUc\":\"Szablony e-mail\",\"H/UMUG\":\"Wymagane jest weryfikacja e-mail\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"E-mail zweryfikowany pomyślnie!\",\"FSN4TS\":\"Osadź widżet\",\"z9NkYY\":\"Widżet do osadzenia\",\"Qj0GKe\":\"Włącz samoobsługę uczestnika\",\"hEtQsg\":\"Włącz samoobsługę uczestnika domyślnie\",\"Upeg/u\":\"Włącz ten szablon do wysyłania e-maili\",\"7dSOhU\":\"Włącz listę oczekujących\",\"RxzN1M\":\"Włączony\",\"xDr/ct\":\"Koniec\",\"sGjBEq\":\"Data i czas zakończenia (opcjonalne)\",\"PKXt9R\":\"Data zakończenia musi być po dacie rozpoczęcia\",\"UmzbPa\":\"Data zakończenia sesji\",\"ZayGC7\":\"Zakończ w określonym dniu\",\"48Y16Q\":\"Czas zakończenia (opcjonalny)\",\"jpNdOC\":\"Godzina zakończenia sesji\",\"TbaYrr\":[\"Zakończone \",[\"0\"]],\"CFgwiw\":[\"Kończy się \",[\"0\"]],\"SqOIQU\":\"Wprowadź wartość pojemności lub wybierz bez limitu.\",\"h37gRz\":\"Wprowadź etykietę lub wybierz jej usunięcie.\",\"7YZofi\":\"Wprowadź temat i treść, aby zobaczyć podgląd\",\"khyScF\":\"Wprowadź czas przesunięcia.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Wprowadź e-mail partnera (opcjonalne)\",\"ARkzso\":\"Wprowadź nazwę partnera\",\"ej4L8b\":\"Wprowadź pojemność\",\"6KnyG0\":\"Wprowadź e-mail\",\"INDKM9\":\"Wprowadź temat e-mail...\",\"xUgUTh\":\"Wprowadź imię\",\"9/1YKL\":\"Wprowadź nazwisko\",\"VpwcSk\":\"Wprowadź nowe hasło\",\"kWg31j\":\"Wprowadź unikalny kod partnera\",\"C3nD/1\":\"Wprowadź swój e-mail\",\"VmXiz4\":\"Wprowadź swój e-mail, a wyślemy Ci instrukcje resetowania hasła.\",\"n9V+ps\":\"Wprowadź swoje imię\",\"IdULhL\":\"Wprowadź swój numer VAT wraz z kodem kraju, bez spacji (np. IE1234567A, DE123456789)\",\"o21Y+P\":\"wpisy\",\"X88/6w\":\"Wpisy pojawią się tutaj, gdy klienci dołączą do listy oczekujących na wyprzedane produkty.\",\"LslKhj\":\"Błąd ładowania logów\",\"VCNHvW\":\"Wydarzenie zarchiwizowane\",\"ZD0XSb\":\"Wydarzenie zostało pomyślnie zarchiwizowane\",\"WgD6rb\":\"Kategoria wydarzenia\",\"b46pt5\":\"Obraz okładki wydarzenia\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Wydarzenie utworzone\",\"1Hzev4\":\"Niestandardowy szablon wydarzenia\",\"7u9/DO\":\"Wydarzenie zostało pomyślnie usunięte\",\"imgKgl\":\"Opis wydarzenia\",\"kJDmsI\":\"Szczegóły wydarzenia\",\"m/N7Zq\":\"Pełny adres wydarzenia\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Lokalizacja wydarzenia\",\"PYs3rP\":\"Nazwa wydarzenia\",\"HhwcTQ\":\"Nazwa wydarzenia\",\"WZZzB6\":\"Nazwa wydarzenia jest wymagana\",\"Wd5CDM\":\"Nazwa wydarzenia powinna mieć mniej niż 150 znaków\",\"4JzCvP\":\"Wydarzenie niedostępne\",\"Gh9Oqb\":\"Nazwa organizatora wydarzenia\",\"mImacG\":\"Strona wydarzenia\",\"Hk9Ki/\":\"Wydarzenie zostało pomyślnie przywrócone\",\"JyD0LH\":\"Ustawienia wydarzenia\",\"cOePZk\":\"Czas wydarzenia\",\"e8WNln\":\"Strefa czasowa wydarzenia\",\"GeqWgj\":\"Strefa czasowa wydarzenia\",\"XVLu2v\":\"Tytuł wydarzenia\",\"OfmsI9\":\"Wydarzenie zbyt nowe\",\"4SILkp\":\"Sumy wydarzenia\",\"YDVUVl\":\"Typy wydarzeń\",\"+HeiVx\":\"Wydarzenie zaktualizowane\",\"4K2OjV\":\"Miejsce wydarzenia\",\"19j6uh\":\"Wydajność wydarzeń\",\"PC3/fk\":\"Wydarzenia rozpoczynające się w ciągu następnych 24 godzin\",\"nwiZdc\":[\"Co \",[\"0\"]],\"2LJU4o\":[\"Co \",[\"0\"],\" dni\"],\"yLiYx+\":[\"Co \",[\"0\"],\" miesięcy\"],\"nn9ice\":[\"Co \",[\"0\"],\" tygodni\"],\"Cdr8f9\":[\"Co \",[\"0\"],\" tygodni w \",[\"1\"]],\"GVEHRk\":[\"Co \",[\"0\"],\" lat\"],\"fTFfOK\":\"Każdy szablon e-mail musi zawierać przycisk wezwania do działania, który prowadzi do odpowiedniej strony\",\"BVinvJ\":\"Przykłady: \\\"Jak się o nas dowiedziałeś?\\\", \\\"Nazwa firmy na fakturze\\\"\",\"2hGPQG\":\"Przykłady: \\\"Rozmiar koszulki\\\", \\\"Preferencje posiłków\\\", \\\"Stanowisko\\\"\",\"qNuTh3\":\"Wyjątek\",\"M1RnFv\":\"Wygasłe\",\"kF8HQ7\":\"Eksportuj odpowiedzi\",\"2KAI4N\":\"Eksportuj CSV\",\"JKfSAv\":\"Eksport nie powiódł się. Spróbuj ponownie.\",\"SVOEsu\":\"Eksport rozpoczęty. Przygotowywanie pliku...\",\"wuyaZh\":\"Eksport pomyślny\",\"9bpUSo\":\"Eksportowanie partnerów\",\"jtrqH9\":\"Eksportowanie uczestników\",\"R4Oqr8\":\"Eksport zakończony. Pobieranie pliku...\",\"UlAK8E\":\"Eksportowanie zamówień\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Nie powiodło się\",\"8uOlgz\":\"Nie powiodło się o\",\"tKcbYd\":\"Nieudane zadania\",\"SsI9v/\":\"Nie udało się porzucić zamówienia. Spróbuj ponownie.\",\"LdPKPR\":\"Nie udało się przypisać konfiguracji\",\"PO0cfn\":\"Nie udało się anulować terminu\",\"YUX+f+\":\"Nie udało się anulować terminów\",\"SIHgVQ\":\"Nie udało się anulować wiadomości\",\"cEFg3R\":\"Nie udało się utworzyć partnera\",\"dVgNF1\":\"Nie udało się utworzyć konfiguracji\",\"fAoRRJ\":\"Nie udało się utworzyć harmonogramu\",\"U66oUa\":\"Nie udało się utworzyć szablonu\",\"aFk48v\":\"Nie udało się usunąć konfiguracji\",\"n1CYMH\":\"Nie udało się usunąć terminu\",\"KXv+Qn\":\"Nie udało się usunąć terminu. Mogą istnieć powiązane zamówienia.\",\"JJ0uRo\":\"Nie udało się usunąć terminów\",\"rgoBnv\":\"Nie udało się usunąć wydarzenia\",\"Zw6LWb\":\"Nie udało się usunąć zadania\",\"tq0abZ\":\"Nie udało się usunąć zadań\",\"2mkc3c\":\"Nie udało się usunąć organizatora\",\"vKMKnu\":\"Nie udało się usunąć pytania\",\"xFj7Yj\":\"Nie udało się usunąć szablonu\",\"jo3Gm6\":\"Nie udało się wyeksportować partnerów\",\"Jjw03p\":\"Nie udało się wyeksportować uczestników\",\"ZPwFnN\":\"Nie udało się wyeksportować zamówień\",\"zGE3CH\":\"Nie udało się wyeksportować raportu. Spróbuj ponownie.\",\"lS9/aZ\":\"Nie udało się załadować odbiorców\",\"X4o0MX\":\"Nie udało się załadować webhooka\",\"ETcU7q\":\"Nie udało się zaoferować miejsca\",\"5670b9\":\"Nie udało się zaoferować biletów\",\"e5KIbI\":\"Nie udało się reaktywować terminu\",\"7zyx8a\":\"Nie udało się usunąć z listy oczekujących\",\"A/P7PX\":\"Nie udało się usunąć nadpisania\",\"ogWc1z\":\"Nie udało się ponownie otworzyć daty\",\"0+iwE5\":\"Nie udało się zmienić kolejności pytań\",\"EJPAcd\":\"Nie udało się ponownie wysłać potwierdzenia zamówienia\",\"DjSbj3\":\"Nie udało się ponownie wysłać biletu\",\"YQ3QSS\":\"Nie udało się ponownie wysłać kodu weryfikacyjnego\",\"wDioLj\":\"Nie udało się ponowić zadania\",\"DKYTWG\":\"Nie udało się ponowić zadań\",\"WRREqF\":\"Nie udało się zapisać nadpisania\",\"sj/eZA\":\"Nie udało się zapisać nadpisania ceny\",\"780n8A\":\"Nie udało się zapisać ustawień produktu\",\"zTkTF3\":\"Nie udało się zapisać szablonu\",\"l6acRV\":\"Nie udało się zapisać ustawień VAT. Spróbuj ponownie.\",\"T6B2gk\":\"Nie udało się wysłać wiadomości. Spróbuj ponownie.\",\"lKh069\":\"Nie udało się rozpocząć zadania eksportu\",\"t/KVOk\":\"Nie udało się rozpocząć personifikacji. Spróbuj ponownie.\",\"QXgjH0\":\"Nie udało się zatrzymać personifikacji. Spróbuj ponownie.\",\"i0QKrm\":\"Nie udało się zaktualizować partnera\",\"NNc33d\":\"Nie udało się zaktualizować odpowiedzi.\",\"E9jY+o\":\"Nie udało się zaktualizować uczestnika\",\"uQynyf\":\"Nie udało się zaktualizować konfiguracji\",\"i2PFQJ\":\"Nie udało się zaktualizować statusu wydarzenia\",\"EhlbcI\":\"Nie udało się zaktualizować poziomu wiadomości\",\"rpGMzC\":\"Nie udało się zaktualizować zamówienia\",\"T2aCOV\":\"Nie udało się zaktualizować statusu organizatora\",\"Eeo/Gy\":\"Nie udało się zaktualizować ustawienia\",\"kqA9lY\":\"Nie udało się zaktualizować ustawień VAT\",\"7/9RFs\":\"Nie udało się przesłać obrazu.\",\"nkNfWu\":\"Nie udało się przesłać obrazu. Spróbuj ponownie.\",\"rxy0tG\":\"Nie udało się zweryfikować adresu e-mail\",\"QRUpCk\":\"Rodzina\",\"5LO38w\":\"Szybkie wypłaty na konto bankowe\",\"4lgLew\":\"Luty\",\"9bHCo2\":\"Waluta opłaty\",\"/sV91a\":\"Obsługa opłat\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Opłaty ominięte\",\"cf35MA\":\"Festiwal\",\"pAey+4\":\"Plik jest zbyt duży. Maksymalny rozmiar to 5 MB.\",\"VejKUM\":\"Najpierw wypełnij swoje dane powyżej\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filtruj uczestników\",\"8OvVZZ\":\"Filtruj uczestników\",\"N/H3++\":\"Filtruj według daty\",\"mvrlBO\":\"Filtruj według wydarzenia\",\"g+xRXP\":\"Dokończ konfigurację Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"Pierwszy\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Pierwszy uczestnik\",\"4pwejF\":\"Imię jest wymagane\",\"3lkYdQ\":\"Stała opłata\",\"6bBh3/\":\"Opłata stała\",\"zWqUyJ\":\"Stała opłata pobierana za transakcję\",\"LWL3Bs\":\"Opłata stała musi wynosić 0 lub więcej\",\"0RI8m4\":\"Lampa wyłączona\",\"q0923e\":\"Lampa włączona\",\"lWxAUo\":\"Jedzenie i napoje\",\"nFm+5u\":\"Tekst stopki\",\"a8nooQ\":\"Czwarty\",\"mob/am\":\"Pt\",\"wtuVU4\":\"Częstotliwość\",\"xVhQZV\":\"Pt\",\"39y5bn\":\"Piątek\",\"f5UbZ0\":\"Pełna własność danych\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Pełny zwrot\",\"UsIfa8\":\"Pełny rozpoznany adres\",\"PGQLdy\":\"przyszłe\",\"8N/j1s\":\"Tylko przyszłe terminy\",\"yRx/6K\":\"Przyszłe terminy zostaną skopiowane z pojemnością ustawioną na zero\",\"T02gNN\":\"Wstęp ogólny\",\"3ep0Gx\":\"Ogólne informacje o organizatorze\",\"ziAjHi\":\"Generuj\",\"exy8uo\":\"Generuj kod\",\"4CETZY\":\"Uzyskaj wskazówki\",\"pjkEcB\":\"Otrzymaj wypłatę\",\"lGYzP6\":\"Odbieraj płatności przez Stripe\",\"ZDIydz\":\"Zacznij\",\"u6FPxT\":\"Zdobądź bilety\",\"8KDgYV\":\"Przygotuj swoje wydarzenie\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Wstecz\",\"oNL5vN\":\"Przejdź do strony wydarzenia\",\"gHSuV/\":\"Przejdź do strony głównej\",\"8+Cj55\":\"Przejdź do harmonogramu\",\"6nDzTl\":\"Dobra czytelność\",\"76gPWk\":\"Rozumiem\",\"aGWZUr\":\"Przychód brutto\",\"n8IUs7\":\"Przychód brutto\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Zarządzanie gośćmi\",\"NUsTc4\":\"Trwa teraz\",\"kTSQej\":[\"Cześć \",[\"0\"],\", zarządzaj swoją platformą stąd.\"],\"dORAcs\":\"Oto wszystkie bilety powiązane z Twoim adresem e-mail.\",\"g+2103\":\"Oto Twój link partnerski\",\"bVsnqU\":\"Cześć,\",\"/iE8xx\":\"Opłata Hi.Events\",\"zppscQ\":\"Opłaty platformy Hi.Events i podział VAT według transakcji\",\"D+zLDD\":\"Ukryty\",\"DRErHC\":\"Ukryte przed uczestnikami - widoczne tylko dla organizatorów\",\"NNnsM0\":\"Ukryj opcje zaawansowane\",\"P+5Pbo\":\"Ukryj odpowiedzi\",\"VMlRqi\":\"Ukryj szczegóły\",\"FmogyU\":\"Ukryj opcje\",\"gtEbeW\":\"Wyróżnij\",\"NF8sdv\":\"Wiadomość wyróżniająca\",\"MXSqmS\":\"Wyróżnij ten produkt\",\"7ER2sc\":\"Wyróżniony\",\"sq7vjE\":\"Wyróżnione produkty będą miały inny kolor tła, aby wyróżnić się na stronie wydarzenia.\",\"1+WSY1\":\"Hobby\",\"yY8wAv\":\"Godziny\",\"sy9anN\":\"Jak długo klient ma na sfinalizowanie zakupu po otrzymaniu oferty. Pozostaw puste, aby nie było limitu czasu.\",\"n2ilNh\":\"Jak długo trwa harmonogram?\",\"DMr2XN\":\"Jak często?\",\"AVpmAa\":\"Jak płacić offline\",\"cceMns\":\"W jaki sposób VAT jest naliczany do opłat platformy, którymi Cię obciążamy.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Węgierski\",\"8Wgd41\":\"Potwierdzam swoje obowiązki jako administratora danych\",\"O8m7VA\":\"Zgadzam się na otrzymywanie powiadomień e-mail związanych z tym wydarzeniem\",\"YLgdk5\":\"Potwierdzam, że jest to wiadomość transakcyjna związana z tym wydarzeniem\",\"4/kP5a\":\"Jeśli nowa karta nie otworzyła się automatycznie, kliknij przycisk poniżej, aby kontynuować płatność.\",\"W/eN+G\":\"Jeśli puste, adres zostanie użyty do wygenerowania linku Google Maps\",\"iIEaNB\":\"Jeśli masz konto u nas, otrzymasz e-mail z instrukcjami dotyczącymi resetowania hasła.\",\"an5hVd\":\"Obrazy\",\"tSVr6t\":\"Podszywaj się\",\"TWXU0c\":\"Podszywaj się pod użytkownika\",\"5LAZwq\":\"Podszywanie się rozpoczęte\",\"IMwcdR\":\"Podszywanie się zatrzymane\",\"0I0Hac\":\"Ważne ogłoszenie\",\"yD3avI\":\"Ważne: Zmiana adresu e-mail zaktualizuje link do dostępu do tego zamówienia. Po zapisaniu zostaniesz przekierowany do nowego linku zamówienia.\",\"jT142F\":[\"Za \",[\"diffHours\"],\" godzin\"],\"OoSyqO\":[\"Za \",[\"diffMinutes\"],\" minut\"],\"PdMhEx\":[\"w ciągu ostatnich \",[\"0\"],\" min\"],\"u7r0G5\":\"Osobiście — ustaw miejsce\",\"Ip0hl5\":\"stacjonarne, online, nieustawione lub mieszane\",\"F1Xp97\":\"Pojedynczy uczestnicy\",\"85e6zs\":\"Wstaw token Liquid\",\"38KFY0\":\"Wstaw zmienną\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Natychmiastowe wypłaty Stripe\",\"nbfdhU\":\"Integracje\",\"I8eJ6/\":\"Wewnętrzne notatki na bilecie uczestnika\",\"B2Tpo0\":\"Nieprawidłowy e-mail\",\"5tT0+u\":\"Nieprawidłowy format e-maila\",\"f9WRpE\":\"Nieprawidłowy typ pliku. Prześlij obraz.\",\"tnL+GP\":\"Nieprawidłowa składnia Liquid. Popraw ją i spróbuj ponownie.\",\"N9JsFT\":\"Nieprawidłowy format numeru VAT\",\"g+lLS9\":\"Zaproś członka zespołu\",\"1z26sk\":\"Zaproś członka zespołu\",\"KR0679\":\"Zaproś członków zespołu\",\"aH6ZIb\":\"Zaproś swój zespół\",\"IuMGvq\":\"Faktura\",\"Lj7sBL\":\"Włoski\",\"F5/CBH\":\"przedmiot(y)\",\"BzfzPK\":\"Przedmioty\",\"rjyWPb\":\"Styczeń\",\"KmWyx0\":\"Zadanie\",\"o5r6b2\":\"Zadanie usunięte\",\"cd0jIM\":\"Szczegóły zadania\",\"ruJO57\":\"Nazwa zadania\",\"YZi+Hu\":\"Zadanie w kolejce do ponowienia\",\"nCywLA\":\"Dołącz z dowolnego miejsca\",\"SNzppu\":\"Dołącz do listy oczekujących\",\"dLouFI\":[\"Dołącz do listy oczekujących dla \",[\"productDisplayName\"]],\"2gMuHR\":\"Dołączono\",\"u4ex5r\":\"Lipiec\",\"zeEQd/\":\"Czerwiec\",\"MxjCqk\":\"Szukasz tylko swoich biletów?\",\"xOTzt5\":\"przed chwilą\",\"0RihU9\":\"Właśnie się zakończyło\",\"lB2hSG\":[\"Informuj mnie o nowościach i wydarzeniach od \",[\"0\"]],\"ioFA9i\":\"Zachowaj zysk.\",\"4Sffp7\":\"Etykieta dla sesji\",\"o66QSP\":\"aktualizacje etykiety\",\"RtKKbA\":\"Ostatni\",\"DruLRc\":\"Ostatnie 14 dni\",\"ve9JTU\":\"Nazwisko jest wymagane\",\"h0Q9Iw\":\"Ostatnia odpowiedź\",\"gw3Ur5\":\"Ostatnio uruchomiony\",\"FIq1Ba\":\"Później\",\"xvnLMP\":\"Ostatnie odprawy\",\"pzAivY\":\"Szerokość geograficzna rozpoznanej lokalizacji\",\"N5TErv\":\"Pozostaw puste dla braku limitu\",\"L/hDDD\":\"Pozostaw puste, aby zastosować tę listę odpraw do wszystkich sesji\",\"9Pf3wk\":\"Pozostaw włączone, aby obejmowało każdy bilet wydarzenia. Wyłącz, aby wybrać konkretne bilety.\",\"Hq2BzX\":\"Powiadom ich o zmianie\",\"+uexiy\":\"Powiadom ich o zmianach\",\"exYcTF\":\"Biblioteka\",\"1njn7W\":\"Jasny\",\"1qY5Ue\":\"Link wygasł lub jest nieprawidłowy\",\"+zSD/o\":\"Link do strony głównej wydarzenia\",\"psosdY\":\"Link do szczegółów zamówienia\",\"6JzK4N\":\"Link do biletu\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Linki dozwolone\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Widok listy\",\"dF6vP6\":\"Na żywo\",\"fpMs2Z\":\"NA ŻYWO\",\"D9zTjx\":\"Wydarzenia na żywo\",\"C33p4q\":\"Załadowane terminy\",\"WdmJIX\":\"Ładowanie podglądu...\",\"IoDI2o\":\"Ładowanie tokenów...\",\"G3Ge9Z\":\"Ładowanie logów webhooka...\",\"NFxlHW\":\"Ładowanie webhooków\",\"E0DoRM\":\"Lokalizacja usunięta\",\"NtLHT3\":\"Sformatowany adres lokalizacji\",\"h4vxDc\":\"Szerokość geograficzna lokalizacji\",\"f2TMhR\":\"Długość geograficzna lokalizacji\",\"lnCo2f\":\"Tryb lokalizacji\",\"8pmGFk\":\"Nazwa lokalizacji\",\"7w8lJU\":\"Lokalizacja zapisana\",\"YsRXDD\":\"Lokalizacja zaktualizowana\",\"A/kIva\":\"aktualizacje lokalizacji\",\"VppBoU\":\"Lokalizacje\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo i okładka\",\"gddQe0\":\"Logo i obraz okładki dla Twojego organizatora\",\"TBEnp1\":\"Logo będzie wyświetlane w nagłówku\",\"Jzu30R\":\"Logo będzie wyświetlane na bilecie\",\"zKTMTg\":\"Długość geograficzna rozpoznanej lokalizacji\",\"PSRm6/\":\"Znajdź moje bilety\",\"yJFu/X\":\"Biuro główne\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Zarządzaj \",[\"0\"]],\"wZJfA8\":\"Zarządzaj terminami i godzinami swojego cyklicznego wydarzenia\",\"RlzPUE\":\"Zarządzaj w Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Zarządzaj harmonogramem\",\"zXuaxY\":\"Zarządzaj listą oczekujących na swoim wydarzeniu, przeglądaj statystyki i oferuj bilety uczestnikom.\",\"BWTzAb\":\"Ręczne\",\"g2npA5\":\"Oferta ręczna\",\"hg6l4j\":\"Marzec\",\"pqRBOz\":\"Oznacz jako zweryfikowane (nadpisanie administratora)\",\"2L3vle\":\"Maks wiadomości / 24h\",\"Qp4HWD\":\"Maks odbiorców / wiadomość\",\"3JzsDb\":\"Maj\",\"agPptk\":\"Średni\",\"xDAtGP\":\"Wiadomość\",\"bECJqy\":\"Wiadomość zatwierdzona pomyślnie\",\"1jRD0v\":\"Wyślij wiadomość do uczestników z konkretnymi biletami\",\"uQLXbS\":\"Wiadomość anulowana\",\"48rf3i\":\"Wiadomość nie może przekraczać 5000 znaków\",\"ZPj0Q8\":\"Szczegóły wiadomości\",\"Vjat/X\":\"Wiadomość jest wymagana\",\"0/yJtP\":\"Wyślij wiadomość do właścicieli zamówień z konkretnymi produktami\",\"saG4At\":\"Wiadomość zaplanowana\",\"mFdA+i\":\"Poziom wiadomości\",\"v7xKtM\":\"Poziom wiadomości zaktualizowany pomyślnie\",\"H9HlDe\":\"minut\",\"agRWc1\":\"Minuty\",\"YYzBv9\":\"Pn\",\"zz/Wd/\":\"Tryb\",\"fpMgHS\":\"Pn\",\"hty0d5\":\"Poniedziałek\",\"JbIgPz\":\"Wartości pieniężne są przybliżonymi sumami we wszystkich walutach\",\"qvF+MT\":\"Monitoruj i zarządzaj nieudanymi zadaniami w tle\",\"kY2ll9\":\"miesiąc\",\"HajiZl\":\"Miesiąc\",\"+8Nek/\":\"Miesięcznie\",\"1LkxnU\":\"Wzorzec miesięczny\",\"6jefe3\":\"miesiące\",\"f8jrkd\":\"więcej\",\"JcD7qf\":\"Więcej akcji\",\"w36OkR\":\"Najczęściej oglądane wydarzenia (ostatnie 14 dni)\",\"+Y/na7\":\"Przesuń wszystkie terminy wcześniej lub później\",\"3DIpY0\":\"Wiele lokalizacji\",\"g9cQCP\":\"Wiele typów biletów\",\"GfaxEk\":\"Muzyka\",\"oVGCGh\":\"Moje bilety\",\"8/brI5\":\"Nazwa jest wymagana\",\"sFFArG\":\"Nazwa musi mieć mniej niż 255 znaków\",\"sCV5Yc\":\"Nazwa wydarzenia\",\"xxU3NX\":\"Dochód netto\",\"7I8LlL\":\"Nowa pojemność\",\"n1GRql\":\"Nowa etykieta\",\"y0Fcpd\":\"Nowa lokalizacja\",\"ArHT/C\":\"Nowe rejestracje\",\"uK7xWf\":\"Nowa godzina:\",\"veT5Br\":\"Następna sesja\",\"WXtl5X\":[\"Następna: \",[\"nextFormatted\"]],\"eWRECP\":\"Życie nocne\",\"HSw5l3\":\"Nie - jestem osobą prywatną lub firmą niezarejestrowaną na VAT\",\"VHfLAW\":\"Brak kont\",\"+jIeoh\":\"Nie znaleziono kont\",\"074+X8\":\"Brak aktywnych webhooków\",\"zxnup4\":\"Brak partnerów do wyświetlenia\",\"Dwf4dR\":\"Brak pytań dla uczestników jeszcze\",\"th7rdT\":\"Brak uczestników\",\"PKySlW\":\"Brak uczestników dla tego terminu.\",\"/UC6qk\":\"Nie znaleziono danych atrybucji\",\"E2vYsO\":\"Stripe nie zgłosił jeszcze żadnych możliwości.\",\"amMkpL\":\"Brak miejsc\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Brak dostępnych list zameldowań dla tego wydarzenia.\",\"wG+knX\":\"Brak odpraw\",\"+dAKxg\":\"Nie znaleziono konfiguracji\",\"LiLk8u\":\"Brak dostępnych połączeń\",\"eb47T5\":\"Nie znaleziono danych dla wybranych filtrów. Spróbuj dostosować zakres dat lub walutę.\",\"lFVUyx\":\"Brak listy odpraw przypisanej do terminu\",\"I8mtzP\":\"Brak dostępnych terminów w tym miesiącu. Spróbuj przejść do innego miesiąca.\",\"yDukIL\":\"Brak terminów pasujących do aktualnych filtrów.\",\"B7phdj\":\"Brak terminów pasujących do filtrów\",\"/ZB4Um\":\"Brak terminów pasujących do wyszukiwania\",\"gEdNe8\":\"Nie zaplanowano jeszcze żadnych terminów\",\"27GYXJ\":\"Nie zaplanowano żadnych terminów.\",\"pZNOT9\":\"Brak daty zakończenia\",\"dW40Uz\":\"Nie znaleziono wydarzeń\",\"8pQ3NJ\":\"Brak wydarzeń rozpoczynających się w ciągu następnych 24 godzin\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Brak nieudanych zadań\",\"EpvBAp\":\"Brak faktury\",\"XZkeaI\":\"Nie znaleziono logów\",\"nrSs2u\":\"Nie znaleziono wiadomości\",\"Rj99yx\":\"Brak dostępnych sesji\",\"IFU1IG\":\"Brak sesji w tym dniu\",\"OVFwlg\":\"Brak pytań dotyczących zamówienia jeszcze\",\"EJ7bVz\":\"Nie znaleziono zamówień\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Brak zamówień dla tego terminu.\",\"wUv5xQ\":\"Brak aktywności organizatora w ciągu ostatnich 14 dni\",\"vLd1tV\":\"Brak dostępnego kontekstu organizatora.\",\"B7w4KY\":\"Brak innych dostępnych organizatorów\",\"PChXMe\":\"Brak opłaconych zamówień\",\"6jYQGG\":\"Brak przeszłych wydarzeń\",\"CHzaTD\":\"Brak popularnych wydarzeń w ciągu ostatnich 14 dni\",\"zK/+ef\":\"Brak produktów dostępnych do wyboru\",\"M1/lXs\":\"Brak produktów skonfigurowanych dla tego wydarzenia.\",\"kY7XDn\":\"Żadne produkty nie mają wpisów na liście oczekujących\",\"wYiAtV\":\"Brak ostatnich rejestracji kont\",\"UW90md\":\"Nie znaleziono odbiorców\",\"QoAi8D\":\"Brak odpowiedzi\",\"JeO7SI\":\"Brak odpowiedzi\",\"EK/G11\":\"Brak odpowiedzi jeszcze\",\"7J5OKy\":\"Brak zapisanych lokalizacji\",\"wpCjcf\":\"Brak zapisanych lokalizacji. Pojawią się tutaj, gdy utworzysz wydarzenia z adresami.\",\"mPdY6W\":\"Brak sugestii\",\"3sRuiW\":\"Nie znaleziono biletów\",\"k2C0ZR\":\"Brak nadchodzących terminów\",\"yM5c0q\":\"Brak nadchodzących wydarzeń\",\"qpC74J\":\"Nie znaleziono użytkowników\",\"8wgkoi\":\"Brak oglądanych wydarzeń w ciągu ostatnich 14 dni\",\"Arzxc1\":\"Brak wpisów na liście oczekujących\",\"n5vdm2\":\"Żadne zdarzenia webhook nie zostały jeszcze zarejestrowane dla tego punktu końcowego. Zdarzenia pojawią się tutaj po ich wywołaniu.\",\"4GhX3c\":\"Brak webhooków\",\"4+am6b\":\"Nie, zostaw mnie tutaj\",\"4JVMUi\":\"nieedytowane\",\"Itw24Q\":\"Nie zameldowany\",\"x5+Lcz\":\"Nie zameldowany\",\"8n10sz\":\"Nie kwalifikuje się\",\"kLvU3F\":\"Powiadom uczestników i wstrzymaj sprzedaż\",\"t9QlBd\":\"Listopad\",\"kAREMN\":\"Liczba terminów do utworzenia\",\"6u1B3O\":\"Sesja\",\"mmoE62\":\"Sesja anulowana\",\"UYWXdN\":\"Data zakończenia sesji\",\"k7dZT5\":\"Godzina zakończenia sesji\",\"Opinaj\":\"Etykieta sesji\",\"V9flmL\":\"Harmonogram sesji\",\"NUTUUs\":\"strona harmonogramu sesji\",\"AT8UKD\":\"Data rozpoczęcia sesji\",\"Um8bvD\":\"Godzina rozpoczęcia sesji\",\"Kh3WO8\":\"Podsumowanie sesji\",\"byXCTu\":\"Sesje\",\"KATw3p\":\"Sesje (tylko przyszłe)\",\"85rTR2\":\"Sesje można skonfigurować po utworzeniu\",\"dzQfDY\":\"Październik\",\"BwJKBw\":\"z\",\"9h7RDh\":\"Zaproponuj\",\"EfK2O6\":\"Zaproponuj miejsce\",\"3sVRey\":\"Zaoferuj bilety\",\"2O7Ybb\":\"Limit czasu oferty\",\"1jUg5D\":\"Zaoferowano\",\"l+/HS6\":[\"Oferty wygasają po \",[\"timeoutHours\"],\" godzinach.\"],\"lQgMLn\":\"Nazwa biura lub miejsca\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Płatność offline\",\"nO3VbP\":[\"W sprzedaży \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — podaj dane połączenia\",\"LuZBbx\":\"Online i stacjonarnie\",\"IXuOqt\":\"Online i stacjonarnie — zobacz harmonogram\",\"w3DG44\":\"Szczegóły połączenia online\",\"WjSpu5\":\"Wydarzenie online\",\"TP6jss\":\"Szczegóły połączenia dla wydarzenia online\",\"NdOxqr\":\"Tylko administratorzy konta mogą usuwać lub archiwizować wydarzenia. Skontaktuj się z administratorem swojego konta w celu uzyskania pomocy.\",\"rnoDMF\":\"Tylko administratorzy konta mogą usuwać lub archiwizować organizatorów. Skontaktuj się z administratorem swojego konta w celu uzyskania pomocy.\",\"bU7oUm\":\"Wysyłaj tylko do zamówień z tymi statusami\",\"M2w1ni\":\"Widoczne tylko z kodem promocyjnym\",\"y8Bm7C\":\"Otwórz odprawę\",\"RLz7P+\":\"Otwórz sesję\",\"cDSdPb\":\"Opcjonalny pseudonim wyświetlany w listach, np. \\\"Sala konferencyjna HQ\\\"\",\"HXMJxH\":\"Opcjonalny tekst dla zastrzeżeń, informacji kontaktowych lub notek z podziękowaniami (tylko jedna linia)\",\"L565X2\":\"opcje\",\"8m9emP\":\"lub dodaj pojedynczy termin\",\"dSeVIm\":\"zamówienie\",\"c/TIyD\":\"Zamówienie i bilet\",\"H5qWhm\":\"Zamówienie anulowane\",\"b6+Y+n\":\"Zamówienie zakończone\",\"x4MLWE\":\"Potwierdzenie zamówienia\",\"CsTTH0\":\"Potwierdzenie zamówienia zostało pomyślnie wysłane ponownie\",\"ppuQR4\":\"Zamówienie utworzone\",\"0UZTSq\":\"Waluta zamówienia\",\"xtQzag\":\"Szczegóły zamówienia\",\"HdmwrI\":\"Email zamówienia\",\"bwBlJv\":\"Imię zamówienia\",\"vrSW9M\":\"Zamówienie zostało anulowane i zwrócone. Właściciel zamówienia został powiadomiony.\",\"rzw+wS\":\"Posiadacze zamówień\",\"oI/hGR\":\"ID zamówienia\",\"Pc729f\":\"Zamówienie oczekuje na płatność offline\",\"F4NXOl\":\"Nazwisko zamówienia\",\"RQCXz6\":\"Limity zamówień\",\"SO9AEF\":\"Ustawione limity zamówień\",\"5RDEEn\":\"Lokalizacja zamówienia\",\"vu6Arl\":\"Zamówienie oznaczone jako opłacone\",\"sLbJQz\":\"Zamówienie nie znalezione\",\"kvYpYu\":\"Zamówienie nie znalezione\",\"i8VBuv\":\"Numer zamówienia\",\"eJ8SvM\":\"Numer, data zakupu, email kupującego\",\"FaPYw+\":\"Właściciel zamówienia\",\"eB5vce\":\"Właściciele zamówień z konkretnym produktem\",\"CxLoxM\":\"Właściciele zamówień z produktami\",\"DoH3fD\":\"Płatność zamówienia oczekuje\",\"UkHo4c\":\"Ref zamówienia\",\"EZy55F\":\"Zamówienie zwrócone\",\"6eSHqs\":\"Statusy zamówień\",\"oW5877\":\"Suma zamówienia\",\"e7eZuA\":\"Zamówienie zaktualizowane\",\"1SQRYo\":\"Zamówienie zostało pomyślnie zaktualizowane\",\"KndP6g\":\"URL zamówienia\",\"3NT0Ck\":\"Zamówienie zostało anulowane\",\"V5khLm\":\"zamówienia\",\"sd5IMt\":\"Zamówienia zakończone\",\"5It1cQ\":\"Zamówienia wyeksportowane\",\"tlKX/S\":\"Zamówienia obejmujące wiele terminów zostaną oznaczone do ręcznego przeglądu.\",\"UQ0ACV\":\"Suma zamówień\",\"B/EBQv\":\"Zamówienia:\",\"qtGTNu\":\"Konta organiczne\",\"ucgZ0o\":\"Organizacja\",\"P/JHA4\":\"Organizator został pomyślnie zarchiwizowany\",\"S3CZ5M\":\"Panel organizatora\",\"GzjTd0\":\"Organizator został pomyślnie usunięty\",\"Uu0hZq\":\"Email organizatora\",\"Gy7BA3\":\"Adres email organizatora\",\"SQqJd8\":\"Organizator nie znaleziony\",\"HF8Bxa\":\"Organizator został pomyślnie przywrócony\",\"wpj63n\":\"Ustawienia organizatora\",\"o1my93\":\"Aktualizacja statusu organizatora nie powiodła się. Spróbuj ponownie później\",\"rLHma1\":\"Status organizatora zaktualizowany\",\"LqBITi\":\"Zostanie użyty szablon organizatora/domyślny\",\"q4zH+l\":\"Organizatorzy\",\"/IX/7x\":\"Inne\",\"RsiDDQ\":\"Inne listy (bilet nie włączony)\",\"aDfajK\":\"Na świeżym powietrzu\",\"qMASRF\":\"Wiadomości wychodzące\",\"iCOVQO\":\"Nadpisz\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Nadpisz cenę\",\"cnVIpl\":\"Nadpisanie usunięte\",\"6/dCYd\":\"Przegląd\",\"6WdDG7\":\"Strona\",\"8uqsE5\":\"Strona nie jest już dostępna\",\"QkLf4H\":\"URL strony\",\"sF+Xp9\":\"Wyświetlenia strony\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Opłacone konta\",\"5F7SYw\":\"Częściowy zwrot\",\"fFYotW\":[\"Częściowo zwrócony: \",[\"0\"]],\"i8day5\":\"Przekaż opłatę kupującemu\",\"k4FLBQ\":\"Przekaż kupującemu\",\"Ff0Dor\":\"Przeszłe\",\"BFjW8X\":\"Zaległe\",\"xTPjSy\":\"Przeszłe wydarzenia\",\"/l/ckQ\":\"Wklej URL\",\"URAE3q\":\"Wstrzymany\",\"4fL/V7\":\"Zapłać\",\"OZK07J\":\"Zapłać, aby odblokować\",\"c2/9VE\":\"Ładunek\",\"5cxUwd\":\"Data płatności\",\"ENEPLY\":\"Metoda płatności\",\"8Lx2X7\":\"Płatność otrzymana\",\"fx8BTd\":\"Płatności niedostępne\",\"C+ylwF\":\"Wypłaty\",\"UbRKMZ\":\"Oczekujące\",\"UkM20g\":\"Oczekuje na recenzję\",\"dPYu1F\":\"Na uczestnika\",\"mQV/nJ\":\"na min\",\"VlXNyK\":\"Na zamówienie\",\"hauDFf\":\"Na bilet\",\"mnF83a\":\"Opłata procentowa\",\"TNLuRD\":\"Opłata procentowa (%)\",\"MixU2P\":\"Procent musi wynosić od 0 do 100\",\"MkuVAZ\":\"Procent kwoty transakcji\",\"/Bh+7r\":\"Wydajność\",\"fIp56F\":\"Trwale usuń to wydarzenie i wszystkie powiązane dane.\",\"nJeeX7\":\"Trwale usuń tego organizatora i wszystkie jego wydarzenia.\",\"wfCTgK\":\"Trwale usuń ten termin\",\"6kPk3+\":\"Informacje osobiste\",\"zmwvG2\":\"Telefon\",\"SdM+Q1\":\"Wybierz lokalizację\",\"tSR/oe\":\"Wybierz datę zakończenia\",\"e8kzpp\":\"Wybierz co najmniej jeden dzień miesiąca\",\"35C8QZ\":\"Wybierz co najmniej jeden dzień tygodnia\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Złożone\",\"wBJR8i\":\"Planujesz wydarzenie?\",\"J3lhKT\":\"Opłata platformy\",\"RD51+P\":[\"Opłata platformy \",[\"0\"],\" odjęta od Twojej wypłaty\"],\"br3Y/y\":\"Opłaty platformy\",\"3buiaw\":\"Raport opłat platformy\",\"kv9dM4\":\"Przychody platformy\",\"PJ3Ykr\":\"Sprawdź swój bilet pod kątem zaktualizowanej godziny. Twoje bilety są nadal ważne — nie musisz nic robić, chyba że nowe godziny Ci nie odpowiadają. Odpowiedz na ten e-mail w razie pytań.\",\"OtjenF\":\"Proszę podać prawidłowy adres e-mail\",\"jEw0Mr\":\"Wprowadź prawidłowy URL\",\"n8+Ng/\":\"Wprowadź 5-cyfrowy kod\",\"r+lQXT\":\"Wprowadź swój numer VAT\",\"Dvq0wf\":\"Podaj obraz.\",\"2cUopP\":\"Uruchom ponownie proces płatności.\",\"GoXxOA\":\"Wybierz datę i godzinę\",\"8KmsFa\":\"Wybierz zakres dat\",\"EFq6EG\":\"Wybierz obraz.\",\"fuwKpE\":\"Spróbuj ponownie.\",\"klWBeI\":\"Poczekaj przed żądaniem innego kodu\",\"hfHhaa\":\"Poczekaj, przygotowujemy Twoich partnerów do eksportu...\",\"o+tJN/\":\"Poczekaj, przygotowujemy Twoich uczestników do eksportu...\",\"+5Mlle\":\"Poczekaj, przygotowujemy Twoje zamówienia do eksportu...\",\"trnWaw\":\"Polski\",\"luHAJY\":\"Popularne wydarzenia (ostatnie 14 dni)\",\"p/78dY\":\"Pozycja\",\"TjX7xL\":\"Wiadomość po płatności\",\"OESu7I\":\"Zapobiegaj nadmiernej sprzedaży, dzieląc zapasy między wieloma typami biletów.\",\"NgVUL2\":\"Podgląd formularza płatności\",\"cs5muu\":\"Podgląd strony wydarzenia\",\"+4yRWM\":\"Cena biletu\",\"Jm2AC3\":\"Próg cenowy\",\"a5jvSX\":\"Poziomy cenowe\",\"ReihZ7\":\"Podgląd wydruku\",\"JnuPvH\":\"Drukuj bilet\",\"tYF4Zq\":\"Drukuj do PDF\",\"LcET2C\":\"Polityka prywatności\",\"8z6Y5D\":\"Przetwórz zwrot\",\"JcejNJ\":\"Przetwarzanie zamówienia\",\"EWCLpZ\":\"Produkt utworzony\",\"XkFYVB\":\"Produkt usunięty\",\"YMwcbR\":\"Sprzedaż produktów, przychody i podział podatków\",\"ls0mTC\":\"Nie można edytować ustawień produktu dla anulowanych terminów.\",\"2339ej\":\"Ustawienia produktu pomyślnie zapisane\",\"ldVIlB\":\"Produkt zaktualizowany\",\"CP3D8G\":\"Postęp\",\"JoKGiJ\":\"Kod promocyjny\",\"k3wH7i\":\"Użycie kodu promocyjnego i podział rabatów\",\"tZqL0q\":\"kody promocyjne\",\"oCHiz3\":\"Kody promocyjne\",\"uEhdRh\":\"Tylko promocyjne\",\"dLm8V5\":\"E-maile promocyjne mogą skutkować zawieszeniem konta\",\"XoEWtl\":\"Podaj co najmniej jedno pole adresu dla nowej lokalizacji.\",\"2W/7Gz\":\"Podaj poniższe informacje przed kolejną kontrolą Stripe, aby zachować płynność wypłat.\",\"aemBRq\":\"Dostawca\",\"EEYbdt\":\"Opublikuj\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Zakupiony\",\"JunetL\":\"Kupujący\",\"phmeUH\":\"Email kupującego\",\"ywR4ZL\":\"Odprawa przez kod QR\",\"oWXNE5\":\"Ilość\",\"biEyJ4\":\"Odpowiedzi\",\"k/bJj0\":\"Pytania zostały przeorganizowane\",\"b24kPi\":\"Kolejka\",\"lTPqpM\":\"Szybka wskazówka\",\"fqDzSu\":\"Stawka\",\"mnUGVC\":\"Przekroczono limit stawki. Spróbuj ponownie później.\",\"t41hVI\":\"Zaproponuj miejsce ponownie\",\"TNclgc\":\"Reaktywować ten termin? Zostanie ponownie otwarty dla przyszłej sprzedaży.\",\"uqoRbb\":\"Analityka w czasie rzeczywistym\",\"xzRvs4\":[\"Otrzymuj aktualizacje produktów od \",[\"0\"],\".\"],\"pLXbi8\":\"Ostatnie rejestracje kont\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Ostatni uczestnicy\",\"qhfiwV\":\"Ostatnie odprawy\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Ostatnie zamówienia\",\"7hPBBn\":\"odbiorca\",\"jp5bq8\":\"odbiorców\",\"yPrbsy\":\"Odbiorcy\",\"E1F5Ji\":\"Odbiorcy są dostępni po wysłaniu wiadomości\",\"wuhHPE\":\"Cykliczne\",\"asLqwt\":\"Wydarzenie cykliczne\",\"D0tAMe\":\"Wydarzenia cykliczne\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Przekierowywanie do Stripe...\",\"pnoTN5\":\"Konta poleceń\",\"ACKu03\":\"Odśwież podgląd\",\"vuFYA6\":\"Zwróć wszystkie zamówienia dla tych terminów\",\"4cRUK3\":\"Zwróć wszystkie zamówienia dla tego terminu\",\"fKn/k6\":\"Kwota zwrotu\",\"qY4rpA\":\"Zwrot nie powiódł się\",\"TspTcZ\":\"Zwrot wykonany\",\"FaK/8G\":[\"Zwróć zamówienie \",[\"0\"]],\"MGbi9P\":\"Zwrot oczekuje\",\"BDSRuX\":[\"Zwrócony: \",[\"0\"]],\"bU4bS1\":\"Zwroty\",\"rYXfOA\":\"Ustawienia regionalne\",\"5tl0Bp\":\"Pytania rejestracyjne\",\"ZNo5k1\":\"Pozostało\",\"EMnuA4\":\"Przypomnienie zaplanowane\",\"Bjh87R\":\"Usuń etykietę ze wszystkich terminów\",\"KkJtVK\":\"Otwórz ponownie dla nowej sprzedaży\",\"XJwWJp\":\"Otworzyć ponownie tę datę dla nowej sprzedaży? Wcześniej anulowane bilety nie zostaną przywrócone — dotknięci uczestnicy pozostaną anulowani, a wszelkie już wydane zwroty nie zostaną cofnięte.\",\"bAwDQs\":\"Powtarzaj co\",\"CQeZT8\":\"Raport nie znaleziony\",\"JEPMXN\":\"Poproś o nowy link\",\"TMLAx2\":\"Wymagane\",\"mdeIOH\":\"Wyślij ponownie kod\",\"sQxe68\":\"Wyślij ponownie potwierdzenie\",\"bxoWpz\":\"Wyślij ponownie email potwierdzenia\",\"G42SNI\":\"Wyślij ponownie email\",\"TTpXL3\":[\"Wyślij ponownie za \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Wyślij ponownie bilet\",\"Uwsg2F\":\"Zarezerwowane\",\"8wUjGl\":\"Zarezerwowane do\",\"a5z8mb\":\"Przywróć cenę bazową\",\"kCn6wb\":\"Resetowanie...\",\"404zLK\":\"Rozpoznana lokalizacja lub nazwa miejsca\",\"ZlCDf+\":\"Odpowiedź\",\"bsydMp\":\"Szczegóły odpowiedzi\",\"yKu/3Y\":\"Przywróć\",\"RokrZf\":\"Przywróć wydarzenie\",\"/JyMGh\":\"Przywróć organizatora\",\"HFvFRb\":\"Przywróć to wydarzenie, aby ponownie było widoczne.\",\"DDIcqy\":\"Przywróć tego organizatora i ponownie uczyń go aktywnym.\",\"mO8KLE\":\"wyniki\",\"6gRgw8\":\"Spróbuj ponownie\",\"1BG8ga\":\"Spróbuj ponownie wszystkie\",\"rDC+T6\":\"Spróbuj ponownie zadanie\",\"CbnrWb\":\"Wróć do wydarzenia\",\"mdQ0zb\":\"Wielokrotnego użytku miejsca dla Twoich wydarzeń. Lokalizacje utworzone z autouzupełniania są tutaj zapisywane automatycznie.\",\"XFOPle\":\"Użyj ponownie\",\"1Zehp4\":\"Użyj ponownie połączenia Stripe innego organizatora w tym koncie.\",\"Oo/PLb\":\"Podsumowanie przychodów\",\"O/8Ceg\":\"Przychód dzisiaj\",\"CfuueU\":\"Cofnij ofertę\",\"RIgKv+\":\"Trwaj do konkretnej daty\",\"JYRqp5\":\"So\",\"dFFW9L\":[\"Sprzedaż zakończona \",[\"0\"]],\"loCKGB\":[\"Sprzedaż kończy się \",[\"0\"]],\"wlfBad\":\"Okres sprzedaży\",\"qi81Jg\":\"Daty okresu sprzedaży dotyczą wszystkich terminów w Twoim harmonogramie. Aby kontrolować ceny i dostępność dla poszczególnych terminów, użyj nadpisań na <0>stronie harmonogramu sesji.\",\"5CDM6r\":\"Ustawiony okres sprzedaży\",\"ftzaMf\":\"Okres sprzedaży, limity zamówień, widoczność\",\"zpekWp\":[\"Sprzedaż rozpoczyna się \",[\"0\"]],\"mUv9U4\":\"Sprzedaż\",\"9KnRdL\":\"Sprzedaż jest wstrzymana\",\"JC3J0k\":\"Sprzedaż, frekwencja i podział odpraw na sesję\",\"3VnlS9\":\"Sprzedaż, zamówienia i metryki wydajności dla wszystkich wydarzeń\",\"3Q1AWe\":\"Sprzedaż:\",\"LeuERW\":\"Tak samo jak wydarzenie\",\"B4nE3N\":\"Przykładowa cena biletu\",\"8BRPoH\":\"Przykładowa Sala\",\"PiK6Ld\":\"So\",\"+5kO8P\":\"Sobota\",\"zJiuDn\":\"Zapisz nadpisanie opłaty\",\"NB8Uxt\":\"Zapisz harmonogram\",\"KZrfYJ\":\"Zapisz linki społeczne\",\"9Y3hAT\":\"Zapisz szablon\",\"C8ne4X\":\"Zapisz projekt biletu\",\"cTI8IK\":\"Zapisz ustawienia VAT\",\"6/TNCd\":\"Zapisz ustawienia VAT\",\"4RvD9q\":\"Zapisana lokalizacja\",\"cgw0cL\":\"Zapisane lokalizacje\",\"lvSrsT\":\"Zapisane lokalizacje\",\"Fbqm/I\":\"Zapisanie nadpisania tworzy dedykowaną konfigurację dla tego organizatora, jeśli aktualnie używa domyślnych ustawień systemowych.\",\"I+FvbD\":\"Skanuj\",\"0zd6Nm\":\"Zeskanuj bilet, aby zameldować uczestnika\",\"bQG7Qk\":\"Zeskanowane bilety pojawią się tutaj\",\"WDYSLJ\":\"Tryb skanera\",\"gmB6oO\":\"Harmonogram\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Harmonogram pomyślnie utworzony\",\"YP7frt\":\"Harmonogram kończy się\",\"QS1Nla\":\"Zaplanuj na później\",\"NAzVVw\":\"Zaplanuj wiadomość\",\"Fz09JP\":\"Harmonogram rozpoczyna się\",\"4ba0NE\":\"Zaplanowane\",\"qcP/8K\":\"Zaplanowany czas\",\"A1taO8\":\"Szukaj\",\"ftNXma\":\"Szukaj partnerów...\",\"VMU+zM\":\"Szukaj uczestników\",\"VY+Bdn\":\"Szukaj po nazwie konta lub e-mailu...\",\"VX+B3I\":\"Szukaj po tytule wydarzenia lub organizatorze...\",\"R0wEyA\":\"Szukaj po nazwie zadania lub wyjątku...\",\"VT+urE\":\"Szukaj po nazwie lub e-mailu...\",\"GHdjuo\":\"Szukaj po nazwie, e-mailu lub koncie...\",\"4mBFO7\":\"Szukaj po imieniu, nr zamówienia, nr biletu lub emailu\",\"20ce0U\":\"Szukaj po identyfikatorze zamówienia, nazwie klienta lub e-mailu...\",\"4DSz7Z\":\"Szukaj po temacie, wydarzeniu lub koncie...\",\"nQC7Z9\":\"Szukaj terminów...\",\"iRtEpV\":\"Szukaj terminów…\",\"JRM7ao\":\"Wyszukaj adres\",\"BWF1kC\":\"Szukaj wiadomości...\",\"3aD3GF\":\"Sezonowe\",\"ku//5b\":\"Drugi\",\"Mck5ht\":\"Bezpieczne potwierdzenie\",\"s7tXqF\":\"Zobacz harmonogram\",\"JFap6u\":\"Zobacz, czego Stripe jeszcze potrzebuje\",\"p7xUrt\":\"Wybierz kategorię\",\"hTKQwS\":\"Wybierz datę i godzinę\",\"e4L7bF\":\"Wybierz wiadomość, aby zobaczyć jej treść\",\"zPRPMf\":\"Wybierz poziom\",\"uqpVri\":\"Wybierz godzinę\",\"BFRSTT\":\"Wybierz konto\",\"wgNoIs\":\"Zaznacz wszystko\",\"mCB6Je\":\"Zaznacz wszystko\",\"aCEysm\":[\"Zaznacz wszystko w \",[\"0\"]],\"a6+167\":\"Wybierz wydarzenie\",\"CFbaPk\":\"Wybierz grupę uczestników\",\"88a49s\":\"Wybierz kamerę\",\"tVW/yo\":\"Wybierz walutę\",\"SJQM1I\":\"Wybierz datę\",\"n9ZhRa\":\"Wybierz datę i czas zakończenia\",\"gTN6Ws\":\"Wybierz czas zakończenia\",\"0U6E9W\":\"Wybierz kategorię wydarzenia\",\"j9cPeF\":\"Wybierz typy wydarzeń\",\"ypTjHL\":\"Wybierz sesję\",\"KizCK7\":\"Wybierz datę i czas rozpoczęcia\",\"dJZTv2\":\"Wybierz czas rozpoczęcia\",\"x8XMsJ\":\"Wybierz poziom wiadomości dla tego konta. To kontroluje limity wiadomości i uprawnienia do łączy.\",\"aT3jZX\":\"Wybierz strefę czasową\",\"TxfvH2\":\"Wybierz, którzy uczestnicy powinni otrzymać tę wiadomość\",\"Ropvj0\":\"Wybierz, które wydarzenia spowodują ten webhook\",\"+6YAwo\":\"zaznaczone\",\"ylXj1N\":\"Wybrane\",\"uq3CXQ\":\"Wyprzedaj swoje wydarzenie.\",\"j9b/iy\":\"Szybko się sprzedaje 🔥\",\"73qYgo\":\"Wyślij jako test\",\"HMAqFK\":\"Wysyłaj e-maile do uczestników, posiadaczy biletów lub właścicieli zamówień. Wiadomości mogą być wysłane natychmiast lub zaplanowane na później.\",\"22Itl6\":\"Wyślij mi kopię\",\"NpEm3p\":\"Wyślij teraz\",\"nOBvex\":\"Wysyłaj w czasie rzeczywistym dane o zamówieniach i uczestnikach do swoich zewnętrznych systemów.\",\"1lNPhX\":\"Wyślij email powiadomienia o zwrocie\",\"eaUTwS\":\"Wyślij link resetowania\",\"5cV4PY\":\"Wyślij do wszystkich sesji lub wybierz konkretną\",\"QEQlnV\":\"Wyślij swoją pierwszą wiadomość\",\"3nMAVT\":\"Wysyłanie za 2d 4h\",\"IoAuJG\":\"Wysyłanie...\",\"h69WC6\":\"Wysłane\",\"BVu2Hz\":\"Wysłane przez\",\"ZFa8wv\":\"Wysyłane do uczestników, gdy zaplanowany termin zostanie anulowany\",\"SPdzrs\":\"Wysłane do klientów, gdy złożą zamówienie\",\"LxSN5F\":\"Wysłane do każdego uczestnika z jego szczegółami biletu\",\"hgvbYY\":\"Wrzesień\",\"5sN96e\":\"Sesja anulowana\",\"89xaFU\":\"Ustaw domyślne ustawienia opłat platformy dla nowych wydarzeń utworzonych pod tym organizatorem.\",\"eXssj5\":\"Ustaw domyślne ustawienia dla nowych wydarzeń utworzonych pod tym organizatorem.\",\"uPe5p8\":\"Ustaw, jak długo trwa każdy termin\",\"xNsRxU\":\"Ustaw liczbę terminów\",\"ODuUEi\":\"Ustaw lub wyczyść etykietę terminu\",\"buHACR\":\"Ustaw godzinę zakończenia każdego terminu na taki czas po jego rozpoczęciu.\",\"TaeFgl\":\"Ustaw na bez limitu (usuń limit)\",\"pd6SSe\":\"Skonfiguruj cykliczny harmonogram, aby automatycznie tworzyć terminy, lub dodawaj je pojedynczo.\",\"s0FkEx\":\"Ustaw listy odpraw dla różnych wejść, sesji lub dni.\",\"TaWVGe\":\"Skonfiguruj wypłaty\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Skonfiguruj harmonogram\",\"xMO+Ao\":\"Ustaw swoją organizację\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Skonfiguruj swój harmonogram\",\"ETC76A\":\"Ustaw, zmień lub usuń lokalizację lub dane online sesji\",\"C3htzi\":\"Ustawienie zaktualizowane\",\"Ohn74G\":\"Konfiguracja i projekt\",\"1W5XyZ\":\"Konfiguracja zajmuje tylko kilka minut — nie potrzebujesz istniejącego konta Stripe. Stripe obsługuje karty, portfele, regionalne metody płatności i ochronę przed oszustwami, więc Ty możesz skupić się na wydarzeniu.\",\"GG7qDw\":\"Udostępnij link partnera\",\"hL7sDJ\":\"Udostępnij stronę organizatora\",\"jy6QDF\":\"Zarządzanie wspólną pojemnością\",\"jDNHW4\":\"Przesuń godziny\",\"tPfIaW\":[\"Przesunięto godziny dla \",[\"count\"],\" termin(ów)\"],\"WwlM8F\":\"Pokaż opcje zaawansowane\",\"cMW+gm\":[\"Pokaż wszystkie platformy (\",[\"0\"],\" więcej z wartościami)\"],\"wXi9pZ\":\"Pokaż notatki niezalogowanym\",\"UVPI5D\":\"Pokaż mniej platform\",\"Eu/N/d\":\"Pokaż checkbox opt-in marketingu\",\"SXzpzO\":\"Pokaż checkbox opt-in marketingu domyślnie\",\"57tTk5\":\"Pokaż więcej terminów\",\"b33PL9\":\"Pokaż więcej platform\",\"Eut7p9\":\"Pokaż szczegóły niezalogowanym\",\"+RoWKN\":\"Pokaż odpowiedzi niezalogowanym\",\"t1LIQW\":[\"Wyświetlanie \",[\"0\"],\" z \",[\"totalRows\"],\" rekordów\"],\"E717U9\":[\"Wyświetlanie \",[\"0\"],\"–\",[\"1\"],\" z \",[\"2\"]],\"5rzhBQ\":[\"Wyświetlanie \",[\"MAX_VISIBLE\"],\" z \",[\"totalAvailable\"],\" terminów. Wpisz, aby wyszukać.\"],\"WSt3op\":[\"Wyświetlanie pierwszych \",[\"0\"],\" — pozostałe \",[\"1\"],\" sesja(e) nadal zostaną uwzględnione przy wysyłaniu wiadomości.\"],\"OJLTEL\":\"Pokazane przy pierwszym otwarciu strony.\",\"jVRHeq\":\"Zarejestrowany\",\"5C7J+P\":\"Pojedyncze wydarzenie\",\"E//btK\":\"Pomiń ręcznie edytowane terminy\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Społeczność\",\"d0rUsW\":\"Linki społeczne\",\"j/TOB3\":\"Linki społeczne i strona internetowa\",\"s9KGXU\":\"Sprzedane\",\"iACSrw\":\"Niektóre dane są ukryte w dostępie publicznym. Zaloguj się, aby zobaczyć wszystko.\",\"KTxc6k\":\"Coś poszło nie tak, spróbuj ponownie lub skontaktuj się z pomocą, jeśli problem będzie się powtarzać\",\"lkE00/\":\"Coś poszło nie tak. Spróbuj ponownie później.\",\"wdxz7K\":\"Źródło\",\"fDG2by\":\"Duchowość\",\"oPaRES\":\"Podziel odprawę według dni, stref lub typów biletów. Udostępnij link obsłudze — bez konta.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Instrukcje dla obsługi\",\"tXkhj/\":\"Początek\",\"JcQp9p\":\"Data i czas rozpoczęcia\",\"0m/ekX\":\"Data i czas rozpoczęcia\",\"izRfYP\":\"Data rozpoczęcia jest wymagana\",\"tuO4fV\":\"Data rozpoczęcia sesji\",\"2R1+Rv\":\"Czas rozpoczęcia wydarzenia\",\"2Olov3\":\"Godzina rozpoczęcia sesji\",\"n9ZrDo\":\"Zacznij wpisywać nazwę miejsca lub adres...\",\"qeFVhN\":[\"Rozpoczyna się za \",[\"diffDays\"],\" dni\"],\"AOqtxN\":[\"Rozpoczyna się za \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Rozpoczyna się za \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Rozpoczyna się za \",[\"seconds\"],\"s\"],\"NqChgF\":\"Rozpoczyna się jutro\",\"2NbyY/\":\"Statystyki\",\"GVUxAX\":\"Statystyki są oparte na dacie utworzenia konta\",\"29Hx9U\":\"Statystyki\",\"5ia+r6\":\"Nadal wymagane\",\"wuV0bK\":\"Zatrzymaj personifikację\",\"s/KaDb\":\"Stripe połączony\",\"Bk06QI\":\"Stripe połączony\",\"akZMv8\":[\"Skopiowano połączenie Stripe od \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe nie zwrócił linku konfiguracji. Spróbuj ponownie.\",\"aKtF0O\":\"Stripe nie połączony\",\"9i0++A\":\"Identyfikator płatności Stripe\",\"R1lIMV\":\"Stripe wkrótce poprosi o więcej informacji\",\"FzcCHA\":\"Stripe poprowadzi Cię przez kilka krótkich pytań, aby zakończyć konfigurację.\",\"eYbd7b\":\"Nd\",\"ii0qn/\":\"Temat jest wymagany\",\"M7Uapz\":\"Temat pojawi się tutaj\",\"6aXq+t\":\"Temat:\",\"JwTmB6\":\"Pomyślnie zduplikowany produkt\",\"WUOCgI\":\"Pomyślnie zaproponowano miejsce\",\"IvxA4G\":[\"Pomyślnie zaproponowano bilety \",[\"count\"],\" osobom\"],\"kKpkzy\":\"Pomyślnie zaproponowano bilety 1 osobie\",\"Zi3Sbw\":\"Pomyślnie usunięto z listy oczekujących\",\"RuaKfn\":\"Pomyślnie zaktualizowany adres\",\"kzx0uD\":\"Pomyślnie zaktualizowane domyślne ustawienia wydarzenia\",\"5n+Wwp\":\"Pomyślnie zaktualizowany organizator\",\"DMCX/I\":\"Pomyślnie zaktualizowane domyślne ustawienia opłat platformy\",\"URUYHc\":\"Pomyślnie zaktualizowane ustawienia opłat platformy\",\"0Dk/l8\":\"Pomyślnie zaktualizowane ustawienia SEO\",\"S8Tua9\":\"Ustawienia pomyślnie zaktualizowane\",\"MhOoLQ\":\"Pomyślnie zaktualizowane linki społeczne\",\"CNSSfp\":\"Ustawienia śledzenia pomyślnie zaktualizowane\",\"kj7zYe\":\"Pomyślnie zaktualizowany Webhook\",\"dXoieq\":\"Podsumowanie\",\"/RfJXt\":[\"Letni Festiwal Muzyki \",[\"0\"]],\"CWOPIK\":\"Letni Festiwal Muzyki 2025\",\"D89zck\":\"Nd\",\"DBC3t5\":\"Niedziela\",\"UaISq3\":\"Szwedzki\",\"JZTQI0\":\"Zmień organizatora\",\"9YHrNC\":\"Domyślnie systemowe\",\"lruQkA\":\"Dotknij ekranu, aby wznowić\",\"TJUrME\":[\"Docelowo uczestnicy z \",[\"0\"],\" wybranych sesji.\"],\"yT6dQ8\":\"Podatek zebrane pogrupowane po typie podatku i imprezie\",\"Ye321X\":\"Nazwa podatku\",\"WyCBRt\":\"Podsumowanie podatków\",\"GkH0Pq\":\"Zastosowane podatki i opłaty\",\"Rwiyt2\":\"Podatki skonfigurowane\",\"iQZff7\":\"Podatki, opłaty, widoczność, okres sprzedaży, wyłączenie produktu i limity zamówień\",\"SXvRWU\":\"Współpraca zespołowa\",\"vlf/In\":\"Technologia\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Powiedz ludziom czego się spodziewać na Twojej imprezie\",\"NiIUyb\":\"Powiedz nam o Twojej imprezie\",\"DovcfC\":\"Powiedz nam o Twojej organizacji. Informacja ta będzie wyświetlana na stronach Twoich imprez.\",\"69GWRq\":\"Powiedz nam, jak często powtarza się Twoje wydarzenie, a utworzymy dla Ciebie wszystkie terminy.\",\"mXPbwY\":\"Podaj swój status rejestracji VAT, abyśmy mogli zastosować właściwą obsługę VAT do opłat platformy.\",\"7wtpH5\":\"Szablon aktywny\",\"QHhZeE\":\"Szablon utworzony pomyślnie\",\"xrWdPR\":\"Szablon usunięty pomyślnie\",\"G04Zjt\":\"Szablon zapisany pomyślnie\",\"xowcRf\":\"Warunki korzystania z usługi\",\"6K0GjX\":\"Tekst może być trudny do przeczytania\",\"u0F1Ey\":\"Cz\",\"nm3Iz/\":\"Dziękujemy za udział!\",\"pYwj0k\":\"Dziękujemy,\",\"k3IitN\":\"To już koniec\",\"KfmPRW\":\"Kolor tła strony. W przypadku używania obrazu okładki jest on stosowany jako nakładka.\",\"MDNyJz\":\"Kod wygaśnie za 10 minut. Sprawdź folder spam, jeśli nie widzisz wiadomości e-mail.\",\"AIF7J2\":\"Waluta, w której zdefiniowana jest stała opłata. Zostanie przeliczona na walutę zamówienia przy finalizacji zakupu.\",\"MJm4Tq\":\"Waluta zamówienia\",\"cDHM1d\":\"Adres e-mail został zmieniony. Uczestnik otrzyma nowy bilet na zaktualizowany adres e-mail.\",\"I/NNtI\":\"Miejsce imprezy\",\"tXadb0\":\"Impreza, którą szukasz, nie jest dostępna w chwili obecnej. Mogła zostać usunięta, wygaśnięta lub adres URL może być nieprawidłowy.\",\"5fPdZe\":\"Pierwsza data, od której ten harmonogram będzie generowany.\",\"EBzPwC\":\"Pełny adres imprezy\",\"sxKqBm\":\"Pełna kwota zamówienia zostanie zwrócona do oryginalnej metody płatności klienta.\",\"KgDp6G\":\"Link, który próbujesz otworzyć, wygasł lub nie jest już ważny. Sprawdź swoją pocztę e-mail, aby uzyskać zaktualizowany link do zarządzania zamówieniem.\",\"5OmEal\":\"Język klienta\",\"Np4eLs\":[\"Maksimum to \",[\"MAX_PREVIEW\"],\" sesji. Zmniejsz zakres dat, częstotliwość lub liczbę sesji dziennie.\"],\"sYLeDq\":\"Organizator, którego szukasz, nie został znaleziony. Strona mogła być przeniesiona, usunięta lub adres URL może być nieprawidłowy.\",\"PCr4zw\":\"Nadpisanie jest zapisywane w dzienniku audytu zamówienia.\",\"C4nQe5\":\"Opłata platformy jest dodawana do ceny biletu. Kupujący płacą więcej, ale Ty otrzymujesz pełną cenę biletu.\",\"HxxXZO\":\"Podstawowy kolor marki używany na przyciskach i podświetleniach\",\"z0KrIG\":\"Zaplanowany czas jest wymagany\",\"EWErQh\":\"Zaplanowany czas musi być w przyszłości\",\"UNd0OU\":[\"Sesja \\\"\",[\"title\"],\"\\\" pierwotnie zaplanowana na \",[\"0\"],\" została przeniesiona.\"],\"DEcpfp\":\"Treść szablonu zawiera nieprawidłową składnię Liquid. Proszę to poprawić i spróbować ponownie.\",\"injXD7\":\"Numer VAT nie mógł być zweryfikowany. Proszę sprawdzić numer i spróbować ponownie.\",\"A4UmDy\":\"Teatr\",\"tDwYhx\":\"Motyw i kolory\",\"O7g4eR\":\"Brak nadchodzących terminów dla tego wydarzenia\",\"HrIl0p\":[\"Nie ma listy odpraw przypisanej do tego terminu. Lista \\\"\",[\"0\"],\"\\\" odprawia uczestników we wszystkich terminach — personel skanujący bilet na inny termin nadal zakończy odprawę pomyślnie.\"],\"dt3TwA\":\"To są domyślne ceny i ilości dla wszystkich terminów. Daty sprzedaży na progach obowiązują globalnie. Możesz nadpisać ceny i ilości dla poszczególnych terminów na <0>stronie harmonogramu sesji.\",\"062KsE\":\"Te szczegóły są wyświetlane na bilecie uczestnika i podsumowaniu zamówienia tylko dla tego terminu.\",\"5Eu+tn\":\"Te szczegóły będą widoczne tylko po pomyślnym sfinalizowaniu zamówienia.\",\"jQjwR+\":\"Te dane zastąpią dotychczasową lokalizację na objętych sesjach i pojawią się na biletach uczestników.\",\"QP3gP+\":\"Te ustawienia mają zastosowanie tylko do skopiowanego kodu osadzanego i nie będą przechowywane.\",\"HirZe8\":\"Te szablony będą używane jako domyślne dla wszystkich wydarzeń w Twojej organizacji. Poszczególne wydarzenia mogą zastąpić te szablony własnymi wersjami niestandardowymi.\",\"lzAaG5\":\"Te szablony będą zastępować domyślne ustawienia organizatora tylko dla tego wydarzenia. Jeśli tutaj nie jest ustawiony żaden niestandardowy szablon, zostanie użyty szablon organizatora.\",\"UlykKR\":\"Trzeci\",\"wkP5FM\":\"Dotyczy każdego pasującego terminu w wydarzeniu, w tym terminów, które nie są aktualnie widoczne. Uczestnicy zarejestrowani na którymkolwiek z tych terminów będą dostępni w kreatorze wiadomości po zakończeniu aktualizacji.\",\"SOmGDa\":\"Ta lista odpraw jest przypisana do sesji, która została anulowana, więc nie może być już używana do odpraw.\",\"XBNC3E\":\"Ten kod będzie używany do śledzenia sprzedaży. Dozwolone są tylko litery, cyfry, łączniki i podkreślenia.\",\"AaP0M+\":\"Ta kombinacja kolorów może być trudna do odczytania dla niektórych użytkowników\",\"o1phK/\":[\"Ten termin ma \",[\"orderCount\"],\" zamówień, na które wpłynie zmiana.\"],\"F/UtGt\":\"Ten termin został anulowany. Nadal możesz go usunąć, aby trwale go wyeliminować.\",\"BLZ7pX\":\"Ten termin jest w przeszłości. Zostanie utworzony, ale nie będzie widoczny dla uczestników wśród nadchodzących terminów.\",\"7IIY0z\":\"Ten termin jest oznaczony jako wyprzedany.\",\"bddWMP\":\"Ten termin nie jest już dostępny. Wybierz inny termin.\",\"RzEvf5\":\"To wydarzenie się skończyło\",\"YClrdK\":\"To wydarzenie nie zostało jeszcze opublikowane\",\"dFJnia\":\"To jest nazwa Twojego organizatora, która będzie wyświetlana użytkownikom.\",\"vt7jiq\":\"Klucz podpisu zostanie wyświetlony tylko ten jeden raz. Skopiuj go teraz i przechowuj w bezpiecznym miejscu.\",\"L7dIM7\":\"Ten link jest nieprawidłowy lub wygasł.\",\"MR5ygV\":\"Ten link nie jest już ważny\",\"9LEqK0\":\"Ta nazwa jest widoczna dla użytkowników końcowych\",\"QdUMM9\":\"Ta sesja osiągnęła maksymalną pojemność\",\"j5FdeA\":\"To zamówienie jest przetwarzane.\",\"sjNPMw\":\"To zamówienie zostało porzucone. Możesz rozpocząć nowe zamówienie w dowolnym momencie.\",\"OhCesD\":\"To zamówienie zostało anulowane. Możesz rozpocząć nowe zamówienie w dowolnym momencie.\",\"lyD7rQ\":\"Ten profil organizatora nie został jeszcze opublikowany\",\"9b5956\":\"Ten podgląd pokazuje, jak Twój e-mail będzie wyglądać z przykładowymi danymi. Rzeczywiste e-maile będą używać rzeczywistych wartości.\",\"uM9Alj\":\"Ten produkt jest wyróżniony na stronie wydarzenia\",\"RqSKdX\":\"Ten produkt jest wyprzedany\",\"W12OdJ\":\"Ten raport jest tylko do celów informacyjnych. Zawsze konsultuj się z profesjonalistą podatkowymi przed użyciem tych danych do celów rachunkowych lub podatkowych. Proszę odnieść się do pulpitu Stripe, ponieważ Hi.Events może brakować danych historycznych.\",\"0Ew0uk\":\"Ten bilet właśnie został zeskanowany. Proszę czekać przed zeskanowaniem ponownie.\",\"FYXq7k\":[\"Wpłynie to na \",[\"loadedAffectedCount\"],\" termin(ów).\"],\"kvpxIU\":\"Będzie to używane do powiadomień i komunikacji z użytkownikami.\",\"rhsath\":\"Nie będzie to widoczne dla klientów, ale pomaga Ci zidentyfikować partnera afiliacji.\",\"hV6FeJ\":\"Przepustowość\",\"+FjWgX\":\"Cz\",\"kkDQ8m\":\"Czwartek\",\"0GSPnc\":\"Projektowanie biletów\",\"EZC/Cu\":\"Projekt biletów został pomyślnie zapisany\",\"bbslmb\":\"Projektant biletów\",\"1BPctx\":\"Bilet dla\",\"bgqf+K\":\"E-mail posiadacza biletu\",\"oR7zL3\":\"Imię i nazwisko posiadacza biletu\",\"HGuXjF\":\"Posiadacze biletów\",\"CMUt3Y\":\"Posiadacze biletów\",\"awHmAT\":\"ID biletu\",\"6czJik\":\"Logo biletu\",\"OkRZ4Z\":\"Nazwa biletu\",\"t79rDv\":\"Bilet nie znaleziony\",\"6tmWch\":\"Bilet lub produkt\",\"1tfWrD\":\"Podgląd biletu dla\",\"KnjoUA\":\"Cena biletu\",\"tGCY6d\":\"Cena biletu\",\"pGZOcL\":\"Bilet został pomyślnie ponownie wysłany\",\"o02GZM\":\"Sprzedaż biletów na to wydarzenie została zakończona\",\"8jLPgH\":\"Typ biletu\",\"X26cQf\":\"URL biletu\",\"8qsbZ5\":\"Ticketing i sprzedaż\",\"zNECqg\":\"bilety\",\"6GQNLE\":\"Bilety\",\"NRhrIB\":\"Bilety i produkty\",\"OrWHoZ\":\"Bilety są automatycznie oferowane klientom z listy oczekujących, gdy pojawi się dostępność.\",\"EUnesn\":\"Dostępne bilety\",\"AGRilS\":\"Sprzedane bilety\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Godzina\",\"dMtLDE\":\"do\",\"/jQctM\":\"Do\",\"tiI71C\":\"Aby zwiększyć swoje limity, skontaktuj się z nami pod adresem\",\"ecUA8p\":\"Dzisiaj\",\"W428WC\":\"Przełącz kolumny\",\"BRMXj0\":\"Jutro\",\"UBSG1X\":\"Najlepsi organizatorzy (ostatnie 14 dni)\",\"3sZ0xx\":\"Razem kont\",\"EaAPbv\":\"Łączna kwota zapłacona\",\"SMDzqJ\":\"Łącznie uczestników\",\"orBECM\":\"Razem zebrano\",\"k5CU8c\":\"Łączna liczba wpisów\",\"4B7oCp\":\"Łączna opłata\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Razem użytkowników\",\"oJjplO\":\"Razem wyświetleń\",\"rBZ9pz\":\"Wycieczki\",\"orluER\":\"Śledź wzrost konta i wydajność według źródła atrybuacji\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Prawda, jeśli płatność offline\",\"9GsDR2\":\"Prawda, jeśli płatność jest w toku\",\"GUA0Jy\":\"Spróbuj innego wyszukiwania lub filtru\",\"2P/OWN\":\"Spróbuj zmienić filtry, aby zobaczyć więcej terminów.\",\"ouM5IM\":\"Spróbuj innego e-maila\",\"3DZvE7\":\"Spróbuj Hi.Events za darmo\",\"7P/9OY\":\"Wt\",\"vq2WxD\":\"Wt\",\"G3myU+\":\"Wtorek\",\"Kz91g/\":\"Turecki\",\"GdOhw6\":\"Wyłącz dźwięk\",\"KUOhTy\":\"Włącz dźwięk\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Wpisz \\\"usuń\\\", aby potwierdzić\",\"XxecLm\":\"Typ biletu\",\"IrVSu+\":\"Nie można zduplikować produktu. Proszę sprawdzić swoje dane\",\"Vx2J6x\":\"Nie można pobrać uczestnika\",\"h0dx5e\":\"Nie udało się dołączyć do listy oczekujących\",\"DaE0Hg\":\"Nie można załadować szczegółów uczestnika.\",\"GlnD5Y\":\"Nie można załadować produktów dla tego terminu. Spróbuj ponownie.\",\"17VbmV\":\"Nie można cofnąć odprawy\",\"n57zCW\":\"Konta nieprzypisane\",\"9uI/rE\":\"Cofnij\",\"b9SN9q\":\"Unikalna referencja zamówienia\",\"Ef7StM\":\"Nieznany\",\"ZBAScj\":\"Nieznany uczestnik\",\"MEIAzV\":\"Bez nazwy\",\"K6L5Mx\":\"Lokalizacja bez nazwy\",\"X13xGn\":\"Niezaufane\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Aktualizuj partnera afiliacji\",\"59qHrb\":\"Zaktualizuj pojemność\",\"Gaem9v\":\"Zaktualizuj nazwę i opis wydarzenia\",\"7EhE4k\":\"Zaktualizuj etykietę\",\"NPQWj8\":\"Aktualizuj lokalizację\",\"75+lpR\":[\"Aktualizacja: \",[\"subjectTitle\"],\" — zmiany w harmonogramie\"],\"UOGHdA\":[\"Aktualizacja: \",[\"subjectTitle\"],\" — zmiana godziny sesji\"],\"ogoTrw\":[\"Zaktualizowano \",[\"count\"],\" termin(ów)\"],\"dDuona\":[\"Zaktualizowano pojemność dla \",[\"count\"],\" termin(ów)\"],\"FT3LSc\":[\"Zaktualizowano etykietę dla \",[\"count\"],\" termin(ów)\"],\"8EcY1g\":[\"Zaktualizowano lokalizację dla \",[\"count\"],\" sesji\"],\"gJQsLv\":\"Prześlij obraz okładki dla swojego organizatora\",\"4kEGqW\":\"Prześlij logo dla swojego organizatora\",\"lnCMdg\":\"Prześlij obraz\",\"29w7p6\":\"Przesyłanie obrazu...\",\"HtrFfw\":\"URL jest wymagany\",\"vzWC39\":\"USB\",\"td5pxI\":\"Skaner USB aktywny\",\"dyTklH\":\"Skaner USB wstrzymany\",\"OHJXlK\":\"Użyj <0>szablonów Liquid, aby spersonalizować swoje e-maile\",\"g0WJMu\":\"Użyj listy dla wszystkich terminów\",\"0k4cdb\":\"Użyj danych zamówienia dla wszystkich uczestników. Nazwiska i e-maile uczestników będą zgodne z danymi kupującego.\",\"MKK5oI\":\"Użyć listy dla wszystkich terminów czy utworzyć listę dla tego terminu?\",\"bA31T4\":\"Użyj danych kupującego dla wszystkich uczestników\",\"rnoQsz\":\"Używany do obramowań, wyróżnień i stylizacji kodu QR\",\"BV4L/Q\":\"Analityka UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Weryfikowanie Twojego numeru VAT...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Numer VAT\",\"pnVh83\":\"Numer VAT\",\"CabI04\":\"Numer VAT nie może zawierać spacji\",\"PMhxAR\":\"Numer VAT musi zaczynać się od 2-literowego kodu kraju, po którym następuje 8-15 znaków alfanumerycznych (np. DE123456789)\",\"gPgdNV\":\"Numer VAT pomyślnie zweryfikowany\",\"RUMiLy\":\"Weryfikacja numeru VAT nie powiodła się\",\"vqji3Y\":\"Weryfikacja numeru VAT nie powiodła się. Sprawdź swój numer VAT.\",\"8dENF9\":\"VAT na opłacie\",\"ZutOKU\":\"Stawka VAT\",\"+KJZt3\":\"Zarejestrowany jako podatnik VAT\",\"Nfbg76\":\"Ustawienia VAT pomyślnie zapisane\",\"UvYql/\":\"Ustawienia VAT zapisane. Weryfikujemy Twój numer VAT w tle.\",\"bXn1Jz\":\"Ustawienia VAT zaktualizowane\",\"tJylUv\":\"Traktowanie VAT dla opłat platformy\",\"FlGprQ\":\"Traktowanie VAT dla opłat platformy: firmy zarejestrowane jako podatnicy VAT w UE mogą korzystać z mechanizmu odwrotnego obciążenia (0% — Artykuł 196 dyrektywy VAT 2006/112/WE). Firmy niezarejestrowane jako podatnicy VAT są obciążane irlandzkim VAT w wysokości 23%.\",\"516oLj\":\"Usługa weryfikacji VAT jest tymczasowo niedostępna\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Kod weryfikacyjny\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Zweryfikowano\",\"wCKkSr\":\"Zweryfikuj e-mail\",\"/IBv6X\":\"Zweryfikuj swój e-mail\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Weryfikowanie...\",\"fROFIL\":\"Wietnamski\",\"p5nYkr\":\"Zobacz wszystko\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Pokaż wszystkie możliwości\",\"RnvnDc\":\"Zobacz wszystkie wiadomości wysłane na platformie\",\"+WFMis\":\"Przeglądaj i pobieraj raporty dla wszystkich swoich wydarzeń. Uwzględniane są tylko zakończone zamówienia.\",\"c7VN/A\":\"Zobacz odpowiedzi\",\"SZw9tS\":\"Zobacz szczegóły\",\"9+84uW\":[\"Zobacz szczegóły \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Zobacz wydarzenie\",\"c6SXHN\":\"Zobacz stronę wydarzenia\",\"n6EaWL\":\"Zobacz logi\",\"OaKTzt\":\"Zobacz mapę\",\"zNZNMs\":\"Zobacz wiadomość\",\"67OJ7t\":\"Zobacz zamówienie\",\"tKKZn0\":\"Zobacz szczegóły zamówienia\",\"KeCXJu\":\"Przeglądaj szczegóły zamówień, wykonuj zwroty i ponownie wysyłaj potwierdzenia.\",\"9jnAcN\":\"Zobacz stronę główną organizatora\",\"1J/AWD\":\"Zobacz bilet\",\"N9FyyW\":\"Przeglądaj, edytuj i eksportuj zarejestrowanych uczestników.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Oczekuje\",\"quR8Qp\":\"Oczekiwanie na płatność\",\"KrurBH\":\"Oczekiwanie na skan…\",\"u0n+wz\":\"Lista oczekujących\",\"3RXFtE\":\"Lista oczekujących włączona\",\"TwnTPy\":\"Oferta z listy oczekujących wygasła\",\"NzIvKm\":\"Lista oczekujących uruchomiona\",\"aUi/Dz\":\"Ostrzeżenie: To jest domyślna konfiguracja systemu. Zmiany wpłyną na wszystkie konta, które nie mają przypisanej konkretnej konfiguracji.\",\"qeygIa\":\"Śr\",\"aT/44s\":\"Nie udało się skopiować tego połączenia Stripe. Spróbuj ponownie.\",\"RRZDED\":\"Nie mogliśmy znaleźć żadnych zamówień związanych z tym adresem e-mail.\",\"2RZK9x\":\"Nie mogliśmy znaleźć szukanego zamówienia. Link mógł wygasnąć lub szczegóły zamówienia mogły się zmienić.\",\"nefMIK\":\"Nie mogliśmy znaleźć szukanego biletu. Link mógł wygasnąć lub szczegóły biletu mogły się zmienić.\",\"miysJh\":\"Nie mogliśmy znaleźć tego zamówienia. Mogło zostać usunięte.\",\"ADsQ23\":\"Nie udało się teraz połączyć ze Stripe. Spróbuj ponownie za chwilę.\",\"HJKdzP\":\"Napotkaliśmy problem podczas ładowania tej strony. Proszę spróbować ponownie.\",\"jegrvW\":\"Współpracujemy ze Stripe, aby wypłaty trafiały bezpośrednio na Twoje konto bankowe.\",\"IfN2Qo\":\"Zalecamy kwadratowe logo o minimalnych wymiarach 200x200px\",\"wJzo/w\":\"Zalecamy wymiary 400px na 400px i maksymalny rozmiar pliku 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Używamy plików cookie, aby pomóc nam zrozumieć, jak strona jest używana, i poprawić Twoje doświadczenia.\",\"x8rEDQ\":\"Nie mogliśmy zweryfikować numeru VAT po wielu próbach. Będziemy kontynuować próby w tle. Proszę sprawdzić później.\",\"iy+M+c\":[\"Powiadomimy Cię e-mailem, gdy zwolni się miejsce dla \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Po zapisaniu otworzymy kreator wiadomości z wstępnie wypełnionym szablonem. Przejrzyj go i wyślij — nic nie jest wysyłane automatycznie.\",\"q1BizZ\":\"Wyślemy Twoje bilety na ten e-mail\",\"ZOmUYW\":\"Zweryfikujemy Twój numer VAT w tle. W przypadku jakichkolwiek problemów damy Ci znać.\",\"LKjHr4\":[\"Wprowadziliśmy zmiany w harmonogramie \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" dotyczące \",[\"affectedCount\"],\" sesji.\"],\"Fq/Nx7\":\"Wysłaliśmy 5-cyfrowy kod weryfikacyjny na:\",\"GdWB+V\":\"Webhook został pomyślnie utworzony\",\"2X4ecw\":\"Webhook został pomyślnie usunięty\",\"ndBv0v\":\"Integracje webhooków\",\"CThMKa\":\"Dzienniki webhook\",\"I0adYQ\":\"Klucz podpisu Webhook\",\"nuh/Wq\":\"URL webhook\",\"8BMPMe\":\"Webhook nie będzie wysyłał powiadomień\",\"FSaY52\":\"Webhook będzie wysyłał powiadomienia\",\"v1kQyJ\":\"Webhooki\",\"On0aF2\":\"Strona internetowa\",\"0f7U0k\":\"Śr\",\"VAcXNz\":\"Środa\",\"64X6l4\":\"tydzień\",\"4XSc4l\":\"Co tydzień\",\"IAUiSh\":\"tygodnie\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Witamy ponownie\",\"QDWsl9\":[\"Witamy w \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Witamy w \",[\"0\"],\", oto lista wszystkich Twoich wydarzeń\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"O której godzinie?\",\"FaSXqR\":\"Jaki typ wydarzenia?\",\"0WyYF4\":\"Co widzi niezalogowana obsługa\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Gdy odprawa zostanie usunięta\",\"RPe6bE\":\"Gdy termin cyklicznego wydarzenia zostaje anulowany\",\"Gmd0hv\":\"Gdy nowy uczestnik zostanie utworzony\",\"zyIyPe\":\"Gdy zostaje utworzone nowe wydarzenie\",\"Lc18qn\":\"Gdy nowe zamówienie zostanie utworzone\",\"dfkQIO\":\"Gdy nowy produkt zostanie utworzony\",\"8OhzyY\":\"Gdy produkt zostanie usunięty\",\"tRXdQ9\":\"Gdy produkt zostanie zaktualizowany\",\"9L9/28\":\"Gdy produkt zostanie wyprzedany, klienci mogą dołączyć do listy oczekujących, aby otrzymać powiadomienie, gdy zwolnią się miejsca.\",\"Q7CWxp\":\"Gdy uczestnik zostanie anulowany\",\"IuUoyV\":\"Gdy uczestnik zostanie odprawiony\",\"nBVOd7\":\"Gdy uczestnik zostanie zaktualizowany\",\"t7cuMp\":\"Gdy wydarzenie zostaje zarchiwizowane\",\"gtoSzE\":\"Gdy wydarzenie zostaje zaktualizowane\",\"ny2r8d\":\"Gdy zamówienie zostanie anulowane\",\"c9RYbv\":\"Gdy zamówienie zostanie oznaczone jako opłacone\",\"ejMDw1\":\"Gdy zamówienie zostanie zwrócone\",\"fVPt0F\":\"Gdy zamówienie zostanie zaktualizowane\",\"bcYlvb\":\"Gdy odprawa się zakończy\",\"XIG669\":\"Gdy odprawa się rozpocznie\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"Gdy włączone, nowe wydarzenia pozwolą uczestnikom zarządzać własnymi szczegółami biletów za pomocą bezpiecznego linku. Można to zmienić dla każdego wydarzenia.\",\"blXLKj\":\"Gdy włączone, nowe wydarzenia wyświetlą pole wyboru zgody marketingowej podczas realizacji zamówienia. Można to zmienić dla każdego wydarzenia.\",\"Kj0Txn\":\"Gdy włączone, nie będą pobierane opłaty aplikacyjne za transakcje Stripe Connect. Użyj tego dla krajów, w których opłaty aplikacyjne nie są obsługiwane.\",\"tMqezN\":\"Czy zwroty są przetwarzane\",\"uchB0M\":\"Podgląd widgetu\",\"uvIqcj\":\"Warsztaty\",\"EpknJA\":\"Napisz swoją wiadomość tutaj...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"rok\",\"zkWmBh\":\"Co rok\",\"+BGee5\":\"lata\",\"X/azM1\":\"Tak - mam ważny numer rejestracji VAT w UE\",\"Tz5oXG\":\"Tak, anuluj moje zamówienie\",\"QlSZU0\":[\"Podszywa się pod <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Wystawiasz częściowy zwrot. Klient otrzyma zwrot \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Możesz skonfigurować dodatkowe opłaty za usługi i podatki w ustawieniach konta.\",\"rj3A7+\":\"Możesz nadpisać to dla poszczególnych terminów później.\",\"paWwQ0\":\"W razie potrzeby nadal możesz ręcznie oferować bilety.\",\"jTDzpA\":\"Nie możesz zarchiwizować ostatniego aktywnego organizatora na swoim koncie.\",\"5VGIlq\":\"Osiągnąłeś limit wiadomości.\",\"casL1O\":\"Masz podatki i opłaty dodane do darmowego produktu. Czy chcesz je usunąć?\",\"9jJNZY\":\"Musisz potwierdzić swoje obowiązki przed zapisaniem\",\"pCLes8\":\"Musisz wyrazić zgodę na otrzymywanie wiadomości\",\"FVTVBy\":\"Musisz zweryfikować swój adres e-mail, zanim będziesz mógł zaktualizować status organizatora.\",\"ze4bi/\":\"Musisz utworzyć co najmniej jedną sesję, zanim będziesz mógł dodać uczestników do tego cyklicznego wydarzenia.\",\"w65ZgF\":\"Musisz zweryfikować e-mail konta, zanim będziesz mógł modyfikować szablony e-mail.\",\"FRl8Jv\":\"Musisz zweryfikować e-mail konta, zanim będziesz mógł wysyłać wiadomości.\",\"88cUW+\":\"Otrzymujesz\",\"O6/3cu\":\"W następnym kroku będziesz mógł skonfigurować terminy, harmonogramy i reguły powtarzania.\",\"zKAheG\":\"Zmieniasz godziny sesji\",\"MNFIxz\":[\"Idziesz na \",[\"0\"],\"!\"],\"qGZz0m\":\"Jesteś na liście oczekujących!\",\"/5HL6k\":\"Zaproponowano Ci miejsce!\",\"gbjFFH\":\"Zmieniono godzinę sesji\",\"p/Sa0j\":\"Twoje konto ma limity wiadomości. Aby zwiększyć swoje limity, skontaktuj się z nami pod adresem\",\"x/xjzn\":\"Twoi partnerzy afiliacji zostali pomyślnie wyeksportowani.\",\"TF37u6\":\"Twoi uczestnicy zostali pomyślnie wyeksportowani.\",\"79lXGw\":\"Twoja lista odpraw została pomyślnie utworzona. Udostępnij poniższy link personelowi odprawy.\",\"BnlG9U\":\"Twoje obecne zamówienie zostanie utracone.\",\"nBqgQb\":\"Twój e-mail\",\"GG1fRP\":\"Twoje wydarzenie jest aktywne!\",\"ifRqmm\":\"Twoja wiadomość została pomyślnie wysłana!\",\"0/+Nn9\":\"Twoje wiadomości pojawią się tutaj\",\"/Rj5P4\":\"Twoje imię\",\"PFjJxY\":\"Twoje nowe hasło musi mieć co najmniej 8 znaków.\",\"gzrCuN\":\"Szczegóły Twojego zamówienia zostały zaktualizowane. E-mail potwierdzenia został wysłany na nowy adres e-mail.\",\"naQW82\":\"Twoje zamówienie zostało anulowane.\",\"bhlHm/\":\"Twoje zamówienie oczekuje na płatność\",\"XeNum6\":\"Twoje zamówienia zostały pomyślnie wyeksportowane.\",\"Xd1R1a\":\"Adres Twojego organizatora\",\"WWYHKD\":\"Twoja płatność jest chroniona szyfrowaniem na poziomie bankowym\",\"5b3QLi\":\"Twój plan\",\"N4Zkqc\":\"Twój zapisany filtr daty nie jest już dostępny — wyświetlane są wszystkie terminy.\",\"FNO5uZ\":\"Twój bilet jest nadal ważny — nie musisz nic robić, chyba że nowa godzina Ci nie odpowiada. Odpowiedz na ten e-mail w razie pytań.\",\"CnZ3Ou\":\"Twoje bilety zostały potwierdzone.\",\"EmFsMZ\":\"Numer VAT czeka na weryfikację\",\"QBlhh4\":\"Numer VAT zostanie zweryfikowany po zapisaniu\",\"fT9VLt\":\"Twoja oferta z listy oczekujących wygasła i nie udało nam się sfinalizować Twojego zamówienia. Dołącz ponownie do listy oczekujących, aby otrzymać powiadomienie, gdy zwolnią się kolejne miejsca.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/pl.po b/frontend/src/locales/pl.po index 2096532907..2df8644cd1 100644 --- a/frontend/src/locales/pl.po +++ b/frontend/src/locales/pl.po @@ -60,7 +60,7 @@ msgstr "{0} <0>wymeldowany pomyślnie" msgid "{0} Active Webhooks" msgstr "{0} Aktywne webhooki" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} dostępne" @@ -78,7 +78,7 @@ msgstr "{0} pozostało" msgid "{0} logo" msgstr "logo {0}" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{0} z {1} miejsc jest zajętych." @@ -90,7 +90,7 @@ msgstr "{0} organizatorów" msgid "{0} spots left" msgstr "Pozostało miejsc: {0}" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} biletów" @@ -114,7 +114,7 @@ msgstr "logo {appName}" msgid "{attendeeCount} attendees are registered for this session." msgstr "Na tę sesję zarejestrowanych jest {attendeeCount} uczestników." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} z {totalCount} dostępnych" @@ -122,7 +122,7 @@ msgstr "{availableCount} z {totalCount} dostępnych" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} zameldowanych" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} wydarzeń" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} godzin, {minutes} minut i {seconds} sekund" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "W dotkniętych sesjach zarejestrowanych jest {loadedAffectedAttendees} uczestników." @@ -163,11 +163,11 @@ msgstr "{minutes} minut i {seconds} sekund" msgid "{organizerName}'s first event" msgstr "Pierwsze wydarzenie {organizerName}" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} typów biletów" @@ -230,7 +230,7 @@ msgstr "0 minut i 0 sekund" msgid "1 Active Webhook" msgstr "1 Aktywny webhook" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "W dotkniętych sesjach zarejestrowany jest 1 uczestnik." @@ -238,35 +238,35 @@ msgstr "W dotkniętych sesjach zarejestrowany jest 1 uczestnik." msgid "1 attendee is registered for this session." msgstr "Na tę sesję zarejestrowany jest 1 uczestnik." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 dzień po dacie zakończenia" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 dzień po dacie rozpoczęcia" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 dzień przed wydarzeniem" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 godzinę przed wydarzeniem" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 bilet" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 typ biletu" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 tydzień przed wydarzeniem" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "Wiadomość o anulowaniu została wysłana do" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "zmianę czasu trwania" @@ -321,7 +321,7 @@ msgstr "Pole rozwijane pozwala tylko na jedną selekcję" msgid "A fee, like a booking fee or a service fee" msgstr "Opłata, jak opłata rezerwacyjna lub opłata serwisowa" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "Kod promocyjny bez rabatu może być użyty do ujawnienia ukrytych produ msgid "A Radio option has multiple options but only one can be selected." msgstr "Opcja Radio ma wiele opcji, ale tylko jedna może być wybrana." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "przesunięcie czasów rozpoczęcia/zakończenia" @@ -465,7 +465,7 @@ msgstr "Konto zaktualizowane pomyślnie" msgid "Accounts" msgstr "Konta" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Wymagane działanie: Potrzebne informacje VAT" @@ -493,10 +493,10 @@ msgstr "Data aktywacji" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Aktywne metody płatności" msgid "Activity" msgstr "Aktywność" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Dodaj termin" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "Dodaj wszelkie notatki o zamówieniu..." msgid "Add at least one time" msgstr "Dodaj co najmniej jedną godzinę" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Dodaj dane połączenia dla wydarzenia online." @@ -572,15 +576,19 @@ msgstr "Dodaj termin" msgid "Add Dates" msgstr "Dodaj terminy" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Dodaj opis" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "Dodaj pytanie" msgid "Add Tax or Fee" msgstr "Dodaj podatek lub opłatę" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Dodaj uczestnika mimo to (zignoruj pojemność)" @@ -634,8 +642,8 @@ msgstr "Dodaj uczestnika mimo to (zignoruj pojemność)" msgid "Add this event to your calendar" msgstr "Dodaj to wydarzenie do swojego kalendarza" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Dodaj bilety" @@ -649,7 +657,7 @@ msgstr "Dodaj poziom" msgid "Add to Calendar" msgstr "Dodaj do kalendarza" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Dodaj piksele śledzące do publicznych stron wydarzeń i strony głównej organizatora. Gdy śledzenie jest aktywne, odwiedzającym wyświetli się baner zgody na pliki cookie." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Linia adresu 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Linia adresu 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Linia adresu 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Linia adresu 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Administrator" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Wymagany dostęp administratora" @@ -725,7 +733,7 @@ msgstr "Wymagany dostęp administratora" msgid "Admin Dashboard" msgstr "Panel administratora" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Użytkownicy administratorzy mają pełny dostęp do wydarzeń i ustawień konta." @@ -776,7 +784,7 @@ msgstr "Partnerzy wyeksportowani" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Partnerzy pomagają śledzić sprzedaż generowaną przez partnerów i influencerów. Utwórz kody partnerskie i udostępnij je, aby monitorować wydajność." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "wszystkie" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "Wszystkie zarchiwizowane wydarzenia" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Wszyscy uczestnicy" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "Wszyscy uczestnicy wybranych sesji" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Wszyscy uczestnicy tego wydarzenia" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Wszyscy uczestnicy tej sesji" @@ -838,12 +846,12 @@ msgstr "Wszystkie nieudane zadania usunięte" msgid "All jobs queued for retry" msgstr "Wszystkie zadania w kolejce do ponowienia" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Wszystkie pasujące terminy" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Wszystkie sesje" @@ -897,7 +905,7 @@ msgstr "Masz już konto? <0>{0}" msgid "Already in" msgstr "Już w środku" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Już zwrócone" @@ -905,11 +913,11 @@ msgstr "Już zwrócone" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Korzystasz już ze Stripe u innego organizatora? Użyj tego połączenia ponownie." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Również anuluj to zamówienie" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Również zwróć to zamówienie" @@ -932,7 +940,7 @@ msgstr "Kwota" msgid "Amount Paid" msgstr "Kwota zapłacona" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Kwota zapłacona ({0})" @@ -952,7 +960,7 @@ msgstr "Wystąpił błąd podczas ładowania strony" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Opcjonalna wiadomość do wyświetlenia na wyróżnionym produkcie, np. \"Sprzedaje się szybko 🔥\" lub \"Najlepsza wartość\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Wystąpił nieoczekiwany błąd." @@ -988,7 +996,7 @@ msgstr "Wszystkie zapytania od posiadaczy produktów będą wysyłane na ten adr msgid "Appearance" msgstr "Wygląd" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "zastosowane" @@ -996,7 +1004,7 @@ msgstr "zastosowane" msgid "Applies to {0} products" msgstr "Dotyczy {0} produktów" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Dotyczy {0} nieanulowanych terminów aktualnie załadowanych na tej stronie." @@ -1008,7 +1016,7 @@ msgstr "Dotyczy 1 produktu" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Dotyczy osób otwierających link bez zalogowania. Zalogowani zawsze widzą wszystko." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Dotyczy każdego {0} nieanulowanego terminu w tym wydarzeniu — także terminów, które nie są aktualnie załadowane." @@ -1016,11 +1024,11 @@ msgstr "Dotyczy każdego {0} nieanulowanego terminu w tym wydarzeniu — także msgid "Apply" msgstr "Zastosuj" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Zastosuj zmiany" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Zastosuj kod promocyjny" @@ -1028,7 +1036,7 @@ msgstr "Zastosuj kod promocyjny" msgid "Apply this {type} to all new products" msgstr "Zastosuj to {type} do wszystkich nowych produktów" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Zastosuj do" @@ -1044,36 +1052,35 @@ msgstr "Zatwierdź wiadomość" msgid "April" msgstr "Kwiecień" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Archiwizuj" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Zarchiwizuj wydarzenie" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Archiwizuj wydarzenie" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Archiwizuj organizatora" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Zarchiwizuj to wydarzenie, aby ukryć je przed publicznością. Możesz je później przywrócić." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Zarchiwizuj tego organizatora. Spowoduje to również archiwizację wszystkich wydarzeń należących do tego organizatora." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Zarchiwizowane" @@ -1085,15 +1092,15 @@ msgstr "Zarchiwizowani organizatorzy" msgid "Are you sure you want to activate this attendee?" msgstr "Czy na pewno chcesz aktywować tego uczestnika?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Czy na pewno chcesz zarchiwizować to wydarzenie?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Czy na pewno chcesz zarchiwizować to wydarzenie? Nie będzie już widoczne dla publiczności." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Czy na pewno chcesz zarchiwizować tego organizatora? Spowoduje to również archiwizację wszystkich wydarzeń należących do tego organizatora." @@ -1123,7 +1130,7 @@ msgstr "Czy na pewno chcesz usunąć wszystkie nieudane zadania?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Czy na pewno chcesz usunąć tego partnera? Tej akcji nie można cofnąć." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Czy na pewno chcesz usunąć tę konfigurację? Może to wpłynąć na konta jej używające." @@ -1137,11 +1144,11 @@ msgstr "Czy na pewno chcesz usunąć ten termin? Tej operacji nie można cofną msgid "Are you sure you want to delete this promo code?" msgstr "Czy na pewno chcesz usunąć ten kod promocyjny?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Czy na pewno chcesz usunąć ten szablon? Tej akcji nie można cofnąć, a e-maile powrócą do domyślnego szablonu." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Czy na pewno chcesz usunąć ten szablon? Tej akcji nie można cofnąć, a e-maile powrócą do szablonu organizatora lub domyślnego." @@ -1150,17 +1157,17 @@ msgstr "Czy na pewno chcesz usunąć ten szablon? Tej akcji nie można cofnąć, msgid "Are you sure you want to delete this webhook?" msgstr "Czy na pewno chcesz usunąć ten webhook?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Czy na pewno chcesz wyjść?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Czy na pewno chcesz zrobić to wydarzenie szkicem? To sprawi, że wydarzenie będzie niewidoczne dla publiczności" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Czy na pewno chcesz opublikować to wydarzenie? To sprawi, że wydarzenie będzie widoczne dla publiczności" @@ -1200,15 +1207,15 @@ msgstr "Czy na pewno chcesz ponownie wysłać potwierdzenie zamówienia do {0}?" msgid "Are you sure you want to resend the ticket to {0}?" msgstr "Czy na pewno chcesz ponownie wysłać bilet do {0}?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Czy na pewno chcesz przywrócić to wydarzenie?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Czy na pewno chcesz przywrócić to wydarzenie? Zostanie przywrócone jako szkic wydarzenia." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Czy na pewno chcesz przywrócić tego organizatora?" @@ -1229,7 +1236,7 @@ msgstr "Czy na pewno chcesz usunąć to przypisanie pojemności?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "Czy na pewno chcesz usunąć tę listę odpraw?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "Czy jesteś zarejestrowany na VAT w UE?" @@ -1237,7 +1244,7 @@ msgstr "Czy jesteś zarejestrowany na VAT w UE?" msgid "Art" msgstr "Sztuka" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "Ponieważ Twoja firma ma siedzibę w Irlandii, irlandzki VAT w wysokości 23% stosuje się automatycznie do wszystkich opłat platformy." @@ -1270,7 +1277,7 @@ msgstr "Przypisany poziom" msgid "At least one event type must be selected" msgstr "Musi być wybrany co najmniej jeden typ wydarzenia" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Próby" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Frekwencja i wskaźniki odpraw we wszystkich wydarzeniach" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "uczestnik" @@ -1287,7 +1293,7 @@ msgstr "uczestnik" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Uczestnik" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Status uczestnika" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Bilet uczestnika" @@ -1364,13 +1370,13 @@ msgstr "Bilet uczestnika nie jest uwzględniony na tej liście" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "uczestnicy" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "uczestnicy" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Uczestnicy" @@ -1393,16 +1399,16 @@ msgstr "uczestników zameldowanych" msgid "Attendees Exported" msgstr "Uczestnicy wyeksportowani" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Uczestnicy zarejestrowani" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Uczestnicy zarejestrowani" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Uczestnicy z konkretnym biletem" @@ -1454,7 +1460,7 @@ msgstr "Automatycznie dopasuj wysokość widgetu na podstawie zawartości. Gdy w msgid "Available" msgstr "Dostępne" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Dostępne do zwrotu" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "Oczekuje" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "Oczekuje na płatność offline" @@ -1482,7 +1488,7 @@ msgstr "Oczekuje zapłaty" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "Oczekuje na płatność" @@ -1513,14 +1519,14 @@ msgstr "Powrót do kont" msgid "Back to calendar" msgstr "Powrót do kalendarza" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Powrót do wydarzenia" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Powrót do strony wydarzenia" @@ -1548,7 +1554,7 @@ msgstr "Kolor tła" msgid "Background Type" msgstr "Typ tła" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "Na podstawie globalnego okresu sprzedaży powyżej, nie dla poszczególn msgid "Basic Information" msgstr "Podstawowe informacje" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Adres rozliczeniowy" @@ -1599,11 +1605,11 @@ msgstr "Wbudowana ochrona przed oszustwami" msgid "Bulk Edit" msgstr "Edycja zbiorcza" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Zbiorcza edycja terminów" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "Aktualizacja zbiorcza nie powiodła się." @@ -1635,11 +1641,11 @@ msgstr "Kupujący płaci" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Kupujący widzą czystą cenę. Opłata platformy jest odejmowana od Twojej wypłaty." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "Dodając piksele śledzące, potwierdzasz, że Ty i ta platforma jesteście współadministratorami zbieranych danych. Jesteś odpowiedzialny za zapewnienie podstawy prawnej do tego przetwarzania zgodnie z obowiązującymi przepisami o ochronie prywatności (RODO, CCPA itp.)." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Kontynuując, zgadzasz się na <0>{0} Warunki korzystania z usługi" @@ -1660,7 +1666,7 @@ msgstr "Rejestrując się, zgadzasz się na nasze <0>Warunki korzystania z usłu msgid "By ticket type" msgstr "Według typu biletu" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Pomiń opłaty aplikacji" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "Nie można zameldować" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Anuluj" @@ -1729,7 +1735,7 @@ msgstr "Anuluj" msgid "Cancel {count} date(s)" msgstr "Anuluj {count} termin(ów)" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Anuluj wszystkie produkty i zwolnij je z powrotem do puli" @@ -1743,7 +1749,7 @@ msgstr "Anuluj wszystkie produkty i zwolnij je z powrotem do puli" msgid "Cancel Date" msgstr "Anuluj termin" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "Anuluj zmianę e-maila" @@ -1751,7 +1757,7 @@ msgstr "Anuluj zmianę e-maila" msgid "Cancel order" msgstr "Anuluj zamówienie" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Anuluj zamówienie" @@ -1759,7 +1765,7 @@ msgstr "Anuluj zamówienie" msgid "Cancel Order {0}" msgstr "Anuluj zamówienie {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "Anulowanie anuluje wszystkich uczestników związanych z tym zamówieniem i zwolni bilety z powrotem do dostępnej puli." @@ -1781,7 +1787,7 @@ msgstr "Anulowanie" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "Anulowane" msgid "Cancelled {0} date(s)" msgstr "Anulowano {0} termin(ów)" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "Nie można usunąć domyślnej konfiguracji systemu" @@ -1825,7 +1831,7 @@ msgstr "Zarządzanie pojemnością" msgid "Capacity must be 0 or greater" msgstr "Pojemność musi wynosić 0 lub więcej" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "aktualizacje pojemności" @@ -1833,7 +1839,7 @@ msgstr "aktualizacje pojemności" msgid "Capacity Used" msgstr "Wykorzystana pojemność" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "Kategorie pozwalają grupować produkty razem. Na przykład, możesz mieć kategorię dla \"Biletów\" i inną dla \"Towarów\"." @@ -1854,19 +1860,19 @@ msgstr "Kategoria" msgid "Category Created Successfully" msgstr "Kategoria utworzona pomyślnie" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Zmień" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Zmień czas trwania" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Zmień hasło" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Zmień limit uczestników" @@ -1874,7 +1880,7 @@ msgstr "Zmień limit uczestników" msgid "Change waitlist settings" msgstr "Zmień ustawienia listy oczekujących" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "Zmieniono czas trwania dla {count} termin(ów)" @@ -1891,15 +1897,15 @@ msgstr "Dobroczynność" msgid "Check in" msgstr "Zamelduj" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Zameldowanie {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Zameldowanie i oznaczenie zamówienia jako opłacone" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Tylko zameldowanie" @@ -1913,7 +1919,7 @@ msgstr "Wymelduj" msgid "Check out this event: {0}" msgstr "Sprawdź to wydarzenie: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Sprawdź to wydarzenie!" @@ -1994,7 +2000,7 @@ msgstr "Listy odpraw" msgid "Check-In Lists" msgstr "Listy odpraw" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Nawigacja odprawy" @@ -2074,11 +2080,11 @@ msgstr "Wybierz kolor dla swojego tła" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Wybierz inną akcję" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Wybierz zapisaną lokalizację do zastosowania." @@ -2108,12 +2114,12 @@ msgstr "Wybierz, kto płaci opłatę platformy. Nie wpływa to na dodatkowe opł #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Miasto" @@ -2122,7 +2128,7 @@ msgstr "Miasto" msgid "Clear" msgstr "Wyczyść" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Wyczyść lokalizację — wróć do domyślnej lokalizacji wydarzenia" @@ -2134,7 +2140,7 @@ msgstr "Wyczyść wyszukiwanie" msgid "Clear Search Text" msgstr "Wyczyść tekst wyszukiwania" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "Wyczyszczenie usuwa wszelkie nadpisania dla pojedynczych sesji. Sesje, których to dotyczy, powrócą do domyślnej lokalizacji wydarzenia." @@ -2154,7 +2160,7 @@ msgstr "Kliknij, aby ponownie otworzyć dla nowej sprzedaży" msgid "Click to view notes" msgstr "Kliknij, aby zobaczyć notatki" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "zamknij" @@ -2162,8 +2168,8 @@ msgstr "zamknij" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Zamknij" @@ -2259,7 +2265,7 @@ msgstr "Wkrótce" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Słowa kluczowe oddzielone przecinkami opisujące wydarzenie. Będą używane przez wyszukiwarki do kategoryzacji i indeksowania wydarzenia" -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Preferencje komunikacyjne" @@ -2267,11 +2273,11 @@ msgstr "Preferencje komunikacyjne" msgid "complete" msgstr "ukończono" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Zakończ zamówienie" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Zakończ płatność" @@ -2280,11 +2286,11 @@ msgstr "Zakończ płatność" msgid "Complete Stripe setup" msgstr "Zakończ konfigurację Stripe" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Dokończ zamówienie, aby zabezpieczyć swoje bilety. Ta oferta jest ograniczona czasowo, więc nie zwlekaj zbyt długo." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Zakończ płatność, aby zabezpieczyć swoje bilety." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Uzupełnij swój profil, aby dołączyć do drużyny." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Zakończone" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Zakończone zamówienia" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Zakończone zamówienia" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Napisz" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Konfiguracja przypisana" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Konfiguracja utworzona pomyślnie" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Konfiguracja usunięta pomyślnie" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "Nazwy konfiguracji są widoczne dla użytkowników końcowych. Opłaty stałe zostaną przeliczone na walutę zamówienia po aktualnym kursie wymiany." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Konfiguracja zaktualizowana pomyślnie" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Konfiguracje" @@ -2377,10 +2383,10 @@ msgstr "Skonfigurowany rabat" msgid "Confirm" msgstr "Potwierdź" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "Potwierdź adres e-mail" @@ -2393,7 +2399,7 @@ msgstr "Potwierdź zmianę e-maila" msgid "Confirm new password" msgstr "Potwierdź nowe hasło" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Potwierdź nowe hasło" @@ -2428,16 +2434,16 @@ msgstr "Potwierdzanie adresu e-mail..." msgid "Congratulations! Your event is now visible to the public." msgstr "Gratulacje! Twoje wydarzenie jest teraz widoczne publicznie." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Połącz Stripe" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Połącz Stripe, aby włączyć edycję szablonów e-mail" @@ -2445,7 +2451,7 @@ msgstr "Połącz Stripe, aby włączyć edycję szablonów e-mail" msgid "Connect Stripe to enable messaging" msgstr "Połącz Stripe, aby włączyć wiadomości" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Połącz z Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "E-mail kontaktowy do wsparcia" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Kontynuuj" @@ -2508,7 +2514,7 @@ msgstr "Tekst przycisku kontynuacji" msgid "Continue Setup" msgstr "Kontynuuj konfigurację" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Przejdź do płatności" @@ -2520,7 +2526,7 @@ msgstr "Przejdź do tworzenia wydarzenia" msgid "Continue to next step" msgstr "Przejdź do następnego kroku" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Przejdź do płatności" @@ -2545,7 +2551,7 @@ msgstr "Kto i kiedy wejdzie" msgid "Copied" msgstr "Skopiowane" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Skopiowane z góry" @@ -2591,7 +2597,7 @@ msgstr "Kopiuj kod" msgid "Copy customer link" msgstr "Skopiuj link klienta" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Kopiuj szczegóły do pierwszego uczestnika" @@ -2609,7 +2615,7 @@ msgstr "Skopiuj link" msgid "Copy Link" msgstr "Kopiuj link" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Kopiuj moje szczegóły do:" @@ -2630,7 +2636,7 @@ msgstr "Kopiuj URL" msgid "Could not delete location" msgstr "Nie można usunąć lokalizacji" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Nie udało się przygotować masowej aktualizacji." @@ -2652,13 +2658,17 @@ msgstr "Nie można zapisać terminu" msgid "Could not save location" msgstr "Nie można zapisać lokalizacji" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "Kraj" @@ -2671,6 +2681,10 @@ msgstr "Okładka" msgid "Cover Image" msgstr "Obraz okładki" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "Obraz okładki będzie wyświetlany na górze strony wydarzenia" @@ -2743,7 +2757,7 @@ msgstr "utwórz organizatora" msgid "Create and configure tickets and merchandise for sale." msgstr "Utwórz i skonfiguruj bilety i towary na sprzedaż." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Utwórz uczestnika" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Utwórz kategorię" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Utwórz kategorię" @@ -2771,17 +2785,17 @@ msgstr "Utwórz kategorię" msgid "Create Check-In List" msgstr "Utwórz listę zameldowań" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Utwórz konfigurację" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Utwórz niestandardowe szablony e-mail dla tego wydarzenia, które nadpisują domyślne organizatora" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Utwórz niestandardowy szablon" @@ -2793,16 +2807,16 @@ msgstr "Utwórz termin" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Utwórz rabaty, kody dostępu dla ukrytych biletów i specjalne oferty." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Utwórz wydarzenie" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Utwórz dla tego terminu" @@ -2849,7 +2863,7 @@ msgstr "Utwórz podatek lub opłatę" msgid "Create Ticket or Product" msgstr "Utwórz bilet lub produkt" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "Utwórz swoje wydarzenie" msgid "Create your first event" msgstr "Utwórz swoje pierwsze wydarzenie" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "Etykieta CTA jest wymagana" msgid "Currency" msgstr "Waluta" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Aktualne hasło" @@ -2931,7 +2949,7 @@ msgstr "Obecnie dostępne do zakupu" msgid "Custom branding" msgstr "Niestandardowy branding" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Niestandardowa data i godzina" @@ -2957,7 +2975,7 @@ msgstr "Niestandardowe pytania" msgid "Custom Range" msgstr "Niestandardowy zakres" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Niestandardowy szablon" @@ -2970,7 +2988,7 @@ msgstr "Klient" msgid "Customer link copied to clipboard" msgstr "Link klienta skopiowany do schowka" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "Klient otrzyma e-mail potwierdzający zwrot" @@ -2990,11 +3008,15 @@ msgstr "Nazwisko klienta" msgid "Customers" msgstr "Klienci" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Dostosuj ustawienia e-mail i powiadomień dla tego wydarzenia" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Dostosuj e-maile wysyłane do Twoich klientów za pomocą szablonów Liquid. Te szablony będą używane jako domyślne dla wszystkich wydarzeń w Twojej organizacji." @@ -3027,6 +3049,10 @@ msgstr "Dostosuj tekst wyświetlany na przycisku kontynuacji" msgid "Customize your email template using Liquid templating" msgstr "Dostosuj swój szablon e-mail za pomocą szablonów Liquid" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Dostosuj wygląd strony organizatora" @@ -3079,7 +3105,7 @@ msgstr "Ciemny" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Panel" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Data i czas" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Anulowanie terminu" @@ -3208,12 +3234,12 @@ msgstr "Domyślna pojemność na termin" msgid "Default Fee Handling" msgstr "Domyślne obsługiwanie opłat" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Zostanie użyty domyślny szablon" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "usuń" @@ -3267,8 +3293,8 @@ msgstr "Usuń kod" msgid "Delete Date" msgstr "Usuń termin" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Usuń wydarzenie" @@ -3285,8 +3311,8 @@ msgstr "Usuń zadanie" msgid "Delete location" msgstr "Usuń lokalizację" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Usuń organizatora" @@ -3294,7 +3320,7 @@ msgstr "Usuń organizatora" msgid "Delete Permanently" msgstr "Usuń trwale" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Usuń szablon" @@ -3319,7 +3345,7 @@ msgstr "Usunięto {0} termin(ów)" msgid "Description" msgstr "Opis" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "Zniżka w {0}" msgid "Discount Type" msgstr "Typ zniżki" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Zamknij" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Odrzuć tę wiadomość" @@ -3441,7 +3467,7 @@ msgstr "Pobierz CSV" msgid "Download invoice" msgstr "Pobierz fakturę" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Pobierz fakturę" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Pobierz raporty sprzedaży, uczestników i finansowe dla wszystkich zakończonych zamówień." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "Pobieranie faktury" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Wersja robocza" @@ -3469,7 +3494,7 @@ msgstr "Wersja robocza" msgid "Dropdown selection" msgstr "Wybór z listy rozwijanej" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "Ze względu na wysokie ryzyko spamu, musisz połączyć konto Stripe przed modyfikacją szablonów e-mail. To zapewnia, że wszyscy organizatorzy wydarzeń są zweryfikowani i odpowiedzialni." @@ -3490,7 +3515,7 @@ msgstr "Duplikuj" msgid "Duplicate Date" msgstr "Zduplikuj termin" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Duplikuj wydarzenie" @@ -3508,7 +3533,7 @@ msgstr "Opcje duplikacji" msgid "Duplicate Product" msgstr "Duplikuj produkt" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "Czas trwania musi wynosić co najmniej 1 minutę." @@ -3520,7 +3545,7 @@ msgstr "Holenderski" msgid "e.g. 180 (3 hours)" msgstr "np. 180 (3 godziny)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "np. Sesja poranna" msgid "e.g., Get Tickets, Register Now" msgstr "np. Kup bilety, Zarejestruj się teraz" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "np. Ważna aktualizacja dotycząca Twoich biletów" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "np. Standard, Premium, Enterprise" @@ -3542,7 +3567,7 @@ msgstr "np. Standard, Premium, Enterprise" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Każda osoba otrzyma e-mail z zarezerwowanym miejscem do sfinalizowania zakupu." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Wcześniej" @@ -3611,7 +3636,7 @@ msgstr "Edytuj listę zameldowań" msgid "Edit Code" msgstr "Edytuj kod" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Edytuj konfigurację" @@ -3659,8 +3684,8 @@ msgstr "Edytuj pytanie" msgid "Edit user" msgstr "Edytuj użytkownika" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Edytuj użytkownika" @@ -3708,7 +3733,7 @@ msgstr "Kwalifikujące się listy zameldowań" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Kwalifikujące się listy zameldowań" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "E-mail" @@ -3743,10 +3768,10 @@ msgstr "E-mail i szablony" msgid "Email address" msgstr "Adres e-mail" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "Adres e-mail" @@ -3755,8 +3780,8 @@ msgstr "Adres e-mail" msgid "Email address copied to clipboard" msgstr "Adres e-mail skopiowany do schowka" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "Adresy e-mail nie pasują" @@ -3764,21 +3789,21 @@ msgstr "Adresy e-mail nie pasują" msgid "Email Body" msgstr "Treść e-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "Zmiana e-mail anulowana pomyślnie" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "Zmiana e-mail w toku" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "Potwierdzenie e-mail wysłane ponownie" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "Potwierdzenie e-mail wysłane ponownie pomyślnie" @@ -3792,7 +3817,7 @@ msgstr "Wiadomość w stopce e-mail" msgid "Email is required" msgstr "E-mail jest wymagany" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "E-mail nie zweryfikowany" @@ -3800,7 +3825,7 @@ msgstr "E-mail nie zweryfikowany" msgid "Email Preview" msgstr "Podgląd e-mail" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "Szablony e-mail" @@ -3809,6 +3834,10 @@ msgstr "Szablony e-mail" msgid "Email Verification Required" msgstr "Wymagane jest weryfikacja e-mail" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "E-mail zweryfikowany pomyślnie!" @@ -3897,12 +3926,11 @@ msgstr "Czas zakończenia (opcjonalny)" msgid "End time of the occurrence" msgstr "Godzina zakończenia sesji" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Zakończony" @@ -3920,11 +3948,11 @@ msgstr "Kończy się {0}" msgid "English" msgstr "Angielski" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Wprowadź wartość pojemności lub wybierz bez limitu." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Wprowadź etykietę lub wybierz jej usunięcie." @@ -3932,7 +3960,7 @@ msgstr "Wprowadź etykietę lub wybierz jej usunięcie." msgid "Enter a subject and body to see the preview" msgstr "Wprowadź temat i treść, aby zobaczyć podgląd" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Wprowadź czas przesunięcia." @@ -3949,11 +3977,11 @@ msgstr "Wprowadź e-mail partnera (opcjonalne)" msgid "Enter affiliate name" msgstr "Wprowadź nazwę partnera" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Wprowadź kwotę bez podatków i opłat." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Wprowadź pojemność" @@ -3998,7 +4026,7 @@ msgstr "Wprowadź swój e-mail, a wyślemy Ci instrukcje resetowania hasła." msgid "Enter your name" msgstr "Wprowadź swoje imię" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Wprowadź swój numer VAT wraz z kodem kraju, bez spacji (np. IE1234567A, DE123456789)" @@ -4012,7 +4040,7 @@ msgstr "Wpisy pojawią się tutaj, gdy klienci dołączą do listy oczekujących #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Błąd" @@ -4074,7 +4102,7 @@ msgstr "Wydarzenie" msgid "Event Archived" msgstr "Wydarzenie zarchiwizowane" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Wydarzenie zostało pomyślnie zarchiwizowane" @@ -4086,7 +4114,7 @@ msgstr "Kategoria wydarzenia" msgid "Event Cover Image" msgstr "Obraz okładki wydarzenia" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4094,7 +4122,7 @@ msgstr "" msgid "Event Created" msgstr "Wydarzenie utworzone" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Niestandardowy szablon wydarzenia" @@ -4113,7 +4141,7 @@ msgstr "Data wydarzenia" msgid "Event Defaults" msgstr "Domyślne ustawienia wydarzenia" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Wydarzenie zostało pomyślnie usunięte" @@ -4145,10 +4173,14 @@ msgstr "Wydarzenie zostało pomyślnie zduplikowane" msgid "Event Full Address" msgstr "Pełny adres wydarzenia" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Strona główna wydarzenia" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Lokalizacja wydarzenia" @@ -4188,7 +4220,7 @@ msgstr "Nazwa organizatora wydarzenia" msgid "Event Page" msgstr "Strona wydarzenia" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Wydarzenie zostało pomyślnie przywrócone" @@ -4197,17 +4229,17 @@ msgstr "Wydarzenie zostało pomyślnie przywrócone" msgid "Event Settings" msgstr "Ustawienia wydarzenia" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Aktualizacja statusu wydarzenia nie powiodła się. Spróbuj ponownie później" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Status wydarzenia zaktualizowany" @@ -4240,7 +4272,7 @@ msgstr "Tytuł wydarzenia" msgid "Event Too New" msgstr "Wydarzenie zbyt nowe" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Sumy wydarzenia" @@ -4405,7 +4437,7 @@ msgstr "Nie powiodło się o" msgid "Failed Jobs" msgstr "Nieudane zadania" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "Nie udało się porzucić zamówienia. Spróbuj ponownie." @@ -4439,7 +4471,7 @@ msgstr "Nie udało się anulować zamówienia" msgid "Failed to create affiliate" msgstr "Nie udało się utworzyć partnera" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Nie udało się utworzyć konfiguracji" @@ -4447,12 +4479,12 @@ msgstr "Nie udało się utworzyć konfiguracji" msgid "Failed to create schedule" msgstr "Nie udało się utworzyć harmonogramu" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Nie udało się utworzyć szablonu" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Nie udało się usunąć konfiguracji" @@ -4470,7 +4502,7 @@ msgstr "Nie udało się usunąć terminu. Mogą istnieć powiązane zamówienia. msgid "Failed to delete dates" msgstr "Nie udało się usunąć terminów" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Nie udało się usunąć wydarzenia" @@ -4482,7 +4514,7 @@ msgstr "Nie udało się usunąć zadania" msgid "Failed to delete jobs" msgstr "Nie udało się usunąć zadań" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Nie udało się usunąć organizatora" @@ -4490,13 +4522,13 @@ msgstr "Nie udało się usunąć organizatora" msgid "Failed to delete question" msgstr "Nie udało się usunąć pytania" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Nie udało się usunąć szablonu" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Nie udało się pobrać faktury. Spróbuj ponownie." @@ -4594,14 +4626,14 @@ msgstr "Nie udało się zapisać nadpisania ceny" msgid "Failed to save product settings" msgstr "Nie udało się zapisać ustawień produktu" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Nie udało się zapisać szablonu" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Nie udało się zapisać ustawień VAT. Spróbuj ponownie." @@ -4639,11 +4671,11 @@ msgstr "Nie udało się zaktualizować odpowiedzi." msgid "Failed to update attendee" msgstr "Nie udało się zaktualizować uczestnika" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Nie udało się zaktualizować konfiguracji" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Nie udało się zaktualizować statusu wydarzenia" @@ -4655,7 +4687,7 @@ msgstr "Nie udało się zaktualizować poziomu wiadomości" msgid "Failed to update order" msgstr "Nie udało się zaktualizować zamówienia" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Nie udało się zaktualizować statusu organizatora" @@ -4701,7 +4733,7 @@ msgstr "Luty" msgid "Fee" msgstr "Opłata" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Waluta opłaty" @@ -4720,7 +4752,7 @@ msgstr "" msgid "Fees" msgstr "Opłaty" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Opłaty ominięte" @@ -4732,8 +4764,8 @@ msgstr "Festiwal" msgid "File is too large. Maximum size is 5MB." msgstr "Plik jest zbyt duży. Maksymalny rozmiar to 5 MB." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Najpierw wypełnij swoje dane powyżej" @@ -4754,7 +4786,7 @@ msgstr "Filtruj uczestników" msgid "Filter by date" msgstr "Filtruj według daty" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Filtruj według wydarzenia" @@ -4775,19 +4807,27 @@ msgstr "Filtry ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Dokończ konfigurację Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "Pierwszy" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "Pierwszy uczestnik" @@ -4798,22 +4838,22 @@ msgstr "Pierwszy numer faktury" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Imię" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Imię" @@ -4843,16 +4883,16 @@ msgstr "Kwota stała" msgid "Fixed fee" msgstr "Stała opłata" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Opłata stała" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Stała opłata pobierana za transakcję" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "Opłata stała musi wynosić 0 lub więcej" @@ -4923,7 +4963,11 @@ msgstr "Piątek" msgid "Full data ownership" msgstr "Pełna własność danych" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Pełny zwrot" @@ -4931,11 +4975,11 @@ msgstr "Pełny zwrot" msgid "Full resolved address" msgstr "Pełny rozpoznany adres" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "przyszłe" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Tylko przyszłe terminy" @@ -4992,7 +5036,7 @@ msgstr "Zacznij" msgid "Get Tickets" msgstr "Zdobądź bilety" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Przygotuj swoje wydarzenie" @@ -5013,7 +5057,7 @@ msgstr "Wstecz" msgid "Go back to profile" msgstr "Wróć do profilu" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Przejdź do strony wydarzenia" @@ -5037,7 +5081,7 @@ msgstr "Kalendarz Google" msgid "Got it" msgstr "Rozumiem" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Przychód brutto" @@ -5045,22 +5089,22 @@ msgstr "Przychód brutto" msgid "Gross Revenue" msgstr "Przychód brutto" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Sprzedaż brutto" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Sprzedaż brutto" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5077,7 +5121,7 @@ msgstr "Goście" msgid "Happening now" msgstr "Trwa teraz" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Masz kod promocyjny?" @@ -5106,7 +5150,7 @@ msgstr "Oto komponent React, którego możesz użyć do osadzenia widżetu w swo msgid "Here is your affiliate link" msgstr "Oto Twój link partnerski" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Cześć {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Ukryte przed widokiem publicznym" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "Ukryte pytania są widoczne tylko dla organizatora wydarzenia, a nie dla klienta." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Ukryj" @@ -5239,8 +5283,8 @@ msgstr "Podgląd strony głównej" msgid "Homer" msgstr "Jan" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Godziny" @@ -5269,11 +5313,11 @@ msgstr "Jak często?" msgid "How to pay offline" msgstr "Jak płacić offline" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "W jaki sposób VAT jest naliczany do opłat platformy, którymi Cię obciążamy." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "Przekroczono limit znaków HTML: {htmlLength}/{maxLength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Węgierski" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Potwierdzam swoje obowiązki jako administratora danych" @@ -5305,11 +5349,11 @@ msgstr "Zgadzam się na otrzymywanie powiadomień e-mail związanych z tym wydar msgid "I agree to the <0>terms and conditions" msgstr "Zgadzam się z <0>regulaminem" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Potwierdzam, że jest to wiadomość transakcyjna związana z tym wydarzeniem" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Jeśli nowa karta nie otworzyła się automatycznie, kliknij przycisk poniżej, aby kontynuować płatność." @@ -5325,7 +5369,7 @@ msgstr "Jeśli włączone, personel odprawy może oznaczyć uczestników jako sp msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Jeśli włączone, organizator otrzyma powiadomienie e-mail, gdy zostanie złożone nowe zamówienie" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Jeśli nie zażądałeś tej zmiany, natychmiast zmień hasło." @@ -5370,11 +5414,11 @@ msgstr "Podszywanie się rozpoczęte" msgid "Impersonation stopped" msgstr "Podszywanie się zatrzymane" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Ważne ogłoszenie" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Ważne: Zmiana adresu e-mail zaktualizuje link do dostępu do tego zamówienia. Po zapisaniu zostaniesz przekierowany do nowego linku zamówienia." @@ -5390,7 +5434,7 @@ msgstr "Za {diffMinutes} minut" msgid "in last {0} min" msgstr "w ciągu ostatnich {0} min" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "Osobiście — ustaw miejsce" @@ -5401,15 +5445,15 @@ msgstr "stacjonarne, online, nieustawione lub mieszane" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Nieaktywny" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Nieaktywni użytkownicy nie mogą się zalogować." @@ -5483,12 +5527,12 @@ msgstr "Nieprawidłowy format e-maila" msgid "Invalid file type. Please upload an image." msgstr "Nieprawidłowy typ pliku. Prześlij obraz." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Nieprawidłowa składnia Liquid. Popraw ją i spróbuj ponownie." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Nieprawidłowy format numeru VAT" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Faktura" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Faktura została pomyślnie pobrana" @@ -5545,7 +5589,7 @@ msgstr "Ustawienia faktury" msgid "Italian" msgstr "Włoski" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Przedmiot" @@ -5628,7 +5672,7 @@ msgstr "przed chwilą" msgid "Just wrapped" msgstr "Właśnie się zakończyło" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Informuj mnie o nowościach i wydarzeniach od {0}" @@ -5647,13 +5691,13 @@ msgstr "Etykieta" msgid "Label for the occurrence" msgstr "Etykieta dla sesji" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "aktualizacje etykiety" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Język" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "Ostatnie 24 godziny" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "Ostatnie 30 dni" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "Ostatnie 6 miesięcy" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "Ostatnie 7 dni" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "Ostatnie 90 dni" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Nazwisko" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Nazwisko" @@ -5753,7 +5797,7 @@ msgstr "Ostatnio uruchomiony" msgid "Last Used" msgstr "Ostatnio używany" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Później" @@ -5786,7 +5830,7 @@ msgstr "Pozostaw włączone, aby obejmowało każdy bilet wydarzenia. Wyłącz, msgid "Let them know about the change" msgstr "Powiadom ich o zmianie" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Powiadom ich o zmianach" @@ -5830,12 +5874,11 @@ msgstr "Lista" msgid "List view" msgstr "Widok listy" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "Na żywo" @@ -5848,7 +5891,7 @@ msgstr "NA ŻYWO" msgid "Live Events" msgstr "Wydarzenia na żywo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Załadowane terminy" @@ -5872,8 +5915,8 @@ msgstr "Ładowanie webhooków" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Ładowanie..." @@ -5926,7 +5969,7 @@ msgstr "Lokalizacja zapisana" msgid "Location updated" msgstr "Lokalizacja zaktualizowana" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "aktualizacje lokalizacji" @@ -5990,7 +6033,7 @@ msgstr "Biuro główne" msgid "Make billing address mandatory during checkout" msgstr "Uczyń adres rozliczeniowy obowiązkowym podczas płatności" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "Zarządzaj uczestnikiem" msgid "Manage dates and times for your recurring event" msgstr "Zarządzaj terminami i godzinami swojego cyklicznego wydarzenia" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Zarządzaj wydarzeniem" @@ -6039,10 +6082,14 @@ msgstr "Zarządzaj zamówieniem" msgid "Manage payment and invoicing settings for this event." msgstr "Zarządzaj ustawieniami płatności i fakturowania dla tego wydarzenia." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Zarządzaj profilem" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Zarządzaj harmonogramem" @@ -6124,7 +6171,7 @@ msgstr "Średni" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Wiadomość" @@ -6141,7 +6188,7 @@ msgstr "Wyślij wiadomość do uczestnika" msgid "Message Attendees" msgstr "Wyślij wiadomość do uczestników" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Wyślij wiadomość do uczestników z konkretnymi biletami" @@ -6165,7 +6212,7 @@ msgstr "Treść wiadomości" msgid "Message Details" msgstr "Szczegóły wiadomości" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Wyślij wiadomość do indywidualnych uczestników" @@ -6173,15 +6220,15 @@ msgstr "Wyślij wiadomość do indywidualnych uczestników" msgid "Message is required" msgstr "Wiadomość jest wymagana" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Wyślij wiadomość do właścicieli zamówień z konkretnymi produktami" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Wiadomość zaplanowana" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Wiadomość wysłana" @@ -6212,8 +6259,8 @@ msgstr "Cena minimalna" msgid "minutes" msgstr "minut" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Minuty" @@ -6229,7 +6276,7 @@ msgstr "Ustawienia różne" msgid "Mo" msgstr "Pn" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Tryb" @@ -6282,7 +6329,7 @@ msgstr "Więcej akcji" msgid "Most Viewed Events (Last 14 Days)" msgstr "Najczęściej oglądane wydarzenia (ostatnie 14 dni)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Przesuń wszystkie terminy wcześniej lub później" @@ -6290,7 +6337,7 @@ msgstr "Przesuń wszystkie terminy wcześniej lub później" msgid "Multi line text box" msgstr "Pole tekstowe wielowierszowe" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Nazwa" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "Nazwa jest wymagana" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "Nazwa musi mieć mniej niż 255 znaków" @@ -6384,21 +6431,21 @@ msgstr "Dochód netto" msgid "Never" msgstr "Nigdy" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Nowa pojemność" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Nowa etykieta" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Nowa lokalizacja" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "Nowe hasło" @@ -6426,7 +6473,7 @@ msgstr "Życie nocne" msgid "No" msgstr "Nie" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "Nie - jestem osobą prywatną lub firmą niezarejestrowaną na VAT" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "Brak przypisań pojemności" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "Brak dostępnych list zameldowań dla tego wydarzenia." msgid "No check-ins yet" msgstr "Brak odpraw" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "Nie znaleziono konfiguracji" @@ -6537,7 +6584,7 @@ msgstr "Brak listy odpraw przypisanej do terminu" msgid "No dates available this month. Try navigating to another month." msgstr "Brak dostępnych terminów w tym miesiącu. Spróbuj przejść do innego miesiąca." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "Brak terminów pasujących do aktualnych filtrów." @@ -6582,8 +6629,8 @@ msgstr "Brak wydarzeń rozpoczynających się w ciągu następnych 24 godzin" msgid "No events to show" msgstr "Brak wydarzeń do wyświetlenia" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "Nie znaleziono zamówień" msgid "No orders to show" msgstr "Brak zamówień do wyświetlenia" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "Brak zamówień dla tego terminu." msgid "No organizer activity in the last 14 days" msgstr "Brak aktywności organizatora w ciągu ostatnich 14 dni" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "Brak dostępnego kontekstu organizatora." @@ -6733,7 +6780,7 @@ msgstr "Brak odpowiedzi jeszcze" msgid "No results" msgstr "Brak wyników" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Brak zapisanych lokalizacji" @@ -6793,16 +6840,16 @@ msgstr "Żadne zdarzenia webhook nie zostały jeszcze zarejestrowane dla tego pu msgid "No Webhooks" msgstr "Brak webhooków" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "Nie, zostaw mnie tutaj" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "nieedytowane" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Żaden" @@ -6870,7 +6917,7 @@ msgstr "Prefiks numeru" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Sesja" @@ -7005,7 +7052,7 @@ msgstr "Informacje o płatnościach offline" msgid "Offline Payments Settings" msgstr "Ustawienia płatności offline" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "Po rozpoczęciu zbierania danych, zobaczysz je tutaj." msgid "Ongoing" msgstr "Trwający" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "Trwający" msgid "Online" msgstr "Online" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "Online — podaj dane połączenia" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Online i stacjonarnie" @@ -7070,15 +7117,15 @@ msgstr "Szczegóły połączenia dla wydarzenia online" msgid "Online Event Details" msgstr "Szczegóły wydarzenia online" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Tylko administratorzy konta mogą usuwać lub archiwizować wydarzenia. Skontaktuj się z administratorem swojego konta w celu uzyskania pomocy." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Tylko administratorzy konta mogą usuwać lub archiwizować organizatorów. Skontaktuj się z administratorem swojego konta w celu uzyskania pomocy." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Wysyłaj tylko do zamówień z tymi statusami" @@ -7173,7 +7220,7 @@ msgstr "Zamówienie i bilet" msgid "Order #" msgstr "Zamówienie nr" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Zamówienie anulowane" @@ -7182,13 +7229,13 @@ msgstr "Zamówienie anulowane" msgid "Order Cancelled" msgstr "Zamówienie anulowane" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Zamówienie zakończone" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Potwierdzenie zamówienia" @@ -7273,7 +7320,7 @@ msgstr "Zamówienie oznaczone jako opłacone" msgid "Order Marked as Paid" msgstr "Zamówienie oznaczone jako opłacone" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Zamówienie nie znalezione" @@ -7297,7 +7344,7 @@ msgstr "Numer, data zakupu, email kupującego" msgid "Order owner" msgstr "Właściciel zamówienia" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Właściciele zamówień z konkretnym produktem" @@ -7327,7 +7374,7 @@ msgstr "Zamówienie zwrócone" msgid "Order Status" msgstr "Status zamówienia" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Statusy zamówień" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Limit czasu zamówienia" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Suma zamówienia" @@ -7357,7 +7404,7 @@ msgstr "Zamówienie zostało pomyślnie zaktualizowane" msgid "Order URL" msgstr "URL zamówienia" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "Zamówienie zostało anulowane" @@ -7374,8 +7421,8 @@ msgstr "zamówienia" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Nazwa organizacji" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Nazwa organizacji" msgid "Organizer" msgstr "Organizator" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Organizator został pomyślnie zarchiwizowany" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Panel organizatora" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Organizator został pomyślnie usunięty" @@ -7486,7 +7533,7 @@ msgstr "Nazwa organizatora" msgid "Organizer Not Found" msgstr "Organizator nie znaleziony" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Organizator został pomyślnie przywrócony" @@ -7504,7 +7551,7 @@ msgstr "Aktualizacja statusu organizatora nie powiodła się. Spróbuj ponownie msgid "Organizer status updated" msgstr "Status organizatora zaktualizowany" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Zostanie użyty szablon organizatora/domyślny" @@ -7512,7 +7559,7 @@ msgstr "Zostanie użyty szablon organizatora/domyślny" msgid "Organizers" msgstr "Organizatorzy" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Organizatorzy mogą zarządzać tylko wydarzeniami i produktami. Nie mogą zarządzać użytkownikami, ustawieniami konta ani informacjami rozliczeniowymi." @@ -7563,7 +7610,7 @@ msgstr "Wypełnienie" msgid "Page" msgstr "Strona" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Strona nie jest już dostępna" @@ -7575,7 +7622,7 @@ msgstr "Strona nie znaleziona" msgid "Page URL" msgstr "URL strony" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Wyświetlenia strony" @@ -7583,11 +7630,11 @@ msgstr "Wyświetlenia strony" msgid "Page Views" msgstr "Wyświetlenia strony" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "opłacony" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "Opłacone konta" msgid "Paid Product" msgstr "Opłacony produkt" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Częściowy zwrot" @@ -7623,7 +7670,7 @@ msgstr "Przekaż kupującemu" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Hasło" @@ -7694,7 +7741,7 @@ msgstr "Ładunek" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Płatność" @@ -7735,7 +7782,7 @@ msgstr "Metody płatności" msgid "Payment provider" msgstr "Dostawca płatności" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Płatność otrzymana" @@ -7747,7 +7794,7 @@ msgstr "Płatność otrzymana" msgid "Payment Status" msgstr "Status płatności" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "Płatność powiodła się!" @@ -7761,11 +7808,11 @@ msgstr "Płatności niedostępne" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Wypłaty" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "Oczekujące" @@ -7801,8 +7848,8 @@ msgstr "Procent" msgid "Percentage Amount" msgstr "Kwota procentowa" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Opłata procentowa" @@ -7810,11 +7857,11 @@ msgstr "Opłata procentowa" msgid "Percentage fee (%)" msgstr "Opłata procentowa (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "Procent musi wynosić od 0 do 100" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Procent kwoty transakcji" @@ -7822,11 +7869,11 @@ msgstr "Procent kwoty transakcji" msgid "Performance" msgstr "Wydajność" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Trwale usuń to wydarzenie i wszystkie powiązane dane." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Trwale usuń tego organizatora i wszystkie jego wydarzenia." @@ -7834,7 +7881,7 @@ msgstr "Trwale usuń tego organizatora i wszystkie jego wydarzenia." msgid "Permanently remove this date" msgstr "Trwale usuń ten termin" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Informacje osobiste" @@ -7842,7 +7889,7 @@ msgstr "Informacje osobiste" msgid "Phone" msgstr "Telefon" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Wybierz lokalizację" @@ -7892,7 +7939,7 @@ msgstr "Opłata platformy {0} odjęta od Twojej wypłaty" msgid "Platform Fees" msgstr "Opłaty platformy" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Raport opłat platformy" @@ -7918,7 +7965,7 @@ msgstr "Sprawdź swój email i hasło i spróbuj ponownie" msgid "Please check your email is valid" msgstr "Sprawdź, czy Twój email jest prawidłowy" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Sprawdź swój email, aby potwierdzić adres email" @@ -7926,7 +7973,7 @@ msgstr "Sprawdź swój email, aby potwierdzić adres email" msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Sprawdź swój bilet pod kątem zaktualizowanej godziny. Twoje bilety są nadal ważne — nie musisz nic robić, chyba że nowe godziny Ci nie odpowiadają. Odpowiedz na ten e-mail w razie pytań." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Kontynuuj w nowej karcie" @@ -7955,7 +8002,7 @@ msgstr "Wprowadź prawidłowy URL" msgid "Please enter the 5-digit code" msgstr "Wprowadź 5-cyfrowy kod" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Wprowadź swój numer VAT" @@ -7971,11 +8018,11 @@ msgstr "Podaj obraz." msgid "Please restart the checkout process." msgstr "Uruchom ponownie proces płatności." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Wróć do strony wydarzenia, aby zacząć od nowa." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Wybierz datę i godzinę" @@ -7987,7 +8034,7 @@ msgstr "Wybierz zakres dat" msgid "Please select an image." msgstr "Wybierz obraz." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Wybierz co najmniej jeden produkt" @@ -7998,7 +8045,7 @@ msgstr "Wybierz co najmniej jeden produkt" msgid "Please try again." msgstr "Spróbuj ponownie." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Zweryfikuj swój adres email, aby uzyskać dostęp do wszystkich funkcji" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Poczekaj, przygotowujemy Twoich uczestników do eksportu..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Poczekaj, przygotowujemy Twoją fakturę..." @@ -8124,7 +8171,7 @@ msgstr "Podgląd wydruku" msgid "Print Ticket" msgstr "Drukuj bilet" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Drukuj bilety" @@ -8139,7 +8186,7 @@ msgstr "Drukuj do PDF" msgid "Privacy Policy" msgstr "Polityka prywatności" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Przetwórz zwrot" @@ -8180,7 +8227,7 @@ msgstr "Produkt został pomyślnie usunięty" msgid "Product Price Type" msgstr "Typ ceny produktu" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Produkt(y)" msgid "Products" msgstr "Produkty" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Sprzedane produkty" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Sprzedane produkty" msgid "Products sorted successfully" msgstr "Produkty zostały pomyślnie posortowane" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Profil" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Profil został pomyślnie zaktualizowany" @@ -8251,7 +8298,7 @@ msgstr "Profil został pomyślnie zaktualizowany" msgid "Progress" msgstr "Postęp" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Kod promocyjny {promo_code} zastosowany" @@ -8298,7 +8345,7 @@ msgstr "Raport kodów promocyjnych" msgid "Promo Only" msgstr "Tylko promocyjne" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "E-maile promocyjne mogą skutkować zawieszeniem konta" @@ -8310,11 +8357,11 @@ msgstr "" "Podaj dodatkowy kontekst lub instrukcje dla tego pytania. Użyj tego pola, aby dodać warunki\n" "oraz zasady, wskazówki lub inne ważne informacje, które uczestnicy muszą znać przed udzieleniem odpowiedzi." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Podaj co najmniej jedno pole adresu dla nowej lokalizacji." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Podaj poniższe informacje przed kolejną kontrolą Stripe, aby zachować płynność wypłat." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Dostawca" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Opublikuj" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "Analityka w czasie rzeczywistym" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Otrzymuj aktualizacje produktów od {0}." @@ -8439,6 +8486,10 @@ msgstr "Otrzymuj aktualizacje produktów od {0}." msgid "Recent Account Signups" msgstr "Ostatnie rejestracje kont" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Ostatni uczestnicy" @@ -8447,7 +8498,7 @@ msgstr "Ostatni uczestnicy" msgid "Recent check-ins" msgstr "Ostatnie odprawy" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "Ostatnie zamówienia" msgid "recipient" msgstr "odbiorca" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Odbiorca" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "odbiorców" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Odbiorcy" msgid "Recipients are available after the message is sent" msgstr "Odbiorcy są dostępni po wysłaniu wiadomości" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Cykliczne" @@ -8517,7 +8569,7 @@ msgstr "Zwróć wszystkie zamówienia dla tych terminów" msgid "Refund all orders for this date" msgstr "Zwróć wszystkie zamówienia dla tego terminu" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Kwota zwrotu" @@ -8537,7 +8589,7 @@ msgstr "Zwrot wykonany" msgid "Refund order" msgstr "Zwróć zamówienie" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Zwróć zamówienie {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "Status zwrotu" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Zwrócony" @@ -8571,7 +8623,7 @@ msgstr "Zwrócony: {0}" msgid "Refunds" msgstr "Zwroty" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Ustawienia regionalne" @@ -8598,18 +8650,18 @@ msgstr "Pozostałe użycia" msgid "Reminder scheduled" msgstr "Przypomnienie zaplanowane" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "usuń" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Usuń" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Usuń etykietę ze wszystkich terminów" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Wyślij ponownie email potwierdzenia" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "Wyślij ponownie email" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "Wyślij ponownie potwierdzenie emaila" @@ -8688,7 +8741,7 @@ msgstr "Wyślij ponownie bilet" msgid "Resend ticket email" msgstr "Wyślij ponownie email biletu" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Wysyłanie ponownie..." @@ -8729,30 +8782,30 @@ msgstr "Odpowiedź" msgid "Response Details" msgstr "Szczegóły odpowiedzi" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Przywróć" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Przywróć wydarzenie" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Przywróć wydarzenie" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Przywróć organizatora" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Przywróć to wydarzenie, aby ponownie było widoczne." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Przywróć tego organizatora i ponownie uczyń go aktywnym." @@ -8777,7 +8830,7 @@ msgstr "Spróbuj ponownie zadanie" msgid "Return to Event" msgstr "Wróć do wydarzenia" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Wróć do strony wydarzenia" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Użyj ponownie połączenia Stripe innego organizatora w tym koncie." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Przychody" @@ -8818,7 +8872,7 @@ msgstr "Cofnij zaproszenie" msgid "Revoke Offer" msgstr "Cofnij ofertę" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Sprzedaż rozpoczyna się {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Sprzedaż" @@ -8930,7 +8984,7 @@ msgstr "Sobota" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Sobota" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Zapisz" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Zapisz projekt biletu" msgid "Save VAT settings" msgstr "Zapisz ustawienia VAT" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "Zapisz ustawienia VAT" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Zapisana lokalizacja" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Zapisane lokalizacje" @@ -9015,7 +9069,7 @@ msgstr "Zapisane lokalizacje" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "Zapisanie nadpisania tworzy dedykowaną konfigurację dla tego organizatora, jeśli aktualnie używa domyślnych ustawień systemowych." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Skanuj" @@ -9035,6 +9089,10 @@ msgstr "Tryb skanera" msgid "Schedule" msgstr "Harmonogram" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Harmonogram pomyślnie utworzony" @@ -9043,11 +9101,11 @@ msgstr "Harmonogram pomyślnie utworzony" msgid "Schedule ends on" msgstr "Harmonogram kończy się" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Zaplanuj na później" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Zaplanuj wiadomość" @@ -9061,11 +9119,11 @@ msgstr "Harmonogram rozpoczyna się" msgid "Scheduled" msgstr "Zaplanowane" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Zaplanowany czas" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Szukaj" @@ -9228,11 +9286,11 @@ msgstr "Zaznacz wszystko" msgid "Select all on {0}" msgstr "Zaznacz wszystko w {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Wybierz wydarzenie" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Wybierz grupę uczestników" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Wybierz poziom produktu" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Wybierz produkty" @@ -9298,7 +9356,7 @@ msgstr "Wybierz datę i czas rozpoczęcia" msgid "Select start time" msgstr "Wybierz czas rozpoczęcia" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Wybierz status" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Wybierz bilet" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Wybierz bilety" @@ -9325,7 +9383,7 @@ msgstr "Wybierz okres czasu" msgid "Select timezone" msgstr "Wybierz strefę czasową" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Wybierz, którzy uczestnicy powinni otrzymać tę wiadomość" @@ -9359,11 +9417,11 @@ msgstr "Szybko się sprzedaje 🔥" msgid "Send" msgstr "Wyślij" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Wyślij wiadomość" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Wyślij jako test" @@ -9371,20 +9429,20 @@ msgstr "Wyślij jako test" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "Wysyłaj e-maile do uczestników, posiadaczy biletów lub właścicieli zamówień. Wiadomości mogą być wysłane natychmiast lub zaplanowane na później." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Wyślij mi kopię" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Wyślij wiadomość" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Wyślij teraz" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Wyślij potwierdzenie zamówienia i email biletu" @@ -9392,7 +9450,7 @@ msgstr "Wyślij potwierdzenie zamówienia i email biletu" msgid "Send real-time order and attendee data to your external systems." msgstr "Wysyłaj w czasie rzeczywistym dane o zamówieniach i uczestnikach do swoich zewnętrznych systemów." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Wyślij email powiadomienia o zwrocie" @@ -9400,11 +9458,11 @@ msgstr "Wyślij email powiadomienia o zwrocie" msgid "Send reset link" msgstr "Wyślij link resetowania" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Wyślij test" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Wyślij do wszystkich sesji lub wybierz konkretną" @@ -9429,15 +9487,15 @@ msgstr "Wysłane" msgid "Sent By" msgstr "Wysłane przez" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Wysyłane do uczestników, gdy zaplanowany termin zostanie anulowany" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Wysłane do klientów, gdy złożą zamówienie" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Wysłane do każdego uczestnika z jego szczegółami biletu" @@ -9490,7 +9548,7 @@ msgstr "Ustaw domyślne ustawienia opłat platformy dla nowych wydarzeń utworzo msgid "Set default settings for new events created under this organizer." msgstr "Ustaw domyślne ustawienia dla nowych wydarzeń utworzonych pod tym organizatorem." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Ustaw, jak długo trwa każdy termin" @@ -9498,11 +9556,11 @@ msgstr "Ustaw, jak długo trwa każdy termin" msgid "Set number of dates" msgstr "Ustaw liczbę terminów" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Ustaw lub wyczyść etykietę terminu" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Ustaw godzinę zakończenia każdego terminu na taki czas po jego rozpoczęciu." @@ -9510,7 +9568,7 @@ msgstr "Ustaw godzinę zakończenia każdego terminu na taki czas po jego rozpoc msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Ustaw numer początkowy numeracji faktur. Nie można tego zmienić po wygenerowaniu faktur." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Ustaw na bez limitu (usuń limit)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Ustaw listy odpraw dla różnych wejść, sesji lub dni." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Skonfiguruj wypłaty" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Skonfiguruj harmonogram" msgid "Set up your organization" msgstr "Ustaw swoją organizację" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Skonfiguruj swój harmonogram" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Ustaw, zmień lub usuń lokalizację lub dane online sesji" @@ -9599,11 +9665,11 @@ msgstr "Udostępnij stronę organizatora" msgid "Shared Capacity Management" msgstr "Zarządzanie wspólną pojemnością" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Przesuń godziny" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "Przesunięto godziny dla {count} termin(ów)" @@ -9635,8 +9701,8 @@ msgstr "Pokaż checkbox opt-in marketingu" msgid "Show marketing opt-in checkbox by default" msgstr "Pokaż checkbox opt-in marketingu domyślnie" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Pokaż więcej" @@ -9673,7 +9739,7 @@ msgstr "Wyświetlanie {0}–{1} z {2}" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "Wyświetlanie {MAX_VISIBLE} z {totalAvailable} terminów. Wpisz, aby wyszukać." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "Wyświetlanie pierwszych {0} — pozostałe {1} sesja(e) nadal zostaną uwzględnione przy wysyłaniu wiadomości." @@ -9710,7 +9776,7 @@ msgstr "Pojedyncze wydarzenie" msgid "Single line text box" msgstr "Pole tekstowe jednoliniowe" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Pomiń ręcznie edytowane terminy" @@ -9745,7 +9811,7 @@ msgstr "Linki społeczne i strona internetowa" msgid "Sold" msgstr "Sprzedane" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Niektóre dane są ukryte w dostępie publicznym. Zaloguj się, aby zoba #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Coś poszło nie tak" @@ -9784,7 +9850,7 @@ msgstr "Coś poszło nie tak, spróbuj ponownie lub skontaktuj się z pomocą, j msgid "Something went wrong! Please try again" msgstr "Coś poszło nie tak! Spróbuj ponownie" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Coś poszło nie tak." @@ -9796,12 +9862,12 @@ msgstr "Coś poszło nie tak. Spróbuj ponownie później." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Coś poszło nie tak. Spróbuj ponownie." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Przepraszamy, ten kod promocyjny nie jest rozpoznany" @@ -9897,12 +9963,12 @@ msgstr "Rozpoczyna się jutro" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "Staat lub region" @@ -9914,7 +9980,7 @@ msgstr "Statystyki" msgid "Statistics are based on account creation date" msgstr "Statystyki są oparte na dacie utworzenia konta" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Statystyki" @@ -9931,7 +9997,7 @@ msgstr "Statystyki" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "Identyfikator płatności Stripe" msgid "Stripe payments are not enabled for this event." msgstr "Płatności Stripe nie są włączone dla tego wydarzenia." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Stripe wkrótce poprosi o więcej informacji" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "Nd" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "Temat jest wymagany" msgid "Subject will appear here" msgstr "Temat pojawi się tutaj" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Temat:" @@ -10024,11 +10090,11 @@ msgstr "Razem część" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Powodzenie" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Powodzenie! {0} otrzyma email wkrótce." @@ -10173,7 +10239,7 @@ msgstr "Ustawienia pomyślnie zaktualizowane" msgid "Successfully Updated Social Links" msgstr "Pomyślnie zaktualizowane linki społeczne" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Ustawienia śledzenia pomyślnie zaktualizowane" @@ -10226,7 +10292,7 @@ msgstr "Szwedzki" msgid "Switch Organizer" msgstr "Zmień organizatora" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Domyślnie systemowe" @@ -10238,7 +10304,7 @@ msgstr "Koszulka" msgid "Tap this screen to resume scanning" msgstr "Dotknij ekranu, aby wznowić" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "Docelowo uczestnicy z {0} wybranych sesji." @@ -10336,7 +10402,7 @@ msgstr "Powiedz nam o Twojej organizacji. Informacja ta będzie wyświetlana na msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Powiedz nam, jak często powtarza się Twoje wydarzenie, a utworzymy dla Ciebie wszystkie terminy." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Podaj swój status rejestracji VAT, abyśmy mogli zastosować właściwą obsługę VAT do opłat platformy." @@ -10344,15 +10410,15 @@ msgstr "Podaj swój status rejestracji VAT, abyśmy mogli zastosować właściw msgid "Template Active" msgstr "Szablon aktywny" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Szablon utworzony pomyślnie" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Szablon usunięty pomyślnie" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Szablon zapisany pomyślnie" @@ -10378,8 +10444,8 @@ msgstr "Dziękujemy za udział!" msgid "Thanks," msgstr "Dziękujemy," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Ten kod promocyjny jest nieprawidłowy" @@ -10399,7 +10465,7 @@ msgstr "Lista kontrolna, której szukasz, nie istnieje." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "Kod wygaśnie za 10 minut. Sprawdź folder spam, jeśli nie widzisz wiadomości e-mail." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "Waluta, w której zdefiniowana jest stała opłata. Zostanie przeliczona na walutę zamówienia przy finalizacji zakupu." @@ -10417,7 +10483,7 @@ msgstr "Domyślna waluta dla Twoich imprez." msgid "The default timezone for your events." msgstr "Domyślna strefa czasowa dla Twoich imprez." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "Adres e-mail został zmieniony. Uczestnik otrzyma nowy bilet na zaktualizowany adres e-mail." @@ -10442,7 +10508,7 @@ msgstr "Pierwsza data, od której ten harmonogram będzie generowany." msgid "The full event address" msgstr "Pełny adres imprezy" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "Pełna kwota zamówienia zostanie zwrócona do oryginalnej metody płatności klienta." @@ -10466,7 +10532,7 @@ msgstr "Język klienta" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "Maksimum to {MAX_PREVIEW} sesji. Zmniejsz zakres dat, częstotliwość lub liczbę sesji dziennie." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "Maksymalna liczba produktów dla {0} to {1}" @@ -10475,7 +10541,7 @@ msgstr "Maksymalna liczba produktów dla {0} to {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "Organizator, którego szukasz, nie został znaleziony. Strona mogła być przeniesiona, usunięta lub adres URL może być nieprawidłowy." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "Nadpisanie jest zapisywane w dzienniku audytu zamówienia." @@ -10499,11 +10565,11 @@ msgstr "Cena wyświetlana klientowi nie będzie zawierać podatków i opłat. B msgid "The primary brand color used for buttons and highlights" msgstr "Podstawowy kolor marki używany na przyciskach i podświetleniach" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "Zaplanowany czas jest wymagany" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "Zaplanowany czas musi być w przyszłości" @@ -10511,8 +10577,8 @@ msgstr "Zaplanowany czas musi być w przyszłości" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "Sesja \"{title}\" pierwotnie zaplanowana na {0} została przeniesiona." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "Treść szablonu zawiera nieprawidłową składnię Liquid. Proszę to poprawić i spróbować ponownie." @@ -10521,7 +10587,7 @@ msgstr "Treść szablonu zawiera nieprawidłową składnię Liquid. Proszę to p msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "Tytuł wydarzenia, który będzie wyświetlany w wynikach wyszukiwarki i podczas udostępniania w mediach społecznościowych. Domyślnie będzie używany tytuł wydarzenia" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "Numer VAT nie mógł być zweryfikowany. Proszę sprawdzić numer i spróbować ponownie." @@ -10534,19 +10600,19 @@ msgstr "Teatr" msgid "Theme & Colors" msgstr "Motyw i kolory" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "Brak dostępnych produktów dla tego wydarzenia" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "Brak dostępnych produktów w tej kategorii" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "Brak nadchodzących terminów dla tego wydarzenia" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "Zwrot jest w toku. Proszę czekać na jego zakończenie przed złożeniem nowego żądania zwrotu." @@ -10578,7 +10644,7 @@ msgstr "Te szczegóły są wyświetlane na bilecie uczestnika i podsumowaniu zam msgid "These details will only be shown if the order is completed successfully." msgstr "Te szczegóły będą widoczne tylko po pomyślnym sfinalizowaniu zamówienia." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Te dane zastąpią dotychczasową lokalizację na objętych sesjach i pojawią się na biletach uczestników." @@ -10586,11 +10652,11 @@ msgstr "Te dane zastąpią dotychczasową lokalizację na objętych sesjach i po msgid "These settings apply only to copied embed code and won't be stored." msgstr "Te ustawienia mają zastosowanie tylko do skopiowanego kodu osadzanego i nie będą przechowywane." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Te szablony będą używane jako domyślne dla wszystkich wydarzeń w Twojej organizacji. Poszczególne wydarzenia mogą zastąpić te szablony własnymi wersjami niestandardowymi." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Te szablony będą zastępować domyślne ustawienia organizatora tylko dla tego wydarzenia. Jeśli tutaj nie jest ustawiony żaden niestandardowy szablon, zostanie użyty szablon organizatora." @@ -10598,11 +10664,11 @@ msgstr "Te szablony będą zastępować domyślne ustawienia organizatora tylko msgid "Third" msgstr "Trzeci" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Dotyczy każdego pasującego terminu w wydarzeniu, w tym terminów, które nie są aktualnie widoczne. Uczestnicy zarejestrowani na którymkolwiek z tych terminów będą dostępni w kreatorze wiadomości po zakończeniu aktualizacji." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Ten uczestnik ma nieopłacone zamówienie." @@ -10660,11 +10726,11 @@ msgstr "Ten termin został anulowany. Nadal możesz go usunąć, aby trwale go w msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Ten termin jest w przeszłości. Zostanie utworzony, ale nie będzie widoczny dla uczestników wśród nadchodzących terminów." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Ten termin jest oznaczony jako wyprzedany." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Ten termin nie jest już dostępny. Wybierz inny termin." @@ -10713,19 +10779,19 @@ msgstr "Ta wiadomość będzie zawarta w stopce wszystkich e-maili wysłanych z msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Ta wiadomość będzie wyświetlana tylko wtedy, gdy zamówienie zostanie pomyślnie zrealizowane. Zamówienia oczekujące na płatność nie będą wyświetlać tej wiadomości" -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Ta nazwa jest widoczna dla użytkowników końcowych" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Ta sesja osiągnęła maksymalną pojemność" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "To zamówienie zostało już opłacone." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "To zamówienie zostało już zwrócone." @@ -10733,7 +10799,7 @@ msgstr "To zamówienie zostało już zwrócone." msgid "This order has been cancelled." msgstr "To zamówienie zostało anulowane." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "To zamówienie wygasło. Proszę spróbować ponownie." @@ -10745,15 +10811,15 @@ msgstr "To zamówienie jest przetwarzane." msgid "This order is complete." msgstr "To zamówienie jest pełne." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Ta strona zamówienia nie jest już dostępna." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "To zamówienie zostało porzucone. Możesz rozpocząć nowe zamówienie w dowolnym momencie." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "To zamówienie zostało anulowane. Możesz rozpocząć nowe zamówienie w dowolnym momencie." @@ -10785,7 +10851,7 @@ msgstr "Ten produkt jest wyróżniony na stronie wydarzenia" msgid "This product is sold out" msgstr "Ten produkt jest wyprzedany" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Ten raport jest tylko do celów informacyjnych. Zawsze konsultuj się z profesjonalistą podatkowymi przed użyciem tych danych do celów rachunkowych lub podatkowych. Proszę odnieść się do pulpitu Stripe, ponieważ Hi.Events może brakować danych historycznych." @@ -10797,11 +10863,11 @@ msgstr "Ten link resetowania hasła jest nieprawidłowy lub wygasł." msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Ten bilet właśnie został zeskanowany. Proszę czekać przed zeskanowaniem ponownie." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Ten użytkownik nie jest aktywny, ponieważ nie zaakceptował zaproszenia." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Wpłynie to na {loadedAffectedCount} termin(ów)." @@ -10913,6 +10979,10 @@ msgstr "Cena biletu" msgid "Ticket resent successfully" msgstr "Bilet został pomyślnie ponownie wysłany" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "Sprzedaż biletów na to wydarzenie została zakończona" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Godzina" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Pozostały czas:" @@ -10994,7 +11064,7 @@ msgstr "Liczba użyć" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Strefa czasowa" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "Aby zwiększyć swoje limity, skontaktuj się z nami pod adresem" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "Najlepsi organizatorzy (ostatnie 14 dni)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Razem" @@ -11075,11 +11146,11 @@ msgstr "Łączna liczba wpisów" msgid "Total Fee" msgstr "Łączna opłata" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Łączna sprzedaż brutto" msgid "Total order amount" msgstr "Łączna kwota zamówienia" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "Razem zwrócono" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Razem zwrócono" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Śledź wzrost konta i wydajność według źródła atrybuacji" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Typ" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Wpisz \"usuń\", aby potwierdzić" @@ -11222,7 +11293,7 @@ msgstr "Nie można wylogować uczestnika" msgid "Unable to create product. Please check the your details" msgstr "Nie można stworzyć produktu. Proszę sprawdzić swoje dane" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Nie można stworzyć produktu. Proszę sprawdzić swoje dane" @@ -11246,7 +11317,7 @@ msgstr "Nie udało się dołączyć do listy oczekujących" msgid "Unable to load attendee details." msgstr "Nie można załadować szczegółów uczestnika." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Nie można załadować produktów dla tego terminu. Spróbuj ponownie." @@ -11284,7 +11355,7 @@ msgstr "Stany Zjednoczone" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Nieznany" @@ -11304,7 +11375,7 @@ msgstr "Nieznany uczestnik" msgid "Unlimited" msgstr "Bez limitu" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Bez limitu dostępny" @@ -11316,12 +11387,12 @@ msgstr "Dozwolone nieograniczone użycia" msgid "Unnamed" msgstr "Bez nazwy" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Lokalizacja bez nazwy" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Nieopłacone zamówienie" @@ -11337,7 +11408,7 @@ msgstr "Niezaufane" msgid "Upcoming" msgstr "Nadchodzące" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "Aktualizuj {0}" msgid "Update Affiliate" msgstr "Aktualizuj partnera afiliacji" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Zaktualizuj pojemność" @@ -11365,15 +11436,15 @@ msgstr "Zaktualizuj nazwę i opis wydarzenia" msgid "Update event name, description and dates" msgstr "Aktualizuj nazwę wydarzenia, opis i daty" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Zaktualizuj etykietę" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Aktualizuj lokalizację" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Aktualizuj profil" @@ -11385,19 +11456,19 @@ msgstr "Aktualizacja: {subjectTitle} — zmiany w harmonogramie" msgid "Update: {subjectTitle} — session time changed" msgstr "Aktualizacja: {subjectTitle} — zmiana godziny sesji" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "Zaktualizowano {count} termin(ów)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "Zaktualizowano pojemność dla {count} termin(ów)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "Zaktualizowano etykietę dla {count} termin(ów)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Zaktualizowano lokalizację dla {count} sesji" @@ -11507,14 +11578,14 @@ msgstr "Zarządzanie użytkownikami" msgid "Users" msgstr "Użytkownicy" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Użytkownicy mogą zmienić swój e-mail w <0>Ustawieniach profilu" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11526,13 +11597,13 @@ msgstr "Analityka UTM" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "Weryfikowanie Twojego numeru VAT..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "VAT" @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "Numer VAT" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "Numer VAT" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "Numer VAT nie może zawierać spacji" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "Numer VAT musi zaczynać się od 2-literowego kodu kraju, po którym następuje 8-15 znaków alfanumerycznych (np. DE123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "Numer VAT pomyślnie zweryfikowany" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "Weryfikacja numeru VAT nie powiodła się" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "Weryfikacja numeru VAT nie powiodła się. Sprawdź swój numer VAT." @@ -11581,12 +11652,12 @@ msgstr "Stawka VAT" msgid "VAT registered" msgstr "Zarejestrowany jako podatnik VAT" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "Ustawienia VAT pomyślnie zapisane" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "Ustawienia VAT zapisane. Weryfikujemy Twój numer VAT w tle." @@ -11594,15 +11665,15 @@ msgstr "Ustawienia VAT zapisane. Weryfikujemy Twój numer VAT w tle." msgid "VAT settings updated" msgstr "Ustawienia VAT zaktualizowane" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "Traktowanie VAT dla opłat platformy" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "Traktowanie VAT dla opłat platformy: firmy zarejestrowane jako podatnicy VAT w UE mogą korzystać z mechanizmu odwrotnego obciążenia (0% — Artykuł 196 dyrektywy VAT 2006/112/WE). Firmy niezarejestrowane jako podatnicy VAT są obciążane irlandzkim VAT w wysokości 23%." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "Usługa weryfikacji VAT jest tymczasowo niedostępna" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "Nazwa miejsca" msgid "Verification code" msgstr "Kod weryfikacyjny" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "Zweryfikuj e-mail" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Zweryfikuj swój e-mail" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "Weryfikowanie..." @@ -11655,8 +11735,7 @@ msgstr "Zobacz" msgid "View All" msgstr "Zobacz wszystko" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "Zobacz szczegóły {0} {1}" msgid "View Event" msgstr "Zobacz wydarzenie" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Zobacz stronę wydarzenia" @@ -11729,8 +11808,8 @@ msgstr "Zobacz w Mapach Google" msgid "View Order" msgstr "Zobacz zamówienie" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Zobacz szczegóły zamówienia" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "Oczekuje" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "Oczekiwanie na płatność" @@ -11800,7 +11879,7 @@ msgstr "Lista oczekujących" msgid "Waitlist Enabled" msgstr "Lista oczekujących włączona" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "Oferta z listy oczekujących wygasła" @@ -11808,7 +11887,7 @@ msgstr "Oferta z listy oczekujących wygasła" msgid "Waitlist triggered" msgstr "Lista oczekujących uruchomiona" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Ostrzeżenie: To jest domyślna konfiguracja systemu. Zmiany wpłyną na wszystkie konta, które nie mają przypisanej konkretnej konfiguracji." @@ -11844,7 +11923,7 @@ msgstr "Nie mogliśmy znaleźć szukanego zamówienia. Link mógł wygasnąć lu msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "Nie mogliśmy znaleźć szukanego biletu. Link mógł wygasnąć lub szczegóły biletu mogły się zmienić." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "Nie mogliśmy znaleźć tego zamówienia. Mogło zostać usunięte." @@ -11860,7 +11939,7 @@ msgstr "Nie udało się teraz połączyć ze Stripe. Spróbuj ponownie za chwil msgid "We couldn't reorder the categories. Please try again." msgstr "Nie mogliśmy zmienić kolejności kategorii. Proszę spróbować ponownie." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Napotkaliśmy problem podczas ładowania tej strony. Proszę spróbować ponownie." @@ -11881,6 +11960,10 @@ msgstr "Zalecamy wymiary 1950px na 650px, współczynnik 3:1 i maksymalny rozmia msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "Zalecamy wymiary 400px na 400px i maksymalny rozmiar pliku 5MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "Używamy plików cookie, aby pomóc nam zrozumieć, jak strona jest używana, i poprawić Twoje doświadczenia." @@ -11889,7 +11972,7 @@ msgstr "Używamy plików cookie, aby pomóc nam zrozumieć, jak strona jest uży msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "Nie mogliśmy potwierdzić Twojej płatności. Proszę spróbować ponownie lub skontaktować się z pomocą techniczną." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "Nie mogliśmy zweryfikować numeru VAT po wielu próbach. Będziemy kontynuować próby w tle. Proszę sprawdzić później." @@ -11897,16 +11980,16 @@ msgstr "Nie mogliśmy zweryfikować numeru VAT po wielu próbach. Będziemy kont msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "Powiadomimy Cię e-mailem, gdy zwolni się miejsce dla {productDisplayName}." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Po zapisaniu otworzymy kreator wiadomości z wstępnie wypełnionym szablonem. Przejrzyj go i wyślij — nic nie jest wysyłane automatycznie." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "Wyślemy Twoje bilety na ten e-mail" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "Zweryfikujemy Twój numer VAT w tle. W przypadku jakichkolwiek problemów damy Ci znać." @@ -12003,7 +12086,7 @@ msgstr "Witamy na pokładzie! Proszę zalogować się, aby kontynuować." msgid "Welcome back" msgstr "Witamy ponownie" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Witamy ponownie{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Wellness" msgid "What are Tiered Products?" msgstr "Czym są produkty warstwowe?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "Czym jest kategoria?" @@ -12143,6 +12226,10 @@ msgstr "Gdy odprawa się zakończy" msgid "When check-in opens" msgstr "Gdy odprawa się rozpocznie" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "Gdy włączone, faktury będą generowane dla zamówień biletów. Faktury będą wysyłane wraz z e-mailem potwierdzenia zamówienia. Uczestnicy mogą również pobrać faktury ze strony potwierdzenia zamówienia." @@ -12155,7 +12242,7 @@ msgstr "Gdy włączone, nowe wydarzenia pozwolą uczestnikom zarządzać własny msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "Gdy włączone, nowe wydarzenia wyświetlą pole wyboru zgody marketingowej podczas realizacji zamówienia. Można to zmienić dla każdego wydarzenia." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "Gdy włączone, nie będą pobierane opłaty aplikacyjne za transakcje Stripe Connect. Użyj tego dla krajów, w których opłaty aplikacyjne nie są obsługiwane." @@ -12191,11 +12278,11 @@ msgstr "Podgląd widgetu" msgid "Widget Settings" msgstr "Ustawienia widgetu" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "W toku" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "rok" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Od początku roku" @@ -12247,11 +12334,11 @@ msgstr "lata" msgid "Yes" msgstr "Tak" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Tak - mam ważny numer rejestracji VAT w UE" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Tak, anuluj moje zamówienie" @@ -12267,7 +12354,7 @@ msgstr "Zmieniasz swój e-mail na <0>{0}." msgid "You are impersonating <0>{0} ({1})" msgstr "Podszywa się pod <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Wystawiasz częściowy zwrot. Klient otrzyma zwrot {0} {1}." @@ -12292,7 +12379,7 @@ msgstr "Możesz nadpisać to dla poszczególnych terminów później." msgid "You can still manually offer tickets if needed." msgstr "W razie potrzeby nadal możesz ręcznie oferować bilety." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "Nie możesz zarchiwizować ostatniego aktywnego organizatora na swoim koncie." @@ -12313,11 +12400,11 @@ msgstr "Nie możesz usunąć ostatniej kategorii." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "Nie możesz usunąć tej warstwy cenowej, ponieważ istnieją już produkty sprzedane dla tej warstwy. Możesz ją zamiast tego ukryć." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "Nie możesz edytować roli lub statusu właściciela konta." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "Nie możesz zwrócić ręcznie utworzonego zamówienia." @@ -12333,11 +12420,11 @@ msgstr "Już zaakceptowałeś to zaproszenie. Proszę zalogować się, aby konty msgid "You have no pending email change." msgstr "Nie masz oczekującej zmiany e-mail." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "Osiągnąłeś limit wiadomości." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "Skończył się czas na ukończenie zamówienia." @@ -12345,11 +12432,11 @@ msgstr "Skończył się czas na ukończenie zamówienia." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Masz podatki i opłaty dodane do darmowego produktu. Czy chcesz je usunąć?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "Musisz potwierdzić, że ten e-mail nie jest promocyjny" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Musisz potwierdzić swoje obowiązki przed zapisaniem" @@ -12409,7 +12496,7 @@ msgstr "Będziesz potrzebować produktu, zanim będziesz mógł utworzyć przypi msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Będziesz potrzebować co najmniej jednego produktu, aby zacząć. Darmowy, płatny lub pozwól użytkownikowi zdecydować, ile zapłacić." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Zmieniasz godziny sesji" @@ -12421,7 +12508,7 @@ msgstr "Idziesz na {0}!" msgid "You're on the waitlist!" msgstr "Jesteś na liście oczekujących!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "Zaproponowano Ci miejsce!" @@ -12429,7 +12516,7 @@ msgstr "Zaproponowano Ci miejsce!" msgid "You've changed the session time" msgstr "Zmieniono godzinę sesji" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Twoje konto ma limity wiadomości. Aby zwiększyć swoje limity, skontaktuj się z nami pod adresem" @@ -12457,11 +12544,11 @@ msgstr "Twoja niesamowita strona internetowa 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "Twoja lista odpraw została pomyślnie utworzona. Udostępnij poniższy link personelowi odprawy." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "Twoje obecne zamówienie zostanie utracone." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Twoje szczegóły" @@ -12469,7 +12556,7 @@ msgstr "Twoje szczegóły" msgid "Your Email" msgstr "Twój e-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "Twoja prośba o zmianę e-maila na <0>{0} jest w toku. Proszę sprawdzić e-mail, aby potwierdzić" @@ -12497,7 +12584,7 @@ msgstr "Twoje imię" msgid "Your new password must be at least 8 characters long." msgstr "Twoje nowe hasło musi mieć co najmniej 8 znaków." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Twoje zamówienie" @@ -12509,7 +12596,7 @@ msgstr "Szczegóły Twojego zamówienia zostały zaktualizowane. E-mail potwierd msgid "Your order has been cancelled" msgstr "Twoje zamówienie zostało anulowane" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "Twoje zamówienie zostało anulowane." @@ -12534,7 +12621,7 @@ msgstr "Adres Twojego organizatora" msgid "Your password" msgstr "Twoje hasło" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Twoja płatność jest przetwarzana." @@ -12542,11 +12629,11 @@ msgstr "Twoja płatność jest przetwarzana." msgid "Your payment is protected with bank-level encryption" msgstr "Twoja płatność jest chroniona szyfrowaniem na poziomie bankowym" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Twoja płatność nie powiodła się, proszę spróbować ponownie." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Twoja płatność nie powiodła się. Proszę spróbować ponownie." @@ -12554,7 +12641,7 @@ msgstr "Twoja płatność nie powiodła się. Proszę spróbować ponownie." msgid "Your Plan" msgstr "Twój plan" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Zwrot jest procesowany." @@ -12570,19 +12657,19 @@ msgstr "Twój bilet na" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "Twój bilet jest nadal ważny — nie musisz nic robić, chyba że nowa godzina Ci nie odpowiada. Odpowiedz na ten e-mail w razie pytań." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "Twoje bilety zostały potwierdzone." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "Numer VAT czeka na weryfikację" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "Numer VAT zostanie zweryfikowany po zapisaniu" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "Twoja oferta z listy oczekujących wygasła i nie udało nam się sfinalizować Twojego zamówienia. Dołącz ponownie do listy oczekujących, aby otrzymać powiadomienie, gdy zwolnią się kolejne miejsca." @@ -12590,19 +12677,19 @@ msgstr "Twoja oferta z listy oczekujących wygasła i nie udało nam się sfinal msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "Kod pocztowy" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "Kod pocztowy" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "Kod pocztowy" diff --git a/frontend/src/locales/pt-br.js b/frontend/src/locales/pt-br.js index c2609d6dcf..a46b326ae2 100644 --- a/frontend/src/locales/pt-br.js +++ b/frontend/src/locales/pt-br.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Ainda não há nada para mostrar'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>desmarcado com sucesso\"],\"KMgp2+\":[[\"0\"],\" disponível\"],\"Pmr5xp\":[[\"0\"],\" criado com sucesso\"],\"FImCSc\":[[\"0\"],\" atualizado com sucesso\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dias, \",[\"hours\"],\" horas, \",[\"minutes\"],\" minutos e \",[\"seconds\"],\" segundos\"],\"f3RdEk\":[[\"hours\"],\" horas, \",[\"minutes\"],\" minutos e \",[\"seconds\"],\" segundos\"],\"fyE7Au\":[[\"minutos\"],\" minutos e \",[\"segundos\"],\" segundos\"],\"NlQ0cx\":[\"Primeiro evento de \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0>Por favor, insira o preço sem incluir impostos e taxas.<1>Impostos e taxas podem ser adicionados abaixo.\",\"ZjMs6e\":\"<0>O número de produtos disponíveis para este produto<1>Esse valor pode ser substituído se houver <2>Limites de Capacidade associados a este produto.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutos e 0 segundos\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Um campo de data. Perfeito para pedir uma data de nascimento, etc.\",\"6euFZ/\":[\"Um \",[\"type\"],\" padrão é automaticamente aplicado a todos os novos produtos. Você pode substituir isso para cada produto.\"],\"SMUbbQ\":\"Um input do tipo Dropdown permite apenas uma seleção\",\"qv4bfj\":\"Uma taxa, como uma taxa de reserva ou uma taxa de serviço\",\"POT0K/\":\"Um valor fixo por produto. Ex: $0,50 por produto\",\"f4vJgj\":\"Uma entrada de texto com várias linhas\",\"OIPtI5\":\"Uma porcentagem do preço do produto. Ex: 3,5% do preço do produto\",\"ZthcdI\":\"Um código promocional sem desconto pode ser usado para revelar produtos ocultos.\",\"AG/qmQ\":\"Uma opção de rádio tem várias opções, mas somente uma pode ser selecionada.\",\"h179TP\":\"Uma breve descrição do evento que será exibida nos resultados dos mecanismos de pesquisa e ao compartilhar nas mídias sociais. Por padrão, a descrição do evento será usada\",\"WKMnh4\":\"Uma entrada de texto de linha única\",\"BHZbFy\":\"Uma única pergunta por pedido. Ex: Qual é o seu endereço de entrega?\",\"Fuh+dI\":\"Uma única pergunta por produto. Ex: Qual é o seu tamanho de camiseta?\",\"RlJmQg\":\"Um imposto padrão, como IVA ou GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Aceitar transferências bancárias, cheques ou outros métodos de pagamento offline\",\"hrvLf4\":\"Aceitar pagamentos com cartão de crédito através do Stripe\",\"bfXQ+N\":\"Aceitar convite\",\"AeXO77\":\"Conta\",\"lkNdiH\":\"Nome da conta\",\"Puv7+X\":\"Configurações da conta\",\"OmylXO\":\"Conta atualizada com sucesso\",\"7L01XJ\":\"Ações\",\"FQBaXG\":\"Ativar\",\"5T2HxQ\":\"Data de ativação\",\"F6pfE9\":\"Ativo\",\"/PN1DA\":\"Adicione uma descrição para esta lista de registro\",\"0/vPdA\":\"Adicione quaisquer anotações sobre o participante. Estas não serão visíveis para o participante.\",\"Or1CPR\":\"Adicione quaisquer anotações sobre o participante...\",\"l3sZO1\":\"Adicione quaisquer notas sobre o pedido. Estas não serão visíveis para o cliente.\",\"xMekgu\":\"Adicione quaisquer notas sobre o pedido...\",\"PGPGsL\":\"Adicionar descrição\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Adicione instruções para pagamentos offline (por exemplo, detalhes de transferência bancária, onde enviar cheques, prazos de pagamento)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Adicionar novo\",\"TZxnm8\":\"Adicionar opção\",\"24l4x6\":\"Adicionar Produto\",\"8q0EdE\":\"Adicionar Produto à Categoria\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Adicionar imposto ou taxa\",\"goOKRY\":\"Adicionar nível\",\"oZW/gT\":\"Adicionar ao calendário\",\"pn5qSs\":\"Informações adicionais\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Endereço\",\"NY/x1b\":\"Linha de endereço 1\",\"POdIrN\":\"Linha de endereço 1\",\"cormHa\":\"Linha de endereço 2\",\"gwk5gg\":\"Linha de endereço 2\",\"U3pytU\":\"Administrador\",\"HLDaLi\":\"Os usuários administradores têm acesso total a eventos e configurações de conta.\",\"W7AfhC\":\"Todos os participantes deste evento\",\"cde2hc\":\"Todos os Produtos\",\"5CQ+r0\":\"Permitir que participantes associados a pedidos não pagos façam check-in\",\"ipYKgM\":\"Permitir a indexação do mecanismo de pesquisa\",\"LRbt6D\":\"Permitir que os mecanismos de pesquisa indexem esse evento\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Incrível, Evento, Palavras-chave...\",\"hehnjM\":\"Valor\",\"R2O9Rg\":[\"Valor pago (\",[\"0\"],\")\"],\"V7MwOy\":\"Ocorreu um erro ao carregar a página\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Ocorreu um erro inesperado.\",\"byKna+\":\"Ocorreu um erro inesperado. Por favor, tente novamente.\",\"ubdMGz\":\"Quaisquer perguntas dos portadores de produtos serão enviadas para este endereço de e-mail. Este também será usado como o endereço de \\\"responder para\\\" em todos os e-mails enviados deste evento\",\"aAIQg2\":\"Aparência\",\"Ym1gnK\":\"aplicado\",\"sy6fss\":[\"Aplica-se a \",[\"0\"],\" produtos\"],\"kadJKg\":\"Aplica-se a 1 produto\",\"DB8zMK\":\"Aplicar\",\"GctSSm\":\"Aplicar código promocional\",\"ARBThj\":[\"Aplicar este \",[\"type\"],\" a todos os novos produtos\"],\"S0ctOE\":\"Arquivar evento\",\"TdfEV7\":\"Arquivado\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Tem certeza de que deseja ativar esse participante?\",\"TvkW9+\":\"Você tem certeza de que deseja arquivar este evento?\",\"/CV2x+\":\"Tem certeza de que deseja cancelar esse participante? Isso anulará seu ingresso\",\"YgRSEE\":\"Tem certeza de que deseja excluir esse código promocional?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Tem certeza de que deseja tornar este evento um rascunho? Isso tornará o evento invisível para o público\",\"mEHQ8I\":\"Tem certeza de que deseja tornar este evento público? Isso tornará o evento visível para o público\",\"s4JozW\":\"Você tem certeza de que deseja restaurar este evento? Ele será restaurado como um evento rascunho.\",\"vJuISq\":\"Tem certeza de que deseja excluir esta Atribuição de Capacidade?\",\"baHeCz\":\"Tem certeza de que deseja excluir esta lista de registro?\",\"LBLOqH\":\"Pergunte uma vez por pedido\",\"wu98dY\":\"Perguntar uma vez por produto\",\"ss9PbX\":\"Participante\",\"m0CFV2\":\"Detalhes do participante\",\"QKim6l\":\"Participante não encontrado\",\"R5IT/I\":\"Anotações do participante\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Bilhete do Participante\",\"9SZT4E\":\"Participantes\",\"iPBfZP\":\"Participantes Registrados\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Redimensionamento automático\",\"vZ5qKF\":\"Redimensionar automaticamente a altura do widget com base no conteúdo. Quando desativado, o widget preencherá a altura do contêiner.\",\"4lVaWA\":\"Aguardando pagamento offline\",\"2rHwhl\":\"Aguardando pagamento offline\",\"3wF4Q/\":\"Aguardando pagamento\",\"ioG+xt\":\"Aguardando pagamento\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Voltar à página do evento\",\"VCoEm+\":\"Voltar ao login\",\"k1bLf+\":\"Cor de fundo\",\"I7xjqg\":\"Tipo de plano de fundo\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Endereço de cobrança\",\"/xC/im\":\"Configurações de cobrança\",\"rp/zaT\":\"Português brasileiro\",\"whqocw\":\"Ao se registrar, você concorda com nossos <0>Termos de Serviço e <1>Política de Privacidade.\",\"bcCn6r\":\"Tipo de cálculo\",\"+8bmSu\":\"Califórnia\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Cancelar\",\"Gjt/py\":\"Cancelar alteração de e-mail\",\"tVJk4q\":\"Cancelar pedido\",\"Os6n2a\":\"Cancelar pedido\",\"Mz7Ygx\":[\"Cancelar pedido \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Cancelado\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacidade\",\"V6Q5RZ\":\"Atribuição de Capacidade criada com sucesso\",\"k5p8dz\":\"Atribuição de Capacidade excluída com sucesso\",\"nDBs04\":\"Gestão de capacidade\",\"ddha3c\":\"As categorias permitem agrupar produtos. Por exemplo, você pode ter uma categoria para \\\"Ingressos\\\" e outra para \\\"Mercadorias\\\".\",\"iS0wAT\":\"As categorias ajudam a organizar seus produtos. Este título será exibido na página pública do evento.\",\"eorM7z\":\"Categorias reordenadas com sucesso.\",\"3EXqwa\":\"Categoria Criada com Sucesso\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Alterar senha\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Fazer check-in de \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Fazer check-in e marcar pedido como pago\",\"QYLpB4\":\"Apenas fazer check-in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Confira este evento!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Lista de registro excluída com sucesso\",\"+hBhWk\":\"A lista de registro expirou\",\"mBsBHq\":\"A lista de registro não está ativa\",\"vPqpQG\":\"Lista de check-in não encontrada\",\"tejfAy\":\"Listas de Registro\",\"hD1ocH\":\"URL de check-in copiada para a área de transferência\",\"CNafaC\":\"As opções de caixa de seleção permitem várias seleções\",\"SpabVf\":\"Caixas de seleção\",\"CRu4lK\":\"Check-in realizado\",\"znIg+z\":\"Finalizar compra\",\"1WnhCL\":\"Configurações de checkout\",\"6imsQS\":\"Chinês simplificado\",\"JjkX4+\":\"Escolha uma cor para seu plano de fundo\",\"/Jizh9\":\"Escolha uma conta\",\"3wV73y\":\"Cidade\",\"FG98gC\":\"Limpar texto de pesquisa\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Clique para copiar\",\"yz7wBu\":\"Fechar\",\"62Ciis\":\"Fechar a barra lateral\",\"EWPtMO\":\"Código\",\"ercTDX\":\"O código deve ter entre 3 e 50 caracteres\",\"oqr9HB\":\"Recolher este produto quando a página do evento for carregada inicialmente\",\"jZlrte\":\"Cor\",\"Vd+LC3\":\"A cor deve ser um código de cor hexadecimal válido. Exemplo: #ffffff\",\"1HfW/F\":\"Cores\",\"VZeG/A\":\"Em breve\",\"yPI7n9\":\"Palavras-chave separadas por vírgulas que descrevem o evento. Elas serão usadas pelos mecanismos de pesquisa para ajudar a categorizar e indexar o evento\",\"NPZqBL\":\"Pedido completo\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Pagamento completo\",\"qqWcBV\":\"Concluído\",\"6HK5Ct\":\"Pedidos concluídos\",\"NWVRtl\":\"Pedidos concluídos\",\"DwF9eH\":\"Código do componente\",\"Tf55h7\":\"Desconto configurado\",\"7VpPHA\":\"Confirmar\",\"ZaEJZM\":\"Confirmar alteração de e-mail\",\"yjkELF\":\"Confirmar nova senha\",\"xnWESi\":\"Confirmar senha\",\"p2/GCq\":\"Confirmar senha\",\"wnDgGj\":\"Confirmação do endereço de e-mail...\",\"pbAk7a\":\"Conectar faixa\",\"UMGQOh\":\"Conecte-se com o Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Detalhes da conexão\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continuar\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Texto do botão Continuar\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copiado\",\"T5rdis\":\"copiado para a área de transferência\",\"he3ygx\":\"Cópia\",\"r2B2P8\":\"Copiar URL de check-in\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copiar link\",\"E6nRW7\":\"Copiar URL\",\"JNCzPW\":\"País\",\"IF7RiR\":\"Capa\",\"hYgDIe\":\"Criar\",\"b9XOHo\":[\"Criar \",[\"0\"]],\"k9RiLi\":\"Criar um Produto\",\"6kdXbW\":\"Criar um código promocional\",\"n5pRtF\":\"Criar um tíquete\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"criar um organizador\",\"ipP6Ue\":\"Criar participante\",\"VwdqVy\":\"Criar Atribuição de Capacidade\",\"EwoMtl\":\"Criar categoria\",\"XletzW\":\"Criar Categoria\",\"WVbTwK\":\"Criar Lista de Registro\",\"uN355O\":\"Criar evento\",\"BOqY23\":\"Criar novo\",\"kpJAeS\":\"Criar organizador\",\"a0EjD+\":\"Criar Produto\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Criar código promocional\",\"B3Mkdt\":\"Criar pergunta\",\"UKfi21\":\"Criar imposto ou taxa\",\"d+F6q9\":\"Criado\",\"Q2lUR2\":\"Moeda\",\"DCKkhU\":\"Senha atual\",\"uIElGP\":\"URL de mapas personalizados\",\"UEqXyt\":\"Intervalo personalizado\",\"876pfE\":\"Cliente\",\"QOg2Sf\":\"Personalize as configurações de e-mail e notificação para esse evento\",\"Y9Z/vP\":\"Personalize a página inicial do evento e a mensagem de checkout\",\"2E2O5H\":\"Personalize as configurações diversas para esse evento\",\"iJhSxe\":\"Personalizar as configurações de SEO para este evento\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Zona de perigo\",\"ZQKLI1\":\"Zona de Perigo\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Data\",\"JvUngl\":\"Data e hora\",\"JJhRbH\":\"Capacidade do primeiro dia\",\"cnGeoo\":\"Excluir\",\"jRJZxD\":\"Excluir Capacidade\",\"VskHIx\":\"Excluir categoria\",\"Qrc8RZ\":\"Excluir Lista de Registro\",\"WHf154\":\"Excluir código\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Descrição\",\"YC3oXa\":\"Descrição para a equipe de registro\",\"URmyfc\":\"Detalhes\",\"1lRT3t\":\"Desativar esta capacidade rastreará as vendas, mas não as interromperá quando o limite for atingido\",\"H6Ma8Z\":\"Desconto\",\"ypJ62C\":\"% de desconto\",\"3LtiBI\":[\"Desconto em \",[\"0\"]],\"C8JLas\":\"Tipo de desconto\",\"1QfxQT\":\"Dispensar\",\"DZlSLn\":\"Etiqueta do documento\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Doação / Produto com valor voluntário\",\"OvNbls\":\"Baixar .ics\",\"kodV18\":\"Baixar CSV\",\"CELKku\":\"Baixar fatura\",\"LQrXcu\":\"Baixar fatura\",\"QIodqd\":\"Baixar código QR\",\"yhjU+j\":\"A baixar fatura\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Seleção suspensa\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicar evento\",\"3ogkAk\":\"Duplicar evento\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Duplicar Opções\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Pássaro madrugador\",\"ePK91l\":\"Editar\",\"N6j2JH\":[\"Editar \",[\"0\"]],\"kBkYSa\":\"Editar Capacidade\",\"oHE9JT\":\"Editar Atribuição de Capacidade\",\"j1Jl7s\":\"Editar categoria\",\"FU1gvP\":\"Editar Lista de Registro\",\"iFgaVN\":\"Editar código\",\"jrBSO1\":\"Editar organizador\",\"tdD/QN\":\"Editar Produto\",\"n143Tq\":\"Editar Categoria de Produto\",\"9BdS63\":\"Editar código promocional\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Editar pergunta\",\"poTr35\":\"Editar usuário\",\"GTOcxw\":\"Editar usuário\",\"pqFrv2\":\"por exemplo. 2,50 por $2,50\",\"3yiej1\":\"Ex. 23,5 para 23,5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Configurações de e-mail e notificação\",\"ATGYL1\":\"Endereço de e-mail\",\"hzKQCy\":\"Endereço de e-mail\",\"HqP6Qf\":\"Alteração de e-mail cancelada com sucesso\",\"mISwW1\":\"Alteração de e-mail pendente\",\"APuxIE\":\"Confirmação de e-mail reenviada\",\"YaCgdO\":\"Confirmação de e-mail reenviada com sucesso\",\"jyt+cx\":\"Mensagem de rodapé do e-mail\",\"I6F3cp\":\"E-mail não verificado\",\"NTZ/NX\":\"Código de incorporação\",\"4rnJq4\":\"Script de incorporação\",\"8oPbg1\":\"Habilitar faturamento\",\"j6w7d/\":\"Ative esta capacidade para interromper as vendas de produtos quando o limite for atingido\",\"VFv2ZC\":\"Data de término\",\"237hSL\":\"Final\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Inglês\",\"MhVoma\":\"Insira um valor excluindo impostos e taxas.\",\"SlfejT\":\"Erro\",\"3Z223G\":\"Erro ao confirmar o endereço de e-mail\",\"a6gga1\":\"Erro ao confirmar a alteração do e-mail\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evento\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Data do Evento\",\"0Zptey\":\"Padrões de eventos\",\"QcCPs8\":\"Detalhes do evento\",\"6fuA9p\":\"Evento duplicado com sucesso\",\"AEuj2m\":\"Página inicial do evento\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Local do evento e detalhes do local\",\"OopDbA\":\"Event page\",\"4/If97\":\"Falha na atualização do status do evento. Tente novamente mais tarde\",\"btxLWj\":\"Status do evento atualizado\",\"nMU2d3\":\"URL do evento\",\"tst44n\":\"Eventos\",\"sZg7s1\":\"Data de Expiração\",\"KnN1Tu\":\"Expirações\",\"uaSvqt\":\"Data de expiração\",\"GS+Mus\":\"Exportação\",\"9xAp/j\":\"Falha ao cancelar o participante\",\"ZpieFv\":\"Falha ao cancelar o pedido\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Falha ao baixar a fatura. Por favor, tente novamente.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Falha ao carregar a Lista de Registro\",\"ZQ15eN\":\"Falha ao reenviar o e-mail do tíquete\",\"ejXy+D\":\"Falha ao ordenar os produtos\",\"PLUB/s\":\"Tarifa\",\"/mfICu\":\"Tarifas\",\"LyFC7X\":\"Filtrar pedidos\",\"cSev+j\":\"Filtros\",\"CVw2MU\":[\"Filtros (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Primeiro número da fatura\",\"V1EGGU\":\"Primeiro nome\",\"kODvZJ\":\"Primeiro nome\",\"S+tm06\":\"O primeiro nome deve ter entre 1 e 50 caracteres\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Usado pela primeira vez\",\"TpqW74\":\"Fixo\",\"irpUxR\":\"Valor fixo\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Esqueceu a senha?\",\"2POOFK\":\"Grátis\",\"P/OAYJ\":\"Produto Gratuito\",\"vAbVy9\":\"Produto gratuito, sem necessidade de informações de pagamento\",\"nLC6tu\":\"Francês\",\"Weq9zb\":\"Geral\",\"DDcvSo\":\"Alemão\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Voltar ao perfil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Agenda\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Vendas brutas\",\"yRg26W\":\"Vendas brutas\",\"R4r4XO\":\"Convidados\",\"26pGvx\":\"Tem um código promocional?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Aqui está um exemplo de como você pode usar o componente em sua aplicação.\",\"Y1SSqh\":\"Aqui está o componente React que você pode usar para incorporar o widget em sua aplicação.\",\"QuhVpV\":[\"Oi \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Escondido da vista do público\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"As perguntas ocultas são visíveis apenas para o organizador do evento e não para o cliente.\",\"vLyv1R\":\"Esconder\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Ocultar produto após a data de término da venda\",\"06s3w3\":\"Ocultar produto antes da data de início da venda\",\"axVMjA\":\"Ocultar produto, a menos que o usuário tenha um código promocional aplicável\",\"ySQGHV\":\"Ocultar produto quando esgotado\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Ocultar este produto dos clientes\",\"Da29Y6\":\"Ocultar esta pergunta\",\"fvDQhr\":\"Ocultar essa camada dos usuários\",\"lNipG+\":\"Ocultar um produto impedirá que os usuários o vejam na página do evento.\",\"ZOBwQn\":\"Design da página inicial\",\"PRuBTd\":\"Designer de página inicial\",\"YjVNGZ\":\"Visualização da página inicial\",\"c3E/kw\":\"Homero\",\"8k8Njd\":\"Quantos minutos o cliente tem para concluir o pedido. Recomendamos pelo menos 15 minutos\",\"ySxKZe\":\"Quantas vezes esse código pode ser usado?\",\"dZsDbK\":[\"Limite de caracteres HTML excedido: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Eu concordo com os <0>termos e condições\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Se ativado, a equipe de check-in pode marcar os participantes como registrados ou marcar o pedido como pago e registrar os participantes. Se desativado, os participantes associados a pedidos não pagos não poderão ser registrados.\",\"muXhGi\":\"Se ativado, o organizador receberá uma notificação por e-mail quando um novo pedido for feito\",\"6fLyj/\":\"Se você não solicitou essa alteração, altere imediatamente sua senha.\",\"n/ZDCz\":\"Imagem excluída com êxito\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Imagem carregada com sucesso\",\"VyUuZb\":\"URL da imagem\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inativo\",\"T0K0yl\":\"Usuários inativos não podem fazer login.\",\"kO44sp\":\"Inclua detalhes de conexão para o seu evento online. Estes detalhes serão mostrados na página de resumo do pedido e no bilhete do participante.\",\"FlQKnG\":\"Incluir impostos e taxas no preço\",\"Vi+BiW\":[\"Inclui \",[\"0\"],\" produtos\"],\"lpm0+y\":\"Inclui 1 produto\",\"UiAk5P\":\"Inserir imagem\",\"OyLdaz\":\"Convite reenviado!\",\"HE6KcK\":\"Convite revogado!\",\"SQKPvQ\":\"Convidar usuário\",\"bKOYkd\":\"Fatura baixada com sucesso\",\"alD1+n\":\"Notas da fatura\",\"kOtCs2\":\"Numeração da fatura\",\"UZ2GSZ\":\"Configurações da fatura\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Item\",\"KFXip/\":\"João\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Rótulo\",\"vXIe7J\":\"Idioma\",\"2LMsOq\":\"Últimos 12 meses\",\"vfe90m\":\"Últimos 14 dias\",\"aK4uBd\":\"Últimas 24 horas\",\"uq2BmQ\":\"Últimos 30 dias\",\"bB6Ram\":\"Últimas 48 horas\",\"VlnB7s\":\"Últimos 6 meses\",\"ct2SYD\":\"Últimos 7 dias\",\"XgOuA7\":\"Últimos 90 dias\",\"I3yitW\":\"Último login\",\"1ZaQUH\":\"Sobrenome\",\"UXBCwc\":\"Sobrenome\",\"tKCBU0\":\"Última vez usado\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Deixe em branco para usar a palavra padrão \\\"Fatura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Carregando...\",\"wJijgU\":\"Localização\",\"sQia9P\":\"Fazer login\",\"zUDyah\":\"Login\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Sair\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Tornar o endereço de cobrança obrigatório durante o checkout\",\"MU3ijv\":\"Tornar essa pergunta obrigatória\",\"wckWOP\":\"Gerenciar\",\"onpJrA\":\"Gerenciar participante\",\"n4SpU5\":\"Gerenciar evento\",\"WVgSTy\":\"Gerenciar pedido\",\"1MAvUY\":\"Gerenciar as configurações de pagamento e faturamento para este evento.\",\"cQrNR3\":\"Gerenciar perfil\",\"AtXtSw\":\"Gerencie impostos e taxas que podem ser aplicados aos seus produtos\",\"ophZVW\":\"Gerenciar tíquetes\",\"DdHfeW\":\"Gerenciar os detalhes de sua conta e as configurações padrão\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Gerencie seus usuários e suas permissões\",\"1m+YT2\":\"As perguntas obrigatórias devem ser respondidas antes que o cliente possa fazer o checkout.\",\"Dim4LO\":\"Adicionar manualmente um participante\",\"e4KdjJ\":\"Adicionar participante manualmente\",\"vFjEnF\":\"Marcar como pago\",\"g9dPPQ\":\"Máximo por pedido\",\"l5OcwO\":\"Participante da mensagem\",\"Gv5AMu\":\"Participantes da mensagem\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Comprador de mensagens\",\"tNZzFb\":\"Conteúdo da mensagem\",\"lYDV/s\":\"Mensagem para participantes individuais\",\"V7DYWd\":\"Mensagem enviada\",\"t7TeQU\":\"Mensagens\",\"xFRMlO\":\"Mínimo por pedido\",\"QYcUEf\":\"Preço mínimo\",\"RDie0n\":\"Diversos\",\"mYLhkl\":\"Configurações diversas\",\"KYveV8\":\"Caixa de texto com várias linhas\",\"VD0iA7\":\"Múltiplas opções de preço. Perfeito para produtos antecipados, etc.\",\"/bhMdO\":\"Minha incrível descrição do evento...\",\"vX8/tc\":\"Meu incrível título de evento...\",\"hKtWk2\":\"Meu perfil\",\"fj5byd\":\"N/D\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nome\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navegar até o participante\",\"qqeAJM\":\"Nunca\",\"7vhWI8\":\"Nova senha\",\"1UzENP\":\"Não\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Não há eventos arquivados para mostrar.\",\"q2LEDV\":\"Nenhum participante encontrado para este pedido.\",\"zlHa5R\":\"Nenhum participante foi adicionado a este pedido.\",\"Wjz5KP\":\"Não há participantes para mostrar\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Sem Atribuições de Capacidade\",\"a/gMx2\":\"Nenhuma Lista de Registro\",\"tMFDem\":\"Nenhum dado disponível\",\"6Z/F61\":\"Nenhum dado para mostrar. Por favor, selecione um intervalo de datas\",\"fFeCKc\":\"Sem desconto\",\"HFucK5\":\"Não há eventos encerrados para mostrar.\",\"yAlJXG\":\"Nenhum evento para mostrar\",\"GqvPcv\":\"Nenhum filtro disponível\",\"KPWxKD\":\"Nenhuma mensagem a ser exibida\",\"J2LkP8\":\"Não há ordens para mostrar\",\"RBXXtB\":\"Nenhum método de pagamento está disponível no momento. Entre em contato com o organizador do evento para obter assistência.\",\"ZWEfBE\":\"Pagamento não necessário\",\"ZPoHOn\":\"Nenhum produto associado a este participante.\",\"Ya1JhR\":\"Nenhum produto disponível nesta categoria.\",\"FTfObB\":\"Nenhum Produto Ainda\",\"+Y976X\":\"Não há códigos promocionais a serem exibidos\",\"MAavyl\":\"Nenhuma pergunta foi respondida por este participante.\",\"SnlQeq\":\"Nenhuma pergunta foi feita para este pedido.\",\"Ev2r9A\":\"Nenhum resultado\",\"gk5uwN\":\"Nenhum Resultado de Pesquisa\",\"RHyZUL\":\"Nenhum resultado de pesquisa.\",\"RY2eP1\":\"Nenhum imposto ou taxa foi adicionado.\",\"EdQY6l\":\"Nenhum\",\"OJx3wK\":\"Não disponível\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Anotações\",\"jtrY3S\":\"Nada para mostrar ainda\",\"hFwWnI\":\"Configurações de notificação\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notificar o organizador sobre novos pedidos\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Número de dias permitidos para pagamento (deixe em branco para omitir os termos de pagamento nas faturas)\",\"n86jmj\":\"Prefixo numérico\",\"mwe+2z\":\"Pedidos offline não são refletidos nas estatísticas do evento até que sejam marcados como pagos.\",\"dWBrJX\":\"O pagamento offline falhou. Por favor, tente novamente ou entre em contato com o organizador do evento.\",\"fcnqjw\":\"Instruções de Pagamento Offline\",\"+eZ7dp\":\"Pagamentos offline\",\"ojDQlR\":\"Informações sobre pagamentos offline\",\"u5oO/W\":\"Configurações de pagamentos offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"À venda\",\"Ug4SfW\":\"Depois de criar um evento, você o verá aqui.\",\"ZxnK5C\":\"Assim que você começar a coletar dados, eles aparecerão aqui.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Em andamento\",\"z+nuVJ\":\"Evento online\",\"WKHW0N\":\"Detalhes do evento on-line\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Abrir Página de Check-In\",\"OdnLE4\":\"Abrir barra lateral\",\"ZZEYpT\":[\"Opção \",[\"i\"]],\"oPknTP\":\"Informações adicionais opcionais a serem exibidas em todas as faturas (ex.: condições de pagamento, taxas por atraso, política de devolução)\",\"OrXJBY\":\"Prefixo opcional para os números das faturas (ex.: INV-)\",\"0zpgxV\":\"Opções\",\"BzEFor\":\"ou\",\"UYUgdb\":\"Pedido\",\"mm+eaX\":\"Pedido n.º\",\"B3gPuX\":\"Pedido cancelado\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Data do pedido\",\"Tol4BF\":\"Detalhes do pedido\",\"WbImlQ\":\"O pedido foi cancelado e o proprietário do pedido foi notificado.\",\"nAn4Oe\":\"Pedido marcado como pago\",\"uzEfRz\":\"Notas do pedido\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Referência do pedido\",\"acIJ41\":\"Status do pedido\",\"GX6dZv\":\"Resumo do pedido\",\"tDTq0D\":\"Tempo limite do pedido\",\"1h+RBg\":\"Pedidos\",\"3y+V4p\":\"Endereço da organização\",\"GVcaW6\":\"Detalhes da organização\",\"nfnm9D\":\"Nome da organização\",\"G5RhpL\":\"Organizador\",\"mYygCM\":\"É necessário um organizador\",\"Pa6G7v\":\"Nome do organizador\",\"l894xP\":\"Os organizadores só podem gerenciar eventos e produtos. Eles não podem gerenciar usuários, configurações de conta ou informações de faturamento.\",\"fdjq4c\":\"Preenchimento\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Página não encontrada\",\"QbrUIo\":\"Visualizações de página\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"pago\",\"HVW65c\":\"Produto Pago\",\"ZfxaB4\":\"Parcialmente reembolsado\",\"8ZsakT\":\"Senha\",\"TUJAyx\":\"A senha deve ter um mínimo de 8 caracteres\",\"vwGkYB\":\"A senha deve ter pelo menos 8 caracteres\",\"BLTZ42\":\"Redefinição de senha bem-sucedida. Faça login com sua nova senha.\",\"f7SUun\":\"As senhas não são as mesmas\",\"aEDp5C\":\"Cole isto onde você deseja que o widget apareça.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Pagamento\",\"Lg+ewC\":\"Pagamento e faturamento\",\"DZjk8u\":\"Configurações de pagamento e faturamento\",\"lflimf\":\"Prazo para pagamento\",\"JhtZAK\":\"Falha no pagamento\",\"JEdsvQ\":\"Instruções de pagamento\",\"bLB3MJ\":\"Métodos de pagamento\",\"QzmQBG\":\"Provedor de pagamento\",\"lsxOPC\":\"Pagamento recebido\",\"wJTzyi\":\"Status do pagamento\",\"xgav5v\":\"O pagamento foi bem-sucedido!\",\"R29lO5\":\"Termos de pagamento\",\"/roQKz\":\"Porcentagem\",\"vPJ1FI\":\"Porcentagem Valor\",\"xdA9ud\":\"Coloque isto no do seu site.\",\"blK94r\":\"Adicione pelo menos uma opção\",\"FJ9Yat\":\"Verifique se as informações fornecidas estão corretas\",\"TkQVup\":\"Verifique seu e-mail e senha e tente novamente\",\"sMiGXD\":\"Verifique se seu e-mail é válido\",\"Ajavq0\":\"Verifique seu e-mail para confirmar seu endereço de e-mail\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Continue na nova guia\",\"hcX103\":\"Por favor, crie um produto\",\"cdR8d6\":\"Por favor, crie um ingresso\",\"x2mjl4\":\"Por favor, insira uma URL de imagem válida que aponte para uma imagem.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Observação\",\"C63rRe\":\"Por favor, volte para a página do evento para recomeçar.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Por favor, selecione pelo menos um produto\",\"igBrCH\":\"Verifique seu endereço de e-mail para acessar todos os recursos\",\"/IzmnP\":\"Por favor, aguarde enquanto preparamos a sua fatura...\",\"MOERNx\":\"Português\",\"qCJyMx\":\"Mensagem de pós-cheque\",\"g2UNkE\":\"Desenvolvido por\",\"Rs7IQv\":\"Mensagem de pré-checkout\",\"rdUucN\":\"Visualização\",\"a7u1N9\":\"Preço\",\"CmoB9j\":\"Modo de exibição de preço\",\"BI7D9d\":\"Preço não definido\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Tipo de Preço\",\"6RmHKN\":\"Cor primária\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Cor do texto primário\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Imprimir todos os ingressos\",\"DKwDdj\":\"Imprimir ingressos\",\"K47k8R\":\"Produto\",\"1JwlHk\":\"Categoria de Produto\",\"U61sAj\":\"Categoria de produto atualizada com sucesso.\",\"1USFWA\":\"Produto excluído com sucesso\",\"4Y2FZT\":\"Tipo de Preço do Produto\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Vendas de Produtos\",\"U/R4Ng\":\"Nível do Produto\",\"sJsr1h\":\"Tipo de Produto\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produto(s)\",\"N0qXpE\":\"Produtos\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Produtos vendidos\",\"/u4DIx\":\"Produtos Vendidos\",\"DJQEZc\":\"Produtos ordenados com sucesso\",\"vERlcd\":\"Perfil\",\"kUlL8W\":\"Perfil atualizado com sucesso\",\"cl5WYc\":[\"Código promocional \",[\"promo_code\"],\" aplicado\"],\"P5sgAk\":\"Código promocional\",\"yKWfjC\":\"Página do código promocional\",\"RVb8Fo\":\"Códigos promocionais\",\"BZ9GWa\":\"Os códigos promocionais podem ser usados para oferecer descontos, acesso de pré-venda ou acesso especial ao seu evento.\",\"OP094m\":\"Relatório de códigos promocionais\",\"4kyDD5\":\"Forneça contexto ou instruções adicionais para esta pergunta. Use este campo para adicionar termos\\ne condições, diretrizes ou quaisquer informações importantes que os participantes precisam saber antes de responder.\",\"toutGW\":\"Código QR\",\"LkMOWF\":\"Quantidade disponível\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Pergunta excluída\",\"avf0gk\":\"Descrição da pergunta\",\"oQvMPn\":\"Título da pergunta\",\"enzGAL\":\"Perguntas\",\"ROv2ZT\":\"Perguntas e Respostas\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Opção de rádio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Beneficiário\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Reembolso falhou\",\"n10yGu\":\"Pedido de reembolso\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Reembolso pendente\",\"xHpVRl\":\"Status do reembolso\",\"/BI0y9\":\"Reembolsado\",\"fgLNSM\":\"Registro\",\"9+8Vez\":\"Usos restantes\",\"tasfos\":\"remover\",\"t/YqKh\":\"Remover\",\"t9yxlZ\":\"Relatórios\",\"prZGMe\":\"Exigir endereço de cobrança\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Reenviar confirmação por e-mail\",\"wIa8Qe\":\"Reenviar convite\",\"VeKsnD\":\"Reenviar e-mail de pedido\",\"dFuEhO\":\"Reenviar e-mail do ingresso\",\"o6+Y6d\":\"Reenvio...\",\"OfhWJH\":\"Redefinir\",\"RfwZxd\":\"Redefinir senha\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restaurar evento\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Voltar para a página do evento\",\"8YBH95\":\"Receita\",\"PO/sOY\":\"Revogar convite\",\"GDvlUT\":\"Função\",\"ELa4O9\":\"Data de término da venda\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Data de início da venda\",\"hBsw5C\":\"Vendas encerradas\",\"kpAzPe\":\"Início das vendas\",\"P/wEOX\":\"São Francisco\",\"tfDRzk\":\"Salvar\",\"IUwGEM\":\"Salvar alterações\",\"U65fiW\":\"Salvar organizador\",\"UGT5vp\":\"Salvar configurações\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Pesquise por nome do participante, e-mail ou número do pedido...\",\"+pr/FY\":\"Pesquisar por nome de evento...\",\"3zRbWw\":\"Pesquise por nome, e-mail ou número do pedido...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Pesquisar por nome...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Pesquisar atribuições de capacidade...\",\"r9M1hc\":\"Pesquisar listas de registro...\",\"+0Yy2U\":\"Buscar produtos\",\"YIix5Y\":\"Pesquisar...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Cor secundária\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Cor do texto secundário\",\"02ePaq\":[\"Selecionar \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Selecione a categoria...\",\"kWI/37\":\"Selecione o organizador\",\"ixIx1f\":\"Selecione o Produto\",\"3oSV95\":\"Selecione o Nível do Produto\",\"C4Y1hA\":\"Selecione os produtos\",\"hAjDQy\":\"Selecionar status\",\"QYARw/\":\"Selecionar bilhete\",\"OMX4tH\":\"Selecionar ingressos\",\"DrwwNd\":\"Selecione o período de tempo\",\"O/7I0o\":\"Selecione...\",\"JlFcis\":\"Enviar\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Enviar uma mensagem\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Enviar Mensagem\",\"D7ZemV\":\"Enviar e-mail de confirmação do pedido e do tíquete\",\"v1rRtW\":\"Enviar teste\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descrição de SEO\",\"/SIY6o\":\"Palavras-chave de SEO\",\"GfWoKv\":\"Configurações de SEO\",\"rXngLf\":\"Título SEO\",\"/jZOZa\":\"Taxa de serviço\",\"Bj/QGQ\":\"Defina um preço mínimo e permita que os usuários paguem mais se quiserem\",\"L0pJmz\":\"Defina o número inicial para a numeração das faturas. Isso não poderá ser alterado depois que as faturas forem geradas.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Configurações\",\"Z8lGw6\":\"Compartilhar\",\"B2V3cA\":\"Compartilhar evento\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Mostrar quantidade disponível do produto\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Mostrar mais\",\"izwOOD\":\"Mostrar impostos e taxas separadamente\",\"1SbbH8\":\"Mostrado ao cliente após o checkout, na página de resumo do pedido.\",\"YfHZv0\":\"Mostrado ao cliente antes do checkout\",\"CBBcly\":\"Mostra campos de endereço comuns, incluindo o país\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Caixa de texto de linha única\",\"+P0Cn2\":\"Pular esta etapa\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Esgotado\",\"Mi1rVn\":\"Esgotado\",\"nwtY4N\":\"Algo deu errado\",\"GRChTw\":\"Algo deu errado ao excluir o imposto ou a taxa\",\"YHFrbe\":\"Algo deu errado! Por favor, tente novamente\",\"kf83Ld\":\"Algo deu errado.\",\"fWsBTs\":\"Algo deu errado. Tente novamente.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Desculpe, este código promocional não é reconhecido\",\"65A04M\":\"Espanhol\",\"mFuBqb\":\"Produto padrão com preço fixo\",\"D3iCkb\":\"Data de início\",\"/2by1f\":\"Estado ou região\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Os pagamentos via Stripe não estão ativados para este evento.\",\"UJmAAK\":\"Assunto\",\"X2rrlw\":\"Subtotal\",\"zzDlyQ\":\"Sucesso\",\"b0HJ45\":[\"Sucesso! \",[\"0\"],\" receberá um e-mail em breve.\"],\"BJIEiF\":[\"Participante com sucesso \",[\"0\"]],\"OtgNFx\":\"Endereço de e-mail confirmado com sucesso\",\"IKwyaF\":\"Alteração de e-mail confirmada com sucesso\",\"zLmvhE\":\"Participante criado com sucesso\",\"gP22tw\":\"Produto Criado com Sucesso\",\"9mZEgt\":\"Código promocional criado com sucesso\",\"aIA9C4\":\"Pergunta criada com sucesso\",\"J3RJSZ\":\"Participante atualizado com sucesso\",\"3suLF0\":\"Atribuição de Capacidade atualizada com sucesso\",\"Z+rnth\":\"Lista de Registro atualizada com sucesso\",\"vzJenu\":\"Configurações de e-mail atualizadas com sucesso\",\"7kOMfV\":\"Evento atualizado com sucesso\",\"G0KW+e\":\"Design da página inicial atualizado com sucesso\",\"k9m6/E\":\"Configurações da página inicial atualizadas com sucesso\",\"y/NR6s\":\"Localização atualizada com sucesso\",\"73nxDO\":\"Configurações diversas atualizadas com sucesso\",\"4H80qv\":\"Pedido atualizado com sucesso\",\"6xCBVN\":\"Configurações de pagamento e faturamento atualizadas com sucesso\",\"1Ycaad\":\"Produto atualizado com sucesso\",\"70dYC8\":\"Código promocional atualizado com sucesso\",\"F+pJnL\":\"Configurações de SEO atualizadas com sucesso\",\"DXZRk5\":\"Suíte 100\",\"GNcfRk\":\"E-mail de suporte\",\"uRfugr\":\"Camiseta\",\"JpohL9\":\"Imposto\",\"geUFpZ\":\"Impostos e taxas\",\"dFHcIn\":\"Detalhes fiscais\",\"wQzCPX\":\"Informações fiscais que aparecerão na parte inferior de todas as faturas (ex.: número de IVA, registro fiscal)\",\"0RXCDo\":\"Imposto ou taxa excluído com êxito\",\"ZowkxF\":\"Impostos\",\"qu6/03\":\"Impostos e taxas\",\"gypigA\":\"Esse código promocional é inválido\",\"5ShqeM\":\"A lista de check-in que você está procurando não existe.\",\"QXlz+n\":\"A moeda padrão para seus eventos.\",\"mnafgQ\":\"O fuso horário padrão para seus eventos.\",\"o7s5FA\":\"O idioma em que o participante receberá e-mails.\",\"NlfnUd\":\"O link em que você clicou é inválido.\",\"HsFnrk\":[\"O número máximo de produtos para \",[\"0\"],\" é \",[\"1\"]],\"TSAiPM\":\"A página que você está procurando não existe\",\"MSmKHn\":\"O preço exibido para o cliente incluirá impostos e taxas.\",\"6zQOg1\":\"O preço exibido para o cliente não inclui impostos e taxas. Eles serão exibidos separadamente\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"O título do evento que será exibido nos resultados dos mecanismos de pesquisa e ao compartilhar nas mídias sociais. Por padrão, o título do evento será usado\",\"wDx3FF\":\"Não há produtos disponíveis para este evento\",\"pNgdBv\":\"Não há produtos disponíveis nesta categoria\",\"rMcHYt\":\"Há um reembolso pendente. Aguarde a conclusão do processo antes de solicitar outro reembolso.\",\"F89D36\":\"Ocorreu um erro ao marcar o pedido como pago\",\"68Axnm\":\"Ocorreu um erro ao processar sua solicitação. Tente novamente.\",\"mVKOW6\":\"Ocorreu um erro ao enviar sua mensagem\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Este participante tem um pedido não pago.\",\"mf3FrP\":\"Esta categoria ainda não possui produtos.\",\"8QH2Il\":\"Esta categoria está oculta da visualização pública\",\"xxv3BZ\":\"Esta lista de registro expirou\",\"Sa7w7S\":\"Esta lista de registro expirou e não está mais disponível para registros.\",\"Uicx2U\":\"Esta lista de registro está ativa\",\"1k0Mp4\":\"Esta lista de registro ainda não está ativa\",\"K6fmBI\":\"Esta lista de registro ainda não está ativa e não está disponível para registros.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Essas informações serão exibidas na página de pagamento, no resumo do pedido e no e-mail de confirmação do pedido.\",\"XAHqAg\":\"Este é um produto geral, como uma camiseta ou uma caneca. Nenhum ingresso será emitido\",\"CNk/ro\":\"Este é um evento on-line\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Essa mensagem será incluída no rodapé de todos os e-mails enviados a partir desse evento\",\"55i7Fa\":\"Esta mensagem só será mostrada se o pedido for concluído com sucesso. Pedidos aguardando pagamento não mostrarão esta mensagem.\",\"RjwlZt\":\"Esse pedido já foi pago.\",\"5K8REg\":\"Esse pedido já foi reembolsado.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Esse pedido foi cancelado.\",\"Q0zd4P\":\"Este pedido expirou. Por favor, recomece.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Esse pedido está concluído.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Essa página de pedidos não está mais disponível.\",\"i0TtkR\":\"Isso substitui todas as configurações de visibilidade e ocultará o produto de todos os clientes.\",\"cRRc+F\":\"Este produto não pode ser excluído porque está associado a um pedido. Você pode ocultá-lo em vez disso.\",\"3Kzsk7\":\"Este produto é um ingresso. Os compradores receberão um ingresso ao comprar\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Este link de redefinição de senha é inválido ou expirou.\",\"IV9xTT\":\"Esse usuário não está ativo, pois não aceitou o convite.\",\"5AnPaO\":\"ingresso\",\"kjAL4v\":\"Bilhete\",\"dtGC3q\":\"O e-mail do ingresso foi reenviado ao participante\",\"54q0zp\":\"Ingressos para\",\"xN9AhL\":[\"Nível \",[\"0\"]],\"jZj9y9\":\"Produto em Camadas\",\"8wITQA\":\"Os produtos escalonados permitem que você ofereça múltiplas opções de preço para o mesmo produto. Isso é perfeito para produtos antecipados ou para oferecer diferentes opções de preço para diferentes grupos de pessoas.\\\" # pt\",\"nn3mSR\":\"Tempo restante:\",\"s/0RpH\":\"Tempos usados\",\"y55eMd\":\"Vezes usado\",\"40Gx0U\":\"Fuso horário\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Ferramentas\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total antes de descontos\",\"NRWNfv\":\"Montante total do desconto\",\"BxsfMK\":\"Total de taxas\",\"2bR+8v\":\"Total de vendas brutas\",\"mpB/d9\":\"Valor total do pedido\",\"m3FM1g\":\"Total reembolsado\",\"jEbkcB\":\"Total Reembolsado\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Imposto total\",\"+zy2Nq\":\"Tipo\",\"FMdMfZ\":\"Não foi possível registrar o participante\",\"bPWBLL\":\"Não foi possível retirar o participante\",\"9+P7zk\":\"Não foi possível criar o produto. Por favor, verifique seus detalhes\",\"WLxtFC\":\"Não foi possível criar o produto. Por favor, verifique seus detalhes\",\"/cSMqv\":\"Não foi possível criar a pergunta. Por favor, verifique seus detalhes\",\"MH/lj8\":\"Não foi possível atualizar a pergunta. Verifique seus detalhes\",\"nnfSdK\":\"Clientes únicos\",\"Mqy/Zy\":\"Estados Unidos\",\"NIuIk1\":\"Ilimitado\",\"/p9Fhq\":\"Ilimitados disponíveis\",\"E0q9qH\":\"Permite usos ilimitados\",\"h10Wm5\":\"Pedido não pago\",\"ia8YsC\":\"Próximos\",\"TlEeFv\":\"Próximos eventos\",\"L/gNNk\":[\"Atualizar \",[\"0\"]],\"+qqX74\":\"Atualizar o nome, a descrição e as datas do evento\",\"vXPSuB\":\"Atualizar perfil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copiado para a área de transferência\",\"e5lF64\":\"Exemplo de uso\",\"fiV0xj\":\"Limite de uso\",\"sGEOe4\":\"Use uma versão desfocada da imagem da capa como plano de fundo\",\"OadMRm\":\"Usar imagem de capa\",\"7PzzBU\":\"Usuário\",\"yDOdwQ\":\"Gerenciamento de usuários\",\"Sxm8rQ\":\"Usuários\",\"VEsDvU\":\"Os usuários podem alterar seu e-mail em <0>Configurações de perfil\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"IVA\",\"E/9LUk\":\"Nome do local\",\"jpctdh\":\"Visualizar\",\"Pte1Hv\":\"Ver Detalhes do Participante\",\"/5PEQz\":\"Exibir página do evento\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Exibir no Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Lista de check-in VIP\",\"tF+VVr\":\"Ingresso VIP\",\"2q/Q7x\":\"Visibilidade\",\"vmOFL/\":\"Não foi possível processar seu pagamento. Tente novamente ou entre em contato com o suporte.\",\"45Srzt\":\"Não conseguimos excluir a categoria. Por favor, tente novamente.\",\"/DNy62\":[\"Não encontramos nenhum ingresso correspondente a \",[\"0\"]],\"1E0vyy\":\"Não foi possível carregar os dados. Por favor, tente novamente.\",\"NmpGKr\":\"Não conseguimos reordenar as categorias. Por favor, tente novamente.\",\"BJtMTd\":\"Recomendamos dimensões de 2160px por 1080px e um tamanho máximo de arquivo de 5 MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Não foi possível confirmar seu pagamento. Tente novamente ou entre em contato com o suporte.\",\"Gspam9\":\"Estamos processando seu pedido. Por favor, aguarde...\",\"LuY52w\":\"Bem-vindo a bordo! Faça login para continuar.\",\"dVxpp5\":[\"Bem-vindo de volta\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"O que são Produtos em Camadas?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"O que é uma Categoria?\",\"gxeWAU\":\"A quais produtos este código se aplica?\",\"hFHnxR\":\"A quais produtos este código se aplica? (Aplica-se a todos por padrão)\",\"AeejQi\":\"A quais produtos essa capacidade deve se aplicar?\",\"Rb0XUE\":\"A que horas você chegará?\",\"5N4wLD\":\"Que tipo de pergunta é essa?\",\"gyLUYU\":\"Quando ativado, as faturas serão geradas para os pedidos de ingressos. As faturas serão enviadas junto com o e-mail de confirmação do pedido. Os participantes também podem baixar suas faturas na página de confirmação do pedido.\",\"D3opg4\":\"Quando os pagamentos offline estão ativados, os usuários poderão concluir seus pedidos e receber seus ingressos. Seus ingressos indicarão claramente que o pedido não foi pago, e a ferramenta de check-in notificará a equipe se um pedido exigir pagamento.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Quais ingressos devem ser associados a esta lista de registro?\",\"S+OdxP\":\"Quem está organizando esse evento?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"A quem deve ser feita essa pergunta?\",\"VxFvXQ\":\"Incorporação de widgets\",\"v1P7Gm\":\"Configurações do widget\",\"b4itZn\":\"Trabalho\",\"hqmXmc\":\"Trabalhando...\",\"+G/XiQ\":\"Ano até agora\",\"l75CjT\":\"Sim\",\"QcwyCh\":\"Sim, remova-os\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Você está alterando seu e-mail para <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Você está offline\",\"sdB7+6\":\"Você pode criar um código promocional que direcione este produto no\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Você não pode mudar o tipo de produto, pois há participantes associados a este produto.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Você não pode registrar participantes com pedidos não pagos. Essa configuração pode ser alterada nas configurações do evento.\",\"c9Evkd\":\"Você não pode excluir a última categoria.\",\"6uwAvx\":\"Você não pode excluir este nível de preço porque já há produtos vendidos para este nível. Você pode ocultá-lo em vez disso.\",\"tFbRKJ\":\"Não é possível editar a função ou o status do proprietário da conta.\",\"fHfiEo\":\"Não é possível reembolsar um pedido criado manualmente.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Você tem acesso a várias contas. Escolha uma para continuar.\",\"Z6q0Vl\":\"Você já aceitou este convite. Faça login para continuar.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Você não tem nenhuma alteração de e-mail pendente.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"O tempo para concluir seu pedido acabou.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Você deve estar ciente de que este e-mail não é promocional\",\"3ZI8IL\":\"Você deve concordar com os termos e condições\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Você deve criar um tíquete antes de adicionar manualmente um participante.\",\"jE4Z8R\":\"Você deve ter pelo menos um nível de preço\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Você terá que marcar um pedido como pago manualmente. Isso pode ser feito na página de gerenciamento de pedidos.\",\"L/+xOk\":\"Você precisará de um ingresso antes de poder criar uma lista de registro.\",\"Djl45M\":\"Você precisará de um produto antes de poder criar uma atribuição de capacidade.\",\"y3qNri\":\"Você precisará de pelo menos um produto para começar. Grátis, pago ou deixe o usuário decidir o que pagar.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"O nome de sua conta é usado nas páginas do evento e nos e-mails.\",\"veessc\":\"Os participantes aparecerão aqui assim que se registrarem no evento. Você também pode adicionar participantes manualmente.\",\"Eh5Wrd\":\"Seu site incrível 🎉\",\"lkMK2r\":\"Seus detalhes\",\"3ENYTQ\":[\"Sua solicitação de alteração de e-mail para <0>\",[\"0\"],\" está pendente. Verifique seu e-mail para confirmar\"],\"yZfBoy\":\"Sua mensagem foi enviada\",\"KSQ8An\":\"Seu pedido\",\"Jwiilf\":\"Seu pedido foi cancelado\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Seus pedidos aparecerão aqui assim que começarem a chegar.\",\"9TO8nT\":\"Sua senha\",\"P8hBau\":\"Seu pagamento está sendo processado.\",\"UdY1lL\":\"Seu pagamento não foi bem-sucedido, tente novamente.\",\"fzuM26\":\"Seu pagamento não foi bem-sucedido. Por favor, tente novamente.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Seu reembolso está sendo processado.\",\"IFHV2p\":\"Seu ingresso para\",\"x1PPdr\":\"CEP / Código Postal\",\"BM/KQm\":\"CEP ou código postal\",\"+LtVBt\":\"CEP ou Código Postal\",\"25QDJ1\":\"- Clique para publicar\",\"WOyJmc\":\"- Clique para despublicar\",\"ncwQad\":\"(vazio)\",\"B/gRsg\":\"(nenhum)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" já fez check-in\"],\"3beCx0\":[[\"0\"],\" <0>com check-in\"],\"S4PqS9\":[[\"0\"],\" webhooks ativos\"],\"6MIiOI\":[[\"0\"],\" restante\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" de \",[\"1\"],\" lugares ocupados.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"rZTf6P\":[[\"0\"],\" vagas restantes\"],\"/HkCs4\":[[\"0\"],\" ingressos\"],\"dtXkP9\":[[\"0\"],\" próximas datas\"],\"30bTiU\":[[\"activeCount\"],\" ativos\"],\"jTs4am\":[\"Logo \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" participantes estão registrados nesta sessão.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponíveis\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" com check-in\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"há \",[\"diffHr\"],\" h\"],\"NRSLBe\":[\"há \",[\"diffMin\"],\" min\"],\"iYfwJE\":[\"há \",[\"diffSec\"],\" s\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" participantes estão registrados nas sessões afetadas.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de ingresso\"],\"0cLzoF\":[[\"totalOccurrences\"],\" datas\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessões em \",[\"0\"],\" datas (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sessão\"],\"other\":[\"#\",\" sessões\"]}],\" por dia)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Impostos/Taxas\",\"B1St2O\":\"<0>As listas de check-in ajudam você a gerenciar a entrada no evento por dia, área ou tipo de ingresso. Você pode vincular ingressos a listas específicas, como zonas VIP ou passes do Dia 1, e compartilhar um link de check-in seguro com a equipe. Não é necessária conta. O check-in funciona em dispositivos móveis, computador ou tablet, usando a câmera do dispositivo ou um scanner USB HID. \",\"v9VSIS\":\"<0>Defina um limite total único de participação que se aplica a vários tipos de ingresso de uma só vez.<1>Por exemplo, se você vincular um ingresso de <2>Passe Diário e um de <3>Fim de Semana Completo, ambos usarão o mesmo pool de vagas. Quando o limite for atingido, todos os ingressos vinculados param de vender automaticamente.\",\"vKXqag\":\"<0>Esta é a quantidade padrão para todas as datas. A capacidade de cada data pode limitar ainda mais a disponibilidade na <1>página de Programação de Sessões.\",\"ZnVt5v\":\"<0>Os webhooks notificam instantaneamente serviços externos quando eventos ocorrem, como adicionar um novo participante ao seu CRM ou lista de e-mails no momento do registro, garantindo uma automação perfeita.<1>Use serviços de terceiros como <2>Zapier, <3>IFTTT ou <4>Make para criar fluxos de trabalho personalizados e automatizar tarefas.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" na taxa atual\"],\"M2DyLc\":\"1 webhook ativo\",\"6hIk/x\":\"1 participante está registrado nas sessões afetadas.\",\"qOyE2U\":\"1 participante está registrado nesta sessão.\",\"943BwI\":\"1 dia após a data de término\",\"yj3N+g\":\"1 dia após a data de início\",\"Z3etYG\":\"1 dia antes do evento\",\"szSnlj\":\"1 hora antes do evento\",\"yTsaLw\":\"1 ingresso\",\"nz96Ue\":\"1 tipo de ingresso\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 semana antes do evento\",\"09VFYl\":\"12 ingressos oferecidos\",\"HR/cvw\":\"Rua Exemplo 123\",\"dgKxZ5\":\"135+ moedas e 40+ métodos de pagamento\",\"kMU5aM\":\"Um aviso de cancelamento foi enviado para\",\"o++0qa\":\"uma mudança na duração\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Um novo código de verificação foi enviado para o seu email\",\"sr2Je0\":\"uma alteração nos horários de início/término\",\"/z/bH1\":\"Uma breve descrição do seu organizador que será exibida aos seus usuários.\",\"aS0jtz\":\"Abandonado\",\"uyJsf6\":\"Sobre\",\"JvuLls\":\"Absorver taxa\",\"lk74+I\":\"Absorver taxa\",\"1uJlG9\":\"Cor de Destaque\",\"g3UF2V\":\"Aceitar\",\"K5+3xg\":\"Aceitar convite\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Conta · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informações da Conta\",\"EHNORh\":\"Conta não encontrada\",\"bPwFdf\":\"Contas\",\"AhwTa1\":\"Ação Necessária: Informações de IVA Necessárias\",\"APyAR/\":\"Eventos ativos\",\"kCl6ja\":\"Métodos de pagamento ativos\",\"XJOV1Y\":\"Atividade\",\"0YEoxS\":\"Adicionar uma data\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Adicionar uma única data\",\"CjvTPJ\":\"Adicionar outro horário\",\"0XCduh\":\"Adicione pelo menos um horário\",\"/chGpa\":\"Adicione os detalhes de conexão para o evento online.\",\"UWWRyd\":\"Adicione perguntas personalizadas para coletar informações adicionais durante o checkout\",\"Z/dcxc\":\"Adicionar data\",\"Q219NT\":\"Adicionar datas\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Adicionar local\",\"VX6WUv\":\"Adicionar local\",\"GCQlV2\":\"Adicione vários horários se você realizar várias sessões por dia.\",\"7JF9w9\":\"Adicionar pergunta\",\"NLbIb6\":\"Adicionar este participante mesmo assim (ignorar capacidade)\",\"6PNlRV\":\"Adicione este evento ao seu calendário\",\"BGD9Yt\":\"Adicionar ingressos\",\"uIv4Op\":\"Adicione pixels de rastreamento às suas páginas públicas de evento e à página inicial do organizador. Um banner de consentimento de cookies será exibido aos visitantes quando o rastreamento estiver ativo.\",\"QN2F+7\":\"Adicionar Webhook\",\"NsWqSP\":\"Adicione seus perfis de redes sociais e o URL do site. Eles serão exibidos na sua página pública de organizador.\",\"bVjDs9\":\"Taxas adicionais\",\"MKqSg4\":\"Acesso de administrador necessário\",\"0Zypnp\":\"Painel de Administração\",\"YAV57v\":\"Afiliado\",\"I+utEq\":\"O código de afiliado não pode ser alterado\",\"/jHBj5\":\"Afiliado criado com sucesso\",\"uCFbG2\":\"Afiliado eliminado com sucesso\",\"ld8I+f\":\"Programa de afiliados\",\"a41PKA\":\"As vendas do afiliado serão rastreadas\",\"mJJh2s\":\"As vendas do afiliado não serão rastreadas. Isto irá desativar o afiliado.\",\"jabmnm\":\"Afiliado atualizado com sucesso\",\"CPXP5Z\":\"Afiliados\",\"9Wh+ug\":\"Afiliados exportados\",\"3cqmut\":\"Os afiliados ajudam-no a rastrear vendas geradas por parceiros e influenciadores. Crie códigos de afiliado e partilhe-os para monitorizar o desempenho.\",\"z7GAMJ\":\"todas\",\"N40H+G\":\"Todos\",\"7rLTkE\":\"Todos os eventos arquivados\",\"gKq1fa\":\"Todos os participantes\",\"63gRoO\":\"Todos os participantes das sessões selecionadas\",\"uWxIoH\":\"Todos os participantes desta sessão\",\"pMLul+\":\"Todas as moedas\",\"sgUdRZ\":\"Todas as datas\",\"e4q4uO\":\"Todas as datas\",\"ZS/D7f\":\"Todos os eventos encerrados\",\"QsYjci\":\"Todos os eventos\",\"31KB8w\":\"Todos os trabalhos com falha excluídos\",\"D2g7C7\":\"Todos os trabalhos na fila para nova tentativa\",\"B4RFBk\":\"Todas as datas correspondentes\",\"F1/VgK\":\"Todas as sessões\",\"OpWjMq\":\"Todas as sessões\",\"Sxm1lO\":\"Todos os status\",\"dr7CWq\":\"Todos os próximos eventos\",\"GpT6Uf\":\"Permitir que os participantes atualizem suas informações de ingresso (nome, e-mail) através de um link seguro enviado com a confirmação do pedido.\",\"F3mW5G\":\"Permitir que os clientes entrem em uma lista de espera quando este produto estiver esgotado\",\"c4uJfc\":\"Quase lá! Estamos apenas aguardando o processamento do seu pagamento. Isso deve levar apenas alguns segundos.\",\"ocS8eq\":[\"Já tem uma conta? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Já entrou\",\"/H326L\":\"Já reembolsado\",\"USEpOK\":\"Já usa o Stripe em outro organizador? Reutilize essa conexão.\",\"RtxQTF\":\"Também cancelar este pedido\",\"jkNgQR\":\"Também reembolsar este pedido\",\"xYqsHg\":\"Sempre disponível\",\"Wvrz79\":\"Valor pago\",\"Zkymb9\":\"Um email para associar a este afiliado. O afiliado não será notificado.\",\"vRznIT\":\"Ocorreu um erro ao verificar o status da exportação.\",\"eusccx\":\"Uma mensagem opcional para exibir no produto destacado, por exemplo \\\"Vendendo rápido 🔥\\\" ou \\\"Melhor valor\\\"\",\"5GJuNp\":[\"e mais \",[\"0\"],\"...\"],\"QNrkms\":\"Resposta atualizada com sucesso.\",\"+qygei\":\"Respostas\",\"GK7Lnt\":\"Respostas no checkout (ex.: escolha de refeição)\",\"lE8PgT\":\"Quaisquer datas que você personalizou manualmente serão mantidas.\",\"vP3Nzg\":[\"Aplica-se a \",[\"0\"],\" datas não canceladas carregadas atualmente nesta página.\"],\"kkVyZZ\":\"Vale para quem abre o link sem estar logado. Membros autenticados sempre veem tudo.\",\"je4muG\":[\"Aplica-se a todas as \",[\"0\"],\" datas não canceladas deste evento — incluindo datas que não estão carregadas no momento.\"],\"YIIQtt\":\"Aplicar alterações\",\"NzWX1Y\":\"Aplicar a\",\"Ps5oDT\":\"Aplicar a todos os ingressos\",\"261RBr\":\"Aprovar mensagem\",\"naCW6Z\":\"Abril\",\"B495Gs\":\"Arquivar\",\"5sNliy\":\"Arquivar evento\",\"BrwnrJ\":\"Arquivar organizador\",\"E5eghW\":\"Arquive este evento para ocultá-lo do público. Você pode restaurá-lo mais tarde.\",\"eqFkeI\":\"Arquive este organizador. Isso também arquivará todos os eventos pertencentes a este organizador.\",\"BzcxWv\":\"Organizadores arquivados\",\"9cQBd6\":\"Tem certeza que deseja arquivar este evento? Ele não será mais visível para o público.\",\"Trnl3E\":\"Tem certeza que deseja arquivar este organizador? Isso também arquivará todos os eventos pertencentes a este organizador.\",\"wOvn+e\":[\"Tem certeza de que deseja cancelar \",[\"count\"],\" data(s)? Os participantes afetados serão notificados por e-mail.\"],\"GTxE0U\":\"Tem certeza de que deseja cancelar esta data? Os participantes afetados serão notificados por e-mail.\",\"VkSk/i\":\"Tem certeza de que deseja cancelar esta mensagem agendada?\",\"0aVEBY\":\"Tem certeza de que deseja excluir todos os trabalhos com falha?\",\"LchiNd\":\"Tem a certeza de que deseja eliminar este afiliado? Esta ação não pode ser anulada.\",\"vPeW/6\":\"Tem certeza de que deseja excluir esta configuração? Isso pode afetar as contas que a utilizam.\",\"h42Hc/\":\"Tem certeza de que deseja excluir esta data? Esta ação não pode ser desfeita.\",\"JmVITJ\":\"Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo padrão.\",\"aLS+A6\":\"Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo do organizador ou padrão.\",\"5H3Z78\":\"Tem certeza de que deseja excluir este webhook?\",\"147G4h\":\"Tem certeza de que deseja sair?\",\"VDWChT\":\"Tem certeza de que deseja definir este organizador como rascunho? Isso tornará a página do organizador invisível ao público.\",\"pWtQJM\":\"Tem certeza de que deseja tornar este organizador público? Isso tornará a página do organizador visível ao público.\",\"EOqL/A\":\"Tem certeza de que deseja oferecer uma vaga a esta pessoa? Ela receberá uma notificação por e-mail.\",\"yAXqWW\":\"Tem certeza de que deseja excluir permanentemente esta data? Isso não pode ser desfeito.\",\"WFHOlF\":\"Tem a certeza de que deseja publicar este evento? Uma vez publicado, será visível ao público.\",\"4TNVdy\":\"Tem a certeza de que deseja publicar este perfil de organizador? Uma vez publicado, será visível ao público.\",\"8x0pUg\":\"Tem certeza de que deseja remover esta entrada da lista de espera?\",\"cDtoWq\":[\"Tem certeza de que deseja reenviar a confirmação do pedido para \",[\"0\"],\"?\"],\"xeIaKw\":[\"Tem certeza de que deseja reenviar o ingresso para \",[\"0\"],\"?\"],\"BjbocR\":\"Tem certeza que deseja restaurar este evento?\",\"7MjfcR\":\"Tem certeza que deseja restaurar este organizador?\",\"ExDt3P\":\"Tem a certeza de que deseja despublicar este evento? Já não será visível ao público.\",\"5Qmxo/\":\"Tem a certeza de que deseja despublicar este perfil de organizador? Já não será visível ao público.\",\"Uqefyd\":\"Você está registrado para IVA na UE?\",\"+QARA4\":\"Arte\",\"tLf3yJ\":\"Como sua empresa está sediada na Irlanda, o IVA irlandês de 23% se aplica automaticamente a todas as taxas da plataforma.\",\"tMeVa/\":\"Solicitar nome e email para cada ingresso comprado\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Atribuir plano\",\"xdiER7\":\"Nível atribuído\",\"F2rX0R\":\"Pelo menos um tipo de evento deve ser selecionado\",\"BCmibk\":\"Tentativas\",\"6PecK3\":\"Presença e taxas de check-in em todos os eventos\",\"K2tp3v\":\"participante\",\"AJ4rvK\":\"Participante cancelado\",\"qvylEK\":\"Participante criado\",\"Aspq3b\":\"Coleta de dados dos participantes\",\"fpb0rX\":\"Dados do participante copiados do pedido\",\"0R3Y+9\":\"E-mail do Participante\",\"94aQMU\":\"Informações do participante\",\"KkrBiR\":\"Coleta de informações do participante\",\"av+gjP\":\"Nome do Participante\",\"sjPjOg\":\"Notas do participante\",\"cosfD8\":\"Status do Participante\",\"D2qlBU\":\"Participante atualizado\",\"22BOve\":\"Participante atualizado com sucesso\",\"x8Vnvf\":\"O ingresso do participante não está incluído nesta lista\",\"/Ywywr\":\"participantes\",\"zLRobu\":\"participantes com check-in\",\"k3Tngl\":\"Participantes exportados\",\"UoIRW8\":\"Participantes registrados\",\"5UbY+B\":\"Participantes com um tíquete específico\",\"4HVzhV\":\"Participantes:\",\"HVkhy2\":\"Análise de atribuição\",\"dMMjeD\":\"Detalhamento de atribuição\",\"1oPDuj\":\"Valor de atribuição\",\"DBHTm/\":\"Agosto\",\"JgREph\":\"A oferta automática está ativada\",\"V7Tejz\":\"Processar lista de espera automaticamente\",\"PZ7FTW\":\"Detectado automaticamente com base na cor de fundo, mas pode ser substituído\",\"zlnTuI\":\"Oferecer ingressos automaticamente à próxima pessoa quando houver capacidade disponível. Se desativado, você pode processar a lista de espera manualmente na página Lista de Espera.\",\"csDS2L\":\"Disponível\",\"clF06r\":\"Disponível para reembolso\",\"NB5+UG\":\"Tokens Disponíveis\",\"L+wGOG\":\"Pendente\",\"qcw2OD\":\"Aguarda pagto.\",\"kNmmvE\":\"Awesome Events Lda.\",\"iH8pgl\":\"Voltar\",\"TeSaQO\":\"Voltar para Contas\",\"X7Q/iM\":\"Voltar ao calendário\",\"kYqM1A\":\"Voltar ao evento\",\"s5QRF3\":\"Voltar para mensagens\",\"td/bh+\":\"Voltar aos Relatórios\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Preço base\",\"hviJef\":\"Baseado no período de venda global acima, não por data\",\"jIPNJG\":\"Informações básicas\",\"UabgBd\":\"Corpo é obrigatório\",\"HWXuQK\":\"Adicione esta página aos favoritos para gerenciar seu pedido a qualquer momento.\",\"CUKVDt\":\"Personalize seus ingressos com um logotipo, cores e mensagem de rodapé personalizados.\",\"4BZj5p\":\"Proteção contra fraude integrada\",\"cr7kGH\":\"Edição em massa\",\"1Fbd6n\":\"Edição em massa de datas\",\"Eq6Tu9\":\"Falha na atualização em massa.\",\"9N+p+g\":\"Negócios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nome da empresa\",\"bv6RXK\":\"Rótulo do Botão\",\"ChDLlO\":\"Texto do botão\",\"BUe8Wj\":\"O comprador paga\",\"qF1qbA\":\"Os compradores veem um preço limpo. A taxa da plataforma é deduzida do seu pagamento.\",\"dg05rc\":\"Ao adicionar pixels de rastreamento, você reconhece que você e esta plataforma são controladores conjuntos dos dados coletados. Você é responsável por garantir que tem uma base legal para esse processamento de acordo com as leis de privacidade aplicáveis (LGPD, GDPR, CCPA, etc.).\",\"DFqasq\":[\"Ao continuar, você concorda com os <0>Termos de Serviço de \",[\"0\"],\"\"],\"wVSa+U\":\"Por dia do mês\",\"0MnNgi\":\"Por dia da semana\",\"CetOZE\":\"Por tipo de ingresso\",\"lFdbRS\":\"Ignorar taxas de aplicação\",\"AjVXBS\":\"Calendário\",\"alkXJ5\":\"Visualização de calendário\",\"2VLZwd\":\"Botão de Chamada para Ação\",\"rT2cV+\":\"Câmera\",\"7hYa9y\":\"Permissão de câmera negada. <0>Solicitar permissão novamente, ou libere o acesso à câmera nas configurações do navegador.\",\"D02dD9\":\"Campanha\",\"RRPA79\":\"Check-in indisponível\",\"OcVwAd\":[\"Cancelar \",[\"count\"],\" data(s)\"],\"H4nE+E\":\"Cancelar todos os produtos e devolvê-los ao pool disponível\",\"Py78q9\":\"Cancelar data\",\"tOXAdc\":\"Cancelar irá cancelar todos os participantes associados a este pedido e devolver os ingressos ao pool disponível.\",\"vev1Jl\":\"Cancelamento\",\"Ha17hq\":[[\"0\"],\" data(s) cancelada(s)\"],\"01sEfm\":\"Não é possível excluir a configuração padrão do sistema\",\"VsM1HH\":\"Atribuições de capacidade\",\"9bIMVF\":\"Gestão de capacidade\",\"H7K8og\":\"A capacidade deve ser 0 ou maior\",\"nzao08\":\"atualizações de capacidade\",\"4cp9NP\":\"Capacidade utilizada\",\"K7tIrx\":\"Categoria\",\"o+XJ9D\":\"Alterar\",\"kJkjoB\":\"Alterar duração\",\"J0KExZ\":\"Alterar o limite de participantes\",\"CIHJJf\":\"Alterar configurações da lista de espera\",\"B5icLR\":[\"Duração alterada para \",[\"count\"],\" data(s)\"],\"Kb+0BT\":\"Cobranças\",\"2tbLdK\":\"Caridade\",\"BPWGKn\":\"Fazer check-in\",\"6uFFoY\":\"Cancelar check-in\",\"FjAlwK\":[\"Confira este evento: \",[\"0\"]],\"v4fiSg\":\"Verifique o seu email\",\"51AsAN\":\"Verifique sua caixa de entrada! Se houver ingressos associados a este e-mail, você receberá um link para visualizá-los.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Check-in criado\",\"F4SRy3\":\"Check-in excluído\",\"as6XfO\":[\"Check-in de \",[\"0\"],\" foi desfeito\"],\"9s/wrQ\":\"Histórico de check-in\",\"Wwztk4\":\"Lista de check-in\",\"9gPPUY\":\"Lista de Check-In Criada!\",\"dwjiJt\":\"Info da lista\",\"7od0PV\":\"listas de check-in\",\"f2vU9t\":\"Listas de Check-in\",\"XprdTn\":\"Navegação de check-in\",\"5tV1in\":\"Progresso do check-in\",\"SHJwyq\":\"Taxa de check-in\",\"qCqdg6\":\"Status do Check-In\",\"cKj6OE\":\"Resumo de Check-in\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Com check-in\",\"DM4gBB\":\"Chinês (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Escolha uma ação diferente\",\"fkb+y3\":\"Escolha um local salvo para aplicar.\",\"Zok1Gx\":\"Escolha um organizador\",\"pkk46Q\":\"Escolha um organizador\",\"Crr3pG\":\"Escolher calendário\",\"LAW8Vb\":\"Escolha a configuração padrão para novos eventos. Isso pode ser substituído para eventos individuais.\",\"pjp2n5\":\"Escolha quem paga a taxa da plataforma. Isso não afeta as taxas adicionais que você configurou nas configurações da sua conta.\",\"xCJdfg\":\"Limpar\",\"QyOWu9\":\"Limpar local — voltar ao padrão do evento\",\"V8yTm6\":\"Limpar busca\",\"kmnKnX\":\"Limpar remove qualquer substituição por data. As datas afetadas voltarão ao local padrão do evento.\",\"/o+aQX\":\"Clique para cancelar\",\"gD7WGV\":\"Clique para reabrir para novas vendas\",\"CySr+W\":\"Clique para ver as notas\",\"RG3szS\":\"fechar\",\"RWw9Lg\":\"Fechar modal\",\"XwdMMg\":\"O código só pode conter letras, números, hífenes e underscores\",\"+yMJb7\":\"O código é obrigatório\",\"m9SD3V\":\"O código deve ter pelo menos 3 caracteres\",\"V1krgP\":\"O código não deve ter mais de 20 caracteres\",\"psqIm5\":\"Colabore com sua equipe para criar eventos incríveis juntos.\",\"4bUH9i\":\"Coletar detalhes do participante para cada ingresso comprado.\",\"TkfG8v\":\"Coletar dados por pedido\",\"96ryID\":\"Coletar dados por ingresso\",\"FpsvqB\":\"Modo de Cor\",\"jEu4bB\":\"Colunas\",\"CWk59I\":\"Comédia\",\"rPA+Gc\":\"Preferências de comunicação\",\"zFT5rr\":\"completo\",\"bUQMpb\":\"Concluir configuração do Stripe\",\"744BMm\":\"Conclua seu pedido para garantir seus ingressos. Esta oferta é por tempo limitado, então não demore muito.\",\"5YrKW7\":\"Complete seu pagamento para garantir seus ingressos.\",\"xGU92i\":\"Complete seu perfil para se juntar à equipe.\",\"QOhkyl\":\"Compor\",\"ih35UP\":\"Centro de conferências\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuração atribuída\",\"X1zdE7\":\"Configuração criada com sucesso\",\"mLBUMQ\":\"Configuração excluída com sucesso\",\"UIENhw\":\"Os nomes de configuração são visíveis para os usuários finais. As taxas fixas serão convertidas para a moeda do pedido na taxa de câmbio atual.\",\"eeZdaB\":\"Configuração atualizada com sucesso\",\"3cKoxx\":\"Configurações\",\"8v2LRU\":\"Configure os detalhes do evento, localização, opções de checkout e notificações por email.\",\"raw09+\":\"Configure como os dados dos participantes são coletados durante o checkout\",\"FI60XC\":\"Configurar impostos e taxas\",\"av6ukY\":\"Configure quais produtos estão disponíveis para esta sessão e, opcionalmente, ajuste os preços.\",\"NGXKG/\":\"Confirmar endereço de e-mail\",\"JRQitQ\":\"Confirme a nova senha\",\"Auz0Mz\":\"Confirme seu e-mail para acessar todos os recursos.\",\"7+grte\":\"E-mail de confirmação enviado! Verifique sua caixa de entrada.\",\"n/7+7Q\":\"Confirmação enviada para\",\"x3wVFc\":\"Parabéns! Seu evento agora está visível para o público.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Conecte o Stripe para habilitar a edição de modelos de e-mail\",\"LmvZ+E\":\"Conecte o Stripe para habilitar mensagens\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contato\",\"LOFgda\":[\"Contato \",[\"0\"]],\"41BQ3k\":\"Email de contacto\",\"KcXRN+\":\"E-mail de contato para suporte\",\"m8WD6t\":\"Continuar configuração\",\"0GwUT4\":\"Ir para o checkout\",\"sBV87H\":\"Continuar para a criação do evento\",\"nKtyYu\":\"Continuar para o próximo passo\",\"F3/nus\":\"Continuar para pagamento\",\"p2FRHj\":\"Controle como as taxas da plataforma são tratadas para este evento\",\"NqfabH\":\"Controle quem entra nesta data\",\"fmYxZx\":\"Controle quem entra e quando\",\"1JnTgU\":\"Copiado de cima\",\"FxVG/l\":\"Copiado para a área de transferência\",\"PiH3UR\":\"Copiado!\",\"4i7smN\":\"Copiar ID da conta\",\"uUPbPg\":\"Copiar link de afiliado\",\"iVm46+\":\"Copiar código\",\"cF2ICc\":\"Copiar link do cliente\",\"+2ZJ7N\":\"Copiar detalhes para o primeiro participante\",\"ZN1WLO\":\"Copiar Email\",\"y1eoq1\":\"Copiar link\",\"tUGbi8\":\"Copiar meus dados para:\",\"y22tv0\":\"Copie este link para compartilhá-lo em qualquer lugar\",\"/4gGIX\":\"Copiar para a área de transferência\",\"e0f4yB\":\"Não foi possível excluir o local\",\"vkiDx2\":\"Não foi possível preparar a atualização em massa.\",\"KOavaU\":\"Não foi possível obter os detalhes do endereço\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Não foi possível salvar a data\",\"eeLExK\":\"Não foi possível salvar o local\",\"P0rbCt\":\"Imagem de capa\",\"60u+dQ\":\"A imagem de capa será exibida no topo da sua página de evento\",\"2NLjA6\":\"A imagem de capa será exibida no topo da página do organizador\",\"GkrqoY\":\"Cobre todos os ingressos\",\"zg4oSu\":[\"Criar Modelo \",[\"0\"]],\"RKKhnW\":\"Crie um widget personalizado para vender ingressos no seu site.\",\"6sk7PP\":\"Criar um número fixo\",\"PhioFp\":\"Crie uma nova lista de check-in para uma sessão ativa ou entre em contato com o organizador se achar que isso é um erro.\",\"yIRev4\":\"Criar uma senha\",\"j7xZ7J\":\"Crie organizadores adicionais para gerenciar marcas, departamentos ou séries de eventos separados em uma conta. Cada organizador tem seus próprios eventos, configurações e página pública.\",\"xfKgwv\":\"Criar afiliado\",\"tudG8q\":\"Crie e configure ingressos e mercadorias para venda.\",\"YAl9Hg\":\"Criar Configuração\",\"BTne9e\":\"Criar modelos de e-mail personalizados para este evento que substituem os padrões do organizador\",\"YIDzi/\":\"Criar Modelo Personalizado\",\"tsGqx5\":\"Criar data\",\"Nc3l/D\":\"Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Criar para esta data\",\"eWEV9G\":\"Criar nova senha\",\"wl2iai\":\"Criar programação\",\"8AiKIu\":\"Criar ingresso ou produto\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Crie links rastreáveis para recompensar parceiros que promovem seu evento.\",\"dkAPxi\":\"Criar Webhook\",\"5slqwZ\":\"Crie seu evento\",\"JQNMrj\":\"Crie o seu primeiro evento\",\"ZCSSd+\":\"Crie seu próprio evento\",\"67NsZP\":\"A criar evento...\",\"H34qcM\":\"A criar organizador...\",\"1YMS+X\":\"A criar o seu evento, por favor aguarde\",\"yiy8Jt\":\"A criar o seu perfil de organizador, por favor aguarde\",\"lfLHNz\":\"Rótulo do CTA é obrigatório\",\"0xLR6W\":\"Atualmente atribuído\",\"iTvh6I\":\"Atualmente disponível para compra\",\"A42Dqn\":\"Marca personalizada\",\"Guo0lU\":\"Data e hora personalizadas\",\"mimF6c\":\"Mensagem personalizada após o checkout\",\"WDMdn8\":\"Perguntas personalizadas\",\"O6mra8\":\"Perguntas personalizadas\",\"axv/Mi\":\"Modelo personalizado\",\"2YeVGY\":\"Link do cliente copiado para a área de transferência\",\"QMHSMS\":\"O cliente receberá um email confirmando o reembolso\",\"L/Qc+w\":\"Endereço de e-mail do cliente\",\"wpfWhJ\":\"Primeiro nome do cliente\",\"GIoqtA\":\"Sobrenome do cliente\",\"NihQNk\":\"Clientes\",\"7gsjkI\":\"Personalize os e-mails enviados aos seus clientes usando modelos Liquid. Estes modelos serão usados como padrão para todos os eventos em sua organização.\",\"xJaTUK\":\"Personalize o layout, cores e marca da página inicial do seu evento.\",\"MXZfGN\":\"Personalize as perguntas feitas durante o checkout para coletar informações importantes dos seus participantes.\",\"iX6SLo\":\"Personalize o texto exibido no botão continuar\",\"pxNIxa\":\"Personalize seu modelo de e-mail usando modelos Liquid\",\"3trPKm\":\"Personalize a aparência da sua página de organizador\",\"U0sC6H\":\"Diário\",\"/gWrVZ\":\"Receita diária, impostos, taxas e reembolsos em todos os eventos\",\"zgCHnE\":\"Relatório de vendas diárias\",\"nHm0AI\":\"Detalhamento das vendas diárias, impostos e taxas\",\"1aPnDT\":\"Dança\",\"pvnfJD\":\"Escuro\",\"MaB9wW\":\"Cancelamento de data\",\"e6cAxJ\":\"Data cancelada\",\"81jBnC\":\"Data cancelada com sucesso\",\"a/C/6R\":\"Data criada com sucesso\",\"IW7Q+u\":\"Data excluída\",\"rngCAz\":\"Data excluída com sucesso\",\"lnYE59\":\"Data do evento\",\"gnBreG\":\"Data em que o pedido foi feito\",\"vHbfoQ\":\"Data reativada\",\"hvah+S\":\"Data reaberta para novas vendas\",\"Ez0YsD\":\"Data atualizada com sucesso\",\"VTsZuy\":\"Datas e horários são gerenciados na\",\"/ITcnz\":\"dia\",\"H7OUPr\":\"Dia\",\"JtHrX9\":\"Dia do mês\",\"J/Upwb\":\"dias\",\"vDVA2I\":\"Dias do mês\",\"rDLvlL\":\"Dias da semana\",\"r6zgGo\":\"Dezembro\",\"jbq7j2\":\"Recusar\",\"ovBPCi\":\"Padrão\",\"JtI4vj\":\"Coleta padrão de informações do participante\",\"ULjv90\":\"Capacidade padrão por data\",\"3R/Tu2\":\"Gestão de taxas padrão\",\"1bZAZA\":\"Modelo padrão será usado\",\"HNlEFZ\":\"excluir\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Excluir \",[\"count\"],\" data(s) selecionada(s)? Datas com pedidos serão ignoradas. Esta ação não pode ser desfeita.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Excluir tudo\",\"6EkaOO\":\"Excluir data\",\"io0G93\":\"Excluir evento\",\"+jw/c1\":\"Excluir imagem\",\"hdyeZ0\":\"Excluir trabalho\",\"xxjZeP\":\"Excluir local\",\"sY3tIw\":\"Excluir organizador\",\"UBv8UK\":\"Excluir permanentemente\",\"dPyJ15\":\"Excluir Modelo\",\"mxsm1o\":\"Excluir esta pergunta? Isso não pode ser desfeito.\",\"snMaH4\":\"Excluir webhook\",\"LIZZLY\":[[\"0\"],\" data(s) excluída(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desselecionar tudo\",\"NvuEhl\":\"Elementos de Design\",\"H8kMHT\":\"Não recebeu o código?\",\"G8KNgd\":\"Local diferente\",\"E/QGRL\":\"Desativado\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Fechar esta mensagem\",\"BREO0S\":\"Exibe uma caixa de seleção permitindo que os clientes optem por receber comunicações de marketing deste organizador de eventos.\",\"pfa8F0\":\"Nome de exibição\",\"Kdpf90\":\"Não esqueça!\",\"352VU2\":\"Não tem uma conta? <0>Cadastre-se\",\"AXXqG+\":\"Doação\",\"DPfwMq\":\"Concluído\",\"JoPiZ2\":\"Instruções para a equipe\",\"2+O9st\":\"Baixe relatórios de vendas, participantes e financeiros para todos os pedidos concluídos.\",\"eneWvv\":\"Rascunho\",\"Ts8hhq\":\"Devido ao alto risco de spam, você deve conectar uma conta Stripe antes de poder modificar modelos de e-mail. Isso é para garantir que todos os organizadores de eventos sejam verificados e responsáveis.\",\"TnzbL+\":\"Devido ao alto risco de spam, você deve conectar uma conta Stripe antes de poder enviar mensagens aos participantes.\\nIsso é para garantir que todos os organizadores de eventos sejam verificados e responsáveis.\",\"euc6Ns\":\"Duplicar\",\"YueC+F\":\"Duplicar data\",\"KRmTkx\":\"Duplicar produto\",\"Jd3ymG\":\"A duração deve ser de pelo menos 1 minuto.\",\"KIjvtr\":\"Holandês\",\"22xieU\":\"ex. 180 (3 horas)\",\"/zajIE\":\"ex. Sessão da manhã\",\"SPKbfM\":\"ex.: Comprar ingressos, Registrar-se agora\",\"fc7wGW\":\"ex: Atualização importante sobre seus ingressos\",\"54MPqC\":\"ex: Padrão, Premium, Enterprise\",\"3RQ81z\":\"Cada pessoa receberá um e-mail com uma vaga reservada para concluir sua compra.\",\"5oD9f/\":\"Mais cedo\",\"LTzmgK\":[\"Editar Modelo \",[\"0\"]],\"v4+lcZ\":\"Editar afiliado\",\"2iZEz7\":\"Editar resposta\",\"t2bbp8\":\"Editar participante\",\"etaWtB\":\"Editar detalhes do participante\",\"+guao5\":\"Editar Configuração\",\"1Mp/A4\":\"Editar data\",\"m0ZqOT\":\"Editar local\",\"8oivFT\":\"Editar local\",\"vRWOrM\":\"Editar detalhes do pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Editada\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educação\",\"iiWXDL\":\"Falhas de elegibilidade\",\"zPiC+q\":\"Listas de Check-In Elegíveis\",\"SiVstt\":\"E-mails e mensagens agendadas\",\"V2sk3H\":\"E-mail e Modelos\",\"hbwCKE\":\"Endereço de email copiado para a área de transferência\",\"dSyJj6\":\"Os endereços de e-mail não coincidem\",\"elW7Tn\":\"Corpo do E-mail\",\"ZsZeV2\":\"O email é obrigatório\",\"Be4gD+\":\"Visualização do E-mail\",\"6IwNUc\":\"Modelos de E-mail\",\"H/UMUG\":\"Verificação de e-mail necessária\",\"L86zy2\":\"Email verificado com sucesso!\",\"FSN4TS\":\"Widget incorporado\",\"z9NkYY\":\"Widget incorporável\",\"Qj0GKe\":\"Ativar autoatendimento para participantes\",\"hEtQsg\":\"Ativar autoatendimento para participantes por padrão\",\"Upeg/u\":\"Habilitar este modelo para envio de e-mails\",\"7dSOhU\":\"Ativar lista de espera\",\"RxzN1M\":\"Ativado\",\"xDr/ct\":\"Término\",\"sGjBEq\":\"Data e hora de término (opcional)\",\"PKXt9R\":\"A data de término deve ser posterior à data de início\",\"UmzbPa\":\"Data de término da sessão\",\"ZayGC7\":\"Terminar em uma data\",\"48Y16Q\":\"Hora de fim (opcional)\",\"jpNdOC\":\"Hora de término da sessão\",\"TbaYrr\":[\"Encerrado \",[\"0\"]],\"CFgwiw\":[\"Termina \",[\"0\"]],\"SqOIQU\":\"Insira um valor de capacidade ou escolha ilimitado.\",\"h37gRz\":\"Insira um rótulo ou escolha removê-lo.\",\"7YZofi\":\"Digite um assunto e corpo para ver a visualização\",\"khyScF\":\"Insira um tempo para deslocamento.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Introduza o email do afiliado (opcional)\",\"ARkzso\":\"Introduza o nome do afiliado\",\"ej4L8b\":\"Insira a capacidade\",\"6KnyG0\":\"Digite o e-mail\",\"INDKM9\":\"Digite o assunto do e-mail...\",\"xUgUTh\":\"Digite o primeiro nome\",\"9/1YKL\":\"Digite o sobrenome\",\"VpwcSk\":\"Digite a nova senha\",\"kWg31j\":\"Introduza um código de afiliado único\",\"C3nD/1\":\"Digite seu e-mail\",\"VmXiz4\":\"Digite seu e-mail e enviaremos instruções para redefinir sua senha.\",\"n9V+ps\":\"Digite seu nome\",\"IdULhL\":\"Digite seu número de IVA incluindo o código do país, sem espaços (ex: IE1234567A, DE123456789)\",\"o21Y+P\":\"inscrições\",\"X88/6w\":\"As inscrições aparecerão aqui quando os clientes entrarem na lista de espera de produtos esgotados.\",\"LslKhj\":\"Erro ao carregar os registros\",\"VCNHvW\":\"Evento arquivado\",\"ZD0XSb\":\"Evento arquivado com sucesso\",\"WgD6rb\":\"Categoria do evento\",\"b46pt5\":\"Imagem de capa do evento\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evento criado\",\"1Hzev4\":\"Modelo personalizado do evento\",\"7u9/DO\":\"Evento excluído com sucesso\",\"imgKgl\":\"Descrição do evento\",\"kJDmsI\":\"Detalhes do evento\",\"m/N7Zq\":\"Endereço Completo do Evento\",\"Nl1ZtM\":\"Local do Evento\",\"PYs3rP\":\"Nome do evento\",\"HhwcTQ\":\"Nome do evento\",\"WZZzB6\":\"O nome do evento é obrigatório\",\"Wd5CDM\":\"O nome do evento deve ter menos de 150 caracteres\",\"4JzCvP\":\"Evento não disponível\",\"Gh9Oqb\":\"Nome do organizador do evento\",\"mImacG\":\"Página do Evento\",\"Hk9Ki/\":\"Evento restaurado com sucesso\",\"JyD0LH\":\"Configurações do evento\",\"cOePZk\":\"Horário do Evento\",\"e8WNln\":\"Fuso horário do evento\",\"GeqWgj\":\"Fuso Horário do Evento\",\"XVLu2v\":\"Título do evento\",\"OfmsI9\":\"Evento muito recente\",\"4SILkp\":\"Totais do evento\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento atualizado\",\"4K2OjV\":\"Local do Evento\",\"19j6uh\":\"Desempenho de Eventos\",\"PC3/fk\":\"Eventos Começando nas Próximas 24 Horas\",\"nwiZdc\":[\"A cada \",[\"0\"]],\"2LJU4o\":[\"A cada \",[\"0\"],\" dias\"],\"yLiYx+\":[\"A cada \",[\"0\"],\" meses\"],\"nn9ice\":[\"A cada \",[\"0\"],\" semanas\"],\"Cdr8f9\":[\"A cada \",[\"0\"],\" semanas em \",[\"1\"]],\"GVEHRk\":[\"A cada \",[\"0\"],\" anos\"],\"fTFfOK\":\"Todo modelo de e-mail deve incluir um botão de chamada para ação que leva à página apropriada\",\"BVinvJ\":\"Exemplos: \\\"Como você soube de nós?\\\", \\\"Nome da empresa para fatura\\\"\",\"2hGPQG\":\"Exemplos: \\\"Tamanho da camiseta\\\", \\\"Preferência de refeição\\\", \\\"Cargo\\\"\",\"qNuTh3\":\"Exceção\",\"M1RnFv\":\"Expirado\",\"kF8HQ7\":\"Exportar respostas\",\"2KAI4N\":\"Exportar CSV\",\"JKfSAv\":\"Falha na exportação. Por favor, tente novamente.\",\"SVOEsu\":\"Exportação iniciada. Preparando arquivo...\",\"wuyaZh\":\"Exportação bem-sucedida\",\"9bpUSo\":\"A exportar afiliados\",\"jtrqH9\":\"Exportando participantes\",\"R4Oqr8\":\"Exportação concluída. Baixando arquivo...\",\"UlAK8E\":\"Exportando pedidos\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Falhou\",\"8uOlgz\":\"Falhou em\",\"tKcbYd\":\"Trabalhos com falha\",\"SsI9v/\":\"Falha ao abandonar o pedido. Por favor, tente novamente.\",\"LdPKPR\":\"Falha ao atribuir configuração\",\"PO0cfn\":\"Falha ao cancelar data\",\"YUX+f+\":\"Falha ao cancelar datas\",\"SIHgVQ\":\"Falha ao cancelar mensagem\",\"cEFg3R\":\"Falha ao criar afiliado\",\"dVgNF1\":\"Falha ao criar configuração\",\"fAoRRJ\":\"Falha ao criar programação\",\"U66oUa\":\"Falha ao criar modelo\",\"aFk48v\":\"Falha ao excluir configuração\",\"n1CYMH\":\"Falha ao excluir data\",\"KXv+Qn\":\"Falha ao excluir data. Ela pode ter pedidos existentes.\",\"JJ0uRo\":\"Falha ao excluir datas\",\"rgoBnv\":\"Falha ao excluir o evento\",\"Zw6LWb\":\"Falha ao excluir trabalho\",\"tq0abZ\":\"Falha ao excluir trabalhos\",\"2mkc3c\":\"Falha ao excluir o organizador\",\"vKMKnu\":\"Falha ao excluir pergunta\",\"xFj7Yj\":\"Falha ao excluir modelo\",\"jo3Gm6\":\"Falha ao exportar afiliados\",\"Jjw03p\":\"Falha ao exportar participantes\",\"ZPwFnN\":\"Falha ao exportar pedidos\",\"zGE3CH\":\"Falha ao exportar relatório. Por favor, tente novamente.\",\"lS9/aZ\":\"Falha ao carregar destinatários\",\"X4o0MX\":\"Falha ao carregar o Webhook\",\"ETcU7q\":\"Falha ao oferecer vaga\",\"5670b9\":\"Falha ao oferecer ingressos\",\"e5KIbI\":\"Falha ao reativar data\",\"7zyx8a\":\"Falha ao remover da lista de espera\",\"A/P7PX\":\"Falha ao remover substituição\",\"ogWc1z\":\"Falha ao reabrir a data\",\"0+iwE5\":\"Falha ao reordenar perguntas\",\"EJPAcd\":\"Falha ao reenviar confirmação do pedido\",\"DjSbj3\":\"Falha ao reenviar ingresso\",\"YQ3QSS\":\"Falha ao reenviar código de verificação\",\"wDioLj\":\"Falha ao tentar novamente o trabalho\",\"DKYTWG\":\"Falha ao tentar novamente os trabalhos\",\"WRREqF\":\"Falha ao salvar substituição\",\"sj/eZA\":\"Falha ao salvar substituição de preço\",\"780n8A\":\"Falha ao salvar configurações do produto\",\"zTkTF3\":\"Falha ao salvar modelo\",\"l6acRV\":\"Falha ao salvar as configurações de IVA. Por favor, tente novamente.\",\"T6B2gk\":\"Falha ao enviar mensagem. Por favor, tente novamente.\",\"lKh069\":\"Falha ao iniciar a exportação\",\"t/KVOk\":\"Falha ao iniciar a personificação. Por favor, tente novamente.\",\"QXgjH0\":\"Falha ao parar a personificação. Por favor, tente novamente.\",\"i0QKrm\":\"Falha ao atualizar afiliado\",\"NNc33d\":\"Falha ao atualizar a resposta.\",\"E9jY+o\":\"Falha ao atualizar participante\",\"uQynyf\":\"Falha ao atualizar configuração\",\"i2PFQJ\":\"Falha ao atualizar o status do evento\",\"EhlbcI\":\"Falha ao atualizar nível de mensagens\",\"rpGMzC\":\"Falha ao atualizar pedido\",\"T2aCOV\":\"Falha ao atualizar o status do organizador\",\"Eeo/Gy\":\"Falha ao atualizar configuração\",\"kqA9lY\":\"Falha ao atualizar configurações de IVA\",\"7/9RFs\":\"Falha ao carregar imagem.\",\"nkNfWu\":\"Falha ao enviar imagem. Por favor, tente novamente.\",\"rxy0tG\":\"Falha ao verificar email\",\"QRUpCk\":\"Família\",\"5LO38w\":\"Pagamentos rápidos para seu banco\",\"4lgLew\":\"Fevereiro\",\"9bHCo2\":\"Moeda da taxa\",\"/sV91a\":\"Gestão de taxas\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Taxas ignoradas\",\"cf35MA\":\"Festival\",\"pAey+4\":\"O arquivo é muito grande. O tamanho máximo é 5MB.\",\"VejKUM\":\"Preencha seus dados acima primeiro\",\"/n6q8B\":\"Cinema\",\"L1qbUx\":\"Filtrar participantes\",\"8OvVZZ\":\"Filtrar Participantes\",\"N/H3++\":\"Filtrar por data\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Termine de configurar o Stripe\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"Primeiro\",\"1vBhpG\":\"Primeiro participante\",\"4pwejF\":\"O primeiro nome é obrigatório\",\"3lkYdQ\":\"Taxa fixa\",\"6bBh3/\":\"Taxa Fixa\",\"zWqUyJ\":\"Taxa fixa cobrada por transação\",\"LWL3Bs\":\"A taxa fixa deve ser 0 ou maior\",\"0RI8m4\":\"Flash desligado\",\"q0923e\":\"Flash ligado\",\"lWxAUo\":\"Comida e bebida\",\"nFm+5u\":\"Texto do Rodapé\",\"a8nooQ\":\"Quarto\",\"mob/am\":\"Sex\",\"wtuVU4\":\"Frequência\",\"xVhQZV\":\"Sex\",\"39y5bn\":\"Sexta-feira\",\"f5UbZ0\":\"Propriedade total dos dados\",\"MY2SVM\":\"Reembolso total\",\"UsIfa8\":\"Endereço completo resolvido\",\"PGQLdy\":\"futuras\",\"8N/j1s\":\"Somente datas futuras\",\"yRx/6K\":\"Datas futuras serão copiadas com a capacidade redefinida para zero\",\"T02gNN\":\"Admissão Geral\",\"3ep0Gx\":\"Informações gerais sobre seu organizador\",\"ziAjHi\":\"Gerar\",\"exy8uo\":\"Gerar código\",\"4CETZY\":\"Como chegar\",\"pjkEcB\":\"Receba pagamentos\",\"lGYzP6\":\"Receba pagamentos com Stripe\",\"ZDIydz\":\"Começar\",\"u6FPxT\":\"Obter Ingressos\",\"8KDgYV\":\"Prepare seu evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Voltar\",\"oNL5vN\":\"Ir para a página do evento\",\"gHSuV/\":\"Ir para a página inicial\",\"8+Cj55\":\"Ir para a programação\",\"6nDzTl\":\"Boa legibilidade\",\"76gPWk\":\"Entendi\",\"aGWZUr\":\"Receita bruta\",\"n8IUs7\":\"Receita Bruta\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestão de convidados\",\"NUsTc4\":\"Acontecendo agora\",\"kTSQej\":[\"Olá \",[\"0\"],\", gerencie sua plataforma daqui.\"],\"dORAcs\":\"Aqui estão todos os ingressos associados ao seu endereço de e-mail.\",\"g+2103\":\"Aqui está o seu link de afiliado\",\"bVsnqU\":\"Olá,\",\"/iE8xx\":\"Taxa Hi.Events\",\"zppscQ\":\"Taxas da plataforma Hi.Events e discriminação do IVA por transação\",\"D+zLDD\":\"Oculto\",\"DRErHC\":\"Oculto para participantes - visível apenas para organizadores\",\"NNnsM0\":\"Ocultar opções avançadas\",\"P+5Pbo\":\"Ocultar respostas\",\"VMlRqi\":\"Ocultar detalhes\",\"FmogyU\":\"Ocultar Opções\",\"gtEbeW\":\"Destacar\",\"NF8sdv\":\"Mensagem de destaque\",\"MXSqmS\":\"Destacar este produto\",\"7ER2sc\":\"Destacado\",\"sq7vjE\":\"Os produtos em destaque terão uma cor de fundo diferente para se destacarem na página do evento.\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Horas\",\"sy9anN\":\"Quanto tempo um cliente tem para concluir a compra após receber uma oferta. Deixe vazio para sem limite de tempo.\",\"n2ilNh\":\"Por quanto tempo a programação dura?\",\"DMr2XN\":\"Com que frequência?\",\"AVpmAa\":\"Como pagar offline\",\"cceMns\":\"Como o IVA é aplicado às taxas da plataforma que cobramos de você.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Húngaro\",\"8Wgd41\":\"Reconheço minhas responsabilidades como controlador de dados\",\"O8m7VA\":\"Concordo em receber notificações por e-mail relacionadas a este evento\",\"YLgdk5\":\"Confirmo que esta é uma mensagem transacional relacionada a este evento\",\"4/kP5a\":\"Se uma nova aba não abriu automaticamente, clique no botão abaixo para continuar para o checkout.\",\"W/eN+G\":\"Se em branco, o endereço será usado para gerar um link do Google Maps\",\"iIEaNB\":\"Se você tem uma conta conosco, receberá um e-mail com instruções sobre como redefinir sua senha.\",\"an5hVd\":\"Imagens\",\"tSVr6t\":\"Personificar\",\"TWXU0c\":\"Personificar usuário\",\"5LAZwq\":\"Personificação iniciada\",\"IMwcdR\":\"Personificação parada\",\"0I0Hac\":\"Aviso importante\",\"yD3avI\":\"Importante: Alterar seu endereço de e-mail atualizará o link de acesso a este pedido. Você será redirecionado para o novo link do pedido após salvar.\",\"jT142F\":[\"Em \",[\"diffHours\"],\" horas\"],\"OoSyqO\":[\"Em \",[\"diffMinutes\"],\" minutos\"],\"PdMhEx\":[\"nos últimos \",[\"0\"],\" min\"],\"u7r0G5\":\"Presencial — defina um local\",\"Ip0hl5\":\"in_person, online, unset ou mixed\",\"F1Xp97\":\"Participantes individuais\",\"85e6zs\":\"Inserir Token Liquid\",\"38KFY0\":\"Inserir Variável\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Pagamentos instantâneos via Stripe\",\"nbfdhU\":\"Integrações\",\"I8eJ6/\":\"Notas internas no ingresso do participante\",\"B2Tpo0\":\"Email inválido\",\"5tT0+u\":\"Formato de email inválido\",\"f9WRpE\":\"Tipo de arquivo inválido. Por favor, envie uma imagem.\",\"tnL+GP\":\"Sintaxe Liquid inválida. Por favor, corrija e tente novamente.\",\"N9JsFT\":\"Formato de número de IVA inválido\",\"g+lLS9\":\"Convidar um membro da equipe\",\"1z26sk\":\"Convidar membro da equipe\",\"KR0679\":\"Convidar membros da equipe\",\"aH6ZIb\":\"Convide sua equipe\",\"IuMGvq\":\"Fatura\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"item(ns)\",\"BzfzPK\":\"Itens\",\"rjyWPb\":\"Janeiro\",\"KmWyx0\":\"Trabalho\",\"o5r6b2\":\"Trabalho excluído\",\"cd0jIM\":\"Detalhes do trabalho\",\"ruJO57\":\"Nome do trabalho\",\"YZi+Hu\":\"Trabalho na fila para nova tentativa\",\"nCywLA\":\"Participe de qualquer lugar\",\"SNzppu\":\"Entrar na lista de espera\",\"dLouFI\":[\"Entrar na lista de espera para \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrito\",\"u4ex5r\":\"Julho\",\"zeEQd/\":\"Junho\",\"MxjCqk\":\"Apenas procurando seus ingressos?\",\"xOTzt5\":\"agora mesmo\",\"0RihU9\":\"Acabou de encerrar\",\"lB2hSG\":[\"Manter-me atualizado sobre novidades e eventos de \",[\"0\"]],\"ioFA9i\":\"Fique com o lucro.\",\"4Sffp7\":\"Rótulo para a sessão\",\"o66QSP\":\"atualizações de rótulo\",\"RtKKbA\":\"Último\",\"DruLRc\":\"Últimos 14 dias\",\"ve9JTU\":\"O sobrenome é obrigatório\",\"h0Q9Iw\":\"Última resposta\",\"gw3Ur5\":\"Última ativação\",\"FIq1Ba\":\"Mais tarde\",\"xvnLMP\":\"Últimos check-ins\",\"pzAivY\":\"Latitude do local resolvido\",\"N5TErv\":\"Deixe vazio para ilimitado\",\"L/hDDD\":\"Deixe vazio para aplicar esta lista de check-in a todas as sessões\",\"9Pf3wk\":\"Mantenha ativado para cobrir todos os ingressos do evento. Desative para escolher ingressos específicos.\",\"Hq2BzX\":\"Avise-os sobre a mudança\",\"+uexiy\":\"Avise-os sobre as mudanças\",\"exYcTF\":\"Biblioteca\",\"1njn7W\":\"Claro\",\"1qY5Ue\":\"Link expirado ou inválido\",\"+zSD/o\":\"Link para a página inicial do evento\",\"psosdY\":\"Link para detalhes do pedido\",\"6JzK4N\":\"Link para ingresso\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links permitidos\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Visualização em lista\",\"dF6vP6\":\"Ao vivo\",\"fpMs2Z\":\"AO VIVO\",\"D9zTjx\":\"Eventos ao Vivo\",\"C33p4q\":\"Datas carregadas\",\"WdmJIX\":\"Carregando visualização...\",\"IoDI2o\":\"Carregando tokens...\",\"G3Ge9Z\":\"Carregando logs do webhook...\",\"NFxlHW\":\"Carregando webhooks\",\"E0DoRM\":\"Local excluído\",\"NtLHT3\":\"Endereço formatado do local\",\"h4vxDc\":\"Latitude do local\",\"f2TMhR\":\"Longitude do local\",\"lnCo2f\":\"Modo do local\",\"8pmGFk\":\"Nome do local\",\"7w8lJU\":\"Local salvo\",\"YsRXDD\":\"Local atualizado\",\"A/kIva\":\"atualizações de local\",\"VppBoU\":\"Locais\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo e Capa\",\"gddQe0\":\"Logo e imagem de capa para seu organizador\",\"TBEnp1\":\"O logo será exibido no cabeçalho\",\"Jzu30R\":\"O logo será exibido no ingresso\",\"zKTMTg\":\"Longitude do local resolvido\",\"PSRm6/\":\"Procurar meus ingressos\",\"yJFu/X\":\"Escritório Principal\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Gerenciar \",[\"0\"]],\"wZJfA8\":\"Gerencie as datas e horários do seu evento recorrente\",\"RlzPUE\":\"Gerenciar no Stripe\",\"6NXJRK\":\"Gerenciar programação\",\"zXuaxY\":\"Gerencie a lista de espera do seu evento, veja estatísticas e ofereça ingressos aos participantes.\",\"BWTzAb\":\"Manual\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"Março\",\"pqRBOz\":\"Marcar como validado (substituição de administrador)\",\"2L3vle\":\"Máx. mensagens / 24h\",\"Qp4HWD\":\"Máx. destinatários / mensagem\",\"3JzsDb\":\"Maio\",\"agPptk\":\"Meio\",\"xDAtGP\":\"Mensagem\",\"bECJqy\":\"Mensagem aprovada com sucesso\",\"1jRD0v\":\"Enviar mensagens aos participantes com ingressos específicos\",\"uQLXbS\":\"Mensagem cancelada\",\"48rf3i\":\"Mensagem não pode exceder 5000 caracteres\",\"ZPj0Q8\":\"Detalhes da mensagem\",\"Vjat/X\":\"A mensagem é obrigatória\",\"0/yJtP\":\"Enviar mensagem para proprietários de pedidos com produtos específicos\",\"saG4At\":\"Mensagem agendada\",\"mFdA+i\":\"Nível de mensagens\",\"v7xKtM\":\"Nível de mensagens atualizado com sucesso\",\"H9HlDe\":\"minutos\",\"agRWc1\":\"Minutos\",\"YYzBv9\":\"Seg\",\"zz/Wd/\":\"Modo\",\"fpMgHS\":\"Seg\",\"hty0d5\":\"Segunda-feira\",\"JbIgPz\":\"Os valores monetários são totais aproximados em todas as moedas\",\"qvF+MT\":\"Monitorar e gerenciar trabalhos em segundo plano com falha\",\"kY2ll9\":\"mês\",\"HajiZl\":\"Mês\",\"+8Nek/\":\"Mensal\",\"1LkxnU\":\"Padrão mensal\",\"6jefe3\":\"meses\",\"f8jrkd\":\"mais\",\"JcD7qf\":\"Mais ações\",\"w36OkR\":\"Eventos mais vistos (Últimos 14 dias)\",\"+Y/na7\":\"Mover todas as datas para mais cedo ou mais tarde\",\"3DIpY0\":\"Vários locais\",\"g9cQCP\":\"Vários tipos de ingresso\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Meus Ingressos\",\"8/brI5\":\"O nome é obrigatório\",\"sFFArG\":\"O nome deve ter menos de 255 caracteres\",\"sCV5Yc\":\"Nome do evento\",\"xxU3NX\":\"Receita Líquida\",\"7I8LlL\":\"Nova capacidade\",\"n1GRql\":\"Novo rótulo\",\"y0Fcpd\":\"Novo local\",\"ArHT/C\":\"Novos cadastros\",\"uK7xWf\":\"Novo horário:\",\"veT5Br\":\"Próxima sessão\",\"WXtl5X\":[\"Próxima: \",[\"nextFormatted\"]],\"eWRECP\":\"Vida noturna\",\"HSw5l3\":\"Não - Sou um indivíduo ou empresa não registrada para IVA\",\"VHfLAW\":\"Sem contas\",\"+jIeoh\":\"Nenhuma conta encontrada\",\"074+X8\":\"Nenhum webhook ativo\",\"zxnup4\":\"Sem afiliados para mostrar\",\"Dwf4dR\":\"Ainda não há perguntas para participantes\",\"th7rdT\":\"Sem participantes\",\"PKySlW\":\"Ainda não há participantes para esta data.\",\"/UC6qk\":\"Nenhum dado de atribuição encontrado\",\"E2vYsO\":\"O Stripe ainda não relatou capacidades.\",\"amMkpL\":\"Sem capacidade\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nenhuma lista de check-in disponível para este evento.\",\"wG+knX\":\"Ainda sem check-ins\",\"+dAKxg\":\"Nenhuma configuração encontrada\",\"LiLk8u\":\"Sem conexões disponíveis\",\"eb47T5\":\"Nenhum dado encontrado para os filtros selecionados. Tente ajustar o período ou a moeda.\",\"lFVUyx\":\"Nenhuma lista de check-in específica para a data\",\"I8mtzP\":\"Nenhuma data disponível neste mês. Tente navegar para outro mês.\",\"yDukIL\":\"Nenhuma data corresponde aos filtros atuais.\",\"B7phdj\":\"Nenhuma data corresponde aos seus filtros\",\"/ZB4Um\":\"Nenhuma data corresponde à sua busca\",\"gEdNe8\":\"Ainda não há datas agendadas\",\"27GYXJ\":\"Nenhuma data agendada.\",\"pZNOT9\":\"Sem data de término\",\"dW40Uz\":\"Nenhum evento encontrado\",\"8pQ3NJ\":\"Nenhum evento começando nas próximas 24 horas\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Sem trabalhos com falha\",\"EpvBAp\":\"Sem fatura\",\"XZkeaI\":\"Nenhum registro encontrado\",\"nrSs2u\":\"Nenhuma mensagem encontrada\",\"Rj99yx\":\"Nenhuma sessão disponível\",\"IFU1IG\":\"Nenhuma sessão nesta data\",\"OVFwlg\":\"Ainda não há perguntas de pedido\",\"EJ7bVz\":\"Nenhum pedido encontrado\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Ainda não há pedidos para esta data.\",\"wUv5xQ\":\"Sem atividade de organizador nos últimos 14 dias\",\"vLd1tV\":\"Nenhum contexto de organizador disponível.\",\"B7w4KY\":\"Nenhum outro organizador disponível\",\"PChXMe\":\"Sem pedidos pagos\",\"6jYQGG\":\"Nenhum evento passado\",\"CHzaTD\":\"Sem eventos populares nos últimos 14 dias\",\"zK/+ef\":\"Nenhum produto disponível para seleção\",\"M1/lXs\":\"Nenhum produto configurado para este evento.\",\"kY7XDn\":\"Nenhum produto tem entradas na lista de espera\",\"wYiAtV\":\"Sem cadastros de contas recentes\",\"UW90md\":\"Nenhum destinatário encontrado\",\"QoAi8D\":\"Sem resposta\",\"JeO7SI\":\"Sem resposta\",\"EK/G11\":\"Ainda sem respostas\",\"7J5OKy\":\"Ainda não há locais salvos\",\"wpCjcf\":\"Ainda não há locais salvos. Eles aparecerão aqui à medida que você criar eventos com endereços.\",\"mPdY6W\":\"Nenhuma sugestão\",\"3sRuiW\":\"Nenhum ingresso encontrado\",\"k2C0ZR\":\"Nenhuma data futura\",\"yM5c0q\":\"Nenhum evento futuro\",\"qpC74J\":\"Nenhum usuário encontrado\",\"8wgkoi\":\"Sem eventos vistos nos últimos 14 dias\",\"Arzxc1\":\"Sem inscrições na lista de espera\",\"n5vdm2\":\"Nenhum evento de webhook foi registrado para este endpoint ainda. Os eventos aparecerão aqui assim que forem acionados.\",\"4GhX3c\":\"Nenhum Webhook\",\"4+am6b\":\"Não, manter-me aqui\",\"4JVMUi\":\"não editadas\",\"Itw24Q\":\"Sem check-in\",\"x5+Lcz\":\"Não Registrado\",\"8n10sz\":\"Não Elegível\",\"kLvU3F\":\"Notificar os participantes e interromper as vendas\",\"t9QlBd\":\"Novembro\",\"kAREMN\":\"Número de datas a criar\",\"6u1B3O\":\"Sessão\",\"mmoE62\":\"Sessão cancelada\",\"UYWXdN\":\"Data de término da sessão\",\"k7dZT5\":\"Hora de término da sessão\",\"Opinaj\":\"Rótulo da sessão\",\"V9flmL\":\"Programação de sessões\",\"NUTUUs\":\"página de Programação de sessões\",\"AT8UKD\":\"Data de início da sessão\",\"Um8bvD\":\"Hora de início da sessão\",\"Kh3WO8\":\"Resumo da sessão\",\"byXCTu\":\"Sessões\",\"KATw3p\":\"Sessões (apenas futuras)\",\"85rTR2\":\"As sessões podem ser configuradas após a criação\",\"dzQfDY\":\"Outubro\",\"BwJKBw\":\"de\",\"9h7RDh\":\"Oferecer\",\"EfK2O6\":\"Oferecer vaga\",\"3sVRey\":\"Oferecer ingressos\",\"2O7Ybb\":\"Tempo limite da oferta\",\"1jUg5D\":\"Oferecido\",\"l+/HS6\":[\"As ofertas expiram após \",[\"timeoutHours\"],\" horas.\"],\"lQgMLn\":\"Nome do escritório ou local\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Pagamento Offline\",\"nO3VbP\":[\"À venda \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — forneça os detalhes de conexão\",\"LuZBbx\":\"Online e presencial\",\"IXuOqt\":\"Online e presencial — veja a programação\",\"w3DG44\":\"Detalhes de conexão online\",\"WjSpu5\":\"Evento online\",\"TP6jss\":\"Detalhes de conexão do evento online\",\"NdOxqr\":\"Apenas administradores da conta podem excluir ou arquivar eventos. Entre em contato com o administrador da sua conta para obter ajuda.\",\"rnoDMF\":\"Apenas administradores da conta podem excluir ou arquivar organizadores. Entre em contato com o administrador da sua conta para obter ajuda.\",\"bU7oUm\":\"Enviar apenas para pedidos com esses status\",\"M2w1ni\":\"Visível apenas com código promocional\",\"y8Bm7C\":\"Abrir check-in\",\"RLz7P+\":\"Abrir sessão\",\"cDSdPb\":\"Apelido opcional exibido nos seletores, por exemplo \\\"Sala de Conferências da Matriz\\\"\",\"HXMJxH\":\"Texto opcional para avisos legais, informações de contato ou notas de agradecimento (apenas uma linha)\",\"L565X2\":\"opções\",\"8m9emP\":\"ou adicione uma única data\",\"dSeVIm\":\"pedido\",\"c/TIyD\":\"Pedido e Ingresso\",\"H5qWhm\":\"Pedido cancelado\",\"b6+Y+n\":\"Pedido concluído\",\"x4MLWE\":\"Confirmação do Pedido\",\"CsTTH0\":\"Confirmação do pedido reenviada com sucesso\",\"ppuQR4\":\"Pedido criado\",\"0UZTSq\":\"Moeda do Pedido\",\"xtQzag\":\"Detalhes do pedido\",\"HdmwrI\":\"E-mail do Pedido\",\"bwBlJv\":\"Primeiro Nome do Pedido\",\"vrSW9M\":\"O pedido foi cancelado e reembolsado. O proprietário do pedido foi notificado.\",\"rzw+wS\":\"Titulares de pedidos\",\"oI/hGR\":\"ID do Pedido\",\"Pc729f\":\"Pedido Aguardando Pagamento Offline\",\"F4NXOl\":\"Sobrenome do Pedido\",\"RQCXz6\":\"Limites de Pedido\",\"SO9AEF\":\"Limites de pedido definidos\",\"5RDEEn\":\"Idioma do Pedido\",\"vu6Arl\":\"Pedido marcado como pago\",\"sLbJQz\":\"Pedido não encontrado\",\"kvYpYu\":\"Pedido não encontrado\",\"i8VBuv\":\"Número do Pedido\",\"eJ8SvM\":\"Número do pedido, data, email do comprador\",\"FaPYw+\":\"Proprietário do pedido\",\"eB5vce\":\"Proprietários de pedidos com um produto específico\",\"CxLoxM\":\"Proprietários de pedidos com produtos\",\"DoH3fD\":\"Pagamento do Pedido Pendente\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Status dos pedidos\",\"oW5877\":\"Total do Pedido\",\"e7eZuA\":\"Pedido atualizado\",\"1SQRYo\":\"Pedido atualizado com sucesso\",\"KndP6g\":\"URL do Pedido\",\"3NT0Ck\":\"O pedido foi cancelado\",\"V5khLm\":\"pedidos\",\"sd5IMt\":\"Pedidos concluídos\",\"5It1cQ\":\"Pedidos exportados\",\"tlKX/S\":\"Pedidos que abrangem várias datas serão sinalizados para revisão manual.\",\"UQ0ACV\":\"Total de pedidos\",\"B/EBQv\":\"Pedidos:\",\"qtGTNu\":\"Contas orgânicas\",\"ucgZ0o\":\"Organização\",\"P/JHA4\":\"Organizador arquivado com sucesso\",\"S3CZ5M\":\"Painel do organizador\",\"GzjTd0\":\"Organizador excluído com sucesso\",\"Uu0hZq\":\"Email do organizador\",\"Gy7BA3\":\"Endereço de email do organizador\",\"SQqJd8\":\"Organizador não encontrado\",\"HF8Bxa\":\"Organizador restaurado com sucesso\",\"wpj63n\":\"Configurações do organizador\",\"o1my93\":\"Falha ao atualizar o status do organizador. Por favor, tente novamente mais tarde.\",\"rLHma1\":\"Status do organizador atualizado\",\"LqBITi\":\"Modelo do organizador/padrão será usado\",\"q4zH+l\":\"Organizadores\",\"/IX/7x\":\"Outro\",\"RsiDDQ\":\"Outras Listas (Ingresso Não Incluído)\",\"aDfajK\":\"Ar livre\",\"qMASRF\":\"Mensagens enviadas\",\"iCOVQO\":\"Substituir\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Substituir preço\",\"cnVIpl\":\"Substituição removida\",\"6/dCYd\":\"Visão geral\",\"6WdDG7\":\"Página\",\"8uqsE5\":\"Página não disponível mais\",\"QkLf4H\":\"URL da página\",\"sF+Xp9\":\"Visualizações de página\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Contas pagas\",\"5F7SYw\":\"Reembolso parcial\",\"fFYotW\":[\"Reembolsado parcialmente: \",[\"0\"]],\"i8day5\":\"Passar taxa para o comprador\",\"k4FLBQ\":\"Passar para o comprador\",\"Ff0Dor\":\"Passado\",\"BFjW8X\":\"Em atraso\",\"xTPjSy\":\"Eventos passados\",\"/l/ckQ\":\"Cole a URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"OZK07J\":\"Pague para desbloquear\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data de pagamento\",\"ENEPLY\":\"Método de pagamento\",\"8Lx2X7\":\"Pagamento recebido\",\"fx8BTd\":\"Pagamentos não disponíveis\",\"C+ylwF\":\"Repasses\",\"UbRKMZ\":\"Pendente\",\"UkM20g\":\"Revisão pendente\",\"dPYu1F\":\"Por participante\",\"mQV/nJ\":\"por min\",\"VlXNyK\":\"Por pedido\",\"hauDFf\":\"Por ingresso\",\"mnF83a\":\"Taxa Percentual\",\"TNLuRD\":\"Taxa percentual (%)\",\"MixU2P\":\"A porcentagem deve estar entre 0 e 100\",\"MkuVAZ\":\"Porcentagem do valor da transação\",\"/Bh+7r\":\"Desempenho\",\"fIp56F\":\"Excluir permanentemente este evento e todos os seus dados associados.\",\"nJeeX7\":\"Excluir permanentemente este organizador e todos os seus eventos.\",\"wfCTgK\":\"Remover esta data permanentemente\",\"6kPk3+\":\"Informações pessoais\",\"zmwvG2\":\"Telefone\",\"SdM+Q1\":\"Escolha um local\",\"tSR/oe\":\"Escolha uma data de término\",\"e8kzpp\":\"Escolha pelo menos um dia do mês\",\"35C8QZ\":\"Escolha pelo menos um dia da semana\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Feito\",\"wBJR8i\":\"Planejando um evento?\",\"J3lhKT\":\"Taxa da plataforma\",\"RD51+P\":[\"Taxa da plataforma de \",[\"0\"],\" deduzida do seu pagamento\"],\"br3Y/y\":\"Taxas da plataforma\",\"3buiaw\":\"Relatório de taxas da plataforma\",\"kv9dM4\":\"Receita da plataforma\",\"PJ3Ykr\":\"Verifique seu ingresso para o horário atualizado. Seus ingressos continuam válidos — nenhuma ação é necessária, a menos que os novos horários não funcionem para você. Responda a este e-mail se tiver alguma dúvida.\",\"OtjenF\":\"Por favor, insira um endereço de e-mail válido\",\"jEw0Mr\":\"Por favor, insira uma URL válida\",\"n8+Ng/\":\"Por favor, introduza o código de 5 dígitos\",\"r+lQXT\":\"Por favor, digite seu número de IVA\",\"Dvq0wf\":\"Por favor, forneça uma imagem.\",\"2cUopP\":\"Por favor, reinicie o processo de compra.\",\"GoXxOA\":\"Por favor, selecione uma data e horário\",\"8KmsFa\":\"Por favor, selecione um intervalo de datas\",\"EFq6EG\":\"Por favor, selecione uma imagem.\",\"fuwKpE\":\"Por favor, tente novamente.\",\"klWBeI\":\"Por favor, aguarde antes de solicitar outro código\",\"hfHhaa\":\"Por favor, aguarde enquanto preparamos os seus afiliados para exportação...\",\"o+tJN/\":\"Por favor, aguarde enquanto preparamos seus participantes para exportação...\",\"+5Mlle\":\"Por favor, aguarde enquanto preparamos seus pedidos para exportação...\",\"trnWaw\":\"Polonês\",\"luHAJY\":\"Eventos populares (Últimos 14 dias)\",\"p/78dY\":\"Posição\",\"TjX7xL\":\"Mensagem Pós-Checkout\",\"OESu7I\":\"Evite sobrevenda compartilhando estoque entre vários tipos de ingresso.\",\"NgVUL2\":\"Pré-visualizar formulário de checkout\",\"cs5muu\":\"Pré-visualizar página do evento\",\"+4yRWM\":\"Preço do ingresso\",\"Jm2AC3\":\"Faixa de preço\",\"a5jvSX\":\"Faixas de Preço\",\"ReihZ7\":\"Visualizar Impressão\",\"JnuPvH\":\"Imprimir Ingresso\",\"tYF4Zq\":\"Imprimir para PDF\",\"LcET2C\":\"Política de Privacidade\",\"8z6Y5D\":\"Processar reembolso\",\"JcejNJ\":\"Processando pedido\",\"EWCLpZ\":\"Produto criado\",\"XkFYVB\":\"Produto excluído\",\"YMwcbR\":\"Detalhamento das vendas de produtos, receitas e impostos\",\"ls0mTC\":\"As configurações do produto não podem ser editadas em datas canceladas.\",\"2339ej\":\"Configurações do produto salvas com sucesso\",\"ldVIlB\":\"Produto atualizado\",\"CP3D8G\":\"Progresso\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionais e detalhamento de descontos\",\"tZqL0q\":\"códigos promocionais\",\"oCHiz3\":\"Códigos promocionais\",\"uEhdRh\":\"Apenas Promocional\",\"dLm8V5\":\"E-mails promocionais podem resultar em suspensão da conta\",\"XoEWtl\":\"Forneça pelo menos um campo de endereço para o novo local.\",\"2W/7Gz\":\"Forneça as seguintes informações antes da próxima revisão do Stripe para manter os repasses fluindo.\",\"aemBRq\":\"Provedor\",\"EEYbdt\":\"Publicar\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Comprado\",\"JunetL\":\"Comprador\",\"phmeUH\":\"Email do comprador\",\"ywR4ZL\":\"Check-in com código QR\",\"oWXNE5\":\"Qtd.\",\"biEyJ4\":\"Respostas\",\"k/bJj0\":\"Perguntas reordenadas\",\"b24kPi\":\"Fila\",\"lTPqpM\":\"Dica rápida\",\"fqDzSu\":\"Taxa\",\"mnUGVC\":\"Limite de taxa excedido. Por favor, tente novamente mais tarde.\",\"t41hVI\":\"Reoferecer vaga\",\"TNclgc\":\"Reativar esta data? Ela será reaberta para vendas futuras.\",\"uqoRbb\":\"Análises em tempo real\",\"xzRvs4\":[\"Receber atualizações de produtos do \",[\"0\"],\".\"],\"pLXbi8\":\"Cadastros de contas recentes\",\"3kJ0gv\":\"Participantes recentes\",\"qhfiwV\":\"Check-ins recentes\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Pedidos recentes\",\"7hPBBn\":\"destinatário\",\"jp5bq8\":\"destinatários\",\"yPrbsy\":\"Destinatários\",\"E1F5Ji\":\"Os destinatários ficam disponíveis após o envio da mensagem\",\"wuhHPE\":\"Recorrente\",\"asLqwt\":\"Evento recorrente\",\"D0tAMe\":\"Eventos recorrentes\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecionando para o Stripe...\",\"pnoTN5\":\"Contas de indicação\",\"ACKu03\":\"Atualizar Visualização\",\"vuFYA6\":\"Reembolsar todos os pedidos destas datas\",\"4cRUK3\":\"Reembolsar todos os pedidos desta data\",\"fKn/k6\":\"Valor do reembolso\",\"qY4rpA\":\"Reembolso falhou\",\"TspTcZ\":\"Reembolso emitido\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configurações regionais\",\"5tl0Bp\":\"Perguntas de registro\",\"ZNo5k1\":\"Restante\",\"EMnuA4\":\"Lembrete agendado\",\"Bjh87R\":\"Remover rótulo de todas as datas\",\"KkJtVK\":\"Reabrir para novas vendas\",\"XJwWJp\":\"Reabrir esta data para novas vendas? Os ingressos cancelados anteriormente não serão restaurados — os participantes afetados permanecem cancelados e os reembolsos já emitidos não serão revertidos.\",\"bAwDQs\":\"Repetir a cada\",\"CQeZT8\":\"Relatório não encontrado\",\"JEPMXN\":\"Solicitar novo link\",\"TMLAx2\":\"Obrigatório\",\"mdeIOH\":\"Reenviar código\",\"sQxe68\":\"Reenviar confirmação\",\"bxoWpz\":\"Reenviar e-mail de confirmação\",\"G42SNI\":\"Reenviar e-mail\",\"TTpXL3\":[\"Reenviar em \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Reenviar ingresso\",\"Uwsg2F\":\"Reservado\",\"8wUjGl\":\"Reservado até\",\"a5z8mb\":\"Redefinir para o preço base\",\"kCn6wb\":\"Redefinindo...\",\"404zLK\":\"Nome do local ou estabelecimento resolvido\",\"ZlCDf+\":\"Resposta\",\"bsydMp\":\"Detalhes da resposta\",\"yKu/3Y\":\"Restaurar\",\"RokrZf\":\"Restaurar evento\",\"/JyMGh\":\"Restaurar organizador\",\"HFvFRb\":\"Restaure este evento para torná-lo visível novamente.\",\"DDIcqy\":\"Restaure este organizador e torne-o ativo novamente.\",\"mO8KLE\":\"resultados\",\"6gRgw8\":\"Tentar novamente\",\"1BG8ga\":\"Tentar tudo novamente\",\"rDC+T6\":\"Tentar trabalho novamente\",\"CbnrWb\":\"Voltar ao evento\",\"mdQ0zb\":\"Locais reutilizáveis para seus eventos. Locais criados pelo autocompletar são salvos aqui automaticamente.\",\"XFOPle\":\"Reutilizar\",\"1Zehp4\":\"Reutilize uma conexão Stripe de outro organizador desta conta.\",\"Oo/PLb\":\"Resumo de Receita\",\"O/8Ceg\":\"Receita hoje\",\"CfuueU\":\"Revogar oferta\",\"RIgKv+\":\"Executar até uma data específica\",\"JYRqp5\":\"Sáb\",\"dFFW9L\":[\"Venda encerrada \",[\"0\"]],\"loCKGB\":[\"Venda termina \",[\"0\"]],\"wlfBad\":\"Período de Venda\",\"qi81Jg\":\"As datas do período de venda se aplicam a todas as datas da sua programação. Para controlar preços e disponibilidade em datas individuais, use as substituições na <0>página de Programação de Sessões.\",\"5CDM6r\":\"Período de venda definido\",\"ftzaMf\":\"Período de venda, limites de pedido, visibilidade\",\"zpekWp\":[\"Venda começa \",[\"0\"]],\"mUv9U4\":\"Vendas\",\"9KnRdL\":\"As vendas estão pausadas\",\"JC3J0k\":\"Detalhamento de vendas, presença e check-in por sessão\",\"3VnlS9\":\"Vendas, pedidos e métricas de desempenho para todos os eventos\",\"3Q1AWe\":\"Vendas:\",\"LeuERW\":\"Igual ao evento\",\"B4nE3N\":\"Preço do ingresso de exemplo\",\"8BRPoH\":\"Local Exemplo\",\"PiK6Ld\":\"Sáb\",\"+5kO8P\":\"Sábado\",\"zJiuDn\":\"Salvar substituição de taxa\",\"NB8Uxt\":\"Salvar programação\",\"KZrfYJ\":\"Salvar links sociais\",\"9Y3hAT\":\"Salvar Modelo\",\"C8ne4X\":\"Salvar Design do Ingresso\",\"cTI8IK\":\"Salvar configurações de IVA\",\"6/TNCd\":\"Salvar Configurações de IVA\",\"4RvD9q\":\"Local salvo\",\"cgw0cL\":\"Locais salvos\",\"lvSrsT\":\"Locais salvos\",\"Fbqm/I\":\"Salvar uma substituição cria uma configuração dedicada para este organizador se ele estiver atualmente no padrão do sistema.\",\"I+FvbD\":\"Escanear\",\"0zd6Nm\":\"Leia um ingresso para fazer check-in do participante\",\"bQG7Qk\":\"Ingressos lidos aparecerão aqui\",\"WDYSLJ\":\"Modo leitor\",\"gmB6oO\":\"Programação\",\"j6NnBq\":\"Programação criada com sucesso\",\"YP7frt\":\"A programação termina em\",\"QS1Nla\":\"Agendar para depois\",\"NAzVVw\":\"Agendar mensagem\",\"Fz09JP\":\"A programação começa em\",\"4ba0NE\":\"Agendado\",\"qcP/8K\":\"Horário agendado\",\"A1taO8\":\"Buscar\",\"ftNXma\":\"Pesquisar afiliados...\",\"VMU+zM\":\"Buscar participantes\",\"VY+Bdn\":\"Pesquisar por nome da conta ou e-mail...\",\"VX+B3I\":\"Pesquisar por título do evento ou organizador...\",\"R0wEyA\":\"Pesquisar por nome do trabalho ou exceção...\",\"VT+urE\":\"Pesquisar por nome ou e-mail...\",\"GHdjuo\":\"Pesquisar por nome, e-mail ou conta...\",\"4mBFO7\":\"Buscar por nome, n.º pedido, n.º ingresso ou email\",\"20ce0U\":\"Pesquisar por ID do pedido, nome do cliente ou e-mail...\",\"4DSz7Z\":\"Pesquisar por assunto, evento ou conta...\",\"nQC7Z9\":\"Pesquisar datas...\",\"iRtEpV\":\"Pesquisar datas…\",\"JRM7ao\":\"Pesquisar um endereço\",\"BWF1kC\":\"Pesquisar mensagens...\",\"3aD3GF\":\"Sazonal\",\"ku//5b\":\"Segundo\",\"Mck5ht\":\"Checkout Seguro\",\"s7tXqF\":\"Ver programação\",\"JFap6u\":\"Ver o que o Stripe ainda precisa\",\"p7xUrt\":\"Selecione uma categoria\",\"hTKQwS\":\"Selecione uma data e horário\",\"e4L7bF\":\"Selecione uma mensagem para ver seu conteúdo\",\"zPRPMf\":\"Selecionar um nível\",\"uqpVri\":\"Selecione um horário\",\"BFRSTT\":\"Selecionar Conta\",\"wgNoIs\":\"Selecionar tudo\",\"mCB6Je\":\"Selecionar tudo\",\"aCEysm\":[\"Selecionar todas em \",[\"0\"]],\"a6+167\":\"Selecionar um evento\",\"CFbaPk\":\"Selecione o grupo de participantes\",\"88a49s\":\"Selecionar câmera\",\"tVW/yo\":\"Selecionar moeda\",\"SJQM1I\":\"Selecionar data\",\"n9ZhRa\":\"Selecione data e hora de término\",\"gTN6Ws\":\"Selecionar hora de fim\",\"0U6E9W\":\"Selecionar categoria do evento\",\"j9cPeF\":\"Selecionar tipos de eventos\",\"ypTjHL\":\"Selecionar sessão\",\"KizCK7\":\"Selecione data e hora de início\",\"dJZTv2\":\"Selecionar hora de início\",\"x8XMsJ\":\"Selecione o nível de mensagens para esta conta. Isso controla os limites de mensagens e permissões de links.\",\"aT3jZX\":\"Selecionar fuso horário\",\"TxfvH2\":\"Selecione quais participantes devem receber esta mensagem\",\"Ropvj0\":\"Selecione quais eventos acionarão este webhook\",\"+6YAwo\":\"selecionadas\",\"ylXj1N\":\"Selecionado\",\"uq3CXQ\":\"Esgote seu evento.\",\"j9b/iy\":\"Vendendo rápido 🔥\",\"73qYgo\":\"Enviar como teste\",\"HMAqFK\":\"Enviar e-mails para participantes, titulares de ingressos ou proprietários de pedidos. As mensagens podem ser enviadas imediatamente ou agendadas para mais tarde.\",\"22Itl6\":\"Envie-me uma cópia\",\"NpEm3p\":\"Enviar agora\",\"nOBvex\":\"Envie dados de pedidos e participantes em tempo real para seus sistemas externos.\",\"1lNPhX\":\"Enviar email de notificação de reembolso\",\"eaUTwS\":\"Enviar link de redefinição\",\"5cV4PY\":\"Enviar para todas as sessões ou escolher uma específica\",\"QEQlnV\":\"Envie sua primeira mensagem\",\"3nMAVT\":\"Enviando em 2d 4h\",\"IoAuJG\":\"Enviando...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Enviado aos participantes quando uma data agendada é cancelada\",\"SPdzrs\":\"Enviado aos clientes quando fazem um pedido\",\"LxSN5F\":\"Enviado a cada participante com detalhes do ingresso\",\"hgvbYY\":\"Setembro\",\"5sN96e\":\"Sessão cancelada\",\"89xaFU\":\"Defina as configurações padrão de taxa da plataforma para novos eventos criados sob este organizador.\",\"eXssj5\":\"Definir configurações padrão para novos eventos criados sob este organizador.\",\"uPe5p8\":\"Defina a duração de cada data\",\"xNsRxU\":\"Definir número de datas\",\"ODuUEi\":\"Definir ou limpar o rótulo da data\",\"buHACR\":\"Defina o horário de término de cada data para ser esta duração após seu horário de início.\",\"TaeFgl\":\"Definir como ilimitado (remover limite)\",\"pd6SSe\":\"Configure uma programação recorrente para criar datas automaticamente ou adicione-as uma por uma.\",\"s0FkEx\":\"Configure listas de check-in para diferentes entradas, sessões ou dias.\",\"TaWVGe\":\"Configurar pagamentos\",\"gzXY7l\":\"Configurar programação\",\"xMO+Ao\":\"Configure a sua organização\",\"h/9JiC\":\"Configure sua programação\",\"ETC76A\":\"Defina, altere ou remova o local da data ou os detalhes online\",\"C3htzi\":\"Configuração atualizada\",\"Ohn74G\":\"Configuração e design\",\"1W5XyZ\":\"A configuração leva apenas alguns minutos — você não precisa ter uma conta Stripe. O Stripe cuida de cartões, carteiras, métodos de pagamento regionais e proteção contra fraude para que você possa focar no seu evento.\",\"GG7qDw\":\"Partilhar link de afiliado\",\"hL7sDJ\":\"Compartilhar página do organizador\",\"jy6QDF\":\"Gestão de capacidade compartilhada\",\"jDNHW4\":\"Deslocar horários\",\"tPfIaW\":[\"Horários deslocados para \",[\"count\"],\" data(s)\"],\"WwlM8F\":\"Mostrar opções avançadas\",\"cMW+gm\":[\"Mostrar todas as plataformas (\",[\"0\"],\" com valores)\"],\"wXi9pZ\":\"Mostrar notas à equipe sem login\",\"UVPI5D\":\"Mostrar menos plataformas\",\"Eu/N/d\":\"Mostrar caixa de seleção de opt-in de marketing\",\"SXzpzO\":\"Mostrar caixa de seleção de opt-in de marketing por padrão\",\"57tTk5\":\"Mostrar mais datas\",\"b33PL9\":\"Mostrar mais plataformas\",\"Eut7p9\":\"Mostrar detalhes à equipe sem login\",\"+RoWKN\":\"Mostrar respostas à equipe sem login\",\"t1LIQW\":[\"Mostrando \",[\"0\"],\" de \",[\"totalRows\"],\" registros\"],\"E717U9\":[\"Mostrando \",[\"0\"],\"–\",[\"1\"],\" de \",[\"2\"]],\"5rzhBQ\":[\"Mostrando \",[\"MAX_VISIBLE\"],\" de \",[\"totalAvailable\"],\" datas. Digite para pesquisar.\"],\"WSt3op\":[\"Mostrando as primeiras \",[\"0\"],\" — as \",[\"1\"],\" sessão(ões) restante(s) ainda serão alvo quando a mensagem for enviada.\"],\"OJLTEL\":\"Mostrado à equipe na primeira vez que abre a página.\",\"jVRHeq\":\"Cadastrado\",\"5C7J+P\":\"Evento único\",\"E//btK\":\"Ignorar datas editadas manualmente\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Links sociais\",\"j/TOB3\":\"Links sociais e site\",\"s9KGXU\":\"Vendido\",\"iACSrw\":\"Alguns detalhes estão ocultos do acesso público. Faça login para ver tudo.\",\"KTxc6k\":\"Algo deu errado, tente novamente ou entre em contato com o suporte se o problema persistir\",\"lkE00/\":\"Algo deu errado. Por favor, tente novamente mais tarde.\",\"wdxz7K\":\"Fonte\",\"fDG2by\":\"Espiritualidade\",\"oPaRES\":\"Divida o check-in por dia, área ou tipo de ingresso. Compartilhe o link com a equipe — sem precisar de conta.\",\"7JFNej\":\"Desporto\",\"/bfV1Y\":\"Instruções para a equipe\",\"tXkhj/\":\"Início\",\"JcQp9p\":\"Data e hora de início\",\"0m/ekX\":\"Data e hora de início\",\"izRfYP\":\"A data de início é obrigatória\",\"tuO4fV\":\"Data de início da sessão\",\"2R1+Rv\":\"Horário de início do evento\",\"2Olov3\":\"Hora de início da sessão\",\"n9ZrDo\":\"Comece a digitar um local ou endereço...\",\"qeFVhN\":[\"Começa em \",[\"diffDays\"],\" dias\"],\"AOqtxN\":[\"Começa em \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Começa em \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Começa em \",[\"seconds\"],\"s\"],\"NqChgF\":\"Começa amanhã\",\"2NbyY/\":\"Estatísticas\",\"GVUxAX\":\"As estatísticas são baseadas na data de criação da conta\",\"29Hx9U\":\"Estatísticas\",\"5ia+r6\":\"Ainda pendente\",\"wuV0bK\":\"Parar Personificação\",\"s/KaDb\":\"Stripe conectado\",\"Bk06QI\":\"Stripe conectado\",\"akZMv8\":[\"Conexão Stripe copiada de \",[\"0\"],\".\"],\"v0aRY1\":\"O Stripe não retornou um link de configuração. Tente novamente.\",\"aKtF0O\":\"Stripe não conectado\",\"9i0++A\":\"ID de pagamento Stripe\",\"R1lIMV\":\"O Stripe precisará de mais alguns detalhes em breve\",\"FzcCHA\":\"O Stripe vai te guiar por algumas perguntas rápidas para concluir a configuração.\",\"eYbd7b\":\"Dom\",\"ii0qn/\":\"Assunto é obrigatório\",\"M7Uapz\":\"Assunto aparecerá aqui\",\"6aXq+t\":\"Assunto:\",\"JwTmB6\":\"Produto duplicado com sucesso\",\"WUOCgI\":\"Vaga oferecida com sucesso\",\"IvxA4G\":[\"Ingressos oferecidos com sucesso a \",[\"count\"],\" pessoas\"],\"kKpkzy\":\"Ingressos oferecidos com sucesso a 1 pessoa\",\"Zi3Sbw\":\"Removido da lista de espera com sucesso\",\"RuaKfn\":\"Endereço atualizado com sucesso\",\"kzx0uD\":\"Padrões de Evento Atualizados com Sucesso\",\"5n+Wwp\":\"Organizador atualizado com sucesso\",\"DMCX/I\":\"Configurações padrão de taxa da plataforma atualizadas com sucesso\",\"URUYHc\":\"Configurações de taxa da plataforma atualizadas com sucesso\",\"0Dk/l8\":\"Configurações de SEO atualizadas com sucesso\",\"S8Tua9\":\"Configurações atualizadas com sucesso\",\"MhOoLQ\":\"Links sociais atualizados com sucesso\",\"CNSSfp\":\"Configurações de rastreamento atualizadas com sucesso\",\"kj7zYe\":\"Webhook atualizado com sucesso\",\"dXoieq\":\"Resumo\",\"/RfJXt\":[\"Festival de Música de Verão \",[\"0\"]],\"CWOPIK\":\"Festival de Música de Verão 2025\",\"D89zck\":\"Dom\",\"DBC3t5\":\"Domingo\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Trocar organizador\",\"9YHrNC\":\"Padrão do Sistema\",\"lruQkA\":\"Toque na tela para continuar\",\"TJUrME\":[\"Direcionando participantes em \",[\"0\"],\" sessões selecionadas.\"],\"yT6dQ8\":\"Impostos coletados agrupados por tipo de imposto e evento\",\"Ye321X\":\"Nome do Imposto\",\"WyCBRt\":\"Resumo de Impostos\",\"GkH0Pq\":\"Impostos e taxas aplicados\",\"Rwiyt2\":\"Impostos configurados\",\"iQZff7\":\"Impostos, Taxas, Visibilidade, Período de Venda, Destaque de Produto e Limites de Pedido\",\"SXvRWU\":\"Colaboração em equipe\",\"vlf/In\":\"Tecnologia\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Conte às pessoas o que esperar do seu evento\",\"NiIUyb\":\"Conte-nos sobre seu evento\",\"DovcfC\":\"Fale-nos sobre a sua organização. Esta informação será exibida nas páginas dos seus eventos.\",\"69GWRq\":\"Informe com que frequência seu evento se repete e criaremos todas as datas para você.\",\"mXPbwY\":\"Informe seu status de registro de IVA/ICMS para aplicarmos o tratamento correto às taxas da plataforma.\",\"7wtpH5\":\"Modelo Ativo\",\"QHhZeE\":\"Modelo criado com sucesso\",\"xrWdPR\":\"Modelo excluído com sucesso\",\"G04Zjt\":\"Modelo salvo com sucesso\",\"xowcRf\":\"Termos de serviço\",\"6K0GjX\":\"O texto pode ser difícil de ler\",\"u0F1Ey\":\"Qui\",\"nm3Iz/\":\"Obrigado por participar!\",\"pYwj0k\":\"Obrigado,\",\"k3IitN\":\"Está encerrado\",\"KfmPRW\":\"A cor de fundo da página. Ao usar imagem de capa, isso é aplicado como uma sobreposição.\",\"MDNyJz\":\"O código irá expirar em 10 minutos. Verifique a sua pasta de spam se não vir o email.\",\"AIF7J2\":\"A moeda em que a taxa fixa é definida. Será convertida para a moeda do pedido no checkout.\",\"MJm4Tq\":\"A moeda do pedido\",\"cDHM1d\":\"O endereço de e-mail foi alterado. O participante receberá um novo ingresso no endereço de e-mail atualizado.\",\"I/NNtI\":\"O local do evento\",\"tXadb0\":\"O evento que você está procurando não está disponível no momento. Ele pode ter sido removido, expirado ou a URL pode estar incorreta.\",\"5fPdZe\":\"A primeira data a partir da qual esta programação será gerada.\",\"EBzPwC\":\"O endereço completo do evento\",\"sxKqBm\":\"O valor total do pedido será reembolsado para o método de pagamento original do cliente.\",\"KgDp6G\":\"O link que você está tentando acessar expirou ou não é mais válido. Por favor, verifique seu e-mail para obter um link atualizado para gerenciar seu pedido.\",\"5OmEal\":\"O idioma do cliente\",\"Np4eLs\":[\"O máximo é de \",[\"MAX_PREVIEW\"],\" sessões. Por favor, reduza o intervalo de datas, a frequência ou o número de sessões por dia.\"],\"sYLeDq\":\"O organizador que você está procurando não foi encontrado. A página pode ter sido movida, excluída ou o URL está incorreto.\",\"PCr4zw\":\"A substituição é registrada no log de auditoria do pedido.\",\"C4nQe5\":\"A taxa da plataforma é adicionada ao preço do ingresso. Os compradores pagam mais, mas você recebe o preço total do ingresso.\",\"HxxXZO\":\"A cor primária da marca usada para botões e destaques\",\"z0KrIG\":\"O horário agendado é obrigatório\",\"EWErQh\":\"O horário agendado deve ser no futuro\",\"UNd0OU\":[\"A sessão de \\\"\",[\"title\"],\"\\\" originalmente agendada para \",[\"0\"],\" foi reagendada.\"],\"DEcpfp\":\"O corpo do template contém sintaxe Liquid inválida. Por favor, corrija e tente novamente.\",\"injXD7\":\"O número de IVA não pôde ser validado. Verifique o número e tente novamente.\",\"A4UmDy\":\"Teatro\",\"tDwYhx\":\"Tema e cores\",\"O7g4eR\":\"Não há datas futuras para este evento\",\"HrIl0p\":[\"Não há lista de check-in específica para esta data. A lista \\\"\",[\"0\"],\"\\\" registra participantes em todas as datas — a equipe escaneando um ingresso de outra data ainda terá sucesso.\"],\"dt3TwA\":\"Estes são os preços e quantidades padrão para todas as datas. As datas de venda dos níveis se aplicam globalmente. Você pode substituir preços e quantidades para datas individuais na <0>página de Programação de Sessões.\",\"062KsE\":\"Esses detalhes são exibidos no ingresso do participante e no resumo do pedido apenas para esta data.\",\"5Eu+tn\":\"Esses detalhes só serão exibidos se o pedido for concluído com sucesso.\",\"jQjwR+\":\"Esses detalhes substituirão qualquer local existente nas datas afetadas e serão exibidos nos ingressos dos participantes.\",\"QP3gP+\":\"Estas configurações se aplicam apenas ao código de incorporação copiado e não serão armazenadas.\",\"HirZe8\":\"Estes modelos serão usados como padrão para todos os eventos em sua organização. Eventos individuais podem substituir estes modelos por suas próprias versões personalizadas.\",\"lzAaG5\":\"Estes modelos substituirão os padrões do organizador apenas para este evento. Se nenhum modelo personalizado for definido aqui, o modelo do organizador será usado.\",\"UlykKR\":\"Terceiro\",\"wkP5FM\":\"Isso se aplica a todas as datas correspondentes do evento, incluindo datas que não estão visíveis no momento. Os participantes registrados em qualquer uma dessas datas estarão acessíveis pelo compositor de mensagens assim que a atualização terminar.\",\"SOmGDa\":\"Esta lista de check-in está vinculada a uma sessão cancelada, portanto não pode mais ser usada para check-ins.\",\"XBNC3E\":\"Este código será usado para rastrear vendas. Apenas são permitidas letras, números, hífenes e underscores.\",\"AaP0M+\":\"Esta combinação de cores pode ser difícil de ler para alguns usuários\",\"o1phK/\":[\"Esta data tem \",[\"orderCount\"],\" pedido(s) que serão afetados.\"],\"F/UtGt\":\"Esta data foi cancelada. Você ainda pode excluí-la para removê-la permanentemente.\",\"BLZ7pX\":\"Esta data está no passado. Ela será criada, mas não ficará visível para os participantes em datas futuras.\",\"7IIY0z\":\"Esta data está marcada como esgotada.\",\"bddWMP\":\"Esta data não está mais disponível. Por favor, selecione outra data.\",\"RzEvf5\":\"Este evento terminou\",\"YClrdK\":\"Este evento ainda não foi publicado\",\"dFJnia\":\"Este é o nome do seu organizador que será exibido aos seus usuários.\",\"vt7jiq\":\"Esta é a única vez que o segredo de assinatura será exibido. Por favor, copie-o agora e guarde-o em segurança.\",\"L7dIM7\":\"Este link é inválido ou expirou.\",\"MR5ygV\":\"Este link não é mais válido\",\"9LEqK0\":\"Este nome é visível para os usuários finais\",\"QdUMM9\":\"Esta sessão está na capacidade máxima\",\"j5FdeA\":\"Este pedido está sendo processado.\",\"sjNPMw\":\"Este pedido foi abandonado. Você pode iniciar um novo pedido a qualquer momento.\",\"OhCesD\":\"Este pedido foi cancelado. Você pode iniciar um novo pedido a qualquer momento.\",\"lyD7rQ\":\"Este perfil de organizador ainda não foi publicado\",\"9b5956\":\"Esta visualização mostra como seu e-mail ficará com dados de amostra. E-mails reais usarão valores reais.\",\"uM9Alj\":\"Este produto está destacado na página do evento\",\"RqSKdX\":\"Este produto está esgotado\",\"W12OdJ\":\"Este relatório é apenas para fins informativos. Sempre consulte um profissional de impostos antes de usar esses dados para fins contábeis ou fiscais. Por favor, verifique com seu painel do Stripe, pois o Hi.Events pode não ter dados históricos.\",\"0Ew0uk\":\"Este ingresso acabou de ser escaneado. Aguarde antes de escanear novamente.\",\"FYXq7k\":[\"Isto afetará \",[\"loadedAffectedCount\"],\" data(s).\"],\"kvpxIU\":\"Isso será usado para notificações e comunicação com seus usuários.\",\"rhsath\":\"Isto não será visível para os clientes, mas ajuda-o a identificar o afiliado.\",\"hV6FeJ\":\"Ritmo\",\"+FjWgX\":\"Qui\",\"kkDQ8m\":\"Quinta-feira\",\"0GSPnc\":\"Design do Ingresso\",\"EZC/Cu\":\"Design do ingresso salvo com sucesso\",\"bbslmb\":\"Designer de ingressos\",\"1BPctx\":\"Ingresso para\",\"bgqf+K\":\"E-mail do portador do ingresso\",\"oR7zL3\":\"Nome do portador do ingresso\",\"HGuXjF\":\"Portadores de ingressos\",\"CMUt3Y\":\"Titulares de ingressos\",\"awHmAT\":\"ID do ingresso\",\"6czJik\":\"Logotipo do Ingresso\",\"OkRZ4Z\":\"Nome do Ingresso\",\"t79rDv\":\"Ingresso não encontrado\",\"6tmWch\":\"Ingresso ou produto\",\"1tfWrD\":\"Visualização do ingresso para\",\"KnjoUA\":\"Preço do ingresso\",\"tGCY6d\":\"Preço do Ingresso\",\"pGZOcL\":\"Ingresso reenviado com sucesso\",\"8jLPgH\":\"Tipo de Ingresso\",\"X26cQf\":\"URL do Ingresso\",\"8qsbZ5\":\"Bilheteria e vendas\",\"zNECqg\":\"ingressos\",\"6GQNLE\":\"Ingressos\",\"NRhrIB\":\"Ingressos e produtos\",\"OrWHoZ\":\"Os ingressos são oferecidos automaticamente aos clientes na lista de espera quando há disponibilidade.\",\"EUnesn\":\"Ingressos disponíveis\",\"AGRilS\":\"Ingressos Vendidos\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Horário\",\"dMtLDE\":\"até\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar seus limites, entre em contato conosco em\",\"ecUA8p\":\"Hoje\",\"W428WC\":\"Alternar colunas\",\"BRMXj0\":\"Amanhã\",\"UBSG1X\":\"Melhores organizadores (Últimos 14 dias)\",\"3sZ0xx\":\"Total de Contas\",\"EaAPbv\":\"Valor total pago\",\"SMDzqJ\":\"Total de Participantes\",\"orBECM\":\"Total Coletado\",\"k5CU8c\":\"Total de inscrições\",\"4B7oCp\":\"Taxa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total de Usuários\",\"oJjplO\":\"Visualizações totais\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Acompanhe o crescimento e desempenho da conta por fonte de atribuição\",\"YwKzpH\":\"Rastreamento e Análises\",\"uKOFO5\":\"Verdadeiro se pagamento offline\",\"9GsDR2\":\"Verdadeiro se pagamento pendente\",\"GUA0Jy\":\"Tente outro termo ou filtro\",\"2P/OWN\":\"Tente ajustar seus filtros para ver mais datas.\",\"ouM5IM\":\"Tentar outro e-mail\",\"3DZvE7\":\"Experimente Hi.Events Grátis\",\"7P/9OY\":\"Ter\",\"vq2WxD\":\"Ter\",\"G3myU+\":\"Terça-feira\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desativar som\",\"KUOhTy\":\"Ativar som\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Digite \\\"excluir\\\" para confirmar\",\"XxecLm\":\"Tipo de ingresso\",\"IrVSu+\":\"Não foi possível duplicar o produto. Por favor, verifique seus dados\",\"Vx2J6x\":\"Não foi possível buscar participante\",\"h0dx5e\":\"Não foi possível entrar na lista de espera\",\"DaE0Hg\":\"Não foi possível carregar os detalhes do participante.\",\"GlnD5Y\":\"Não foi possível carregar os produtos para esta data. Por favor, tente novamente.\",\"17VbmV\":\"Não foi possível desfazer o check-in\",\"n57zCW\":\"Contas não atribuídas\",\"9uI/rE\":\"Desfazer\",\"b9SN9q\":\"Referência única do pedido\",\"Ef7StM\":\"Desconhecido\",\"ZBAScj\":\"Participante desconhecido\",\"MEIAzV\":\"Sem nome\",\"K6L5Mx\":\"Local sem nome\",\"X13xGn\":\"Não confiável\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Atualizar afiliado\",\"59qHrb\":\"Atualizar capacidade\",\"Gaem9v\":\"Atualizar nome e descrição do evento\",\"7EhE4k\":\"Atualizar rótulo\",\"NPQWj8\":\"Atualizar local\",\"75+lpR\":[\"Atualização: \",[\"subjectTitle\"],\" — alterações na programação\"],\"UOGHdA\":[\"Atualização: \",[\"subjectTitle\"],\" — horário da sessão alterado\"],\"ogoTrw\":[[\"count\"],\" data(s) atualizada(s)\"],\"dDuona\":[\"Capacidade atualizada para \",[\"count\"],\" data(s)\"],\"FT3LSc\":[\"Rótulo atualizado para \",[\"count\"],\" data(s)\"],\"8EcY1g\":[\"Local atualizado para \",[\"count\"],\" data(s)\"],\"gJQsLv\":\"Envie uma imagem de capa para seu organizador\",\"4kEGqW\":\"Envie um logo para seu organizador\",\"lnCMdg\":\"Carregar imagem\",\"29w7p6\":\"Enviando imagem...\",\"HtrFfw\":\"A URL é obrigatória\",\"vzWC39\":\"USB\",\"td5pxI\":\"Leitor USB ativo\",\"dyTklH\":\"Leitor USB em pausa\",\"OHJXlK\":\"Use <0>templates Liquid para personalizar seus emails\",\"g0WJMu\":\"Usar lista de todas as datas\",\"0k4cdb\":\"Usar detalhes do pedido para todos os participantes. Os nomes e e-mails dos participantes corresponderão às informações do comprador.\",\"MKK5oI\":\"Usar a lista de todas as datas ou criar uma lista para esta data?\",\"bA31T4\":\"Usar os dados do comprador para todos os participantes\",\"rnoQsz\":\"Usado para bordas, destaques e estilo do código QR\",\"BV4L/Q\":\"Análise UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validando seu número de IVA...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Número de IVA\",\"pnVh83\":\"Número de IVA\",\"CabI04\":\"O número de IVA não deve conter espaços\",\"PMhxAR\":\"O número de IVA deve começar com um código de país de 2 letras seguido por 8-15 caracteres alfanuméricos (ex: DE123456789)\",\"gPgdNV\":\"Número de IVA validado com sucesso\",\"RUMiLy\":\"Falha na validação do número de IVA\",\"vqji3Y\":\"Falha na validação do número de IVA. Por favor, verifique seu número de IVA.\",\"8dENF9\":\"IVA sobre taxa\",\"ZutOKU\":\"Taxa de IVA\",\"+KJZt3\":\"Registrado para IVA\",\"Nfbg76\":\"Configurações de IVA salvas com sucesso\",\"UvYql/\":\"Configurações de IVA salvas. Estamos validando seu número de IVA em segundo plano.\",\"bXn1Jz\":\"Configurações de IVA atualizadas\",\"tJylUv\":\"Tratamento de IVA para Taxas da Plataforma\",\"FlGprQ\":\"Tratamento de IVA para taxas da plataforma: Empresas registradas para IVA na UE podem usar o mecanismo de autoliquidação (0% - Artigo 196 da Diretiva IVA 2006/112/CE). Empresas não registradas para IVA são cobradas com IVA irlandês de 23%.\",\"516oLj\":\"Serviço de validação de IVA temporariamente indisponível\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"IVA: não registrado\",\"AdWhjZ\":\"Código de verificação\",\"QDEWii\":\"Verificado\",\"wCKkSr\":\"Verificar email\",\"/IBv6X\":\"Verifique seu e-mail\",\"e/cvV1\":\"A verificar...\",\"fROFIL\":\"Vietnamita\",\"p5nYkr\":\"Ver tudo\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Ver todas as capacidades\",\"RnvnDc\":\"Ver todas as mensagens enviadas na plataforma\",\"+WFMis\":\"Visualize e baixe relatórios de todos os seus eventos. Apenas pedidos concluídos são incluídos.\",\"c7VN/A\":\"Ver respostas\",\"SZw9tS\":\"Ver Detalhes\",\"9+84uW\":[\"Ver detalhes de \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Ver evento\",\"c6SXHN\":\"Ver página do evento\",\"n6EaWL\":\"Ver logs\",\"OaKTzt\":\"Ver mapa\",\"zNZNMs\":\"Ver mensagem\",\"67OJ7t\":\"Ver Pedido\",\"tKKZn0\":\"Ver detalhes do pedido\",\"KeCXJu\":\"Veja detalhes de pedidos, emita reembolsos e reenvie confirmações.\",\"9jnAcN\":\"Ver página inicial do organizador\",\"1J/AWD\":\"Ver Ingresso\",\"N9FyyW\":\"Veja, edite e exporte seus participantes registrados.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Aguardando\",\"quR8Qp\":\"Aguardando pagamento\",\"KrurBH\":\"Aguardando leitura…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de espera ativada\",\"TwnTPy\":\"Oferta da lista de espera expirou\",\"NzIvKm\":\"Lista de espera acionada\",\"aUi/Dz\":\"Aviso: Esta é a configuração padrão do sistema. As alterações afetarão todas as contas que não têm uma configuração específica atribuída.\",\"qeygIa\":\"Qua\",\"aT/44s\":\"Não conseguimos copiar essa conexão Stripe. Tente novamente.\",\"RRZDED\":\"Não encontramos pedidos associados a este endereço de e-mail.\",\"2RZK9x\":\"Não conseguimos encontrar o pedido que você está procurando. O link pode ter expirado ou os detalhes do pedido podem ter sido alterados.\",\"nefMIK\":\"Não conseguimos encontrar o ingresso que você está procurando. O link pode ter expirado ou os detalhes do ingresso podem ter sido alterados.\",\"miysJh\":\"Não foi possível encontrar este pedido. Ele pode ter sido removido.\",\"ADsQ23\":\"Não conseguimos acessar o Stripe agora. Tente novamente em instantes.\",\"HJKdzP\":\"Ocorreu um problema ao carregar esta página. Por favor, tente novamente.\",\"jegrvW\":\"Trabalhamos com o Stripe para enviar pagamentos direto para sua conta bancária.\",\"IfN2Qo\":\"Recomendamos um logo quadrado com dimensões mínimas de 200x200px\",\"wJzo/w\":\"Recomendamos dimensões de 400px por 400px e tamanho máximo de 5MB\",\"KRCDqH\":\"Usamos cookies para nos ajudar a entender como o site é utilizado e para melhorar sua experiência.\",\"x8rEDQ\":\"Não conseguimos validar seu número de IVA após várias tentativas. Continuaremos tentando em segundo plano. Por favor, volte mais tarde.\",\"iy+M+c\":[\"Nós o notificaremos por e-mail se uma vaga ficar disponível para \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Abriremos um compositor de mensagens com um modelo pré-preenchido após salvar. Você revisa e envia — nada é enviado automaticamente.\",\"q1BizZ\":\"Enviaremos seus ingressos para este e-mail\",\"ZOmUYW\":\"Validaremos seu número de IVA em segundo plano. Se houver algum problema, avisaremos.\",\"LKjHr4\":[\"Fizemos alterações na programação de \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" afetando \",[\"affectedCount\"],\" sessão(ões).\"],\"Fq/Nx7\":\"Enviámos um código de verificação de 5 dígitos para:\",\"GdWB+V\":\"Webhook criado com sucesso\",\"2X4ecw\":\"Webhook excluído com sucesso\",\"ndBv0v\":\"Integrações de webhook\",\"CThMKa\":\"Logs do Webhook\",\"I0adYQ\":\"Segredo de assinatura do Webhook\",\"nuh/Wq\":\"URL do Webhook\",\"8BMPMe\":\"O webhook não enviará notificações\",\"FSaY52\":\"O webhook enviará notificações\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Site\",\"0f7U0k\":\"Qua\",\"VAcXNz\":\"Quarta-feira\",\"64X6l4\":\"semana\",\"4XSc4l\":\"Semanal\",\"IAUiSh\":\"semanas\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bem-vindo de volta\",\"QDWsl9\":[\"Bem-vindo ao \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bem-vindo ao \",[\"0\"],\", aqui está uma lista de todos os seus eventos\"],\"DDbx7K\":\"Bem-estar\",\"ywRaYa\":\"Que horário?\",\"FaSXqR\":\"Que tipo de evento?\",\"0WyYF4\":\"O que a equipe sem login pode ver\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando um check-in é excluído\",\"RPe6bE\":\"Quando uma data é cancelada em um evento recorrente\",\"Gmd0hv\":\"Quando um novo participante é criado\",\"zyIyPe\":\"Quando um novo evento é criado\",\"Lc18qn\":\"Quando um novo pedido é criado\",\"dfkQIO\":\"Quando um novo produto é criado\",\"8OhzyY\":\"Quando um produto é excluído\",\"tRXdQ9\":\"Quando um produto é atualizado\",\"9L9/28\":\"Quando um produto se esgota, os clientes podem entrar em uma lista de espera para serem notificados quando houver vagas disponíveis.\",\"Q7CWxp\":\"Quando um participante é cancelado\",\"IuUoyV\":\"Quando um participante faz check-in\",\"nBVOd7\":\"Quando um participante é atualizado\",\"t7cuMp\":\"Quando um evento é arquivado\",\"gtoSzE\":\"Quando um evento é atualizado\",\"ny2r8d\":\"Quando um pedido é cancelado\",\"c9RYbv\":\"Quando um pedido é marcado como pago\",\"ejMDw1\":\"Quando um pedido é reembolsado\",\"fVPt0F\":\"Quando um pedido é atualizado\",\"bcYlvb\":\"Quando fecha o check-in\",\"XIG669\":\"Quando abre o check-in\",\"403wpZ\":\"Quando ativado, novos eventos permitirão que os participantes gerenciem seus próprios detalhes de ingresso através de um link seguro. Isso pode ser substituído por evento.\",\"blXLKj\":\"Quando ativado, novos eventos exibirão uma caixa de seleção de opt-in de marketing durante o checkout. Isso pode ser substituído por evento.\",\"Kj0Txn\":\"Quando ativado, não serão cobradas taxas de aplicação nas transações Stripe Connect. Use isso para países onde as taxas de aplicação não são suportadas.\",\"tMqezN\":\"Se os reembolsos estão sendo processados\",\"uchB0M\":\"Pré-visualização do widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Escreva sua mensagem aqui...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"ano\",\"zkWmBh\":\"Anual\",\"+BGee5\":\"anos\",\"X/azM1\":\"Sim - Tenho um número de registro de IVA da UE válido\",\"Tz5oXG\":\"Sim, cancelar meu pedido\",\"QlSZU0\":[\"Você está personificando <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Você está emitindo um reembolso parcial. O cliente será reembolsado em \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Você pode configurar taxas de serviço adicionais e impostos nas configurações da sua conta.\",\"rj3A7+\":\"Você pode substituir isso para datas individuais mais tarde.\",\"paWwQ0\":\"Você ainda pode oferecer ingressos manualmente, se necessário.\",\"jTDzpA\":\"Você não pode arquivar o último organizador ativo da sua conta.\",\"5VGIlq\":\"Você atingiu seu limite de mensagens.\",\"casL1O\":\"Você adicionou taxas e impostos a um produto gratuito. Deseja removê-los?\",\"9jJNZY\":\"Você deve reconhecer suas responsabilidades antes de salvar\",\"pCLes8\":\"Você deve concordar em receber mensagens\",\"FVTVBy\":\"Você precisa verificar seu e-mail antes de atualizar o status do organizador.\",\"ze4bi/\":\"Você precisa criar pelo menos uma sessão antes de poder adicionar participantes a este evento recorrente.\",\"w65ZgF\":\"Você precisa verificar o e-mail da sua conta antes de poder modificar modelos de e-mail.\",\"FRl8Jv\":\"Você precisa verificar o e-mail da sua conta antes de poder enviar mensagens.\",\"88cUW+\":\"Você recebe\",\"O6/3cu\":\"Você poderá configurar datas, programações e regras de recorrência na próxima etapa.\",\"zKAheG\":\"Você está alterando horários de sessão\",\"MNFIxz\":[\"Você vai participar de \",[\"0\"],\"!\"],\"qGZz0m\":\"Você está na lista de espera!\",\"/5HL6k\":\"Você recebeu uma oferta de vaga!\",\"gbjFFH\":\"Você alterou o horário da sessão\",\"p/Sa0j\":\"Sua conta tem limites de mensagens. Para aumentar seus limites, entre em contato conosco em\",\"x/xjzn\":\"Os seus afiliados foram exportados com sucesso.\",\"TF37u6\":\"Seus participantes foram exportados com sucesso.\",\"79lXGw\":\"Sua lista de check-in foi criada com sucesso. Compartilhe o link abaixo com sua equipe de check-in.\",\"BnlG9U\":\"Seu pedido atual será perdido.\",\"nBqgQb\":\"Seu e-mail\",\"GG1fRP\":\"Seu evento está no ar!\",\"ifRqmm\":\"A sua mensagem foi enviada com sucesso!\",\"0/+Nn9\":\"Suas mensagens aparecerão aqui\",\"/Rj5P4\":\"Seu nome\",\"PFjJxY\":\"Sua nova senha deve ter pelo menos 8 caracteres.\",\"gzrCuN\":\"Os detalhes do seu pedido foram atualizados. Um e-mail de confirmação foi enviado para o novo endereço de e-mail.\",\"naQW82\":\"Seu pedido foi cancelado.\",\"bhlHm/\":\"Seu pedido aguarda pagamento\",\"XeNum6\":\"Seus pedidos foram exportados com sucesso.\",\"Xd1R1a\":\"Endereço do seu organizador\",\"WWYHKD\":\"Seu pagamento está protegido com criptografia de nível bancário\",\"5b3QLi\":\"Seu plano\",\"N4Zkqc\":\"Seu filtro de data salvo não está mais disponível — mostrando todas as datas.\",\"FNO5uZ\":\"Seu ingresso continua válido — nenhuma ação é necessária, a menos que o novo horário não funcione para você. Por favor, responda a este e-mail se tiver alguma dúvida.\",\"CnZ3Ou\":\"Seus ingressos foram confirmados.\",\"EmFsMZ\":\"Seu número de IVA está na fila para validação\",\"QBlhh4\":\"Seu número de IVA será validado quando você salvar\",\"fT9VLt\":\"Sua oferta da lista de espera expirou e não foi possível concluir seu pedido. Entre na lista de espera novamente para ser notificado quando houver mais vagas disponíveis.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Ainda não há nada para mostrar'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>desmarcado com sucesso\"],\"KMgp2+\":[[\"0\"],\" disponível\"],\"Pmr5xp\":[[\"0\"],\" criado com sucesso\"],\"FImCSc\":[[\"0\"],\" atualizado com sucesso\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dias, \",[\"hours\"],\" horas, \",[\"minutes\"],\" minutos e \",[\"seconds\"],\" segundos\"],\"f3RdEk\":[[\"hours\"],\" horas, \",[\"minutes\"],\" minutos e \",[\"seconds\"],\" segundos\"],\"fyE7Au\":[[\"minutos\"],\" minutos e \",[\"segundos\"],\" segundos\"],\"NlQ0cx\":[\"Primeiro evento de \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0>Por favor, insira o preço sem incluir impostos e taxas.<1>Impostos e taxas podem ser adicionados abaixo.\",\"ZjMs6e\":\"<0>O número de produtos disponíveis para este produto<1>Esse valor pode ser substituído se houver <2>Limites de Capacidade associados a este produto.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutos e 0 segundos\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Um campo de data. Perfeito para pedir uma data de nascimento, etc.\",\"6euFZ/\":[\"Um \",[\"type\"],\" padrão é automaticamente aplicado a todos os novos produtos. Você pode substituir isso para cada produto.\"],\"SMUbbQ\":\"Um input do tipo Dropdown permite apenas uma seleção\",\"qv4bfj\":\"Uma taxa, como uma taxa de reserva ou uma taxa de serviço\",\"POT0K/\":\"Um valor fixo por produto. Ex: $0,50 por produto\",\"f4vJgj\":\"Uma entrada de texto com várias linhas\",\"OIPtI5\":\"Uma porcentagem do preço do produto. Ex: 3,5% do preço do produto\",\"ZthcdI\":\"Um código promocional sem desconto pode ser usado para revelar produtos ocultos.\",\"AG/qmQ\":\"Uma opção de rádio tem várias opções, mas somente uma pode ser selecionada.\",\"h179TP\":\"Uma breve descrição do evento que será exibida nos resultados dos mecanismos de pesquisa e ao compartilhar nas mídias sociais. Por padrão, a descrição do evento será usada\",\"WKMnh4\":\"Uma entrada de texto de linha única\",\"BHZbFy\":\"Uma única pergunta por pedido. Ex: Qual é o seu endereço de entrega?\",\"Fuh+dI\":\"Uma única pergunta por produto. Ex: Qual é o seu tamanho de camiseta?\",\"RlJmQg\":\"Um imposto padrão, como IVA ou GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Aceitar transferências bancárias, cheques ou outros métodos de pagamento offline\",\"hrvLf4\":\"Aceitar pagamentos com cartão de crédito através do Stripe\",\"bfXQ+N\":\"Aceitar convite\",\"AeXO77\":\"Conta\",\"lkNdiH\":\"Nome da conta\",\"Puv7+X\":\"Configurações da conta\",\"OmylXO\":\"Conta atualizada com sucesso\",\"7L01XJ\":\"Ações\",\"FQBaXG\":\"Ativar\",\"5T2HxQ\":\"Data de ativação\",\"F6pfE9\":\"Ativo\",\"/PN1DA\":\"Adicione uma descrição para esta lista de registro\",\"0/vPdA\":\"Adicione quaisquer anotações sobre o participante. Estas não serão visíveis para o participante.\",\"Or1CPR\":\"Adicione quaisquer anotações sobre o participante...\",\"l3sZO1\":\"Adicione quaisquer notas sobre o pedido. Estas não serão visíveis para o cliente.\",\"xMekgu\":\"Adicione quaisquer notas sobre o pedido...\",\"PGPGsL\":\"Adicionar descrição\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Adicione instruções para pagamentos offline (por exemplo, detalhes de transferência bancária, onde enviar cheques, prazos de pagamento)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Adicionar novo\",\"TZxnm8\":\"Adicionar opção\",\"24l4x6\":\"Adicionar Produto\",\"8q0EdE\":\"Adicionar Produto à Categoria\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Adicionar imposto ou taxa\",\"goOKRY\":\"Adicionar nível\",\"oZW/gT\":\"Adicionar ao calendário\",\"pn5qSs\":\"Informações adicionais\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Endereço\",\"NY/x1b\":\"Linha de endereço 1\",\"POdIrN\":\"Linha de endereço 1\",\"cormHa\":\"Linha de endereço 2\",\"gwk5gg\":\"Linha de endereço 2\",\"U3pytU\":\"Administrador\",\"HLDaLi\":\"Os usuários administradores têm acesso total a eventos e configurações de conta.\",\"W7AfhC\":\"Todos os participantes deste evento\",\"cde2hc\":\"Todos os Produtos\",\"5CQ+r0\":\"Permitir que participantes associados a pedidos não pagos façam check-in\",\"ipYKgM\":\"Permitir a indexação do mecanismo de pesquisa\",\"LRbt6D\":\"Permitir que os mecanismos de pesquisa indexem esse evento\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Incrível, Evento, Palavras-chave...\",\"hehnjM\":\"Valor\",\"R2O9Rg\":[\"Valor pago (\",[\"0\"],\")\"],\"V7MwOy\":\"Ocorreu um erro ao carregar a página\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Ocorreu um erro inesperado.\",\"byKna+\":\"Ocorreu um erro inesperado. Por favor, tente novamente.\",\"ubdMGz\":\"Quaisquer perguntas dos portadores de produtos serão enviadas para este endereço de e-mail. Este também será usado como o endereço de \\\"responder para\\\" em todos os e-mails enviados deste evento\",\"aAIQg2\":\"Aparência\",\"Ym1gnK\":\"aplicado\",\"sy6fss\":[\"Aplica-se a \",[\"0\"],\" produtos\"],\"kadJKg\":\"Aplica-se a 1 produto\",\"DB8zMK\":\"Aplicar\",\"GctSSm\":\"Aplicar código promocional\",\"ARBThj\":[\"Aplicar este \",[\"type\"],\" a todos os novos produtos\"],\"S0ctOE\":\"Arquivar evento\",\"TdfEV7\":\"Arquivado\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Tem certeza de que deseja ativar esse participante?\",\"TvkW9+\":\"Você tem certeza de que deseja arquivar este evento?\",\"/CV2x+\":\"Tem certeza de que deseja cancelar esse participante? Isso anulará seu ingresso\",\"YgRSEE\":\"Tem certeza de que deseja excluir esse código promocional?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Tem certeza de que deseja tornar este evento um rascunho? Isso tornará o evento invisível para o público\",\"mEHQ8I\":\"Tem certeza de que deseja tornar este evento público? Isso tornará o evento visível para o público\",\"s4JozW\":\"Você tem certeza de que deseja restaurar este evento? Ele será restaurado como um evento rascunho.\",\"vJuISq\":\"Tem certeza de que deseja excluir esta Atribuição de Capacidade?\",\"baHeCz\":\"Tem certeza de que deseja excluir esta lista de registro?\",\"LBLOqH\":\"Pergunte uma vez por pedido\",\"wu98dY\":\"Perguntar uma vez por produto\",\"ss9PbX\":\"Participante\",\"m0CFV2\":\"Detalhes do participante\",\"QKim6l\":\"Participante não encontrado\",\"R5IT/I\":\"Anotações do participante\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Bilhete do Participante\",\"9SZT4E\":\"Participantes\",\"iPBfZP\":\"Participantes Registrados\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Redimensionamento automático\",\"vZ5qKF\":\"Redimensionar automaticamente a altura do widget com base no conteúdo. Quando desativado, o widget preencherá a altura do contêiner.\",\"4lVaWA\":\"Aguardando pagamento offline\",\"2rHwhl\":\"Aguardando pagamento offline\",\"3wF4Q/\":\"Aguardando pagamento\",\"ioG+xt\":\"Aguardando pagamento\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Voltar à página do evento\",\"VCoEm+\":\"Voltar ao login\",\"k1bLf+\":\"Cor de fundo\",\"I7xjqg\":\"Tipo de plano de fundo\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Endereço de cobrança\",\"/xC/im\":\"Configurações de cobrança\",\"rp/zaT\":\"Português brasileiro\",\"whqocw\":\"Ao se registrar, você concorda com nossos <0>Termos de Serviço e <1>Política de Privacidade.\",\"bcCn6r\":\"Tipo de cálculo\",\"+8bmSu\":\"Califórnia\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Cancelar\",\"Gjt/py\":\"Cancelar alteração de e-mail\",\"tVJk4q\":\"Cancelar pedido\",\"Os6n2a\":\"Cancelar pedido\",\"Mz7Ygx\":[\"Cancelar pedido \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Cancelado\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacidade\",\"V6Q5RZ\":\"Atribuição de Capacidade criada com sucesso\",\"k5p8dz\":\"Atribuição de Capacidade excluída com sucesso\",\"nDBs04\":\"Gestão de capacidade\",\"ddha3c\":\"As categorias permitem agrupar produtos. Por exemplo, você pode ter uma categoria para \\\"Ingressos\\\" e outra para \\\"Mercadorias\\\".\",\"iS0wAT\":\"As categorias ajudam a organizar seus produtos. Este título será exibido na página pública do evento.\",\"eorM7z\":\"Categorias reordenadas com sucesso.\",\"3EXqwa\":\"Categoria Criada com Sucesso\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Alterar senha\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Fazer check-in de \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Fazer check-in e marcar pedido como pago\",\"QYLpB4\":\"Apenas fazer check-in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Confira este evento!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Lista de registro excluída com sucesso\",\"+hBhWk\":\"A lista de registro expirou\",\"mBsBHq\":\"A lista de registro não está ativa\",\"vPqpQG\":\"Lista de check-in não encontrada\",\"tejfAy\":\"Listas de Registro\",\"hD1ocH\":\"URL de check-in copiada para a área de transferência\",\"CNafaC\":\"As opções de caixa de seleção permitem várias seleções\",\"SpabVf\":\"Caixas de seleção\",\"CRu4lK\":\"Check-in realizado\",\"znIg+z\":\"Finalizar compra\",\"1WnhCL\":\"Configurações de checkout\",\"6imsQS\":\"Chinês simplificado\",\"JjkX4+\":\"Escolha uma cor para seu plano de fundo\",\"/Jizh9\":\"Escolha uma conta\",\"3wV73y\":\"Cidade\",\"FG98gC\":\"Limpar texto de pesquisa\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Clique para copiar\",\"yz7wBu\":\"Fechar\",\"62Ciis\":\"Fechar a barra lateral\",\"EWPtMO\":\"Código\",\"ercTDX\":\"O código deve ter entre 3 e 50 caracteres\",\"oqr9HB\":\"Recolher este produto quando a página do evento for carregada inicialmente\",\"jZlrte\":\"Cor\",\"Vd+LC3\":\"A cor deve ser um código de cor hexadecimal válido. Exemplo: #ffffff\",\"1HfW/F\":\"Cores\",\"VZeG/A\":\"Em breve\",\"yPI7n9\":\"Palavras-chave separadas por vírgulas que descrevem o evento. Elas serão usadas pelos mecanismos de pesquisa para ajudar a categorizar e indexar o evento\",\"NPZqBL\":\"Pedido completo\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Pagamento completo\",\"qqWcBV\":\"Concluído\",\"6HK5Ct\":\"Pedidos concluídos\",\"NWVRtl\":\"Pedidos concluídos\",\"DwF9eH\":\"Código do componente\",\"Tf55h7\":\"Desconto configurado\",\"7VpPHA\":\"Confirmar\",\"ZaEJZM\":\"Confirmar alteração de e-mail\",\"yjkELF\":\"Confirmar nova senha\",\"xnWESi\":\"Confirmar senha\",\"p2/GCq\":\"Confirmar senha\",\"wnDgGj\":\"Confirmação do endereço de e-mail...\",\"pbAk7a\":\"Conectar faixa\",\"UMGQOh\":\"Conecte-se com o Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Detalhes da conexão\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continuar\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Texto do botão Continuar\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copiado\",\"T5rdis\":\"copiado para a área de transferência\",\"he3ygx\":\"Cópia\",\"r2B2P8\":\"Copiar URL de check-in\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copiar link\",\"E6nRW7\":\"Copiar URL\",\"JNCzPW\":\"País\",\"IF7RiR\":\"Capa\",\"hYgDIe\":\"Criar\",\"b9XOHo\":[\"Criar \",[\"0\"]],\"k9RiLi\":\"Criar um Produto\",\"6kdXbW\":\"Criar um código promocional\",\"n5pRtF\":\"Criar um tíquete\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"criar um organizador\",\"ipP6Ue\":\"Criar participante\",\"VwdqVy\":\"Criar Atribuição de Capacidade\",\"EwoMtl\":\"Criar categoria\",\"XletzW\":\"Criar Categoria\",\"WVbTwK\":\"Criar Lista de Registro\",\"uN355O\":\"Criar evento\",\"BOqY23\":\"Criar novo\",\"kpJAeS\":\"Criar organizador\",\"a0EjD+\":\"Criar Produto\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Criar código promocional\",\"B3Mkdt\":\"Criar pergunta\",\"UKfi21\":\"Criar imposto ou taxa\",\"d+F6q9\":\"Criado\",\"Q2lUR2\":\"Moeda\",\"DCKkhU\":\"Senha atual\",\"uIElGP\":\"URL de mapas personalizados\",\"UEqXyt\":\"Intervalo personalizado\",\"876pfE\":\"Cliente\",\"QOg2Sf\":\"Personalize as configurações de e-mail e notificação para esse evento\",\"Y9Z/vP\":\"Personalize a página inicial do evento e a mensagem de checkout\",\"2E2O5H\":\"Personalize as configurações diversas para esse evento\",\"iJhSxe\":\"Personalizar as configurações de SEO para este evento\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Zona de perigo\",\"ZQKLI1\":\"Zona de Perigo\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Data\",\"JvUngl\":\"Data e hora\",\"JJhRbH\":\"Capacidade do primeiro dia\",\"cnGeoo\":\"Excluir\",\"jRJZxD\":\"Excluir Capacidade\",\"VskHIx\":\"Excluir categoria\",\"Qrc8RZ\":\"Excluir Lista de Registro\",\"WHf154\":\"Excluir código\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Descrição\",\"YC3oXa\":\"Descrição para a equipe de registro\",\"URmyfc\":\"Detalhes\",\"1lRT3t\":\"Desativar esta capacidade rastreará as vendas, mas não as interromperá quando o limite for atingido\",\"H6Ma8Z\":\"Desconto\",\"ypJ62C\":\"% de desconto\",\"3LtiBI\":[\"Desconto em \",[\"0\"]],\"C8JLas\":\"Tipo de desconto\",\"1QfxQT\":\"Dispensar\",\"DZlSLn\":\"Etiqueta do documento\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Doação / Produto com valor voluntário\",\"OvNbls\":\"Baixar .ics\",\"kodV18\":\"Baixar CSV\",\"CELKku\":\"Baixar fatura\",\"LQrXcu\":\"Baixar fatura\",\"QIodqd\":\"Baixar código QR\",\"yhjU+j\":\"A baixar fatura\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Seleção suspensa\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicar evento\",\"3ogkAk\":\"Duplicar evento\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Duplicar Opções\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Pássaro madrugador\",\"ePK91l\":\"Editar\",\"N6j2JH\":[\"Editar \",[\"0\"]],\"kBkYSa\":\"Editar Capacidade\",\"oHE9JT\":\"Editar Atribuição de Capacidade\",\"j1Jl7s\":\"Editar categoria\",\"FU1gvP\":\"Editar Lista de Registro\",\"iFgaVN\":\"Editar código\",\"jrBSO1\":\"Editar organizador\",\"tdD/QN\":\"Editar Produto\",\"n143Tq\":\"Editar Categoria de Produto\",\"9BdS63\":\"Editar código promocional\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Editar pergunta\",\"poTr35\":\"Editar usuário\",\"GTOcxw\":\"Editar usuário\",\"pqFrv2\":\"por exemplo. 2,50 por $2,50\",\"3yiej1\":\"Ex. 23,5 para 23,5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Configurações de e-mail e notificação\",\"ATGYL1\":\"Endereço de e-mail\",\"hzKQCy\":\"Endereço de e-mail\",\"HqP6Qf\":\"Alteração de e-mail cancelada com sucesso\",\"mISwW1\":\"Alteração de e-mail pendente\",\"APuxIE\":\"Confirmação de e-mail reenviada\",\"YaCgdO\":\"Confirmação de e-mail reenviada com sucesso\",\"jyt+cx\":\"Mensagem de rodapé do e-mail\",\"I6F3cp\":\"E-mail não verificado\",\"NTZ/NX\":\"Código de incorporação\",\"4rnJq4\":\"Script de incorporação\",\"8oPbg1\":\"Habilitar faturamento\",\"j6w7d/\":\"Ative esta capacidade para interromper as vendas de produtos quando o limite for atingido\",\"VFv2ZC\":\"Data de término\",\"237hSL\":\"Final\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Inglês\",\"MhVoma\":\"Insira um valor excluindo impostos e taxas.\",\"SlfejT\":\"Erro\",\"3Z223G\":\"Erro ao confirmar o endereço de e-mail\",\"a6gga1\":\"Erro ao confirmar a alteração do e-mail\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evento\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Data do Evento\",\"0Zptey\":\"Padrões de eventos\",\"QcCPs8\":\"Detalhes do evento\",\"6fuA9p\":\"Evento duplicado com sucesso\",\"AEuj2m\":\"Página inicial do evento\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Local do evento e detalhes do local\",\"OopDbA\":\"Event page\",\"4/If97\":\"Falha na atualização do status do evento. Tente novamente mais tarde\",\"btxLWj\":\"Status do evento atualizado\",\"nMU2d3\":\"URL do evento\",\"tst44n\":\"Eventos\",\"sZg7s1\":\"Data de Expiração\",\"KnN1Tu\":\"Expirações\",\"uaSvqt\":\"Data de expiração\",\"GS+Mus\":\"Exportação\",\"9xAp/j\":\"Falha ao cancelar o participante\",\"ZpieFv\":\"Falha ao cancelar o pedido\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Falha ao baixar a fatura. Por favor, tente novamente.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Falha ao carregar a Lista de Registro\",\"ZQ15eN\":\"Falha ao reenviar o e-mail do tíquete\",\"ejXy+D\":\"Falha ao ordenar os produtos\",\"PLUB/s\":\"Tarifa\",\"/mfICu\":\"Tarifas\",\"LyFC7X\":\"Filtrar pedidos\",\"cSev+j\":\"Filtros\",\"CVw2MU\":[\"Filtros (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Primeiro número da fatura\",\"V1EGGU\":\"Primeiro nome\",\"kODvZJ\":\"Primeiro nome\",\"S+tm06\":\"O primeiro nome deve ter entre 1 e 50 caracteres\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Usado pela primeira vez\",\"TpqW74\":\"Fixo\",\"irpUxR\":\"Valor fixo\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Esqueceu a senha?\",\"2POOFK\":\"Grátis\",\"P/OAYJ\":\"Produto Gratuito\",\"vAbVy9\":\"Produto gratuito, sem necessidade de informações de pagamento\",\"nLC6tu\":\"Francês\",\"Weq9zb\":\"Geral\",\"DDcvSo\":\"Alemão\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Voltar ao perfil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Agenda\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Vendas brutas\",\"yRg26W\":\"Vendas brutas\",\"R4r4XO\":\"Convidados\",\"26pGvx\":\"Tem um código promocional?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Aqui está um exemplo de como você pode usar o componente em sua aplicação.\",\"Y1SSqh\":\"Aqui está o componente React que você pode usar para incorporar o widget em sua aplicação.\",\"QuhVpV\":[\"Oi \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Escondido da vista do público\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"As perguntas ocultas são visíveis apenas para o organizador do evento e não para o cliente.\",\"vLyv1R\":\"Esconder\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Ocultar produto após a data de término da venda\",\"06s3w3\":\"Ocultar produto antes da data de início da venda\",\"axVMjA\":\"Ocultar produto, a menos que o usuário tenha um código promocional aplicável\",\"ySQGHV\":\"Ocultar produto quando esgotado\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Ocultar este produto dos clientes\",\"Da29Y6\":\"Ocultar esta pergunta\",\"fvDQhr\":\"Ocultar essa camada dos usuários\",\"lNipG+\":\"Ocultar um produto impedirá que os usuários o vejam na página do evento.\",\"ZOBwQn\":\"Design da página inicial\",\"PRuBTd\":\"Designer de página inicial\",\"YjVNGZ\":\"Visualização da página inicial\",\"c3E/kw\":\"Homero\",\"8k8Njd\":\"Quantos minutos o cliente tem para concluir o pedido. Recomendamos pelo menos 15 minutos\",\"ySxKZe\":\"Quantas vezes esse código pode ser usado?\",\"dZsDbK\":[\"Limite de caracteres HTML excedido: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Eu concordo com os <0>termos e condições\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Se ativado, a equipe de check-in pode marcar os participantes como registrados ou marcar o pedido como pago e registrar os participantes. Se desativado, os participantes associados a pedidos não pagos não poderão ser registrados.\",\"muXhGi\":\"Se ativado, o organizador receberá uma notificação por e-mail quando um novo pedido for feito\",\"6fLyj/\":\"Se você não solicitou essa alteração, altere imediatamente sua senha.\",\"n/ZDCz\":\"Imagem excluída com êxito\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Imagem carregada com sucesso\",\"VyUuZb\":\"URL da imagem\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inativo\",\"T0K0yl\":\"Usuários inativos não podem fazer login.\",\"kO44sp\":\"Inclua detalhes de conexão para o seu evento online. Estes detalhes serão mostrados na página de resumo do pedido e no bilhete do participante.\",\"FlQKnG\":\"Incluir impostos e taxas no preço\",\"Vi+BiW\":[\"Inclui \",[\"0\"],\" produtos\"],\"lpm0+y\":\"Inclui 1 produto\",\"UiAk5P\":\"Inserir imagem\",\"OyLdaz\":\"Convite reenviado!\",\"HE6KcK\":\"Convite revogado!\",\"SQKPvQ\":\"Convidar usuário\",\"bKOYkd\":\"Fatura baixada com sucesso\",\"alD1+n\":\"Notas da fatura\",\"kOtCs2\":\"Numeração da fatura\",\"UZ2GSZ\":\"Configurações da fatura\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Item\",\"KFXip/\":\"João\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Rótulo\",\"vXIe7J\":\"Idioma\",\"2LMsOq\":\"Últimos 12 meses\",\"vfe90m\":\"Últimos 14 dias\",\"aK4uBd\":\"Últimas 24 horas\",\"uq2BmQ\":\"Últimos 30 dias\",\"bB6Ram\":\"Últimas 48 horas\",\"VlnB7s\":\"Últimos 6 meses\",\"ct2SYD\":\"Últimos 7 dias\",\"XgOuA7\":\"Últimos 90 dias\",\"I3yitW\":\"Último login\",\"1ZaQUH\":\"Sobrenome\",\"UXBCwc\":\"Sobrenome\",\"tKCBU0\":\"Última vez usado\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Deixe em branco para usar a palavra padrão \\\"Fatura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Carregando...\",\"wJijgU\":\"Localização\",\"sQia9P\":\"Fazer login\",\"zUDyah\":\"Login\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Sair\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Tornar o endereço de cobrança obrigatório durante o checkout\",\"MU3ijv\":\"Tornar essa pergunta obrigatória\",\"wckWOP\":\"Gerenciar\",\"onpJrA\":\"Gerenciar participante\",\"n4SpU5\":\"Gerenciar evento\",\"WVgSTy\":\"Gerenciar pedido\",\"1MAvUY\":\"Gerenciar as configurações de pagamento e faturamento para este evento.\",\"cQrNR3\":\"Gerenciar perfil\",\"AtXtSw\":\"Gerencie impostos e taxas que podem ser aplicados aos seus produtos\",\"ophZVW\":\"Gerenciar tíquetes\",\"DdHfeW\":\"Gerenciar os detalhes de sua conta e as configurações padrão\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Gerencie seus usuários e suas permissões\",\"1m+YT2\":\"As perguntas obrigatórias devem ser respondidas antes que o cliente possa fazer o checkout.\",\"Dim4LO\":\"Adicionar manualmente um participante\",\"e4KdjJ\":\"Adicionar participante manualmente\",\"vFjEnF\":\"Marcar como pago\",\"g9dPPQ\":\"Máximo por pedido\",\"l5OcwO\":\"Participante da mensagem\",\"Gv5AMu\":\"Participantes da mensagem\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Comprador de mensagens\",\"tNZzFb\":\"Conteúdo da mensagem\",\"lYDV/s\":\"Mensagem para participantes individuais\",\"V7DYWd\":\"Mensagem enviada\",\"t7TeQU\":\"Mensagens\",\"xFRMlO\":\"Mínimo por pedido\",\"QYcUEf\":\"Preço mínimo\",\"RDie0n\":\"Diversos\",\"mYLhkl\":\"Configurações diversas\",\"KYveV8\":\"Caixa de texto com várias linhas\",\"VD0iA7\":\"Múltiplas opções de preço. Perfeito para produtos antecipados, etc.\",\"/bhMdO\":\"Minha incrível descrição do evento...\",\"vX8/tc\":\"Meu incrível título de evento...\",\"hKtWk2\":\"Meu perfil\",\"fj5byd\":\"N/D\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nome\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navegar até o participante\",\"qqeAJM\":\"Nunca\",\"7vhWI8\":\"Nova senha\",\"1UzENP\":\"Não\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Não há eventos arquivados para mostrar.\",\"q2LEDV\":\"Nenhum participante encontrado para este pedido.\",\"zlHa5R\":\"Nenhum participante foi adicionado a este pedido.\",\"Wjz5KP\":\"Não há participantes para mostrar\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Sem Atribuições de Capacidade\",\"a/gMx2\":\"Nenhuma Lista de Registro\",\"tMFDem\":\"Nenhum dado disponível\",\"6Z/F61\":\"Nenhum dado para mostrar. Por favor, selecione um intervalo de datas\",\"fFeCKc\":\"Sem desconto\",\"HFucK5\":\"Não há eventos encerrados para mostrar.\",\"yAlJXG\":\"Nenhum evento para mostrar\",\"GqvPcv\":\"Nenhum filtro disponível\",\"KPWxKD\":\"Nenhuma mensagem a ser exibida\",\"J2LkP8\":\"Não há ordens para mostrar\",\"RBXXtB\":\"Nenhum método de pagamento está disponível no momento. Entre em contato com o organizador do evento para obter assistência.\",\"ZWEfBE\":\"Pagamento não necessário\",\"ZPoHOn\":\"Nenhum produto associado a este participante.\",\"Ya1JhR\":\"Nenhum produto disponível nesta categoria.\",\"FTfObB\":\"Nenhum Produto Ainda\",\"+Y976X\":\"Não há códigos promocionais a serem exibidos\",\"MAavyl\":\"Nenhuma pergunta foi respondida por este participante.\",\"SnlQeq\":\"Nenhuma pergunta foi feita para este pedido.\",\"Ev2r9A\":\"Nenhum resultado\",\"gk5uwN\":\"Nenhum Resultado de Pesquisa\",\"RHyZUL\":\"Nenhum resultado de pesquisa.\",\"RY2eP1\":\"Nenhum imposto ou taxa foi adicionado.\",\"EdQY6l\":\"Nenhum\",\"OJx3wK\":\"Não disponível\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Anotações\",\"jtrY3S\":\"Nada para mostrar ainda\",\"hFwWnI\":\"Configurações de notificação\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notificar o organizador sobre novos pedidos\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Número de dias permitidos para pagamento (deixe em branco para omitir os termos de pagamento nas faturas)\",\"n86jmj\":\"Prefixo numérico\",\"mwe+2z\":\"Pedidos offline não são refletidos nas estatísticas do evento até que sejam marcados como pagos.\",\"dWBrJX\":\"O pagamento offline falhou. Por favor, tente novamente ou entre em contato com o organizador do evento.\",\"fcnqjw\":\"Instruções de Pagamento Offline\",\"+eZ7dp\":\"Pagamentos offline\",\"ojDQlR\":\"Informações sobre pagamentos offline\",\"u5oO/W\":\"Configurações de pagamentos offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"À venda\",\"Ug4SfW\":\"Depois de criar um evento, você o verá aqui.\",\"ZxnK5C\":\"Assim que você começar a coletar dados, eles aparecerão aqui.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Em andamento\",\"z+nuVJ\":\"Evento online\",\"WKHW0N\":\"Detalhes do evento on-line\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Abrir Página de Check-In\",\"OdnLE4\":\"Abrir barra lateral\",\"ZZEYpT\":[\"Opção \",[\"i\"]],\"oPknTP\":\"Informações adicionais opcionais a serem exibidas em todas as faturas (ex.: condições de pagamento, taxas por atraso, política de devolução)\",\"OrXJBY\":\"Prefixo opcional para os números das faturas (ex.: INV-)\",\"0zpgxV\":\"Opções\",\"BzEFor\":\"ou\",\"UYUgdb\":\"Pedido\",\"mm+eaX\":\"Pedido n.º\",\"B3gPuX\":\"Pedido cancelado\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Data do pedido\",\"Tol4BF\":\"Detalhes do pedido\",\"WbImlQ\":\"O pedido foi cancelado e o proprietário do pedido foi notificado.\",\"nAn4Oe\":\"Pedido marcado como pago\",\"uzEfRz\":\"Notas do pedido\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Referência do pedido\",\"acIJ41\":\"Status do pedido\",\"GX6dZv\":\"Resumo do pedido\",\"tDTq0D\":\"Tempo limite do pedido\",\"1h+RBg\":\"Pedidos\",\"3y+V4p\":\"Endereço da organização\",\"GVcaW6\":\"Detalhes da organização\",\"nfnm9D\":\"Nome da organização\",\"G5RhpL\":\"Organizador\",\"mYygCM\":\"É necessário um organizador\",\"Pa6G7v\":\"Nome do organizador\",\"l894xP\":\"Os organizadores só podem gerenciar eventos e produtos. Eles não podem gerenciar usuários, configurações de conta ou informações de faturamento.\",\"fdjq4c\":\"Preenchimento\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Página não encontrada\",\"QbrUIo\":\"Visualizações de página\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"pago\",\"HVW65c\":\"Produto Pago\",\"ZfxaB4\":\"Parcialmente reembolsado\",\"8ZsakT\":\"Senha\",\"TUJAyx\":\"A senha deve ter um mínimo de 8 caracteres\",\"vwGkYB\":\"A senha deve ter pelo menos 8 caracteres\",\"BLTZ42\":\"Redefinição de senha bem-sucedida. Faça login com sua nova senha.\",\"f7SUun\":\"As senhas não são as mesmas\",\"aEDp5C\":\"Cole isto onde você deseja que o widget apareça.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Pagamento\",\"Lg+ewC\":\"Pagamento e faturamento\",\"DZjk8u\":\"Configurações de pagamento e faturamento\",\"lflimf\":\"Prazo para pagamento\",\"JhtZAK\":\"Falha no pagamento\",\"JEdsvQ\":\"Instruções de pagamento\",\"bLB3MJ\":\"Métodos de pagamento\",\"QzmQBG\":\"Provedor de pagamento\",\"lsxOPC\":\"Pagamento recebido\",\"wJTzyi\":\"Status do pagamento\",\"xgav5v\":\"O pagamento foi bem-sucedido!\",\"R29lO5\":\"Termos de pagamento\",\"/roQKz\":\"Porcentagem\",\"vPJ1FI\":\"Porcentagem Valor\",\"xdA9ud\":\"Coloque isto no do seu site.\",\"blK94r\":\"Adicione pelo menos uma opção\",\"FJ9Yat\":\"Verifique se as informações fornecidas estão corretas\",\"TkQVup\":\"Verifique seu e-mail e senha e tente novamente\",\"sMiGXD\":\"Verifique se seu e-mail é válido\",\"Ajavq0\":\"Verifique seu e-mail para confirmar seu endereço de e-mail\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Continue na nova guia\",\"hcX103\":\"Por favor, crie um produto\",\"cdR8d6\":\"Por favor, crie um ingresso\",\"x2mjl4\":\"Por favor, insira uma URL de imagem válida que aponte para uma imagem.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Observação\",\"C63rRe\":\"Por favor, volte para a página do evento para recomeçar.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Por favor, selecione pelo menos um produto\",\"igBrCH\":\"Verifique seu endereço de e-mail para acessar todos os recursos\",\"/IzmnP\":\"Por favor, aguarde enquanto preparamos a sua fatura...\",\"MOERNx\":\"Português\",\"qCJyMx\":\"Mensagem de pós-cheque\",\"g2UNkE\":\"Desenvolvido por\",\"Rs7IQv\":\"Mensagem de pré-checkout\",\"rdUucN\":\"Visualização\",\"a7u1N9\":\"Preço\",\"CmoB9j\":\"Modo de exibição de preço\",\"BI7D9d\":\"Preço não definido\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Tipo de Preço\",\"6RmHKN\":\"Cor primária\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Cor do texto primário\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Imprimir todos os ingressos\",\"DKwDdj\":\"Imprimir ingressos\",\"K47k8R\":\"Produto\",\"1JwlHk\":\"Categoria de Produto\",\"U61sAj\":\"Categoria de produto atualizada com sucesso.\",\"1USFWA\":\"Produto excluído com sucesso\",\"4Y2FZT\":\"Tipo de Preço do Produto\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Vendas de Produtos\",\"U/R4Ng\":\"Nível do Produto\",\"sJsr1h\":\"Tipo de Produto\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produto(s)\",\"N0qXpE\":\"Produtos\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Produtos vendidos\",\"/u4DIx\":\"Produtos Vendidos\",\"DJQEZc\":\"Produtos ordenados com sucesso\",\"vERlcd\":\"Perfil\",\"kUlL8W\":\"Perfil atualizado com sucesso\",\"cl5WYc\":[\"Código promocional \",[\"promo_code\"],\" aplicado\"],\"P5sgAk\":\"Código promocional\",\"yKWfjC\":\"Página do código promocional\",\"RVb8Fo\":\"Códigos promocionais\",\"BZ9GWa\":\"Os códigos promocionais podem ser usados para oferecer descontos, acesso de pré-venda ou acesso especial ao seu evento.\",\"OP094m\":\"Relatório de códigos promocionais\",\"4kyDD5\":\"Forneça contexto ou instruções adicionais para esta pergunta. Use este campo para adicionar termos\\ne condições, diretrizes ou quaisquer informações importantes que os participantes precisam saber antes de responder.\",\"toutGW\":\"Código QR\",\"LkMOWF\":\"Quantidade disponível\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Pergunta excluída\",\"avf0gk\":\"Descrição da pergunta\",\"oQvMPn\":\"Título da pergunta\",\"enzGAL\":\"Perguntas\",\"ROv2ZT\":\"Perguntas e Respostas\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Opção de rádio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Beneficiário\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Reembolso falhou\",\"n10yGu\":\"Pedido de reembolso\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Reembolso pendente\",\"xHpVRl\":\"Status do reembolso\",\"/BI0y9\":\"Reembolsado\",\"fgLNSM\":\"Registro\",\"9+8Vez\":\"Usos restantes\",\"tasfos\":\"remover\",\"t/YqKh\":\"Remover\",\"t9yxlZ\":\"Relatórios\",\"prZGMe\":\"Exigir endereço de cobrança\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Reenviar confirmação por e-mail\",\"wIa8Qe\":\"Reenviar convite\",\"VeKsnD\":\"Reenviar e-mail de pedido\",\"dFuEhO\":\"Reenviar e-mail do ingresso\",\"o6+Y6d\":\"Reenvio...\",\"OfhWJH\":\"Redefinir\",\"RfwZxd\":\"Redefinir senha\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restaurar evento\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Voltar para a página do evento\",\"8YBH95\":\"Receita\",\"PO/sOY\":\"Revogar convite\",\"GDvlUT\":\"Função\",\"ELa4O9\":\"Data de término da venda\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Data de início da venda\",\"hBsw5C\":\"Vendas encerradas\",\"kpAzPe\":\"Início das vendas\",\"P/wEOX\":\"São Francisco\",\"tfDRzk\":\"Salvar\",\"IUwGEM\":\"Salvar alterações\",\"U65fiW\":\"Salvar organizador\",\"UGT5vp\":\"Salvar configurações\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Pesquise por nome do participante, e-mail ou número do pedido...\",\"+pr/FY\":\"Pesquisar por nome de evento...\",\"3zRbWw\":\"Pesquise por nome, e-mail ou número do pedido...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Pesquisar por nome...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Pesquisar atribuições de capacidade...\",\"r9M1hc\":\"Pesquisar listas de registro...\",\"+0Yy2U\":\"Buscar produtos\",\"YIix5Y\":\"Pesquisar...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Cor secundária\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Cor do texto secundário\",\"02ePaq\":[\"Selecionar \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Selecione a categoria...\",\"kWI/37\":\"Selecione o organizador\",\"ixIx1f\":\"Selecione o Produto\",\"3oSV95\":\"Selecione o Nível do Produto\",\"C4Y1hA\":\"Selecione os produtos\",\"hAjDQy\":\"Selecionar status\",\"QYARw/\":\"Selecionar bilhete\",\"OMX4tH\":\"Selecionar ingressos\",\"DrwwNd\":\"Selecione o período de tempo\",\"O/7I0o\":\"Selecione...\",\"JlFcis\":\"Enviar\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Enviar uma mensagem\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Enviar Mensagem\",\"D7ZemV\":\"Enviar e-mail de confirmação do pedido e do tíquete\",\"v1rRtW\":\"Enviar teste\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descrição de SEO\",\"/SIY6o\":\"Palavras-chave de SEO\",\"GfWoKv\":\"Configurações de SEO\",\"rXngLf\":\"Título SEO\",\"/jZOZa\":\"Taxa de serviço\",\"Bj/QGQ\":\"Defina um preço mínimo e permita que os usuários paguem mais se quiserem\",\"L0pJmz\":\"Defina o número inicial para a numeração das faturas. Isso não poderá ser alterado depois que as faturas forem geradas.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Configurações\",\"Z8lGw6\":\"Compartilhar\",\"B2V3cA\":\"Compartilhar evento\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Mostrar quantidade disponível do produto\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Mostrar mais\",\"izwOOD\":\"Mostrar impostos e taxas separadamente\",\"1SbbH8\":\"Mostrado ao cliente após o checkout, na página de resumo do pedido.\",\"YfHZv0\":\"Mostrado ao cliente antes do checkout\",\"CBBcly\":\"Mostra campos de endereço comuns, incluindo o país\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Caixa de texto de linha única\",\"+P0Cn2\":\"Pular esta etapa\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Esgotado\",\"Mi1rVn\":\"Esgotado\",\"nwtY4N\":\"Algo deu errado\",\"GRChTw\":\"Algo deu errado ao excluir o imposto ou a taxa\",\"YHFrbe\":\"Algo deu errado! Por favor, tente novamente\",\"kf83Ld\":\"Algo deu errado.\",\"fWsBTs\":\"Algo deu errado. Tente novamente.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Desculpe, este código promocional não é reconhecido\",\"65A04M\":\"Espanhol\",\"mFuBqb\":\"Produto padrão com preço fixo\",\"D3iCkb\":\"Data de início\",\"/2by1f\":\"Estado ou região\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Os pagamentos via Stripe não estão ativados para este evento.\",\"UJmAAK\":\"Assunto\",\"X2rrlw\":\"Subtotal\",\"zzDlyQ\":\"Sucesso\",\"b0HJ45\":[\"Sucesso! \",[\"0\"],\" receberá um e-mail em breve.\"],\"BJIEiF\":[\"Participante com sucesso \",[\"0\"]],\"OtgNFx\":\"Endereço de e-mail confirmado com sucesso\",\"IKwyaF\":\"Alteração de e-mail confirmada com sucesso\",\"zLmvhE\":\"Participante criado com sucesso\",\"gP22tw\":\"Produto Criado com Sucesso\",\"9mZEgt\":\"Código promocional criado com sucesso\",\"aIA9C4\":\"Pergunta criada com sucesso\",\"J3RJSZ\":\"Participante atualizado com sucesso\",\"3suLF0\":\"Atribuição de Capacidade atualizada com sucesso\",\"Z+rnth\":\"Lista de Registro atualizada com sucesso\",\"vzJenu\":\"Configurações de e-mail atualizadas com sucesso\",\"7kOMfV\":\"Evento atualizado com sucesso\",\"G0KW+e\":\"Design da página inicial atualizado com sucesso\",\"k9m6/E\":\"Configurações da página inicial atualizadas com sucesso\",\"y/NR6s\":\"Localização atualizada com sucesso\",\"73nxDO\":\"Configurações diversas atualizadas com sucesso\",\"4H80qv\":\"Pedido atualizado com sucesso\",\"6xCBVN\":\"Configurações de pagamento e faturamento atualizadas com sucesso\",\"1Ycaad\":\"Produto atualizado com sucesso\",\"70dYC8\":\"Código promocional atualizado com sucesso\",\"F+pJnL\":\"Configurações de SEO atualizadas com sucesso\",\"DXZRk5\":\"Suíte 100\",\"GNcfRk\":\"E-mail de suporte\",\"uRfugr\":\"Camiseta\",\"JpohL9\":\"Imposto\",\"geUFpZ\":\"Impostos e taxas\",\"dFHcIn\":\"Detalhes fiscais\",\"wQzCPX\":\"Informações fiscais que aparecerão na parte inferior de todas as faturas (ex.: número de IVA, registro fiscal)\",\"0RXCDo\":\"Imposto ou taxa excluído com êxito\",\"ZowkxF\":\"Impostos\",\"qu6/03\":\"Impostos e taxas\",\"gypigA\":\"Esse código promocional é inválido\",\"5ShqeM\":\"A lista de check-in que você está procurando não existe.\",\"QXlz+n\":\"A moeda padrão para seus eventos.\",\"mnafgQ\":\"O fuso horário padrão para seus eventos.\",\"o7s5FA\":\"O idioma em que o participante receberá e-mails.\",\"NlfnUd\":\"O link em que você clicou é inválido.\",\"HsFnrk\":[\"O número máximo de produtos para \",[\"0\"],\" é \",[\"1\"]],\"TSAiPM\":\"A página que você está procurando não existe\",\"MSmKHn\":\"O preço exibido para o cliente incluirá impostos e taxas.\",\"6zQOg1\":\"O preço exibido para o cliente não inclui impostos e taxas. Eles serão exibidos separadamente\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"O título do evento que será exibido nos resultados dos mecanismos de pesquisa e ao compartilhar nas mídias sociais. Por padrão, o título do evento será usado\",\"wDx3FF\":\"Não há produtos disponíveis para este evento\",\"pNgdBv\":\"Não há produtos disponíveis nesta categoria\",\"rMcHYt\":\"Há um reembolso pendente. Aguarde a conclusão do processo antes de solicitar outro reembolso.\",\"F89D36\":\"Ocorreu um erro ao marcar o pedido como pago\",\"68Axnm\":\"Ocorreu um erro ao processar sua solicitação. Tente novamente.\",\"mVKOW6\":\"Ocorreu um erro ao enviar sua mensagem\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Este participante tem um pedido não pago.\",\"mf3FrP\":\"Esta categoria ainda não possui produtos.\",\"8QH2Il\":\"Esta categoria está oculta da visualização pública\",\"xxv3BZ\":\"Esta lista de registro expirou\",\"Sa7w7S\":\"Esta lista de registro expirou e não está mais disponível para registros.\",\"Uicx2U\":\"Esta lista de registro está ativa\",\"1k0Mp4\":\"Esta lista de registro ainda não está ativa\",\"K6fmBI\":\"Esta lista de registro ainda não está ativa e não está disponível para registros.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Essas informações serão exibidas na página de pagamento, no resumo do pedido e no e-mail de confirmação do pedido.\",\"XAHqAg\":\"Este é um produto geral, como uma camiseta ou uma caneca. Nenhum ingresso será emitido\",\"CNk/ro\":\"Este é um evento on-line\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Essa mensagem será incluída no rodapé de todos os e-mails enviados a partir desse evento\",\"55i7Fa\":\"Esta mensagem só será mostrada se o pedido for concluído com sucesso. Pedidos aguardando pagamento não mostrarão esta mensagem.\",\"RjwlZt\":\"Esse pedido já foi pago.\",\"5K8REg\":\"Esse pedido já foi reembolsado.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Esse pedido foi cancelado.\",\"Q0zd4P\":\"Este pedido expirou. Por favor, recomece.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Esse pedido está concluído.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Essa página de pedidos não está mais disponível.\",\"i0TtkR\":\"Isso substitui todas as configurações de visibilidade e ocultará o produto de todos os clientes.\",\"cRRc+F\":\"Este produto não pode ser excluído porque está associado a um pedido. Você pode ocultá-lo em vez disso.\",\"3Kzsk7\":\"Este produto é um ingresso. Os compradores receberão um ingresso ao comprar\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Este link de redefinição de senha é inválido ou expirou.\",\"IV9xTT\":\"Esse usuário não está ativo, pois não aceitou o convite.\",\"5AnPaO\":\"ingresso\",\"kjAL4v\":\"Bilhete\",\"dtGC3q\":\"O e-mail do ingresso foi reenviado ao participante\",\"54q0zp\":\"Ingressos para\",\"xN9AhL\":[\"Nível \",[\"0\"]],\"jZj9y9\":\"Produto em Camadas\",\"8wITQA\":\"Os produtos escalonados permitem que você ofereça múltiplas opções de preço para o mesmo produto. Isso é perfeito para produtos antecipados ou para oferecer diferentes opções de preço para diferentes grupos de pessoas.\\\" # pt\",\"nn3mSR\":\"Tempo restante:\",\"s/0RpH\":\"Tempos usados\",\"y55eMd\":\"Vezes usado\",\"40Gx0U\":\"Fuso horário\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Ferramentas\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total antes de descontos\",\"NRWNfv\":\"Montante total do desconto\",\"BxsfMK\":\"Total de taxas\",\"2bR+8v\":\"Total de vendas brutas\",\"mpB/d9\":\"Valor total do pedido\",\"m3FM1g\":\"Total reembolsado\",\"jEbkcB\":\"Total Reembolsado\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Imposto total\",\"+zy2Nq\":\"Tipo\",\"FMdMfZ\":\"Não foi possível registrar o participante\",\"bPWBLL\":\"Não foi possível retirar o participante\",\"9+P7zk\":\"Não foi possível criar o produto. Por favor, verifique seus detalhes\",\"WLxtFC\":\"Não foi possível criar o produto. Por favor, verifique seus detalhes\",\"/cSMqv\":\"Não foi possível criar a pergunta. Por favor, verifique seus detalhes\",\"MH/lj8\":\"Não foi possível atualizar a pergunta. Verifique seus detalhes\",\"nnfSdK\":\"Clientes únicos\",\"Mqy/Zy\":\"Estados Unidos\",\"NIuIk1\":\"Ilimitado\",\"/p9Fhq\":\"Ilimitados disponíveis\",\"E0q9qH\":\"Permite usos ilimitados\",\"h10Wm5\":\"Pedido não pago\",\"ia8YsC\":\"Próximos\",\"TlEeFv\":\"Próximos eventos\",\"L/gNNk\":[\"Atualizar \",[\"0\"]],\"+qqX74\":\"Atualizar o nome, a descrição e as datas do evento\",\"vXPSuB\":\"Atualizar perfil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copiado para a área de transferência\",\"e5lF64\":\"Exemplo de uso\",\"fiV0xj\":\"Limite de uso\",\"sGEOe4\":\"Use uma versão desfocada da imagem da capa como plano de fundo\",\"OadMRm\":\"Usar imagem de capa\",\"7PzzBU\":\"Usuário\",\"yDOdwQ\":\"Gerenciamento de usuários\",\"Sxm8rQ\":\"Usuários\",\"VEsDvU\":\"Os usuários podem alterar seu e-mail em <0>Configurações de perfil\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"IVA\",\"E/9LUk\":\"Nome do local\",\"jpctdh\":\"Visualizar\",\"Pte1Hv\":\"Ver Detalhes do Participante\",\"/5PEQz\":\"Exibir página do evento\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Exibir no Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Lista de check-in VIP\",\"tF+VVr\":\"Ingresso VIP\",\"2q/Q7x\":\"Visibilidade\",\"vmOFL/\":\"Não foi possível processar seu pagamento. Tente novamente ou entre em contato com o suporte.\",\"45Srzt\":\"Não conseguimos excluir a categoria. Por favor, tente novamente.\",\"/DNy62\":[\"Não encontramos nenhum ingresso correspondente a \",[\"0\"]],\"1E0vyy\":\"Não foi possível carregar os dados. Por favor, tente novamente.\",\"NmpGKr\":\"Não conseguimos reordenar as categorias. Por favor, tente novamente.\",\"BJtMTd\":\"Recomendamos dimensões de 2160px por 1080px e um tamanho máximo de arquivo de 5 MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Não foi possível confirmar seu pagamento. Tente novamente ou entre em contato com o suporte.\",\"Gspam9\":\"Estamos processando seu pedido. Por favor, aguarde...\",\"LuY52w\":\"Bem-vindo a bordo! Faça login para continuar.\",\"dVxpp5\":[\"Bem-vindo de volta\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"O que são Produtos em Camadas?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"O que é uma Categoria?\",\"gxeWAU\":\"A quais produtos este código se aplica?\",\"hFHnxR\":\"A quais produtos este código se aplica? (Aplica-se a todos por padrão)\",\"AeejQi\":\"A quais produtos essa capacidade deve se aplicar?\",\"Rb0XUE\":\"A que horas você chegará?\",\"5N4wLD\":\"Que tipo de pergunta é essa?\",\"gyLUYU\":\"Quando ativado, as faturas serão geradas para os pedidos de ingressos. As faturas serão enviadas junto com o e-mail de confirmação do pedido. Os participantes também podem baixar suas faturas na página de confirmação do pedido.\",\"D3opg4\":\"Quando os pagamentos offline estão ativados, os usuários poderão concluir seus pedidos e receber seus ingressos. Seus ingressos indicarão claramente que o pedido não foi pago, e a ferramenta de check-in notificará a equipe se um pedido exigir pagamento.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Quais ingressos devem ser associados a esta lista de registro?\",\"S+OdxP\":\"Quem está organizando esse evento?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"A quem deve ser feita essa pergunta?\",\"VxFvXQ\":\"Incorporação de widgets\",\"v1P7Gm\":\"Configurações do widget\",\"b4itZn\":\"Trabalho\",\"hqmXmc\":\"Trabalhando...\",\"+G/XiQ\":\"Ano até agora\",\"l75CjT\":\"Sim\",\"QcwyCh\":\"Sim, remova-os\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Você está alterando seu e-mail para <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Você está offline\",\"sdB7+6\":\"Você pode criar um código promocional que direcione este produto no\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Você não pode mudar o tipo de produto, pois há participantes associados a este produto.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Você não pode registrar participantes com pedidos não pagos. Essa configuração pode ser alterada nas configurações do evento.\",\"c9Evkd\":\"Você não pode excluir a última categoria.\",\"6uwAvx\":\"Você não pode excluir este nível de preço porque já há produtos vendidos para este nível. Você pode ocultá-lo em vez disso.\",\"tFbRKJ\":\"Não é possível editar a função ou o status do proprietário da conta.\",\"fHfiEo\":\"Não é possível reembolsar um pedido criado manualmente.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Você tem acesso a várias contas. Escolha uma para continuar.\",\"Z6q0Vl\":\"Você já aceitou este convite. Faça login para continuar.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Você não tem nenhuma alteração de e-mail pendente.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"O tempo para concluir seu pedido acabou.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Você deve estar ciente de que este e-mail não é promocional\",\"3ZI8IL\":\"Você deve concordar com os termos e condições\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Você deve criar um tíquete antes de adicionar manualmente um participante.\",\"jE4Z8R\":\"Você deve ter pelo menos um nível de preço\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Você terá que marcar um pedido como pago manualmente. Isso pode ser feito na página de gerenciamento de pedidos.\",\"L/+xOk\":\"Você precisará de um ingresso antes de poder criar uma lista de registro.\",\"Djl45M\":\"Você precisará de um produto antes de poder criar uma atribuição de capacidade.\",\"y3qNri\":\"Você precisará de pelo menos um produto para começar. Grátis, pago ou deixe o usuário decidir o que pagar.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"O nome de sua conta é usado nas páginas do evento e nos e-mails.\",\"veessc\":\"Os participantes aparecerão aqui assim que se registrarem no evento. Você também pode adicionar participantes manualmente.\",\"Eh5Wrd\":\"Seu site incrível 🎉\",\"lkMK2r\":\"Seus detalhes\",\"3ENYTQ\":[\"Sua solicitação de alteração de e-mail para <0>\",[\"0\"],\" está pendente. Verifique seu e-mail para confirmar\"],\"yZfBoy\":\"Sua mensagem foi enviada\",\"KSQ8An\":\"Seu pedido\",\"Jwiilf\":\"Seu pedido foi cancelado\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Seus pedidos aparecerão aqui assim que começarem a chegar.\",\"9TO8nT\":\"Sua senha\",\"P8hBau\":\"Seu pagamento está sendo processado.\",\"UdY1lL\":\"Seu pagamento não foi bem-sucedido, tente novamente.\",\"fzuM26\":\"Seu pagamento não foi bem-sucedido. Por favor, tente novamente.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Seu reembolso está sendo processado.\",\"IFHV2p\":\"Seu ingresso para\",\"x1PPdr\":\"CEP / Código Postal\",\"BM/KQm\":\"CEP ou código postal\",\"+LtVBt\":\"CEP ou Código Postal\",\"25QDJ1\":\"- Clique para publicar\",\"WOyJmc\":\"- Clique para despublicar\",\"ncwQad\":\"(vazio)\",\"B/gRsg\":\"(nenhum)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" já fez check-in\"],\"3beCx0\":[[\"0\"],\" <0>com check-in\"],\"S4PqS9\":[[\"0\"],\" webhooks ativos\"],\"6MIiOI\":[[\"0\"],\" restante\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" de \",[\"1\"],\" lugares ocupados.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"rZTf6P\":[[\"0\"],\" vagas restantes\"],\"/HkCs4\":[[\"0\"],\" ingressos\"],\"dtXkP9\":[[\"0\"],\" próximas datas\"],\"30bTiU\":[[\"activeCount\"],\" ativos\"],\"jTs4am\":[\"Logo \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" participantes estão registrados nesta sessão.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponíveis\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" com check-in\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"há \",[\"diffHr\"],\" h\"],\"NRSLBe\":[\"há \",[\"diffMin\"],\" min\"],\"iYfwJE\":[\"há \",[\"diffSec\"],\" s\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" participantes estão registrados nas sessões afetadas.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de ingresso\"],\"0cLzoF\":[[\"totalOccurrences\"],\" datas\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessões em \",[\"0\"],\" datas (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sessão\"],\"other\":[\"#\",\" sessões\"]}],\" por dia)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Impostos/Taxas\",\"B1St2O\":\"<0>As listas de check-in ajudam você a gerenciar a entrada no evento por dia, área ou tipo de ingresso. Você pode vincular ingressos a listas específicas, como zonas VIP ou passes do Dia 1, e compartilhar um link de check-in seguro com a equipe. Não é necessária conta. O check-in funciona em dispositivos móveis, computador ou tablet, usando a câmera do dispositivo ou um scanner USB HID. \",\"v9VSIS\":\"<0>Defina um limite total único de participação que se aplica a vários tipos de ingresso de uma só vez.<1>Por exemplo, se você vincular um ingresso de <2>Passe Diário e um de <3>Fim de Semana Completo, ambos usarão o mesmo pool de vagas. Quando o limite for atingido, todos os ingressos vinculados param de vender automaticamente.\",\"vKXqag\":\"<0>Esta é a quantidade padrão para todas as datas. A capacidade de cada data pode limitar ainda mais a disponibilidade na <1>página de Programação de Sessões.\",\"ZnVt5v\":\"<0>Os webhooks notificam instantaneamente serviços externos quando eventos ocorrem, como adicionar um novo participante ao seu CRM ou lista de e-mails no momento do registro, garantindo uma automação perfeita.<1>Use serviços de terceiros como <2>Zapier, <3>IFTTT ou <4>Make para criar fluxos de trabalho personalizados e automatizar tarefas.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" na taxa atual\"],\"M2DyLc\":\"1 webhook ativo\",\"6hIk/x\":\"1 participante está registrado nas sessões afetadas.\",\"qOyE2U\":\"1 participante está registrado nesta sessão.\",\"943BwI\":\"1 dia após a data de término\",\"yj3N+g\":\"1 dia após a data de início\",\"Z3etYG\":\"1 dia antes do evento\",\"szSnlj\":\"1 hora antes do evento\",\"yTsaLw\":\"1 ingresso\",\"nz96Ue\":\"1 tipo de ingresso\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 semana antes do evento\",\"09VFYl\":\"12 ingressos oferecidos\",\"HR/cvw\":\"Rua Exemplo 123\",\"dgKxZ5\":\"135+ moedas e 40+ métodos de pagamento\",\"kMU5aM\":\"Um aviso de cancelamento foi enviado para\",\"o++0qa\":\"uma mudança na duração\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Um novo código de verificação foi enviado para o seu email\",\"sr2Je0\":\"uma alteração nos horários de início/término\",\"/z/bH1\":\"Uma breve descrição do seu organizador que será exibida aos seus usuários.\",\"aS0jtz\":\"Abandonado\",\"uyJsf6\":\"Sobre\",\"JvuLls\":\"Absorver taxa\",\"lk74+I\":\"Absorver taxa\",\"1uJlG9\":\"Cor de Destaque\",\"g3UF2V\":\"Aceitar\",\"K5+3xg\":\"Aceitar convite\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Conta · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informações da Conta\",\"EHNORh\":\"Conta não encontrada\",\"bPwFdf\":\"Contas\",\"AhwTa1\":\"Ação Necessária: Informações de IVA Necessárias\",\"APyAR/\":\"Eventos ativos\",\"kCl6ja\":\"Métodos de pagamento ativos\",\"XJOV1Y\":\"Atividade\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Adicionar uma data\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Adicionar uma única data\",\"CjvTPJ\":\"Adicionar outro horário\",\"0XCduh\":\"Adicione pelo menos um horário\",\"/chGpa\":\"Adicione os detalhes de conexão para o evento online.\",\"UWWRyd\":\"Adicione perguntas personalizadas para coletar informações adicionais durante o checkout\",\"Z/dcxc\":\"Adicionar data\",\"Q219NT\":\"Adicionar datas\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Adicionar local\",\"VX6WUv\":\"Adicionar local\",\"GCQlV2\":\"Adicione vários horários se você realizar várias sessões por dia.\",\"7JF9w9\":\"Adicionar pergunta\",\"NLbIb6\":\"Adicionar este participante mesmo assim (ignorar capacidade)\",\"6PNlRV\":\"Adicione este evento ao seu calendário\",\"BGD9Yt\":\"Adicionar ingressos\",\"uIv4Op\":\"Adicione pixels de rastreamento às suas páginas públicas de evento e à página inicial do organizador. Um banner de consentimento de cookies será exibido aos visitantes quando o rastreamento estiver ativo.\",\"QN2F+7\":\"Adicionar Webhook\",\"NsWqSP\":\"Adicione seus perfis de redes sociais e o URL do site. Eles serão exibidos na sua página pública de organizador.\",\"bVjDs9\":\"Taxas adicionais\",\"MKqSg4\":\"Acesso de administrador necessário\",\"0Zypnp\":\"Painel de Administração\",\"YAV57v\":\"Afiliado\",\"I+utEq\":\"O código de afiliado não pode ser alterado\",\"/jHBj5\":\"Afiliado criado com sucesso\",\"uCFbG2\":\"Afiliado eliminado com sucesso\",\"ld8I+f\":\"Programa de afiliados\",\"a41PKA\":\"As vendas do afiliado serão rastreadas\",\"mJJh2s\":\"As vendas do afiliado não serão rastreadas. Isto irá desativar o afiliado.\",\"jabmnm\":\"Afiliado atualizado com sucesso\",\"CPXP5Z\":\"Afiliados\",\"9Wh+ug\":\"Afiliados exportados\",\"3cqmut\":\"Os afiliados ajudam-no a rastrear vendas geradas por parceiros e influenciadores. Crie códigos de afiliado e partilhe-os para monitorizar o desempenho.\",\"z7GAMJ\":\"todas\",\"N40H+G\":\"Todos\",\"7rLTkE\":\"Todos os eventos arquivados\",\"gKq1fa\":\"Todos os participantes\",\"63gRoO\":\"Todos os participantes das sessões selecionadas\",\"uWxIoH\":\"Todos os participantes desta sessão\",\"pMLul+\":\"Todas as moedas\",\"sgUdRZ\":\"Todas as datas\",\"e4q4uO\":\"Todas as datas\",\"ZS/D7f\":\"Todos os eventos encerrados\",\"QsYjci\":\"Todos os eventos\",\"31KB8w\":\"Todos os trabalhos com falha excluídos\",\"D2g7C7\":\"Todos os trabalhos na fila para nova tentativa\",\"B4RFBk\":\"Todas as datas correspondentes\",\"F1/VgK\":\"Todas as sessões\",\"OpWjMq\":\"Todas as sessões\",\"Sxm1lO\":\"Todos os status\",\"dr7CWq\":\"Todos os próximos eventos\",\"GpT6Uf\":\"Permitir que os participantes atualizem suas informações de ingresso (nome, e-mail) através de um link seguro enviado com a confirmação do pedido.\",\"F3mW5G\":\"Permitir que os clientes entrem em uma lista de espera quando este produto estiver esgotado\",\"c4uJfc\":\"Quase lá! Estamos apenas aguardando o processamento do seu pagamento. Isso deve levar apenas alguns segundos.\",\"ocS8eq\":[\"Já tem uma conta? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Já entrou\",\"/H326L\":\"Já reembolsado\",\"USEpOK\":\"Já usa o Stripe em outro organizador? Reutilize essa conexão.\",\"RtxQTF\":\"Também cancelar este pedido\",\"jkNgQR\":\"Também reembolsar este pedido\",\"xYqsHg\":\"Sempre disponível\",\"Wvrz79\":\"Valor pago\",\"Zkymb9\":\"Um email para associar a este afiliado. O afiliado não será notificado.\",\"vRznIT\":\"Ocorreu um erro ao verificar o status da exportação.\",\"eusccx\":\"Uma mensagem opcional para exibir no produto destacado, por exemplo \\\"Vendendo rápido 🔥\\\" ou \\\"Melhor valor\\\"\",\"5GJuNp\":[\"e mais \",[\"0\"],\"...\"],\"QNrkms\":\"Resposta atualizada com sucesso.\",\"+qygei\":\"Respostas\",\"GK7Lnt\":\"Respostas no checkout (ex.: escolha de refeição)\",\"lE8PgT\":\"Quaisquer datas que você personalizou manualmente serão mantidas.\",\"vP3Nzg\":[\"Aplica-se a \",[\"0\"],\" datas não canceladas carregadas atualmente nesta página.\"],\"kkVyZZ\":\"Vale para quem abre o link sem estar logado. Membros autenticados sempre veem tudo.\",\"je4muG\":[\"Aplica-se a todas as \",[\"0\"],\" datas não canceladas deste evento — incluindo datas que não estão carregadas no momento.\"],\"YIIQtt\":\"Aplicar alterações\",\"NzWX1Y\":\"Aplicar a\",\"Ps5oDT\":\"Aplicar a todos os ingressos\",\"261RBr\":\"Aprovar mensagem\",\"naCW6Z\":\"Abril\",\"B495Gs\":\"Arquivar\",\"5sNliy\":\"Arquivar evento\",\"BrwnrJ\":\"Arquivar organizador\",\"E5eghW\":\"Arquive este evento para ocultá-lo do público. Você pode restaurá-lo mais tarde.\",\"eqFkeI\":\"Arquive este organizador. Isso também arquivará todos os eventos pertencentes a este organizador.\",\"BzcxWv\":\"Organizadores arquivados\",\"9cQBd6\":\"Tem certeza que deseja arquivar este evento? Ele não será mais visível para o público.\",\"Trnl3E\":\"Tem certeza que deseja arquivar este organizador? Isso também arquivará todos os eventos pertencentes a este organizador.\",\"wOvn+e\":[\"Tem certeza de que deseja cancelar \",[\"count\"],\" data(s)? Os participantes afetados serão notificados por e-mail.\"],\"GTxE0U\":\"Tem certeza de que deseja cancelar esta data? Os participantes afetados serão notificados por e-mail.\",\"VkSk/i\":\"Tem certeza de que deseja cancelar esta mensagem agendada?\",\"0aVEBY\":\"Tem certeza de que deseja excluir todos os trabalhos com falha?\",\"LchiNd\":\"Tem a certeza de que deseja eliminar este afiliado? Esta ação não pode ser anulada.\",\"vPeW/6\":\"Tem certeza de que deseja excluir esta configuração? Isso pode afetar as contas que a utilizam.\",\"h42Hc/\":\"Tem certeza de que deseja excluir esta data? Esta ação não pode ser desfeita.\",\"JmVITJ\":\"Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo padrão.\",\"aLS+A6\":\"Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo do organizador ou padrão.\",\"5H3Z78\":\"Tem certeza de que deseja excluir este webhook?\",\"147G4h\":\"Tem certeza de que deseja sair?\",\"VDWChT\":\"Tem certeza de que deseja definir este organizador como rascunho? Isso tornará a página do organizador invisível ao público.\",\"pWtQJM\":\"Tem certeza de que deseja tornar este organizador público? Isso tornará a página do organizador visível ao público.\",\"EOqL/A\":\"Tem certeza de que deseja oferecer uma vaga a esta pessoa? Ela receberá uma notificação por e-mail.\",\"yAXqWW\":\"Tem certeza de que deseja excluir permanentemente esta data? Isso não pode ser desfeito.\",\"WFHOlF\":\"Tem a certeza de que deseja publicar este evento? Uma vez publicado, será visível ao público.\",\"4TNVdy\":\"Tem a certeza de que deseja publicar este perfil de organizador? Uma vez publicado, será visível ao público.\",\"8x0pUg\":\"Tem certeza de que deseja remover esta entrada da lista de espera?\",\"cDtoWq\":[\"Tem certeza de que deseja reenviar a confirmação do pedido para \",[\"0\"],\"?\"],\"xeIaKw\":[\"Tem certeza de que deseja reenviar o ingresso para \",[\"0\"],\"?\"],\"BjbocR\":\"Tem certeza que deseja restaurar este evento?\",\"7MjfcR\":\"Tem certeza que deseja restaurar este organizador?\",\"ExDt3P\":\"Tem a certeza de que deseja despublicar este evento? Já não será visível ao público.\",\"5Qmxo/\":\"Tem a certeza de que deseja despublicar este perfil de organizador? Já não será visível ao público.\",\"Uqefyd\":\"Você está registrado para IVA na UE?\",\"+QARA4\":\"Arte\",\"tLf3yJ\":\"Como sua empresa está sediada na Irlanda, o IVA irlandês de 23% se aplica automaticamente a todas as taxas da plataforma.\",\"tMeVa/\":\"Solicitar nome e email para cada ingresso comprado\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Atribuir plano\",\"xdiER7\":\"Nível atribuído\",\"F2rX0R\":\"Pelo menos um tipo de evento deve ser selecionado\",\"BCmibk\":\"Tentativas\",\"6PecK3\":\"Presença e taxas de check-in em todos os eventos\",\"K2tp3v\":\"participante\",\"AJ4rvK\":\"Participante cancelado\",\"qvylEK\":\"Participante criado\",\"Aspq3b\":\"Coleta de dados dos participantes\",\"fpb0rX\":\"Dados do participante copiados do pedido\",\"0R3Y+9\":\"E-mail do Participante\",\"94aQMU\":\"Informações do participante\",\"KkrBiR\":\"Coleta de informações do participante\",\"av+gjP\":\"Nome do Participante\",\"sjPjOg\":\"Notas do participante\",\"cosfD8\":\"Status do Participante\",\"D2qlBU\":\"Participante atualizado\",\"22BOve\":\"Participante atualizado com sucesso\",\"x8Vnvf\":\"O ingresso do participante não está incluído nesta lista\",\"/Ywywr\":\"participantes\",\"zLRobu\":\"participantes com check-in\",\"k3Tngl\":\"Participantes exportados\",\"UoIRW8\":\"Participantes registrados\",\"5UbY+B\":\"Participantes com um tíquete específico\",\"4HVzhV\":\"Participantes:\",\"HVkhy2\":\"Análise de atribuição\",\"dMMjeD\":\"Detalhamento de atribuição\",\"1oPDuj\":\"Valor de atribuição\",\"DBHTm/\":\"Agosto\",\"JgREph\":\"A oferta automática está ativada\",\"V7Tejz\":\"Processar lista de espera automaticamente\",\"PZ7FTW\":\"Detectado automaticamente com base na cor de fundo, mas pode ser substituído\",\"zlnTuI\":\"Oferecer ingressos automaticamente à próxima pessoa quando houver capacidade disponível. Se desativado, você pode processar a lista de espera manualmente na página Lista de Espera.\",\"csDS2L\":\"Disponível\",\"clF06r\":\"Disponível para reembolso\",\"NB5+UG\":\"Tokens Disponíveis\",\"L+wGOG\":\"Pendente\",\"qcw2OD\":\"Aguarda pagto.\",\"kNmmvE\":\"Awesome Events Lda.\",\"iH8pgl\":\"Voltar\",\"TeSaQO\":\"Voltar para Contas\",\"X7Q/iM\":\"Voltar ao calendário\",\"kYqM1A\":\"Voltar ao evento\",\"s5QRF3\":\"Voltar para mensagens\",\"td/bh+\":\"Voltar aos Relatórios\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Preço base\",\"hviJef\":\"Baseado no período de venda global acima, não por data\",\"jIPNJG\":\"Informações básicas\",\"UabgBd\":\"Corpo é obrigatório\",\"HWXuQK\":\"Adicione esta página aos favoritos para gerenciar seu pedido a qualquer momento.\",\"CUKVDt\":\"Personalize seus ingressos com um logotipo, cores e mensagem de rodapé personalizados.\",\"4BZj5p\":\"Proteção contra fraude integrada\",\"cr7kGH\":\"Edição em massa\",\"1Fbd6n\":\"Edição em massa de datas\",\"Eq6Tu9\":\"Falha na atualização em massa.\",\"9N+p+g\":\"Negócios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nome da empresa\",\"bv6RXK\":\"Rótulo do Botão\",\"ChDLlO\":\"Texto do botão\",\"BUe8Wj\":\"O comprador paga\",\"qF1qbA\":\"Os compradores veem um preço limpo. A taxa da plataforma é deduzida do seu pagamento.\",\"dg05rc\":\"Ao adicionar pixels de rastreamento, você reconhece que você e esta plataforma são controladores conjuntos dos dados coletados. Você é responsável por garantir que tem uma base legal para esse processamento de acordo com as leis de privacidade aplicáveis (LGPD, GDPR, CCPA, etc.).\",\"DFqasq\":[\"Ao continuar, você concorda com os <0>Termos de Serviço de \",[\"0\"],\"\"],\"wVSa+U\":\"Por dia do mês\",\"0MnNgi\":\"Por dia da semana\",\"CetOZE\":\"Por tipo de ingresso\",\"lFdbRS\":\"Ignorar taxas de aplicação\",\"AjVXBS\":\"Calendário\",\"alkXJ5\":\"Visualização de calendário\",\"2VLZwd\":\"Botão de Chamada para Ação\",\"rT2cV+\":\"Câmera\",\"7hYa9y\":\"Permissão de câmera negada. <0>Solicitar permissão novamente, ou libere o acesso à câmera nas configurações do navegador.\",\"D02dD9\":\"Campanha\",\"RRPA79\":\"Check-in indisponível\",\"OcVwAd\":[\"Cancelar \",[\"count\"],\" data(s)\"],\"H4nE+E\":\"Cancelar todos os produtos e devolvê-los ao pool disponível\",\"Py78q9\":\"Cancelar data\",\"tOXAdc\":\"Cancelar irá cancelar todos os participantes associados a este pedido e devolver os ingressos ao pool disponível.\",\"vev1Jl\":\"Cancelamento\",\"Ha17hq\":[[\"0\"],\" data(s) cancelada(s)\"],\"01sEfm\":\"Não é possível excluir a configuração padrão do sistema\",\"VsM1HH\":\"Atribuições de capacidade\",\"9bIMVF\":\"Gestão de capacidade\",\"H7K8og\":\"A capacidade deve ser 0 ou maior\",\"nzao08\":\"atualizações de capacidade\",\"4cp9NP\":\"Capacidade utilizada\",\"K7tIrx\":\"Categoria\",\"o+XJ9D\":\"Alterar\",\"kJkjoB\":\"Alterar duração\",\"J0KExZ\":\"Alterar o limite de participantes\",\"CIHJJf\":\"Alterar configurações da lista de espera\",\"B5icLR\":[\"Duração alterada para \",[\"count\"],\" data(s)\"],\"Kb+0BT\":\"Cobranças\",\"2tbLdK\":\"Caridade\",\"BPWGKn\":\"Fazer check-in\",\"6uFFoY\":\"Cancelar check-in\",\"FjAlwK\":[\"Confira este evento: \",[\"0\"]],\"v4fiSg\":\"Verifique o seu email\",\"51AsAN\":\"Verifique sua caixa de entrada! Se houver ingressos associados a este e-mail, você receberá um link para visualizá-los.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Check-in criado\",\"F4SRy3\":\"Check-in excluído\",\"as6XfO\":[\"Check-in de \",[\"0\"],\" foi desfeito\"],\"9s/wrQ\":\"Histórico de check-in\",\"Wwztk4\":\"Lista de check-in\",\"9gPPUY\":\"Lista de Check-In Criada!\",\"dwjiJt\":\"Info da lista\",\"7od0PV\":\"listas de check-in\",\"f2vU9t\":\"Listas de Check-in\",\"XprdTn\":\"Navegação de check-in\",\"5tV1in\":\"Progresso do check-in\",\"SHJwyq\":\"Taxa de check-in\",\"qCqdg6\":\"Status do Check-In\",\"cKj6OE\":\"Resumo de Check-in\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Com check-in\",\"DM4gBB\":\"Chinês (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Escolha uma ação diferente\",\"fkb+y3\":\"Escolha um local salvo para aplicar.\",\"Zok1Gx\":\"Escolha um organizador\",\"pkk46Q\":\"Escolha um organizador\",\"Crr3pG\":\"Escolher calendário\",\"LAW8Vb\":\"Escolha a configuração padrão para novos eventos. Isso pode ser substituído para eventos individuais.\",\"pjp2n5\":\"Escolha quem paga a taxa da plataforma. Isso não afeta as taxas adicionais que você configurou nas configurações da sua conta.\",\"xCJdfg\":\"Limpar\",\"QyOWu9\":\"Limpar local — voltar ao padrão do evento\",\"V8yTm6\":\"Limpar busca\",\"kmnKnX\":\"Limpar remove qualquer substituição por data. As datas afetadas voltarão ao local padrão do evento.\",\"/o+aQX\":\"Clique para cancelar\",\"gD7WGV\":\"Clique para reabrir para novas vendas\",\"CySr+W\":\"Clique para ver as notas\",\"RG3szS\":\"fechar\",\"RWw9Lg\":\"Fechar modal\",\"XwdMMg\":\"O código só pode conter letras, números, hífenes e underscores\",\"+yMJb7\":\"O código é obrigatório\",\"m9SD3V\":\"O código deve ter pelo menos 3 caracteres\",\"V1krgP\":\"O código não deve ter mais de 20 caracteres\",\"psqIm5\":\"Colabore com sua equipe para criar eventos incríveis juntos.\",\"4bUH9i\":\"Coletar detalhes do participante para cada ingresso comprado.\",\"TkfG8v\":\"Coletar dados por pedido\",\"96ryID\":\"Coletar dados por ingresso\",\"FpsvqB\":\"Modo de Cor\",\"jEu4bB\":\"Colunas\",\"CWk59I\":\"Comédia\",\"rPA+Gc\":\"Preferências de comunicação\",\"zFT5rr\":\"completo\",\"bUQMpb\":\"Concluir configuração do Stripe\",\"744BMm\":\"Conclua seu pedido para garantir seus ingressos. Esta oferta é por tempo limitado, então não demore muito.\",\"5YrKW7\":\"Complete seu pagamento para garantir seus ingressos.\",\"xGU92i\":\"Complete seu perfil para se juntar à equipe.\",\"QOhkyl\":\"Compor\",\"ih35UP\":\"Centro de conferências\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuração atribuída\",\"X1zdE7\":\"Configuração criada com sucesso\",\"mLBUMQ\":\"Configuração excluída com sucesso\",\"UIENhw\":\"Os nomes de configuração são visíveis para os usuários finais. As taxas fixas serão convertidas para a moeda do pedido na taxa de câmbio atual.\",\"eeZdaB\":\"Configuração atualizada com sucesso\",\"3cKoxx\":\"Configurações\",\"8v2LRU\":\"Configure os detalhes do evento, localização, opções de checkout e notificações por email.\",\"raw09+\":\"Configure como os dados dos participantes são coletados durante o checkout\",\"FI60XC\":\"Configurar impostos e taxas\",\"av6ukY\":\"Configure quais produtos estão disponíveis para esta sessão e, opcionalmente, ajuste os preços.\",\"NGXKG/\":\"Confirmar endereço de e-mail\",\"JRQitQ\":\"Confirme a nova senha\",\"Auz0Mz\":\"Confirme seu e-mail para acessar todos os recursos.\",\"7+grte\":\"E-mail de confirmação enviado! Verifique sua caixa de entrada.\",\"n/7+7Q\":\"Confirmação enviada para\",\"x3wVFc\":\"Parabéns! Seu evento agora está visível para o público.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Conecte o Stripe para habilitar a edição de modelos de e-mail\",\"LmvZ+E\":\"Conecte o Stripe para habilitar mensagens\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contato\",\"LOFgda\":[\"Contato \",[\"0\"]],\"41BQ3k\":\"Email de contacto\",\"KcXRN+\":\"E-mail de contato para suporte\",\"m8WD6t\":\"Continuar configuração\",\"0GwUT4\":\"Ir para o checkout\",\"sBV87H\":\"Continuar para a criação do evento\",\"nKtyYu\":\"Continuar para o próximo passo\",\"F3/nus\":\"Continuar para pagamento\",\"p2FRHj\":\"Controle como as taxas da plataforma são tratadas para este evento\",\"NqfabH\":\"Controle quem entra nesta data\",\"fmYxZx\":\"Controle quem entra e quando\",\"1JnTgU\":\"Copiado de cima\",\"FxVG/l\":\"Copiado para a área de transferência\",\"PiH3UR\":\"Copiado!\",\"4i7smN\":\"Copiar ID da conta\",\"uUPbPg\":\"Copiar link de afiliado\",\"iVm46+\":\"Copiar código\",\"cF2ICc\":\"Copiar link do cliente\",\"+2ZJ7N\":\"Copiar detalhes para o primeiro participante\",\"ZN1WLO\":\"Copiar Email\",\"y1eoq1\":\"Copiar link\",\"tUGbi8\":\"Copiar meus dados para:\",\"y22tv0\":\"Copie este link para compartilhá-lo em qualquer lugar\",\"/4gGIX\":\"Copiar para a área de transferência\",\"e0f4yB\":\"Não foi possível excluir o local\",\"vkiDx2\":\"Não foi possível preparar a atualização em massa.\",\"KOavaU\":\"Não foi possível obter os detalhes do endereço\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Não foi possível salvar a data\",\"eeLExK\":\"Não foi possível salvar o local\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Imagem de capa\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"A imagem de capa será exibida no topo da sua página de evento\",\"2NLjA6\":\"A imagem de capa será exibida no topo da página do organizador\",\"GkrqoY\":\"Cobre todos os ingressos\",\"zg4oSu\":[\"Criar Modelo \",[\"0\"]],\"RKKhnW\":\"Crie um widget personalizado para vender ingressos no seu site.\",\"6sk7PP\":\"Criar um número fixo\",\"PhioFp\":\"Crie uma nova lista de check-in para uma sessão ativa ou entre em contato com o organizador se achar que isso é um erro.\",\"yIRev4\":\"Criar uma senha\",\"j7xZ7J\":\"Crie organizadores adicionais para gerenciar marcas, departamentos ou séries de eventos separados em uma conta. Cada organizador tem seus próprios eventos, configurações e página pública.\",\"xfKgwv\":\"Criar afiliado\",\"tudG8q\":\"Crie e configure ingressos e mercadorias para venda.\",\"YAl9Hg\":\"Criar Configuração\",\"BTne9e\":\"Criar modelos de e-mail personalizados para este evento que substituem os padrões do organizador\",\"YIDzi/\":\"Criar Modelo Personalizado\",\"tsGqx5\":\"Criar data\",\"Nc3l/D\":\"Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Criar para esta data\",\"eWEV9G\":\"Criar nova senha\",\"wl2iai\":\"Criar programação\",\"8AiKIu\":\"Criar ingresso ou produto\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Crie links rastreáveis para recompensar parceiros que promovem seu evento.\",\"dkAPxi\":\"Criar Webhook\",\"5slqwZ\":\"Crie seu evento\",\"JQNMrj\":\"Crie o seu primeiro evento\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Crie seu próprio evento\",\"67NsZP\":\"A criar evento...\",\"H34qcM\":\"A criar organizador...\",\"1YMS+X\":\"A criar o seu evento, por favor aguarde\",\"yiy8Jt\":\"A criar o seu perfil de organizador, por favor aguarde\",\"lfLHNz\":\"Rótulo do CTA é obrigatório\",\"0xLR6W\":\"Atualmente atribuído\",\"iTvh6I\":\"Atualmente disponível para compra\",\"A42Dqn\":\"Marca personalizada\",\"Guo0lU\":\"Data e hora personalizadas\",\"mimF6c\":\"Mensagem personalizada após o checkout\",\"WDMdn8\":\"Perguntas personalizadas\",\"O6mra8\":\"Perguntas personalizadas\",\"axv/Mi\":\"Modelo personalizado\",\"2YeVGY\":\"Link do cliente copiado para a área de transferência\",\"QMHSMS\":\"O cliente receberá um email confirmando o reembolso\",\"L/Qc+w\":\"Endereço de e-mail do cliente\",\"wpfWhJ\":\"Primeiro nome do cliente\",\"GIoqtA\":\"Sobrenome do cliente\",\"NihQNk\":\"Clientes\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Personalize os e-mails enviados aos seus clientes usando modelos Liquid. Estes modelos serão usados como padrão para todos os eventos em sua organização.\",\"xJaTUK\":\"Personalize o layout, cores e marca da página inicial do seu evento.\",\"MXZfGN\":\"Personalize as perguntas feitas durante o checkout para coletar informações importantes dos seus participantes.\",\"iX6SLo\":\"Personalize o texto exibido no botão continuar\",\"pxNIxa\":\"Personalize seu modelo de e-mail usando modelos Liquid\",\"3trPKm\":\"Personalize a aparência da sua página de organizador\",\"U0sC6H\":\"Diário\",\"/gWrVZ\":\"Receita diária, impostos, taxas e reembolsos em todos os eventos\",\"zgCHnE\":\"Relatório de vendas diárias\",\"nHm0AI\":\"Detalhamento das vendas diárias, impostos e taxas\",\"1aPnDT\":\"Dança\",\"pvnfJD\":\"Escuro\",\"MaB9wW\":\"Cancelamento de data\",\"e6cAxJ\":\"Data cancelada\",\"81jBnC\":\"Data cancelada com sucesso\",\"a/C/6R\":\"Data criada com sucesso\",\"IW7Q+u\":\"Data excluída\",\"rngCAz\":\"Data excluída com sucesso\",\"lnYE59\":\"Data do evento\",\"gnBreG\":\"Data em que o pedido foi feito\",\"vHbfoQ\":\"Data reativada\",\"hvah+S\":\"Data reaberta para novas vendas\",\"Ez0YsD\":\"Data atualizada com sucesso\",\"VTsZuy\":\"Datas e horários são gerenciados na\",\"/ITcnz\":\"dia\",\"H7OUPr\":\"Dia\",\"JtHrX9\":\"Dia do mês\",\"J/Upwb\":\"dias\",\"vDVA2I\":\"Dias do mês\",\"rDLvlL\":\"Dias da semana\",\"r6zgGo\":\"Dezembro\",\"jbq7j2\":\"Recusar\",\"ovBPCi\":\"Padrão\",\"JtI4vj\":\"Coleta padrão de informações do participante\",\"ULjv90\":\"Capacidade padrão por data\",\"3R/Tu2\":\"Gestão de taxas padrão\",\"1bZAZA\":\"Modelo padrão será usado\",\"HNlEFZ\":\"excluir\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Excluir \",[\"count\"],\" data(s) selecionada(s)? Datas com pedidos serão ignoradas. Esta ação não pode ser desfeita.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Excluir tudo\",\"6EkaOO\":\"Excluir data\",\"io0G93\":\"Excluir evento\",\"+jw/c1\":\"Excluir imagem\",\"hdyeZ0\":\"Excluir trabalho\",\"xxjZeP\":\"Excluir local\",\"sY3tIw\":\"Excluir organizador\",\"UBv8UK\":\"Excluir permanentemente\",\"dPyJ15\":\"Excluir Modelo\",\"mxsm1o\":\"Excluir esta pergunta? Isso não pode ser desfeito.\",\"snMaH4\":\"Excluir webhook\",\"LIZZLY\":[[\"0\"],\" data(s) excluída(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desselecionar tudo\",\"NvuEhl\":\"Elementos de Design\",\"H8kMHT\":\"Não recebeu o código?\",\"G8KNgd\":\"Local diferente\",\"E/QGRL\":\"Desativado\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Fechar esta mensagem\",\"BREO0S\":\"Exibe uma caixa de seleção permitindo que os clientes optem por receber comunicações de marketing deste organizador de eventos.\",\"pfa8F0\":\"Nome de exibição\",\"Kdpf90\":\"Não esqueça!\",\"352VU2\":\"Não tem uma conta? <0>Cadastre-se\",\"AXXqG+\":\"Doação\",\"DPfwMq\":\"Concluído\",\"JoPiZ2\":\"Instruções para a equipe\",\"2+O9st\":\"Baixe relatórios de vendas, participantes e financeiros para todos os pedidos concluídos.\",\"eneWvv\":\"Rascunho\",\"Ts8hhq\":\"Devido ao alto risco de spam, você deve conectar uma conta Stripe antes de poder modificar modelos de e-mail. Isso é para garantir que todos os organizadores de eventos sejam verificados e responsáveis.\",\"TnzbL+\":\"Devido ao alto risco de spam, você deve conectar uma conta Stripe antes de poder enviar mensagens aos participantes.\\nIsso é para garantir que todos os organizadores de eventos sejam verificados e responsáveis.\",\"euc6Ns\":\"Duplicar\",\"YueC+F\":\"Duplicar data\",\"KRmTkx\":\"Duplicar produto\",\"Jd3ymG\":\"A duração deve ser de pelo menos 1 minuto.\",\"KIjvtr\":\"Holandês\",\"22xieU\":\"ex. 180 (3 horas)\",\"/zajIE\":\"ex. Sessão da manhã\",\"SPKbfM\":\"ex.: Comprar ingressos, Registrar-se agora\",\"fc7wGW\":\"ex: Atualização importante sobre seus ingressos\",\"54MPqC\":\"ex: Padrão, Premium, Enterprise\",\"3RQ81z\":\"Cada pessoa receberá um e-mail com uma vaga reservada para concluir sua compra.\",\"5oD9f/\":\"Mais cedo\",\"LTzmgK\":[\"Editar Modelo \",[\"0\"]],\"v4+lcZ\":\"Editar afiliado\",\"2iZEz7\":\"Editar resposta\",\"t2bbp8\":\"Editar participante\",\"etaWtB\":\"Editar detalhes do participante\",\"+guao5\":\"Editar Configuração\",\"1Mp/A4\":\"Editar data\",\"m0ZqOT\":\"Editar local\",\"8oivFT\":\"Editar local\",\"vRWOrM\":\"Editar detalhes do pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Editada\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educação\",\"iiWXDL\":\"Falhas de elegibilidade\",\"zPiC+q\":\"Listas de Check-In Elegíveis\",\"SiVstt\":\"E-mails e mensagens agendadas\",\"V2sk3H\":\"E-mail e Modelos\",\"hbwCKE\":\"Endereço de email copiado para a área de transferência\",\"dSyJj6\":\"Os endereços de e-mail não coincidem\",\"elW7Tn\":\"Corpo do E-mail\",\"ZsZeV2\":\"O email é obrigatório\",\"Be4gD+\":\"Visualização do E-mail\",\"6IwNUc\":\"Modelos de E-mail\",\"H/UMUG\":\"Verificação de e-mail necessária\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"Email verificado com sucesso!\",\"FSN4TS\":\"Widget incorporado\",\"z9NkYY\":\"Widget incorporável\",\"Qj0GKe\":\"Ativar autoatendimento para participantes\",\"hEtQsg\":\"Ativar autoatendimento para participantes por padrão\",\"Upeg/u\":\"Habilitar este modelo para envio de e-mails\",\"7dSOhU\":\"Ativar lista de espera\",\"RxzN1M\":\"Ativado\",\"xDr/ct\":\"Término\",\"sGjBEq\":\"Data e hora de término (opcional)\",\"PKXt9R\":\"A data de término deve ser posterior à data de início\",\"UmzbPa\":\"Data de término da sessão\",\"ZayGC7\":\"Terminar em uma data\",\"48Y16Q\":\"Hora de fim (opcional)\",\"jpNdOC\":\"Hora de término da sessão\",\"TbaYrr\":[\"Encerrado \",[\"0\"]],\"CFgwiw\":[\"Termina \",[\"0\"]],\"SqOIQU\":\"Insira um valor de capacidade ou escolha ilimitado.\",\"h37gRz\":\"Insira um rótulo ou escolha removê-lo.\",\"7YZofi\":\"Digite um assunto e corpo para ver a visualização\",\"khyScF\":\"Insira um tempo para deslocamento.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Introduza o email do afiliado (opcional)\",\"ARkzso\":\"Introduza o nome do afiliado\",\"ej4L8b\":\"Insira a capacidade\",\"6KnyG0\":\"Digite o e-mail\",\"INDKM9\":\"Digite o assunto do e-mail...\",\"xUgUTh\":\"Digite o primeiro nome\",\"9/1YKL\":\"Digite o sobrenome\",\"VpwcSk\":\"Digite a nova senha\",\"kWg31j\":\"Introduza um código de afiliado único\",\"C3nD/1\":\"Digite seu e-mail\",\"VmXiz4\":\"Digite seu e-mail e enviaremos instruções para redefinir sua senha.\",\"n9V+ps\":\"Digite seu nome\",\"IdULhL\":\"Digite seu número de IVA incluindo o código do país, sem espaços (ex: IE1234567A, DE123456789)\",\"o21Y+P\":\"inscrições\",\"X88/6w\":\"As inscrições aparecerão aqui quando os clientes entrarem na lista de espera de produtos esgotados.\",\"LslKhj\":\"Erro ao carregar os registros\",\"VCNHvW\":\"Evento arquivado\",\"ZD0XSb\":\"Evento arquivado com sucesso\",\"WgD6rb\":\"Categoria do evento\",\"b46pt5\":\"Imagem de capa do evento\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evento criado\",\"1Hzev4\":\"Modelo personalizado do evento\",\"7u9/DO\":\"Evento excluído com sucesso\",\"imgKgl\":\"Descrição do evento\",\"kJDmsI\":\"Detalhes do evento\",\"m/N7Zq\":\"Endereço Completo do Evento\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Local do Evento\",\"PYs3rP\":\"Nome do evento\",\"HhwcTQ\":\"Nome do evento\",\"WZZzB6\":\"O nome do evento é obrigatório\",\"Wd5CDM\":\"O nome do evento deve ter menos de 150 caracteres\",\"4JzCvP\":\"Evento não disponível\",\"Gh9Oqb\":\"Nome do organizador do evento\",\"mImacG\":\"Página do Evento\",\"Hk9Ki/\":\"Evento restaurado com sucesso\",\"JyD0LH\":\"Configurações do evento\",\"cOePZk\":\"Horário do Evento\",\"e8WNln\":\"Fuso horário do evento\",\"GeqWgj\":\"Fuso Horário do Evento\",\"XVLu2v\":\"Título do evento\",\"OfmsI9\":\"Evento muito recente\",\"4SILkp\":\"Totais do evento\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento atualizado\",\"4K2OjV\":\"Local do Evento\",\"19j6uh\":\"Desempenho de Eventos\",\"PC3/fk\":\"Eventos Começando nas Próximas 24 Horas\",\"nwiZdc\":[\"A cada \",[\"0\"]],\"2LJU4o\":[\"A cada \",[\"0\"],\" dias\"],\"yLiYx+\":[\"A cada \",[\"0\"],\" meses\"],\"nn9ice\":[\"A cada \",[\"0\"],\" semanas\"],\"Cdr8f9\":[\"A cada \",[\"0\"],\" semanas em \",[\"1\"]],\"GVEHRk\":[\"A cada \",[\"0\"],\" anos\"],\"fTFfOK\":\"Todo modelo de e-mail deve incluir um botão de chamada para ação que leva à página apropriada\",\"BVinvJ\":\"Exemplos: \\\"Como você soube de nós?\\\", \\\"Nome da empresa para fatura\\\"\",\"2hGPQG\":\"Exemplos: \\\"Tamanho da camiseta\\\", \\\"Preferência de refeição\\\", \\\"Cargo\\\"\",\"qNuTh3\":\"Exceção\",\"M1RnFv\":\"Expirado\",\"kF8HQ7\":\"Exportar respostas\",\"2KAI4N\":\"Exportar CSV\",\"JKfSAv\":\"Falha na exportação. Por favor, tente novamente.\",\"SVOEsu\":\"Exportação iniciada. Preparando arquivo...\",\"wuyaZh\":\"Exportação bem-sucedida\",\"9bpUSo\":\"A exportar afiliados\",\"jtrqH9\":\"Exportando participantes\",\"R4Oqr8\":\"Exportação concluída. Baixando arquivo...\",\"UlAK8E\":\"Exportando pedidos\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Falhou\",\"8uOlgz\":\"Falhou em\",\"tKcbYd\":\"Trabalhos com falha\",\"SsI9v/\":\"Falha ao abandonar o pedido. Por favor, tente novamente.\",\"LdPKPR\":\"Falha ao atribuir configuração\",\"PO0cfn\":\"Falha ao cancelar data\",\"YUX+f+\":\"Falha ao cancelar datas\",\"SIHgVQ\":\"Falha ao cancelar mensagem\",\"cEFg3R\":\"Falha ao criar afiliado\",\"dVgNF1\":\"Falha ao criar configuração\",\"fAoRRJ\":\"Falha ao criar programação\",\"U66oUa\":\"Falha ao criar modelo\",\"aFk48v\":\"Falha ao excluir configuração\",\"n1CYMH\":\"Falha ao excluir data\",\"KXv+Qn\":\"Falha ao excluir data. Ela pode ter pedidos existentes.\",\"JJ0uRo\":\"Falha ao excluir datas\",\"rgoBnv\":\"Falha ao excluir o evento\",\"Zw6LWb\":\"Falha ao excluir trabalho\",\"tq0abZ\":\"Falha ao excluir trabalhos\",\"2mkc3c\":\"Falha ao excluir o organizador\",\"vKMKnu\":\"Falha ao excluir pergunta\",\"xFj7Yj\":\"Falha ao excluir modelo\",\"jo3Gm6\":\"Falha ao exportar afiliados\",\"Jjw03p\":\"Falha ao exportar participantes\",\"ZPwFnN\":\"Falha ao exportar pedidos\",\"zGE3CH\":\"Falha ao exportar relatório. Por favor, tente novamente.\",\"lS9/aZ\":\"Falha ao carregar destinatários\",\"X4o0MX\":\"Falha ao carregar o Webhook\",\"ETcU7q\":\"Falha ao oferecer vaga\",\"5670b9\":\"Falha ao oferecer ingressos\",\"e5KIbI\":\"Falha ao reativar data\",\"7zyx8a\":\"Falha ao remover da lista de espera\",\"A/P7PX\":\"Falha ao remover substituição\",\"ogWc1z\":\"Falha ao reabrir a data\",\"0+iwE5\":\"Falha ao reordenar perguntas\",\"EJPAcd\":\"Falha ao reenviar confirmação do pedido\",\"DjSbj3\":\"Falha ao reenviar ingresso\",\"YQ3QSS\":\"Falha ao reenviar código de verificação\",\"wDioLj\":\"Falha ao tentar novamente o trabalho\",\"DKYTWG\":\"Falha ao tentar novamente os trabalhos\",\"WRREqF\":\"Falha ao salvar substituição\",\"sj/eZA\":\"Falha ao salvar substituição de preço\",\"780n8A\":\"Falha ao salvar configurações do produto\",\"zTkTF3\":\"Falha ao salvar modelo\",\"l6acRV\":\"Falha ao salvar as configurações de IVA. Por favor, tente novamente.\",\"T6B2gk\":\"Falha ao enviar mensagem. Por favor, tente novamente.\",\"lKh069\":\"Falha ao iniciar a exportação\",\"t/KVOk\":\"Falha ao iniciar a personificação. Por favor, tente novamente.\",\"QXgjH0\":\"Falha ao parar a personificação. Por favor, tente novamente.\",\"i0QKrm\":\"Falha ao atualizar afiliado\",\"NNc33d\":\"Falha ao atualizar a resposta.\",\"E9jY+o\":\"Falha ao atualizar participante\",\"uQynyf\":\"Falha ao atualizar configuração\",\"i2PFQJ\":\"Falha ao atualizar o status do evento\",\"EhlbcI\":\"Falha ao atualizar nível de mensagens\",\"rpGMzC\":\"Falha ao atualizar pedido\",\"T2aCOV\":\"Falha ao atualizar o status do organizador\",\"Eeo/Gy\":\"Falha ao atualizar configuração\",\"kqA9lY\":\"Falha ao atualizar configurações de IVA\",\"7/9RFs\":\"Falha ao carregar imagem.\",\"nkNfWu\":\"Falha ao enviar imagem. Por favor, tente novamente.\",\"rxy0tG\":\"Falha ao verificar email\",\"QRUpCk\":\"Família\",\"5LO38w\":\"Pagamentos rápidos para seu banco\",\"4lgLew\":\"Fevereiro\",\"9bHCo2\":\"Moeda da taxa\",\"/sV91a\":\"Gestão de taxas\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Taxas ignoradas\",\"cf35MA\":\"Festival\",\"pAey+4\":\"O arquivo é muito grande. O tamanho máximo é 5MB.\",\"VejKUM\":\"Preencha seus dados acima primeiro\",\"/n6q8B\":\"Cinema\",\"L1qbUx\":\"Filtrar participantes\",\"8OvVZZ\":\"Filtrar Participantes\",\"N/H3++\":\"Filtrar por data\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Termine de configurar o Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"Primeiro\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primeiro participante\",\"4pwejF\":\"O primeiro nome é obrigatório\",\"3lkYdQ\":\"Taxa fixa\",\"6bBh3/\":\"Taxa Fixa\",\"zWqUyJ\":\"Taxa fixa cobrada por transação\",\"LWL3Bs\":\"A taxa fixa deve ser 0 ou maior\",\"0RI8m4\":\"Flash desligado\",\"q0923e\":\"Flash ligado\",\"lWxAUo\":\"Comida e bebida\",\"nFm+5u\":\"Texto do Rodapé\",\"a8nooQ\":\"Quarto\",\"mob/am\":\"Sex\",\"wtuVU4\":\"Frequência\",\"xVhQZV\":\"Sex\",\"39y5bn\":\"Sexta-feira\",\"f5UbZ0\":\"Propriedade total dos dados\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Reembolso total\",\"UsIfa8\":\"Endereço completo resolvido\",\"PGQLdy\":\"futuras\",\"8N/j1s\":\"Somente datas futuras\",\"yRx/6K\":\"Datas futuras serão copiadas com a capacidade redefinida para zero\",\"T02gNN\":\"Admissão Geral\",\"3ep0Gx\":\"Informações gerais sobre seu organizador\",\"ziAjHi\":\"Gerar\",\"exy8uo\":\"Gerar código\",\"4CETZY\":\"Como chegar\",\"pjkEcB\":\"Receba pagamentos\",\"lGYzP6\":\"Receba pagamentos com Stripe\",\"ZDIydz\":\"Começar\",\"u6FPxT\":\"Obter Ingressos\",\"8KDgYV\":\"Prepare seu evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Voltar\",\"oNL5vN\":\"Ir para a página do evento\",\"gHSuV/\":\"Ir para a página inicial\",\"8+Cj55\":\"Ir para a programação\",\"6nDzTl\":\"Boa legibilidade\",\"76gPWk\":\"Entendi\",\"aGWZUr\":\"Receita bruta\",\"n8IUs7\":\"Receita Bruta\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestão de convidados\",\"NUsTc4\":\"Acontecendo agora\",\"kTSQej\":[\"Olá \",[\"0\"],\", gerencie sua plataforma daqui.\"],\"dORAcs\":\"Aqui estão todos os ingressos associados ao seu endereço de e-mail.\",\"g+2103\":\"Aqui está o seu link de afiliado\",\"bVsnqU\":\"Olá,\",\"/iE8xx\":\"Taxa Hi.Events\",\"zppscQ\":\"Taxas da plataforma Hi.Events e discriminação do IVA por transação\",\"D+zLDD\":\"Oculto\",\"DRErHC\":\"Oculto para participantes - visível apenas para organizadores\",\"NNnsM0\":\"Ocultar opções avançadas\",\"P+5Pbo\":\"Ocultar respostas\",\"VMlRqi\":\"Ocultar detalhes\",\"FmogyU\":\"Ocultar Opções\",\"gtEbeW\":\"Destacar\",\"NF8sdv\":\"Mensagem de destaque\",\"MXSqmS\":\"Destacar este produto\",\"7ER2sc\":\"Destacado\",\"sq7vjE\":\"Os produtos em destaque terão uma cor de fundo diferente para se destacarem na página do evento.\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Horas\",\"sy9anN\":\"Quanto tempo um cliente tem para concluir a compra após receber uma oferta. Deixe vazio para sem limite de tempo.\",\"n2ilNh\":\"Por quanto tempo a programação dura?\",\"DMr2XN\":\"Com que frequência?\",\"AVpmAa\":\"Como pagar offline\",\"cceMns\":\"Como o IVA é aplicado às taxas da plataforma que cobramos de você.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Húngaro\",\"8Wgd41\":\"Reconheço minhas responsabilidades como controlador de dados\",\"O8m7VA\":\"Concordo em receber notificações por e-mail relacionadas a este evento\",\"YLgdk5\":\"Confirmo que esta é uma mensagem transacional relacionada a este evento\",\"4/kP5a\":\"Se uma nova aba não abriu automaticamente, clique no botão abaixo para continuar para o checkout.\",\"W/eN+G\":\"Se em branco, o endereço será usado para gerar um link do Google Maps\",\"iIEaNB\":\"Se você tem uma conta conosco, receberá um e-mail com instruções sobre como redefinir sua senha.\",\"an5hVd\":\"Imagens\",\"tSVr6t\":\"Personificar\",\"TWXU0c\":\"Personificar usuário\",\"5LAZwq\":\"Personificação iniciada\",\"IMwcdR\":\"Personificação parada\",\"0I0Hac\":\"Aviso importante\",\"yD3avI\":\"Importante: Alterar seu endereço de e-mail atualizará o link de acesso a este pedido. Você será redirecionado para o novo link do pedido após salvar.\",\"jT142F\":[\"Em \",[\"diffHours\"],\" horas\"],\"OoSyqO\":[\"Em \",[\"diffMinutes\"],\" minutos\"],\"PdMhEx\":[\"nos últimos \",[\"0\"],\" min\"],\"u7r0G5\":\"Presencial — defina um local\",\"Ip0hl5\":\"in_person, online, unset ou mixed\",\"F1Xp97\":\"Participantes individuais\",\"85e6zs\":\"Inserir Token Liquid\",\"38KFY0\":\"Inserir Variável\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Pagamentos instantâneos via Stripe\",\"nbfdhU\":\"Integrações\",\"I8eJ6/\":\"Notas internas no ingresso do participante\",\"B2Tpo0\":\"Email inválido\",\"5tT0+u\":\"Formato de email inválido\",\"f9WRpE\":\"Tipo de arquivo inválido. Por favor, envie uma imagem.\",\"tnL+GP\":\"Sintaxe Liquid inválida. Por favor, corrija e tente novamente.\",\"N9JsFT\":\"Formato de número de IVA inválido\",\"g+lLS9\":\"Convidar um membro da equipe\",\"1z26sk\":\"Convidar membro da equipe\",\"KR0679\":\"Convidar membros da equipe\",\"aH6ZIb\":\"Convide sua equipe\",\"IuMGvq\":\"Fatura\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"item(ns)\",\"BzfzPK\":\"Itens\",\"rjyWPb\":\"Janeiro\",\"KmWyx0\":\"Trabalho\",\"o5r6b2\":\"Trabalho excluído\",\"cd0jIM\":\"Detalhes do trabalho\",\"ruJO57\":\"Nome do trabalho\",\"YZi+Hu\":\"Trabalho na fila para nova tentativa\",\"nCywLA\":\"Participe de qualquer lugar\",\"SNzppu\":\"Entrar na lista de espera\",\"dLouFI\":[\"Entrar na lista de espera para \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrito\",\"u4ex5r\":\"Julho\",\"zeEQd/\":\"Junho\",\"MxjCqk\":\"Apenas procurando seus ingressos?\",\"xOTzt5\":\"agora mesmo\",\"0RihU9\":\"Acabou de encerrar\",\"lB2hSG\":[\"Manter-me atualizado sobre novidades e eventos de \",[\"0\"]],\"ioFA9i\":\"Fique com o lucro.\",\"4Sffp7\":\"Rótulo para a sessão\",\"o66QSP\":\"atualizações de rótulo\",\"RtKKbA\":\"Último\",\"DruLRc\":\"Últimos 14 dias\",\"ve9JTU\":\"O sobrenome é obrigatório\",\"h0Q9Iw\":\"Última resposta\",\"gw3Ur5\":\"Última ativação\",\"FIq1Ba\":\"Mais tarde\",\"xvnLMP\":\"Últimos check-ins\",\"pzAivY\":\"Latitude do local resolvido\",\"N5TErv\":\"Deixe vazio para ilimitado\",\"L/hDDD\":\"Deixe vazio para aplicar esta lista de check-in a todas as sessões\",\"9Pf3wk\":\"Mantenha ativado para cobrir todos os ingressos do evento. Desative para escolher ingressos específicos.\",\"Hq2BzX\":\"Avise-os sobre a mudança\",\"+uexiy\":\"Avise-os sobre as mudanças\",\"exYcTF\":\"Biblioteca\",\"1njn7W\":\"Claro\",\"1qY5Ue\":\"Link expirado ou inválido\",\"+zSD/o\":\"Link para a página inicial do evento\",\"psosdY\":\"Link para detalhes do pedido\",\"6JzK4N\":\"Link para ingresso\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links permitidos\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Visualização em lista\",\"dF6vP6\":\"Ao vivo\",\"fpMs2Z\":\"AO VIVO\",\"D9zTjx\":\"Eventos ao Vivo\",\"C33p4q\":\"Datas carregadas\",\"WdmJIX\":\"Carregando visualização...\",\"IoDI2o\":\"Carregando tokens...\",\"G3Ge9Z\":\"Carregando logs do webhook...\",\"NFxlHW\":\"Carregando webhooks\",\"E0DoRM\":\"Local excluído\",\"NtLHT3\":\"Endereço formatado do local\",\"h4vxDc\":\"Latitude do local\",\"f2TMhR\":\"Longitude do local\",\"lnCo2f\":\"Modo do local\",\"8pmGFk\":\"Nome do local\",\"7w8lJU\":\"Local salvo\",\"YsRXDD\":\"Local atualizado\",\"A/kIva\":\"atualizações de local\",\"VppBoU\":\"Locais\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo e Capa\",\"gddQe0\":\"Logo e imagem de capa para seu organizador\",\"TBEnp1\":\"O logo será exibido no cabeçalho\",\"Jzu30R\":\"O logo será exibido no ingresso\",\"zKTMTg\":\"Longitude do local resolvido\",\"PSRm6/\":\"Procurar meus ingressos\",\"yJFu/X\":\"Escritório Principal\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Gerenciar \",[\"0\"]],\"wZJfA8\":\"Gerencie as datas e horários do seu evento recorrente\",\"RlzPUE\":\"Gerenciar no Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Gerenciar programação\",\"zXuaxY\":\"Gerencie a lista de espera do seu evento, veja estatísticas e ofereça ingressos aos participantes.\",\"BWTzAb\":\"Manual\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"Março\",\"pqRBOz\":\"Marcar como validado (substituição de administrador)\",\"2L3vle\":\"Máx. mensagens / 24h\",\"Qp4HWD\":\"Máx. destinatários / mensagem\",\"3JzsDb\":\"Maio\",\"agPptk\":\"Meio\",\"xDAtGP\":\"Mensagem\",\"bECJqy\":\"Mensagem aprovada com sucesso\",\"1jRD0v\":\"Enviar mensagens aos participantes com ingressos específicos\",\"uQLXbS\":\"Mensagem cancelada\",\"48rf3i\":\"Mensagem não pode exceder 5000 caracteres\",\"ZPj0Q8\":\"Detalhes da mensagem\",\"Vjat/X\":\"A mensagem é obrigatória\",\"0/yJtP\":\"Enviar mensagem para proprietários de pedidos com produtos específicos\",\"saG4At\":\"Mensagem agendada\",\"mFdA+i\":\"Nível de mensagens\",\"v7xKtM\":\"Nível de mensagens atualizado com sucesso\",\"H9HlDe\":\"minutos\",\"agRWc1\":\"Minutos\",\"YYzBv9\":\"Seg\",\"zz/Wd/\":\"Modo\",\"fpMgHS\":\"Seg\",\"hty0d5\":\"Segunda-feira\",\"JbIgPz\":\"Os valores monetários são totais aproximados em todas as moedas\",\"qvF+MT\":\"Monitorar e gerenciar trabalhos em segundo plano com falha\",\"kY2ll9\":\"mês\",\"HajiZl\":\"Mês\",\"+8Nek/\":\"Mensal\",\"1LkxnU\":\"Padrão mensal\",\"6jefe3\":\"meses\",\"f8jrkd\":\"mais\",\"JcD7qf\":\"Mais ações\",\"w36OkR\":\"Eventos mais vistos (Últimos 14 dias)\",\"+Y/na7\":\"Mover todas as datas para mais cedo ou mais tarde\",\"3DIpY0\":\"Vários locais\",\"g9cQCP\":\"Vários tipos de ingresso\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Meus Ingressos\",\"8/brI5\":\"O nome é obrigatório\",\"sFFArG\":\"O nome deve ter menos de 255 caracteres\",\"sCV5Yc\":\"Nome do evento\",\"xxU3NX\":\"Receita Líquida\",\"7I8LlL\":\"Nova capacidade\",\"n1GRql\":\"Novo rótulo\",\"y0Fcpd\":\"Novo local\",\"ArHT/C\":\"Novos cadastros\",\"uK7xWf\":\"Novo horário:\",\"veT5Br\":\"Próxima sessão\",\"WXtl5X\":[\"Próxima: \",[\"nextFormatted\"]],\"eWRECP\":\"Vida noturna\",\"HSw5l3\":\"Não - Sou um indivíduo ou empresa não registrada para IVA\",\"VHfLAW\":\"Sem contas\",\"+jIeoh\":\"Nenhuma conta encontrada\",\"074+X8\":\"Nenhum webhook ativo\",\"zxnup4\":\"Sem afiliados para mostrar\",\"Dwf4dR\":\"Ainda não há perguntas para participantes\",\"th7rdT\":\"Sem participantes\",\"PKySlW\":\"Ainda não há participantes para esta data.\",\"/UC6qk\":\"Nenhum dado de atribuição encontrado\",\"E2vYsO\":\"O Stripe ainda não relatou capacidades.\",\"amMkpL\":\"Sem capacidade\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nenhuma lista de check-in disponível para este evento.\",\"wG+knX\":\"Ainda sem check-ins\",\"+dAKxg\":\"Nenhuma configuração encontrada\",\"LiLk8u\":\"Sem conexões disponíveis\",\"eb47T5\":\"Nenhum dado encontrado para os filtros selecionados. Tente ajustar o período ou a moeda.\",\"lFVUyx\":\"Nenhuma lista de check-in específica para a data\",\"I8mtzP\":\"Nenhuma data disponível neste mês. Tente navegar para outro mês.\",\"yDukIL\":\"Nenhuma data corresponde aos filtros atuais.\",\"B7phdj\":\"Nenhuma data corresponde aos seus filtros\",\"/ZB4Um\":\"Nenhuma data corresponde à sua busca\",\"gEdNe8\":\"Ainda não há datas agendadas\",\"27GYXJ\":\"Nenhuma data agendada.\",\"pZNOT9\":\"Sem data de término\",\"dW40Uz\":\"Nenhum evento encontrado\",\"8pQ3NJ\":\"Nenhum evento começando nas próximas 24 horas\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Sem trabalhos com falha\",\"EpvBAp\":\"Sem fatura\",\"XZkeaI\":\"Nenhum registro encontrado\",\"nrSs2u\":\"Nenhuma mensagem encontrada\",\"Rj99yx\":\"Nenhuma sessão disponível\",\"IFU1IG\":\"Nenhuma sessão nesta data\",\"OVFwlg\":\"Ainda não há perguntas de pedido\",\"EJ7bVz\":\"Nenhum pedido encontrado\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Ainda não há pedidos para esta data.\",\"wUv5xQ\":\"Sem atividade de organizador nos últimos 14 dias\",\"vLd1tV\":\"Nenhum contexto de organizador disponível.\",\"B7w4KY\":\"Nenhum outro organizador disponível\",\"PChXMe\":\"Sem pedidos pagos\",\"6jYQGG\":\"Nenhum evento passado\",\"CHzaTD\":\"Sem eventos populares nos últimos 14 dias\",\"zK/+ef\":\"Nenhum produto disponível para seleção\",\"M1/lXs\":\"Nenhum produto configurado para este evento.\",\"kY7XDn\":\"Nenhum produto tem entradas na lista de espera\",\"wYiAtV\":\"Sem cadastros de contas recentes\",\"UW90md\":\"Nenhum destinatário encontrado\",\"QoAi8D\":\"Sem resposta\",\"JeO7SI\":\"Sem resposta\",\"EK/G11\":\"Ainda sem respostas\",\"7J5OKy\":\"Ainda não há locais salvos\",\"wpCjcf\":\"Ainda não há locais salvos. Eles aparecerão aqui à medida que você criar eventos com endereços.\",\"mPdY6W\":\"Nenhuma sugestão\",\"3sRuiW\":\"Nenhum ingresso encontrado\",\"k2C0ZR\":\"Nenhuma data futura\",\"yM5c0q\":\"Nenhum evento futuro\",\"qpC74J\":\"Nenhum usuário encontrado\",\"8wgkoi\":\"Sem eventos vistos nos últimos 14 dias\",\"Arzxc1\":\"Sem inscrições na lista de espera\",\"n5vdm2\":\"Nenhum evento de webhook foi registrado para este endpoint ainda. Os eventos aparecerão aqui assim que forem acionados.\",\"4GhX3c\":\"Nenhum Webhook\",\"4+am6b\":\"Não, manter-me aqui\",\"4JVMUi\":\"não editadas\",\"Itw24Q\":\"Sem check-in\",\"x5+Lcz\":\"Não Registrado\",\"8n10sz\":\"Não Elegível\",\"kLvU3F\":\"Notificar os participantes e interromper as vendas\",\"t9QlBd\":\"Novembro\",\"kAREMN\":\"Número de datas a criar\",\"6u1B3O\":\"Sessão\",\"mmoE62\":\"Sessão cancelada\",\"UYWXdN\":\"Data de término da sessão\",\"k7dZT5\":\"Hora de término da sessão\",\"Opinaj\":\"Rótulo da sessão\",\"V9flmL\":\"Programação de sessões\",\"NUTUUs\":\"página de Programação de sessões\",\"AT8UKD\":\"Data de início da sessão\",\"Um8bvD\":\"Hora de início da sessão\",\"Kh3WO8\":\"Resumo da sessão\",\"byXCTu\":\"Sessões\",\"KATw3p\":\"Sessões (apenas futuras)\",\"85rTR2\":\"As sessões podem ser configuradas após a criação\",\"dzQfDY\":\"Outubro\",\"BwJKBw\":\"de\",\"9h7RDh\":\"Oferecer\",\"EfK2O6\":\"Oferecer vaga\",\"3sVRey\":\"Oferecer ingressos\",\"2O7Ybb\":\"Tempo limite da oferta\",\"1jUg5D\":\"Oferecido\",\"l+/HS6\":[\"As ofertas expiram após \",[\"timeoutHours\"],\" horas.\"],\"lQgMLn\":\"Nome do escritório ou local\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Pagamento Offline\",\"nO3VbP\":[\"À venda \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — forneça os detalhes de conexão\",\"LuZBbx\":\"Online e presencial\",\"IXuOqt\":\"Online e presencial — veja a programação\",\"w3DG44\":\"Detalhes de conexão online\",\"WjSpu5\":\"Evento online\",\"TP6jss\":\"Detalhes de conexão do evento online\",\"NdOxqr\":\"Apenas administradores da conta podem excluir ou arquivar eventos. Entre em contato com o administrador da sua conta para obter ajuda.\",\"rnoDMF\":\"Apenas administradores da conta podem excluir ou arquivar organizadores. Entre em contato com o administrador da sua conta para obter ajuda.\",\"bU7oUm\":\"Enviar apenas para pedidos com esses status\",\"M2w1ni\":\"Visível apenas com código promocional\",\"y8Bm7C\":\"Abrir check-in\",\"RLz7P+\":\"Abrir sessão\",\"cDSdPb\":\"Apelido opcional exibido nos seletores, por exemplo \\\"Sala de Conferências da Matriz\\\"\",\"HXMJxH\":\"Texto opcional para avisos legais, informações de contato ou notas de agradecimento (apenas uma linha)\",\"L565X2\":\"opções\",\"8m9emP\":\"ou adicione uma única data\",\"dSeVIm\":\"pedido\",\"c/TIyD\":\"Pedido e Ingresso\",\"H5qWhm\":\"Pedido cancelado\",\"b6+Y+n\":\"Pedido concluído\",\"x4MLWE\":\"Confirmação do Pedido\",\"CsTTH0\":\"Confirmação do pedido reenviada com sucesso\",\"ppuQR4\":\"Pedido criado\",\"0UZTSq\":\"Moeda do Pedido\",\"xtQzag\":\"Detalhes do pedido\",\"HdmwrI\":\"E-mail do Pedido\",\"bwBlJv\":\"Primeiro Nome do Pedido\",\"vrSW9M\":\"O pedido foi cancelado e reembolsado. O proprietário do pedido foi notificado.\",\"rzw+wS\":\"Titulares de pedidos\",\"oI/hGR\":\"ID do Pedido\",\"Pc729f\":\"Pedido Aguardando Pagamento Offline\",\"F4NXOl\":\"Sobrenome do Pedido\",\"RQCXz6\":\"Limites de Pedido\",\"SO9AEF\":\"Limites de pedido definidos\",\"5RDEEn\":\"Idioma do Pedido\",\"vu6Arl\":\"Pedido marcado como pago\",\"sLbJQz\":\"Pedido não encontrado\",\"kvYpYu\":\"Pedido não encontrado\",\"i8VBuv\":\"Número do Pedido\",\"eJ8SvM\":\"Número do pedido, data, email do comprador\",\"FaPYw+\":\"Proprietário do pedido\",\"eB5vce\":\"Proprietários de pedidos com um produto específico\",\"CxLoxM\":\"Proprietários de pedidos com produtos\",\"DoH3fD\":\"Pagamento do Pedido Pendente\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Status dos pedidos\",\"oW5877\":\"Total do Pedido\",\"e7eZuA\":\"Pedido atualizado\",\"1SQRYo\":\"Pedido atualizado com sucesso\",\"KndP6g\":\"URL do Pedido\",\"3NT0Ck\":\"O pedido foi cancelado\",\"V5khLm\":\"pedidos\",\"sd5IMt\":\"Pedidos concluídos\",\"5It1cQ\":\"Pedidos exportados\",\"tlKX/S\":\"Pedidos que abrangem várias datas serão sinalizados para revisão manual.\",\"UQ0ACV\":\"Total de pedidos\",\"B/EBQv\":\"Pedidos:\",\"qtGTNu\":\"Contas orgânicas\",\"ucgZ0o\":\"Organização\",\"P/JHA4\":\"Organizador arquivado com sucesso\",\"S3CZ5M\":\"Painel do organizador\",\"GzjTd0\":\"Organizador excluído com sucesso\",\"Uu0hZq\":\"Email do organizador\",\"Gy7BA3\":\"Endereço de email do organizador\",\"SQqJd8\":\"Organizador não encontrado\",\"HF8Bxa\":\"Organizador restaurado com sucesso\",\"wpj63n\":\"Configurações do organizador\",\"o1my93\":\"Falha ao atualizar o status do organizador. Por favor, tente novamente mais tarde.\",\"rLHma1\":\"Status do organizador atualizado\",\"LqBITi\":\"Modelo do organizador/padrão será usado\",\"q4zH+l\":\"Organizadores\",\"/IX/7x\":\"Outro\",\"RsiDDQ\":\"Outras Listas (Ingresso Não Incluído)\",\"aDfajK\":\"Ar livre\",\"qMASRF\":\"Mensagens enviadas\",\"iCOVQO\":\"Substituir\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Substituir preço\",\"cnVIpl\":\"Substituição removida\",\"6/dCYd\":\"Visão geral\",\"6WdDG7\":\"Página\",\"8uqsE5\":\"Página não disponível mais\",\"QkLf4H\":\"URL da página\",\"sF+Xp9\":\"Visualizações de página\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Contas pagas\",\"5F7SYw\":\"Reembolso parcial\",\"fFYotW\":[\"Reembolsado parcialmente: \",[\"0\"]],\"i8day5\":\"Passar taxa para o comprador\",\"k4FLBQ\":\"Passar para o comprador\",\"Ff0Dor\":\"Passado\",\"BFjW8X\":\"Em atraso\",\"xTPjSy\":\"Eventos passados\",\"/l/ckQ\":\"Cole a URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"OZK07J\":\"Pague para desbloquear\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data de pagamento\",\"ENEPLY\":\"Método de pagamento\",\"8Lx2X7\":\"Pagamento recebido\",\"fx8BTd\":\"Pagamentos não disponíveis\",\"C+ylwF\":\"Repasses\",\"UbRKMZ\":\"Pendente\",\"UkM20g\":\"Revisão pendente\",\"dPYu1F\":\"Por participante\",\"mQV/nJ\":\"por min\",\"VlXNyK\":\"Por pedido\",\"hauDFf\":\"Por ingresso\",\"mnF83a\":\"Taxa Percentual\",\"TNLuRD\":\"Taxa percentual (%)\",\"MixU2P\":\"A porcentagem deve estar entre 0 e 100\",\"MkuVAZ\":\"Porcentagem do valor da transação\",\"/Bh+7r\":\"Desempenho\",\"fIp56F\":\"Excluir permanentemente este evento e todos os seus dados associados.\",\"nJeeX7\":\"Excluir permanentemente este organizador e todos os seus eventos.\",\"wfCTgK\":\"Remover esta data permanentemente\",\"6kPk3+\":\"Informações pessoais\",\"zmwvG2\":\"Telefone\",\"SdM+Q1\":\"Escolha um local\",\"tSR/oe\":\"Escolha uma data de término\",\"e8kzpp\":\"Escolha pelo menos um dia do mês\",\"35C8QZ\":\"Escolha pelo menos um dia da semana\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Feito\",\"wBJR8i\":\"Planejando um evento?\",\"J3lhKT\":\"Taxa da plataforma\",\"RD51+P\":[\"Taxa da plataforma de \",[\"0\"],\" deduzida do seu pagamento\"],\"br3Y/y\":\"Taxas da plataforma\",\"3buiaw\":\"Relatório de taxas da plataforma\",\"kv9dM4\":\"Receita da plataforma\",\"PJ3Ykr\":\"Verifique seu ingresso para o horário atualizado. Seus ingressos continuam válidos — nenhuma ação é necessária, a menos que os novos horários não funcionem para você. Responda a este e-mail se tiver alguma dúvida.\",\"OtjenF\":\"Por favor, insira um endereço de e-mail válido\",\"jEw0Mr\":\"Por favor, insira uma URL válida\",\"n8+Ng/\":\"Por favor, introduza o código de 5 dígitos\",\"r+lQXT\":\"Por favor, digite seu número de IVA\",\"Dvq0wf\":\"Por favor, forneça uma imagem.\",\"2cUopP\":\"Por favor, reinicie o processo de compra.\",\"GoXxOA\":\"Por favor, selecione uma data e horário\",\"8KmsFa\":\"Por favor, selecione um intervalo de datas\",\"EFq6EG\":\"Por favor, selecione uma imagem.\",\"fuwKpE\":\"Por favor, tente novamente.\",\"klWBeI\":\"Por favor, aguarde antes de solicitar outro código\",\"hfHhaa\":\"Por favor, aguarde enquanto preparamos os seus afiliados para exportação...\",\"o+tJN/\":\"Por favor, aguarde enquanto preparamos seus participantes para exportação...\",\"+5Mlle\":\"Por favor, aguarde enquanto preparamos seus pedidos para exportação...\",\"trnWaw\":\"Polonês\",\"luHAJY\":\"Eventos populares (Últimos 14 dias)\",\"p/78dY\":\"Posição\",\"TjX7xL\":\"Mensagem Pós-Checkout\",\"OESu7I\":\"Evite sobrevenda compartilhando estoque entre vários tipos de ingresso.\",\"NgVUL2\":\"Pré-visualizar formulário de checkout\",\"cs5muu\":\"Pré-visualizar página do evento\",\"+4yRWM\":\"Preço do ingresso\",\"Jm2AC3\":\"Faixa de preço\",\"a5jvSX\":\"Faixas de Preço\",\"ReihZ7\":\"Visualizar Impressão\",\"JnuPvH\":\"Imprimir Ingresso\",\"tYF4Zq\":\"Imprimir para PDF\",\"LcET2C\":\"Política de Privacidade\",\"8z6Y5D\":\"Processar reembolso\",\"JcejNJ\":\"Processando pedido\",\"EWCLpZ\":\"Produto criado\",\"XkFYVB\":\"Produto excluído\",\"YMwcbR\":\"Detalhamento das vendas de produtos, receitas e impostos\",\"ls0mTC\":\"As configurações do produto não podem ser editadas em datas canceladas.\",\"2339ej\":\"Configurações do produto salvas com sucesso\",\"ldVIlB\":\"Produto atualizado\",\"CP3D8G\":\"Progresso\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionais e detalhamento de descontos\",\"tZqL0q\":\"códigos promocionais\",\"oCHiz3\":\"Códigos promocionais\",\"uEhdRh\":\"Apenas Promocional\",\"dLm8V5\":\"E-mails promocionais podem resultar em suspensão da conta\",\"XoEWtl\":\"Forneça pelo menos um campo de endereço para o novo local.\",\"2W/7Gz\":\"Forneça as seguintes informações antes da próxima revisão do Stripe para manter os repasses fluindo.\",\"aemBRq\":\"Provedor\",\"EEYbdt\":\"Publicar\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Comprado\",\"JunetL\":\"Comprador\",\"phmeUH\":\"Email do comprador\",\"ywR4ZL\":\"Check-in com código QR\",\"oWXNE5\":\"Qtd.\",\"biEyJ4\":\"Respostas\",\"k/bJj0\":\"Perguntas reordenadas\",\"b24kPi\":\"Fila\",\"lTPqpM\":\"Dica rápida\",\"fqDzSu\":\"Taxa\",\"mnUGVC\":\"Limite de taxa excedido. Por favor, tente novamente mais tarde.\",\"t41hVI\":\"Reoferecer vaga\",\"TNclgc\":\"Reativar esta data? Ela será reaberta para vendas futuras.\",\"uqoRbb\":\"Análises em tempo real\",\"xzRvs4\":[\"Receber atualizações de produtos do \",[\"0\"],\".\"],\"pLXbi8\":\"Cadastros de contas recentes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Participantes recentes\",\"qhfiwV\":\"Check-ins recentes\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Pedidos recentes\",\"7hPBBn\":\"destinatário\",\"jp5bq8\":\"destinatários\",\"yPrbsy\":\"Destinatários\",\"E1F5Ji\":\"Os destinatários ficam disponíveis após o envio da mensagem\",\"wuhHPE\":\"Recorrente\",\"asLqwt\":\"Evento recorrente\",\"D0tAMe\":\"Eventos recorrentes\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecionando para o Stripe...\",\"pnoTN5\":\"Contas de indicação\",\"ACKu03\":\"Atualizar Visualização\",\"vuFYA6\":\"Reembolsar todos os pedidos destas datas\",\"4cRUK3\":\"Reembolsar todos os pedidos desta data\",\"fKn/k6\":\"Valor do reembolso\",\"qY4rpA\":\"Reembolso falhou\",\"TspTcZ\":\"Reembolso emitido\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configurações regionais\",\"5tl0Bp\":\"Perguntas de registro\",\"ZNo5k1\":\"Restante\",\"EMnuA4\":\"Lembrete agendado\",\"Bjh87R\":\"Remover rótulo de todas as datas\",\"KkJtVK\":\"Reabrir para novas vendas\",\"XJwWJp\":\"Reabrir esta data para novas vendas? Os ingressos cancelados anteriormente não serão restaurados — os participantes afetados permanecem cancelados e os reembolsos já emitidos não serão revertidos.\",\"bAwDQs\":\"Repetir a cada\",\"CQeZT8\":\"Relatório não encontrado\",\"JEPMXN\":\"Solicitar novo link\",\"TMLAx2\":\"Obrigatório\",\"mdeIOH\":\"Reenviar código\",\"sQxe68\":\"Reenviar confirmação\",\"bxoWpz\":\"Reenviar e-mail de confirmação\",\"G42SNI\":\"Reenviar e-mail\",\"TTpXL3\":[\"Reenviar em \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Reenviar ingresso\",\"Uwsg2F\":\"Reservado\",\"8wUjGl\":\"Reservado até\",\"a5z8mb\":\"Redefinir para o preço base\",\"kCn6wb\":\"Redefinindo...\",\"404zLK\":\"Nome do local ou estabelecimento resolvido\",\"ZlCDf+\":\"Resposta\",\"bsydMp\":\"Detalhes da resposta\",\"yKu/3Y\":\"Restaurar\",\"RokrZf\":\"Restaurar evento\",\"/JyMGh\":\"Restaurar organizador\",\"HFvFRb\":\"Restaure este evento para torná-lo visível novamente.\",\"DDIcqy\":\"Restaure este organizador e torne-o ativo novamente.\",\"mO8KLE\":\"resultados\",\"6gRgw8\":\"Tentar novamente\",\"1BG8ga\":\"Tentar tudo novamente\",\"rDC+T6\":\"Tentar trabalho novamente\",\"CbnrWb\":\"Voltar ao evento\",\"mdQ0zb\":\"Locais reutilizáveis para seus eventos. Locais criados pelo autocompletar são salvos aqui automaticamente.\",\"XFOPle\":\"Reutilizar\",\"1Zehp4\":\"Reutilize uma conexão Stripe de outro organizador desta conta.\",\"Oo/PLb\":\"Resumo de Receita\",\"O/8Ceg\":\"Receita hoje\",\"CfuueU\":\"Revogar oferta\",\"RIgKv+\":\"Executar até uma data específica\",\"JYRqp5\":\"Sáb\",\"dFFW9L\":[\"Venda encerrada \",[\"0\"]],\"loCKGB\":[\"Venda termina \",[\"0\"]],\"wlfBad\":\"Período de Venda\",\"qi81Jg\":\"As datas do período de venda se aplicam a todas as datas da sua programação. Para controlar preços e disponibilidade em datas individuais, use as substituições na <0>página de Programação de Sessões.\",\"5CDM6r\":\"Período de venda definido\",\"ftzaMf\":\"Período de venda, limites de pedido, visibilidade\",\"zpekWp\":[\"Venda começa \",[\"0\"]],\"mUv9U4\":\"Vendas\",\"9KnRdL\":\"As vendas estão pausadas\",\"JC3J0k\":\"Detalhamento de vendas, presença e check-in por sessão\",\"3VnlS9\":\"Vendas, pedidos e métricas de desempenho para todos os eventos\",\"3Q1AWe\":\"Vendas:\",\"LeuERW\":\"Igual ao evento\",\"B4nE3N\":\"Preço do ingresso de exemplo\",\"8BRPoH\":\"Local Exemplo\",\"PiK6Ld\":\"Sáb\",\"+5kO8P\":\"Sábado\",\"zJiuDn\":\"Salvar substituição de taxa\",\"NB8Uxt\":\"Salvar programação\",\"KZrfYJ\":\"Salvar links sociais\",\"9Y3hAT\":\"Salvar Modelo\",\"C8ne4X\":\"Salvar Design do Ingresso\",\"cTI8IK\":\"Salvar configurações de IVA\",\"6/TNCd\":\"Salvar Configurações de IVA\",\"4RvD9q\":\"Local salvo\",\"cgw0cL\":\"Locais salvos\",\"lvSrsT\":\"Locais salvos\",\"Fbqm/I\":\"Salvar uma substituição cria uma configuração dedicada para este organizador se ele estiver atualmente no padrão do sistema.\",\"I+FvbD\":\"Escanear\",\"0zd6Nm\":\"Leia um ingresso para fazer check-in do participante\",\"bQG7Qk\":\"Ingressos lidos aparecerão aqui\",\"WDYSLJ\":\"Modo leitor\",\"gmB6oO\":\"Programação\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Programação criada com sucesso\",\"YP7frt\":\"A programação termina em\",\"QS1Nla\":\"Agendar para depois\",\"NAzVVw\":\"Agendar mensagem\",\"Fz09JP\":\"A programação começa em\",\"4ba0NE\":\"Agendado\",\"qcP/8K\":\"Horário agendado\",\"A1taO8\":\"Buscar\",\"ftNXma\":\"Pesquisar afiliados...\",\"VMU+zM\":\"Buscar participantes\",\"VY+Bdn\":\"Pesquisar por nome da conta ou e-mail...\",\"VX+B3I\":\"Pesquisar por título do evento ou organizador...\",\"R0wEyA\":\"Pesquisar por nome do trabalho ou exceção...\",\"VT+urE\":\"Pesquisar por nome ou e-mail...\",\"GHdjuo\":\"Pesquisar por nome, e-mail ou conta...\",\"4mBFO7\":\"Buscar por nome, n.º pedido, n.º ingresso ou email\",\"20ce0U\":\"Pesquisar por ID do pedido, nome do cliente ou e-mail...\",\"4DSz7Z\":\"Pesquisar por assunto, evento ou conta...\",\"nQC7Z9\":\"Pesquisar datas...\",\"iRtEpV\":\"Pesquisar datas…\",\"JRM7ao\":\"Pesquisar um endereço\",\"BWF1kC\":\"Pesquisar mensagens...\",\"3aD3GF\":\"Sazonal\",\"ku//5b\":\"Segundo\",\"Mck5ht\":\"Checkout Seguro\",\"s7tXqF\":\"Ver programação\",\"JFap6u\":\"Ver o que o Stripe ainda precisa\",\"p7xUrt\":\"Selecione uma categoria\",\"hTKQwS\":\"Selecione uma data e horário\",\"e4L7bF\":\"Selecione uma mensagem para ver seu conteúdo\",\"zPRPMf\":\"Selecionar um nível\",\"uqpVri\":\"Selecione um horário\",\"BFRSTT\":\"Selecionar Conta\",\"wgNoIs\":\"Selecionar tudo\",\"mCB6Je\":\"Selecionar tudo\",\"aCEysm\":[\"Selecionar todas em \",[\"0\"]],\"a6+167\":\"Selecionar um evento\",\"CFbaPk\":\"Selecione o grupo de participantes\",\"88a49s\":\"Selecionar câmera\",\"tVW/yo\":\"Selecionar moeda\",\"SJQM1I\":\"Selecionar data\",\"n9ZhRa\":\"Selecione data e hora de término\",\"gTN6Ws\":\"Selecionar hora de fim\",\"0U6E9W\":\"Selecionar categoria do evento\",\"j9cPeF\":\"Selecionar tipos de eventos\",\"ypTjHL\":\"Selecionar sessão\",\"KizCK7\":\"Selecione data e hora de início\",\"dJZTv2\":\"Selecionar hora de início\",\"x8XMsJ\":\"Selecione o nível de mensagens para esta conta. Isso controla os limites de mensagens e permissões de links.\",\"aT3jZX\":\"Selecionar fuso horário\",\"TxfvH2\":\"Selecione quais participantes devem receber esta mensagem\",\"Ropvj0\":\"Selecione quais eventos acionarão este webhook\",\"+6YAwo\":\"selecionadas\",\"ylXj1N\":\"Selecionado\",\"uq3CXQ\":\"Esgote seu evento.\",\"j9b/iy\":\"Vendendo rápido 🔥\",\"73qYgo\":\"Enviar como teste\",\"HMAqFK\":\"Enviar e-mails para participantes, titulares de ingressos ou proprietários de pedidos. As mensagens podem ser enviadas imediatamente ou agendadas para mais tarde.\",\"22Itl6\":\"Envie-me uma cópia\",\"NpEm3p\":\"Enviar agora\",\"nOBvex\":\"Envie dados de pedidos e participantes em tempo real para seus sistemas externos.\",\"1lNPhX\":\"Enviar email de notificação de reembolso\",\"eaUTwS\":\"Enviar link de redefinição\",\"5cV4PY\":\"Enviar para todas as sessões ou escolher uma específica\",\"QEQlnV\":\"Envie sua primeira mensagem\",\"3nMAVT\":\"Enviando em 2d 4h\",\"IoAuJG\":\"Enviando...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Enviado aos participantes quando uma data agendada é cancelada\",\"SPdzrs\":\"Enviado aos clientes quando fazem um pedido\",\"LxSN5F\":\"Enviado a cada participante com detalhes do ingresso\",\"hgvbYY\":\"Setembro\",\"5sN96e\":\"Sessão cancelada\",\"89xaFU\":\"Defina as configurações padrão de taxa da plataforma para novos eventos criados sob este organizador.\",\"eXssj5\":\"Definir configurações padrão para novos eventos criados sob este organizador.\",\"uPe5p8\":\"Defina a duração de cada data\",\"xNsRxU\":\"Definir número de datas\",\"ODuUEi\":\"Definir ou limpar o rótulo da data\",\"buHACR\":\"Defina o horário de término de cada data para ser esta duração após seu horário de início.\",\"TaeFgl\":\"Definir como ilimitado (remover limite)\",\"pd6SSe\":\"Configure uma programação recorrente para criar datas automaticamente ou adicione-as uma por uma.\",\"s0FkEx\":\"Configure listas de check-in para diferentes entradas, sessões ou dias.\",\"TaWVGe\":\"Configurar pagamentos\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Configurar programação\",\"xMO+Ao\":\"Configure a sua organização\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Configure sua programação\",\"ETC76A\":\"Defina, altere ou remova o local da data ou os detalhes online\",\"C3htzi\":\"Configuração atualizada\",\"Ohn74G\":\"Configuração e design\",\"1W5XyZ\":\"A configuração leva apenas alguns minutos — você não precisa ter uma conta Stripe. O Stripe cuida de cartões, carteiras, métodos de pagamento regionais e proteção contra fraude para que você possa focar no seu evento.\",\"GG7qDw\":\"Partilhar link de afiliado\",\"hL7sDJ\":\"Compartilhar página do organizador\",\"jy6QDF\":\"Gestão de capacidade compartilhada\",\"jDNHW4\":\"Deslocar horários\",\"tPfIaW\":[\"Horários deslocados para \",[\"count\"],\" data(s)\"],\"WwlM8F\":\"Mostrar opções avançadas\",\"cMW+gm\":[\"Mostrar todas as plataformas (\",[\"0\"],\" com valores)\"],\"wXi9pZ\":\"Mostrar notas à equipe sem login\",\"UVPI5D\":\"Mostrar menos plataformas\",\"Eu/N/d\":\"Mostrar caixa de seleção de opt-in de marketing\",\"SXzpzO\":\"Mostrar caixa de seleção de opt-in de marketing por padrão\",\"57tTk5\":\"Mostrar mais datas\",\"b33PL9\":\"Mostrar mais plataformas\",\"Eut7p9\":\"Mostrar detalhes à equipe sem login\",\"+RoWKN\":\"Mostrar respostas à equipe sem login\",\"t1LIQW\":[\"Mostrando \",[\"0\"],\" de \",[\"totalRows\"],\" registros\"],\"E717U9\":[\"Mostrando \",[\"0\"],\"–\",[\"1\"],\" de \",[\"2\"]],\"5rzhBQ\":[\"Mostrando \",[\"MAX_VISIBLE\"],\" de \",[\"totalAvailable\"],\" datas. Digite para pesquisar.\"],\"WSt3op\":[\"Mostrando as primeiras \",[\"0\"],\" — as \",[\"1\"],\" sessão(ões) restante(s) ainda serão alvo quando a mensagem for enviada.\"],\"OJLTEL\":\"Mostrado à equipe na primeira vez que abre a página.\",\"jVRHeq\":\"Cadastrado\",\"5C7J+P\":\"Evento único\",\"E//btK\":\"Ignorar datas editadas manualmente\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Links sociais\",\"j/TOB3\":\"Links sociais e site\",\"s9KGXU\":\"Vendido\",\"iACSrw\":\"Alguns detalhes estão ocultos do acesso público. Faça login para ver tudo.\",\"KTxc6k\":\"Algo deu errado, tente novamente ou entre em contato com o suporte se o problema persistir\",\"lkE00/\":\"Algo deu errado. Por favor, tente novamente mais tarde.\",\"wdxz7K\":\"Fonte\",\"fDG2by\":\"Espiritualidade\",\"oPaRES\":\"Divida o check-in por dia, área ou tipo de ingresso. Compartilhe o link com a equipe — sem precisar de conta.\",\"7JFNej\":\"Desporto\",\"/bfV1Y\":\"Instruções para a equipe\",\"tXkhj/\":\"Início\",\"JcQp9p\":\"Data e hora de início\",\"0m/ekX\":\"Data e hora de início\",\"izRfYP\":\"A data de início é obrigatória\",\"tuO4fV\":\"Data de início da sessão\",\"2R1+Rv\":\"Horário de início do evento\",\"2Olov3\":\"Hora de início da sessão\",\"n9ZrDo\":\"Comece a digitar um local ou endereço...\",\"qeFVhN\":[\"Começa em \",[\"diffDays\"],\" dias\"],\"AOqtxN\":[\"Começa em \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Começa em \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Começa em \",[\"seconds\"],\"s\"],\"NqChgF\":\"Começa amanhã\",\"2NbyY/\":\"Estatísticas\",\"GVUxAX\":\"As estatísticas são baseadas na data de criação da conta\",\"29Hx9U\":\"Estatísticas\",\"5ia+r6\":\"Ainda pendente\",\"wuV0bK\":\"Parar Personificação\",\"s/KaDb\":\"Stripe conectado\",\"Bk06QI\":\"Stripe conectado\",\"akZMv8\":[\"Conexão Stripe copiada de \",[\"0\"],\".\"],\"v0aRY1\":\"O Stripe não retornou um link de configuração. Tente novamente.\",\"aKtF0O\":\"Stripe não conectado\",\"9i0++A\":\"ID de pagamento Stripe\",\"R1lIMV\":\"O Stripe precisará de mais alguns detalhes em breve\",\"FzcCHA\":\"O Stripe vai te guiar por algumas perguntas rápidas para concluir a configuração.\",\"eYbd7b\":\"Dom\",\"ii0qn/\":\"Assunto é obrigatório\",\"M7Uapz\":\"Assunto aparecerá aqui\",\"6aXq+t\":\"Assunto:\",\"JwTmB6\":\"Produto duplicado com sucesso\",\"WUOCgI\":\"Vaga oferecida com sucesso\",\"IvxA4G\":[\"Ingressos oferecidos com sucesso a \",[\"count\"],\" pessoas\"],\"kKpkzy\":\"Ingressos oferecidos com sucesso a 1 pessoa\",\"Zi3Sbw\":\"Removido da lista de espera com sucesso\",\"RuaKfn\":\"Endereço atualizado com sucesso\",\"kzx0uD\":\"Padrões de Evento Atualizados com Sucesso\",\"5n+Wwp\":\"Organizador atualizado com sucesso\",\"DMCX/I\":\"Configurações padrão de taxa da plataforma atualizadas com sucesso\",\"URUYHc\":\"Configurações de taxa da plataforma atualizadas com sucesso\",\"0Dk/l8\":\"Configurações de SEO atualizadas com sucesso\",\"S8Tua9\":\"Configurações atualizadas com sucesso\",\"MhOoLQ\":\"Links sociais atualizados com sucesso\",\"CNSSfp\":\"Configurações de rastreamento atualizadas com sucesso\",\"kj7zYe\":\"Webhook atualizado com sucesso\",\"dXoieq\":\"Resumo\",\"/RfJXt\":[\"Festival de Música de Verão \",[\"0\"]],\"CWOPIK\":\"Festival de Música de Verão 2025\",\"D89zck\":\"Dom\",\"DBC3t5\":\"Domingo\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Trocar organizador\",\"9YHrNC\":\"Padrão do Sistema\",\"lruQkA\":\"Toque na tela para continuar\",\"TJUrME\":[\"Direcionando participantes em \",[\"0\"],\" sessões selecionadas.\"],\"yT6dQ8\":\"Impostos coletados agrupados por tipo de imposto e evento\",\"Ye321X\":\"Nome do Imposto\",\"WyCBRt\":\"Resumo de Impostos\",\"GkH0Pq\":\"Impostos e taxas aplicados\",\"Rwiyt2\":\"Impostos configurados\",\"iQZff7\":\"Impostos, Taxas, Visibilidade, Período de Venda, Destaque de Produto e Limites de Pedido\",\"SXvRWU\":\"Colaboração em equipe\",\"vlf/In\":\"Tecnologia\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Conte às pessoas o que esperar do seu evento\",\"NiIUyb\":\"Conte-nos sobre seu evento\",\"DovcfC\":\"Fale-nos sobre a sua organização. Esta informação será exibida nas páginas dos seus eventos.\",\"69GWRq\":\"Informe com que frequência seu evento se repete e criaremos todas as datas para você.\",\"mXPbwY\":\"Informe seu status de registro de IVA/ICMS para aplicarmos o tratamento correto às taxas da plataforma.\",\"7wtpH5\":\"Modelo Ativo\",\"QHhZeE\":\"Modelo criado com sucesso\",\"xrWdPR\":\"Modelo excluído com sucesso\",\"G04Zjt\":\"Modelo salvo com sucesso\",\"xowcRf\":\"Termos de serviço\",\"6K0GjX\":\"O texto pode ser difícil de ler\",\"u0F1Ey\":\"Qui\",\"nm3Iz/\":\"Obrigado por participar!\",\"pYwj0k\":\"Obrigado,\",\"k3IitN\":\"Está encerrado\",\"KfmPRW\":\"A cor de fundo da página. Ao usar imagem de capa, isso é aplicado como uma sobreposição.\",\"MDNyJz\":\"O código irá expirar em 10 minutos. Verifique a sua pasta de spam se não vir o email.\",\"AIF7J2\":\"A moeda em que a taxa fixa é definida. Será convertida para a moeda do pedido no checkout.\",\"MJm4Tq\":\"A moeda do pedido\",\"cDHM1d\":\"O endereço de e-mail foi alterado. O participante receberá um novo ingresso no endereço de e-mail atualizado.\",\"I/NNtI\":\"O local do evento\",\"tXadb0\":\"O evento que você está procurando não está disponível no momento. Ele pode ter sido removido, expirado ou a URL pode estar incorreta.\",\"5fPdZe\":\"A primeira data a partir da qual esta programação será gerada.\",\"EBzPwC\":\"O endereço completo do evento\",\"sxKqBm\":\"O valor total do pedido será reembolsado para o método de pagamento original do cliente.\",\"KgDp6G\":\"O link que você está tentando acessar expirou ou não é mais válido. Por favor, verifique seu e-mail para obter um link atualizado para gerenciar seu pedido.\",\"5OmEal\":\"O idioma do cliente\",\"Np4eLs\":[\"O máximo é de \",[\"MAX_PREVIEW\"],\" sessões. Por favor, reduza o intervalo de datas, a frequência ou o número de sessões por dia.\"],\"sYLeDq\":\"O organizador que você está procurando não foi encontrado. A página pode ter sido movida, excluída ou o URL está incorreto.\",\"PCr4zw\":\"A substituição é registrada no log de auditoria do pedido.\",\"C4nQe5\":\"A taxa da plataforma é adicionada ao preço do ingresso. Os compradores pagam mais, mas você recebe o preço total do ingresso.\",\"HxxXZO\":\"A cor primária da marca usada para botões e destaques\",\"z0KrIG\":\"O horário agendado é obrigatório\",\"EWErQh\":\"O horário agendado deve ser no futuro\",\"UNd0OU\":[\"A sessão de \\\"\",[\"title\"],\"\\\" originalmente agendada para \",[\"0\"],\" foi reagendada.\"],\"DEcpfp\":\"O corpo do template contém sintaxe Liquid inválida. Por favor, corrija e tente novamente.\",\"injXD7\":\"O número de IVA não pôde ser validado. Verifique o número e tente novamente.\",\"A4UmDy\":\"Teatro\",\"tDwYhx\":\"Tema e cores\",\"O7g4eR\":\"Não há datas futuras para este evento\",\"HrIl0p\":[\"Não há lista de check-in específica para esta data. A lista \\\"\",[\"0\"],\"\\\" registra participantes em todas as datas — a equipe escaneando um ingresso de outra data ainda terá sucesso.\"],\"dt3TwA\":\"Estes são os preços e quantidades padrão para todas as datas. As datas de venda dos níveis se aplicam globalmente. Você pode substituir preços e quantidades para datas individuais na <0>página de Programação de Sessões.\",\"062KsE\":\"Esses detalhes são exibidos no ingresso do participante e no resumo do pedido apenas para esta data.\",\"5Eu+tn\":\"Esses detalhes só serão exibidos se o pedido for concluído com sucesso.\",\"jQjwR+\":\"Esses detalhes substituirão qualquer local existente nas datas afetadas e serão exibidos nos ingressos dos participantes.\",\"QP3gP+\":\"Estas configurações se aplicam apenas ao código de incorporação copiado e não serão armazenadas.\",\"HirZe8\":\"Estes modelos serão usados como padrão para todos os eventos em sua organização. Eventos individuais podem substituir estes modelos por suas próprias versões personalizadas.\",\"lzAaG5\":\"Estes modelos substituirão os padrões do organizador apenas para este evento. Se nenhum modelo personalizado for definido aqui, o modelo do organizador será usado.\",\"UlykKR\":\"Terceiro\",\"wkP5FM\":\"Isso se aplica a todas as datas correspondentes do evento, incluindo datas que não estão visíveis no momento. Os participantes registrados em qualquer uma dessas datas estarão acessíveis pelo compositor de mensagens assim que a atualização terminar.\",\"SOmGDa\":\"Esta lista de check-in está vinculada a uma sessão cancelada, portanto não pode mais ser usada para check-ins.\",\"XBNC3E\":\"Este código será usado para rastrear vendas. Apenas são permitidas letras, números, hífenes e underscores.\",\"AaP0M+\":\"Esta combinação de cores pode ser difícil de ler para alguns usuários\",\"o1phK/\":[\"Esta data tem \",[\"orderCount\"],\" pedido(s) que serão afetados.\"],\"F/UtGt\":\"Esta data foi cancelada. Você ainda pode excluí-la para removê-la permanentemente.\",\"BLZ7pX\":\"Esta data está no passado. Ela será criada, mas não ficará visível para os participantes em datas futuras.\",\"7IIY0z\":\"Esta data está marcada como esgotada.\",\"bddWMP\":\"Esta data não está mais disponível. Por favor, selecione outra data.\",\"RzEvf5\":\"Este evento terminou\",\"YClrdK\":\"Este evento ainda não foi publicado\",\"dFJnia\":\"Este é o nome do seu organizador que será exibido aos seus usuários.\",\"vt7jiq\":\"Esta é a única vez que o segredo de assinatura será exibido. Por favor, copie-o agora e guarde-o em segurança.\",\"L7dIM7\":\"Este link é inválido ou expirou.\",\"MR5ygV\":\"Este link não é mais válido\",\"9LEqK0\":\"Este nome é visível para os usuários finais\",\"QdUMM9\":\"Esta sessão está na capacidade máxima\",\"j5FdeA\":\"Este pedido está sendo processado.\",\"sjNPMw\":\"Este pedido foi abandonado. Você pode iniciar um novo pedido a qualquer momento.\",\"OhCesD\":\"Este pedido foi cancelado. Você pode iniciar um novo pedido a qualquer momento.\",\"lyD7rQ\":\"Este perfil de organizador ainda não foi publicado\",\"9b5956\":\"Esta visualização mostra como seu e-mail ficará com dados de amostra. E-mails reais usarão valores reais.\",\"uM9Alj\":\"Este produto está destacado na página do evento\",\"RqSKdX\":\"Este produto está esgotado\",\"W12OdJ\":\"Este relatório é apenas para fins informativos. Sempre consulte um profissional de impostos antes de usar esses dados para fins contábeis ou fiscais. Por favor, verifique com seu painel do Stripe, pois o Hi.Events pode não ter dados históricos.\",\"0Ew0uk\":\"Este ingresso acabou de ser escaneado. Aguarde antes de escanear novamente.\",\"FYXq7k\":[\"Isto afetará \",[\"loadedAffectedCount\"],\" data(s).\"],\"kvpxIU\":\"Isso será usado para notificações e comunicação com seus usuários.\",\"rhsath\":\"Isto não será visível para os clientes, mas ajuda-o a identificar o afiliado.\",\"hV6FeJ\":\"Ritmo\",\"+FjWgX\":\"Qui\",\"kkDQ8m\":\"Quinta-feira\",\"0GSPnc\":\"Design do Ingresso\",\"EZC/Cu\":\"Design do ingresso salvo com sucesso\",\"bbslmb\":\"Designer de ingressos\",\"1BPctx\":\"Ingresso para\",\"bgqf+K\":\"E-mail do portador do ingresso\",\"oR7zL3\":\"Nome do portador do ingresso\",\"HGuXjF\":\"Portadores de ingressos\",\"CMUt3Y\":\"Titulares de ingressos\",\"awHmAT\":\"ID do ingresso\",\"6czJik\":\"Logotipo do Ingresso\",\"OkRZ4Z\":\"Nome do Ingresso\",\"t79rDv\":\"Ingresso não encontrado\",\"6tmWch\":\"Ingresso ou produto\",\"1tfWrD\":\"Visualização do ingresso para\",\"KnjoUA\":\"Preço do ingresso\",\"tGCY6d\":\"Preço do Ingresso\",\"pGZOcL\":\"Ingresso reenviado com sucesso\",\"o02GZM\":\"As vendas de ingressos para este evento foram encerradas\",\"8jLPgH\":\"Tipo de Ingresso\",\"X26cQf\":\"URL do Ingresso\",\"8qsbZ5\":\"Bilheteria e vendas\",\"zNECqg\":\"ingressos\",\"6GQNLE\":\"Ingressos\",\"NRhrIB\":\"Ingressos e produtos\",\"OrWHoZ\":\"Os ingressos são oferecidos automaticamente aos clientes na lista de espera quando há disponibilidade.\",\"EUnesn\":\"Ingressos disponíveis\",\"AGRilS\":\"Ingressos Vendidos\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Horário\",\"dMtLDE\":\"até\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar seus limites, entre em contato conosco em\",\"ecUA8p\":\"Hoje\",\"W428WC\":\"Alternar colunas\",\"BRMXj0\":\"Amanhã\",\"UBSG1X\":\"Melhores organizadores (Últimos 14 dias)\",\"3sZ0xx\":\"Total de Contas\",\"EaAPbv\":\"Valor total pago\",\"SMDzqJ\":\"Total de Participantes\",\"orBECM\":\"Total Coletado\",\"k5CU8c\":\"Total de inscrições\",\"4B7oCp\":\"Taxa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total de Usuários\",\"oJjplO\":\"Visualizações totais\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Acompanhe o crescimento e desempenho da conta por fonte de atribuição\",\"YwKzpH\":\"Rastreamento e Análises\",\"uKOFO5\":\"Verdadeiro se pagamento offline\",\"9GsDR2\":\"Verdadeiro se pagamento pendente\",\"GUA0Jy\":\"Tente outro termo ou filtro\",\"2P/OWN\":\"Tente ajustar seus filtros para ver mais datas.\",\"ouM5IM\":\"Tentar outro e-mail\",\"3DZvE7\":\"Experimente Hi.Events Grátis\",\"7P/9OY\":\"Ter\",\"vq2WxD\":\"Ter\",\"G3myU+\":\"Terça-feira\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desativar som\",\"KUOhTy\":\"Ativar som\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Digite \\\"excluir\\\" para confirmar\",\"XxecLm\":\"Tipo de ingresso\",\"IrVSu+\":\"Não foi possível duplicar o produto. Por favor, verifique seus dados\",\"Vx2J6x\":\"Não foi possível buscar participante\",\"h0dx5e\":\"Não foi possível entrar na lista de espera\",\"DaE0Hg\":\"Não foi possível carregar os detalhes do participante.\",\"GlnD5Y\":\"Não foi possível carregar os produtos para esta data. Por favor, tente novamente.\",\"17VbmV\":\"Não foi possível desfazer o check-in\",\"n57zCW\":\"Contas não atribuídas\",\"9uI/rE\":\"Desfazer\",\"b9SN9q\":\"Referência única do pedido\",\"Ef7StM\":\"Desconhecido\",\"ZBAScj\":\"Participante desconhecido\",\"MEIAzV\":\"Sem nome\",\"K6L5Mx\":\"Local sem nome\",\"X13xGn\":\"Não confiável\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Atualizar afiliado\",\"59qHrb\":\"Atualizar capacidade\",\"Gaem9v\":\"Atualizar nome e descrição do evento\",\"7EhE4k\":\"Atualizar rótulo\",\"NPQWj8\":\"Atualizar local\",\"75+lpR\":[\"Atualização: \",[\"subjectTitle\"],\" — alterações na programação\"],\"UOGHdA\":[\"Atualização: \",[\"subjectTitle\"],\" — horário da sessão alterado\"],\"ogoTrw\":[[\"count\"],\" data(s) atualizada(s)\"],\"dDuona\":[\"Capacidade atualizada para \",[\"count\"],\" data(s)\"],\"FT3LSc\":[\"Rótulo atualizado para \",[\"count\"],\" data(s)\"],\"8EcY1g\":[\"Local atualizado para \",[\"count\"],\" data(s)\"],\"gJQsLv\":\"Envie uma imagem de capa para seu organizador\",\"4kEGqW\":\"Envie um logo para seu organizador\",\"lnCMdg\":\"Carregar imagem\",\"29w7p6\":\"Enviando imagem...\",\"HtrFfw\":\"A URL é obrigatória\",\"vzWC39\":\"USB\",\"td5pxI\":\"Leitor USB ativo\",\"dyTklH\":\"Leitor USB em pausa\",\"OHJXlK\":\"Use <0>templates Liquid para personalizar seus emails\",\"g0WJMu\":\"Usar lista de todas as datas\",\"0k4cdb\":\"Usar detalhes do pedido para todos os participantes. Os nomes e e-mails dos participantes corresponderão às informações do comprador.\",\"MKK5oI\":\"Usar a lista de todas as datas ou criar uma lista para esta data?\",\"bA31T4\":\"Usar os dados do comprador para todos os participantes\",\"rnoQsz\":\"Usado para bordas, destaques e estilo do código QR\",\"BV4L/Q\":\"Análise UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validando seu número de IVA...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Número de IVA\",\"pnVh83\":\"Número de IVA\",\"CabI04\":\"O número de IVA não deve conter espaços\",\"PMhxAR\":\"O número de IVA deve começar com um código de país de 2 letras seguido por 8-15 caracteres alfanuméricos (ex: DE123456789)\",\"gPgdNV\":\"Número de IVA validado com sucesso\",\"RUMiLy\":\"Falha na validação do número de IVA\",\"vqji3Y\":\"Falha na validação do número de IVA. Por favor, verifique seu número de IVA.\",\"8dENF9\":\"IVA sobre taxa\",\"ZutOKU\":\"Taxa de IVA\",\"+KJZt3\":\"Registrado para IVA\",\"Nfbg76\":\"Configurações de IVA salvas com sucesso\",\"UvYql/\":\"Configurações de IVA salvas. Estamos validando seu número de IVA em segundo plano.\",\"bXn1Jz\":\"Configurações de IVA atualizadas\",\"tJylUv\":\"Tratamento de IVA para Taxas da Plataforma\",\"FlGprQ\":\"Tratamento de IVA para taxas da plataforma: Empresas registradas para IVA na UE podem usar o mecanismo de autoliquidação (0% - Artigo 196 da Diretiva IVA 2006/112/CE). Empresas não registradas para IVA são cobradas com IVA irlandês de 23%.\",\"516oLj\":\"Serviço de validação de IVA temporariamente indisponível\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"IVA: não registrado\",\"AdWhjZ\":\"Código de verificação\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Verificado\",\"wCKkSr\":\"Verificar email\",\"/IBv6X\":\"Verifique seu e-mail\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"A verificar...\",\"fROFIL\":\"Vietnamita\",\"p5nYkr\":\"Ver tudo\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Ver todas as capacidades\",\"RnvnDc\":\"Ver todas as mensagens enviadas na plataforma\",\"+WFMis\":\"Visualize e baixe relatórios de todos os seus eventos. Apenas pedidos concluídos são incluídos.\",\"c7VN/A\":\"Ver respostas\",\"SZw9tS\":\"Ver Detalhes\",\"9+84uW\":[\"Ver detalhes de \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Ver evento\",\"c6SXHN\":\"Ver página do evento\",\"n6EaWL\":\"Ver logs\",\"OaKTzt\":\"Ver mapa\",\"zNZNMs\":\"Ver mensagem\",\"67OJ7t\":\"Ver Pedido\",\"tKKZn0\":\"Ver detalhes do pedido\",\"KeCXJu\":\"Veja detalhes de pedidos, emita reembolsos e reenvie confirmações.\",\"9jnAcN\":\"Ver página inicial do organizador\",\"1J/AWD\":\"Ver Ingresso\",\"N9FyyW\":\"Veja, edite e exporte seus participantes registrados.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Aguardando\",\"quR8Qp\":\"Aguardando pagamento\",\"KrurBH\":\"Aguardando leitura…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de espera ativada\",\"TwnTPy\":\"Oferta da lista de espera expirou\",\"NzIvKm\":\"Lista de espera acionada\",\"aUi/Dz\":\"Aviso: Esta é a configuração padrão do sistema. As alterações afetarão todas as contas que não têm uma configuração específica atribuída.\",\"qeygIa\":\"Qua\",\"aT/44s\":\"Não conseguimos copiar essa conexão Stripe. Tente novamente.\",\"RRZDED\":\"Não encontramos pedidos associados a este endereço de e-mail.\",\"2RZK9x\":\"Não conseguimos encontrar o pedido que você está procurando. O link pode ter expirado ou os detalhes do pedido podem ter sido alterados.\",\"nefMIK\":\"Não conseguimos encontrar o ingresso que você está procurando. O link pode ter expirado ou os detalhes do ingresso podem ter sido alterados.\",\"miysJh\":\"Não foi possível encontrar este pedido. Ele pode ter sido removido.\",\"ADsQ23\":\"Não conseguimos acessar o Stripe agora. Tente novamente em instantes.\",\"HJKdzP\":\"Ocorreu um problema ao carregar esta página. Por favor, tente novamente.\",\"jegrvW\":\"Trabalhamos com o Stripe para enviar pagamentos direto para sua conta bancária.\",\"IfN2Qo\":\"Recomendamos um logo quadrado com dimensões mínimas de 200x200px\",\"wJzo/w\":\"Recomendamos dimensões de 400px por 400px e tamanho máximo de 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Usamos cookies para nos ajudar a entender como o site é utilizado e para melhorar sua experiência.\",\"x8rEDQ\":\"Não conseguimos validar seu número de IVA após várias tentativas. Continuaremos tentando em segundo plano. Por favor, volte mais tarde.\",\"iy+M+c\":[\"Nós o notificaremos por e-mail se uma vaga ficar disponível para \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Abriremos um compositor de mensagens com um modelo pré-preenchido após salvar. Você revisa e envia — nada é enviado automaticamente.\",\"q1BizZ\":\"Enviaremos seus ingressos para este e-mail\",\"ZOmUYW\":\"Validaremos seu número de IVA em segundo plano. Se houver algum problema, avisaremos.\",\"LKjHr4\":[\"Fizemos alterações na programação de \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" afetando \",[\"affectedCount\"],\" sessão(ões).\"],\"Fq/Nx7\":\"Enviámos um código de verificação de 5 dígitos para:\",\"GdWB+V\":\"Webhook criado com sucesso\",\"2X4ecw\":\"Webhook excluído com sucesso\",\"ndBv0v\":\"Integrações de webhook\",\"CThMKa\":\"Logs do Webhook\",\"I0adYQ\":\"Segredo de assinatura do Webhook\",\"nuh/Wq\":\"URL do Webhook\",\"8BMPMe\":\"O webhook não enviará notificações\",\"FSaY52\":\"O webhook enviará notificações\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Site\",\"0f7U0k\":\"Qua\",\"VAcXNz\":\"Quarta-feira\",\"64X6l4\":\"semana\",\"4XSc4l\":\"Semanal\",\"IAUiSh\":\"semanas\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bem-vindo de volta\",\"QDWsl9\":[\"Bem-vindo ao \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bem-vindo ao \",[\"0\"],\", aqui está uma lista de todos os seus eventos\"],\"DDbx7K\":\"Bem-estar\",\"ywRaYa\":\"Que horário?\",\"FaSXqR\":\"Que tipo de evento?\",\"0WyYF4\":\"O que a equipe sem login pode ver\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando um check-in é excluído\",\"RPe6bE\":\"Quando uma data é cancelada em um evento recorrente\",\"Gmd0hv\":\"Quando um novo participante é criado\",\"zyIyPe\":\"Quando um novo evento é criado\",\"Lc18qn\":\"Quando um novo pedido é criado\",\"dfkQIO\":\"Quando um novo produto é criado\",\"8OhzyY\":\"Quando um produto é excluído\",\"tRXdQ9\":\"Quando um produto é atualizado\",\"9L9/28\":\"Quando um produto se esgota, os clientes podem entrar em uma lista de espera para serem notificados quando houver vagas disponíveis.\",\"Q7CWxp\":\"Quando um participante é cancelado\",\"IuUoyV\":\"Quando um participante faz check-in\",\"nBVOd7\":\"Quando um participante é atualizado\",\"t7cuMp\":\"Quando um evento é arquivado\",\"gtoSzE\":\"Quando um evento é atualizado\",\"ny2r8d\":\"Quando um pedido é cancelado\",\"c9RYbv\":\"Quando um pedido é marcado como pago\",\"ejMDw1\":\"Quando um pedido é reembolsado\",\"fVPt0F\":\"Quando um pedido é atualizado\",\"bcYlvb\":\"Quando fecha o check-in\",\"XIG669\":\"Quando abre o check-in\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"Quando ativado, novos eventos permitirão que os participantes gerenciem seus próprios detalhes de ingresso através de um link seguro. Isso pode ser substituído por evento.\",\"blXLKj\":\"Quando ativado, novos eventos exibirão uma caixa de seleção de opt-in de marketing durante o checkout. Isso pode ser substituído por evento.\",\"Kj0Txn\":\"Quando ativado, não serão cobradas taxas de aplicação nas transações Stripe Connect. Use isso para países onde as taxas de aplicação não são suportadas.\",\"tMqezN\":\"Se os reembolsos estão sendo processados\",\"uchB0M\":\"Pré-visualização do widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Escreva sua mensagem aqui...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"ano\",\"zkWmBh\":\"Anual\",\"+BGee5\":\"anos\",\"X/azM1\":\"Sim - Tenho um número de registro de IVA da UE válido\",\"Tz5oXG\":\"Sim, cancelar meu pedido\",\"QlSZU0\":[\"Você está personificando <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Você está emitindo um reembolso parcial. O cliente será reembolsado em \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Você pode configurar taxas de serviço adicionais e impostos nas configurações da sua conta.\",\"rj3A7+\":\"Você pode substituir isso para datas individuais mais tarde.\",\"paWwQ0\":\"Você ainda pode oferecer ingressos manualmente, se necessário.\",\"jTDzpA\":\"Você não pode arquivar o último organizador ativo da sua conta.\",\"5VGIlq\":\"Você atingiu seu limite de mensagens.\",\"casL1O\":\"Você adicionou taxas e impostos a um produto gratuito. Deseja removê-los?\",\"9jJNZY\":\"Você deve reconhecer suas responsabilidades antes de salvar\",\"pCLes8\":\"Você deve concordar em receber mensagens\",\"FVTVBy\":\"Você precisa verificar seu e-mail antes de atualizar o status do organizador.\",\"ze4bi/\":\"Você precisa criar pelo menos uma sessão antes de poder adicionar participantes a este evento recorrente.\",\"w65ZgF\":\"Você precisa verificar o e-mail da sua conta antes de poder modificar modelos de e-mail.\",\"FRl8Jv\":\"Você precisa verificar o e-mail da sua conta antes de poder enviar mensagens.\",\"88cUW+\":\"Você recebe\",\"O6/3cu\":\"Você poderá configurar datas, programações e regras de recorrência na próxima etapa.\",\"zKAheG\":\"Você está alterando horários de sessão\",\"MNFIxz\":[\"Você vai participar de \",[\"0\"],\"!\"],\"qGZz0m\":\"Você está na lista de espera!\",\"/5HL6k\":\"Você recebeu uma oferta de vaga!\",\"gbjFFH\":\"Você alterou o horário da sessão\",\"p/Sa0j\":\"Sua conta tem limites de mensagens. Para aumentar seus limites, entre em contato conosco em\",\"x/xjzn\":\"Os seus afiliados foram exportados com sucesso.\",\"TF37u6\":\"Seus participantes foram exportados com sucesso.\",\"79lXGw\":\"Sua lista de check-in foi criada com sucesso. Compartilhe o link abaixo com sua equipe de check-in.\",\"BnlG9U\":\"Seu pedido atual será perdido.\",\"nBqgQb\":\"Seu e-mail\",\"GG1fRP\":\"Seu evento está no ar!\",\"ifRqmm\":\"A sua mensagem foi enviada com sucesso!\",\"0/+Nn9\":\"Suas mensagens aparecerão aqui\",\"/Rj5P4\":\"Seu nome\",\"PFjJxY\":\"Sua nova senha deve ter pelo menos 8 caracteres.\",\"gzrCuN\":\"Os detalhes do seu pedido foram atualizados. Um e-mail de confirmação foi enviado para o novo endereço de e-mail.\",\"naQW82\":\"Seu pedido foi cancelado.\",\"bhlHm/\":\"Seu pedido aguarda pagamento\",\"XeNum6\":\"Seus pedidos foram exportados com sucesso.\",\"Xd1R1a\":\"Endereço do seu organizador\",\"WWYHKD\":\"Seu pagamento está protegido com criptografia de nível bancário\",\"5b3QLi\":\"Seu plano\",\"N4Zkqc\":\"Seu filtro de data salvo não está mais disponível — mostrando todas as datas.\",\"FNO5uZ\":\"Seu ingresso continua válido — nenhuma ação é necessária, a menos que o novo horário não funcione para você. Por favor, responda a este e-mail se tiver alguma dúvida.\",\"CnZ3Ou\":\"Seus ingressos foram confirmados.\",\"EmFsMZ\":\"Seu número de IVA está na fila para validação\",\"QBlhh4\":\"Seu número de IVA será validado quando você salvar\",\"fT9VLt\":\"Sua oferta da lista de espera expirou e não foi possível concluir seu pedido. Entre na lista de espera novamente para ser notificado quando houver mais vagas disponíveis.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/pt-br.po b/frontend/src/locales/pt-br.po index 82597e8795..dfcb7d9389 100644 --- a/frontend/src/locales/pt-br.po +++ b/frontend/src/locales/pt-br.po @@ -60,7 +60,7 @@ msgstr "{0} <0>desmarcado com sucesso" msgid "{0} Active Webhooks" msgstr "{0} webhooks ativos" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} disponível" @@ -78,7 +78,7 @@ msgstr "{0} restante" msgid "{0} logo" msgstr "Logo {0}" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{0} de {1} lugares ocupados." @@ -90,7 +90,7 @@ msgstr "{0} organizadores" msgid "{0} spots left" msgstr "{0} vagas restantes" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} ingressos" @@ -114,7 +114,7 @@ msgstr "Logo {appName}" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} participantes estão registrados nesta sessão." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} de {totalCount} disponíveis" @@ -122,7 +122,7 @@ msgstr "{availableCount} de {totalCount} disponíveis" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} com check-in" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} eventos" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} horas, {minutes} minutos e {seconds} segundos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "{loadedAffectedAttendees} participantes estão registrados nas sessões afetadas." @@ -163,11 +163,11 @@ msgstr "{minutos} minutos e {segundos} segundos" msgid "{organizerName}'s first event" msgstr "Primeiro evento de {organizerName}" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} tipos de ingresso" @@ -230,7 +230,7 @@ msgstr "0 minutos e 0 segundos" msgid "1 Active Webhook" msgstr "1 webhook ativo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "1 participante está registrado nas sessões afetadas." @@ -238,35 +238,35 @@ msgstr "1 participante está registrado nas sessões afetadas." msgid "1 attendee is registered for this session." msgstr "1 participante está registrado nesta sessão." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 dia após a data de término" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 dia após a data de início" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 dia antes do evento" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 hora antes do evento" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 ingresso" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 tipo de ingresso" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 semana antes do evento" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "Um aviso de cancelamento foi enviado para" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "uma mudança na duração" @@ -321,7 +321,7 @@ msgstr "Um input do tipo Dropdown permite apenas uma seleção" msgid "A fee, like a booking fee or a service fee" msgstr "Uma taxa, como uma taxa de reserva ou uma taxa de serviço" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "Um código promocional sem desconto pode ser usado para revelar produtos msgid "A Radio option has multiple options but only one can be selected." msgstr "Uma opção de rádio tem várias opções, mas somente uma pode ser selecionada." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "uma alteração nos horários de início/término" @@ -465,7 +465,7 @@ msgstr "Conta atualizada com sucesso" msgid "Accounts" msgstr "Contas" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Ação Necessária: Informações de IVA Necessárias" @@ -493,10 +493,10 @@ msgstr "Data de ativação" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Métodos de pagamento ativos" msgid "Activity" msgstr "Atividade" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Adicionar uma data" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "Adicione quaisquer notas sobre o pedido..." msgid "Add at least one time" msgstr "Adicione pelo menos um horário" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Adicione os detalhes de conexão para o evento online." @@ -572,15 +576,19 @@ msgstr "Adicionar data" msgid "Add Dates" msgstr "Adicionar datas" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Adicionar descrição" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "Adicionar pergunta" msgid "Add Tax or Fee" msgstr "Adicionar imposto ou taxa" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Adicionar este participante mesmo assim (ignorar capacidade)" @@ -634,8 +642,8 @@ msgstr "Adicionar este participante mesmo assim (ignorar capacidade)" msgid "Add this event to your calendar" msgstr "Adicione este evento ao seu calendário" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Adicionar ingressos" @@ -649,7 +657,7 @@ msgstr "Adicionar nível" msgid "Add to Calendar" msgstr "Adicionar ao calendário" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Adicione pixels de rastreamento às suas páginas públicas de evento e à página inicial do organizador. Um banner de consentimento de cookies será exibido aos visitantes quando o rastreamento estiver ativo." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Linha de endereço 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Linha de endereço 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Linha de endereço 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Linha de endereço 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Administrador" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Acesso de administrador necessário" @@ -725,7 +733,7 @@ msgstr "Acesso de administrador necessário" msgid "Admin Dashboard" msgstr "Painel de Administração" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Os usuários administradores têm acesso total a eventos e configurações de conta." @@ -776,7 +784,7 @@ msgstr "Afiliados exportados" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Os afiliados ajudam-no a rastrear vendas geradas por parceiros e influenciadores. Crie códigos de afiliado e partilhe-os para monitorizar o desempenho." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "todas" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "Todos os eventos arquivados" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Todos os participantes" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "Todos os participantes das sessões selecionadas" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Todos os participantes deste evento" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Todos os participantes desta sessão" @@ -838,12 +846,12 @@ msgstr "Todos os trabalhos com falha excluídos" msgid "All jobs queued for retry" msgstr "Todos os trabalhos na fila para nova tentativa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Todas as datas correspondentes" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Todas as sessões" @@ -897,7 +905,7 @@ msgstr "Já tem uma conta? <0>{0}" msgid "Already in" msgstr "Já entrou" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Já reembolsado" @@ -905,11 +913,11 @@ msgstr "Já reembolsado" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Já usa o Stripe em outro organizador? Reutilize essa conexão." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Também cancelar este pedido" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Também reembolsar este pedido" @@ -932,7 +940,7 @@ msgstr "Valor" msgid "Amount Paid" msgstr "Valor pago" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Valor pago ({0})" @@ -952,7 +960,7 @@ msgstr "Ocorreu um erro ao carregar a página" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Uma mensagem opcional para exibir no produto destacado, por exemplo \"Vendendo rápido 🔥\" ou \"Melhor valor\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Ocorreu um erro inesperado." @@ -988,7 +996,7 @@ msgstr "Quaisquer perguntas dos portadores de produtos serão enviadas para este msgid "Appearance" msgstr "Aparência" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "aplicado" @@ -996,7 +1004,7 @@ msgstr "aplicado" msgid "Applies to {0} products" msgstr "Aplica-se a {0} produtos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Aplica-se a {0} datas não canceladas carregadas atualmente nesta página." @@ -1008,7 +1016,7 @@ msgstr "Aplica-se a 1 produto" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Vale para quem abre o link sem estar logado. Membros autenticados sempre veem tudo." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Aplica-se a todas as {0} datas não canceladas deste evento — incluindo datas que não estão carregadas no momento." @@ -1016,11 +1024,11 @@ msgstr "Aplica-se a todas as {0} datas não canceladas deste evento — incluind msgid "Apply" msgstr "Aplicar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Aplicar alterações" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Aplicar código promocional" @@ -1028,7 +1036,7 @@ msgstr "Aplicar código promocional" msgid "Apply this {type} to all new products" msgstr "Aplicar este {type} a todos os novos produtos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Aplicar a" @@ -1044,36 +1052,35 @@ msgstr "Aprovar mensagem" msgid "April" msgstr "Abril" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Arquivar" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Arquivar evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Arquivar evento" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Arquivar organizador" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Arquive este evento para ocultá-lo do público. Você pode restaurá-lo mais tarde." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Arquive este organizador. Isso também arquivará todos os eventos pertencentes a este organizador." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Arquivado" @@ -1085,15 +1092,15 @@ msgstr "Organizadores arquivados" msgid "Are you sure you want to activate this attendee?" msgstr "Tem certeza de que deseja ativar esse participante?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Você tem certeza de que deseja arquivar este evento?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Tem certeza que deseja arquivar este evento? Ele não será mais visível para o público." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Tem certeza que deseja arquivar este organizador? Isso também arquivará todos os eventos pertencentes a este organizador." @@ -1123,7 +1130,7 @@ msgstr "Tem certeza de que deseja excluir todos os trabalhos com falha?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Tem a certeza de que deseja eliminar este afiliado? Esta ação não pode ser anulada." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Tem certeza de que deseja excluir esta configuração? Isso pode afetar as contas que a utilizam." @@ -1137,11 +1144,11 @@ msgstr "Tem certeza de que deseja excluir esta data? Esta ação não pode ser d msgid "Are you sure you want to delete this promo code?" msgstr "Tem certeza de que deseja excluir esse código promocional?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo padrão." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo do organizador ou padrão." @@ -1150,17 +1157,17 @@ msgstr "Tem certeza de que deseja excluir este modelo? Esta ação não pode ser msgid "Are you sure you want to delete this webhook?" msgstr "Tem certeza de que deseja excluir este webhook?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Tem certeza de que deseja sair?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Tem certeza de que deseja tornar este evento um rascunho? Isso tornará o evento invisível para o público" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Tem certeza de que deseja tornar este evento público? Isso tornará o evento visível para o público" @@ -1200,15 +1207,15 @@ msgstr "Tem certeza de que deseja reenviar a confirmação do pedido para {0}?" msgid "Are you sure you want to resend the ticket to {0}?" msgstr "Tem certeza de que deseja reenviar o ingresso para {0}?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Tem certeza que deseja restaurar este evento?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Você tem certeza de que deseja restaurar este evento? Ele será restaurado como um evento rascunho." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Tem certeza que deseja restaurar este organizador?" @@ -1229,7 +1236,7 @@ msgstr "Tem certeza de que deseja excluir esta Atribuição de Capacidade?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "Tem certeza de que deseja excluir esta lista de registro?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "Você está registrado para IVA na UE?" @@ -1237,7 +1244,7 @@ msgstr "Você está registrado para IVA na UE?" msgid "Art" msgstr "Arte" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "Como sua empresa está sediada na Irlanda, o IVA irlandês de 23% se aplica automaticamente a todas as taxas da plataforma." @@ -1270,7 +1277,7 @@ msgstr "Nível atribuído" msgid "At least one event type must be selected" msgstr "Pelo menos um tipo de evento deve ser selecionado" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Tentativas" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Presença e taxas de check-in em todos os eventos" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "participante" @@ -1287,7 +1293,7 @@ msgstr "participante" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Participante" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Status do Participante" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Bilhete do Participante" @@ -1364,13 +1370,13 @@ msgstr "O ingresso do participante não está incluído nesta lista" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "participantes" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "participantes" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Participantes" @@ -1393,16 +1399,16 @@ msgstr "participantes com check-in" msgid "Attendees Exported" msgstr "Participantes exportados" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Participantes registrados" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Participantes Registrados" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Participantes com um tíquete específico" @@ -1454,7 +1460,7 @@ msgstr "Redimensionar automaticamente a altura do widget com base no conteúdo. msgid "Available" msgstr "Disponível" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Disponível para reembolso" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "Pendente" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "Aguardando pagamento offline" @@ -1482,7 +1488,7 @@ msgstr "Aguarda pagto." #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "Aguardando pagamento" @@ -1513,14 +1519,14 @@ msgstr "Voltar para Contas" msgid "Back to calendar" msgstr "Voltar ao calendário" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Voltar ao evento" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Voltar à página do evento" @@ -1548,7 +1554,7 @@ msgstr "Cor de fundo" msgid "Background Type" msgstr "Tipo de plano de fundo" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "Baseado no período de venda global acima, não por data" msgid "Basic Information" msgstr "Informações básicas" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Endereço de cobrança" @@ -1599,11 +1605,11 @@ msgstr "Proteção contra fraude integrada" msgid "Bulk Edit" msgstr "Edição em massa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Edição em massa de datas" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "Falha na atualização em massa." @@ -1635,11 +1641,11 @@ msgstr "O comprador paga" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Os compradores veem um preço limpo. A taxa da plataforma é deduzida do seu pagamento." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "Ao adicionar pixels de rastreamento, você reconhece que você e esta plataforma são controladores conjuntos dos dados coletados. Você é responsável por garantir que tem uma base legal para esse processamento de acordo com as leis de privacidade aplicáveis (LGPD, GDPR, CCPA, etc.)." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Ao continuar, você concorda com os <0>Termos de Serviço de {0}" @@ -1660,7 +1666,7 @@ msgstr "Ao se registrar, você concorda com nossos <0>Termos de Serviço e < msgid "By ticket type" msgstr "Por tipo de ingresso" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Ignorar taxas de aplicação" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "Check-in indisponível" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Cancelar" @@ -1729,7 +1735,7 @@ msgstr "Cancelar" msgid "Cancel {count} date(s)" msgstr "Cancelar {count} data(s)" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Cancelar todos os produtos e devolvê-los ao pool disponível" @@ -1743,7 +1749,7 @@ msgstr "Cancelar todos os produtos e devolvê-los ao pool disponível" msgid "Cancel Date" msgstr "Cancelar data" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "Cancelar alteração de e-mail" @@ -1751,7 +1757,7 @@ msgstr "Cancelar alteração de e-mail" msgid "Cancel order" msgstr "Cancelar pedido" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Cancelar pedido" @@ -1759,7 +1765,7 @@ msgstr "Cancelar pedido" msgid "Cancel Order {0}" msgstr "Cancelar pedido {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "Cancelar irá cancelar todos os participantes associados a este pedido e devolver os ingressos ao pool disponível." @@ -1781,7 +1787,7 @@ msgstr "Cancelamento" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "Cancelado" msgid "Cancelled {0} date(s)" msgstr "{0} data(s) cancelada(s)" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "Não é possível excluir a configuração padrão do sistema" @@ -1825,7 +1831,7 @@ msgstr "Gestão de capacidade" msgid "Capacity must be 0 or greater" msgstr "A capacidade deve ser 0 ou maior" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "atualizações de capacidade" @@ -1833,7 +1839,7 @@ msgstr "atualizações de capacidade" msgid "Capacity Used" msgstr "Capacidade utilizada" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "As categorias permitem agrupar produtos. Por exemplo, você pode ter uma categoria para \"Ingressos\" e outra para \"Mercadorias\"." @@ -1854,19 +1860,19 @@ msgstr "Categoria" msgid "Category Created Successfully" msgstr "Categoria Criada com Sucesso" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Alterar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Alterar duração" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Alterar senha" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Alterar o limite de participantes" @@ -1874,7 +1880,7 @@ msgstr "Alterar o limite de participantes" msgid "Change waitlist settings" msgstr "Alterar configurações da lista de espera" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "Duração alterada para {count} data(s)" @@ -1891,15 +1897,15 @@ msgstr "Caridade" msgid "Check in" msgstr "Fazer check-in" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Fazer check-in de {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Fazer check-in e marcar pedido como pago" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Apenas fazer check-in" @@ -1913,7 +1919,7 @@ msgstr "Cancelar check-in" msgid "Check out this event: {0}" msgstr "Confira este evento: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Confira este evento!" @@ -1994,7 +2000,7 @@ msgstr "Listas de Check-in" msgid "Check-In Lists" msgstr "Listas de Registro" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Navegação de check-in" @@ -2074,11 +2080,11 @@ msgstr "Escolha uma cor para seu plano de fundo" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Escolha uma ação diferente" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Escolha um local salvo para aplicar." @@ -2108,12 +2114,12 @@ msgstr "Escolha quem paga a taxa da plataforma. Isso não afeta as taxas adicion #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Cidade" @@ -2122,7 +2128,7 @@ msgstr "Cidade" msgid "Clear" msgstr "Limpar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Limpar local — voltar ao padrão do evento" @@ -2134,7 +2140,7 @@ msgstr "Limpar busca" msgid "Clear Search Text" msgstr "Limpar texto de pesquisa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "Limpar remove qualquer substituição por data. As datas afetadas voltarão ao local padrão do evento." @@ -2154,7 +2160,7 @@ msgstr "Clique para reabrir para novas vendas" msgid "Click to view notes" msgstr "Clique para ver as notas" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "fechar" @@ -2162,8 +2168,8 @@ msgstr "fechar" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Fechar" @@ -2259,7 +2265,7 @@ msgstr "Em breve" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Palavras-chave separadas por vírgulas que descrevem o evento. Elas serão usadas pelos mecanismos de pesquisa para ajudar a categorizar e indexar o evento" -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Preferências de comunicação" @@ -2267,11 +2273,11 @@ msgstr "Preferências de comunicação" msgid "complete" msgstr "completo" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Pedido completo" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Pagamento completo" @@ -2280,11 +2286,11 @@ msgstr "Pagamento completo" msgid "Complete Stripe setup" msgstr "Concluir configuração do Stripe" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Conclua seu pedido para garantir seus ingressos. Esta oferta é por tempo limitado, então não demore muito." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Complete seu pagamento para garantir seus ingressos." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Complete seu perfil para se juntar à equipe." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Concluído" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Pedidos concluídos" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Pedidos concluídos" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Compor" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Configuração atribuída" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Configuração criada com sucesso" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Configuração excluída com sucesso" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "Os nomes de configuração são visíveis para os usuários finais. As taxas fixas serão convertidas para a moeda do pedido na taxa de câmbio atual." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Configuração atualizada com sucesso" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Configurações" @@ -2377,10 +2383,10 @@ msgstr "Desconto configurado" msgid "Confirm" msgstr "Confirmar" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "Confirmar endereço de e-mail" @@ -2393,7 +2399,7 @@ msgstr "Confirmar alteração de e-mail" msgid "Confirm new password" msgstr "Confirme a nova senha" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Confirmar nova senha" @@ -2428,16 +2434,16 @@ msgstr "Confirmação do endereço de e-mail..." msgid "Congratulations! Your event is now visible to the public." msgstr "Parabéns! Seu evento agora está visível para o público." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Conectar faixa" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Conecte o Stripe para habilitar a edição de modelos de e-mail" @@ -2445,7 +2451,7 @@ msgstr "Conecte o Stripe para habilitar a edição de modelos de e-mail" msgid "Connect Stripe to enable messaging" msgstr "Conecte o Stripe para habilitar mensagens" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Conecte-se com o Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "E-mail de contato para suporte" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Continuar" @@ -2508,7 +2514,7 @@ msgstr "Texto do botão Continuar" msgid "Continue Setup" msgstr "Continuar configuração" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Ir para o checkout" @@ -2520,7 +2526,7 @@ msgstr "Continuar para a criação do evento" msgid "Continue to next step" msgstr "Continuar para o próximo passo" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Continuar para pagamento" @@ -2545,7 +2551,7 @@ msgstr "Controle quem entra e quando" msgid "Copied" msgstr "Copiado" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Copiado de cima" @@ -2591,7 +2597,7 @@ msgstr "Copiar código" msgid "Copy customer link" msgstr "Copiar link do cliente" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Copiar detalhes para o primeiro participante" @@ -2609,7 +2615,7 @@ msgstr "Copiar link" msgid "Copy Link" msgstr "Copiar link" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Copiar meus dados para:" @@ -2630,7 +2636,7 @@ msgstr "Copiar URL" msgid "Could not delete location" msgstr "Não foi possível excluir o local" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Não foi possível preparar a atualização em massa." @@ -2652,13 +2658,17 @@ msgstr "Não foi possível salvar a data" msgid "Could not save location" msgstr "Não foi possível salvar o local" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "País" @@ -2671,6 +2681,10 @@ msgstr "Capa" msgid "Cover Image" msgstr "Imagem de capa" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "A imagem de capa será exibida no topo da sua página de evento" @@ -2743,7 +2757,7 @@ msgstr "criar um organizador" msgid "Create and configure tickets and merchandise for sale." msgstr "Crie e configure ingressos e mercadorias para venda." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Criar participante" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Criar categoria" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Criar Categoria" @@ -2771,17 +2785,17 @@ msgstr "Criar Categoria" msgid "Create Check-In List" msgstr "Criar Lista de Registro" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Criar Configuração" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Criar modelos de e-mail personalizados para este evento que substituem os padrões do organizador" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Criar Modelo Personalizado" @@ -2793,16 +2807,16 @@ msgstr "Criar data" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Criar evento" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Criar para esta data" @@ -2849,7 +2863,7 @@ msgstr "Criar imposto ou taxa" msgid "Create Ticket or Product" msgstr "Criar ingresso ou produto" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "Crie seu evento" msgid "Create your first event" msgstr "Crie o seu primeiro evento" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "Rótulo do CTA é obrigatório" msgid "Currency" msgstr "Moeda" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Senha atual" @@ -2931,7 +2949,7 @@ msgstr "Atualmente disponível para compra" msgid "Custom branding" msgstr "Marca personalizada" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Data e hora personalizadas" @@ -2957,7 +2975,7 @@ msgstr "Perguntas personalizadas" msgid "Custom Range" msgstr "Intervalo personalizado" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Modelo personalizado" @@ -2970,7 +2988,7 @@ msgstr "Cliente" msgid "Customer link copied to clipboard" msgstr "Link do cliente copiado para a área de transferência" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "O cliente receberá um email confirmando o reembolso" @@ -2990,11 +3008,15 @@ msgstr "Sobrenome do cliente" msgid "Customers" msgstr "Clientes" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Personalize as configurações de e-mail e notificação para esse evento" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Personalize os e-mails enviados aos seus clientes usando modelos Liquid. Estes modelos serão usados como padrão para todos os eventos em sua organização." @@ -3027,6 +3049,10 @@ msgstr "Personalize o texto exibido no botão continuar" msgid "Customize your email template using Liquid templating" msgstr "Personalize seu modelo de e-mail usando modelos Liquid" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Personalize a aparência da sua página de organizador" @@ -3079,7 +3105,7 @@ msgstr "Escuro" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Dashboard" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Data e hora" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Cancelamento de data" @@ -3208,12 +3234,12 @@ msgstr "Capacidade padrão por data" msgid "Default Fee Handling" msgstr "Gestão de taxas padrão" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Modelo padrão será usado" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "excluir" @@ -3267,8 +3293,8 @@ msgstr "Excluir código" msgid "Delete Date" msgstr "Excluir data" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Excluir evento" @@ -3285,8 +3311,8 @@ msgstr "Excluir trabalho" msgid "Delete location" msgstr "Excluir local" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Excluir organizador" @@ -3294,7 +3320,7 @@ msgstr "Excluir organizador" msgid "Delete Permanently" msgstr "Excluir permanentemente" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Excluir Modelo" @@ -3319,7 +3345,7 @@ msgstr "{0} data(s) excluída(s)" msgid "Description" msgstr "Descrição" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "Desconto em {0}" msgid "Discount Type" msgstr "Tipo de desconto" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Dispensar" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Fechar esta mensagem" @@ -3441,7 +3467,7 @@ msgstr "Baixar CSV" msgid "Download invoice" msgstr "Baixar fatura" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Baixar fatura" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Baixe relatórios de vendas, participantes e financeiros para todos os pedidos concluídos." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "A baixar fatura" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Rascunho" @@ -3469,7 +3494,7 @@ msgstr "Rascunho" msgid "Dropdown selection" msgstr "Seleção suspensa" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "Devido ao alto risco de spam, você deve conectar uma conta Stripe antes de poder modificar modelos de e-mail. Isso é para garantir que todos os organizadores de eventos sejam verificados e responsáveis." @@ -3490,7 +3515,7 @@ msgstr "Duplicar" msgid "Duplicate Date" msgstr "Duplicar data" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Duplicar evento" @@ -3508,7 +3533,7 @@ msgstr "Duplicar Opções" msgid "Duplicate Product" msgstr "Duplicar produto" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "A duração deve ser de pelo menos 1 minuto." @@ -3520,7 +3545,7 @@ msgstr "Holandês" msgid "e.g. 180 (3 hours)" msgstr "ex. 180 (3 horas)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "ex. Sessão da manhã" msgid "e.g., Get Tickets, Register Now" msgstr "ex.: Comprar ingressos, Registrar-se agora" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "ex: Atualização importante sobre seus ingressos" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "ex: Padrão, Premium, Enterprise" @@ -3542,7 +3567,7 @@ msgstr "ex: Padrão, Premium, Enterprise" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Cada pessoa receberá um e-mail com uma vaga reservada para concluir sua compra." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Mais cedo" @@ -3611,7 +3636,7 @@ msgstr "Editar Lista de Registro" msgid "Edit Code" msgstr "Editar código" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Editar Configuração" @@ -3659,8 +3684,8 @@ msgstr "Editar pergunta" msgid "Edit user" msgstr "Editar usuário" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Editar usuário" @@ -3708,7 +3733,7 @@ msgstr "Listas de Check-In Elegíveis" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Listas de Check-In Elegíveis" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "E-mail" @@ -3743,10 +3768,10 @@ msgstr "E-mail e Modelos" msgid "Email address" msgstr "Endereço de e-mail" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "Endereço de e-mail" @@ -3755,8 +3780,8 @@ msgstr "Endereço de e-mail" msgid "Email address copied to clipboard" msgstr "Endereço de email copiado para a área de transferência" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "Os endereços de e-mail não coincidem" @@ -3764,21 +3789,21 @@ msgstr "Os endereços de e-mail não coincidem" msgid "Email Body" msgstr "Corpo do E-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "Alteração de e-mail cancelada com sucesso" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "Alteração de e-mail pendente" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "Confirmação de e-mail reenviada" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "Confirmação de e-mail reenviada com sucesso" @@ -3792,7 +3817,7 @@ msgstr "Mensagem de rodapé do e-mail" msgid "Email is required" msgstr "O email é obrigatório" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "E-mail não verificado" @@ -3800,7 +3825,7 @@ msgstr "E-mail não verificado" msgid "Email Preview" msgstr "Visualização do E-mail" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "Modelos de E-mail" @@ -3809,6 +3834,10 @@ msgstr "Modelos de E-mail" msgid "Email Verification Required" msgstr "Verificação de e-mail necessária" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "Email verificado com sucesso!" @@ -3897,12 +3926,11 @@ msgstr "Hora de fim (opcional)" msgid "End time of the occurrence" msgstr "Hora de término da sessão" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Final" @@ -3920,11 +3948,11 @@ msgstr "Termina {0}" msgid "English" msgstr "Inglês" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Insira um valor de capacidade ou escolha ilimitado." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Insira um rótulo ou escolha removê-lo." @@ -3932,7 +3960,7 @@ msgstr "Insira um rótulo ou escolha removê-lo." msgid "Enter a subject and body to see the preview" msgstr "Digite um assunto e corpo para ver a visualização" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Insira um tempo para deslocamento." @@ -3949,11 +3977,11 @@ msgstr "Introduza o email do afiliado (opcional)" msgid "Enter affiliate name" msgstr "Introduza o nome do afiliado" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Insira um valor excluindo impostos e taxas." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Insira a capacidade" @@ -3998,7 +4026,7 @@ msgstr "Digite seu e-mail e enviaremos instruções para redefinir sua senha." msgid "Enter your name" msgstr "Digite seu nome" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Digite seu número de IVA incluindo o código do país, sem espaços (ex: IE1234567A, DE123456789)" @@ -4012,7 +4040,7 @@ msgstr "As inscrições aparecerão aqui quando os clientes entrarem na lista de #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Erro" @@ -4074,7 +4102,7 @@ msgstr "Evento" msgid "Event Archived" msgstr "Evento arquivado" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Evento arquivado com sucesso" @@ -4086,7 +4114,7 @@ msgstr "Categoria do evento" msgid "Event Cover Image" msgstr "Imagem de capa do evento" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4094,7 +4122,7 @@ msgstr "" msgid "Event Created" msgstr "Evento criado" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Modelo personalizado do evento" @@ -4113,7 +4141,7 @@ msgstr "Data do Evento" msgid "Event Defaults" msgstr "Padrões de eventos" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Evento excluído com sucesso" @@ -4145,10 +4173,14 @@ msgstr "Evento duplicado com sucesso" msgid "Event Full Address" msgstr "Endereço Completo do Evento" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Página inicial do evento" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Local do Evento" @@ -4188,7 +4220,7 @@ msgstr "Nome do organizador do evento" msgid "Event Page" msgstr "Página do Evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Evento restaurado com sucesso" @@ -4197,17 +4229,17 @@ msgstr "Evento restaurado com sucesso" msgid "Event Settings" msgstr "Configurações do evento" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Falha na atualização do status do evento. Tente novamente mais tarde" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Status do evento atualizado" @@ -4240,7 +4272,7 @@ msgstr "Título do evento" msgid "Event Too New" msgstr "Evento muito recente" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Totais do evento" @@ -4405,7 +4437,7 @@ msgstr "Falhou em" msgid "Failed Jobs" msgstr "Trabalhos com falha" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "Falha ao abandonar o pedido. Por favor, tente novamente." @@ -4439,7 +4471,7 @@ msgstr "Falha ao cancelar o pedido" msgid "Failed to create affiliate" msgstr "Falha ao criar afiliado" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Falha ao criar configuração" @@ -4447,12 +4479,12 @@ msgstr "Falha ao criar configuração" msgid "Failed to create schedule" msgstr "Falha ao criar programação" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Falha ao criar modelo" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Falha ao excluir configuração" @@ -4470,7 +4502,7 @@ msgstr "Falha ao excluir data. Ela pode ter pedidos existentes." msgid "Failed to delete dates" msgstr "Falha ao excluir datas" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Falha ao excluir o evento" @@ -4482,7 +4514,7 @@ msgstr "Falha ao excluir trabalho" msgid "Failed to delete jobs" msgstr "Falha ao excluir trabalhos" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Falha ao excluir o organizador" @@ -4490,13 +4522,13 @@ msgstr "Falha ao excluir o organizador" msgid "Failed to delete question" msgstr "Falha ao excluir pergunta" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Falha ao excluir modelo" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Falha ao baixar a fatura. Por favor, tente novamente." @@ -4594,14 +4626,14 @@ msgstr "Falha ao salvar substituição de preço" msgid "Failed to save product settings" msgstr "Falha ao salvar configurações do produto" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Falha ao salvar modelo" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Falha ao salvar as configurações de IVA. Por favor, tente novamente." @@ -4639,11 +4671,11 @@ msgstr "Falha ao atualizar a resposta." msgid "Failed to update attendee" msgstr "Falha ao atualizar participante" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Falha ao atualizar configuração" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Falha ao atualizar o status do evento" @@ -4655,7 +4687,7 @@ msgstr "Falha ao atualizar nível de mensagens" msgid "Failed to update order" msgstr "Falha ao atualizar pedido" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Falha ao atualizar o status do organizador" @@ -4701,7 +4733,7 @@ msgstr "Fevereiro" msgid "Fee" msgstr "Tarifa" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Moeda da taxa" @@ -4720,7 +4752,7 @@ msgstr "" msgid "Fees" msgstr "Tarifas" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Taxas ignoradas" @@ -4732,8 +4764,8 @@ msgstr "Festival" msgid "File is too large. Maximum size is 5MB." msgstr "O arquivo é muito grande. O tamanho máximo é 5MB." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Preencha seus dados acima primeiro" @@ -4754,7 +4786,7 @@ msgstr "Filtrar Participantes" msgid "Filter by date" msgstr "Filtrar por data" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Filtrar por evento" @@ -4775,19 +4807,27 @@ msgstr "Filtros ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Termine de configurar o Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "Primeiro" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "Primeiro participante" @@ -4798,22 +4838,22 @@ msgstr "Primeiro número da fatura" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Primeiro nome" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Primeiro nome" @@ -4843,16 +4883,16 @@ msgstr "Valor fixo" msgid "Fixed fee" msgstr "Taxa fixa" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Taxa Fixa" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Taxa fixa cobrada por transação" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "A taxa fixa deve ser 0 ou maior" @@ -4923,7 +4963,11 @@ msgstr "Sexta-feira" msgid "Full data ownership" msgstr "Propriedade total dos dados" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Reembolso total" @@ -4931,11 +4975,11 @@ msgstr "Reembolso total" msgid "Full resolved address" msgstr "Endereço completo resolvido" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "futuras" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Somente datas futuras" @@ -4992,7 +5036,7 @@ msgstr "Começar" msgid "Get Tickets" msgstr "Obter Ingressos" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Prepare seu evento" @@ -5013,7 +5057,7 @@ msgstr "Voltar" msgid "Go back to profile" msgstr "Voltar ao perfil" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Ir para a página do evento" @@ -5037,7 +5081,7 @@ msgstr "Google Agenda" msgid "Got it" msgstr "Entendi" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Receita bruta" @@ -5045,22 +5089,22 @@ msgstr "Receita bruta" msgid "Gross Revenue" msgstr "Receita Bruta" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Vendas brutas" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Vendas brutas" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5077,7 +5121,7 @@ msgstr "Convidados" msgid "Happening now" msgstr "Acontecendo agora" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Tem um código promocional?" @@ -5106,7 +5150,7 @@ msgstr "Aqui está o componente React que você pode usar para incorporar o widg msgid "Here is your affiliate link" msgstr "Aqui está o seu link de afiliado" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Oi {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Escondido da vista do público" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "As perguntas ocultas são visíveis apenas para o organizador do evento e não para o cliente." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Esconder" @@ -5239,8 +5283,8 @@ msgstr "Visualização da página inicial" msgid "Homer" msgstr "Homero" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Horas" @@ -5269,11 +5313,11 @@ msgstr "Com que frequência?" msgid "How to pay offline" msgstr "Como pagar offline" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "Como o IVA é aplicado às taxas da plataforma que cobramos de você." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "Limite de caracteres HTML excedido: {htmlLength}/{maxLength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Húngaro" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Reconheço minhas responsabilidades como controlador de dados" @@ -5305,11 +5349,11 @@ msgstr "Concordo em receber notificações por e-mail relacionadas a este evento msgid "I agree to the <0>terms and conditions" msgstr "Eu concordo com os <0>termos e condições" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Confirmo que esta é uma mensagem transacional relacionada a este evento" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Se uma nova aba não abriu automaticamente, clique no botão abaixo para continuar para o checkout." @@ -5325,7 +5369,7 @@ msgstr "Se ativado, a equipe de check-in pode marcar os participantes como regis msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Se ativado, o organizador receberá uma notificação por e-mail quando um novo pedido for feito" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Se você não solicitou essa alteração, altere imediatamente sua senha." @@ -5370,11 +5414,11 @@ msgstr "Personificação iniciada" msgid "Impersonation stopped" msgstr "Personificação parada" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Aviso importante" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Importante: Alterar seu endereço de e-mail atualizará o link de acesso a este pedido. Você será redirecionado para o novo link do pedido após salvar." @@ -5390,7 +5434,7 @@ msgstr "Em {diffMinutes} minutos" msgid "in last {0} min" msgstr "nos últimos {0} min" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "Presencial — defina um local" @@ -5401,15 +5445,15 @@ msgstr "in_person, online, unset ou mixed" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Inativo" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Usuários inativos não podem fazer login." @@ -5483,12 +5527,12 @@ msgstr "Formato de email inválido" msgid "Invalid file type. Please upload an image." msgstr "Tipo de arquivo inválido. Por favor, envie uma imagem." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Sintaxe Liquid inválida. Por favor, corrija e tente novamente." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Formato de número de IVA inválido" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Fatura" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Fatura baixada com sucesso" @@ -5545,7 +5589,7 @@ msgstr "Configurações da fatura" msgid "Italian" msgstr "Italiano" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Item" @@ -5628,7 +5672,7 @@ msgstr "agora mesmo" msgid "Just wrapped" msgstr "Acabou de encerrar" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Manter-me atualizado sobre novidades e eventos de {0}" @@ -5647,13 +5691,13 @@ msgstr "Rótulo" msgid "Label for the occurrence" msgstr "Rótulo para a sessão" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "atualizações de rótulo" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Idioma" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "Últimas 24 horas" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "Últimos 30 dias" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "Últimos 6 meses" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "Últimos 7 dias" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "Últimos 90 dias" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Sobrenome" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Sobrenome" @@ -5753,7 +5797,7 @@ msgstr "Última ativação" msgid "Last Used" msgstr "Última vez usado" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Mais tarde" @@ -5786,7 +5830,7 @@ msgstr "Mantenha ativado para cobrir todos os ingressos do evento. Desative para msgid "Let them know about the change" msgstr "Avise-os sobre a mudança" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Avise-os sobre as mudanças" @@ -5830,12 +5874,11 @@ msgstr "Lista" msgid "List view" msgstr "Visualização em lista" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "Ao vivo" @@ -5848,7 +5891,7 @@ msgstr "AO VIVO" msgid "Live Events" msgstr "Eventos ao Vivo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Datas carregadas" @@ -5872,8 +5915,8 @@ msgstr "Carregando webhooks" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Carregando..." @@ -5926,7 +5969,7 @@ msgstr "Local salvo" msgid "Location updated" msgstr "Local atualizado" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "atualizações de local" @@ -5990,7 +6033,7 @@ msgstr "Escritório Principal" msgid "Make billing address mandatory during checkout" msgstr "Tornar o endereço de cobrança obrigatório durante o checkout" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "Gerenciar participante" msgid "Manage dates and times for your recurring event" msgstr "Gerencie as datas e horários do seu evento recorrente" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Gerenciar evento" @@ -6039,10 +6082,14 @@ msgstr "Gerenciar pedido" msgid "Manage payment and invoicing settings for this event." msgstr "Gerenciar as configurações de pagamento e faturamento para este evento." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Gerenciar perfil" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Gerenciar programação" @@ -6124,7 +6171,7 @@ msgstr "Meio" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Mensagem" @@ -6141,7 +6188,7 @@ msgstr "Participante da mensagem" msgid "Message Attendees" msgstr "Participantes da mensagem" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Enviar mensagens aos participantes com ingressos específicos" @@ -6165,7 +6212,7 @@ msgstr "Conteúdo da mensagem" msgid "Message Details" msgstr "Detalhes da mensagem" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Mensagem para participantes individuais" @@ -6173,15 +6220,15 @@ msgstr "Mensagem para participantes individuais" msgid "Message is required" msgstr "A mensagem é obrigatória" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Enviar mensagem para proprietários de pedidos com produtos específicos" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Mensagem agendada" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Mensagem enviada" @@ -6212,8 +6259,8 @@ msgstr "Preço mínimo" msgid "minutes" msgstr "minutos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Minutos" @@ -6229,7 +6276,7 @@ msgstr "Configurações diversas" msgid "Mo" msgstr "Seg" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Modo" @@ -6282,7 +6329,7 @@ msgstr "Mais ações" msgid "Most Viewed Events (Last 14 Days)" msgstr "Eventos mais vistos (Últimos 14 dias)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Mover todas as datas para mais cedo ou mais tarde" @@ -6290,7 +6337,7 @@ msgstr "Mover todas as datas para mais cedo ou mais tarde" msgid "Multi line text box" msgstr "Caixa de texto com várias linhas" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Nome" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "O nome é obrigatório" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "O nome deve ter menos de 255 caracteres" @@ -6384,21 +6431,21 @@ msgstr "Receita Líquida" msgid "Never" msgstr "Nunca" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Nova capacidade" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Novo rótulo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Novo local" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "Nova senha" @@ -6426,7 +6473,7 @@ msgstr "Vida noturna" msgid "No" msgstr "Não" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "Não - Sou um indivíduo ou empresa não registrada para IVA" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "Sem Atribuições de Capacidade" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "Nenhuma lista de check-in disponível para este evento." msgid "No check-ins yet" msgstr "Ainda sem check-ins" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "Nenhuma configuração encontrada" @@ -6537,7 +6584,7 @@ msgstr "Nenhuma lista de check-in específica para a data" msgid "No dates available this month. Try navigating to another month." msgstr "Nenhuma data disponível neste mês. Tente navegar para outro mês." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "Nenhuma data corresponde aos filtros atuais." @@ -6582,8 +6629,8 @@ msgstr "Nenhum evento começando nas próximas 24 horas" msgid "No events to show" msgstr "Nenhum evento para mostrar" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "Nenhum pedido encontrado" msgid "No orders to show" msgstr "Não há ordens para mostrar" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "Ainda não há pedidos para esta data." msgid "No organizer activity in the last 14 days" msgstr "Sem atividade de organizador nos últimos 14 dias" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "Nenhum contexto de organizador disponível." @@ -6733,7 +6780,7 @@ msgstr "Ainda sem respostas" msgid "No results" msgstr "Nenhum resultado" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Ainda não há locais salvos" @@ -6793,16 +6840,16 @@ msgstr "Nenhum evento de webhook foi registrado para este endpoint ainda. Os eve msgid "No Webhooks" msgstr "Nenhum Webhook" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "Não, manter-me aqui" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "não editadas" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Nenhum" @@ -6870,7 +6917,7 @@ msgstr "Prefixo numérico" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Sessão" @@ -7005,7 +7052,7 @@ msgstr "Informações sobre pagamentos offline" msgid "Offline Payments Settings" msgstr "Configurações de pagamentos offline" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "Assim que você começar a coletar dados, eles aparecerão aqui." msgid "Ongoing" msgstr "Em andamento" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "Em andamento" msgid "Online" msgstr "Online" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "Online — forneça os detalhes de conexão" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Online e presencial" @@ -7070,15 +7117,15 @@ msgstr "Detalhes de conexão do evento online" msgid "Online Event Details" msgstr "Detalhes do evento on-line" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Apenas administradores da conta podem excluir ou arquivar eventos. Entre em contato com o administrador da sua conta para obter ajuda." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Apenas administradores da conta podem excluir ou arquivar organizadores. Entre em contato com o administrador da sua conta para obter ajuda." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Enviar apenas para pedidos com esses status" @@ -7173,7 +7220,7 @@ msgstr "Pedido e Ingresso" msgid "Order #" msgstr "Pedido n.º" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Pedido cancelado" @@ -7182,13 +7229,13 @@ msgstr "Pedido cancelado" msgid "Order Cancelled" msgstr "Pedido cancelado" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Pedido concluído" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Confirmação do Pedido" @@ -7273,7 +7320,7 @@ msgstr "Pedido marcado como pago" msgid "Order Marked as Paid" msgstr "Pedido marcado como pago" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Pedido não encontrado" @@ -7297,7 +7344,7 @@ msgstr "Número do pedido, data, email do comprador" msgid "Order owner" msgstr "Proprietário do pedido" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Proprietários de pedidos com um produto específico" @@ -7327,7 +7374,7 @@ msgstr "Pedido reembolsado" msgid "Order Status" msgstr "Status do pedido" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Status dos pedidos" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Tempo limite do pedido" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Total do Pedido" @@ -7357,7 +7404,7 @@ msgstr "Pedido atualizado com sucesso" msgid "Order URL" msgstr "URL do Pedido" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "O pedido foi cancelado" @@ -7374,8 +7421,8 @@ msgstr "pedidos" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Nome da organização" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Nome da organização" msgid "Organizer" msgstr "Organizador" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Organizador arquivado com sucesso" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Painel do organizador" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Organizador excluído com sucesso" @@ -7486,7 +7533,7 @@ msgstr "Nome do organizador" msgid "Organizer Not Found" msgstr "Organizador não encontrado" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Organizador restaurado com sucesso" @@ -7504,7 +7551,7 @@ msgstr "Falha ao atualizar o status do organizador. Por favor, tente novamente m msgid "Organizer status updated" msgstr "Status do organizador atualizado" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Modelo do organizador/padrão será usado" @@ -7512,7 +7559,7 @@ msgstr "Modelo do organizador/padrão será usado" msgid "Organizers" msgstr "Organizadores" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Os organizadores só podem gerenciar eventos e produtos. Eles não podem gerenciar usuários, configurações de conta ou informações de faturamento." @@ -7563,7 +7610,7 @@ msgstr "Preenchimento" msgid "Page" msgstr "Página" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Página não disponível mais" @@ -7575,7 +7622,7 @@ msgstr "Página não encontrada" msgid "Page URL" msgstr "URL da página" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Visualizações de página" @@ -7583,11 +7630,11 @@ msgstr "Visualizações de página" msgid "Page Views" msgstr "Visualizações de página" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "pago" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "Contas pagas" msgid "Paid Product" msgstr "Produto Pago" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Reembolso parcial" @@ -7623,7 +7670,7 @@ msgstr "Passar para o comprador" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Senha" @@ -7694,7 +7741,7 @@ msgstr "Payload" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Pagamento" @@ -7735,7 +7782,7 @@ msgstr "Métodos de pagamento" msgid "Payment provider" msgstr "Provedor de pagamento" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Pagamento recebido" @@ -7747,7 +7794,7 @@ msgstr "Pagamento recebido" msgid "Payment Status" msgstr "Status do pagamento" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "O pagamento foi bem-sucedido!" @@ -7761,11 +7808,11 @@ msgstr "Pagamentos não disponíveis" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Repasses" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "Pendente" @@ -7801,8 +7848,8 @@ msgstr "Porcentagem" msgid "Percentage Amount" msgstr "Porcentagem Valor" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Taxa Percentual" @@ -7810,11 +7857,11 @@ msgstr "Taxa Percentual" msgid "Percentage fee (%)" msgstr "Taxa percentual (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "A porcentagem deve estar entre 0 e 100" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Porcentagem do valor da transação" @@ -7822,11 +7869,11 @@ msgstr "Porcentagem do valor da transação" msgid "Performance" msgstr "Desempenho" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Excluir permanentemente este evento e todos os seus dados associados." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Excluir permanentemente este organizador e todos os seus eventos." @@ -7834,7 +7881,7 @@ msgstr "Excluir permanentemente este organizador e todos os seus eventos." msgid "Permanently remove this date" msgstr "Remover esta data permanentemente" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Informações pessoais" @@ -7842,7 +7889,7 @@ msgstr "Informações pessoais" msgid "Phone" msgstr "Telefone" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Escolha um local" @@ -7892,7 +7939,7 @@ msgstr "Taxa da plataforma de {0} deduzida do seu pagamento" msgid "Platform Fees" msgstr "Taxas da plataforma" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Relatório de taxas da plataforma" @@ -7918,7 +7965,7 @@ msgstr "Verifique seu e-mail e senha e tente novamente" msgid "Please check your email is valid" msgstr "Verifique se seu e-mail é válido" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Verifique seu e-mail para confirmar seu endereço de e-mail" @@ -7926,7 +7973,7 @@ msgstr "Verifique seu e-mail para confirmar seu endereço de e-mail" msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Verifique seu ingresso para o horário atualizado. Seus ingressos continuam válidos — nenhuma ação é necessária, a menos que os novos horários não funcionem para você. Responda a este e-mail se tiver alguma dúvida." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Continue na nova guia" @@ -7955,7 +8002,7 @@ msgstr "Por favor, insira uma URL válida" msgid "Please enter the 5-digit code" msgstr "Por favor, introduza o código de 5 dígitos" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Por favor, digite seu número de IVA" @@ -7971,11 +8018,11 @@ msgstr "Por favor, forneça uma imagem." msgid "Please restart the checkout process." msgstr "Por favor, reinicie o processo de compra." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Por favor, volte para a página do evento para recomeçar." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Por favor, selecione uma data e horário" @@ -7987,7 +8034,7 @@ msgstr "Por favor, selecione um intervalo de datas" msgid "Please select an image." msgstr "Por favor, selecione uma imagem." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Por favor, selecione pelo menos um produto" @@ -7998,7 +8045,7 @@ msgstr "Por favor, selecione pelo menos um produto" msgid "Please try again." msgstr "Por favor, tente novamente." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Verifique seu endereço de e-mail para acessar todos os recursos" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Por favor, aguarde enquanto preparamos seus participantes para exportação..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Por favor, aguarde enquanto preparamos a sua fatura..." @@ -8124,7 +8171,7 @@ msgstr "Visualizar Impressão" msgid "Print Ticket" msgstr "Imprimir Ingresso" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Imprimir ingressos" @@ -8139,7 +8186,7 @@ msgstr "Imprimir para PDF" msgid "Privacy Policy" msgstr "Política de Privacidade" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Processar reembolso" @@ -8180,7 +8227,7 @@ msgstr "Produto excluído com sucesso" msgid "Product Price Type" msgstr "Tipo de Preço do Produto" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Produto(s)" msgid "Products" msgstr "Produtos" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Produtos vendidos" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Produtos Vendidos" msgid "Products sorted successfully" msgstr "Produtos ordenados com sucesso" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Perfil" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Perfil atualizado com sucesso" @@ -8251,7 +8298,7 @@ msgstr "Perfil atualizado com sucesso" msgid "Progress" msgstr "Progresso" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Código promocional {promo_code} aplicado" @@ -8298,7 +8345,7 @@ msgstr "Relatório de códigos promocionais" msgid "Promo Only" msgstr "Apenas Promocional" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "E-mails promocionais podem resultar em suspensão da conta" @@ -8310,11 +8357,11 @@ msgstr "" "Forneça contexto ou instruções adicionais para esta pergunta. Use este campo para adicionar termos\n" "e condições, diretrizes ou quaisquer informações importantes que os participantes precisam saber antes de responder." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Forneça pelo menos um campo de endereço para o novo local." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Forneça as seguintes informações antes da próxima revisão do Stripe para manter os repasses fluindo." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Provedor" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Publicar" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "Análises em tempo real" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Receber atualizações de produtos do {0}." @@ -8439,6 +8486,10 @@ msgstr "Receber atualizações de produtos do {0}." msgid "Recent Account Signups" msgstr "Cadastros de contas recentes" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Participantes recentes" @@ -8447,7 +8498,7 @@ msgstr "Participantes recentes" msgid "Recent check-ins" msgstr "Check-ins recentes" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "Pedidos recentes" msgid "recipient" msgstr "destinatário" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Beneficiário" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "destinatários" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Destinatários" msgid "Recipients are available after the message is sent" msgstr "Os destinatários ficam disponíveis após o envio da mensagem" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Recorrente" @@ -8517,7 +8569,7 @@ msgstr "Reembolsar todos os pedidos destas datas" msgid "Refund all orders for this date" msgstr "Reembolsar todos os pedidos desta data" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Valor do reembolso" @@ -8537,7 +8589,7 @@ msgstr "Reembolso emitido" msgid "Refund order" msgstr "Pedido de reembolso" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Reembolsar pedido {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "Status do reembolso" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Reembolsado" @@ -8571,7 +8623,7 @@ msgstr "Reembolsado: {0}" msgid "Refunds" msgstr "Reembolsos" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Configurações regionais" @@ -8598,18 +8650,18 @@ msgstr "Usos restantes" msgid "Reminder scheduled" msgstr "Lembrete agendado" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "remover" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Remover" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Remover rótulo de todas as datas" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Reenviar e-mail de confirmação" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "Reenviar e-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "Reenviar confirmação por e-mail" @@ -8688,7 +8741,7 @@ msgstr "Reenviar ingresso" msgid "Resend ticket email" msgstr "Reenviar e-mail do ingresso" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Reenvio..." @@ -8729,30 +8782,30 @@ msgstr "Resposta" msgid "Response Details" msgstr "Detalhes da resposta" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Restaurar" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Restaurar evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Restaurar evento" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Restaurar organizador" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Restaure este evento para torná-lo visível novamente." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Restaure este organizador e torne-o ativo novamente." @@ -8777,7 +8830,7 @@ msgstr "Tentar trabalho novamente" msgid "Return to Event" msgstr "Voltar ao evento" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Voltar para a página do evento" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Reutilize uma conexão Stripe de outro organizador desta conta." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Receita" @@ -8818,7 +8872,7 @@ msgstr "Revogar convite" msgid "Revoke Offer" msgstr "Revogar oferta" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Venda começa {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Vendas" @@ -8930,7 +8984,7 @@ msgstr "Sábado" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Sábado" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Salvar" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Salvar Design do Ingresso" msgid "Save VAT settings" msgstr "Salvar configurações de IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "Salvar Configurações de IVA" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Local salvo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Locais salvos" @@ -9015,7 +9069,7 @@ msgstr "Locais salvos" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "Salvar uma substituição cria uma configuração dedicada para este organizador se ele estiver atualmente no padrão do sistema." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Escanear" @@ -9035,6 +9089,10 @@ msgstr "Modo leitor" msgid "Schedule" msgstr "Programação" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Programação criada com sucesso" @@ -9043,11 +9101,11 @@ msgstr "Programação criada com sucesso" msgid "Schedule ends on" msgstr "A programação termina em" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Agendar para depois" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Agendar mensagem" @@ -9061,11 +9119,11 @@ msgstr "A programação começa em" msgid "Scheduled" msgstr "Agendado" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Horário agendado" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Buscar" @@ -9228,11 +9286,11 @@ msgstr "Selecionar tudo" msgid "Select all on {0}" msgstr "Selecionar todas em {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Selecionar um evento" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Selecione o grupo de participantes" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Selecione o Nível do Produto" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Selecione os produtos" @@ -9298,7 +9356,7 @@ msgstr "Selecione data e hora de início" msgid "Select start time" msgstr "Selecionar hora de início" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Selecionar status" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Selecionar bilhete" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Selecionar ingressos" @@ -9325,7 +9383,7 @@ msgstr "Selecione o período de tempo" msgid "Select timezone" msgstr "Selecionar fuso horário" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Selecione quais participantes devem receber esta mensagem" @@ -9359,11 +9417,11 @@ msgstr "Vendendo rápido 🔥" msgid "Send" msgstr "Enviar" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Enviar uma mensagem" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Enviar como teste" @@ -9371,20 +9429,20 @@ msgstr "Enviar como teste" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "Enviar e-mails para participantes, titulares de ingressos ou proprietários de pedidos. As mensagens podem ser enviadas imediatamente ou agendadas para mais tarde." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Envie-me uma cópia" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Enviar Mensagem" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Enviar agora" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Enviar e-mail de confirmação do pedido e do tíquete" @@ -9392,7 +9450,7 @@ msgstr "Enviar e-mail de confirmação do pedido e do tíquete" msgid "Send real-time order and attendee data to your external systems." msgstr "Envie dados de pedidos e participantes em tempo real para seus sistemas externos." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Enviar email de notificação de reembolso" @@ -9400,11 +9458,11 @@ msgstr "Enviar email de notificação de reembolso" msgid "Send reset link" msgstr "Enviar link de redefinição" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Enviar teste" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Enviar para todas as sessões ou escolher uma específica" @@ -9429,15 +9487,15 @@ msgstr "Enviado" msgid "Sent By" msgstr "Enviado por" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Enviado aos participantes quando uma data agendada é cancelada" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Enviado aos clientes quando fazem um pedido" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Enviado a cada participante com detalhes do ingresso" @@ -9490,7 +9548,7 @@ msgstr "Defina as configurações padrão de taxa da plataforma para novos event msgid "Set default settings for new events created under this organizer." msgstr "Definir configurações padrão para novos eventos criados sob este organizador." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Defina a duração de cada data" @@ -9498,11 +9556,11 @@ msgstr "Defina a duração de cada data" msgid "Set number of dates" msgstr "Definir número de datas" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Definir ou limpar o rótulo da data" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Defina o horário de término de cada data para ser esta duração após seu horário de início." @@ -9510,7 +9568,7 @@ msgstr "Defina o horário de término de cada data para ser esta duração após msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Defina o número inicial para a numeração das faturas. Isso não poderá ser alterado depois que as faturas forem geradas." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Definir como ilimitado (remover limite)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Configure listas de check-in para diferentes entradas, sessões ou dias." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Configurar pagamentos" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Configurar programação" msgid "Set up your organization" msgstr "Configure a sua organização" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Configure sua programação" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Defina, altere ou remova o local da data ou os detalhes online" @@ -9599,11 +9665,11 @@ msgstr "Compartilhar página do organizador" msgid "Shared Capacity Management" msgstr "Gestão de capacidade compartilhada" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Deslocar horários" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "Horários deslocados para {count} data(s)" @@ -9635,8 +9701,8 @@ msgstr "Mostrar caixa de seleção de opt-in de marketing" msgid "Show marketing opt-in checkbox by default" msgstr "Mostrar caixa de seleção de opt-in de marketing por padrão" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Mostrar mais" @@ -9673,7 +9739,7 @@ msgstr "Mostrando {0}–{1} de {2}" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "Mostrando {MAX_VISIBLE} de {totalAvailable} datas. Digite para pesquisar." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "Mostrando as primeiras {0} — as {1} sessão(ões) restante(s) ainda serão alvo quando a mensagem for enviada." @@ -9710,7 +9776,7 @@ msgstr "Evento único" msgid "Single line text box" msgstr "Caixa de texto de linha única" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Ignorar datas editadas manualmente" @@ -9745,7 +9811,7 @@ msgstr "Links sociais e site" msgid "Sold" msgstr "Vendido" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Alguns detalhes estão ocultos do acesso público. Faça login para ver #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Algo deu errado" @@ -9784,7 +9850,7 @@ msgstr "Algo deu errado, tente novamente ou entre em contato com o suporte se o msgid "Something went wrong! Please try again" msgstr "Algo deu errado! Por favor, tente novamente" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Algo deu errado." @@ -9796,12 +9862,12 @@ msgstr "Algo deu errado. Por favor, tente novamente mais tarde." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Algo deu errado. Tente novamente." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Desculpe, este código promocional não é reconhecido" @@ -9897,12 +9963,12 @@ msgstr "Começa amanhã" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "Estado ou região" @@ -9914,7 +9980,7 @@ msgstr "Estatísticas" msgid "Statistics are based on account creation date" msgstr "As estatísticas são baseadas na data de criação da conta" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Estatísticas" @@ -9931,7 +9997,7 @@ msgstr "Estatísticas" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "ID de pagamento Stripe" msgid "Stripe payments are not enabled for this event." msgstr "Os pagamentos via Stripe não estão ativados para este evento." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "O Stripe precisará de mais alguns detalhes em breve" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "Dom" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "Assunto é obrigatório" msgid "Subject will appear here" msgstr "Assunto aparecerá aqui" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Assunto:" @@ -10024,11 +10090,11 @@ msgstr "Subtotal" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Sucesso" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Sucesso! {0} receberá um e-mail em breve." @@ -10173,7 +10239,7 @@ msgstr "Configurações atualizadas com sucesso" msgid "Successfully Updated Social Links" msgstr "Links sociais atualizados com sucesso" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Configurações de rastreamento atualizadas com sucesso" @@ -10226,7 +10292,7 @@ msgstr "Sueco" msgid "Switch Organizer" msgstr "Trocar organizador" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Padrão do Sistema" @@ -10238,7 +10304,7 @@ msgstr "Camiseta" msgid "Tap this screen to resume scanning" msgstr "Toque na tela para continuar" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "Direcionando participantes em {0} sessões selecionadas." @@ -10336,7 +10402,7 @@ msgstr "Fale-nos sobre a sua organização. Esta informação será exibida nas msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Informe com que frequência seu evento se repete e criaremos todas as datas para você." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Informe seu status de registro de IVA/ICMS para aplicarmos o tratamento correto às taxas da plataforma." @@ -10344,15 +10410,15 @@ msgstr "Informe seu status de registro de IVA/ICMS para aplicarmos o tratamento msgid "Template Active" msgstr "Modelo Ativo" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Modelo criado com sucesso" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Modelo excluído com sucesso" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Modelo salvo com sucesso" @@ -10378,8 +10444,8 @@ msgstr "Obrigado por participar!" msgid "Thanks," msgstr "Obrigado," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Esse código promocional é inválido" @@ -10399,7 +10465,7 @@ msgstr "A lista de check-in que você está procurando não existe." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "O código irá expirar em 10 minutos. Verifique a sua pasta de spam se não vir o email." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "A moeda em que a taxa fixa é definida. Será convertida para a moeda do pedido no checkout." @@ -10417,7 +10483,7 @@ msgstr "A moeda padrão para seus eventos." msgid "The default timezone for your events." msgstr "O fuso horário padrão para seus eventos." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "O endereço de e-mail foi alterado. O participante receberá um novo ingresso no endereço de e-mail atualizado." @@ -10442,7 +10508,7 @@ msgstr "A primeira data a partir da qual esta programação será gerada." msgid "The full event address" msgstr "O endereço completo do evento" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "O valor total do pedido será reembolsado para o método de pagamento original do cliente." @@ -10466,7 +10532,7 @@ msgstr "O idioma do cliente" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "O máximo é de {MAX_PREVIEW} sessões. Por favor, reduza o intervalo de datas, a frequência ou o número de sessões por dia." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "O número máximo de produtos para {0} é {1}" @@ -10475,7 +10541,7 @@ msgstr "O número máximo de produtos para {0} é {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "O organizador que você está procurando não foi encontrado. A página pode ter sido movida, excluída ou o URL está incorreto." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "A substituição é registrada no log de auditoria do pedido." @@ -10499,11 +10565,11 @@ msgstr "O preço exibido para o cliente não inclui impostos e taxas. Eles serã msgid "The primary brand color used for buttons and highlights" msgstr "A cor primária da marca usada para botões e destaques" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "O horário agendado é obrigatório" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "O horário agendado deve ser no futuro" @@ -10511,8 +10577,8 @@ msgstr "O horário agendado deve ser no futuro" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "A sessão de \"{title}\" originalmente agendada para {0} foi reagendada." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "O corpo do template contém sintaxe Liquid inválida. Por favor, corrija e tente novamente." @@ -10521,7 +10587,7 @@ msgstr "O corpo do template contém sintaxe Liquid inválida. Por favor, corrija msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "O título do evento que será exibido nos resultados dos mecanismos de pesquisa e ao compartilhar nas mídias sociais. Por padrão, o título do evento será usado" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "O número de IVA não pôde ser validado. Verifique o número e tente novamente." @@ -10534,19 +10600,19 @@ msgstr "Teatro" msgid "Theme & Colors" msgstr "Tema e cores" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "Não há produtos disponíveis para este evento" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "Não há produtos disponíveis nesta categoria" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "Não há datas futuras para este evento" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "Há um reembolso pendente. Aguarde a conclusão do processo antes de solicitar outro reembolso." @@ -10578,7 +10644,7 @@ msgstr "Esses detalhes são exibidos no ingresso do participante e no resumo do msgid "These details will only be shown if the order is completed successfully." msgstr "Esses detalhes só serão exibidos se o pedido for concluído com sucesso." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Esses detalhes substituirão qualquer local existente nas datas afetadas e serão exibidos nos ingressos dos participantes." @@ -10586,11 +10652,11 @@ msgstr "Esses detalhes substituirão qualquer local existente nas datas afetadas msgid "These settings apply only to copied embed code and won't be stored." msgstr "Estas configurações se aplicam apenas ao código de incorporação copiado e não serão armazenadas." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Estes modelos serão usados como padrão para todos os eventos em sua organização. Eventos individuais podem substituir estes modelos por suas próprias versões personalizadas." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Estes modelos substituirão os padrões do organizador apenas para este evento. Se nenhum modelo personalizado for definido aqui, o modelo do organizador será usado." @@ -10598,11 +10664,11 @@ msgstr "Estes modelos substituirão os padrões do organizador apenas para este msgid "Third" msgstr "Terceiro" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Isso se aplica a todas as datas correspondentes do evento, incluindo datas que não estão visíveis no momento. Os participantes registrados em qualquer uma dessas datas estarão acessíveis pelo compositor de mensagens assim que a atualização terminar." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Este participante tem um pedido não pago." @@ -10660,11 +10726,11 @@ msgstr "Esta data foi cancelada. Você ainda pode excluí-la para removê-la per msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Esta data está no passado. Ela será criada, mas não ficará visível para os participantes em datas futuras." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Esta data está marcada como esgotada." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Esta data não está mais disponível. Por favor, selecione outra data." @@ -10713,19 +10779,19 @@ msgstr "Essa mensagem será incluída no rodapé de todos os e-mails enviados a msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Esta mensagem só será mostrada se o pedido for concluído com sucesso. Pedidos aguardando pagamento não mostrarão esta mensagem." -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Este nome é visível para os usuários finais" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Esta sessão está na capacidade máxima" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "Esse pedido já foi pago." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "Esse pedido já foi reembolsado." @@ -10733,7 +10799,7 @@ msgstr "Esse pedido já foi reembolsado." msgid "This order has been cancelled." msgstr "Esse pedido foi cancelado." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "Este pedido expirou. Por favor, recomece." @@ -10745,15 +10811,15 @@ msgstr "Este pedido está sendo processado." msgid "This order is complete." msgstr "Esse pedido está concluído." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Essa página de pedidos não está mais disponível." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "Este pedido foi abandonado. Você pode iniciar um novo pedido a qualquer momento." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "Este pedido foi cancelado. Você pode iniciar um novo pedido a qualquer momento." @@ -10785,7 +10851,7 @@ msgstr "Este produto está destacado na página do evento" msgid "This product is sold out" msgstr "Este produto está esgotado" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Este relatório é apenas para fins informativos. Sempre consulte um profissional de impostos antes de usar esses dados para fins contábeis ou fiscais. Por favor, verifique com seu painel do Stripe, pois o Hi.Events pode não ter dados históricos." @@ -10797,11 +10863,11 @@ msgstr "Este link de redefinição de senha é inválido ou expirou." msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Este ingresso acabou de ser escaneado. Aguarde antes de escanear novamente." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Esse usuário não está ativo, pois não aceitou o convite." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Isto afetará {loadedAffectedCount} data(s)." @@ -10913,6 +10979,10 @@ msgstr "Preço do Ingresso" msgid "Ticket resent successfully" msgstr "Ingresso reenviado com sucesso" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "As vendas de ingressos para este evento foram encerradas" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Horário" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Tempo restante:" @@ -10994,7 +11064,7 @@ msgstr "Vezes usado" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Fuso horário" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "Para aumentar seus limites, entre em contato conosco em" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "Melhores organizadores (Últimos 14 dias)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Total" @@ -11075,11 +11146,11 @@ msgstr "Total de inscrições" msgid "Total Fee" msgstr "Taxa total" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Total de vendas brutas" msgid "Total order amount" msgstr "Valor total do pedido" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "Total reembolsado" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Total Reembolsado" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Acompanhe o crescimento e desempenho da conta por fonte de atribuição" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "Rastreamento e Análises" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Tipo" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Digite \"excluir\" para confirmar" @@ -11222,7 +11293,7 @@ msgstr "Não foi possível retirar o participante" msgid "Unable to create product. Please check the your details" msgstr "Não foi possível criar o produto. Por favor, verifique seus detalhes" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Não foi possível criar o produto. Por favor, verifique seus detalhes" @@ -11246,7 +11317,7 @@ msgstr "Não foi possível entrar na lista de espera" msgid "Unable to load attendee details." msgstr "Não foi possível carregar os detalhes do participante." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Não foi possível carregar os produtos para esta data. Por favor, tente novamente." @@ -11284,7 +11355,7 @@ msgstr "Estados Unidos" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Desconhecido" @@ -11304,7 +11375,7 @@ msgstr "Participante desconhecido" msgid "Unlimited" msgstr "Ilimitado" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Ilimitados disponíveis" @@ -11316,12 +11387,12 @@ msgstr "Permite usos ilimitados" msgid "Unnamed" msgstr "Sem nome" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Local sem nome" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Pedido não pago" @@ -11337,7 +11408,7 @@ msgstr "Não confiável" msgid "Upcoming" msgstr "Próximos" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "Atualizar {0}" msgid "Update Affiliate" msgstr "Atualizar afiliado" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Atualizar capacidade" @@ -11365,15 +11436,15 @@ msgstr "Atualizar nome e descrição do evento" msgid "Update event name, description and dates" msgstr "Atualizar o nome, a descrição e as datas do evento" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Atualizar rótulo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Atualizar local" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Atualizar perfil" @@ -11385,19 +11456,19 @@ msgstr "Atualização: {subjectTitle} — alterações na programação" msgid "Update: {subjectTitle} — session time changed" msgstr "Atualização: {subjectTitle} — horário da sessão alterado" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "{count} data(s) atualizada(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "Capacidade atualizada para {count} data(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "Rótulo atualizado para {count} data(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Local atualizado para {count} data(s)" @@ -11507,14 +11578,14 @@ msgstr "Gerenciamento de usuários" msgid "Users" msgstr "Usuários" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Os usuários podem alterar seu e-mail em <0>Configurações de perfil" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11526,13 +11597,13 @@ msgstr "Análise UTM" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "Validando seu número de IVA..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "IVA" @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "Número de IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "Número de IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "O número de IVA não deve conter espaços" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "O número de IVA deve começar com um código de país de 2 letras seguido por 8-15 caracteres alfanuméricos (ex: DE123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "Número de IVA validado com sucesso" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "Falha na validação do número de IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "Falha na validação do número de IVA. Por favor, verifique seu número de IVA." @@ -11581,12 +11652,12 @@ msgstr "Taxa de IVA" msgid "VAT registered" msgstr "Registrado para IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "Configurações de IVA salvas com sucesso" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "Configurações de IVA salvas. Estamos validando seu número de IVA em segundo plano." @@ -11594,15 +11665,15 @@ msgstr "Configurações de IVA salvas. Estamos validando seu número de IVA em s msgid "VAT settings updated" msgstr "Configurações de IVA atualizadas" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "Tratamento de IVA para Taxas da Plataforma" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "Tratamento de IVA para taxas da plataforma: Empresas registradas para IVA na UE podem usar o mecanismo de autoliquidação (0% - Artigo 196 da Diretiva IVA 2006/112/CE). Empresas não registradas para IVA são cobradas com IVA irlandês de 23%." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "Serviço de validação de IVA temporariamente indisponível" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "IVA: não registrado" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "Nome do local" msgid "Verification code" msgstr "Código de verificação" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "Verificar email" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Verifique seu e-mail" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "A verificar..." @@ -11655,8 +11735,7 @@ msgstr "Visualizar" msgid "View All" msgstr "Ver tudo" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "Ver detalhes de {0} {1}" msgid "View Event" msgstr "Ver evento" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Exibir página do evento" @@ -11729,8 +11808,8 @@ msgstr "Exibir no Google Maps" msgid "View Order" msgstr "Ver Pedido" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Ver detalhes do pedido" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "Aguardando" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "Aguardando pagamento" @@ -11800,7 +11879,7 @@ msgstr "Lista de espera" msgid "Waitlist Enabled" msgstr "Lista de espera ativada" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "Oferta da lista de espera expirou" @@ -11808,7 +11887,7 @@ msgstr "Oferta da lista de espera expirou" msgid "Waitlist triggered" msgstr "Lista de espera acionada" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Aviso: Esta é a configuração padrão do sistema. As alterações afetarão todas as contas que não têm uma configuração específica atribuída." @@ -11844,7 +11923,7 @@ msgstr "Não conseguimos encontrar o pedido que você está procurando. O link p msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "Não conseguimos encontrar o ingresso que você está procurando. O link pode ter expirado ou os detalhes do ingresso podem ter sido alterados." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "Não foi possível encontrar este pedido. Ele pode ter sido removido." @@ -11860,7 +11939,7 @@ msgstr "Não conseguimos acessar o Stripe agora. Tente novamente em instantes." msgid "We couldn't reorder the categories. Please try again." msgstr "Não conseguimos reordenar as categorias. Por favor, tente novamente." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Ocorreu um problema ao carregar esta página. Por favor, tente novamente." @@ -11881,6 +11960,10 @@ msgstr "Recomendamos dimensões de 2160px por 1080px e um tamanho máximo de arq msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "Recomendamos dimensões de 400px por 400px e tamanho máximo de 5MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "Usamos cookies para nos ajudar a entender como o site é utilizado e para melhorar sua experiência." @@ -11889,7 +11972,7 @@ msgstr "Usamos cookies para nos ajudar a entender como o site é utilizado e par msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "Não foi possível confirmar seu pagamento. Tente novamente ou entre em contato com o suporte." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "Não conseguimos validar seu número de IVA após várias tentativas. Continuaremos tentando em segundo plano. Por favor, volte mais tarde." @@ -11897,16 +11980,16 @@ msgstr "Não conseguimos validar seu número de IVA após várias tentativas. Co msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "Nós o notificaremos por e-mail se uma vaga ficar disponível para {productDisplayName}." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Abriremos um compositor de mensagens com um modelo pré-preenchido após salvar. Você revisa e envia — nada é enviado automaticamente." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "Enviaremos seus ingressos para este e-mail" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "Validaremos seu número de IVA em segundo plano. Se houver algum problema, avisaremos." @@ -12003,7 +12086,7 @@ msgstr "Bem-vindo a bordo! Faça login para continuar." msgid "Welcome back" msgstr "Bem-vindo de volta" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Bem-vindo de volta{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Bem-estar" msgid "What are Tiered Products?" msgstr "O que são Produtos em Camadas?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "O que é uma Categoria?" @@ -12143,6 +12226,10 @@ msgstr "Quando fecha o check-in" msgid "When check-in opens" msgstr "Quando abre o check-in" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "Quando ativado, as faturas serão geradas para os pedidos de ingressos. As faturas serão enviadas junto com o e-mail de confirmação do pedido. Os participantes também podem baixar suas faturas na página de confirmação do pedido." @@ -12155,7 +12242,7 @@ msgstr "Quando ativado, novos eventos permitirão que os participantes gerenciem msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "Quando ativado, novos eventos exibirão uma caixa de seleção de opt-in de marketing durante o checkout. Isso pode ser substituído por evento." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "Quando ativado, não serão cobradas taxas de aplicação nas transações Stripe Connect. Use isso para países onde as taxas de aplicação não são suportadas." @@ -12191,11 +12278,11 @@ msgstr "Pré-visualização do widget" msgid "Widget Settings" msgstr "Configurações do widget" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "Trabalho" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "ano" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Ano até agora" @@ -12247,11 +12334,11 @@ msgstr "anos" msgid "Yes" msgstr "Sim" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Sim - Tenho um número de registro de IVA da UE válido" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Sim, cancelar meu pedido" @@ -12267,7 +12354,7 @@ msgstr "Você está alterando seu e-mail para <0>{0}." msgid "You are impersonating <0>{0} ({1})" msgstr "Você está personificando <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Você está emitindo um reembolso parcial. O cliente será reembolsado em {0} {1}." @@ -12292,7 +12379,7 @@ msgstr "Você pode substituir isso para datas individuais mais tarde." msgid "You can still manually offer tickets if needed." msgstr "Você ainda pode oferecer ingressos manualmente, se necessário." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "Você não pode arquivar o último organizador ativo da sua conta." @@ -12313,11 +12400,11 @@ msgstr "Você não pode excluir a última categoria." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "Você não pode excluir este nível de preço porque já há produtos vendidos para este nível. Você pode ocultá-lo em vez disso." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "Não é possível editar a função ou o status do proprietário da conta." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "Não é possível reembolsar um pedido criado manualmente." @@ -12333,11 +12420,11 @@ msgstr "Você já aceitou este convite. Faça login para continuar." msgid "You have no pending email change." msgstr "Você não tem nenhuma alteração de e-mail pendente." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "Você atingiu seu limite de mensagens." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "O tempo para concluir seu pedido acabou." @@ -12345,11 +12432,11 @@ msgstr "O tempo para concluir seu pedido acabou." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Você adicionou taxas e impostos a um produto gratuito. Deseja removê-los?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "Você deve estar ciente de que este e-mail não é promocional" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Você deve reconhecer suas responsabilidades antes de salvar" @@ -12409,7 +12496,7 @@ msgstr "Você precisará de um produto antes de poder criar uma atribuição de msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Você precisará de pelo menos um produto para começar. Grátis, pago ou deixe o usuário decidir o que pagar." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Você está alterando horários de sessão" @@ -12421,7 +12508,7 @@ msgstr "Você vai participar de {0}!" msgid "You're on the waitlist!" msgstr "Você está na lista de espera!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "Você recebeu uma oferta de vaga!" @@ -12429,7 +12516,7 @@ msgstr "Você recebeu uma oferta de vaga!" msgid "You've changed the session time" msgstr "Você alterou o horário da sessão" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Sua conta tem limites de mensagens. Para aumentar seus limites, entre em contato conosco em" @@ -12457,11 +12544,11 @@ msgstr "Seu site incrível 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "Sua lista de check-in foi criada com sucesso. Compartilhe o link abaixo com sua equipe de check-in." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "Seu pedido atual será perdido." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Seus detalhes" @@ -12469,7 +12556,7 @@ msgstr "Seus detalhes" msgid "Your Email" msgstr "Seu e-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "Sua solicitação de alteração de e-mail para <0>{0} está pendente. Verifique seu e-mail para confirmar" @@ -12497,7 +12584,7 @@ msgstr "Seu nome" msgid "Your new password must be at least 8 characters long." msgstr "Sua nova senha deve ter pelo menos 8 caracteres." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Seu pedido" @@ -12509,7 +12596,7 @@ msgstr "Os detalhes do seu pedido foram atualizados. Um e-mail de confirmação msgid "Your order has been cancelled" msgstr "Seu pedido foi cancelado" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "Seu pedido foi cancelado." @@ -12534,7 +12621,7 @@ msgstr "Endereço do seu organizador" msgid "Your password" msgstr "Sua senha" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Seu pagamento está sendo processado." @@ -12542,11 +12629,11 @@ msgstr "Seu pagamento está sendo processado." msgid "Your payment is protected with bank-level encryption" msgstr "Seu pagamento está protegido com criptografia de nível bancário" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Seu pagamento não foi bem-sucedido, tente novamente." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Seu pagamento não foi bem-sucedido. Por favor, tente novamente." @@ -12554,7 +12641,7 @@ msgstr "Seu pagamento não foi bem-sucedido. Por favor, tente novamente." msgid "Your Plan" msgstr "Seu plano" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Seu reembolso está sendo processado." @@ -12570,19 +12657,19 @@ msgstr "Seu ingresso para" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "Seu ingresso continua válido — nenhuma ação é necessária, a menos que o novo horário não funcione para você. Por favor, responda a este e-mail se tiver alguma dúvida." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "Seus ingressos foram confirmados." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "Seu número de IVA está na fila para validação" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "Seu número de IVA será validado quando você salvar" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "Sua oferta da lista de espera expirou e não foi possível concluir seu pedido. Entre na lista de espera novamente para ser notificado quando houver mais vagas disponíveis." @@ -12590,19 +12677,19 @@ msgstr "Sua oferta da lista de espera expirou e não foi possível concluir seu msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "CEP / Código Postal" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "CEP ou código postal" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "CEP ou Código Postal" diff --git a/frontend/src/locales/pt.js b/frontend/src/locales/pt.js index 0ee1227570..5dcd77465a 100644 --- a/frontend/src/locales/pt.js +++ b/frontend/src/locales/pt.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Ainda não há nada para mostrar'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>desmarcado com sucesso\"],\"KMgp2+\":[[\"0\"],\" disponível\"],\"Pmr5xp\":[[\"0\"],\" criado com sucesso\"],\"FImCSc\":[[\"0\"],\" atualizado com sucesso\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dias, \",[\"hours\"],\" horas, \",[\"minutes\"],\" minutos e \",[\"seconds\"],\" segundos\"],\"f3RdEk\":[[\"hours\"],\" horas, \",[\"minutes\"],\" minutos e \",[\"seconds\"],\" segundos\"],\"fyE7Au\":[[\"minutos\"],\" minutos e \",[\"segundos\"],\" segundos\"],\"NlQ0cx\":[\"Primeiro evento de \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://seu-website.com\",\"qnSLLW\":\"<0>Por favor, insira o preço sem incluir impostos e taxas.<1>Impostos e taxas podem ser adicionados abaixo.\",\"ZjMs6e\":\"<0>O número de produtos disponíveis para este produto<1>Esse valor pode ser substituído se houver <2>Limites de Capacidade associados a este produto.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutos e 0 segundos\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Rua Principal 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Um campo de data. Perfeito para pedir uma data de nascimento, etc.\",\"6euFZ/\":[\"Um \",[\"type\"],\" padrão é automaticamente aplicado a todos os novos produtos. Você pode substituir isso para cada produto.\"],\"SMUbbQ\":\"Uma entrada suspensa permite apenas uma seleção\",\"qv4bfj\":\"Uma taxa, como uma taxa de reserva ou uma taxa de serviço\",\"POT0K/\":\"Um valor fixo por produto. Ex: $0,50 por produto\",\"f4vJgj\":\"Uma entrada de texto multilinha\",\"OIPtI5\":\"Uma porcentagem do preço do produto. Ex: 3,5% do preço do produto\",\"ZthcdI\":\"Um código promocional sem desconto pode ser usado para revelar produtos ocultos.\",\"AG/qmQ\":\"Uma opção Rádio tem múltiplas opções, mas apenas uma pode ser selecionada.\",\"h179TP\":\"Uma breve descrição do evento que será exibida nos resultados dos buscadores e no compartilhamento nas redes sociais. Por padrão, a descrição do evento será usada\",\"WKMnh4\":\"Uma entrada de texto de linha única\",\"BHZbFy\":\"Uma única pergunta por pedido. Ex: Qual é o seu endereço de entrega?\",\"Fuh+dI\":\"Uma única pergunta por produto. Ex: Qual é o seu tamanho de camiseta?\",\"RlJmQg\":\"Um imposto padrão, como IVA ou GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Aceitar transferências bancárias, cheques ou outros métodos de pagamento offline\",\"hrvLf4\":\"Aceitar pagamentos com cartão de crédito através do Stripe\",\"bfXQ+N\":\"Aceitar convite\",\"AeXO77\":\"Conta\",\"lkNdiH\":\"Nome da conta\",\"Puv7+X\":\"Configurações de Conta\",\"OmylXO\":\"Conta atualizada com sucesso\",\"7L01XJ\":\"Ações\",\"FQBaXG\":\"Ativar\",\"5T2HxQ\":\"Data de ativação\",\"F6pfE9\":\"Ativo\",\"/PN1DA\":\"Adicione uma descrição para esta lista de registro\",\"0/vPdA\":\"Adicione quaisquer notas sobre o participante. Estas não serão visíveis para o participante.\",\"Or1CPR\":\"Adicione quaisquer notas sobre o participante...\",\"l3sZO1\":\"Adicione quaisquer notas sobre o pedido. Estas não serão visíveis para o cliente.\",\"xMekgu\":\"Adicione quaisquer notas sobre o pedido...\",\"PGPGsL\":\"Adicionar descrição\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Adicione instruções para pagamentos offline (por exemplo, detalhes de transferência bancária, onde enviar cheques, prazos de pagamento)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Adicionar novo\",\"TZxnm8\":\"Adicionar opção\",\"24l4x6\":\"Adicionar Produto\",\"8q0EdE\":\"Adicionar Produto à Categoria\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Adicionar imposto ou taxa\",\"goOKRY\":\"Adicionar nível\",\"oZW/gT\":\"Adicionar ao calendário\",\"pn5qSs\":\"Informações adicionais\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Endereço\",\"NY/x1b\":\"Endereço Linha 1\",\"POdIrN\":\"Endereço Linha 1\",\"cormHa\":\"Endereço linha 2\",\"gwk5gg\":\"endereço linha 2\",\"U3pytU\":\"Administrador\",\"HLDaLi\":\"Os usuários administradores têm acesso total aos eventos e configurações da conta.\",\"W7AfhC\":\"Todos os participantes deste evento\",\"cde2hc\":\"Todos os Produtos\",\"5CQ+r0\":\"Permitir que participantes associados a pedidos não pagos façam check-in\",\"ipYKgM\":\"Permitir indexação do mecanismo de pesquisa\",\"LRbt6D\":\"Permitir que mecanismos de pesquisa indexem este evento\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Incrível, evento, palavras-chave...\",\"hehnjM\":\"Quantia\",\"R2O9Rg\":[\"Valor pago (\",[\"0\"],\")\"],\"V7MwOy\":\"Ocorreu um erro ao carregar a página\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Um erro inesperado ocorreu.\",\"byKna+\":\"Um erro inesperado ocorreu. Por favor, tente novamente.\",\"ubdMGz\":\"Quaisquer perguntas dos portadores de produtos serão enviadas para este endereço de e-mail. Este também será usado como o endereço de \\\"responder para\\\" em todos os e-mails enviados deste evento\",\"aAIQg2\":\"Aparência\",\"Ym1gnK\":\"aplicado\",\"sy6fss\":[\"Aplica-se a \",[\"0\"],\" produtos\"],\"kadJKg\":\"Aplica-se a 1 produto\",\"DB8zMK\":\"Aplicar\",\"GctSSm\":\"Aplicar código promocional\",\"ARBThj\":[\"Aplicar este \",[\"type\"],\" a todos os novos produtos\"],\"S0ctOE\":\"Arquivar evento\",\"TdfEV7\":\"Arquivado\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Tem certeza de que deseja ativar este participante?\",\"TvkW9+\":\"Tem certeza de que deseja arquivar este evento?\",\"/CV2x+\":\"Tem certeza de que deseja cancelar este participante? Isso anulará o ingresso\",\"YgRSEE\":\"Tem certeza de que deseja excluir este código promocional?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Tem certeza de que deseja fazer o rascunho deste evento? Isso tornará o evento invisível para o público\",\"mEHQ8I\":\"Tem certeza de que deseja tornar este evento público? Isso tornará o evento visível ao público\",\"s4JozW\":\"Tem certeza de que deseja restaurar este evento? Ele será restaurado como um evento rascunho.\",\"vJuISq\":\"Tem certeza de que deseja excluir esta Atribuição de Capacidade?\",\"baHeCz\":\"Tem certeza de que deseja excluir esta lista de registro?\",\"LBLOqH\":\"Pergunte uma vez por pedido\",\"wu98dY\":\"Perguntar uma vez por produto\",\"ss9PbX\":\"Participante\",\"m0CFV2\":\"Detalhes do participante\",\"QKim6l\":\"Participante não encontrado\",\"R5IT/I\":\"Notas do participante\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Bilhete do Participante\",\"9SZT4E\":\"Participantes\",\"iPBfZP\":\"Participantes Registrados\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Redimensionamento automático\",\"vZ5qKF\":\"Redimensionar automaticamente a altura do widget com base no conteúdo. Quando desativado, o widget preencherá a altura do contêiner.\",\"4lVaWA\":\"Aguardando pagamento offline\",\"2rHwhl\":\"Aguardando pagamento offline\",\"3wF4Q/\":\"Aguardando pagamento\",\"ioG+xt\":\"Aguardando Pagamento\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Impressionante Organizador Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Voltar à página do evento\",\"VCoEm+\":\"Volte ao login\",\"k1bLf+\":\"Cor de fundo\",\"I7xjqg\":\"Tipo de plano de fundo\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Endereço de cobrança\",\"/xC/im\":\"Configurações de cobrança\",\"rp/zaT\":\"Português brasileiro\",\"whqocw\":\"Ao se registrar, você concorda com nossos <0>Termos de Serviço e <1>Política de Privacidade.\",\"bcCn6r\":\"Tipo de cálculo\",\"+8bmSu\":\"Califórnia\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Cancelar\",\"Gjt/py\":\"Cancelar alteração de e-mail\",\"tVJk4q\":\"Cancelar pedido\",\"Os6n2a\":\"Cancelar pedido\",\"Mz7Ygx\":[\"Cancelar pedido \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Cancelado\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacidade\",\"V6Q5RZ\":\"Atribuição de Capacidade criada com sucesso\",\"k5p8dz\":\"Atribuição de Capacidade excluída com sucesso\",\"nDBs04\":\"Gestão de capacidade\",\"ddha3c\":\"As categorias permitem agrupar produtos. Por exemplo, você pode ter uma categoria para \\\"Ingressos\\\" e outra para \\\"Mercadorias\\\".\",\"iS0wAT\":\"As categorias ajudam a organizar seus produtos. Este título será exibido na página pública do evento.\",\"eorM7z\":\"Categorias reordenadas com sucesso.\",\"3EXqwa\":\"Categoria Criada com Sucesso\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Alterar a senha\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Fazer check-in de \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Fazer check-in e marcar pedido como pago\",\"QYLpB4\":\"Apenas fazer check-in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Confira este evento!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Lista de registro excluída com sucesso\",\"+hBhWk\":\"A lista de registro expirou\",\"mBsBHq\":\"A lista de registro não está ativa\",\"vPqpQG\":\"Lista de check-in não encontrada\",\"tejfAy\":\"Listas de Registro\",\"hD1ocH\":\"URL de check-in copiada para a área de transferência\",\"CNafaC\":\"As opções de caixa de seleção permitem seleções múltiplas\",\"SpabVf\":\"Caixas de seleção\",\"CRu4lK\":\"Registado\",\"znIg+z\":\"Finalizar compra\",\"1WnhCL\":\"Configurações de check-out\",\"6imsQS\":\"Chinês simplificado\",\"JjkX4+\":\"Escolha uma cor para o seu plano de fundo\",\"/Jizh9\":\"Escolha uma conta\",\"3wV73y\":\"Cidade\",\"FG98gC\":\"Limpar texto de pesquisa\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Clique para copiar\",\"yz7wBu\":\"Fechar\",\"62Ciis\":\"Fechar barra lateral\",\"EWPtMO\":\"Código\",\"ercTDX\":\"O código deve ter entre 3 e 50 caracteres\",\"oqr9HB\":\"Recolher este produto quando a página do evento for carregada inicialmente\",\"jZlrte\":\"Cor\",\"Vd+LC3\":\"A cor deve ser um código de cor hexadecimal válido. Exemplo: #ffffff\",\"1HfW/F\":\"Cores\",\"VZeG/A\":\"Em breve\",\"yPI7n9\":\"Palavras-chave separadas por vírgulas que descrevem o evento. Eles serão usados pelos mecanismos de pesquisa para ajudar a categorizar e indexar o evento\",\"NPZqBL\":\"Ordem completa\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Concluir pagamento\",\"qqWcBV\":\"Concluído\",\"6HK5Ct\":\"Pedidos concluídos\",\"NWVRtl\":\"Pedidos concluídos\",\"DwF9eH\":\"Código do componente\",\"Tf55h7\":\"Desconto configurado\",\"7VpPHA\":\"confirme\",\"ZaEJZM\":\"Confirmar alteração de e-mail\",\"yjkELF\":\"Confirme a nova senha\",\"xnWESi\":\"Confirme sua senha\",\"p2/GCq\":\"Confirme sua senha\",\"wnDgGj\":\"Confirmando endereço de e-mail...\",\"pbAk7a\":\"Conectar faixa\",\"UMGQOh\":\"Conecte-se com Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Detalhes da conexão\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continuar\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Texto do botão Continuar\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copiado\",\"T5rdis\":\"Copiado para a área de transferência\",\"he3ygx\":\"cópia de\",\"r2B2P8\":\"Copiar URL de check-in\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Link de cópia\",\"E6nRW7\":\"Copiar URL\",\"JNCzPW\":\"País\",\"IF7RiR\":\"Cobrir\",\"hYgDIe\":\"Criar\",\"b9XOHo\":[\"Criar \",[\"0\"]],\"k9RiLi\":\"Criar um Produto\",\"6kdXbW\":\"Crie um código promocional\",\"n5pRtF\":\"Crie um ingresso\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"criar um organizador\",\"ipP6Ue\":\"Criar participante\",\"VwdqVy\":\"Criar Atribuição de Capacidade\",\"EwoMtl\":\"Criar categoria\",\"XletzW\":\"Criar Categoria\",\"WVbTwK\":\"Criar Lista de Registro\",\"uN355O\":\"Criar Evento\",\"BOqY23\":\"Crie um novo\",\"kpJAeS\":\"Criar organizador\",\"a0EjD+\":\"Criar Produto\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Criar código promocional\",\"B3Mkdt\":\"Criar pergunta\",\"UKfi21\":\"Criar imposto ou taxa\",\"d+F6q9\":\"Criado\",\"Q2lUR2\":\"Moeda\",\"DCKkhU\":\"Senha atual\",\"uIElGP\":\"URL de mapas personalizados\",\"UEqXyt\":\"Intervalo personalizado\",\"876pfE\":\"Cliente\",\"QOg2Sf\":\"Personalize as configurações de e-mail e notificação deste evento\",\"Y9Z/vP\":\"Personalize a página inicial do evento e as mensagens de checkout\",\"2E2O5H\":\"Personalize as diversas configurações deste evento\",\"iJhSxe\":\"Personalize as configurações de SEO para este evento\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Zona de perigo\",\"ZQKLI1\":\"Zona de Perigo\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Data\",\"JvUngl\":\"Data e hora\",\"JJhRbH\":\"Capacidade do primeiro dia\",\"cnGeoo\":\"Excluir\",\"jRJZxD\":\"Excluir Capacidade\",\"VskHIx\":\"Excluir categoria\",\"Qrc8RZ\":\"Excluir Lista de Registro\",\"WHf154\":\"Excluir código\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Descrição\",\"YC3oXa\":\"Descrição para a equipe de registro\",\"URmyfc\":\"Detalhes\",\"1lRT3t\":\"Desativar esta capacidade rastreará as vendas, mas não as interromperá quando o limite for atingido\",\"H6Ma8Z\":\"Desconto\",\"ypJ62C\":\"% de desconto\",\"3LtiBI\":[\"Desconto em \",[\"0\"]],\"C8JLas\":\"Tipo de desconto\",\"1QfxQT\":\"Dispensar\",\"DZlSLn\":\"Etiqueta do documento\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Doação / Produto com valor voluntário\",\"OvNbls\":\"Baixar .ics\",\"kodV18\":\"Baixar CSV\",\"CELKku\":\"Baixar fatura\",\"LQrXcu\":\"Baixar fatura\",\"QIodqd\":\"Baixar código QR\",\"yhjU+j\":\"A baixar fatura\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Seleção suspensa\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicar evento\",\"3ogkAk\":\"Duplicar evento\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Duplicar Opções\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Madrugador\",\"ePK91l\":\"Editar\",\"N6j2JH\":[\"Editar \",[\"0\"]],\"kBkYSa\":\"Editar Capacidade\",\"oHE9JT\":\"Editar Atribuição de Capacidade\",\"j1Jl7s\":\"Editar categoria\",\"FU1gvP\":\"Editar Lista de Registro\",\"iFgaVN\":\"Editar código\",\"jrBSO1\":\"Editar organizador\",\"tdD/QN\":\"Editar Produto\",\"n143Tq\":\"Editar Categoria de Produto\",\"9BdS63\":\"Editar código promocional\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Editar pergunta\",\"poTr35\":\"Editar usuário\",\"GTOcxw\":\"Editar usuário\",\"pqFrv2\":\"por exemplo. 2,50 por US$ 2,50\",\"3yiej1\":\"por exemplo. 23,5 para 23,5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Configurações de e-mail e notificação\",\"ATGYL1\":\"Endereço de email\",\"hzKQCy\":\"Endereço de email\",\"HqP6Qf\":\"Alteração de e-mail cancelada com sucesso\",\"mISwW1\":\"Alteração de e-mail pendente\",\"APuxIE\":\"Confirmação de e-mail reenviada\",\"YaCgdO\":\"Confirmação de e-mail reenviada com sucesso\",\"jyt+cx\":\"Mensagem de rodapé do e-mail\",\"I6F3cp\":\"E-mail não verificado\",\"NTZ/NX\":\"Código de incorporação\",\"4rnJq4\":\"Script de incorporação\",\"8oPbg1\":\"Habilitar faturamento\",\"j6w7d/\":\"Ative esta capacidade para interromper as vendas de produtos quando o limite for atingido\",\"VFv2ZC\":\"Data de término\",\"237hSL\":\"Terminou\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Inglês\",\"MhVoma\":\"Insira um valor sem impostos e taxas.\",\"SlfejT\":\"Erro\",\"3Z223G\":\"Erro ao confirmar o endereço de e-mail\",\"a6gga1\":\"Erro ao confirmar a alteração do e-mail\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evento\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Data do Evento\",\"0Zptey\":\"Padrões de eventos\",\"QcCPs8\":\"Detalhes do evento\",\"6fuA9p\":\"Evento duplicado com sucesso\",\"AEuj2m\":\"Página inicial do evento\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Local do evento e detalhes do local\",\"OopDbA\":\"Event page\",\"4/If97\":\"Falha na atualização do status do evento. Por favor, tente novamente mais tarde\",\"btxLWj\":\"Status do evento atualizado\",\"nMU2d3\":\"URL do evento\",\"tst44n\":\"Eventos\",\"sZg7s1\":\"Data de Expiração\",\"KnN1Tu\":\"Expira\",\"uaSvqt\":\"Data de validade\",\"GS+Mus\":\"Exportar\",\"9xAp/j\":\"Falha ao cancelar participante\",\"ZpieFv\":\"Falha ao cancelar pedido\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Falha ao baixar a fatura. Por favor, tente novamente.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Falha ao carregar a Lista de Registro\",\"ZQ15eN\":\"Falha ao reenviar e-mail do ticket\",\"ejXy+D\":\"Falha ao ordenar os produtos\",\"PLUB/s\":\"Taxa\",\"/mfICu\":\"Tarifas\",\"LyFC7X\":\"Filtrar pedidos\",\"cSev+j\":\"Filtros\",\"CVw2MU\":[\"Filtros (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Primeiro número da fatura\",\"V1EGGU\":\"Primeiro nome\",\"kODvZJ\":\"Primeiro nome\",\"S+tm06\":\"O nome deve ter entre 1 e 50 caracteres\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Usado pela primeira vez\",\"TpqW74\":\"Fixo\",\"irpUxR\":\"Quantia fixa\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Esqueceu sua senha?\",\"2POOFK\":\"Livre\",\"P/OAYJ\":\"Produto Gratuito\",\"vAbVy9\":\"Produto gratuito, sem necessidade de informações de pagamento\",\"nLC6tu\":\"francês\",\"Weq9zb\":\"Geral\",\"DDcvSo\":\"alemão\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Voltar ao perfil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Agenda\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Vendas brutas\",\"yRg26W\":\"Vendas brutas\",\"R4r4XO\":\"Convidados\",\"26pGvx\":\"Tem um código promocional?\",\"V7yhws\":\"olá@awesome-events.com\",\"6K/IHl\":\"Aqui está um exemplo de como você pode usar o componente em sua aplicação.\",\"Y1SSqh\":\"Aqui está o componente React que você pode usar para incorporar o widget em sua aplicação.\",\"QuhVpV\":[\"Oi \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Escondido da vista do público\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"As perguntas ocultas são visíveis apenas para o organizador do evento e não para o cliente.\",\"vLyv1R\":\"Esconder\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Ocultar produto após a data de término da venda\",\"06s3w3\":\"Ocultar produto antes da data de início da venda\",\"axVMjA\":\"Ocultar produto, a menos que o usuário tenha um código promocional aplicável\",\"ySQGHV\":\"Ocultar produto quando esgotado\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Ocultar este produto dos clientes\",\"Da29Y6\":\"Ocultar esta pergunta\",\"fvDQhr\":\"Ocultar esta camada dos usuários\",\"lNipG+\":\"Ocultar um produto impedirá que os usuários o vejam na página do evento.\",\"ZOBwQn\":\"Design da página inicial\",\"PRuBTd\":\"Designer de página inicial\",\"YjVNGZ\":\"Visualização da página inicial\",\"c3E/kw\":\"Homero\",\"8k8Njd\":\"Quantos minutos o cliente tem para concluir o pedido. Recomendamos pelo menos 15 minutos\",\"ySxKZe\":\"Quantas vezes esse código pode ser usado?\",\"dZsDbK\":[\"Limite de caracteres HTML excedido: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Concordo com os <0>termos e condições\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Se ativado, a equipe de check-in pode marcar os participantes como registrados ou marcar o pedido como pago e registrar os participantes. Se desativado, os participantes associados a pedidos não pagos não poderão ser registrados.\",\"muXhGi\":\"Se ativado, o organizador receberá uma notificação por e-mail quando um novo pedido for feito\",\"6fLyj/\":\"Se você não solicitou essa alteração, altere imediatamente sua senha.\",\"n/ZDCz\":\"Imagem excluída com sucesso\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Imagem enviada com sucesso\",\"VyUuZb\":\"URL da imagem\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inativo\",\"T0K0yl\":\"Usuários inativos não podem fazer login.\",\"kO44sp\":\"Inclua detalhes de conexão para o seu evento online. Estes detalhes serão mostrados na página de resumo do pedido e no bilhete do participante.\",\"FlQKnG\":\"Incluir impostos e taxas no preço\",\"Vi+BiW\":[\"Inclui \",[\"0\"],\" produtos\"],\"lpm0+y\":\"Inclui 1 produto\",\"UiAk5P\":\"Inserir imagem\",\"OyLdaz\":\"Convite reenviado!\",\"HE6KcK\":\"Convite revogado!\",\"SQKPvQ\":\"Convidar Usuário\",\"bKOYkd\":\"Fatura baixada com sucesso\",\"alD1+n\":\"Notas da fatura\",\"kOtCs2\":\"Numeração da fatura\",\"UZ2GSZ\":\"Configurações da fatura\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Item\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Rótulo\",\"vXIe7J\":\"Língua\",\"2LMsOq\":\"Últimos 12 meses\",\"vfe90m\":\"Últimos 14 dias\",\"aK4uBd\":\"Últimas 24 horas\",\"uq2BmQ\":\"Últimos 30 dias\",\"bB6Ram\":\"Últimas 48 horas\",\"VlnB7s\":\"Últimos 6 meses\",\"ct2SYD\":\"Últimos 7 dias\",\"XgOuA7\":\"Últimos 90 dias\",\"I3yitW\":\"Último Login\",\"1ZaQUH\":\"Sobrenome\",\"UXBCwc\":\"Sobrenome\",\"tKCBU0\":\"Última vez usado\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Deixe em branco para usar a palavra padrão \\\"Fatura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Carregando...\",\"wJijgU\":\"Localização\",\"sQia9P\":\"Conecte-se\",\"zUDyah\":\"Fazendo login\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Sair\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Tornar o endereço de cobrança obrigatório durante o checkout\",\"MU3ijv\":\"Torne esta pergunta obrigatória\",\"wckWOP\":\"Gerenciar\",\"onpJrA\":\"Gerenciar participante\",\"n4SpU5\":\"Gerenciar evento\",\"WVgSTy\":\"Gerenciar pedido\",\"1MAvUY\":\"Gerenciar as configurações de pagamento e faturamento para este evento.\",\"cQrNR3\":\"Gerenciar perfil\",\"AtXtSw\":\"Gerencie impostos e taxas que podem ser aplicados aos seus produtos\",\"ophZVW\":\"Gerenciar ingressos\",\"DdHfeW\":\"Gerencie os detalhes da sua conta e configurações padrão\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Gerencie seus usuários e suas permissões\",\"1m+YT2\":\"Perguntas obrigatórias devem ser respondidas antes que o cliente possa finalizar a compra.\",\"Dim4LO\":\"Adicionar manualmente um participante\",\"e4KdjJ\":\"Adicionar participante manualmente\",\"vFjEnF\":\"Marcar como pago\",\"g9dPPQ\":\"Máximo por pedido\",\"l5OcwO\":\"Participante da mensagem\",\"Gv5AMu\":\"Participantes da mensagem\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Comprador de mensagens\",\"tNZzFb\":\"Conteúdo da mensagem\",\"lYDV/s\":\"Mensagem para participantes individuais\",\"V7DYWd\":\"Mensagem enviada\",\"t7TeQU\":\"Mensagens\",\"xFRMlO\":\"Mínimo por pedido\",\"QYcUEf\":\"Preço minimo\",\"RDie0n\":\"Diversos\",\"mYLhkl\":\"Configurações Diversas\",\"KYveV8\":\"Caixa de texto com várias linhas\",\"VD0iA7\":\"Múltiplas opções de preço. Perfeito para produtos antecipados, etc.\",\"/bhMdO\":\"Minha incrível descrição do evento...\",\"vX8/tc\":\"Meu incrível título de evento...\",\"hKtWk2\":\"Meu perfil\",\"fj5byd\":\"N/D\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nome\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navegue até o participante\",\"qqeAJM\":\"Nunca\",\"7vhWI8\":\"Nova Senha\",\"1UzENP\":\"Não\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Não há eventos arquivados para mostrar.\",\"q2LEDV\":\"Nenhum participante encontrado para este pedido.\",\"zlHa5R\":\"Nenhum participante foi adicionado a este pedido.\",\"Wjz5KP\":\"Nenhum participante para mostrar\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Sem Atribuições de Capacidade\",\"a/gMx2\":\"Nenhuma Lista de Registro\",\"tMFDem\":\"Nenhum dado disponível\",\"6Z/F61\":\"Nenhum dado para mostrar. Por favor, selecione um intervalo de datas\",\"fFeCKc\":\"Sem desconto\",\"HFucK5\":\"Não há eventos encerrados para mostrar.\",\"yAlJXG\":\"Nenhum evento para mostrar\",\"GqvPcv\":\"Nenhum filtro disponível\",\"KPWxKD\":\"Nenhuma mensagem para mostrar\",\"J2LkP8\":\"Não há pedidos para mostrar\",\"RBXXtB\":\"Nenhum método de pagamento está disponível no momento. Entre em contato com o organizador do evento para obter assistência.\",\"ZWEfBE\":\"Pagamento não necessário\",\"ZPoHOn\":\"Nenhum produto associado a este participante.\",\"Ya1JhR\":\"Nenhum produto disponível nesta categoria.\",\"FTfObB\":\"Nenhum Produto Ainda\",\"+Y976X\":\"Nenhum código promocional para mostrar\",\"MAavyl\":\"Nenhuma pergunta foi respondida por este participante.\",\"SnlQeq\":\"Nenhuma pergunta foi feita para este pedido.\",\"Ev2r9A\":\"Nenhum resultado\",\"gk5uwN\":\"Nenhum Resultado de Pesquisa\",\"RHyZUL\":\"Nenhum resultado de pesquisa.\",\"RY2eP1\":\"Nenhum imposto ou taxa foi adicionado.\",\"EdQY6l\":\"Nenhum\",\"OJx3wK\":\"Não disponível\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notas\",\"jtrY3S\":\"Nada para mostrar ainda\",\"hFwWnI\":\"Configurações de notificação\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notificar o organizador sobre novos pedidos\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Número de dias permitidos para pagamento (deixe em branco para omitir os termos de pagamento nas faturas)\",\"n86jmj\":\"Prefixo numérico\",\"mwe+2z\":\"Pedidos offline não são refletidos nas estatísticas do evento até que sejam marcados como pagos.\",\"dWBrJX\":\"O pagamento offline falhou. Por favor, tente novamente ou entre em contato com o organizador do evento.\",\"fcnqjw\":\"Instruções de Pagamento Offline\",\"+eZ7dp\":\"Pagamentos offline\",\"ojDQlR\":\"Informações sobre pagamentos offline\",\"u5oO/W\":\"Configurações de pagamentos offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"À venda\",\"Ug4SfW\":\"Depois de criar um evento, você o verá aqui.\",\"ZxnK5C\":\"Assim que você começar a coletar dados, eles aparecerão aqui.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Em andamento\",\"z+nuVJ\":\"Evento online\",\"WKHW0N\":\"Detalhes do evento on-line\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Abrir Página de Check-In\",\"OdnLE4\":\"Abrir barra lateral\",\"ZZEYpT\":[\"Opção \",[\"i\"]],\"oPknTP\":\"Informações adicionais opcionais a serem exibidas em todas as faturas (ex.: condições de pagamento, taxas por atraso, política de devolução)\",\"OrXJBY\":\"Prefixo opcional para os números das faturas (ex.: INV-)\",\"0zpgxV\":\"Opções\",\"BzEFor\":\"ou\",\"UYUgdb\":\"Ordem\",\"mm+eaX\":\"Encomenda n.º\",\"B3gPuX\":\"Pedido cancelado\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Data do pedido\",\"Tol4BF\":\"detalhes do pedido\",\"WbImlQ\":\"O pedido foi cancelado e o proprietário do pedido foi notificado.\",\"nAn4Oe\":\"Pedido marcado como pago\",\"uzEfRz\":\"Notas do pedido\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Referência do pedido\",\"acIJ41\":\"Status do pedido\",\"GX6dZv\":\"resumo do pedido\",\"tDTq0D\":\"Tempo limite do pedido\",\"1h+RBg\":\"Pedidos\",\"3y+V4p\":\"Endereço da organização\",\"GVcaW6\":\"Detalhes da organização\",\"nfnm9D\":\"Nome da organização\",\"G5RhpL\":\"Organizador\",\"mYygCM\":\"O organizador é obrigatório\",\"Pa6G7v\":\"Nome do organizador\",\"l894xP\":\"Os organizadores só podem gerenciar eventos e produtos. Eles não podem gerenciar usuários, configurações de conta ou informações de faturamento.\",\"fdjq4c\":\"Preenchimento\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"página não encontrada\",\"QbrUIo\":\"visualizações de página\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"pago\",\"HVW65c\":\"Produto Pago\",\"ZfxaB4\":\"Parcialmente reembolsado\",\"8ZsakT\":\"Senha\",\"TUJAyx\":\"A senha deve ter no mínimo 8 caracteres\",\"vwGkYB\":\"A senha deve conter pelo menos 8 caracteres\",\"BLTZ42\":\"Redefinição de senha com sucesso. Por favor faça login com sua nova senha.\",\"f7SUun\":\"senhas nao sao as mesmas\",\"aEDp5C\":\"Cole isto onde você deseja que o widget apareça.\",\"+23bI/\":\"Patrício\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Pagamento\",\"Lg+ewC\":\"Pagamento e faturamento\",\"DZjk8u\":\"Configurações de pagamento e faturamento\",\"lflimf\":\"Prazo para pagamento\",\"JhtZAK\":\"Pagamento falhou\",\"JEdsvQ\":\"Instruções de pagamento\",\"bLB3MJ\":\"Métodos de pagamento\",\"QzmQBG\":\"Provedor de pagamento\",\"lsxOPC\":\"Pagamento recebido\",\"wJTzyi\":\"Status do pagamento\",\"xgav5v\":\"Pagamento realizado com sucesso!\",\"R29lO5\":\"Termos de pagamento\",\"/roQKz\":\"Percentagem\",\"vPJ1FI\":\"Valor percentual\",\"xdA9ud\":\"Coloque isto no do seu site.\",\"blK94r\":\"Adicione pelo menos uma opção\",\"FJ9Yat\":\"Verifique se as informações fornecidas estão corretas\",\"TkQVup\":\"Verifique seu e-mail e senha e tente novamente\",\"sMiGXD\":\"Verifique se seu e-mail é válido\",\"Ajavq0\":\"Verifique seu e-mail para confirmar seu endereço de e-mail\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Continue na nova aba\",\"hcX103\":\"Por favor, crie um produto\",\"cdR8d6\":\"Por favor, crie um ingresso\",\"x2mjl4\":\"Por favor, insira um URL de imagem válido que aponte para uma imagem.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Observe\",\"C63rRe\":\"Por favor, volte para a página do evento para recomeçar.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Por favor, selecione pelo menos um produto\",\"igBrCH\":\"Verifique seu endereço de e-mail para acessar todos os recursos\",\"/IzmnP\":\"Por favor, aguarde enquanto preparamos a sua fatura...\",\"MOERNx\":\"Português\",\"qCJyMx\":\"Mensagem pós-check-out\",\"g2UNkE\":\"Distribuído por\",\"Rs7IQv\":\"Mensagem pré-checkout\",\"rdUucN\":\"Pré-visualização\",\"a7u1N9\":\"Preço\",\"CmoB9j\":\"Modo de exibição de preço\",\"BI7D9d\":\"Preço não definido\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Tipo de Preço\",\"6RmHKN\":\"Cor primária\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Cor do texto primário\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Imprimir todos os ingressos\",\"DKwDdj\":\"Imprimir ingressos\",\"K47k8R\":\"Produto\",\"1JwlHk\":\"Categoria de Produto\",\"U61sAj\":\"Categoria de produto atualizada com sucesso.\",\"1USFWA\":\"Produto excluído com sucesso\",\"4Y2FZT\":\"Tipo de Preço do Produto\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Vendas de Produtos\",\"U/R4Ng\":\"Nível do Produto\",\"sJsr1h\":\"Tipo de Produto\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produto(s)\",\"N0qXpE\":\"Produtos\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Produtos vendidos\",\"/u4DIx\":\"Produtos Vendidos\",\"DJQEZc\":\"Produtos ordenados com sucesso\",\"vERlcd\":\"Perfil\",\"kUlL8W\":\"Perfil atualizado com sucesso\",\"cl5WYc\":[\"Código promocional \",[\"promo_code\"],\" aplicado\"],\"P5sgAk\":\"Código promocional\",\"yKWfjC\":\"Página de código promocional\",\"RVb8Fo\":\"Códigos promocionais\",\"BZ9GWa\":\"Os códigos promocionais podem ser usados para oferecer descontos, acesso pré-venda ou fornecer acesso especial ao seu evento.\",\"OP094m\":\"Relatório de códigos promocionais\",\"4kyDD5\":\"Forneça contexto adicional ou instruções para esta pergunta. Utilize este campo para adicionar termos\\ne condições, diretrizes ou qualquer informação importante que os participantes precisem de saber antes de responder.\",\"toutGW\":\"Código QR\",\"LkMOWF\":\"Quantidade Disponível\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Pergunta excluída\",\"avf0gk\":\"Descrição da pergunta\",\"oQvMPn\":\"título da questão\",\"enzGAL\":\"Questões\",\"ROv2ZT\":\"Perguntas e Respostas\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Opção de rádio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Destinatário\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Reembolso falhou\",\"n10yGu\":\"Pedido de reembolso\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Reembolso pendente\",\"xHpVRl\":\"Status do reembolso\",\"/BI0y9\":\"Devolveu\",\"fgLNSM\":\"Registro\",\"9+8Vez\":\"Usos restantes\",\"tasfos\":\"remover\",\"t/YqKh\":\"Remover\",\"t9yxlZ\":\"Relatórios\",\"prZGMe\":\"Exigir endereço de cobrança\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Reenviar e-mail de confirmação\",\"wIa8Qe\":\"Reenviar convite\",\"VeKsnD\":\"Reenviar e-mail do pedido\",\"dFuEhO\":\"Reenviar e-mail do bilhete\",\"o6+Y6d\":\"Reenviando...\",\"OfhWJH\":\"Redefinir\",\"RfwZxd\":\"Redefinir senha\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restaurar evento\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Voltar para a página do evento\",\"8YBH95\":\"Receita\",\"PO/sOY\":\"Revogar convite\",\"GDvlUT\":\"Papel\",\"ELa4O9\":\"Data de término da venda\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Data de início da venda\",\"hBsw5C\":\"Vendas encerradas\",\"kpAzPe\":\"Início das vendas\",\"P/wEOX\":\"São Francisco\",\"tfDRzk\":\"Salvar\",\"IUwGEM\":\"Salvar alterações\",\"U65fiW\":\"Salvar organizador\",\"UGT5vp\":\"Salvar configurações\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Pesquise por nome do participante, e-mail ou número do pedido...\",\"+pr/FY\":\"Pesquisar por nome do evento...\",\"3zRbWw\":\"Pesquise por nome, e-mail ou número do pedido...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Procura por nome...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Pesquisar atribuições de capacidade...\",\"r9M1hc\":\"Pesquisar listas de registro...\",\"+0Yy2U\":\"Buscar produtos\",\"YIix5Y\":\"Procurar...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Cor secundária\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Cor do texto secundário\",\"02ePaq\":[\"Selecionar \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Selecione a categoria...\",\"kWI/37\":\"Selecione o organizador\",\"ixIx1f\":\"Selecione o Produto\",\"3oSV95\":\"Selecione o Nível do Produto\",\"C4Y1hA\":\"Selecione os produtos\",\"hAjDQy\":\"Selecione o status\",\"QYARw/\":\"Selecione o ingresso\",\"OMX4tH\":\"Selecionar ingressos\",\"DrwwNd\":\"Selecione o período de tempo\",\"O/7I0o\":\"Selecione...\",\"JlFcis\":\"Enviar\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Envie uma mensagem\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Enviar Mensagem\",\"D7ZemV\":\"Enviar confirmação do pedido e e-mail do ticket\",\"v1rRtW\":\"Enviar teste\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descrição SEO\",\"/SIY6o\":\"Palavras-chave SEO\",\"GfWoKv\":\"Configurações de SEO\",\"rXngLf\":\"Título SEO\",\"/jZOZa\":\"Taxa de serviço\",\"Bj/QGQ\":\"Fixar um preço mínimo e permitir que os utilizadores paguem mais se assim o desejarem\",\"L0pJmz\":\"Defina o número inicial para a numeração das faturas. Isso não poderá ser alterado depois que as faturas forem geradas.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Configurações\",\"Z8lGw6\":\"Compartilhar\",\"B2V3cA\":\"Compartilhar evento\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Mostrar quantidade disponível do produto\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Mostre mais\",\"izwOOD\":\"Mostrar impostos e taxas separadamente\",\"1SbbH8\":\"Mostrado ao cliente após o checkout, na página de resumo do pedido.\",\"YfHZv0\":\"Mostrado ao cliente antes de finalizar a compra\",\"CBBcly\":\"Mostra campos de endereço comuns, incluindo país\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Caixa de texto de linha única\",\"+P0Cn2\":\"Pular esta etapa\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Vendido\",\"Mi1rVn\":\"Vendido\",\"nwtY4N\":\"Algo correu mal\",\"GRChTw\":\"Algo deu errado ao excluir o imposto ou taxa\",\"YHFrbe\":\"Algo deu errado! Por favor, tente novamente\",\"kf83Ld\":\"Algo deu errado.\",\"fWsBTs\":\"Algo deu errado. Por favor, tente novamente.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Desculpe, este código promocional não é reconhecido\",\"65A04M\":\"espanhol\",\"mFuBqb\":\"Produto padrão com preço fixo\",\"D3iCkb\":\"Data de início\",\"/2by1f\":\"Estado ou Região\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Os pagamentos via Stripe não estão ativados para este evento.\",\"UJmAAK\":\"Assunto\",\"X2rrlw\":\"Subtotal\",\"zzDlyQ\":\"Sucesso\",\"b0HJ45\":[\"Sucesso! \",[\"0\"],\" receberá um e-mail em breve.\"],\"BJIEiF\":[[\"0\"],\" participante com sucesso\"],\"OtgNFx\":\"Endereço de e-mail confirmado com sucesso\",\"IKwyaF\":\"Alteração de e-mail confirmada com sucesso\",\"zLmvhE\":\"Participante criado com sucesso\",\"gP22tw\":\"Produto Criado com Sucesso\",\"9mZEgt\":\"Código promocional criado com sucesso\",\"aIA9C4\":\"Pergunta criada com sucesso\",\"J3RJSZ\":\"Participante atualizado com sucesso\",\"3suLF0\":\"Atribuição de Capacidade atualizada com sucesso\",\"Z+rnth\":\"Lista de Registro atualizada com sucesso\",\"vzJenu\":\"Configurações de e-mail atualizadas com sucesso\",\"7kOMfV\":\"Evento atualizado com sucesso\",\"G0KW+e\":\"Design da página inicial atualizado com sucesso\",\"k9m6/E\":\"Configurações da página inicial atualizadas com sucesso\",\"y/NR6s\":\"Local atualizado com sucesso\",\"73nxDO\":\"Configurações diversas atualizadas com sucesso\",\"4H80qv\":\"Pedido atualizado com sucesso\",\"6xCBVN\":\"Configurações de pagamento e faturamento atualizadas com sucesso\",\"1Ycaad\":\"Produto atualizado com sucesso\",\"70dYC8\":\"Código promocional atualizado com sucesso\",\"F+pJnL\":\"Configurações de SEO atualizadas com sucesso\",\"DXZRk5\":\"Suíte 100\",\"GNcfRk\":\"E-mail de suporte\",\"uRfugr\":\"Camiseta\",\"JpohL9\":\"Imposto\",\"geUFpZ\":\"Impostos e taxas\",\"dFHcIn\":\"Detalhes fiscais\",\"wQzCPX\":\"Informações fiscais que aparecerão na parte inferior de todas as faturas (ex.: número de IVA, registro fiscal)\",\"0RXCDo\":\"Imposto ou taxa excluídos com sucesso\",\"ZowkxF\":\"Impostos\",\"qu6/03\":\"Impostos e Taxas\",\"gypigA\":\"Esse código promocional é inválido\",\"5ShqeM\":\"A lista de check-in que você está procurando não existe.\",\"QXlz+n\":\"A moeda padrão para seus eventos.\",\"mnafgQ\":\"O fuso horário padrão para seus eventos.\",\"o7s5FA\":\"A língua em que o participante receberá as mensagens de correio eletrónico.\",\"NlfnUd\":\"O link que você clicou é inválido.\",\"HsFnrk\":[\"O número máximo de produtos para \",[\"0\"],\" é \",[\"1\"]],\"TSAiPM\":\"A página que você procura não existe\",\"MSmKHn\":\"O preço exibido ao cliente incluirá impostos e taxas.\",\"6zQOg1\":\"O preço apresentado ao cliente não incluirá impostos e taxas. Eles serão mostrados separadamente\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"O título do evento que será exibido nos resultados dos buscadores e no compartilhamento nas redes sociais. Por padrão, o título do evento será usado\",\"wDx3FF\":\"Não há produtos disponíveis para este evento\",\"pNgdBv\":\"Não há produtos disponíveis nesta categoria\",\"rMcHYt\":\"Há um reembolso pendente. Aguarde a conclusão antes de solicitar outro reembolso.\",\"F89D36\":\"Ocorreu um erro ao marcar o pedido como pago\",\"68Axnm\":\"Houve um erro ao processar seu pedido. Por favor, tente novamente.\",\"mVKOW6\":\"Houve um erro ao enviar a sua mensagem\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Este participante tem um pedido não pago.\",\"mf3FrP\":\"Esta categoria ainda não possui produtos.\",\"8QH2Il\":\"Esta categoria está oculta da visualização pública\",\"xxv3BZ\":\"Esta lista de registro expirou\",\"Sa7w7S\":\"Esta lista de registro expirou e não está mais disponível para registros.\",\"Uicx2U\":\"Esta lista de registro está ativa\",\"1k0Mp4\":\"Esta lista de registro ainda não está ativa\",\"K6fmBI\":\"Esta lista de registro ainda não está ativa e não está disponível para registros.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Essas informações serão exibidas na página de pagamento, no resumo do pedido e no e-mail de confirmação do pedido.\",\"XAHqAg\":\"Este é um produto geral, como uma camiseta ou uma caneca. Nenhum ingresso será emitido\",\"CNk/ro\":\"Este é um evento on-line\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Esta mensagem será incluída no rodapé de todos os e-mails enviados deste evento\",\"55i7Fa\":\"Esta mensagem só será mostrada se o pedido for concluído com sucesso. Pedidos aguardando pagamento não mostrarão esta mensagem.\",\"RjwlZt\":\"Este pedido já foi pago.\",\"5K8REg\":\"Este pedido já foi reembolsado.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Esse pedido foi cancelado.\",\"Q0zd4P\":\"Este pedido expirou. Por favor, recomece.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Este pedido está completo.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Esta página de pedido não está mais disponível.\",\"i0TtkR\":\"Isso substitui todas as configurações de visibilidade e ocultará o produto de todos os clientes.\",\"cRRc+F\":\"Este produto não pode ser excluído porque está associado a um pedido. Você pode ocultá-lo em vez disso.\",\"3Kzsk7\":\"Este produto é um ingresso. Os compradores receberão um ingresso ao comprar\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Este link de redefinição de senha é inválido ou expirou.\",\"IV9xTT\":\"Este usuário não está ativo porque não aceitou o convite.\",\"5AnPaO\":\"bilhete\",\"kjAL4v\":\"Bilhete\",\"dtGC3q\":\"O e-mail do ticket foi reenviado ao participante\",\"54q0zp\":\"Ingressos para\",\"xN9AhL\":[\"Nível \",[\"0\"]],\"jZj9y9\":\"Produto em Camadas\",\"8wITQA\":\"Os produtos escalonados permitem que você ofereça múltiplas opções de preço para o mesmo produto. Isso é perfeito para produtos antecipados ou para oferecer diferentes opções de preço para diferentes grupos de pessoas.\\\" # pt\",\"nn3mSR\":\"Tempo restante:\",\"s/0RpH\":\"Tempos usados\",\"y55eMd\":\"Vezes usado\",\"40Gx0U\":\"Fuso horário\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Ferramentas\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total antes de descontos\",\"NRWNfv\":\"Montante total do desconto\",\"BxsfMK\":\"Taxas totais\",\"2bR+8v\":\"Total de vendas brutas\",\"mpB/d9\":\"Valor total do pedido\",\"m3FM1g\":\"Total reembolsado\",\"jEbkcB\":\"Total Reembolsado\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Taxa total\",\"+zy2Nq\":\"Tipo\",\"FMdMfZ\":\"Não foi possível registrar o participante\",\"bPWBLL\":\"Não foi possível retirar o participante\",\"9+P7zk\":\"Não foi possível criar o produto. Por favor, verifique seus detalhes\",\"WLxtFC\":\"Não foi possível criar o produto. Por favor, verifique seus detalhes\",\"/cSMqv\":\"Não foi possível criar a pergunta. Por favor verifique os seus dados\",\"MH/lj8\":\"Não foi possível atualizar a pergunta. Por favor verifique os seus dados\",\"nnfSdK\":\"Clientes únicos\",\"Mqy/Zy\":\"Estados Unidos\",\"NIuIk1\":\"Ilimitado\",\"/p9Fhq\":\"Ilimitado disponível\",\"E0q9qH\":\"Usos ilimitados permitidos\",\"h10Wm5\":\"Pedido não pago\",\"ia8YsC\":\"Por vir\",\"TlEeFv\":\"Próximos eventos\",\"L/gNNk\":[\"Atualizar \",[\"0\"]],\"+qqX74\":\"Atualizar nome, descrição e datas do evento\",\"vXPSuB\":\"Atualizar perfil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copiado para a área de transferência\",\"e5lF64\":\"Exemplo de uso\",\"fiV0xj\":\"Limite de uso\",\"sGEOe4\":\"Use uma versão desfocada da imagem da capa como plano de fundo\",\"OadMRm\":\"Usar imagem de capa\",\"7PzzBU\":\"Do utilizador\",\"yDOdwQ\":\"Gerenciamento de usuários\",\"Sxm8rQ\":\"Usuários\",\"VEsDvU\":\"Os usuários podem alterar o e-mail em <0>Configurações do perfil\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"CUBA\",\"E/9LUk\":\"Nome do local\",\"jpctdh\":\"Visualizar\",\"Pte1Hv\":\"Ver Detalhes do Participante\",\"/5PEQz\":\"Ver página do evento\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Ver no Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Lista de check-in VIP\",\"tF+VVr\":\"Bilhete VIP\",\"2q/Q7x\":\"Visibilidade\",\"vmOFL/\":\"Não foi possível processar seu pagamento. Tente novamente ou entre em contato com o suporte.\",\"45Srzt\":\"Não conseguimos excluir a categoria. Por favor, tente novamente.\",\"/DNy62\":[\"Não encontramos nenhum ingresso correspondente a \",[\"0\"]],\"1E0vyy\":\"Não foi possível carregar os dados. Por favor, tente novamente.\",\"NmpGKr\":\"Não conseguimos reordenar as categorias. Por favor, tente novamente.\",\"BJtMTd\":\"Recomendamos dimensões de 2160px por 1080px e tamanho máximo de arquivo de 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Não foi possível confirmar seu pagamento. Tente novamente ou entre em contato com o suporte.\",\"Gspam9\":\"Estamos processando seu pedido. Por favor, aguarde...\",\"LuY52w\":\"Bem vindo a bordo! Por favor faça o login para continuar.\",\"dVxpp5\":[\"Bem vindo de volta\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"O que são Produtos em Camadas?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"O que é uma Categoria?\",\"gxeWAU\":\"A quais produtos este código se aplica?\",\"hFHnxR\":\"A quais produtos este código se aplica? (Aplica-se a todos por padrão)\",\"AeejQi\":\"A quais produtos essa capacidade deve se aplicar?\",\"Rb0XUE\":\"A que horas você chegará?\",\"5N4wLD\":\"Que tipo de pergunta é essa?\",\"gyLUYU\":\"Quando ativado, as faturas serão geradas para os pedidos de ingressos. As faturas serão enviadas junto com o e-mail de confirmação do pedido. Os participantes também podem baixar suas faturas na página de confirmação do pedido.\",\"D3opg4\":\"Quando os pagamentos offline estão ativados, os usuários poderão concluir seus pedidos e receber seus ingressos. Seus ingressos indicarão claramente que o pedido não foi pago, e a ferramenta de check-in notificará a equipe se um pedido exigir pagamento.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Quais ingressos devem ser associados a esta lista de registro?\",\"S+OdxP\":\"Quem está organizando este evento?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"A quem deve ser feita esta pergunta?\",\"VxFvXQ\":\"Incorporação de widget\",\"v1P7Gm\":\"Configurações do widget\",\"b4itZn\":\"Trabalhando\",\"hqmXmc\":\"Trabalhando...\",\"+G/XiQ\":\"Ano até agora\",\"l75CjT\":\"Sim\",\"QcwyCh\":\"Sim, remova-os\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Você está alterando seu e-mail para <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Você está offline\",\"sdB7+6\":\"Você pode criar um código promocional que direcione este produto no\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Você não pode mudar o tipo de produto, pois há participantes associados a este produto.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Você não pode registrar participantes com pedidos não pagos. Essa configuração pode ser alterada nas configurações do evento.\",\"c9Evkd\":\"Você não pode excluir a última categoria.\",\"6uwAvx\":\"Você não pode excluir este nível de preço porque já há produtos vendidos para este nível. Você pode ocultá-lo em vez disso.\",\"tFbRKJ\":\"Você não pode editar a função ou o status do proprietário da conta.\",\"fHfiEo\":\"Você não pode reembolsar um pedido criado manualmente.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Você tem acesso a várias contas. Escolha um para continuar.\",\"Z6q0Vl\":\"Você já aceitou este convite. Por favor faça o login para continuar.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Você não tem nenhuma alteração de e-mail pendente.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"O tempo para concluir seu pedido acabou.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Você deve reconhecer que este e-mail não é promocional\",\"3ZI8IL\":\"Você deve concordar com os termos e condições\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Você deve criar um ticket antes de poder adicionar manualmente um participante.\",\"jE4Z8R\":\"Você deve ter pelo menos uma faixa de preço\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Você terá que marcar um pedido como pago manualmente. Isso pode ser feito na página de gerenciamento de pedidos.\",\"L/+xOk\":\"Você precisará de um ingresso antes de poder criar uma lista de registro.\",\"Djl45M\":\"Você precisará de um produto antes de poder criar uma atribuição de capacidade.\",\"y3qNri\":\"Você precisará de pelo menos um produto para começar. Grátis, pago ou deixe o usuário decidir o que pagar.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"O nome da sua conta é usado nas páginas do evento e nos e-mails.\",\"veessc\":\"Seus participantes aparecerão aqui assim que se inscreverem em seu evento. Você também pode adicionar participantes manualmente.\",\"Eh5Wrd\":\"Seu site incrível 🎉\",\"lkMK2r\":\"Seus detalhes\",\"3ENYTQ\":[\"Sua solicitação de e-mail para <0>\",[\"0\"],\" está pendente. Por favor, verifique seu e-mail para confirmar\"],\"yZfBoy\":\"Sua mensagem foi enviada\",\"KSQ8An\":\"Seu pedido\",\"Jwiilf\":\"Seu pedido foi cancelado\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Seus pedidos aparecerão aqui assim que começarem a chegar.\",\"9TO8nT\":\"Sua senha\",\"P8hBau\":\"Seu pagamento está sendo processado.\",\"UdY1lL\":\"Seu pagamento não foi bem-sucedido, tente novamente.\",\"fzuM26\":\"Seu pagamento não foi bem-sucedido. Por favor, tente novamente.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Seu reembolso está sendo processado.\",\"IFHV2p\":\"Seu ingresso para\",\"x1PPdr\":\"CEP / Código Postal\",\"BM/KQm\":\"CEP ou Código postal\",\"+LtVBt\":\"CEP ou Código Postal\",\"25QDJ1\":\"- Clique para publicar\",\"WOyJmc\":\"- Clique para despublicar\",\"ncwQad\":\"(vazio)\",\"B/gRsg\":\"(nenhum)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" já fez check-in\"],\"3beCx0\":[[\"0\"],\" <0>com check-in\"],\"S4PqS9\":[[\"0\"],\" webhooks ativos\"],\"6MIiOI\":[[\"0\"],\" restante\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" de \",[\"1\"],\" lugares ocupados.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"rZTf6P\":[[\"0\"],\" lugares restantes\"],\"/HkCs4\":[[\"0\"],\" bilhetes\"],\"dtXkP9\":[[\"0\"],\" próximas datas\"],\"30bTiU\":[[\"activeCount\"],\" ativos\"],\"jTs4am\":[\"Logo \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" participantes estão registados para esta sessão.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponíveis\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" com check-in\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"há \",[\"diffHr\"],\" h\"],\"NRSLBe\":[\"há \",[\"diffMin\"],\" min\"],\"iYfwJE\":[\"há \",[\"diffSec\"],\" seg\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" participantes estão registados nas sessões afetadas.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de bilhetes\"],\"0cLzoF\":[[\"totalOccurrences\"],\" datas\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessões em \",[\"0\"],\" datas (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sessão\"],\"other\":[\"#\",\" sessões\"]}],\" por dia)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Taxas/Impostos\",\"B1St2O\":\"<0>As listas de check-in ajudam-no a gerir a entrada no evento por dia, área ou tipo de bilhete. Pode vincular bilhetes a listas específicas, como zonas VIP ou passes do Dia 1, e partilhar uma ligação de check-in segura com a equipa. Não é necessária conta. O check-in funciona em dispositivos móveis, computador ou tablet, usando a câmara do dispositivo ou um scanner USB HID. \",\"v9VSIS\":\"<0>Defina um limite total de participação que se aplica a vários tipos de bilhetes ao mesmo tempo.<1>Por exemplo, se você vincular um bilhete de <2>Passe Diário e um de <3>Fim de Semana Completo, ambos utilizarão o mesmo conjunto de vagas. Uma vez atingido o limite, todos os bilhetes vinculados param de ser vendidos automaticamente.\",\"vKXqag\":\"<0>Esta é a quantidade predefinida em todas as datas. A capacidade de cada data pode limitar ainda mais a disponibilidade na <1>página de Programação de Sessões.\",\"ZnVt5v\":\"<0>Os webhooks notificam instantaneamente serviços externos quando eventos ocorrem, como adicionar um novo participante ao seu CRM ou lista de e-mails no momento do registro, garantindo uma automação perfeita.<1>Use serviços de terceiros como <2>Zapier, <3>IFTTT ou <4>Make para criar fluxos de trabalho personalizados e automatizar tarefas.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" à taxa atual\"],\"M2DyLc\":\"1 webhook ativo\",\"6hIk/x\":\"1 participante está registado nas sessões afetadas.\",\"qOyE2U\":\"1 participante está registado para esta sessão.\",\"943BwI\":\"1 dia após a data de término\",\"yj3N+g\":\"1 dia após a data de início\",\"Z3etYG\":\"1 dia antes do evento\",\"szSnlj\":\"1 hora antes do evento\",\"yTsaLw\":\"1 bilhete\",\"nz96Ue\":\"1 tipo de bilhete\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 semana antes do evento\",\"09VFYl\":\"12 bilhetes oferecidos\",\"HR/cvw\":\"Rua Exemplo 123\",\"dgKxZ5\":\"135+ moedas e 40+ métodos de pagamento\",\"kMU5aM\":\"Um aviso de cancelamento foi enviado para\",\"o++0qa\":\"uma alteração de duração\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Um novo código de verificação foi enviado para o seu email\",\"sr2Je0\":\"uma alteração das horas de início/fim\",\"/z/bH1\":\"Uma breve descrição do seu organizador que será exibida aos seus usuários.\",\"aS0jtz\":\"Abandonado\",\"uyJsf6\":\"Sobre\",\"JvuLls\":\"Absorver taxa\",\"lk74+I\":\"Absorver taxa\",\"1uJlG9\":\"Cor de Destaque\",\"g3UF2V\":\"Aceitar\",\"K5+3xg\":\"Aceitar convite\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Conta · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informações da Conta\",\"EHNORh\":\"Conta não encontrada\",\"bPwFdf\":\"Contas\",\"AhwTa1\":\"Ação Necessária: Informações de IVA Necessárias\",\"APyAR/\":\"Eventos ativos\",\"kCl6ja\":\"Métodos de pagamento ativos\",\"XJOV1Y\":\"Atividade\",\"0YEoxS\":\"Adicionar uma data\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Adicionar uma Data Única\",\"CjvTPJ\":\"Adicionar outra hora\",\"0XCduh\":\"Adicione pelo menos uma hora\",\"/chGpa\":\"Adicione os dados de ligação para o evento online.\",\"UWWRyd\":\"Adicione perguntas personalizadas para coletar informações adicionais durante o checkout\",\"Z/dcxc\":\"Adicionar Data\",\"Q219NT\":\"Adicionar Datas\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Adicionar localização\",\"VX6WUv\":\"Adicionar Localização\",\"GCQlV2\":\"Adicione várias horas se realizar mais do que uma sessão por dia.\",\"7JF9w9\":\"Adicionar pergunta\",\"NLbIb6\":\"Adicionar este participante mesmo assim (ignorar capacidade)\",\"6PNlRV\":\"Adicione este evento ao seu calendário\",\"BGD9Yt\":\"Adicionar ingressos\",\"uIv4Op\":\"Adicione píxeis de rastreio às páginas públicas dos eventos e à página inicial do organizador. Será mostrado um banner de consentimento de cookies aos visitantes quando o rastreio estiver ativo.\",\"QN2F+7\":\"Adicionar Webhook\",\"NsWqSP\":\"Adicione seus perfis de redes sociais e o URL do site. Eles serão exibidos na sua página pública de organizador.\",\"bVjDs9\":\"Taxas adicionais\",\"MKqSg4\":\"Acesso de administrador necessário\",\"0Zypnp\":\"Painel de Administração\",\"YAV57v\":\"Afiliado\",\"I+utEq\":\"O código de afiliado não pode ser alterado\",\"/jHBj5\":\"Afiliado criado com sucesso\",\"uCFbG2\":\"Afiliado eliminado com sucesso\",\"ld8I+f\":\"Programa de afiliados\",\"a41PKA\":\"As vendas do afiliado serão rastreadas\",\"mJJh2s\":\"As vendas do afiliado não serão rastreadas. Isto irá desativar o afiliado.\",\"jabmnm\":\"Afiliado atualizado com sucesso\",\"CPXP5Z\":\"Afiliados\",\"9Wh+ug\":\"Afiliados exportados\",\"3cqmut\":\"Os afiliados ajudam-no a rastrear vendas geradas por parceiros e influenciadores. Crie códigos de afiliado e partilhe-os para monitorizar o desempenho.\",\"z7GAMJ\":\"todas\",\"N40H+G\":\"Todos\",\"7rLTkE\":\"Todos os eventos arquivados\",\"gKq1fa\":\"Todos os participantes\",\"63gRoO\":\"Todos os participantes das sessões selecionadas\",\"uWxIoH\":\"Todos os participantes desta sessão\",\"pMLul+\":\"Todas as moedas\",\"sgUdRZ\":\"Todas as datas\",\"e4q4uO\":\"Todas as Datas\",\"ZS/D7f\":\"Todos os eventos encerrados\",\"QsYjci\":\"Todos os eventos\",\"31KB8w\":\"Todos os trabalhos falhados eliminados\",\"D2g7C7\":\"Todos os trabalhos em fila para nova tentativa\",\"B4RFBk\":\"Todas as datas correspondentes\",\"F1/VgK\":\"Todas as sessões\",\"OpWjMq\":\"Todas as Sessões\",\"Sxm1lO\":\"Todos os estados\",\"dr7CWq\":\"Todos os próximos eventos\",\"GpT6Uf\":\"Permitir que os participantes atualizem suas informações de bilhete (nome, e-mail) através de um link seguro enviado com a confirmação do pedido.\",\"F3mW5G\":\"Permitir que os clientes se juntem a uma lista de espera quando este produto estiver esgotado\",\"c4uJfc\":\"Quase lá! Estamos apenas a aguardar que o seu pagamento seja processado. Isto deve demorar apenas alguns segundos.\",\"ocS8eq\":[\"Já tem uma conta? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Já dentro\",\"/H326L\":\"Já reembolsado\",\"USEpOK\":\"Já usas o Stripe noutro organizador? Reutiliza essa ligação.\",\"RtxQTF\":\"Também cancelar este pedido\",\"jkNgQR\":\"Também reembolsar este pedido\",\"xYqsHg\":\"Sempre disponível\",\"Wvrz79\":\"Valor pago\",\"Zkymb9\":\"Um email para associar a este afiliado. O afiliado não será notificado.\",\"vRznIT\":\"Ocorreu um erro ao verificar o status da exportação.\",\"eusccx\":\"Uma mensagem opcional para exibir no produto destacado, por exemplo \\\"A vender rapidamente 🔥\\\" ou \\\"Melhor valor\\\"\",\"5GJuNp\":[\"e mais \",[\"0\"],\"...\"],\"QNrkms\":\"Resposta atualizada com sucesso.\",\"+qygei\":\"Respostas\",\"GK7Lnt\":\"Respostas no checkout (ex.: escolha de refeição)\",\"lE8PgT\":\"Quaisquer datas que tenha personalizado manualmente serão mantidas.\",\"vP3Nzg\":[\"Aplica-se às \",[\"0\"],\" datas não canceladas atualmente carregadas nesta página.\"],\"kkVyZZ\":\"Aplica-se a quem abre o link sem sessão iniciada. Membros autenticados veem sempre tudo.\",\"je4muG\":[\"Aplica-se a todas as \",[\"0\"],\" datas não canceladas deste evento — incluindo datas não carregadas no momento.\"],\"YIIQtt\":\"Aplicar Alterações\",\"NzWX1Y\":\"Aplicar a\",\"Ps5oDT\":\"Aplicar a todos os bilhetes\",\"261RBr\":\"Aprovar mensagem\",\"naCW6Z\":\"Abril\",\"B495Gs\":\"Arquivar\",\"5sNliy\":\"Arquivar evento\",\"BrwnrJ\":\"Arquivar organizador\",\"E5eghW\":\"Arquive este evento para o ocultar do público. Pode restaurá-lo mais tarde.\",\"eqFkeI\":\"Arquive este organizador. Isso também arquivará todos os eventos pertencentes a este organizador.\",\"BzcxWv\":\"Organizadores arquivados\",\"9cQBd6\":\"Tem a certeza de que pretende arquivar este evento? Deixará de estar visível para o público.\",\"Trnl3E\":\"Tem a certeza de que pretende arquivar este organizador? Isso também arquivará todos os eventos pertencentes a este organizador.\",\"wOvn+e\":[\"Tem a certeza de que pretende cancelar \",[\"count\"],\" data(s)? Os participantes afetados serão notificados por e-mail.\"],\"GTxE0U\":\"Tem a certeza de que pretende cancelar esta data? Os participantes afetados serão notificados por e-mail.\",\"VkSk/i\":\"Tem a certeza de que pretende cancelar esta mensagem agendada?\",\"0aVEBY\":\"Tem certeza que deseja eliminar todos os trabalhos falhados?\",\"LchiNd\":\"Tem a certeza de que deseja eliminar este afiliado? Esta ação não pode ser anulada.\",\"vPeW/6\":\"Tem certeza de que deseja excluir esta configuração? Isso pode afetar as contas que a utilizam.\",\"h42Hc/\":\"Tem a certeza de que pretende eliminar esta data? Esta ação não pode ser anulada.\",\"JmVITJ\":\"Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo padrão.\",\"aLS+A6\":\"Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo do organizador ou padrão.\",\"5H3Z78\":\"Tem certeza de que deseja excluir este webhook?\",\"147G4h\":\"Tem a certeza de que quer sair?\",\"VDWChT\":\"Tem certeza de que deseja definir este organizador como rascunho? Isso tornará a página do organizador invisível ao público.\",\"pWtQJM\":\"Tem certeza de que deseja tornar este organizador público? Isso tornará a página do organizador visível ao público.\",\"EOqL/A\":\"Tem a certeza de que pretende oferecer um lugar a esta pessoa? Receberá uma notificação por e-mail.\",\"yAXqWW\":\"Tem a certeza de que pretende eliminar permanentemente esta data? Esta ação não pode ser anulada.\",\"WFHOlF\":\"Tem a certeza de que deseja publicar este evento? Uma vez publicado, será visível ao público.\",\"4TNVdy\":\"Tem a certeza de que deseja publicar este perfil de organizador? Uma vez publicado, será visível ao público.\",\"8x0pUg\":\"Tem a certeza de que deseja remover esta entrada da lista de espera?\",\"cDtoWq\":[\"Tem a certeza de que pretende reenviar a confirmação da encomenda para \",[\"0\"],\"?\"],\"xeIaKw\":[\"Tem a certeza de que pretende reenviar o bilhete para \",[\"0\"],\"?\"],\"BjbocR\":\"Tem a certeza de que pretende restaurar este evento?\",\"7MjfcR\":\"Tem a certeza de que pretende restaurar este organizador?\",\"ExDt3P\":\"Tem a certeza de que deseja despublicar este evento? Já não será visível ao público.\",\"5Qmxo/\":\"Tem a certeza de que deseja despublicar este perfil de organizador? Já não será visível ao público.\",\"Uqefyd\":\"Está registado para IVA na UE?\",\"+QARA4\":\"Arte\",\"tLf3yJ\":\"Como a sua empresa está sediada na Irlanda, o IVA irlandês de 23% aplica-se automaticamente a todas as taxas da plataforma.\",\"tMeVa/\":\"Solicitar nome e email para cada ingresso comprado\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Atribuir plano\",\"xdiER7\":\"Nível atribuído\",\"F2rX0R\":\"Pelo menos um tipo de evento deve ser selecionado\",\"BCmibk\":\"Tentativas\",\"6PecK3\":\"Presença e taxas de registo em todos os eventos\",\"K2tp3v\":\"participante\",\"AJ4rvK\":\"Participante cancelado\",\"qvylEK\":\"Participante criado\",\"Aspq3b\":\"Coleta de dados dos participantes\",\"fpb0rX\":\"Dados do participante copiados do pedido\",\"0R3Y+9\":\"E-mail do participante\",\"94aQMU\":\"Informações do participante\",\"KkrBiR\":\"Recolha de informações do participante\",\"av+gjP\":\"Nome do participante\",\"sjPjOg\":\"Notas do participante\",\"cosfD8\":\"Status do Participante\",\"D2qlBU\":\"Participante atualizado\",\"22BOve\":\"Participante atualizado com sucesso\",\"x8Vnvf\":\"O bilhete do participante não está incluído nesta lista\",\"/Ywywr\":\"participantes\",\"zLRobu\":\"participantes com check-in\",\"k3Tngl\":\"Participantes exportados\",\"UoIRW8\":\"Participantes registados\",\"5UbY+B\":\"Participantes com um ingresso específico\",\"4HVzhV\":\"Participantes:\",\"HVkhy2\":\"Análise de atribuição\",\"dMMjeD\":\"Detalhamento de atribuição\",\"1oPDuj\":\"Valor de atribuição\",\"DBHTm/\":\"Agosto\",\"JgREph\":\"A oferta automática está ativada\",\"V7Tejz\":\"Processar lista de espera automaticamente\",\"PZ7FTW\":\"Detetado automaticamente com base na cor de fundo, mas pode ser substituído\",\"zlnTuI\":\"Ofereça automaticamente bilhetes à próxima pessoa quando houver capacidade disponível. Se estiver desativado, pode processar a lista de espera manualmente na página da Lista de Espera.\",\"csDS2L\":\"Disponível\",\"clF06r\":\"Disponível para reembolso\",\"NB5+UG\":\"Tokens disponíveis\",\"L+wGOG\":\"Pendente\",\"qcw2OD\":\"Pagamento pendente\",\"kNmmvE\":\"Awesome Events Lda.\",\"iH8pgl\":\"Voltar\",\"TeSaQO\":\"Voltar para Contas\",\"X7Q/iM\":\"Voltar ao calendário\",\"kYqM1A\":\"Voltar ao evento\",\"s5QRF3\":\"Voltar às mensagens\",\"td/bh+\":\"Voltar aos Relatórios\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Preço Base\",\"hviJef\":\"Com base no período de venda global acima, não por data\",\"jIPNJG\":\"Informações básicas\",\"UabgBd\":\"O corpo é obrigatório\",\"HWXuQK\":\"Adicione esta página aos favoritos para gerir o seu pedido a qualquer momento.\",\"CUKVDt\":\"Personalize seus ingressos com um logotipo, cores e mensagem de rodapé personalizados.\",\"4BZj5p\":\"Proteção contra fraude integrada\",\"cr7kGH\":\"Edição em Massa\",\"1Fbd6n\":\"Editar Datas em Massa\",\"Eq6Tu9\":\"Falha na atualização em massa.\",\"9N+p+g\":\"Negócios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nome da empresa\",\"bv6RXK\":\"Rótulo do botão\",\"ChDLlO\":\"Texto do botão\",\"BUe8Wj\":\"O comprador paga\",\"qF1qbA\":\"Os compradores veem um preço limpo. A taxa da plataforma é deduzida do seu pagamento.\",\"dg05rc\":\"Ao adicionar píxeis de rastreio, reconhece que você e esta plataforma são responsáveis conjuntos pelos dados recolhidos. É da sua responsabilidade garantir que tem uma base legal para este tratamento ao abrigo das leis de privacidade aplicáveis (RGPD, CCPA, etc.).\",\"DFqasq\":[\"Ao continuar, concorda com os <0>Termos de Serviço de \",[\"0\"],\"\"],\"wVSa+U\":\"Por dia do mês\",\"0MnNgi\":\"Por dia da semana\",\"CetOZE\":\"Por tipo de bilhete\",\"lFdbRS\":\"Ignorar taxas de aplicação\",\"AjVXBS\":\"Calendário\",\"alkXJ5\":\"Vista de calendário\",\"2VLZwd\":\"Botão de chamada para ação\",\"rT2cV+\":\"Câmara\",\"7hYa9y\":\"Permissão da câmara negada. <0>Solicitar permissão novamente ou conceda acesso à câmara nas definições do navegador.\",\"D02dD9\":\"Campanha\",\"RRPA79\":\"Check-in indisponível\",\"OcVwAd\":[\"Cancelar \",[\"count\"],\" data(s)\"],\"H4nE+E\":\"Cancelar todos os produtos e devolvê-los ao conjunto disponível\",\"Py78q9\":\"Cancelar Data\",\"tOXAdc\":\"Cancelar irá cancelar todos os participantes associados a este pedido e devolver os bilhetes ao conjunto disponível.\",\"vev1Jl\":\"Cancelamento\",\"Ha17hq\":[[\"0\"],\" data(s) cancelada(s)\"],\"01sEfm\":\"Não é possível excluir a configuração padrão do sistema\",\"VsM1HH\":\"Atribuições de capacidade\",\"9bIMVF\":\"Gestão de capacidade\",\"H7K8og\":\"A capacidade deve ser 0 ou superior\",\"nzao08\":\"atualizações de capacidade\",\"4cp9NP\":\"Capacidade Utilizada\",\"K7tIrx\":\"Categoria\",\"o+XJ9D\":\"Alterar\",\"kJkjoB\":\"Alterar duração\",\"J0KExZ\":\"Alterar o limite de participantes\",\"CIHJJf\":\"Alterar configurações da lista de espera\",\"B5icLR\":[\"Duração alterada em \",[\"count\"],\" data(s)\"],\"Kb+0BT\":\"Cobranças\",\"2tbLdK\":\"Caridade\",\"BPWGKn\":\"Fazer check-in\",\"6uFFoY\":\"Check-out\",\"FjAlwK\":[\"Veja este evento: \",[\"0\"]],\"v4fiSg\":\"Verifique o seu email\",\"51AsAN\":\"Verifique sua caixa de entrada! Se houver ingressos associados a este e-mail, você receberá um link para visualizá-los.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Check-in criado\",\"F4SRy3\":\"Check-in excluído\",\"as6XfO\":[\"Check-in de \",[\"0\"],\" foi anulado\"],\"9s/wrQ\":\"Histórico de check-in\",\"Wwztk4\":\"Lista de Check-in\",\"9gPPUY\":\"Lista de Check-In Criada!\",\"dwjiJt\":\"Info da lista\",\"7od0PV\":\"listas de check-in\",\"f2vU9t\":\"Listas de Registo\",\"XprdTn\":\"Navegação de check-in\",\"5tV1in\":\"Progresso do check-in\",\"SHJwyq\":\"Taxa de registo\",\"qCqdg6\":\"Estado do Check-In\",\"cKj6OE\":\"Resumo de Registo\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Com check-in\",\"DM4gBB\":\"Chinês (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Escolher uma ação diferente\",\"fkb+y3\":\"Escolha uma localização guardada para aplicar.\",\"Zok1Gx\":\"Escolha um organizador\",\"pkk46Q\":\"Escolha um organizador\",\"Crr3pG\":\"Escolher calendário\",\"LAW8Vb\":\"Escolha a configuração padrão para novos eventos. Isso pode ser substituído para eventos individuais.\",\"pjp2n5\":\"Escolha quem paga a taxa da plataforma. Isso não afeta as taxas adicionais que você configurou nas configurações da sua conta.\",\"xCJdfg\":\"Limpar\",\"QyOWu9\":\"Limpar localização — voltar à predefinição do evento\",\"V8yTm6\":\"Limpar pesquisa\",\"kmnKnX\":\"Limpar remove qualquer substituição por sessão. As sessões afetadas voltarão à localização predefinida do evento.\",\"/o+aQX\":\"Clique para cancelar\",\"gD7WGV\":\"Clique para reabrir para novas vendas\",\"CySr+W\":\"Clique para ver as notas\",\"RG3szS\":\"fechar\",\"RWw9Lg\":\"Fechar modal\",\"XwdMMg\":\"O código só pode conter letras, números, hífenes e underscores\",\"+yMJb7\":\"O código é obrigatório\",\"m9SD3V\":\"O código deve ter pelo menos 3 caracteres\",\"V1krgP\":\"O código não deve ter mais de 20 caracteres\",\"psqIm5\":\"Colabore com sua equipe para criar eventos incríveis juntos.\",\"4bUH9i\":\"Recolher detalhes do participante para cada bilhete adquirido.\",\"TkfG8v\":\"Coletar dados por pedido\",\"96ryID\":\"Coletar dados por ingresso\",\"FpsvqB\":\"Modo de Cor\",\"jEu4bB\":\"Colunas\",\"CWk59I\":\"Comédia\",\"rPA+Gc\":\"Preferências de comunicação\",\"zFT5rr\":\"completo\",\"bUQMpb\":\"Concluir a configuração do Stripe\",\"744BMm\":\"Conclua a sua encomenda para garantir os seus bilhetes. Esta oferta é limitada no tempo, por isso não espere demasiado.\",\"5YrKW7\":\"Conclua o pagamento para garantir os seus bilhetes.\",\"xGU92i\":\"Complete o seu perfil para se juntar à equipa.\",\"QOhkyl\":\"Compor\",\"ih35UP\":\"Centro de conferências\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuração atribuída\",\"X1zdE7\":\"Configuração criada com sucesso\",\"mLBUMQ\":\"Configuração excluída com sucesso\",\"UIENhw\":\"Os nomes de configuração são visíveis para os usuários finais. As taxas fixas serão convertidas para a moeda do pedido na taxa de câmbio atual.\",\"eeZdaB\":\"Configuração atualizada com sucesso\",\"3cKoxx\":\"Configurações\",\"8v2LRU\":\"Configure os detalhes do evento, localização, opções de checkout e notificações por email.\",\"raw09+\":\"Configure como os dados dos participantes são coletados durante o checkout\",\"FI60XC\":\"Configurar impostos e taxas\",\"av6ukY\":\"Configure quais os produtos disponíveis para esta sessão e, opcionalmente, ajuste o preço.\",\"NGXKG/\":\"Confirmar endereço de e-mail\",\"JRQitQ\":\"Confirmar nova senha\",\"Auz0Mz\":\"Confirme seu e-mail para acessar todos os recursos.\",\"7+grte\":\"E-mail de confirmação enviado! Verifique sua caixa de entrada.\",\"n/7+7Q\":\"Confirmação enviada para\",\"x3wVFc\":\"Parabéns! O seu evento está agora visível para o público.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Conecte o Stripe para ativar a edição de modelos de email\",\"LmvZ+E\":\"Conecte o Stripe para ativar mensagens\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contato\",\"LOFgda\":[\"Contato \",[\"0\"]],\"41BQ3k\":\"Email de contacto\",\"KcXRN+\":\"E-mail de contato para suporte\",\"m8WD6t\":\"Continuar configuração\",\"0GwUT4\":\"Continuar para o pagamento\",\"sBV87H\":\"Continuar para a criação do evento\",\"nKtyYu\":\"Continuar para o próximo passo\",\"F3/nus\":\"Continuar para pagamento\",\"p2FRHj\":\"Controle como as taxas da plataforma são tratadas para este evento\",\"NqfabH\":\"Controle quem entra nesta data\",\"fmYxZx\":\"Controle quem entra e quando\",\"1JnTgU\":\"Copiado de cima\",\"FxVG/l\":\"Copiado para a área de transferência\",\"PiH3UR\":\"Copiado!\",\"4i7smN\":\"Copiar ID da conta\",\"uUPbPg\":\"Copiar link de afiliado\",\"iVm46+\":\"Copiar código\",\"cF2ICc\":\"Copiar link do cliente\",\"+2ZJ7N\":\"Copiar detalhes para o primeiro participante\",\"ZN1WLO\":\"Copiar Email\",\"y1eoq1\":\"Copiar link\",\"tUGbi8\":\"Copiar meus dados para:\",\"y22tv0\":\"Copie este link para compartilhá-lo em qualquer lugar\",\"/4gGIX\":\"Copiar para a área de transferência\",\"e0f4yB\":\"Não foi possível eliminar a localização\",\"vkiDx2\":\"Não foi possível preparar a atualização em massa.\",\"KOavaU\":\"Não foi possível obter os detalhes da morada\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Não foi possível guardar a data\",\"eeLExK\":\"Não foi possível guardar a localização\",\"P0rbCt\":\"Imagem de capa\",\"60u+dQ\":\"A imagem de capa será exibida no topo da sua página de evento\",\"2NLjA6\":\"A imagem de capa será exibida no topo da página do organizador\",\"GkrqoY\":\"Abrange todos os bilhetes\",\"zg4oSu\":[\"Criar modelo \",[\"0\"]],\"RKKhnW\":\"Crie um widget personalizado para vender ingressos no seu site.\",\"6sk7PP\":\"Criar um número fixo\",\"PhioFp\":\"Crie uma nova lista de check-in para uma sessão ativa, ou contacte o organizador se considera que se trata de um erro.\",\"yIRev4\":\"Criar uma senha\",\"j7xZ7J\":\"Crie organizadores adicionais para gerir marcas, departamentos ou séries de eventos separados numa conta. Cada organizador tem os seus próprios eventos, definições e página pública.\",\"xfKgwv\":\"Criar afiliado\",\"tudG8q\":\"Crie e configure ingressos e mercadorias para venda.\",\"YAl9Hg\":\"Criar Configuração\",\"BTne9e\":\"Criar modelos de e-mail personalizados para este evento que substituem os padrões do organizador\",\"YIDzi/\":\"Criar modelo personalizado\",\"tsGqx5\":\"Criar Data\",\"Nc3l/D\":\"Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Criar para esta data\",\"eWEV9G\":\"Criar nova senha\",\"wl2iai\":\"Criar Programação\",\"8AiKIu\":\"Criar ingresso ou produto\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Crie links rastreáveis para recompensar parceiros que promovem seu evento.\",\"dkAPxi\":\"Criar Webhook\",\"5slqwZ\":\"Crie seu evento\",\"JQNMrj\":\"Crie o seu primeiro evento\",\"ZCSSd+\":\"Crie seu próprio evento\",\"67NsZP\":\"A criar evento...\",\"H34qcM\":\"A criar organizador...\",\"1YMS+X\":\"A criar o seu evento, por favor aguarde\",\"yiy8Jt\":\"A criar o seu perfil de organizador, por favor aguarde\",\"lfLHNz\":\"O rótulo CTA é obrigatório\",\"0xLR6W\":\"Atribuído atualmente\",\"iTvh6I\":\"Atualmente disponível para compra\",\"A42Dqn\":\"Marca personalizada\",\"Guo0lU\":\"Data e hora personalizadas\",\"mimF6c\":\"Mensagem personalizada após o checkout\",\"WDMdn8\":\"Perguntas personalizadas\",\"O6mra8\":\"Perguntas personalizadas\",\"axv/Mi\":\"Modelo personalizado\",\"2YeVGY\":\"Link do cliente copiado para a área de transferência\",\"QMHSMS\":\"O cliente receberá um email confirmando o reembolso\",\"L/Qc+w\":\"Endereço de e-mail do cliente\",\"wpfWhJ\":\"Primeiro nome do cliente\",\"GIoqtA\":\"Sobrenome do cliente\",\"NihQNk\":\"Clientes\",\"7gsjkI\":\"Personalize os e-mails enviados aos seus clientes usando modelos Liquid. Estes modelos serão usados como padrões para todos os eventos em sua organização.\",\"xJaTUK\":\"Personalize o layout, cores e marca da página inicial do seu evento.\",\"MXZfGN\":\"Personalize as perguntas feitas durante o checkout para coletar informações importantes dos seus participantes.\",\"iX6SLo\":\"Personalize o texto exibido no botão continuar\",\"pxNIxa\":\"Personalize seu modelo de e-mail usando modelos Liquid\",\"3trPKm\":\"Personalize a aparência da sua página de organizador\",\"U0sC6H\":\"Diário\",\"/gWrVZ\":\"Receita diária, impostos, taxas e reembolsos em todos os eventos\",\"zgCHnE\":\"Relatório de vendas diárias\",\"nHm0AI\":\"Detalhamento das vendas diárias, impostos e taxas\",\"1aPnDT\":\"Dança\",\"pvnfJD\":\"Escuro\",\"MaB9wW\":\"Cancelamento de Data\",\"e6cAxJ\":\"Data cancelada\",\"81jBnC\":\"Data cancelada com sucesso\",\"a/C/6R\":\"Data criada com sucesso\",\"IW7Q+u\":\"Data eliminada\",\"rngCAz\":\"Data eliminada com sucesso\",\"lnYE59\":\"Data do evento\",\"gnBreG\":\"Data em que o pedido foi feito\",\"vHbfoQ\":\"Data reativada\",\"hvah+S\":\"Data reaberta para novas vendas\",\"Ez0YsD\":\"Data atualizada com sucesso\",\"VTsZuy\":\"As datas e horas são geridas na\",\"/ITcnz\":\"dia\",\"H7OUPr\":\"Dia\",\"JtHrX9\":\"Dia do Mês\",\"J/Upwb\":\"dias\",\"vDVA2I\":\"Dias do Mês\",\"rDLvlL\":\"Dias da Semana\",\"r6zgGo\":\"Dezembro\",\"jbq7j2\":\"Recusar\",\"ovBPCi\":\"Padrão\",\"JtI4vj\":\"Recolha predefinida de informações do participante\",\"ULjv90\":\"Capacidade predefinida por data\",\"3R/Tu2\":\"Gestão de taxas padrão\",\"1bZAZA\":\"O modelo padrão será usado\",\"HNlEFZ\":\"eliminar\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Eliminar \",[\"count\"],\" data(s) selecionada(s)? As datas com encomendas serão ignoradas. Esta ação não pode ser anulada.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Eliminar tudo\",\"6EkaOO\":\"Eliminar Data\",\"io0G93\":\"Eliminar evento\",\"+jw/c1\":\"Excluir imagem\",\"hdyeZ0\":\"Eliminar trabalho\",\"xxjZeP\":\"Eliminar localização\",\"sY3tIw\":\"Eliminar organizador\",\"UBv8UK\":\"Eliminar Permanentemente\",\"dPyJ15\":\"Excluir modelo\",\"mxsm1o\":\"Excluir esta pergunta? Isso não pode ser desfeito.\",\"snMaH4\":\"Excluir webhook\",\"LIZZLY\":[[\"0\"],\" data(s) eliminada(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desselecionar tudo\",\"NvuEhl\":\"Elementos de Design\",\"H8kMHT\":\"Não recebeu o código?\",\"G8KNgd\":\"Localização diferente\",\"E/QGRL\":\"Desativado\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Dispensar esta mensagem\",\"BREO0S\":\"Exibe uma caixa de seleção permitindo que os clientes optem por receber comunicações de marketing deste organizador de eventos.\",\"pfa8F0\":\"Nome a apresentar\",\"Kdpf90\":\"Não se esqueça!\",\"352VU2\":\"Não tem uma conta? <0>Registe-se\",\"AXXqG+\":\"Donativo\",\"DPfwMq\":\"Concluído\",\"JoPiZ2\":\"Instruções para a equipa\",\"2+O9st\":\"Baixe relatórios de vendas, participantes e financeiros para todos os pedidos concluídos.\",\"eneWvv\":\"Rascunho\",\"Ts8hhq\":\"Devido ao alto risco de spam, deve conectar uma conta Stripe antes de poder modificar modelos de email. Isto é para garantir que todos os organizadores de eventos sejam verificados e responsáveis.\",\"TnzbL+\":\"Devido ao elevado risco de spam, deve ligar uma conta Stripe antes de poder enviar mensagens aos participantes.\\nIsto serve para garantir que todos os organizadores de eventos são verificados e responsáveis.\",\"euc6Ns\":\"Duplicar\",\"YueC+F\":\"Duplicar Data\",\"KRmTkx\":\"Duplicar produto\",\"Jd3ymG\":\"A duração deve ser de, pelo menos, 1 minuto.\",\"KIjvtr\":\"Holandês\",\"22xieU\":\"ex. 180 (3 horas)\",\"/zajIE\":\"ex.: Sessão da Manhã\",\"SPKbfM\":\"ex.: Comprar ingressos, Registrar-se agora\",\"fc7wGW\":\"por exemplo, Atualização importante sobre os seus bilhetes\",\"54MPqC\":\"por exemplo, Standard, Premium, Enterprise\",\"3RQ81z\":\"Cada pessoa receberá um e-mail com um lugar reservado para concluir a sua compra.\",\"5oD9f/\":\"Mais cedo\",\"LTzmgK\":[\"Editar modelo \",[\"0\"]],\"v4+lcZ\":\"Editar afiliado\",\"2iZEz7\":\"Editar resposta\",\"t2bbp8\":\"Editar participante\",\"etaWtB\":\"Editar detalhes do participante\",\"+guao5\":\"Editar Configuração\",\"1Mp/A4\":\"Editar Data\",\"m0ZqOT\":\"Editar localização\",\"8oivFT\":\"Editar Localização\",\"vRWOrM\":\"Editar detalhes do pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Editado\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educação\",\"iiWXDL\":\"Falhas de elegibilidade\",\"zPiC+q\":\"Listas de Check-In Elegíveis\",\"SiVstt\":\"E-mails e mensagens agendadas\",\"V2sk3H\":\"E-mail e Modelos\",\"hbwCKE\":\"Endereço de email copiado para a área de transferência\",\"dSyJj6\":\"Os endereços de e-mail não coincidem\",\"elW7Tn\":\"Corpo do e-mail\",\"ZsZeV2\":\"O email é obrigatório\",\"Be4gD+\":\"Visualização do e-mail\",\"6IwNUc\":\"Modelos de e-mail\",\"H/UMUG\":\"Verificação de e-mail necessária\",\"L86zy2\":\"Email verificado com sucesso!\",\"FSN4TS\":\"Widget incorporado\",\"z9NkYY\":\"Widget incorporável\",\"Qj0GKe\":\"Ativar autoatendimento para participantes\",\"hEtQsg\":\"Ativar autoatendimento para participantes por padrão\",\"Upeg/u\":\"Habilitar este modelo para enviar e-mails\",\"7dSOhU\":\"Ativar lista de espera\",\"RxzN1M\":\"Ativado\",\"xDr/ct\":\"Fim\",\"sGjBEq\":\"Data e hora de término (opcional)\",\"PKXt9R\":\"A data de término deve ser posterior à data de início\",\"UmzbPa\":\"Data de fim da sessão\",\"ZayGC7\":\"Terminar numa data\",\"48Y16Q\":\"Hora de fim (opcional)\",\"jpNdOC\":\"Hora de fim da sessão\",\"TbaYrr\":[\"Terminou \",[\"0\"]],\"CFgwiw\":[\"Termina \",[\"0\"]],\"SqOIQU\":\"Introduza um valor de capacidade ou escolha ilimitado.\",\"h37gRz\":\"Introduza um rótulo ou escolha removê-lo.\",\"7YZofi\":\"Digite um assunto e corpo para ver a visualização\",\"khyScF\":\"Introduza um intervalo de tempo para deslocar.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Introduza o email do afiliado (opcional)\",\"ARkzso\":\"Introduza o nome do afiliado\",\"ej4L8b\":\"Introduzir capacidade\",\"6KnyG0\":\"Insira o e-mail\",\"INDKM9\":\"Digite o assunto do e-mail...\",\"xUgUTh\":\"Insira o primeiro nome\",\"9/1YKL\":\"Insira o apelido\",\"VpwcSk\":\"Introduza a nova senha\",\"kWg31j\":\"Introduza um código de afiliado único\",\"C3nD/1\":\"Digite seu e-mail\",\"VmXiz4\":\"Introduza o seu email e enviaremos instruções para redefinir a sua senha.\",\"n9V+ps\":\"Digite seu nome\",\"IdULhL\":\"Introduza o seu número de IVA incluindo o código do país, sem espaços (por exemplo, PT123456789, ES12345678A)\",\"o21Y+P\":\"inscrições\",\"X88/6w\":\"As inscrições aparecerão aqui quando os clientes se juntarem à lista de espera de produtos esgotados.\",\"LslKhj\":\"Erro ao carregar os registros\",\"VCNHvW\":\"Evento Arquivado\",\"ZD0XSb\":\"Evento arquivado com sucesso\",\"WgD6rb\":\"Categoria do evento\",\"b46pt5\":\"Imagem de capa do evento\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evento Criado\",\"1Hzev4\":\"Modelo personalizado do evento\",\"7u9/DO\":\"Evento eliminado com sucesso\",\"imgKgl\":\"Descrição do evento\",\"kJDmsI\":\"Detalhes do evento\",\"m/N7Zq\":\"Endereço Completo do Evento\",\"Nl1ZtM\":\"Local do evento\",\"PYs3rP\":\"Nome do evento\",\"HhwcTQ\":\"Nome do evento\",\"WZZzB6\":\"O nome do evento é obrigatório\",\"Wd5CDM\":\"O nome do evento deve ter menos de 150 caracteres\",\"4JzCvP\":\"Evento não disponível\",\"Gh9Oqb\":\"Nome do organizador do evento\",\"mImacG\":\"Página do Evento\",\"Hk9Ki/\":\"Evento restaurado com sucesso\",\"JyD0LH\":\"Configurações do evento\",\"cOePZk\":\"Hora do evento\",\"e8WNln\":\"Fuso horário do evento\",\"GeqWgj\":\"Fuso Horário do Evento\",\"XVLu2v\":\"Título do evento\",\"OfmsI9\":\"Evento muito recente\",\"4SILkp\":\"Totais do evento\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento Atualizado\",\"4K2OjV\":\"Local do Evento\",\"19j6uh\":\"Desempenho de Eventos\",\"PC3/fk\":\"Eventos a Iniciar nas Próximas 24 Horas\",\"nwiZdc\":[\"A cada \",[\"0\"]],\"2LJU4o\":[\"A cada \",[\"0\"],\" dias\"],\"yLiYx+\":[\"A cada \",[\"0\"],\" meses\"],\"nn9ice\":[\"A cada \",[\"0\"],\" semanas\"],\"Cdr8f9\":[\"A cada \",[\"0\"],\" semanas em \",[\"1\"]],\"GVEHRk\":[\"A cada \",[\"0\"],\" anos\"],\"fTFfOK\":\"Todo modelo de e-mail deve incluir um botão de chamada para ação que leva à página apropriada\",\"BVinvJ\":\"Exemplos: \\\"Como você soube de nós?\\\", \\\"Nome da empresa para fatura\\\"\",\"2hGPQG\":\"Exemplos: \\\"Tamanho da camiseta\\\", \\\"Preferência de refeição\\\", \\\"Cargo\\\"\",\"qNuTh3\":\"Exceção\",\"M1RnFv\":\"Expirado\",\"kF8HQ7\":\"Exportar respostas\",\"2KAI4N\":\"Exportar CSV\",\"JKfSAv\":\"Falha na exportação. Por favor, tente novamente.\",\"SVOEsu\":\"Exportação iniciada. Preparando arquivo...\",\"wuyaZh\":\"Exportação bem-sucedida\",\"9bpUSo\":\"A exportar afiliados\",\"jtrqH9\":\"Exportando participantes\",\"R4Oqr8\":\"Exportação concluída. Baixando arquivo...\",\"UlAK8E\":\"Exportando pedidos\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Falhado\",\"8uOlgz\":\"Falhou em\",\"tKcbYd\":\"Trabalhos falhados\",\"SsI9v/\":\"Falha ao abandonar o pedido. Por favor, tente novamente.\",\"LdPKPR\":\"Falha ao atribuir configuração\",\"PO0cfn\":\"Falha ao cancelar data\",\"YUX+f+\":\"Falha ao cancelar datas\",\"SIHgVQ\":\"Falha ao cancelar mensagem\",\"cEFg3R\":\"Falha ao criar afiliado\",\"dVgNF1\":\"Falha ao criar configuração\",\"fAoRRJ\":\"Falha ao criar programação\",\"U66oUa\":\"Falha ao criar modelo\",\"aFk48v\":\"Falha ao excluir configuração\",\"n1CYMH\":\"Falha ao eliminar data\",\"KXv+Qn\":\"Falha ao eliminar a data. Poderá ter encomendas associadas.\",\"JJ0uRo\":\"Falha ao eliminar datas\",\"rgoBnv\":\"Falha ao eliminar o evento\",\"Zw6LWb\":\"Falha ao eliminar trabalho\",\"tq0abZ\":\"Falha ao eliminar trabalhos\",\"2mkc3c\":\"Falha ao eliminar o organizador\",\"vKMKnu\":\"Falha ao excluir pergunta\",\"xFj7Yj\":\"Falha ao excluir modelo\",\"jo3Gm6\":\"Falha ao exportar afiliados\",\"Jjw03p\":\"Falha ao exportar participantes\",\"ZPwFnN\":\"Falha ao exportar pedidos\",\"zGE3CH\":\"Falha ao exportar relatório. Por favor, tente novamente.\",\"lS9/aZ\":\"Falha ao carregar destinatários\",\"X4o0MX\":\"Falha ao carregar o Webhook\",\"ETcU7q\":\"Falha ao oferecer lugar\",\"5670b9\":\"Falha ao oferecer bilhetes\",\"e5KIbI\":\"Falha ao reativar a data\",\"7zyx8a\":\"Falha ao remover da lista de espera\",\"A/P7PX\":\"Falha ao remover substituição\",\"ogWc1z\":\"Falha ao reabrir a data\",\"0+iwE5\":\"Falha ao reordenar perguntas\",\"EJPAcd\":\"Falha ao reenviar confirmação do pedido\",\"DjSbj3\":\"Falha ao reenviar bilhete\",\"YQ3QSS\":\"Falha ao reenviar código de verificação\",\"wDioLj\":\"Falha ao tentar novamente o trabalho\",\"DKYTWG\":\"Falha ao tentar novamente os trabalhos\",\"WRREqF\":\"Falha ao guardar substituição\",\"sj/eZA\":\"Falha ao guardar substituição de preço\",\"780n8A\":\"Falha ao guardar definições do produto\",\"zTkTF3\":\"Falha ao salvar modelo\",\"l6acRV\":\"Falha ao guardar as definições de IVA. Por favor, tente novamente.\",\"T6B2gk\":\"Falha ao enviar mensagem. Por favor, tente novamente.\",\"lKh069\":\"Falha ao iniciar a exportação\",\"t/KVOk\":\"Falha ao iniciar a personificação. Por favor, tente novamente.\",\"QXgjH0\":\"Falha ao parar a personificação. Por favor, tente novamente.\",\"i0QKrm\":\"Falha ao atualizar afiliado\",\"NNc33d\":\"Falha ao atualizar a resposta.\",\"E9jY+o\":\"Falha ao atualizar participante\",\"uQynyf\":\"Falha ao atualizar configuração\",\"i2PFQJ\":\"Falha ao atualizar o estado do evento\",\"EhlbcI\":\"Falha ao atualizar nível de mensagens\",\"rpGMzC\":\"Falha ao atualizar pedido\",\"T2aCOV\":\"Falha ao atualizar o estado do organizador\",\"Eeo/Gy\":\"Falha ao atualizar configuração\",\"kqA9lY\":\"Falha ao atualizar as definições de IVA\",\"7/9RFs\":\"Falha ao carregar imagem.\",\"nkNfWu\":\"Falha ao enviar imagem. Por favor, tente novamente.\",\"rxy0tG\":\"Falha ao verificar email\",\"QRUpCk\":\"Família\",\"5LO38w\":\"Pagamentos rápidos para o teu banco\",\"4lgLew\":\"Fevereiro\",\"9bHCo2\":\"Moeda da taxa\",\"/sV91a\":\"Gestão de taxas\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Taxas ignoradas\",\"cf35MA\":\"Festival\",\"pAey+4\":\"O ficheiro é demasiado grande. O tamanho máximo é 5MB.\",\"VejKUM\":\"Preencha primeiro os seus dados acima\",\"/n6q8B\":\"Cinema\",\"L1qbUx\":\"Filtrar participantes\",\"8OvVZZ\":\"Filtrar Participantes\",\"N/H3++\":\"Filtrar por data\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Termina de configurar o Stripe\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"Primeiro\",\"1vBhpG\":\"Primeiro participante\",\"4pwejF\":\"O primeiro nome é obrigatório\",\"3lkYdQ\":\"Taxa fixa\",\"6bBh3/\":\"Taxa Fixa\",\"zWqUyJ\":\"Taxa fixa cobrada por transação\",\"LWL3Bs\":\"A taxa fixa deve ser 0 ou maior\",\"0RI8m4\":\"Flash desligado\",\"q0923e\":\"Flash ligado\",\"lWxAUo\":\"Comida e bebida\",\"nFm+5u\":\"Texto do Rodapé\",\"a8nooQ\":\"Quarto\",\"mob/am\":\"Sex\",\"wtuVU4\":\"Frequência\",\"xVhQZV\":\"Sex\",\"39y5bn\":\"Sexta-feira\",\"f5UbZ0\":\"Propriedade total dos dados\",\"MY2SVM\":\"Reembolso total\",\"UsIfa8\":\"Morada completa resolvida\",\"PGQLdy\":\"futuras\",\"8N/j1s\":\"Apenas datas futuras\",\"yRx/6K\":\"As datas futuras serão copiadas com a capacidade reposta a zero\",\"T02gNN\":\"Admissão Geral\",\"3ep0Gx\":\"Informações gerais sobre seu organizador\",\"ziAjHi\":\"Gerar\",\"exy8uo\":\"Gerar código\",\"4CETZY\":\"Obter direções\",\"pjkEcB\":\"Receber pagamentos\",\"lGYzP6\":\"Recebe pagamentos com o Stripe\",\"ZDIydz\":\"Começar\",\"u6FPxT\":\"Obter Bilhetes\",\"8KDgYV\":\"Prepare seu evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Voltar\",\"oNL5vN\":\"Ir para a página do evento\",\"gHSuV/\":\"Ir para a página inicial\",\"8+Cj55\":\"Ir para a Programação\",\"6nDzTl\":\"Boa legibilidade\",\"76gPWk\":\"Entendido\",\"aGWZUr\":\"Receita bruta\",\"n8IUs7\":\"Receita Bruta\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestão de convidados\",\"NUsTc4\":\"A decorrer agora\",\"kTSQej\":[\"Olá \",[\"0\"],\", gerencie sua plataforma daqui.\"],\"dORAcs\":\"Aqui estão todos os ingressos associados ao seu endereço de e-mail.\",\"g+2103\":\"Aqui está o seu link de afiliado\",\"bVsnqU\":\"Olá,\",\"/iE8xx\":\"Taxa Hi.Events\",\"zppscQ\":\"Taxas da plataforma Hi.Events e discriminação do IVA por transação\",\"D+zLDD\":\"Oculto\",\"DRErHC\":\"Oculto para participantes - visível apenas para organizadores\",\"NNnsM0\":\"Ocultar opções avançadas\",\"P+5Pbo\":\"Ocultar respostas\",\"VMlRqi\":\"Ocultar detalhes\",\"FmogyU\":\"Ocultar Opções\",\"gtEbeW\":\"Destacar\",\"NF8sdv\":\"Mensagem de destaque\",\"MXSqmS\":\"Destacar este produto\",\"7ER2sc\":\"Destacado\",\"sq7vjE\":\"Os produtos destacados terão uma cor de fundo diferente para se destacarem na página do evento.\",\"1+WSY1\":\"Passatempos\",\"yY8wAv\":\"Horas\",\"sy9anN\":\"Quanto tempo um cliente tem para concluir a compra após receber uma oferta. Deixe vazio para sem limite de tempo.\",\"n2ilNh\":\"Durante quanto tempo decorre a programação?\",\"DMr2XN\":\"Com que frequência?\",\"AVpmAa\":\"Como pagar offline\",\"cceMns\":\"Como o IVA é aplicado às taxas da plataforma que cobramos.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Húngaro\",\"8Wgd41\":\"Reconheço as minhas responsabilidades enquanto responsável pelo tratamento de dados\",\"O8m7VA\":\"Concordo em receber notificações por email relacionadas com este evento\",\"YLgdk5\":\"Confirmo que esta é uma mensagem transacional relacionada com este evento\",\"4/kP5a\":\"Se uma nova aba não abriu automaticamente, clique no botão abaixo para continuar para o pagamento.\",\"W/eN+G\":\"Se em branco, o endereço será utilizado para gerar um link do Google Maps\",\"iIEaNB\":\"Se tem uma conta connosco, receberá um email com instruções sobre como redefinir a sua senha.\",\"an5hVd\":\"Imagens\",\"tSVr6t\":\"Personificar\",\"TWXU0c\":\"Personificar utilizador\",\"5LAZwq\":\"Personificação iniciada\",\"IMwcdR\":\"Personificação parada\",\"0I0Hac\":\"Aviso importante\",\"yD3avI\":\"Importante: Alterar o seu endereço de e-mail atualizará o link de acesso a este pedido. Será redirecionado para o novo link do pedido após guardar.\",\"jT142F\":[\"Em \",[\"diffHours\"],\" horas\"],\"OoSyqO\":[\"Em \",[\"diffMinutes\"],\" minutos\"],\"PdMhEx\":[\"nos últimos \",[\"0\"],\" min\"],\"u7r0G5\":\"Presencial — definir um local\",\"Ip0hl5\":\"in_person, online, unset ou mixed\",\"F1Xp97\":\"Participantes individuais\",\"85e6zs\":\"Inserir token Liquid\",\"38KFY0\":\"Inserir variável\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Pagamentos instantâneos via Stripe\",\"nbfdhU\":\"Integrações\",\"I8eJ6/\":\"Notas internas no bilhete do participante\",\"B2Tpo0\":\"Email inválido\",\"5tT0+u\":\"Formato de email inválido\",\"f9WRpE\":\"Tipo de ficheiro inválido. Por favor, carregue uma imagem.\",\"tnL+GP\":\"Sintaxe Liquid inválida. Por favor, corrija-a e tente novamente.\",\"N9JsFT\":\"Formato de número de IVA inválido\",\"g+lLS9\":\"Convidar um membro da equipe\",\"1z26sk\":\"Convidar membro da equipe\",\"KR0679\":\"Convidar membros da equipe\",\"aH6ZIb\":\"Convide sua equipe\",\"IuMGvq\":\"Fatura\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"item(ns)\",\"BzfzPK\":\"Itens\",\"rjyWPb\":\"Janeiro\",\"KmWyx0\":\"Trabalho\",\"o5r6b2\":\"Trabalho eliminado\",\"cd0jIM\":\"Detalhes do trabalho\",\"ruJO57\":\"Nome do trabalho\",\"YZi+Hu\":\"Trabalho em fila para nova tentativa\",\"nCywLA\":\"Participe de qualquer lugar\",\"SNzppu\":\"Juntar-se à lista de espera\",\"dLouFI\":[\"Juntar-se à lista de espera de \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrito\",\"u4ex5r\":\"Julho\",\"zeEQd/\":\"Junho\",\"MxjCqk\":\"Apenas procurando seus ingressos?\",\"xOTzt5\":\"agora mesmo\",\"0RihU9\":\"Acabou agora mesmo\",\"lB2hSG\":[\"Mantenha-me atualizado sobre notícias e eventos de \",[\"0\"]],\"ioFA9i\":\"Fica com o lucro.\",\"4Sffp7\":\"Rótulo da sessão\",\"o66QSP\":\"atualizações de rótulo\",\"RtKKbA\":\"Último\",\"DruLRc\":\"Últimos 14 dias\",\"ve9JTU\":\"O apelido é obrigatório\",\"h0Q9Iw\":\"Última resposta\",\"gw3Ur5\":\"Última ativação\",\"FIq1Ba\":\"Mais tarde\",\"xvnLMP\":\"Últimos check-ins\",\"pzAivY\":\"Latitude da localização resolvida\",\"N5TErv\":\"Deixar em branco para ilimitado\",\"L/hDDD\":\"Deixe em branco para aplicar esta lista de check-in a todas as sessões\",\"9Pf3wk\":\"Mantenha ativo para abranger todos os bilhetes do evento. Desative para escolher bilhetes específicos.\",\"Hq2BzX\":\"Avise-os da alteração\",\"+uexiy\":\"Avise-os das alterações\",\"exYcTF\":\"Biblioteca\",\"1njn7W\":\"Claro\",\"1qY5Ue\":\"Link expirado ou inválido\",\"+zSD/o\":\"Link para a página do evento\",\"psosdY\":\"Link para detalhes do pedido\",\"6JzK4N\":\"Link para o ingresso\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links permitidos\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Vista de lista\",\"dF6vP6\":\"Ao vivo\",\"fpMs2Z\":\"AO VIVO\",\"D9zTjx\":\"Eventos ao Vivo\",\"C33p4q\":\"Datas carregadas\",\"WdmJIX\":\"Carregando pré-visualização...\",\"IoDI2o\":\"Carregando tokens...\",\"G3Ge9Z\":\"A carregar registos do webhook...\",\"NFxlHW\":\"Carregando webhooks\",\"E0DoRM\":\"Localização eliminada\",\"NtLHT3\":\"Morada Formatada da Localização\",\"h4vxDc\":\"Latitude da Localização\",\"f2TMhR\":\"Longitude da Localização\",\"lnCo2f\":\"Modo de Localização\",\"8pmGFk\":\"Nome da Localização\",\"7w8lJU\":\"Localização guardada\",\"YsRXDD\":\"Localização atualizada\",\"A/kIva\":\"atualizações de localização\",\"VppBoU\":\"Localizações\",\"iG7KNr\":\"Logotipo\",\"vu7ZGG\":\"Logo e Capa\",\"gddQe0\":\"Logo e imagem de capa para seu organizador\",\"TBEnp1\":\"O logo será exibido no cabeçalho\",\"Jzu30R\":\"O logotipo será exibido no bilhete\",\"zKTMTg\":\"Longitude da localização resolvida\",\"PSRm6/\":\"Procurar os meus bilhetes\",\"yJFu/X\":\"Escritório Principal\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Gerir \",[\"0\"]],\"wZJfA8\":\"Gerir datas e horas do seu evento recorrente\",\"RlzPUE\":\"Gerir no Stripe\",\"6NXJRK\":\"Gerir Programação\",\"zXuaxY\":\"Gira a lista de espera do seu evento, consulte estatísticas e ofereça bilhetes aos participantes.\",\"BWTzAb\":\"Manual\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"Março\",\"pqRBOz\":\"Marcar como validado (substituição de administrador)\",\"2L3vle\":\"Máx. mensagens / 24h\",\"Qp4HWD\":\"Máx. destinatários / mensagem\",\"3JzsDb\":\"Maio\",\"agPptk\":\"Meio\",\"xDAtGP\":\"Mensagem\",\"bECJqy\":\"Mensagem aprovada com sucesso\",\"1jRD0v\":\"Enviar mensagens aos participantes com tickets específicos\",\"uQLXbS\":\"Mensagem cancelada\",\"48rf3i\":\"A mensagem não pode exceder 5000 caracteres\",\"ZPj0Q8\":\"Detalhes da mensagem\",\"Vjat/X\":\"A mensagem é obrigatória\",\"0/yJtP\":\"Enviar mensagem para proprietários de pedidos com produtos específicos\",\"saG4At\":\"Mensagem agendada\",\"mFdA+i\":\"Nível de mensagens\",\"v7xKtM\":\"Nível de mensagens atualizado com sucesso\",\"H9HlDe\":\"minutos\",\"agRWc1\":\"Minutos\",\"YYzBv9\":\"Seg\",\"zz/Wd/\":\"Modo\",\"fpMgHS\":\"Seg\",\"hty0d5\":\"Segunda-feira\",\"JbIgPz\":\"Os valores monetários são totais aproximados em todas as moedas\",\"qvF+MT\":\"Monitorar e gerir trabalhos de fundo falhados\",\"kY2ll9\":\"mês\",\"HajiZl\":\"Mês\",\"+8Nek/\":\"Mensal\",\"1LkxnU\":\"Padrão Mensal\",\"6jefe3\":\"meses\",\"f8jrkd\":\"mais\",\"JcD7qf\":\"Mais ações\",\"w36OkR\":\"Eventos mais vistos (Últimos 14 dias)\",\"+Y/na7\":\"Mover todas as datas para mais cedo ou mais tarde\",\"3DIpY0\":\"Várias localizações\",\"g9cQCP\":\"Vários tipos de bilhetes\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Meus Ingressos\",\"8/brI5\":\"O nome é obrigatório\",\"sFFArG\":\"O nome deve ter menos de 255 caracteres\",\"sCV5Yc\":\"Nome do evento\",\"xxU3NX\":\"Receita Líquida\",\"7I8LlL\":\"Nova capacidade\",\"n1GRql\":\"Novo rótulo\",\"y0Fcpd\":\"Nova localização\",\"ArHT/C\":\"Novos registos\",\"uK7xWf\":\"Nova hora:\",\"veT5Br\":\"Próxima sessão\",\"WXtl5X\":[\"Seguinte: \",[\"nextFormatted\"]],\"eWRECP\":\"Vida noturna\",\"HSw5l3\":\"Não - Sou um particular ou empresa não registada para IVA\",\"VHfLAW\":\"Sem contas\",\"+jIeoh\":\"Nenhuma conta encontrada\",\"074+X8\":\"Nenhum webhook ativo\",\"zxnup4\":\"Sem afiliados para mostrar\",\"Dwf4dR\":\"Ainda não há perguntas para participantes\",\"th7rdT\":\"Sem participantes\",\"PKySlW\":\"Ainda sem participantes para esta data.\",\"/UC6qk\":\"Nenhum dado de atribuição encontrado\",\"E2vYsO\":\"O Stripe ainda não comunicou nenhuma capacidade.\",\"amMkpL\":\"Sem capacidade\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nenhuma lista de check-in disponível para este evento.\",\"wG+knX\":\"Sem check-ins ainda\",\"+dAKxg\":\"Nenhuma configuração encontrada\",\"LiLk8u\":\"Sem ligações disponíveis\",\"eb47T5\":\"Nenhum dado encontrado para os filtros selecionados. Tente ajustar o período ou a moeda.\",\"lFVUyx\":\"Sem lista de check-in específica para a data\",\"I8mtzP\":\"Não há datas disponíveis este mês. Experimente navegar para outro mês.\",\"yDukIL\":\"Nenhuma data corresponde aos filtros atuais.\",\"B7phdj\":\"Nenhuma data corresponde aos seus filtros\",\"/ZB4Um\":\"Nenhuma data corresponde à sua pesquisa\",\"gEdNe8\":\"Ainda não há datas agendadas\",\"27GYXJ\":\"Sem datas agendadas.\",\"pZNOT9\":\"Sem data de fim\",\"dW40Uz\":\"Nenhum evento encontrado\",\"8pQ3NJ\":\"Nenhum evento a iniciar nas próximas 24 horas\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Sem trabalhos falhados\",\"EpvBAp\":\"Sem fatura\",\"XZkeaI\":\"Nenhum registro encontrado\",\"nrSs2u\":\"Nenhuma mensagem encontrada\",\"Rj99yx\":\"Sem sessões disponíveis\",\"IFU1IG\":\"Sem sessões nesta data\",\"OVFwlg\":\"Ainda não há perguntas de pedido\",\"EJ7bVz\":\"Nenhum pedido encontrado\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Ainda sem encomendas para esta data.\",\"wUv5xQ\":\"Sem atividade de organizador nos últimos 14 dias\",\"vLd1tV\":\"Sem contexto de organizador disponível.\",\"B7w4KY\":\"Nenhum outro organizador disponível\",\"PChXMe\":\"Sem pedidos pagos\",\"6jYQGG\":\"Nenhum evento passado\",\"CHzaTD\":\"Sem eventos populares nos últimos 14 dias\",\"zK/+ef\":\"Nenhum produto disponível para seleção\",\"M1/lXs\":\"Sem produtos configurados para este evento.\",\"kY7XDn\":\"Nenhum produto tem entradas na lista de espera\",\"wYiAtV\":\"Sem registos de contas recentes\",\"UW90md\":\"Nenhum destinatário encontrado\",\"QoAi8D\":\"Sem resposta\",\"JeO7SI\":\"Sem Resposta\",\"EK/G11\":\"Ainda sem respostas\",\"7J5OKy\":\"Ainda não existem localizações guardadas\",\"wpCjcf\":\"Ainda não há localizações guardadas. Aparecerão aqui à medida que criar eventos com moradas.\",\"mPdY6W\":\"Sem sugestões\",\"3sRuiW\":\"Nenhum ingresso encontrado\",\"k2C0ZR\":\"Sem próximas datas\",\"yM5c0q\":\"Nenhum evento futuro\",\"qpC74J\":\"Nenhum utilizador encontrado\",\"8wgkoi\":\"Sem eventos vistos nos últimos 14 dias\",\"Arzxc1\":\"Sem inscrições na lista de espera\",\"n5vdm2\":\"Nenhum evento de webhook foi registrado para este endpoint ainda. Os eventos aparecerão aqui assim que forem acionados.\",\"4GhX3c\":\"Nenhum Webhook\",\"4+am6b\":\"Não, manter-me aqui\",\"4JVMUi\":\"não editadas\",\"Itw24Q\":\"Sem check-in\",\"x5+Lcz\":\"Não Registado\",\"8n10sz\":\"Não Elegível\",\"kLvU3F\":\"Notificar os participantes e suspender vendas\",\"t9QlBd\":\"Novembro\",\"kAREMN\":\"Número de datas a criar\",\"6u1B3O\":\"Sessão\",\"mmoE62\":\"Sessão Cancelada\",\"UYWXdN\":\"Data de Fim da Sessão\",\"k7dZT5\":\"Hora de Fim da Sessão\",\"Opinaj\":\"Rótulo da Sessão\",\"V9flmL\":\"Programação de Sessões\",\"NUTUUs\":\"página de Programação de Sessões\",\"AT8UKD\":\"Data de Início da Sessão\",\"Um8bvD\":\"Hora de Início da Sessão\",\"Kh3WO8\":\"Resumo da Sessão\",\"byXCTu\":\"Sessões\",\"KATw3p\":\"Sessões (apenas futuras)\",\"85rTR2\":\"As sessões podem ser configuradas após a criação\",\"dzQfDY\":\"Outubro\",\"BwJKBw\":\"de\",\"9h7RDh\":\"Oferecer\",\"EfK2O6\":\"Oferecer lugar\",\"3sVRey\":\"Oferecer bilhetes\",\"2O7Ybb\":\"Tempo limite da oferta\",\"1jUg5D\":\"Oferecido\",\"l+/HS6\":[\"As ofertas expiram após \",[\"timeoutHours\"],\" horas.\"],\"lQgMLn\":\"Nome do escritório ou local\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Pagamento offline\",\"nO3VbP\":[\"Em promoção \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — fornecer dados de ligação\",\"LuZBbx\":\"Online e presencial\",\"IXuOqt\":\"Online e presencial — ver programação\",\"w3DG44\":\"Detalhes da Ligação Online\",\"WjSpu5\":\"Evento online\",\"TP6jss\":\"Detalhes da ligação do evento online\",\"NdOxqr\":\"Apenas os administradores da conta podem eliminar ou arquivar eventos. Contacte o administrador da sua conta para obter ajuda.\",\"rnoDMF\":\"Apenas os administradores da conta podem eliminar ou arquivar organizadores. Contacte o administrador da sua conta para obter ajuda.\",\"bU7oUm\":\"Enviar apenas para pedidos com esses status\",\"M2w1ni\":\"Apenas visível com código promocional\",\"y8Bm7C\":\"Abrir check-in\",\"RLz7P+\":\"Abrir sessão\",\"cDSdPb\":\"Alcunha opcional mostrada nos seletores, ex.: \\\"Sala de Conferências da Sede\\\"\",\"HXMJxH\":\"Texto opcional para avisos legais, informações de contacto ou notas de agradecimento (apenas uma linha)\",\"L565X2\":\"opções\",\"8m9emP\":\"ou adicionar uma única data\",\"dSeVIm\":\"encomenda\",\"c/TIyD\":\"Pedido e Bilhete\",\"H5qWhm\":\"Pedido cancelado\",\"b6+Y+n\":\"Pedido concluído\",\"x4MLWE\":\"Confirmação do pedido\",\"CsTTH0\":\"Confirmação do pedido reenviada com sucesso\",\"ppuQR4\":\"Pedido criado\",\"0UZTSq\":\"Moeda do Pedido\",\"xtQzag\":\"Detalhes da encomenda\",\"HdmwrI\":\"E-mail do pedido\",\"bwBlJv\":\"Primeiro nome do pedido\",\"vrSW9M\":\"O pedido foi cancelado e reembolsado. O proprietário do pedido foi notificado.\",\"rzw+wS\":\"Titulares de encomendas\",\"oI/hGR\":\"ID do Pedido\",\"Pc729f\":\"Pedido Aguardando Pagamento Offline\",\"F4NXOl\":\"Sobrenome do pedido\",\"RQCXz6\":\"Limites de Pedido\",\"SO9AEF\":\"Limites de pedido definidos\",\"5RDEEn\":\"Idioma do Pedido\",\"vu6Arl\":\"Pedido marcado como pago\",\"sLbJQz\":\"Pedido não encontrado\",\"kvYpYu\":\"Pedido não encontrado\",\"i8VBuv\":\"Número do pedido\",\"eJ8SvM\":\"Número da encomenda, data, email do comprador\",\"FaPYw+\":\"Proprietário do pedido\",\"eB5vce\":\"Proprietários de pedidos com um produto específico\",\"CxLoxM\":\"Proprietários de pedidos com produtos\",\"DoH3fD\":\"Pagamento do Pedido Pendente\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Status dos pedidos\",\"oW5877\":\"Total do pedido\",\"e7eZuA\":\"Pedido atualizado\",\"1SQRYo\":\"Pedido atualizado com sucesso\",\"KndP6g\":\"URL do pedido\",\"3NT0Ck\":\"O pedido foi cancelado\",\"V5khLm\":\"encomendas\",\"sd5IMt\":\"Encomendas concluídas\",\"5It1cQ\":\"Pedidos exportados\",\"tlKX/S\":\"As encomendas que abrangem várias datas serão sinalizadas para revisão manual.\",\"UQ0ACV\":\"Total de encomendas\",\"B/EBQv\":\"Encomendas:\",\"qtGTNu\":\"Contas orgânicas\",\"ucgZ0o\":\"Organização\",\"P/JHA4\":\"Organizador arquivado com sucesso\",\"S3CZ5M\":\"Painel do organizador\",\"GzjTd0\":\"Organizador eliminado com sucesso\",\"Uu0hZq\":\"Email do organizador\",\"Gy7BA3\":\"Endereço de email do organizador\",\"SQqJd8\":\"Organizador não encontrado\",\"HF8Bxa\":\"Organizador restaurado com sucesso\",\"wpj63n\":\"Configurações do organizador\",\"o1my93\":\"Falha ao atualizar o status do organizador. Por favor, tente novamente mais tarde.\",\"rLHma1\":\"Status do organizador atualizado\",\"LqBITi\":\"O modelo do organizador/padrão será usado\",\"q4zH+l\":\"Organizadores\",\"/IX/7x\":\"Outro\",\"RsiDDQ\":\"Outras Listas (Bilhete Não Incluído)\",\"aDfajK\":\"Ao ar livre\",\"qMASRF\":\"Mensagens de saída\",\"iCOVQO\":\"Substituir\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Substituir preço\",\"cnVIpl\":\"Substituição removida\",\"6/dCYd\":\"Visão geral\",\"6WdDG7\":\"Página\",\"8uqsE5\":\"Página já não disponível\",\"QkLf4H\":\"URL da página\",\"sF+Xp9\":\"Visualizações de página\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Contas pagas\",\"5F7SYw\":\"Reembolso parcial\",\"fFYotW\":[\"Parcialmente reembolsado: \",[\"0\"]],\"i8day5\":\"Passar taxa para o comprador\",\"k4FLBQ\":\"Passar para o comprador\",\"Ff0Dor\":\"Passado\",\"BFjW8X\":\"Em atraso\",\"xTPjSy\":\"Eventos passados\",\"/l/ckQ\":\"Cole a URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"OZK07J\":\"Pagar para desbloquear\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data de pagamento\",\"ENEPLY\":\"Método de pagamento\",\"8Lx2X7\":\"Pagamento recebido\",\"fx8BTd\":\"Pagamentos não disponíveis\",\"C+ylwF\":\"Pagamentos\",\"UbRKMZ\":\"Pendente\",\"UkM20g\":\"Revisão pendente\",\"dPYu1F\":\"Por participante\",\"mQV/nJ\":\"por min\",\"VlXNyK\":\"Por pedido\",\"hauDFf\":\"Por bilhete\",\"mnF83a\":\"Taxa Percentual\",\"TNLuRD\":\"Taxa percentual (%)\",\"MixU2P\":\"A percentagem deve estar entre 0 e 100\",\"MkuVAZ\":\"Percentagem do valor da transação\",\"/Bh+7r\":\"Desempenho\",\"fIp56F\":\"Eliminar permanentemente este evento e todos os dados associados.\",\"nJeeX7\":\"Eliminar permanentemente este organizador e todos os seus eventos.\",\"wfCTgK\":\"Remover esta data permanentemente\",\"6kPk3+\":\"Informações pessoais\",\"zmwvG2\":\"Telefone\",\"SdM+Q1\":\"Escolher uma localização\",\"tSR/oe\":\"Escolha uma data de fim\",\"e8kzpp\":\"Escolha pelo menos um dia do mês\",\"35C8QZ\":\"Escolha pelo menos um dia da semana\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Colocada\",\"wBJR8i\":\"Planejando um evento?\",\"J3lhKT\":\"Taxa da plataforma\",\"RD51+P\":[\"Taxa da plataforma de \",[\"0\"],\" deduzida do seu pagamento\"],\"br3Y/y\":\"Taxas da plataforma\",\"3buiaw\":\"Relatório de taxas da plataforma\",\"kv9dM4\":\"Receitas da plataforma\",\"PJ3Ykr\":\"Por favor, verifique o seu bilhete para confirmar a nova hora. Os seus bilhetes continuam válidos — não é necessária qualquer ação a menos que as novas horas não lhe sejam convenientes. Responda a este e-mail se tiver alguma dúvida.\",\"OtjenF\":\"Por favor, introduza um endereço de e-mail válido\",\"jEw0Mr\":\"Por favor, insira uma URL válida\",\"n8+Ng/\":\"Por favor, introduza o código de 5 dígitos\",\"r+lQXT\":\"Por favor, insira o seu número de IVA\",\"Dvq0wf\":\"Por favor, forneça uma imagem.\",\"2cUopP\":\"Por favor, reinicie o processo de compra.\",\"GoXxOA\":\"Por favor, selecione uma data e hora\",\"8KmsFa\":\"Por favor, selecione um intervalo de datas\",\"EFq6EG\":\"Por favor, selecione uma imagem.\",\"fuwKpE\":\"Por favor, tente novamente.\",\"klWBeI\":\"Por favor, aguarde antes de solicitar outro código\",\"hfHhaa\":\"Por favor, aguarde enquanto preparamos os seus afiliados para exportação...\",\"o+tJN/\":\"Por favor, aguarde enquanto preparamos seus participantes para exportação...\",\"+5Mlle\":\"Por favor, aguarde enquanto preparamos seus pedidos para exportação...\",\"trnWaw\":\"Polaco\",\"luHAJY\":\"Eventos populares (Últimos 14 dias)\",\"p/78dY\":\"Posição\",\"TjX7xL\":\"Mensagem Pós-Checkout\",\"OESu7I\":\"Evite sobrevenda compartilhando estoque entre vários tipos de ingresso.\",\"NgVUL2\":\"Pré-visualizar formulário de checkout\",\"cs5muu\":\"Pré-visualizar página do evento\",\"+4yRWM\":\"Preço do ingresso\",\"Jm2AC3\":\"Nível de Preço\",\"a5jvSX\":\"Níveis de Preço\",\"ReihZ7\":\"Pré-visualização de Impressão\",\"JnuPvH\":\"Imprimir Bilhete\",\"tYF4Zq\":\"Imprimir para PDF\",\"LcET2C\":\"Política de Privacidade\",\"8z6Y5D\":\"Processar reembolso\",\"JcejNJ\":\"A processar pedido\",\"EWCLpZ\":\"Produto criado\",\"XkFYVB\":\"Produto excluído\",\"YMwcbR\":\"Detalhamento das vendas de produtos, receitas e impostos\",\"ls0mTC\":\"As definições do produto não podem ser editadas para datas canceladas.\",\"2339ej\":\"Definições do produto guardadas com sucesso\",\"ldVIlB\":\"Produto atualizado\",\"CP3D8G\":\"Progresso\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionais e detalhamento de descontos\",\"tZqL0q\":\"códigos promocionais\",\"oCHiz3\":\"Códigos promocionais\",\"uEhdRh\":\"Apenas Promoção\",\"dLm8V5\":\"Emails promocionais podem resultar na suspensão da conta\",\"XoEWtl\":\"Indique pelo menos um campo de endereço para a nova localização.\",\"2W/7Gz\":\"Fornece os seguintes dados antes da próxima revisão do Stripe para manteres os pagamentos a fluir.\",\"aemBRq\":\"Fornecedor\",\"EEYbdt\":\"Publicar\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Adquirido\",\"JunetL\":\"Comprador\",\"phmeUH\":\"Email do comprador\",\"ywR4ZL\":\"Check-in por código QR\",\"oWXNE5\":\"Qtd.\",\"biEyJ4\":\"Respostas\",\"k/bJj0\":\"Perguntas reordenadas\",\"b24kPi\":\"Fila\",\"lTPqpM\":\"Dica Rápida\",\"fqDzSu\":\"Taxa\",\"mnUGVC\":\"Limite de taxa excedido. Por favor, tente novamente mais tarde.\",\"t41hVI\":\"Reoferecer lugar\",\"TNclgc\":\"Reativar esta data? Será reaberta para vendas futuras.\",\"uqoRbb\":\"Análise em tempo real\",\"xzRvs4\":[\"Receber atualizações de produtos do \",[\"0\"],\".\"],\"pLXbi8\":\"Registos de contas recentes\",\"3kJ0gv\":\"Participantes Recentes\",\"qhfiwV\":\"Check-ins recentes\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Pedidos recentes\",\"7hPBBn\":\"destinatário\",\"jp5bq8\":\"destinatários\",\"yPrbsy\":\"Destinatários\",\"E1F5Ji\":\"Os destinatários ficam disponíveis após o envio da mensagem\",\"wuhHPE\":\"Recorrente\",\"asLqwt\":\"Evento Recorrente\",\"D0tAMe\":\"Eventos recorrentes\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecionando para o Stripe...\",\"pnoTN5\":\"Contas de referência\",\"ACKu03\":\"Atualizar visualização\",\"vuFYA6\":\"Reembolsar todas as encomendas destas datas\",\"4cRUK3\":\"Reembolsar todas as encomendas desta data\",\"fKn/k6\":\"Valor do reembolso\",\"qY4rpA\":\"Reembolso falhou\",\"TspTcZ\":\"Reembolso Emitido\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configurações regionais\",\"5tl0Bp\":\"Perguntas de registro\",\"ZNo5k1\":\"Em falta\",\"EMnuA4\":\"Lembrete agendado\",\"Bjh87R\":\"Remover rótulo de todas as datas\",\"KkJtVK\":\"Reabrir para novas vendas\",\"XJwWJp\":\"Reabrir esta data para novas vendas? Os bilhetes anteriormente cancelados não serão restaurados — os participantes afetados permanecem cancelados e os reembolsos já emitidos não serão revertidos.\",\"bAwDQs\":\"Repetir a cada\",\"CQeZT8\":\"Relatório não encontrado\",\"JEPMXN\":\"Solicitar novo link\",\"TMLAx2\":\"Obrigatório\",\"mdeIOH\":\"Reenviar código\",\"sQxe68\":\"Reenviar confirmação\",\"bxoWpz\":\"Reenviar e-mail de confirmação\",\"G42SNI\":\"Reenviar e-mail\",\"TTpXL3\":[\"Reenviar em \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Reenviar bilhete\",\"Uwsg2F\":\"Reservado\",\"8wUjGl\":\"Reservado até\",\"a5z8mb\":\"Repor preço base\",\"kCn6wb\":\"A redefinir...\",\"404zLK\":\"Nome do local ou da localização resolvida\",\"ZlCDf+\":\"Resposta\",\"bsydMp\":\"Detalhes da Resposta\",\"yKu/3Y\":\"Restaurar\",\"RokrZf\":\"Restaurar evento\",\"/JyMGh\":\"Restaurar organizador\",\"HFvFRb\":\"Restaure este evento para o tornar visível novamente.\",\"DDIcqy\":\"Restaure este organizador e torne-o ativo novamente.\",\"mO8KLE\":\"resultados\",\"6gRgw8\":\"Tentar novamente\",\"1BG8ga\":\"Tentar tudo novamente\",\"rDC+T6\":\"Tentar trabalho novamente\",\"CbnrWb\":\"Voltar ao evento\",\"mdQ0zb\":\"Locais reutilizáveis para os seus eventos. As localizações criadas a partir do preenchimento automático são guardadas aqui automaticamente.\",\"XFOPle\":\"Reutilizar\",\"1Zehp4\":\"Reutiliza uma ligação Stripe de outro organizador desta conta.\",\"Oo/PLb\":\"Resumo de Receita\",\"O/8Ceg\":\"Receita de hoje\",\"CfuueU\":\"Revogar Oferta\",\"RIgKv+\":\"Decorrer até uma data específica\",\"JYRqp5\":\"Sáb\",\"dFFW9L\":[\"Promoção terminou \",[\"0\"]],\"loCKGB\":[\"Promoção termina \",[\"0\"]],\"wlfBad\":\"Período de Promoção\",\"qi81Jg\":\"As datas do período de venda aplicam-se a todas as datas da sua programação. Para controlar o preço e a disponibilidade de datas individuais, utilize as substituições na <0>página de Programação de Sessões.\",\"5CDM6r\":\"Período de venda definido\",\"ftzaMf\":\"Período de venda, limites de pedido, visibilidade\",\"zpekWp\":[\"Promoção começa \",[\"0\"]],\"mUv9U4\":\"Vendas\",\"9KnRdL\":\"As vendas estão pausadas\",\"JC3J0k\":\"Detalhamento de vendas, presenças e check-ins por sessão\",\"3VnlS9\":\"Vendas, pedidos e métricas de desempenho para todos os eventos\",\"3Q1AWe\":\"Vendas:\",\"LeuERW\":\"Igual ao evento\",\"B4nE3N\":\"Preço do bilhete de exemplo\",\"8BRPoH\":\"Local Exemplo\",\"PiK6Ld\":\"Sáb\",\"+5kO8P\":\"Sábado\",\"zJiuDn\":\"Guardar substituição de taxa\",\"NB8Uxt\":\"Guardar Programação\",\"KZrfYJ\":\"Salvar links sociais\",\"9Y3hAT\":\"Salvar modelo\",\"C8ne4X\":\"Guardar Design do Bilhete\",\"cTI8IK\":\"Guardar definições de IVA\",\"6/TNCd\":\"Guardar Definições de IVA\",\"4RvD9q\":\"Localização guardada\",\"cgw0cL\":\"Localizações guardadas\",\"lvSrsT\":\"Localizações Guardadas\",\"Fbqm/I\":\"Guardar uma substituição cria uma configuração dedicada para este organizador caso este esteja atualmente na predefinição do sistema.\",\"I+FvbD\":\"Digitalizar\",\"0zd6Nm\":\"Leia um bilhete para fazer check-in do participante\",\"bQG7Qk\":\"Os bilhetes lidos aparecerão aqui\",\"WDYSLJ\":\"Modo leitor\",\"gmB6oO\":\"Programação\",\"j6NnBq\":\"Programação criada com sucesso\",\"YP7frt\":\"A programação termina em\",\"QS1Nla\":\"Agendar para mais tarde\",\"NAzVVw\":\"Agendar mensagem\",\"Fz09JP\":\"O agendamento começa em\",\"4ba0NE\":\"Agendado\",\"qcP/8K\":\"Hora agendada\",\"A1taO8\":\"Pesquisar\",\"ftNXma\":\"Pesquisar afiliados...\",\"VMU+zM\":\"Pesquisar participantes\",\"VY+Bdn\":\"Pesquisar por nome da conta ou e-mail...\",\"VX+B3I\":\"Pesquisar por título do evento ou organizador...\",\"R0wEyA\":\"Pesquisar por nome do trabalho ou exceção...\",\"VT+urE\":\"Pesquisar por nome ou e-mail...\",\"GHdjuo\":\"Pesquisar por nome, e-mail ou conta...\",\"4mBFO7\":\"Pesquisar por nome, n.º encomenda, n.º bilhete ou email\",\"20ce0U\":\"Pesquisar por ID do pedido, nome do cliente ou email...\",\"4DSz7Z\":\"Pesquisar por assunto, evento ou conta...\",\"nQC7Z9\":\"Pesquisar datas...\",\"iRtEpV\":\"Pesquisar datas…\",\"JRM7ao\":\"Pesquisar uma morada\",\"BWF1kC\":\"Pesquisar mensagens...\",\"3aD3GF\":\"Sazonal\",\"ku//5b\":\"Segundo\",\"Mck5ht\":\"Checkout Seguro\",\"s7tXqF\":\"Ver programação\",\"JFap6u\":\"Ver o que o Stripe ainda precisa\",\"p7xUrt\":\"Selecione uma categoria\",\"hTKQwS\":\"Selecione uma Data e Hora\",\"e4L7bF\":\"Selecione uma mensagem para ver o seu conteúdo\",\"zPRPMf\":\"Selecionar um nível\",\"uqpVri\":\"Selecione uma hora\",\"BFRSTT\":\"Selecionar Conta\",\"wgNoIs\":\"Selecionar tudo\",\"mCB6Je\":\"Selecionar tudo\",\"aCEysm\":[\"Selecionar tudo em \",[\"0\"]],\"a6+167\":\"Selecionar um evento\",\"CFbaPk\":\"Selecione o grupo de participantes\",\"88a49s\":\"Selecionar câmara\",\"tVW/yo\":\"Selecionar moeda\",\"SJQM1I\":\"Selecionar data\",\"n9ZhRa\":\"Selecione data e hora de término\",\"gTN6Ws\":\"Selecionar hora de fim\",\"0U6E9W\":\"Selecionar categoria do evento\",\"j9cPeF\":\"Selecionar tipos de eventos\",\"ypTjHL\":\"Selecionar sessão\",\"KizCK7\":\"Selecione data e hora de início\",\"dJZTv2\":\"Selecionar hora de início\",\"x8XMsJ\":\"Selecione o nível de mensagens para esta conta. Isto controla os limites de mensagens e permissões de links.\",\"aT3jZX\":\"Selecionar fuso horário\",\"TxfvH2\":\"Selecione quais participantes devem receber esta mensagem\",\"Ropvj0\":\"Selecione quais eventos acionarão este webhook\",\"+6YAwo\":\"selecionada(s)\",\"ylXj1N\":\"Selecionado\",\"uq3CXQ\":\"Esgote o seu evento.\",\"j9b/iy\":\"Vendendo rápido 🔥\",\"73qYgo\":\"Enviar como teste\",\"HMAqFK\":\"Enviar e-mails para participantes, titulares de bilhetes ou proprietários de encomendas. As mensagens podem ser enviadas imediatamente ou agendadas para mais tarde.\",\"22Itl6\":\"Envie-me uma cópia\",\"NpEm3p\":\"Enviar agora\",\"nOBvex\":\"Envie dados de pedidos e participantes em tempo real para seus sistemas externos.\",\"1lNPhX\":\"Enviar email de notificação de reembolso\",\"eaUTwS\":\"Enviar link de redefinição\",\"5cV4PY\":\"Enviar para todas as sessões, ou escolher uma específica\",\"QEQlnV\":\"Envie a sua primeira mensagem\",\"3nMAVT\":\"A enviar em 2d 4h\",\"IoAuJG\":\"A enviar...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Enviado aos participantes quando uma data agendada é cancelada\",\"SPdzrs\":\"Enviado aos clientes quando fazem um pedido\",\"LxSN5F\":\"Enviado a cada participante com os detalhes do seu ingresso\",\"hgvbYY\":\"Setembro\",\"5sN96e\":\"Sessão cancelada\",\"89xaFU\":\"Defina as configurações padrão de taxa da plataforma para novos eventos criados sob este organizador.\",\"eXssj5\":\"Definir configurações predefinidas para novos eventos criados sob este organizador.\",\"uPe5p8\":\"Defina a duração de cada data\",\"xNsRxU\":\"Definir número de datas\",\"ODuUEi\":\"Definir ou limpar o rótulo da data\",\"buHACR\":\"Defina a hora de fim de cada data para este intervalo após a hora de início.\",\"TaeFgl\":\"Definir como ilimitado (remover limite)\",\"pd6SSe\":\"Configure uma programação recorrente para criar datas automaticamente, ou adicione-as uma de cada vez.\",\"s0FkEx\":\"Configure listas de check-in para diferentes entradas, sessões ou dias.\",\"TaWVGe\":\"Configurar pagamentos\",\"gzXY7l\":\"Configurar Programação\",\"xMO+Ao\":\"Configure a sua organização\",\"h/9JiC\":\"Configure a Sua Programação\",\"ETC76A\":\"Definir, alterar ou remover a localização ou os dados online da sessão\",\"C3htzi\":\"Configuração atualizada\",\"Ohn74G\":\"Configuração e design\",\"1W5XyZ\":\"A configuração demora apenas alguns minutos — não precisas de uma conta Stripe existente. O Stripe trata de cartões, carteiras, métodos de pagamento regionais e proteção contra fraude para que possas focar-te no teu evento.\",\"GG7qDw\":\"Partilhar link de afiliado\",\"hL7sDJ\":\"Compartilhar página do organizador\",\"jy6QDF\":\"Gestão de capacidade compartilhada\",\"jDNHW4\":\"Deslocar horas\",\"tPfIaW\":[\"Horas deslocadas em \",[\"count\"],\" data(s)\"],\"WwlM8F\":\"Mostrar opções avançadas\",\"cMW+gm\":[\"Mostrar todas as plataformas (\",[\"0\"],\" com valores)\"],\"wXi9pZ\":\"Mostrar notas a pessoal sem sessão\",\"UVPI5D\":\"Mostrar menos plataformas\",\"Eu/N/d\":\"Mostrar caixa de seleção de opt-in de marketing\",\"SXzpzO\":\"Mostrar caixa de seleção de opt-in de marketing por padrão\",\"57tTk5\":\"Mostrar mais datas\",\"b33PL9\":\"Mostrar mais plataformas\",\"Eut7p9\":\"Mostrar detalhes a pessoal sem sessão\",\"+RoWKN\":\"Mostrar respostas a pessoal sem sessão\",\"t1LIQW\":[\"A mostrar \",[\"0\"],\" de \",[\"totalRows\"],\" registos\"],\"E717U9\":[\"A mostrar \",[\"0\"],\"–\",[\"1\"],\" de \",[\"2\"]],\"5rzhBQ\":[\"A mostrar \",[\"MAX_VISIBLE\"],\" de \",[\"totalAvailable\"],\" datas. Escreva para pesquisar.\"],\"WSt3op\":[\"A mostrar as primeiras \",[\"0\"],\" — as restantes \",[\"1\"],\" sessão(ões) continuarão a ser abrangidas quando a mensagem for enviada.\"],\"OJLTEL\":\"Mostrado ao pessoal na primeira vez que abre a página.\",\"jVRHeq\":\"Registado\",\"5C7J+P\":\"Evento Único\",\"E//btK\":\"Ignorar datas editadas manualmente\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Links sociais\",\"j/TOB3\":\"Links sociais e site\",\"s9KGXU\":\"Vendido\",\"iACSrw\":\"Alguns detalhes estão ocultos do acesso público. Inicie sessão para ver tudo.\",\"KTxc6k\":\"Algo deu errado, tente novamente ou entre em contato com o suporte se o problema persistir\",\"lkE00/\":\"Algo correu mal. Por favor, tente novamente mais tarde.\",\"wdxz7K\":\"Fonte\",\"fDG2by\":\"Espiritualidade\",\"oPaRES\":\"Divida o check-in por dia, zona ou tipo de bilhete. Partilhe o link com o pessoal — sem necessidade de conta.\",\"7JFNej\":\"Desporto\",\"/bfV1Y\":\"Instruções para a equipa\",\"tXkhj/\":\"Início\",\"JcQp9p\":\"Data e hora de início\",\"0m/ekX\":\"Data e hora de início\",\"izRfYP\":\"A data de início é obrigatória\",\"tuO4fV\":\"Data de início da sessão\",\"2R1+Rv\":\"Hora de início do evento\",\"2Olov3\":\"Hora de início da sessão\",\"n9ZrDo\":\"Comece a escrever um local ou morada...\",\"qeFVhN\":[\"Começa em \",[\"diffDays\"],\" dias\"],\"AOqtxN\":[\"Começa em \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Começa em \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Começa em \",[\"seconds\"],\"s\"],\"NqChgF\":\"Começa amanhã\",\"2NbyY/\":\"Estatísticas\",\"GVUxAX\":\"As estatísticas são baseadas na data de criação da conta\",\"29Hx9U\":\"Estatísticas\",\"5ia+r6\":\"Ainda em falta\",\"wuV0bK\":\"Parar Personificação\",\"s/KaDb\":\"Stripe ligado\",\"Bk06QI\":\"Stripe ligado\",\"akZMv8\":[\"Ligação Stripe copiada de \",[\"0\"],\".\"],\"v0aRY1\":\"O Stripe não devolveu um link de configuração. Tenta de novo.\",\"aKtF0O\":\"Stripe não conectado\",\"9i0++A\":\"ID de pagamento Stripe\",\"R1lIMV\":\"O Stripe vai precisar de mais alguns dados em breve\",\"FzcCHA\":\"O Stripe vai conduzir-te através de algumas perguntas rápidas para concluir a configuração.\",\"eYbd7b\":\"Dom\",\"ii0qn/\":\"O assunto é obrigatório\",\"M7Uapz\":\"O assunto aparecerá aqui\",\"6aXq+t\":\"Assunto:\",\"JwTmB6\":\"Produto duplicado com sucesso\",\"WUOCgI\":\"Lugar oferecido com sucesso\",\"IvxA4G\":[\"Bilhetes oferecidos com sucesso a \",[\"count\"],\" pessoas\"],\"kKpkzy\":\"Bilhetes oferecidos com sucesso a 1 pessoa\",\"Zi3Sbw\":\"Removido da lista de espera com sucesso\",\"RuaKfn\":\"Endereço atualizado com sucesso\",\"kzx0uD\":\"Predefinições de Evento Atualizadas com Sucesso\",\"5n+Wwp\":\"Organizador atualizado com sucesso\",\"DMCX/I\":\"Configurações padrão de taxa da plataforma atualizadas com sucesso\",\"URUYHc\":\"Configurações de taxa da plataforma atualizadas com sucesso\",\"0Dk/l8\":\"Configurações de SEO atualizadas com sucesso\",\"S8Tua9\":\"Definições atualizadas com sucesso\",\"MhOoLQ\":\"Links sociais atualizados com sucesso\",\"CNSSfp\":\"Definições de Rastreio Atualizadas com Sucesso\",\"kj7zYe\":\"Webhook atualizado com sucesso\",\"dXoieq\":\"Resumo\",\"/RfJXt\":[\"Festival de Música de Verão \",[\"0\"]],\"CWOPIK\":\"Festival de Música de Verão 2025\",\"D89zck\":\"Dom\",\"DBC3t5\":\"Domingo\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Trocar organizador\",\"9YHrNC\":\"Padrão do Sistema\",\"lruQkA\":\"Toque no ecrã para retomar\",\"TJUrME\":[\"A abranger os participantes de \",[\"0\"],\" sessões selecionadas.\"],\"yT6dQ8\":\"Impostos cobrados agrupados por tipo de imposto e evento\",\"Ye321X\":\"Nome do Imposto\",\"WyCBRt\":\"Resumo de Impostos\",\"GkH0Pq\":\"Taxas e impostos aplicados\",\"Rwiyt2\":\"Impostos configurados\",\"iQZff7\":\"Impostos, Taxas, Visibilidade, Período de Venda, Destaque do Produto e Limites de Pedido\",\"SXvRWU\":\"Colaboração em equipa\",\"vlf/In\":\"Tecnologia\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Conte às pessoas o que esperar do seu evento\",\"NiIUyb\":\"Conte-nos sobre seu evento\",\"DovcfC\":\"Fale-nos sobre a sua organização. Esta informação será exibida nas páginas dos seus eventos.\",\"69GWRq\":\"Diga-nos com que frequência o seu evento se repete e criaremos todas as datas por si.\",\"mXPbwY\":\"Indica o teu estado de registo de IVA para aplicarmos o tratamento correto às taxas da plataforma.\",\"7wtpH5\":\"Modelo ativo\",\"QHhZeE\":\"Modelo criado com sucesso\",\"xrWdPR\":\"Modelo excluído com sucesso\",\"G04Zjt\":\"Modelo salvo com sucesso\",\"xowcRf\":\"Termos de serviço\",\"6K0GjX\":\"O texto pode ser difícil de ler\",\"u0F1Ey\":\"Qui\",\"nm3Iz/\":\"Obrigado por participar!\",\"pYwj0k\":\"Obrigado,\",\"k3IitN\":\"Fim\",\"KfmPRW\":\"A cor de fundo da página. Ao usar imagem de capa, esta é aplicada como uma sobreposição.\",\"MDNyJz\":\"O código irá expirar em 10 minutos. Verifique a sua pasta de spam se não vir o email.\",\"AIF7J2\":\"A moeda em que a taxa fixa é definida. Será convertida para a moeda do pedido no checkout.\",\"MJm4Tq\":\"A moeda do pedido\",\"cDHM1d\":\"O endereço de e-mail foi alterado. O participante receberá um novo bilhete no endereço de e-mail atualizado.\",\"I/NNtI\":\"O local do evento\",\"tXadb0\":\"O evento que você está procurando não está disponível no momento. Ele pode ter sido removido, expirado ou a URL pode estar incorreta.\",\"5fPdZe\":\"A primeira data a partir da qual este agendamento será gerado.\",\"EBzPwC\":\"O endereço completo do evento\",\"sxKqBm\":\"O valor total do pedido será reembolsado para o método de pagamento original do cliente.\",\"KgDp6G\":\"O link que está a tentar aceder expirou ou já não é válido. Por favor, verifique o seu e-mail para obter um link atualizado para gerir o seu pedido.\",\"5OmEal\":\"O idioma do cliente\",\"Np4eLs\":[\"O máximo é de \",[\"MAX_PREVIEW\"],\" sessões. Por favor, reduza o intervalo de datas, a frequência ou o número de sessões por dia.\"],\"sYLeDq\":\"O organizador que você está procurando não foi encontrado. A página pode ter sido movida, excluída ou o URL está incorreto.\",\"PCr4zw\":\"A substituição fica registada no registo de auditoria da encomenda.\",\"C4nQe5\":\"A taxa da plataforma é adicionada ao preço do bilhete. Os compradores pagam mais, mas você recebe o preço total do bilhete.\",\"HxxXZO\":\"A cor principal da marca usada para botões e destaques\",\"z0KrIG\":\"A hora agendada é obrigatória\",\"EWErQh\":\"A hora agendada deve ser no futuro\",\"UNd0OU\":[\"A sessão de \\\"\",[\"title\"],\"\\\", inicialmente agendada para \",[\"0\"],\", foi reagendada.\"],\"DEcpfp\":\"O corpo do modelo contém sintaxe Liquid inválida. Por favor, corrija-a e tente novamente.\",\"injXD7\":\"O número de IVA não pôde ser validado. Por favor, verifique o número e tente novamente.\",\"A4UmDy\":\"Teatro\",\"tDwYhx\":\"Tema e cores\",\"O7g4eR\":\"Não há próximas datas para este evento\",\"HrIl0p\":[\"Não existe uma lista de check-in específica para esta data. A lista \\\"\",[\"0\"],\"\\\" faz o check-in dos participantes em todas as datas — a equipa que ler um bilhete de outra data terá sucesso na mesma.\"],\"dt3TwA\":\"Estes são os preços e quantidades predefinidos para todas as datas. As datas de venda nos níveis aplicam-se globalmente. Pode substituir preços e quantidades para datas individuais na <0>página de Programação de Sessões.\",\"062KsE\":\"Estes detalhes são apresentados no bilhete do participante e no resumo da encomenda apenas para esta data.\",\"5Eu+tn\":\"Estes detalhes só serão apresentados se a encomenda for concluída com sucesso.\",\"jQjwR+\":\"Estes dados substituirão qualquer localização existente nas sessões afetadas e serão apresentados nos bilhetes dos participantes.\",\"QP3gP+\":\"Estas configurações se aplicam apenas ao código de incorporação copiado e não serão armazenadas.\",\"HirZe8\":\"Estes modelos serão usados como padrões para todos os eventos em sua organização. Eventos individuais podem substituir estes modelos por suas próprias versões personalizadas.\",\"lzAaG5\":\"Estes modelos substituirão os padrões do organizador apenas para este evento. Se nenhum modelo personalizado for definido aqui, o modelo do organizador será usado em vez disso.\",\"UlykKR\":\"Terceiro\",\"wkP5FM\":\"Isto aplica-se a todas as datas correspondentes do evento, incluindo as que não estão visíveis no momento. Os participantes registados em qualquer uma dessas datas poderão ser contactados através do compositor de mensagens assim que a atualização terminar.\",\"SOmGDa\":\"Esta lista de check-in está associada a uma sessão que foi cancelada, pelo que já não pode ser utilizada para check-ins.\",\"XBNC3E\":\"Este código será usado para rastrear vendas. Apenas são permitidas letras, números, hífenes e underscores.\",\"AaP0M+\":\"Esta combinação de cores pode ser difícil de ler para alguns utilizadores\",\"o1phK/\":[\"Esta data tem \",[\"orderCount\"],\" encomenda(s) que serão afetadas.\"],\"F/UtGt\":\"Esta data foi cancelada. Ainda assim, pode eliminá-la para a remover permanentemente.\",\"BLZ7pX\":\"Esta data está no passado. Será criada, mas não ficará visível para os participantes nas próximas datas.\",\"7IIY0z\":\"Esta data está marcada como esgotada.\",\"bddWMP\":\"Esta data já não está disponível. Por favor, selecione outra data.\",\"RzEvf5\":\"Este evento terminou\",\"YClrdK\":\"Este evento ainda não foi publicado\",\"dFJnia\":\"Este é o nome do seu organizador que será exibido aos seus usuários.\",\"vt7jiq\":\"Esta é a única vez que o segredo de assinatura será exibido. Por favor, copie-o agora e guarde-o em segurança.\",\"L7dIM7\":\"Este link é inválido ou expirou.\",\"MR5ygV\":\"Este link já não é válido\",\"9LEqK0\":\"Este nome é visível aos utilizadores finais\",\"QdUMM9\":\"Esta sessão atingiu a capacidade máxima\",\"j5FdeA\":\"Este pedido está a ser processado.\",\"sjNPMw\":\"Este pedido foi abandonado. Pode iniciar um novo pedido a qualquer momento.\",\"OhCesD\":\"Este pedido foi cancelado. Pode iniciar um novo pedido a qualquer momento.\",\"lyD7rQ\":\"Este perfil de organizador ainda não foi publicado\",\"9b5956\":\"Esta visualização mostra como seu e-mail ficará com dados de exemplo. E-mails reais usarão valores reais.\",\"uM9Alj\":\"Este produto está destacado na página do evento\",\"RqSKdX\":\"Este produto está esgotado\",\"W12OdJ\":\"Este relatório é apenas para fins informativos. Consulte sempre um profissional de impostos antes de usar estes dados para fins contabilísticos ou fiscais. Por favor, verifique com o seu painel do Stripe pois o Hi.Events pode não ter dados históricos.\",\"0Ew0uk\":\"Este bilhete acabou de ser digitalizado. Aguarde antes de digitalizar novamente.\",\"FYXq7k\":[\"Isto afetará \",[\"loadedAffectedCount\"],\" data(s).\"],\"kvpxIU\":\"Isso será usado para notificações e comunicação com seus usuários.\",\"rhsath\":\"Isto não será visível para os clientes, mas ajuda-o a identificar o afiliado.\",\"hV6FeJ\":\"Ritmo\",\"+FjWgX\":\"Qui\",\"kkDQ8m\":\"Quinta-feira\",\"0GSPnc\":\"Design do Bilhete\",\"EZC/Cu\":\"Design do bilhete guardado com sucesso\",\"bbslmb\":\"Designer de ingressos\",\"1BPctx\":\"Bilhete para\",\"bgqf+K\":\"E-mail do portador do ingresso\",\"oR7zL3\":\"Nome do portador do ingresso\",\"HGuXjF\":\"Portadores de ingressos\",\"CMUt3Y\":\"Titulares de bilhetes\",\"awHmAT\":\"ID do bilhete\",\"6czJik\":\"Logotipo do Bilhete\",\"OkRZ4Z\":\"Nome do ingresso\",\"t79rDv\":\"Bilhete não encontrado\",\"6tmWch\":\"Ingresso ou produto\",\"1tfWrD\":\"Pré-visualização do bilhete para\",\"KnjoUA\":\"Preço do bilhete\",\"tGCY6d\":\"Preço do ingresso\",\"pGZOcL\":\"Bilhete reenviado com sucesso\",\"8jLPgH\":\"Tipo de Bilhete\",\"X26cQf\":\"URL do ingresso\",\"8qsbZ5\":\"Bilheteria e vendas\",\"zNECqg\":\"bilhetes\",\"6GQNLE\":\"Bilhetes\",\"NRhrIB\":\"Ingressos e produtos\",\"OrWHoZ\":\"Os bilhetes são automaticamente oferecidos aos clientes em lista de espera quando há disponibilidade.\",\"EUnesn\":\"Bilhetes disponíveis\",\"AGRilS\":\"Ingressos Vendidos\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Hora\",\"dMtLDE\":\"a\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar os seus limites, contacte-nos em\",\"ecUA8p\":\"Hoje\",\"W428WC\":\"Alternar colunas\",\"BRMXj0\":\"Amanhã\",\"UBSG1X\":\"Melhores organizadores (Últimos 14 dias)\",\"3sZ0xx\":\"Total de Contas\",\"EaAPbv\":\"Valor total pago\",\"SMDzqJ\":\"Total de Participantes\",\"orBECM\":\"Total Cobrado\",\"k5CU8c\":\"Total de entradas\",\"4B7oCp\":\"Taxa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total de Usuários\",\"oJjplO\":\"Visualizações totais\",\"rBZ9pz\":\"Visitas\",\"orluER\":\"Acompanhe o crescimento e desempenho da conta por fonte de atribuição\",\"YwKzpH\":\"Rastreio e Análise\",\"uKOFO5\":\"Verdadeiro se pagamento offline\",\"9GsDR2\":\"Verdadeiro se pagamento pendente\",\"GUA0Jy\":\"Tente outra pesquisa ou filtro\",\"2P/OWN\":\"Tente ajustar os filtros para ver mais datas.\",\"ouM5IM\":\"Tentar outro e-mail\",\"3DZvE7\":\"Experimente o Hi.Events gratuitamente\",\"7P/9OY\":\"Ter\",\"vq2WxD\":\"Ter\",\"G3myU+\":\"Terça-feira\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desativar som\",\"KUOhTy\":\"Ativar som\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Escreva \\\"eliminar\\\" para confirmar\",\"XxecLm\":\"Tipo de ingresso\",\"IrVSu+\":\"Não foi possível duplicar o produto. Por favor, verifique seus dados\",\"Vx2J6x\":\"Não foi possível buscar participante\",\"h0dx5e\":\"Não foi possível entrar na lista de espera\",\"DaE0Hg\":\"Não é possível carregar os detalhes do participante.\",\"GlnD5Y\":\"Não foi possível carregar os produtos para esta data. Por favor, tente novamente.\",\"17VbmV\":\"Não é possível anular o check-in\",\"n57zCW\":\"Contas não atribuídas\",\"9uI/rE\":\"Anular\",\"b9SN9q\":\"Referência única do pedido\",\"Ef7StM\":\"Desconhecido\",\"ZBAScj\":\"Participante desconhecido\",\"MEIAzV\":\"Sem nome\",\"K6L5Mx\":\"Localização sem nome\",\"X13xGn\":\"Não confiável\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Atualizar afiliado\",\"59qHrb\":\"Atualizar capacidade\",\"Gaem9v\":\"Atualizar nome e descrição do evento\",\"7EhE4k\":\"Atualizar rótulo\",\"NPQWj8\":\"Atualizar localização\",\"75+lpR\":[\"Atualização: \",[\"subjectTitle\"],\" — alterações de programação\"],\"UOGHdA\":[\"Atualização: \",[\"subjectTitle\"],\" — hora da sessão alterada\"],\"ogoTrw\":[[\"count\"],\" data(s) atualizada(s)\"],\"dDuona\":[\"Capacidade atualizada em \",[\"count\"],\" data(s)\"],\"FT3LSc\":[\"Rótulo atualizado em \",[\"count\"],\" data(s)\"],\"8EcY1g\":[\"Localização atualizada para \",[\"count\"],\" sessão(ões)\"],\"gJQsLv\":\"Envie uma imagem de capa para seu organizador\",\"4kEGqW\":\"Envie um logo para seu organizador\",\"lnCMdg\":\"Carregar imagem\",\"29w7p6\":\"Enviando imagem...\",\"HtrFfw\":\"A URL é obrigatória\",\"vzWC39\":\"USB\",\"td5pxI\":\"Leitor USB ativo\",\"dyTklH\":\"Leitor USB em pausa\",\"OHJXlK\":\"Use <0>modelos Liquid para personalizar os seus emails\",\"g0WJMu\":\"Usar lista de todas as datas\",\"0k4cdb\":\"Usar detalhes do pedido para todos os participantes. Os nomes e e-mails dos participantes corresponderão às informações do comprador.\",\"MKK5oI\":\"Usar a lista de todas as datas, ou criar uma lista para esta data?\",\"bA31T4\":\"Usar os dados do comprador para todos os participantes\",\"rnoQsz\":\"Usado para bordas, destaques e estilo do código QR\",\"BV4L/Q\":\"Análise UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"A validar o seu número de IVA...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Número de IVA\",\"pnVh83\":\"Número de IVA\",\"CabI04\":\"O número de IVA não deve conter espaços\",\"PMhxAR\":\"O número de IVA deve começar com um código de país de 2 letras seguido de 8-15 caracteres alfanuméricos (por exemplo, PT123456789)\",\"gPgdNV\":\"Número de IVA validado com sucesso\",\"RUMiLy\":\"A validação do número de IVA falhou\",\"vqji3Y\":\"A validação do número de IVA falhou. Por favor, verifique o seu número de IVA.\",\"8dENF9\":\"IVA sobre taxa\",\"ZutOKU\":\"Taxa de IVA\",\"+KJZt3\":\"Registado para IVA\",\"Nfbg76\":\"Definições de IVA guardadas com sucesso\",\"UvYql/\":\"Configurações de IVA guardadas. Estamos a validar o seu número de IVA em segundo plano.\",\"bXn1Jz\":\"Definições de IVA atualizadas\",\"tJylUv\":\"Tratamento de IVA para Taxas da Plataforma\",\"FlGprQ\":\"Tratamento de IVA para taxas da plataforma: Empresas registadas para IVA na UE podem usar o mecanismo de autoliquidação (0% - Artigo 196 da Diretiva IVA 2006/112/CE). Empresas não registadas para IVA são cobradas com IVA irlandês de 23%.\",\"516oLj\":\"Serviço de validação de IVA temporariamente indisponível\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"IVA: não registado\",\"AdWhjZ\":\"Código de verificação\",\"QDEWii\":\"Verificado\",\"wCKkSr\":\"Verificar email\",\"/IBv6X\":\"Verifique seu e-mail\",\"e/cvV1\":\"A verificar...\",\"fROFIL\":\"Vietnamita\",\"p5nYkr\":\"Ver Tudo\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Ver todas as capacidades\",\"RnvnDc\":\"Ver todas as mensagens enviadas na plataforma\",\"+WFMis\":\"Visualize e descarregue relatórios de todos os seus eventos. Apenas pedidos concluídos são incluídos.\",\"c7VN/A\":\"Ver respostas\",\"SZw9tS\":\"Ver Detalhes\",\"9+84uW\":[\"Ver detalhes de \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Ver evento\",\"c6SXHN\":\"Ver página do evento\",\"n6EaWL\":\"Ver logs\",\"OaKTzt\":\"Ver mapa\",\"zNZNMs\":\"Ver mensagem\",\"67OJ7t\":\"Ver pedido\",\"tKKZn0\":\"Ver detalhes do pedido\",\"KeCXJu\":\"Veja detalhes de pedidos, emita reembolsos e reenvie confirmações.\",\"9jnAcN\":\"Ver página inicial do organizador\",\"1J/AWD\":\"Ver ingresso\",\"N9FyyW\":\"Veja, edite e exporte seus participantes registrados.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Em espera\",\"quR8Qp\":\"A aguardar pagamento\",\"KrurBH\":\"A aguardar leitura…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de Espera Ativada\",\"TwnTPy\":\"Oferta da lista de espera expirou\",\"NzIvKm\":\"Lista de espera acionada\",\"aUi/Dz\":\"Aviso: Esta é a configuração padrão do sistema. As alterações afetarão todas as contas que não tenham uma configuração específica atribuída.\",\"qeygIa\":\"Qua\",\"aT/44s\":\"Não conseguimos copiar essa ligação Stripe. Tenta de novo.\",\"RRZDED\":\"Não encontramos pedidos associados a este endereço de e-mail.\",\"2RZK9x\":\"Não conseguimos encontrar o pedido que procura. O link pode ter expirado ou os detalhes do pedido podem ter sido alterados.\",\"nefMIK\":\"Não conseguimos encontrar o bilhete que procura. O link pode ter expirado ou os detalhes do bilhete podem ter sido alterados.\",\"miysJh\":\"Não foi possível encontrar este pedido. Pode ter sido removido.\",\"ADsQ23\":\"Não conseguimos ligar ao Stripe agora. Tenta novamente em instantes.\",\"HJKdzP\":\"Ocorreu um problema ao carregar esta página. Por favor, tente novamente.\",\"jegrvW\":\"Trabalhamos com o Stripe para enviar pagamentos diretamente para a tua conta bancária.\",\"IfN2Qo\":\"Recomendamos um logotipo quadrado com dimensões mínimas de 200x200px\",\"wJzo/w\":\"Recomendamos dimensões de 400px por 400px e tamanho máximo de 5MB\",\"KRCDqH\":\"Utilizamos cookies para nos ajudar a perceber como o site é utilizado e para melhorar a sua experiência.\",\"x8rEDQ\":\"Não conseguimos validar o seu número de IVA após várias tentativas. Continuaremos a tentar em segundo plano. Por favor, volte mais tarde.\",\"iy+M+c\":[\"Notificá-lo-emos por e-mail se ficar disponível um lugar para \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Após guardar, abriremos um compositor de mensagens com um modelo pré-preenchido. Você revê e envia — nada é enviado automaticamente.\",\"q1BizZ\":\"Enviaremos os seus bilhetes para este e-mail\",\"ZOmUYW\":\"Validaremos o seu número de IVA em segundo plano. Se houver algum problema, informaremos.\",\"LKjHr4\":[\"Fizemos alterações à programação de \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" afetando \",[\"affectedCount\"],\" sessão(ões).\"],\"Fq/Nx7\":\"Enviámos um código de verificação de 5 dígitos para:\",\"GdWB+V\":\"Webhook criado com sucesso\",\"2X4ecw\":\"Webhook excluído com sucesso\",\"ndBv0v\":\"Integrações de webhook\",\"CThMKa\":\"Logs do Webhook\",\"I0adYQ\":\"Segredo de assinatura do Webhook\",\"nuh/Wq\":\"URL do Webhook\",\"8BMPMe\":\"O webhook não enviará notificações\",\"FSaY52\":\"O webhook enviará notificações\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Site\",\"0f7U0k\":\"Qua\",\"VAcXNz\":\"Quarta-feira\",\"64X6l4\":\"semana\",\"4XSc4l\":\"Semanal\",\"IAUiSh\":\"semanas\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bem-vindo de volta\",\"QDWsl9\":[\"Bem-vindo ao \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bem-vindo ao \",[\"0\"],\", aqui está uma lista de todos os seus eventos\"],\"DDbx7K\":\"Bem-estar\",\"ywRaYa\":\"A que horas?\",\"FaSXqR\":\"Que tipo de evento?\",\"0WyYF4\":\"O que vê o pessoal sem sessão\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando um check-in é excluído\",\"RPe6bE\":\"Quando uma data é cancelada num evento recorrente\",\"Gmd0hv\":\"Quando um novo participante é criado\",\"zyIyPe\":\"Quando um novo evento é criado\",\"Lc18qn\":\"Quando um novo pedido é criado\",\"dfkQIO\":\"Quando um novo produto é criado\",\"8OhzyY\":\"Quando um produto é excluído\",\"tRXdQ9\":\"Quando um produto é atualizado\",\"9L9/28\":\"Quando um produto esgota, os clientes podem juntar-se a uma lista de espera para serem notificados quando houver vagas disponíveis.\",\"Q7CWxp\":\"Quando um participante é cancelado\",\"IuUoyV\":\"Quando um participante faz check-in\",\"nBVOd7\":\"Quando um participante é atualizado\",\"t7cuMp\":\"Quando um evento é arquivado\",\"gtoSzE\":\"Quando um evento é atualizado\",\"ny2r8d\":\"Quando um pedido é cancelado\",\"c9RYbv\":\"Quando um pedido é marcado como pago\",\"ejMDw1\":\"Quando um pedido é reembolsado\",\"fVPt0F\":\"Quando um pedido é atualizado\",\"bcYlvb\":\"Quando fecha o check-in\",\"XIG669\":\"Quando abre o check-in\",\"403wpZ\":\"Quando ativado, novos eventos permitirão que os participantes gerenciem seus próprios detalhes de bilhete através de um link seguro. Isso pode ser substituído por evento.\",\"blXLKj\":\"Quando ativado, novos eventos exibirão uma caixa de seleção de opt-in de marketing durante o checkout. Isso pode ser substituído por evento.\",\"Kj0Txn\":\"Quando ativado, não serão cobradas taxas de aplicação nas transações Stripe Connect. Use isto para países onde as taxas de aplicação não são suportadas.\",\"tMqezN\":\"Se os reembolsos estão a ser processados\",\"uchB0M\":\"Pré-visualização do widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Escreva sua mensagem aqui...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"ano\",\"zkWmBh\":\"Anual\",\"+BGee5\":\"anos\",\"X/azM1\":\"Sim - Tenho um número de registo de IVA da UE válido\",\"Tz5oXG\":\"Sim, cancelar o meu pedido\",\"QlSZU0\":[\"Está a personificar <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Está a emitir um reembolso parcial. O cliente será reembolsado em \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Você pode configurar taxas de serviço adicionais e impostos nas configurações da sua conta.\",\"rj3A7+\":\"Pode substituir isto para datas individuais mais tarde.\",\"paWwQ0\":\"Ainda pode oferecer bilhetes manualmente, se necessário.\",\"jTDzpA\":\"Não pode arquivar o último organizador ativo da sua conta.\",\"5VGIlq\":\"Atingiu o seu limite de mensagens.\",\"casL1O\":\"Você adicionou taxas e impostos a um produto gratuito. Deseja removê-los?\",\"9jJNZY\":\"Tem de reconhecer as suas responsabilidades antes de guardar\",\"pCLes8\":\"Deve concordar em receber mensagens\",\"FVTVBy\":\"Você precisa verificar seu e-mail antes de atualizar o status do organizador.\",\"ze4bi/\":\"Tem de criar pelo menos uma sessão antes de poder adicionar participantes a este evento recorrente.\",\"w65ZgF\":\"Precisa de verificar o email da sua conta antes de poder modificar modelos de email.\",\"FRl8Jv\":\"Você precisa verificar o e-mail da sua conta antes de poder enviar mensagens.\",\"88cUW+\":\"Você recebe\",\"O6/3cu\":\"Poderá configurar datas, programações e regras de recorrência no próximo passo.\",\"zKAheG\":\"Está a alterar as horas das sessões\",\"MNFIxz\":[\"Vai participar em \",[\"0\"],\"!\"],\"qGZz0m\":\"Está na lista de espera!\",\"/5HL6k\":\"Foi-lhe oferecido um lugar!\",\"gbjFFH\":\"Alterou a hora da sessão\",\"p/Sa0j\":\"A sua conta tem limites de mensagens. Para aumentar os seus limites, contacte-nos em\",\"x/xjzn\":\"Os seus afiliados foram exportados com sucesso.\",\"TF37u6\":\"Seus participantes foram exportados com sucesso.\",\"79lXGw\":\"A sua lista de check-in foi criada com sucesso. Partilhe a ligação abaixo com a sua equipa de check-in.\",\"BnlG9U\":\"O seu pedido atual será perdido.\",\"nBqgQb\":\"Seu e-mail\",\"GG1fRP\":\"O seu evento está online!\",\"ifRqmm\":\"A sua mensagem foi enviada com sucesso!\",\"0/+Nn9\":\"As suas mensagens aparecerão aqui\",\"/Rj5P4\":\"Seu nome\",\"PFjJxY\":\"A sua nova senha deve ter pelo menos 8 caracteres.\",\"gzrCuN\":\"Os detalhes do seu pedido foram atualizados. Foi enviado um e-mail de confirmação para o novo endereço de e-mail.\",\"naQW82\":\"O seu pedido foi cancelado.\",\"bhlHm/\":\"O seu pedido aguarda pagamento\",\"XeNum6\":\"Seus pedidos foram exportados com sucesso.\",\"Xd1R1a\":\"Endereço do seu organizador\",\"WWYHKD\":\"O seu pagamento está protegido com encriptação de nível bancário\",\"5b3QLi\":\"Seu plano\",\"N4Zkqc\":\"O seu filtro de datas guardado já não está disponível — a mostrar todas as datas.\",\"FNO5uZ\":\"O seu bilhete continua válido — não é necessária qualquer ação a menos que a nova hora não lhe seja conveniente. Por favor, responda a este e-mail se tiver alguma dúvida.\",\"CnZ3Ou\":\"Os seus bilhetes foram confirmados.\",\"EmFsMZ\":\"O seu número de IVA está na fila para validação\",\"QBlhh4\":\"O seu número de IVA será validado quando guardar\",\"fT9VLt\":\"A sua oferta da lista de espera expirou e não foi possível concluir a sua encomenda. Por favor, volte a juntar-se à lista de espera para ser notificado quando ficarem disponíveis mais lugares.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Ainda não há nada para mostrar'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>desmarcado com sucesso\"],\"KMgp2+\":[[\"0\"],\" disponível\"],\"Pmr5xp\":[[\"0\"],\" criado com sucesso\"],\"FImCSc\":[[\"0\"],\" atualizado com sucesso\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dias, \",[\"hours\"],\" horas, \",[\"minutes\"],\" minutos e \",[\"seconds\"],\" segundos\"],\"f3RdEk\":[[\"hours\"],\" horas, \",[\"minutes\"],\" minutos e \",[\"seconds\"],\" segundos\"],\"fyE7Au\":[[\"minutos\"],\" minutos e \",[\"segundos\"],\" segundos\"],\"NlQ0cx\":[\"Primeiro evento de \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://seu-website.com\",\"qnSLLW\":\"<0>Por favor, insira o preço sem incluir impostos e taxas.<1>Impostos e taxas podem ser adicionados abaixo.\",\"ZjMs6e\":\"<0>O número de produtos disponíveis para este produto<1>Esse valor pode ser substituído se houver <2>Limites de Capacidade associados a este produto.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutos e 0 segundos\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Rua Principal 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Um campo de data. Perfeito para pedir uma data de nascimento, etc.\",\"6euFZ/\":[\"Um \",[\"type\"],\" padrão é automaticamente aplicado a todos os novos produtos. Você pode substituir isso para cada produto.\"],\"SMUbbQ\":\"Uma entrada suspensa permite apenas uma seleção\",\"qv4bfj\":\"Uma taxa, como uma taxa de reserva ou uma taxa de serviço\",\"POT0K/\":\"Um valor fixo por produto. Ex: $0,50 por produto\",\"f4vJgj\":\"Uma entrada de texto multilinha\",\"OIPtI5\":\"Uma porcentagem do preço do produto. Ex: 3,5% do preço do produto\",\"ZthcdI\":\"Um código promocional sem desconto pode ser usado para revelar produtos ocultos.\",\"AG/qmQ\":\"Uma opção Rádio tem múltiplas opções, mas apenas uma pode ser selecionada.\",\"h179TP\":\"Uma breve descrição do evento que será exibida nos resultados dos buscadores e no compartilhamento nas redes sociais. Por padrão, a descrição do evento será usada\",\"WKMnh4\":\"Uma entrada de texto de linha única\",\"BHZbFy\":\"Uma única pergunta por pedido. Ex: Qual é o seu endereço de entrega?\",\"Fuh+dI\":\"Uma única pergunta por produto. Ex: Qual é o seu tamanho de camiseta?\",\"RlJmQg\":\"Um imposto padrão, como IVA ou GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Aceitar transferências bancárias, cheques ou outros métodos de pagamento offline\",\"hrvLf4\":\"Aceitar pagamentos com cartão de crédito através do Stripe\",\"bfXQ+N\":\"Aceitar convite\",\"AeXO77\":\"Conta\",\"lkNdiH\":\"Nome da conta\",\"Puv7+X\":\"Configurações de Conta\",\"OmylXO\":\"Conta atualizada com sucesso\",\"7L01XJ\":\"Ações\",\"FQBaXG\":\"Ativar\",\"5T2HxQ\":\"Data de ativação\",\"F6pfE9\":\"Ativo\",\"/PN1DA\":\"Adicione uma descrição para esta lista de registro\",\"0/vPdA\":\"Adicione quaisquer notas sobre o participante. Estas não serão visíveis para o participante.\",\"Or1CPR\":\"Adicione quaisquer notas sobre o participante...\",\"l3sZO1\":\"Adicione quaisquer notas sobre o pedido. Estas não serão visíveis para o cliente.\",\"xMekgu\":\"Adicione quaisquer notas sobre o pedido...\",\"PGPGsL\":\"Adicionar descrição\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Adicione instruções para pagamentos offline (por exemplo, detalhes de transferência bancária, onde enviar cheques, prazos de pagamento)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Adicionar novo\",\"TZxnm8\":\"Adicionar opção\",\"24l4x6\":\"Adicionar Produto\",\"8q0EdE\":\"Adicionar Produto à Categoria\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Adicionar imposto ou taxa\",\"goOKRY\":\"Adicionar nível\",\"oZW/gT\":\"Adicionar ao calendário\",\"pn5qSs\":\"Informações adicionais\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Endereço\",\"NY/x1b\":\"Endereço Linha 1\",\"POdIrN\":\"Endereço Linha 1\",\"cormHa\":\"Endereço linha 2\",\"gwk5gg\":\"endereço linha 2\",\"U3pytU\":\"Administrador\",\"HLDaLi\":\"Os usuários administradores têm acesso total aos eventos e configurações da conta.\",\"W7AfhC\":\"Todos os participantes deste evento\",\"cde2hc\":\"Todos os Produtos\",\"5CQ+r0\":\"Permitir que participantes associados a pedidos não pagos façam check-in\",\"ipYKgM\":\"Permitir indexação do mecanismo de pesquisa\",\"LRbt6D\":\"Permitir que mecanismos de pesquisa indexem este evento\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Incrível, evento, palavras-chave...\",\"hehnjM\":\"Quantia\",\"R2O9Rg\":[\"Valor pago (\",[\"0\"],\")\"],\"V7MwOy\":\"Ocorreu um erro ao carregar a página\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Um erro inesperado ocorreu.\",\"byKna+\":\"Um erro inesperado ocorreu. Por favor, tente novamente.\",\"ubdMGz\":\"Quaisquer perguntas dos portadores de produtos serão enviadas para este endereço de e-mail. Este também será usado como o endereço de \\\"responder para\\\" em todos os e-mails enviados deste evento\",\"aAIQg2\":\"Aparência\",\"Ym1gnK\":\"aplicado\",\"sy6fss\":[\"Aplica-se a \",[\"0\"],\" produtos\"],\"kadJKg\":\"Aplica-se a 1 produto\",\"DB8zMK\":\"Aplicar\",\"GctSSm\":\"Aplicar código promocional\",\"ARBThj\":[\"Aplicar este \",[\"type\"],\" a todos os novos produtos\"],\"S0ctOE\":\"Arquivar evento\",\"TdfEV7\":\"Arquivado\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Tem certeza de que deseja ativar este participante?\",\"TvkW9+\":\"Tem certeza de que deseja arquivar este evento?\",\"/CV2x+\":\"Tem certeza de que deseja cancelar este participante? Isso anulará o ingresso\",\"YgRSEE\":\"Tem certeza de que deseja excluir este código promocional?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Tem certeza de que deseja fazer o rascunho deste evento? Isso tornará o evento invisível para o público\",\"mEHQ8I\":\"Tem certeza de que deseja tornar este evento público? Isso tornará o evento visível ao público\",\"s4JozW\":\"Tem certeza de que deseja restaurar este evento? Ele será restaurado como um evento rascunho.\",\"vJuISq\":\"Tem certeza de que deseja excluir esta Atribuição de Capacidade?\",\"baHeCz\":\"Tem certeza de que deseja excluir esta lista de registro?\",\"LBLOqH\":\"Pergunte uma vez por pedido\",\"wu98dY\":\"Perguntar uma vez por produto\",\"ss9PbX\":\"Participante\",\"m0CFV2\":\"Detalhes do participante\",\"QKim6l\":\"Participante não encontrado\",\"R5IT/I\":\"Notas do participante\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Bilhete do Participante\",\"9SZT4E\":\"Participantes\",\"iPBfZP\":\"Participantes Registrados\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Redimensionamento automático\",\"vZ5qKF\":\"Redimensionar automaticamente a altura do widget com base no conteúdo. Quando desativado, o widget preencherá a altura do contêiner.\",\"4lVaWA\":\"Aguardando pagamento offline\",\"2rHwhl\":\"Aguardando pagamento offline\",\"3wF4Q/\":\"Aguardando pagamento\",\"ioG+xt\":\"Aguardando Pagamento\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Impressionante Organizador Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Voltar à página do evento\",\"VCoEm+\":\"Volte ao login\",\"k1bLf+\":\"Cor de fundo\",\"I7xjqg\":\"Tipo de plano de fundo\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Endereço de cobrança\",\"/xC/im\":\"Configurações de cobrança\",\"rp/zaT\":\"Português brasileiro\",\"whqocw\":\"Ao se registrar, você concorda com nossos <0>Termos de Serviço e <1>Política de Privacidade.\",\"bcCn6r\":\"Tipo de cálculo\",\"+8bmSu\":\"Califórnia\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Cancelar\",\"Gjt/py\":\"Cancelar alteração de e-mail\",\"tVJk4q\":\"Cancelar pedido\",\"Os6n2a\":\"Cancelar pedido\",\"Mz7Ygx\":[\"Cancelar pedido \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Cancelado\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacidade\",\"V6Q5RZ\":\"Atribuição de Capacidade criada com sucesso\",\"k5p8dz\":\"Atribuição de Capacidade excluída com sucesso\",\"nDBs04\":\"Gestão de capacidade\",\"ddha3c\":\"As categorias permitem agrupar produtos. Por exemplo, você pode ter uma categoria para \\\"Ingressos\\\" e outra para \\\"Mercadorias\\\".\",\"iS0wAT\":\"As categorias ajudam a organizar seus produtos. Este título será exibido na página pública do evento.\",\"eorM7z\":\"Categorias reordenadas com sucesso.\",\"3EXqwa\":\"Categoria Criada com Sucesso\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Alterar a senha\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Fazer check-in de \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Fazer check-in e marcar pedido como pago\",\"QYLpB4\":\"Apenas fazer check-in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Confira este evento!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Lista de registro excluída com sucesso\",\"+hBhWk\":\"A lista de registro expirou\",\"mBsBHq\":\"A lista de registro não está ativa\",\"vPqpQG\":\"Lista de check-in não encontrada\",\"tejfAy\":\"Listas de Registro\",\"hD1ocH\":\"URL de check-in copiada para a área de transferência\",\"CNafaC\":\"As opções de caixa de seleção permitem seleções múltiplas\",\"SpabVf\":\"Caixas de seleção\",\"CRu4lK\":\"Registado\",\"znIg+z\":\"Finalizar compra\",\"1WnhCL\":\"Configurações de check-out\",\"6imsQS\":\"Chinês simplificado\",\"JjkX4+\":\"Escolha uma cor para o seu plano de fundo\",\"/Jizh9\":\"Escolha uma conta\",\"3wV73y\":\"Cidade\",\"FG98gC\":\"Limpar texto de pesquisa\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Clique para copiar\",\"yz7wBu\":\"Fechar\",\"62Ciis\":\"Fechar barra lateral\",\"EWPtMO\":\"Código\",\"ercTDX\":\"O código deve ter entre 3 e 50 caracteres\",\"oqr9HB\":\"Recolher este produto quando a página do evento for carregada inicialmente\",\"jZlrte\":\"Cor\",\"Vd+LC3\":\"A cor deve ser um código de cor hexadecimal válido. Exemplo: #ffffff\",\"1HfW/F\":\"Cores\",\"VZeG/A\":\"Em breve\",\"yPI7n9\":\"Palavras-chave separadas por vírgulas que descrevem o evento. Eles serão usados pelos mecanismos de pesquisa para ajudar a categorizar e indexar o evento\",\"NPZqBL\":\"Ordem completa\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Concluir pagamento\",\"qqWcBV\":\"Concluído\",\"6HK5Ct\":\"Pedidos concluídos\",\"NWVRtl\":\"Pedidos concluídos\",\"DwF9eH\":\"Código do componente\",\"Tf55h7\":\"Desconto configurado\",\"7VpPHA\":\"confirme\",\"ZaEJZM\":\"Confirmar alteração de e-mail\",\"yjkELF\":\"Confirme a nova senha\",\"xnWESi\":\"Confirme sua senha\",\"p2/GCq\":\"Confirme sua senha\",\"wnDgGj\":\"Confirmando endereço de e-mail...\",\"pbAk7a\":\"Conectar faixa\",\"UMGQOh\":\"Conecte-se com Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Detalhes da conexão\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continuar\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Texto do botão Continuar\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copiado\",\"T5rdis\":\"Copiado para a área de transferência\",\"he3ygx\":\"cópia de\",\"r2B2P8\":\"Copiar URL de check-in\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Link de cópia\",\"E6nRW7\":\"Copiar URL\",\"JNCzPW\":\"País\",\"IF7RiR\":\"Cobrir\",\"hYgDIe\":\"Criar\",\"b9XOHo\":[\"Criar \",[\"0\"]],\"k9RiLi\":\"Criar um Produto\",\"6kdXbW\":\"Crie um código promocional\",\"n5pRtF\":\"Crie um ingresso\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"criar um organizador\",\"ipP6Ue\":\"Criar participante\",\"VwdqVy\":\"Criar Atribuição de Capacidade\",\"EwoMtl\":\"Criar categoria\",\"XletzW\":\"Criar Categoria\",\"WVbTwK\":\"Criar Lista de Registro\",\"uN355O\":\"Criar Evento\",\"BOqY23\":\"Crie um novo\",\"kpJAeS\":\"Criar organizador\",\"a0EjD+\":\"Criar Produto\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Criar código promocional\",\"B3Mkdt\":\"Criar pergunta\",\"UKfi21\":\"Criar imposto ou taxa\",\"d+F6q9\":\"Criado\",\"Q2lUR2\":\"Moeda\",\"DCKkhU\":\"Senha atual\",\"uIElGP\":\"URL de mapas personalizados\",\"UEqXyt\":\"Intervalo personalizado\",\"876pfE\":\"Cliente\",\"QOg2Sf\":\"Personalize as configurações de e-mail e notificação deste evento\",\"Y9Z/vP\":\"Personalize a página inicial do evento e as mensagens de checkout\",\"2E2O5H\":\"Personalize as diversas configurações deste evento\",\"iJhSxe\":\"Personalize as configurações de SEO para este evento\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Zona de perigo\",\"ZQKLI1\":\"Zona de Perigo\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Data\",\"JvUngl\":\"Data e hora\",\"JJhRbH\":\"Capacidade do primeiro dia\",\"cnGeoo\":\"Excluir\",\"jRJZxD\":\"Excluir Capacidade\",\"VskHIx\":\"Excluir categoria\",\"Qrc8RZ\":\"Excluir Lista de Registro\",\"WHf154\":\"Excluir código\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Descrição\",\"YC3oXa\":\"Descrição para a equipe de registro\",\"URmyfc\":\"Detalhes\",\"1lRT3t\":\"Desativar esta capacidade rastreará as vendas, mas não as interromperá quando o limite for atingido\",\"H6Ma8Z\":\"Desconto\",\"ypJ62C\":\"% de desconto\",\"3LtiBI\":[\"Desconto em \",[\"0\"]],\"C8JLas\":\"Tipo de desconto\",\"1QfxQT\":\"Dispensar\",\"DZlSLn\":\"Etiqueta do documento\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Doação / Produto com valor voluntário\",\"OvNbls\":\"Baixar .ics\",\"kodV18\":\"Baixar CSV\",\"CELKku\":\"Baixar fatura\",\"LQrXcu\":\"Baixar fatura\",\"QIodqd\":\"Baixar código QR\",\"yhjU+j\":\"A baixar fatura\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Seleção suspensa\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicar evento\",\"3ogkAk\":\"Duplicar evento\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Duplicar Opções\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Madrugador\",\"ePK91l\":\"Editar\",\"N6j2JH\":[\"Editar \",[\"0\"]],\"kBkYSa\":\"Editar Capacidade\",\"oHE9JT\":\"Editar Atribuição de Capacidade\",\"j1Jl7s\":\"Editar categoria\",\"FU1gvP\":\"Editar Lista de Registro\",\"iFgaVN\":\"Editar código\",\"jrBSO1\":\"Editar organizador\",\"tdD/QN\":\"Editar Produto\",\"n143Tq\":\"Editar Categoria de Produto\",\"9BdS63\":\"Editar código promocional\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Editar pergunta\",\"poTr35\":\"Editar usuário\",\"GTOcxw\":\"Editar usuário\",\"pqFrv2\":\"por exemplo. 2,50 por US$ 2,50\",\"3yiej1\":\"por exemplo. 23,5 para 23,5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Configurações de e-mail e notificação\",\"ATGYL1\":\"Endereço de email\",\"hzKQCy\":\"Endereço de email\",\"HqP6Qf\":\"Alteração de e-mail cancelada com sucesso\",\"mISwW1\":\"Alteração de e-mail pendente\",\"APuxIE\":\"Confirmação de e-mail reenviada\",\"YaCgdO\":\"Confirmação de e-mail reenviada com sucesso\",\"jyt+cx\":\"Mensagem de rodapé do e-mail\",\"I6F3cp\":\"E-mail não verificado\",\"NTZ/NX\":\"Código de incorporação\",\"4rnJq4\":\"Script de incorporação\",\"8oPbg1\":\"Habilitar faturamento\",\"j6w7d/\":\"Ative esta capacidade para interromper as vendas de produtos quando o limite for atingido\",\"VFv2ZC\":\"Data de término\",\"237hSL\":\"Terminou\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Inglês\",\"MhVoma\":\"Insira um valor sem impostos e taxas.\",\"SlfejT\":\"Erro\",\"3Z223G\":\"Erro ao confirmar o endereço de e-mail\",\"a6gga1\":\"Erro ao confirmar a alteração do e-mail\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evento\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Data do Evento\",\"0Zptey\":\"Padrões de eventos\",\"QcCPs8\":\"Detalhes do evento\",\"6fuA9p\":\"Evento duplicado com sucesso\",\"AEuj2m\":\"Página inicial do evento\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Local do evento e detalhes do local\",\"OopDbA\":\"Event page\",\"4/If97\":\"Falha na atualização do status do evento. Por favor, tente novamente mais tarde\",\"btxLWj\":\"Status do evento atualizado\",\"nMU2d3\":\"URL do evento\",\"tst44n\":\"Eventos\",\"sZg7s1\":\"Data de Expiração\",\"KnN1Tu\":\"Expira\",\"uaSvqt\":\"Data de validade\",\"GS+Mus\":\"Exportar\",\"9xAp/j\":\"Falha ao cancelar participante\",\"ZpieFv\":\"Falha ao cancelar pedido\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Falha ao baixar a fatura. Por favor, tente novamente.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Falha ao carregar a Lista de Registro\",\"ZQ15eN\":\"Falha ao reenviar e-mail do ticket\",\"ejXy+D\":\"Falha ao ordenar os produtos\",\"PLUB/s\":\"Taxa\",\"/mfICu\":\"Tarifas\",\"LyFC7X\":\"Filtrar pedidos\",\"cSev+j\":\"Filtros\",\"CVw2MU\":[\"Filtros (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Primeiro número da fatura\",\"V1EGGU\":\"Primeiro nome\",\"kODvZJ\":\"Primeiro nome\",\"S+tm06\":\"O nome deve ter entre 1 e 50 caracteres\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Usado pela primeira vez\",\"TpqW74\":\"Fixo\",\"irpUxR\":\"Quantia fixa\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Esqueceu sua senha?\",\"2POOFK\":\"Livre\",\"P/OAYJ\":\"Produto Gratuito\",\"vAbVy9\":\"Produto gratuito, sem necessidade de informações de pagamento\",\"nLC6tu\":\"francês\",\"Weq9zb\":\"Geral\",\"DDcvSo\":\"alemão\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Voltar ao perfil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Agenda\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Vendas brutas\",\"yRg26W\":\"Vendas brutas\",\"R4r4XO\":\"Convidados\",\"26pGvx\":\"Tem um código promocional?\",\"V7yhws\":\"olá@awesome-events.com\",\"6K/IHl\":\"Aqui está um exemplo de como você pode usar o componente em sua aplicação.\",\"Y1SSqh\":\"Aqui está o componente React que você pode usar para incorporar o widget em sua aplicação.\",\"QuhVpV\":[\"Oi \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Escondido da vista do público\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"As perguntas ocultas são visíveis apenas para o organizador do evento e não para o cliente.\",\"vLyv1R\":\"Esconder\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Ocultar produto após a data de término da venda\",\"06s3w3\":\"Ocultar produto antes da data de início da venda\",\"axVMjA\":\"Ocultar produto, a menos que o usuário tenha um código promocional aplicável\",\"ySQGHV\":\"Ocultar produto quando esgotado\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Ocultar este produto dos clientes\",\"Da29Y6\":\"Ocultar esta pergunta\",\"fvDQhr\":\"Ocultar esta camada dos usuários\",\"lNipG+\":\"Ocultar um produto impedirá que os usuários o vejam na página do evento.\",\"ZOBwQn\":\"Design da página inicial\",\"PRuBTd\":\"Designer de página inicial\",\"YjVNGZ\":\"Visualização da página inicial\",\"c3E/kw\":\"Homero\",\"8k8Njd\":\"Quantos minutos o cliente tem para concluir o pedido. Recomendamos pelo menos 15 minutos\",\"ySxKZe\":\"Quantas vezes esse código pode ser usado?\",\"dZsDbK\":[\"Limite de caracteres HTML excedido: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Concordo com os <0>termos e condições\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Se ativado, a equipe de check-in pode marcar os participantes como registrados ou marcar o pedido como pago e registrar os participantes. Se desativado, os participantes associados a pedidos não pagos não poderão ser registrados.\",\"muXhGi\":\"Se ativado, o organizador receberá uma notificação por e-mail quando um novo pedido for feito\",\"6fLyj/\":\"Se você não solicitou essa alteração, altere imediatamente sua senha.\",\"n/ZDCz\":\"Imagem excluída com sucesso\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Imagem enviada com sucesso\",\"VyUuZb\":\"URL da imagem\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inativo\",\"T0K0yl\":\"Usuários inativos não podem fazer login.\",\"kO44sp\":\"Inclua detalhes de conexão para o seu evento online. Estes detalhes serão mostrados na página de resumo do pedido e no bilhete do participante.\",\"FlQKnG\":\"Incluir impostos e taxas no preço\",\"Vi+BiW\":[\"Inclui \",[\"0\"],\" produtos\"],\"lpm0+y\":\"Inclui 1 produto\",\"UiAk5P\":\"Inserir imagem\",\"OyLdaz\":\"Convite reenviado!\",\"HE6KcK\":\"Convite revogado!\",\"SQKPvQ\":\"Convidar Usuário\",\"bKOYkd\":\"Fatura baixada com sucesso\",\"alD1+n\":\"Notas da fatura\",\"kOtCs2\":\"Numeração da fatura\",\"UZ2GSZ\":\"Configurações da fatura\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Item\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Rótulo\",\"vXIe7J\":\"Língua\",\"2LMsOq\":\"Últimos 12 meses\",\"vfe90m\":\"Últimos 14 dias\",\"aK4uBd\":\"Últimas 24 horas\",\"uq2BmQ\":\"Últimos 30 dias\",\"bB6Ram\":\"Últimas 48 horas\",\"VlnB7s\":\"Últimos 6 meses\",\"ct2SYD\":\"Últimos 7 dias\",\"XgOuA7\":\"Últimos 90 dias\",\"I3yitW\":\"Último Login\",\"1ZaQUH\":\"Sobrenome\",\"UXBCwc\":\"Sobrenome\",\"tKCBU0\":\"Última vez usado\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Deixe em branco para usar a palavra padrão \\\"Fatura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Carregando...\",\"wJijgU\":\"Localização\",\"sQia9P\":\"Conecte-se\",\"zUDyah\":\"Fazendo login\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Sair\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Tornar o endereço de cobrança obrigatório durante o checkout\",\"MU3ijv\":\"Torne esta pergunta obrigatória\",\"wckWOP\":\"Gerenciar\",\"onpJrA\":\"Gerenciar participante\",\"n4SpU5\":\"Gerenciar evento\",\"WVgSTy\":\"Gerenciar pedido\",\"1MAvUY\":\"Gerenciar as configurações de pagamento e faturamento para este evento.\",\"cQrNR3\":\"Gerenciar perfil\",\"AtXtSw\":\"Gerencie impostos e taxas que podem ser aplicados aos seus produtos\",\"ophZVW\":\"Gerenciar ingressos\",\"DdHfeW\":\"Gerencie os detalhes da sua conta e configurações padrão\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Gerencie seus usuários e suas permissões\",\"1m+YT2\":\"Perguntas obrigatórias devem ser respondidas antes que o cliente possa finalizar a compra.\",\"Dim4LO\":\"Adicionar manualmente um participante\",\"e4KdjJ\":\"Adicionar participante manualmente\",\"vFjEnF\":\"Marcar como pago\",\"g9dPPQ\":\"Máximo por pedido\",\"l5OcwO\":\"Participante da mensagem\",\"Gv5AMu\":\"Participantes da mensagem\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Comprador de mensagens\",\"tNZzFb\":\"Conteúdo da mensagem\",\"lYDV/s\":\"Mensagem para participantes individuais\",\"V7DYWd\":\"Mensagem enviada\",\"t7TeQU\":\"Mensagens\",\"xFRMlO\":\"Mínimo por pedido\",\"QYcUEf\":\"Preço minimo\",\"RDie0n\":\"Diversos\",\"mYLhkl\":\"Configurações Diversas\",\"KYveV8\":\"Caixa de texto com várias linhas\",\"VD0iA7\":\"Múltiplas opções de preço. Perfeito para produtos antecipados, etc.\",\"/bhMdO\":\"Minha incrível descrição do evento...\",\"vX8/tc\":\"Meu incrível título de evento...\",\"hKtWk2\":\"Meu perfil\",\"fj5byd\":\"N/D\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nome\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navegue até o participante\",\"qqeAJM\":\"Nunca\",\"7vhWI8\":\"Nova Senha\",\"1UzENP\":\"Não\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Não há eventos arquivados para mostrar.\",\"q2LEDV\":\"Nenhum participante encontrado para este pedido.\",\"zlHa5R\":\"Nenhum participante foi adicionado a este pedido.\",\"Wjz5KP\":\"Nenhum participante para mostrar\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Sem Atribuições de Capacidade\",\"a/gMx2\":\"Nenhuma Lista de Registro\",\"tMFDem\":\"Nenhum dado disponível\",\"6Z/F61\":\"Nenhum dado para mostrar. Por favor, selecione um intervalo de datas\",\"fFeCKc\":\"Sem desconto\",\"HFucK5\":\"Não há eventos encerrados para mostrar.\",\"yAlJXG\":\"Nenhum evento para mostrar\",\"GqvPcv\":\"Nenhum filtro disponível\",\"KPWxKD\":\"Nenhuma mensagem para mostrar\",\"J2LkP8\":\"Não há pedidos para mostrar\",\"RBXXtB\":\"Nenhum método de pagamento está disponível no momento. Entre em contato com o organizador do evento para obter assistência.\",\"ZWEfBE\":\"Pagamento não necessário\",\"ZPoHOn\":\"Nenhum produto associado a este participante.\",\"Ya1JhR\":\"Nenhum produto disponível nesta categoria.\",\"FTfObB\":\"Nenhum Produto Ainda\",\"+Y976X\":\"Nenhum código promocional para mostrar\",\"MAavyl\":\"Nenhuma pergunta foi respondida por este participante.\",\"SnlQeq\":\"Nenhuma pergunta foi feita para este pedido.\",\"Ev2r9A\":\"Nenhum resultado\",\"gk5uwN\":\"Nenhum Resultado de Pesquisa\",\"RHyZUL\":\"Nenhum resultado de pesquisa.\",\"RY2eP1\":\"Nenhum imposto ou taxa foi adicionado.\",\"EdQY6l\":\"Nenhum\",\"OJx3wK\":\"Não disponível\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notas\",\"jtrY3S\":\"Nada para mostrar ainda\",\"hFwWnI\":\"Configurações de notificação\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notificar o organizador sobre novos pedidos\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Número de dias permitidos para pagamento (deixe em branco para omitir os termos de pagamento nas faturas)\",\"n86jmj\":\"Prefixo numérico\",\"mwe+2z\":\"Pedidos offline não são refletidos nas estatísticas do evento até que sejam marcados como pagos.\",\"dWBrJX\":\"O pagamento offline falhou. Por favor, tente novamente ou entre em contato com o organizador do evento.\",\"fcnqjw\":\"Instruções de Pagamento Offline\",\"+eZ7dp\":\"Pagamentos offline\",\"ojDQlR\":\"Informações sobre pagamentos offline\",\"u5oO/W\":\"Configurações de pagamentos offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"À venda\",\"Ug4SfW\":\"Depois de criar um evento, você o verá aqui.\",\"ZxnK5C\":\"Assim que você começar a coletar dados, eles aparecerão aqui.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Em andamento\",\"z+nuVJ\":\"Evento online\",\"WKHW0N\":\"Detalhes do evento on-line\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Abrir Página de Check-In\",\"OdnLE4\":\"Abrir barra lateral\",\"ZZEYpT\":[\"Opção \",[\"i\"]],\"oPknTP\":\"Informações adicionais opcionais a serem exibidas em todas as faturas (ex.: condições de pagamento, taxas por atraso, política de devolução)\",\"OrXJBY\":\"Prefixo opcional para os números das faturas (ex.: INV-)\",\"0zpgxV\":\"Opções\",\"BzEFor\":\"ou\",\"UYUgdb\":\"Ordem\",\"mm+eaX\":\"Encomenda n.º\",\"B3gPuX\":\"Pedido cancelado\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Data do pedido\",\"Tol4BF\":\"detalhes do pedido\",\"WbImlQ\":\"O pedido foi cancelado e o proprietário do pedido foi notificado.\",\"nAn4Oe\":\"Pedido marcado como pago\",\"uzEfRz\":\"Notas do pedido\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Referência do pedido\",\"acIJ41\":\"Status do pedido\",\"GX6dZv\":\"resumo do pedido\",\"tDTq0D\":\"Tempo limite do pedido\",\"1h+RBg\":\"Pedidos\",\"3y+V4p\":\"Endereço da organização\",\"GVcaW6\":\"Detalhes da organização\",\"nfnm9D\":\"Nome da organização\",\"G5RhpL\":\"Organizador\",\"mYygCM\":\"O organizador é obrigatório\",\"Pa6G7v\":\"Nome do organizador\",\"l894xP\":\"Os organizadores só podem gerenciar eventos e produtos. Eles não podem gerenciar usuários, configurações de conta ou informações de faturamento.\",\"fdjq4c\":\"Preenchimento\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"página não encontrada\",\"QbrUIo\":\"visualizações de página\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"pago\",\"HVW65c\":\"Produto Pago\",\"ZfxaB4\":\"Parcialmente reembolsado\",\"8ZsakT\":\"Senha\",\"TUJAyx\":\"A senha deve ter no mínimo 8 caracteres\",\"vwGkYB\":\"A senha deve conter pelo menos 8 caracteres\",\"BLTZ42\":\"Redefinição de senha com sucesso. Por favor faça login com sua nova senha.\",\"f7SUun\":\"senhas nao sao as mesmas\",\"aEDp5C\":\"Cole isto onde você deseja que o widget apareça.\",\"+23bI/\":\"Patrício\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Pagamento\",\"Lg+ewC\":\"Pagamento e faturamento\",\"DZjk8u\":\"Configurações de pagamento e faturamento\",\"lflimf\":\"Prazo para pagamento\",\"JhtZAK\":\"Pagamento falhou\",\"JEdsvQ\":\"Instruções de pagamento\",\"bLB3MJ\":\"Métodos de pagamento\",\"QzmQBG\":\"Provedor de pagamento\",\"lsxOPC\":\"Pagamento recebido\",\"wJTzyi\":\"Status do pagamento\",\"xgav5v\":\"Pagamento realizado com sucesso!\",\"R29lO5\":\"Termos de pagamento\",\"/roQKz\":\"Percentagem\",\"vPJ1FI\":\"Valor percentual\",\"xdA9ud\":\"Coloque isto no do seu site.\",\"blK94r\":\"Adicione pelo menos uma opção\",\"FJ9Yat\":\"Verifique se as informações fornecidas estão corretas\",\"TkQVup\":\"Verifique seu e-mail e senha e tente novamente\",\"sMiGXD\":\"Verifique se seu e-mail é válido\",\"Ajavq0\":\"Verifique seu e-mail para confirmar seu endereço de e-mail\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Continue na nova aba\",\"hcX103\":\"Por favor, crie um produto\",\"cdR8d6\":\"Por favor, crie um ingresso\",\"x2mjl4\":\"Por favor, insira um URL de imagem válido que aponte para uma imagem.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Observe\",\"C63rRe\":\"Por favor, volte para a página do evento para recomeçar.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Por favor, selecione pelo menos um produto\",\"igBrCH\":\"Verifique seu endereço de e-mail para acessar todos os recursos\",\"/IzmnP\":\"Por favor, aguarde enquanto preparamos a sua fatura...\",\"MOERNx\":\"Português\",\"qCJyMx\":\"Mensagem pós-check-out\",\"g2UNkE\":\"Distribuído por\",\"Rs7IQv\":\"Mensagem pré-checkout\",\"rdUucN\":\"Pré-visualização\",\"a7u1N9\":\"Preço\",\"CmoB9j\":\"Modo de exibição de preço\",\"BI7D9d\":\"Preço não definido\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Tipo de Preço\",\"6RmHKN\":\"Cor primária\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Cor do texto primário\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Imprimir todos os ingressos\",\"DKwDdj\":\"Imprimir ingressos\",\"K47k8R\":\"Produto\",\"1JwlHk\":\"Categoria de Produto\",\"U61sAj\":\"Categoria de produto atualizada com sucesso.\",\"1USFWA\":\"Produto excluído com sucesso\",\"4Y2FZT\":\"Tipo de Preço do Produto\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Vendas de Produtos\",\"U/R4Ng\":\"Nível do Produto\",\"sJsr1h\":\"Tipo de Produto\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produto(s)\",\"N0qXpE\":\"Produtos\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Produtos vendidos\",\"/u4DIx\":\"Produtos Vendidos\",\"DJQEZc\":\"Produtos ordenados com sucesso\",\"vERlcd\":\"Perfil\",\"kUlL8W\":\"Perfil atualizado com sucesso\",\"cl5WYc\":[\"Código promocional \",[\"promo_code\"],\" aplicado\"],\"P5sgAk\":\"Código promocional\",\"yKWfjC\":\"Página de código promocional\",\"RVb8Fo\":\"Códigos promocionais\",\"BZ9GWa\":\"Os códigos promocionais podem ser usados para oferecer descontos, acesso pré-venda ou fornecer acesso especial ao seu evento.\",\"OP094m\":\"Relatório de códigos promocionais\",\"4kyDD5\":\"Forneça contexto adicional ou instruções para esta pergunta. Utilize este campo para adicionar termos\\ne condições, diretrizes ou qualquer informação importante que os participantes precisem de saber antes de responder.\",\"toutGW\":\"Código QR\",\"LkMOWF\":\"Quantidade Disponível\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Pergunta excluída\",\"avf0gk\":\"Descrição da pergunta\",\"oQvMPn\":\"título da questão\",\"enzGAL\":\"Questões\",\"ROv2ZT\":\"Perguntas e Respostas\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Opção de rádio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Destinatário\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Reembolso falhou\",\"n10yGu\":\"Pedido de reembolso\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Reembolso pendente\",\"xHpVRl\":\"Status do reembolso\",\"/BI0y9\":\"Devolveu\",\"fgLNSM\":\"Registro\",\"9+8Vez\":\"Usos restantes\",\"tasfos\":\"remover\",\"t/YqKh\":\"Remover\",\"t9yxlZ\":\"Relatórios\",\"prZGMe\":\"Exigir endereço de cobrança\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Reenviar e-mail de confirmação\",\"wIa8Qe\":\"Reenviar convite\",\"VeKsnD\":\"Reenviar e-mail do pedido\",\"dFuEhO\":\"Reenviar e-mail do bilhete\",\"o6+Y6d\":\"Reenviando...\",\"OfhWJH\":\"Redefinir\",\"RfwZxd\":\"Redefinir senha\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restaurar evento\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Voltar para a página do evento\",\"8YBH95\":\"Receita\",\"PO/sOY\":\"Revogar convite\",\"GDvlUT\":\"Papel\",\"ELa4O9\":\"Data de término da venda\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Data de início da venda\",\"hBsw5C\":\"Vendas encerradas\",\"kpAzPe\":\"Início das vendas\",\"P/wEOX\":\"São Francisco\",\"tfDRzk\":\"Salvar\",\"IUwGEM\":\"Salvar alterações\",\"U65fiW\":\"Salvar organizador\",\"UGT5vp\":\"Salvar configurações\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Pesquise por nome do participante, e-mail ou número do pedido...\",\"+pr/FY\":\"Pesquisar por nome do evento...\",\"3zRbWw\":\"Pesquise por nome, e-mail ou número do pedido...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Procura por nome...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Pesquisar atribuições de capacidade...\",\"r9M1hc\":\"Pesquisar listas de registro...\",\"+0Yy2U\":\"Buscar produtos\",\"YIix5Y\":\"Procurar...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Cor secundária\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Cor do texto secundário\",\"02ePaq\":[\"Selecionar \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Selecione a categoria...\",\"kWI/37\":\"Selecione o organizador\",\"ixIx1f\":\"Selecione o Produto\",\"3oSV95\":\"Selecione o Nível do Produto\",\"C4Y1hA\":\"Selecione os produtos\",\"hAjDQy\":\"Selecione o status\",\"QYARw/\":\"Selecione o ingresso\",\"OMX4tH\":\"Selecionar ingressos\",\"DrwwNd\":\"Selecione o período de tempo\",\"O/7I0o\":\"Selecione...\",\"JlFcis\":\"Enviar\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Envie uma mensagem\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Enviar Mensagem\",\"D7ZemV\":\"Enviar confirmação do pedido e e-mail do ticket\",\"v1rRtW\":\"Enviar teste\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descrição SEO\",\"/SIY6o\":\"Palavras-chave SEO\",\"GfWoKv\":\"Configurações de SEO\",\"rXngLf\":\"Título SEO\",\"/jZOZa\":\"Taxa de serviço\",\"Bj/QGQ\":\"Fixar um preço mínimo e permitir que os utilizadores paguem mais se assim o desejarem\",\"L0pJmz\":\"Defina o número inicial para a numeração das faturas. Isso não poderá ser alterado depois que as faturas forem geradas.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Configurações\",\"Z8lGw6\":\"Compartilhar\",\"B2V3cA\":\"Compartilhar evento\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Mostrar quantidade disponível do produto\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Mostre mais\",\"izwOOD\":\"Mostrar impostos e taxas separadamente\",\"1SbbH8\":\"Mostrado ao cliente após o checkout, na página de resumo do pedido.\",\"YfHZv0\":\"Mostrado ao cliente antes de finalizar a compra\",\"CBBcly\":\"Mostra campos de endereço comuns, incluindo país\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Caixa de texto de linha única\",\"+P0Cn2\":\"Pular esta etapa\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Vendido\",\"Mi1rVn\":\"Vendido\",\"nwtY4N\":\"Algo correu mal\",\"GRChTw\":\"Algo deu errado ao excluir o imposto ou taxa\",\"YHFrbe\":\"Algo deu errado! Por favor, tente novamente\",\"kf83Ld\":\"Algo deu errado.\",\"fWsBTs\":\"Algo deu errado. Por favor, tente novamente.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Desculpe, este código promocional não é reconhecido\",\"65A04M\":\"espanhol\",\"mFuBqb\":\"Produto padrão com preço fixo\",\"D3iCkb\":\"Data de início\",\"/2by1f\":\"Estado ou Região\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Os pagamentos via Stripe não estão ativados para este evento.\",\"UJmAAK\":\"Assunto\",\"X2rrlw\":\"Subtotal\",\"zzDlyQ\":\"Sucesso\",\"b0HJ45\":[\"Sucesso! \",[\"0\"],\" receberá um e-mail em breve.\"],\"BJIEiF\":[[\"0\"],\" participante com sucesso\"],\"OtgNFx\":\"Endereço de e-mail confirmado com sucesso\",\"IKwyaF\":\"Alteração de e-mail confirmada com sucesso\",\"zLmvhE\":\"Participante criado com sucesso\",\"gP22tw\":\"Produto Criado com Sucesso\",\"9mZEgt\":\"Código promocional criado com sucesso\",\"aIA9C4\":\"Pergunta criada com sucesso\",\"J3RJSZ\":\"Participante atualizado com sucesso\",\"3suLF0\":\"Atribuição de Capacidade atualizada com sucesso\",\"Z+rnth\":\"Lista de Registro atualizada com sucesso\",\"vzJenu\":\"Configurações de e-mail atualizadas com sucesso\",\"7kOMfV\":\"Evento atualizado com sucesso\",\"G0KW+e\":\"Design da página inicial atualizado com sucesso\",\"k9m6/E\":\"Configurações da página inicial atualizadas com sucesso\",\"y/NR6s\":\"Local atualizado com sucesso\",\"73nxDO\":\"Configurações diversas atualizadas com sucesso\",\"4H80qv\":\"Pedido atualizado com sucesso\",\"6xCBVN\":\"Configurações de pagamento e faturamento atualizadas com sucesso\",\"1Ycaad\":\"Produto atualizado com sucesso\",\"70dYC8\":\"Código promocional atualizado com sucesso\",\"F+pJnL\":\"Configurações de SEO atualizadas com sucesso\",\"DXZRk5\":\"Suíte 100\",\"GNcfRk\":\"E-mail de suporte\",\"uRfugr\":\"Camiseta\",\"JpohL9\":\"Imposto\",\"geUFpZ\":\"Impostos e taxas\",\"dFHcIn\":\"Detalhes fiscais\",\"wQzCPX\":\"Informações fiscais que aparecerão na parte inferior de todas as faturas (ex.: número de IVA, registro fiscal)\",\"0RXCDo\":\"Imposto ou taxa excluídos com sucesso\",\"ZowkxF\":\"Impostos\",\"qu6/03\":\"Impostos e Taxas\",\"gypigA\":\"Esse código promocional é inválido\",\"5ShqeM\":\"A lista de check-in que você está procurando não existe.\",\"QXlz+n\":\"A moeda padrão para seus eventos.\",\"mnafgQ\":\"O fuso horário padrão para seus eventos.\",\"o7s5FA\":\"A língua em que o participante receberá as mensagens de correio eletrónico.\",\"NlfnUd\":\"O link que você clicou é inválido.\",\"HsFnrk\":[\"O número máximo de produtos para \",[\"0\"],\" é \",[\"1\"]],\"TSAiPM\":\"A página que você procura não existe\",\"MSmKHn\":\"O preço exibido ao cliente incluirá impostos e taxas.\",\"6zQOg1\":\"O preço apresentado ao cliente não incluirá impostos e taxas. Eles serão mostrados separadamente\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"O título do evento que será exibido nos resultados dos buscadores e no compartilhamento nas redes sociais. Por padrão, o título do evento será usado\",\"wDx3FF\":\"Não há produtos disponíveis para este evento\",\"pNgdBv\":\"Não há produtos disponíveis nesta categoria\",\"rMcHYt\":\"Há um reembolso pendente. Aguarde a conclusão antes de solicitar outro reembolso.\",\"F89D36\":\"Ocorreu um erro ao marcar o pedido como pago\",\"68Axnm\":\"Houve um erro ao processar seu pedido. Por favor, tente novamente.\",\"mVKOW6\":\"Houve um erro ao enviar a sua mensagem\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Este participante tem um pedido não pago.\",\"mf3FrP\":\"Esta categoria ainda não possui produtos.\",\"8QH2Il\":\"Esta categoria está oculta da visualização pública\",\"xxv3BZ\":\"Esta lista de registro expirou\",\"Sa7w7S\":\"Esta lista de registro expirou e não está mais disponível para registros.\",\"Uicx2U\":\"Esta lista de registro está ativa\",\"1k0Mp4\":\"Esta lista de registro ainda não está ativa\",\"K6fmBI\":\"Esta lista de registro ainda não está ativa e não está disponível para registros.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Essas informações serão exibidas na página de pagamento, no resumo do pedido e no e-mail de confirmação do pedido.\",\"XAHqAg\":\"Este é um produto geral, como uma camiseta ou uma caneca. Nenhum ingresso será emitido\",\"CNk/ro\":\"Este é um evento on-line\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Esta mensagem será incluída no rodapé de todos os e-mails enviados deste evento\",\"55i7Fa\":\"Esta mensagem só será mostrada se o pedido for concluído com sucesso. Pedidos aguardando pagamento não mostrarão esta mensagem.\",\"RjwlZt\":\"Este pedido já foi pago.\",\"5K8REg\":\"Este pedido já foi reembolsado.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Esse pedido foi cancelado.\",\"Q0zd4P\":\"Este pedido expirou. Por favor, recomece.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Este pedido está completo.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Esta página de pedido não está mais disponível.\",\"i0TtkR\":\"Isso substitui todas as configurações de visibilidade e ocultará o produto de todos os clientes.\",\"cRRc+F\":\"Este produto não pode ser excluído porque está associado a um pedido. Você pode ocultá-lo em vez disso.\",\"3Kzsk7\":\"Este produto é um ingresso. Os compradores receberão um ingresso ao comprar\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Este link de redefinição de senha é inválido ou expirou.\",\"IV9xTT\":\"Este usuário não está ativo porque não aceitou o convite.\",\"5AnPaO\":\"bilhete\",\"kjAL4v\":\"Bilhete\",\"dtGC3q\":\"O e-mail do ticket foi reenviado ao participante\",\"54q0zp\":\"Ingressos para\",\"xN9AhL\":[\"Nível \",[\"0\"]],\"jZj9y9\":\"Produto em Camadas\",\"8wITQA\":\"Os produtos escalonados permitem que você ofereça múltiplas opções de preço para o mesmo produto. Isso é perfeito para produtos antecipados ou para oferecer diferentes opções de preço para diferentes grupos de pessoas.\\\" # pt\",\"nn3mSR\":\"Tempo restante:\",\"s/0RpH\":\"Tempos usados\",\"y55eMd\":\"Vezes usado\",\"40Gx0U\":\"Fuso horário\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Ferramentas\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total antes de descontos\",\"NRWNfv\":\"Montante total do desconto\",\"BxsfMK\":\"Taxas totais\",\"2bR+8v\":\"Total de vendas brutas\",\"mpB/d9\":\"Valor total do pedido\",\"m3FM1g\":\"Total reembolsado\",\"jEbkcB\":\"Total Reembolsado\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Taxa total\",\"+zy2Nq\":\"Tipo\",\"FMdMfZ\":\"Não foi possível registrar o participante\",\"bPWBLL\":\"Não foi possível retirar o participante\",\"9+P7zk\":\"Não foi possível criar o produto. Por favor, verifique seus detalhes\",\"WLxtFC\":\"Não foi possível criar o produto. Por favor, verifique seus detalhes\",\"/cSMqv\":\"Não foi possível criar a pergunta. Por favor verifique os seus dados\",\"MH/lj8\":\"Não foi possível atualizar a pergunta. Por favor verifique os seus dados\",\"nnfSdK\":\"Clientes únicos\",\"Mqy/Zy\":\"Estados Unidos\",\"NIuIk1\":\"Ilimitado\",\"/p9Fhq\":\"Ilimitado disponível\",\"E0q9qH\":\"Usos ilimitados permitidos\",\"h10Wm5\":\"Pedido não pago\",\"ia8YsC\":\"Por vir\",\"TlEeFv\":\"Próximos eventos\",\"L/gNNk\":[\"Atualizar \",[\"0\"]],\"+qqX74\":\"Atualizar nome, descrição e datas do evento\",\"vXPSuB\":\"Atualizar perfil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copiado para a área de transferência\",\"e5lF64\":\"Exemplo de uso\",\"fiV0xj\":\"Limite de uso\",\"sGEOe4\":\"Use uma versão desfocada da imagem da capa como plano de fundo\",\"OadMRm\":\"Usar imagem de capa\",\"7PzzBU\":\"Do utilizador\",\"yDOdwQ\":\"Gerenciamento de usuários\",\"Sxm8rQ\":\"Usuários\",\"VEsDvU\":\"Os usuários podem alterar o e-mail em <0>Configurações do perfil\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"CUBA\",\"E/9LUk\":\"Nome do local\",\"jpctdh\":\"Visualizar\",\"Pte1Hv\":\"Ver Detalhes do Participante\",\"/5PEQz\":\"Ver página do evento\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Ver no Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Lista de check-in VIP\",\"tF+VVr\":\"Bilhete VIP\",\"2q/Q7x\":\"Visibilidade\",\"vmOFL/\":\"Não foi possível processar seu pagamento. Tente novamente ou entre em contato com o suporte.\",\"45Srzt\":\"Não conseguimos excluir a categoria. Por favor, tente novamente.\",\"/DNy62\":[\"Não encontramos nenhum ingresso correspondente a \",[\"0\"]],\"1E0vyy\":\"Não foi possível carregar os dados. Por favor, tente novamente.\",\"NmpGKr\":\"Não conseguimos reordenar as categorias. Por favor, tente novamente.\",\"BJtMTd\":\"Recomendamos dimensões de 2160px por 1080px e tamanho máximo de arquivo de 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Não foi possível confirmar seu pagamento. Tente novamente ou entre em contato com o suporte.\",\"Gspam9\":\"Estamos processando seu pedido. Por favor, aguarde...\",\"LuY52w\":\"Bem vindo a bordo! Por favor faça o login para continuar.\",\"dVxpp5\":[\"Bem vindo de volta\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"O que são Produtos em Camadas?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"O que é uma Categoria?\",\"gxeWAU\":\"A quais produtos este código se aplica?\",\"hFHnxR\":\"A quais produtos este código se aplica? (Aplica-se a todos por padrão)\",\"AeejQi\":\"A quais produtos essa capacidade deve se aplicar?\",\"Rb0XUE\":\"A que horas você chegará?\",\"5N4wLD\":\"Que tipo de pergunta é essa?\",\"gyLUYU\":\"Quando ativado, as faturas serão geradas para os pedidos de ingressos. As faturas serão enviadas junto com o e-mail de confirmação do pedido. Os participantes também podem baixar suas faturas na página de confirmação do pedido.\",\"D3opg4\":\"Quando os pagamentos offline estão ativados, os usuários poderão concluir seus pedidos e receber seus ingressos. Seus ingressos indicarão claramente que o pedido não foi pago, e a ferramenta de check-in notificará a equipe se um pedido exigir pagamento.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Quais ingressos devem ser associados a esta lista de registro?\",\"S+OdxP\":\"Quem está organizando este evento?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"A quem deve ser feita esta pergunta?\",\"VxFvXQ\":\"Incorporação de widget\",\"v1P7Gm\":\"Configurações do widget\",\"b4itZn\":\"Trabalhando\",\"hqmXmc\":\"Trabalhando...\",\"+G/XiQ\":\"Ano até agora\",\"l75CjT\":\"Sim\",\"QcwyCh\":\"Sim, remova-os\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Você está alterando seu e-mail para <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Você está offline\",\"sdB7+6\":\"Você pode criar um código promocional que direcione este produto no\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Você não pode mudar o tipo de produto, pois há participantes associados a este produto.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Você não pode registrar participantes com pedidos não pagos. Essa configuração pode ser alterada nas configurações do evento.\",\"c9Evkd\":\"Você não pode excluir a última categoria.\",\"6uwAvx\":\"Você não pode excluir este nível de preço porque já há produtos vendidos para este nível. Você pode ocultá-lo em vez disso.\",\"tFbRKJ\":\"Você não pode editar a função ou o status do proprietário da conta.\",\"fHfiEo\":\"Você não pode reembolsar um pedido criado manualmente.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Você tem acesso a várias contas. Escolha um para continuar.\",\"Z6q0Vl\":\"Você já aceitou este convite. Por favor faça o login para continuar.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Você não tem nenhuma alteração de e-mail pendente.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"O tempo para concluir seu pedido acabou.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Você deve reconhecer que este e-mail não é promocional\",\"3ZI8IL\":\"Você deve concordar com os termos e condições\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Você deve criar um ticket antes de poder adicionar manualmente um participante.\",\"jE4Z8R\":\"Você deve ter pelo menos uma faixa de preço\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Você terá que marcar um pedido como pago manualmente. Isso pode ser feito na página de gerenciamento de pedidos.\",\"L/+xOk\":\"Você precisará de um ingresso antes de poder criar uma lista de registro.\",\"Djl45M\":\"Você precisará de um produto antes de poder criar uma atribuição de capacidade.\",\"y3qNri\":\"Você precisará de pelo menos um produto para começar. Grátis, pago ou deixe o usuário decidir o que pagar.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"O nome da sua conta é usado nas páginas do evento e nos e-mails.\",\"veessc\":\"Seus participantes aparecerão aqui assim que se inscreverem em seu evento. Você também pode adicionar participantes manualmente.\",\"Eh5Wrd\":\"Seu site incrível 🎉\",\"lkMK2r\":\"Seus detalhes\",\"3ENYTQ\":[\"Sua solicitação de e-mail para <0>\",[\"0\"],\" está pendente. Por favor, verifique seu e-mail para confirmar\"],\"yZfBoy\":\"Sua mensagem foi enviada\",\"KSQ8An\":\"Seu pedido\",\"Jwiilf\":\"Seu pedido foi cancelado\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Seus pedidos aparecerão aqui assim que começarem a chegar.\",\"9TO8nT\":\"Sua senha\",\"P8hBau\":\"Seu pagamento está sendo processado.\",\"UdY1lL\":\"Seu pagamento não foi bem-sucedido, tente novamente.\",\"fzuM26\":\"Seu pagamento não foi bem-sucedido. Por favor, tente novamente.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Seu reembolso está sendo processado.\",\"IFHV2p\":\"Seu ingresso para\",\"x1PPdr\":\"CEP / Código Postal\",\"BM/KQm\":\"CEP ou Código postal\",\"+LtVBt\":\"CEP ou Código Postal\",\"25QDJ1\":\"- Clique para publicar\",\"WOyJmc\":\"- Clique para despublicar\",\"ncwQad\":\"(vazio)\",\"B/gRsg\":\"(nenhum)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" já fez check-in\"],\"3beCx0\":[[\"0\"],\" <0>com check-in\"],\"S4PqS9\":[[\"0\"],\" webhooks ativos\"],\"6MIiOI\":[[\"0\"],\" restante\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" de \",[\"1\"],\" lugares ocupados.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"rZTf6P\":[[\"0\"],\" lugares restantes\"],\"/HkCs4\":[[\"0\"],\" bilhetes\"],\"dtXkP9\":[[\"0\"],\" próximas datas\"],\"30bTiU\":[[\"activeCount\"],\" ativos\"],\"jTs4am\":[\"Logo \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" participantes estão registados para esta sessão.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponíveis\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" com check-in\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"há \",[\"diffHr\"],\" h\"],\"NRSLBe\":[\"há \",[\"diffMin\"],\" min\"],\"iYfwJE\":[\"há \",[\"diffSec\"],\" seg\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" participantes estão registados nas sessões afetadas.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de bilhetes\"],\"0cLzoF\":[[\"totalOccurrences\"],\" datas\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessões em \",[\"0\"],\" datas (\",[\"1\",\"plural\",{\"one\":[\"#\",\" sessão\"],\"other\":[\"#\",\" sessões\"]}],\" por dia)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Taxas/Impostos\",\"B1St2O\":\"<0>As listas de check-in ajudam-no a gerir a entrada no evento por dia, área ou tipo de bilhete. Pode vincular bilhetes a listas específicas, como zonas VIP ou passes do Dia 1, e partilhar uma ligação de check-in segura com a equipa. Não é necessária conta. O check-in funciona em dispositivos móveis, computador ou tablet, usando a câmara do dispositivo ou um scanner USB HID. \",\"v9VSIS\":\"<0>Defina um limite total de participação que se aplica a vários tipos de bilhetes ao mesmo tempo.<1>Por exemplo, se você vincular um bilhete de <2>Passe Diário e um de <3>Fim de Semana Completo, ambos utilizarão o mesmo conjunto de vagas. Uma vez atingido o limite, todos os bilhetes vinculados param de ser vendidos automaticamente.\",\"vKXqag\":\"<0>Esta é a quantidade predefinida em todas as datas. A capacidade de cada data pode limitar ainda mais a disponibilidade na <1>página de Programação de Sessões.\",\"ZnVt5v\":\"<0>Os webhooks notificam instantaneamente serviços externos quando eventos ocorrem, como adicionar um novo participante ao seu CRM ou lista de e-mails no momento do registro, garantindo uma automação perfeita.<1>Use serviços de terceiros como <2>Zapier, <3>IFTTT ou <4>Make para criar fluxos de trabalho personalizados e automatizar tarefas.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" à taxa atual\"],\"M2DyLc\":\"1 webhook ativo\",\"6hIk/x\":\"1 participante está registado nas sessões afetadas.\",\"qOyE2U\":\"1 participante está registado para esta sessão.\",\"943BwI\":\"1 dia após a data de término\",\"yj3N+g\":\"1 dia após a data de início\",\"Z3etYG\":\"1 dia antes do evento\",\"szSnlj\":\"1 hora antes do evento\",\"yTsaLw\":\"1 bilhete\",\"nz96Ue\":\"1 tipo de bilhete\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 semana antes do evento\",\"09VFYl\":\"12 bilhetes oferecidos\",\"HR/cvw\":\"Rua Exemplo 123\",\"dgKxZ5\":\"135+ moedas e 40+ métodos de pagamento\",\"kMU5aM\":\"Um aviso de cancelamento foi enviado para\",\"o++0qa\":\"uma alteração de duração\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Um novo código de verificação foi enviado para o seu email\",\"sr2Je0\":\"uma alteração das horas de início/fim\",\"/z/bH1\":\"Uma breve descrição do seu organizador que será exibida aos seus usuários.\",\"aS0jtz\":\"Abandonado\",\"uyJsf6\":\"Sobre\",\"JvuLls\":\"Absorver taxa\",\"lk74+I\":\"Absorver taxa\",\"1uJlG9\":\"Cor de Destaque\",\"g3UF2V\":\"Aceitar\",\"K5+3xg\":\"Aceitar convite\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Conta · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informações da Conta\",\"EHNORh\":\"Conta não encontrada\",\"bPwFdf\":\"Contas\",\"AhwTa1\":\"Ação Necessária: Informações de IVA Necessárias\",\"APyAR/\":\"Eventos ativos\",\"kCl6ja\":\"Métodos de pagamento ativos\",\"XJOV1Y\":\"Atividade\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Adicionar uma data\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Adicionar uma Data Única\",\"CjvTPJ\":\"Adicionar outra hora\",\"0XCduh\":\"Adicione pelo menos uma hora\",\"/chGpa\":\"Adicione os dados de ligação para o evento online.\",\"UWWRyd\":\"Adicione perguntas personalizadas para coletar informações adicionais durante o checkout\",\"Z/dcxc\":\"Adicionar Data\",\"Q219NT\":\"Adicionar Datas\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Adicionar localização\",\"VX6WUv\":\"Adicionar Localização\",\"GCQlV2\":\"Adicione várias horas se realizar mais do que uma sessão por dia.\",\"7JF9w9\":\"Adicionar pergunta\",\"NLbIb6\":\"Adicionar este participante mesmo assim (ignorar capacidade)\",\"6PNlRV\":\"Adicione este evento ao seu calendário\",\"BGD9Yt\":\"Adicionar ingressos\",\"uIv4Op\":\"Adicione píxeis de rastreio às páginas públicas dos eventos e à página inicial do organizador. Será mostrado um banner de consentimento de cookies aos visitantes quando o rastreio estiver ativo.\",\"QN2F+7\":\"Adicionar Webhook\",\"NsWqSP\":\"Adicione seus perfis de redes sociais e o URL do site. Eles serão exibidos na sua página pública de organizador.\",\"bVjDs9\":\"Taxas adicionais\",\"MKqSg4\":\"Acesso de administrador necessário\",\"0Zypnp\":\"Painel de Administração\",\"YAV57v\":\"Afiliado\",\"I+utEq\":\"O código de afiliado não pode ser alterado\",\"/jHBj5\":\"Afiliado criado com sucesso\",\"uCFbG2\":\"Afiliado eliminado com sucesso\",\"ld8I+f\":\"Programa de afiliados\",\"a41PKA\":\"As vendas do afiliado serão rastreadas\",\"mJJh2s\":\"As vendas do afiliado não serão rastreadas. Isto irá desativar o afiliado.\",\"jabmnm\":\"Afiliado atualizado com sucesso\",\"CPXP5Z\":\"Afiliados\",\"9Wh+ug\":\"Afiliados exportados\",\"3cqmut\":\"Os afiliados ajudam-no a rastrear vendas geradas por parceiros e influenciadores. Crie códigos de afiliado e partilhe-os para monitorizar o desempenho.\",\"z7GAMJ\":\"todas\",\"N40H+G\":\"Todos\",\"7rLTkE\":\"Todos os eventos arquivados\",\"gKq1fa\":\"Todos os participantes\",\"63gRoO\":\"Todos os participantes das sessões selecionadas\",\"uWxIoH\":\"Todos os participantes desta sessão\",\"pMLul+\":\"Todas as moedas\",\"sgUdRZ\":\"Todas as datas\",\"e4q4uO\":\"Todas as Datas\",\"ZS/D7f\":\"Todos os eventos encerrados\",\"QsYjci\":\"Todos os eventos\",\"31KB8w\":\"Todos os trabalhos falhados eliminados\",\"D2g7C7\":\"Todos os trabalhos em fila para nova tentativa\",\"B4RFBk\":\"Todas as datas correspondentes\",\"F1/VgK\":\"Todas as sessões\",\"OpWjMq\":\"Todas as Sessões\",\"Sxm1lO\":\"Todos os estados\",\"dr7CWq\":\"Todos os próximos eventos\",\"GpT6Uf\":\"Permitir que os participantes atualizem suas informações de bilhete (nome, e-mail) através de um link seguro enviado com a confirmação do pedido.\",\"F3mW5G\":\"Permitir que os clientes se juntem a uma lista de espera quando este produto estiver esgotado\",\"c4uJfc\":\"Quase lá! Estamos apenas a aguardar que o seu pagamento seja processado. Isto deve demorar apenas alguns segundos.\",\"ocS8eq\":[\"Já tem uma conta? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Já dentro\",\"/H326L\":\"Já reembolsado\",\"USEpOK\":\"Já usas o Stripe noutro organizador? Reutiliza essa ligação.\",\"RtxQTF\":\"Também cancelar este pedido\",\"jkNgQR\":\"Também reembolsar este pedido\",\"xYqsHg\":\"Sempre disponível\",\"Wvrz79\":\"Valor pago\",\"Zkymb9\":\"Um email para associar a este afiliado. O afiliado não será notificado.\",\"vRznIT\":\"Ocorreu um erro ao verificar o status da exportação.\",\"eusccx\":\"Uma mensagem opcional para exibir no produto destacado, por exemplo \\\"A vender rapidamente 🔥\\\" ou \\\"Melhor valor\\\"\",\"5GJuNp\":[\"e mais \",[\"0\"],\"...\"],\"QNrkms\":\"Resposta atualizada com sucesso.\",\"+qygei\":\"Respostas\",\"GK7Lnt\":\"Respostas no checkout (ex.: escolha de refeição)\",\"lE8PgT\":\"Quaisquer datas que tenha personalizado manualmente serão mantidas.\",\"vP3Nzg\":[\"Aplica-se às \",[\"0\"],\" datas não canceladas atualmente carregadas nesta página.\"],\"kkVyZZ\":\"Aplica-se a quem abre o link sem sessão iniciada. Membros autenticados veem sempre tudo.\",\"je4muG\":[\"Aplica-se a todas as \",[\"0\"],\" datas não canceladas deste evento — incluindo datas não carregadas no momento.\"],\"YIIQtt\":\"Aplicar Alterações\",\"NzWX1Y\":\"Aplicar a\",\"Ps5oDT\":\"Aplicar a todos os bilhetes\",\"261RBr\":\"Aprovar mensagem\",\"naCW6Z\":\"Abril\",\"B495Gs\":\"Arquivar\",\"5sNliy\":\"Arquivar evento\",\"BrwnrJ\":\"Arquivar organizador\",\"E5eghW\":\"Arquive este evento para o ocultar do público. Pode restaurá-lo mais tarde.\",\"eqFkeI\":\"Arquive este organizador. Isso também arquivará todos os eventos pertencentes a este organizador.\",\"BzcxWv\":\"Organizadores arquivados\",\"9cQBd6\":\"Tem a certeza de que pretende arquivar este evento? Deixará de estar visível para o público.\",\"Trnl3E\":\"Tem a certeza de que pretende arquivar este organizador? Isso também arquivará todos os eventos pertencentes a este organizador.\",\"wOvn+e\":[\"Tem a certeza de que pretende cancelar \",[\"count\"],\" data(s)? Os participantes afetados serão notificados por e-mail.\"],\"GTxE0U\":\"Tem a certeza de que pretende cancelar esta data? Os participantes afetados serão notificados por e-mail.\",\"VkSk/i\":\"Tem a certeza de que pretende cancelar esta mensagem agendada?\",\"0aVEBY\":\"Tem certeza que deseja eliminar todos os trabalhos falhados?\",\"LchiNd\":\"Tem a certeza de que deseja eliminar este afiliado? Esta ação não pode ser anulada.\",\"vPeW/6\":\"Tem certeza de que deseja excluir esta configuração? Isso pode afetar as contas que a utilizam.\",\"h42Hc/\":\"Tem a certeza de que pretende eliminar esta data? Esta ação não pode ser anulada.\",\"JmVITJ\":\"Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo padrão.\",\"aLS+A6\":\"Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo do organizador ou padrão.\",\"5H3Z78\":\"Tem certeza de que deseja excluir este webhook?\",\"147G4h\":\"Tem a certeza de que quer sair?\",\"VDWChT\":\"Tem certeza de que deseja definir este organizador como rascunho? Isso tornará a página do organizador invisível ao público.\",\"pWtQJM\":\"Tem certeza de que deseja tornar este organizador público? Isso tornará a página do organizador visível ao público.\",\"EOqL/A\":\"Tem a certeza de que pretende oferecer um lugar a esta pessoa? Receberá uma notificação por e-mail.\",\"yAXqWW\":\"Tem a certeza de que pretende eliminar permanentemente esta data? Esta ação não pode ser anulada.\",\"WFHOlF\":\"Tem a certeza de que deseja publicar este evento? Uma vez publicado, será visível ao público.\",\"4TNVdy\":\"Tem a certeza de que deseja publicar este perfil de organizador? Uma vez publicado, será visível ao público.\",\"8x0pUg\":\"Tem a certeza de que deseja remover esta entrada da lista de espera?\",\"cDtoWq\":[\"Tem a certeza de que pretende reenviar a confirmação da encomenda para \",[\"0\"],\"?\"],\"xeIaKw\":[\"Tem a certeza de que pretende reenviar o bilhete para \",[\"0\"],\"?\"],\"BjbocR\":\"Tem a certeza de que pretende restaurar este evento?\",\"7MjfcR\":\"Tem a certeza de que pretende restaurar este organizador?\",\"ExDt3P\":\"Tem a certeza de que deseja despublicar este evento? Já não será visível ao público.\",\"5Qmxo/\":\"Tem a certeza de que deseja despublicar este perfil de organizador? Já não será visível ao público.\",\"Uqefyd\":\"Está registado para IVA na UE?\",\"+QARA4\":\"Arte\",\"tLf3yJ\":\"Como a sua empresa está sediada na Irlanda, o IVA irlandês de 23% aplica-se automaticamente a todas as taxas da plataforma.\",\"tMeVa/\":\"Solicitar nome e email para cada ingresso comprado\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Atribuir plano\",\"xdiER7\":\"Nível atribuído\",\"F2rX0R\":\"Pelo menos um tipo de evento deve ser selecionado\",\"BCmibk\":\"Tentativas\",\"6PecK3\":\"Presença e taxas de registo em todos os eventos\",\"K2tp3v\":\"participante\",\"AJ4rvK\":\"Participante cancelado\",\"qvylEK\":\"Participante criado\",\"Aspq3b\":\"Coleta de dados dos participantes\",\"fpb0rX\":\"Dados do participante copiados do pedido\",\"0R3Y+9\":\"E-mail do participante\",\"94aQMU\":\"Informações do participante\",\"KkrBiR\":\"Recolha de informações do participante\",\"av+gjP\":\"Nome do participante\",\"sjPjOg\":\"Notas do participante\",\"cosfD8\":\"Status do Participante\",\"D2qlBU\":\"Participante atualizado\",\"22BOve\":\"Participante atualizado com sucesso\",\"x8Vnvf\":\"O bilhete do participante não está incluído nesta lista\",\"/Ywywr\":\"participantes\",\"zLRobu\":\"participantes com check-in\",\"k3Tngl\":\"Participantes exportados\",\"UoIRW8\":\"Participantes registados\",\"5UbY+B\":\"Participantes com um ingresso específico\",\"4HVzhV\":\"Participantes:\",\"HVkhy2\":\"Análise de atribuição\",\"dMMjeD\":\"Detalhamento de atribuição\",\"1oPDuj\":\"Valor de atribuição\",\"DBHTm/\":\"Agosto\",\"JgREph\":\"A oferta automática está ativada\",\"V7Tejz\":\"Processar lista de espera automaticamente\",\"PZ7FTW\":\"Detetado automaticamente com base na cor de fundo, mas pode ser substituído\",\"zlnTuI\":\"Ofereça automaticamente bilhetes à próxima pessoa quando houver capacidade disponível. Se estiver desativado, pode processar a lista de espera manualmente na página da Lista de Espera.\",\"csDS2L\":\"Disponível\",\"clF06r\":\"Disponível para reembolso\",\"NB5+UG\":\"Tokens disponíveis\",\"L+wGOG\":\"Pendente\",\"qcw2OD\":\"Pagamento pendente\",\"kNmmvE\":\"Awesome Events Lda.\",\"iH8pgl\":\"Voltar\",\"TeSaQO\":\"Voltar para Contas\",\"X7Q/iM\":\"Voltar ao calendário\",\"kYqM1A\":\"Voltar ao evento\",\"s5QRF3\":\"Voltar às mensagens\",\"td/bh+\":\"Voltar aos Relatórios\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Preço Base\",\"hviJef\":\"Com base no período de venda global acima, não por data\",\"jIPNJG\":\"Informações básicas\",\"UabgBd\":\"O corpo é obrigatório\",\"HWXuQK\":\"Adicione esta página aos favoritos para gerir o seu pedido a qualquer momento.\",\"CUKVDt\":\"Personalize seus ingressos com um logotipo, cores e mensagem de rodapé personalizados.\",\"4BZj5p\":\"Proteção contra fraude integrada\",\"cr7kGH\":\"Edição em Massa\",\"1Fbd6n\":\"Editar Datas em Massa\",\"Eq6Tu9\":\"Falha na atualização em massa.\",\"9N+p+g\":\"Negócios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Nome da empresa\",\"bv6RXK\":\"Rótulo do botão\",\"ChDLlO\":\"Texto do botão\",\"BUe8Wj\":\"O comprador paga\",\"qF1qbA\":\"Os compradores veem um preço limpo. A taxa da plataforma é deduzida do seu pagamento.\",\"dg05rc\":\"Ao adicionar píxeis de rastreio, reconhece que você e esta plataforma são responsáveis conjuntos pelos dados recolhidos. É da sua responsabilidade garantir que tem uma base legal para este tratamento ao abrigo das leis de privacidade aplicáveis (RGPD, CCPA, etc.).\",\"DFqasq\":[\"Ao continuar, concorda com os <0>Termos de Serviço de \",[\"0\"],\"\"],\"wVSa+U\":\"Por dia do mês\",\"0MnNgi\":\"Por dia da semana\",\"CetOZE\":\"Por tipo de bilhete\",\"lFdbRS\":\"Ignorar taxas de aplicação\",\"AjVXBS\":\"Calendário\",\"alkXJ5\":\"Vista de calendário\",\"2VLZwd\":\"Botão de chamada para ação\",\"rT2cV+\":\"Câmara\",\"7hYa9y\":\"Permissão da câmara negada. <0>Solicitar permissão novamente ou conceda acesso à câmara nas definições do navegador.\",\"D02dD9\":\"Campanha\",\"RRPA79\":\"Check-in indisponível\",\"OcVwAd\":[\"Cancelar \",[\"count\"],\" data(s)\"],\"H4nE+E\":\"Cancelar todos os produtos e devolvê-los ao conjunto disponível\",\"Py78q9\":\"Cancelar Data\",\"tOXAdc\":\"Cancelar irá cancelar todos os participantes associados a este pedido e devolver os bilhetes ao conjunto disponível.\",\"vev1Jl\":\"Cancelamento\",\"Ha17hq\":[[\"0\"],\" data(s) cancelada(s)\"],\"01sEfm\":\"Não é possível excluir a configuração padrão do sistema\",\"VsM1HH\":\"Atribuições de capacidade\",\"9bIMVF\":\"Gestão de capacidade\",\"H7K8og\":\"A capacidade deve ser 0 ou superior\",\"nzao08\":\"atualizações de capacidade\",\"4cp9NP\":\"Capacidade Utilizada\",\"K7tIrx\":\"Categoria\",\"o+XJ9D\":\"Alterar\",\"kJkjoB\":\"Alterar duração\",\"J0KExZ\":\"Alterar o limite de participantes\",\"CIHJJf\":\"Alterar configurações da lista de espera\",\"B5icLR\":[\"Duração alterada em \",[\"count\"],\" data(s)\"],\"Kb+0BT\":\"Cobranças\",\"2tbLdK\":\"Caridade\",\"BPWGKn\":\"Fazer check-in\",\"6uFFoY\":\"Check-out\",\"FjAlwK\":[\"Veja este evento: \",[\"0\"]],\"v4fiSg\":\"Verifique o seu email\",\"51AsAN\":\"Verifique sua caixa de entrada! Se houver ingressos associados a este e-mail, você receberá um link para visualizá-los.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Check-in criado\",\"F4SRy3\":\"Check-in excluído\",\"as6XfO\":[\"Check-in de \",[\"0\"],\" foi anulado\"],\"9s/wrQ\":\"Histórico de check-in\",\"Wwztk4\":\"Lista de Check-in\",\"9gPPUY\":\"Lista de Check-In Criada!\",\"dwjiJt\":\"Info da lista\",\"7od0PV\":\"listas de check-in\",\"f2vU9t\":\"Listas de Registo\",\"XprdTn\":\"Navegação de check-in\",\"5tV1in\":\"Progresso do check-in\",\"SHJwyq\":\"Taxa de registo\",\"qCqdg6\":\"Estado do Check-In\",\"cKj6OE\":\"Resumo de Registo\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Com check-in\",\"DM4gBB\":\"Chinês (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Escolher uma ação diferente\",\"fkb+y3\":\"Escolha uma localização guardada para aplicar.\",\"Zok1Gx\":\"Escolha um organizador\",\"pkk46Q\":\"Escolha um organizador\",\"Crr3pG\":\"Escolher calendário\",\"LAW8Vb\":\"Escolha a configuração padrão para novos eventos. Isso pode ser substituído para eventos individuais.\",\"pjp2n5\":\"Escolha quem paga a taxa da plataforma. Isso não afeta as taxas adicionais que você configurou nas configurações da sua conta.\",\"xCJdfg\":\"Limpar\",\"QyOWu9\":\"Limpar localização — voltar à predefinição do evento\",\"V8yTm6\":\"Limpar pesquisa\",\"kmnKnX\":\"Limpar remove qualquer substituição por sessão. As sessões afetadas voltarão à localização predefinida do evento.\",\"/o+aQX\":\"Clique para cancelar\",\"gD7WGV\":\"Clique para reabrir para novas vendas\",\"CySr+W\":\"Clique para ver as notas\",\"RG3szS\":\"fechar\",\"RWw9Lg\":\"Fechar modal\",\"XwdMMg\":\"O código só pode conter letras, números, hífenes e underscores\",\"+yMJb7\":\"O código é obrigatório\",\"m9SD3V\":\"O código deve ter pelo menos 3 caracteres\",\"V1krgP\":\"O código não deve ter mais de 20 caracteres\",\"psqIm5\":\"Colabore com sua equipe para criar eventos incríveis juntos.\",\"4bUH9i\":\"Recolher detalhes do participante para cada bilhete adquirido.\",\"TkfG8v\":\"Coletar dados por pedido\",\"96ryID\":\"Coletar dados por ingresso\",\"FpsvqB\":\"Modo de Cor\",\"jEu4bB\":\"Colunas\",\"CWk59I\":\"Comédia\",\"rPA+Gc\":\"Preferências de comunicação\",\"zFT5rr\":\"completo\",\"bUQMpb\":\"Concluir a configuração do Stripe\",\"744BMm\":\"Conclua a sua encomenda para garantir os seus bilhetes. Esta oferta é limitada no tempo, por isso não espere demasiado.\",\"5YrKW7\":\"Conclua o pagamento para garantir os seus bilhetes.\",\"xGU92i\":\"Complete o seu perfil para se juntar à equipa.\",\"QOhkyl\":\"Compor\",\"ih35UP\":\"Centro de conferências\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuração atribuída\",\"X1zdE7\":\"Configuração criada com sucesso\",\"mLBUMQ\":\"Configuração excluída com sucesso\",\"UIENhw\":\"Os nomes de configuração são visíveis para os usuários finais. As taxas fixas serão convertidas para a moeda do pedido na taxa de câmbio atual.\",\"eeZdaB\":\"Configuração atualizada com sucesso\",\"3cKoxx\":\"Configurações\",\"8v2LRU\":\"Configure os detalhes do evento, localização, opções de checkout e notificações por email.\",\"raw09+\":\"Configure como os dados dos participantes são coletados durante o checkout\",\"FI60XC\":\"Configurar impostos e taxas\",\"av6ukY\":\"Configure quais os produtos disponíveis para esta sessão e, opcionalmente, ajuste o preço.\",\"NGXKG/\":\"Confirmar endereço de e-mail\",\"JRQitQ\":\"Confirmar nova senha\",\"Auz0Mz\":\"Confirme seu e-mail para acessar todos os recursos.\",\"7+grte\":\"E-mail de confirmação enviado! Verifique sua caixa de entrada.\",\"n/7+7Q\":\"Confirmação enviada para\",\"x3wVFc\":\"Parabéns! O seu evento está agora visível para o público.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Conecte o Stripe para ativar a edição de modelos de email\",\"LmvZ+E\":\"Conecte o Stripe para ativar mensagens\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contato\",\"LOFgda\":[\"Contato \",[\"0\"]],\"41BQ3k\":\"Email de contacto\",\"KcXRN+\":\"E-mail de contato para suporte\",\"m8WD6t\":\"Continuar configuração\",\"0GwUT4\":\"Continuar para o pagamento\",\"sBV87H\":\"Continuar para a criação do evento\",\"nKtyYu\":\"Continuar para o próximo passo\",\"F3/nus\":\"Continuar para pagamento\",\"p2FRHj\":\"Controle como as taxas da plataforma são tratadas para este evento\",\"NqfabH\":\"Controle quem entra nesta data\",\"fmYxZx\":\"Controle quem entra e quando\",\"1JnTgU\":\"Copiado de cima\",\"FxVG/l\":\"Copiado para a área de transferência\",\"PiH3UR\":\"Copiado!\",\"4i7smN\":\"Copiar ID da conta\",\"uUPbPg\":\"Copiar link de afiliado\",\"iVm46+\":\"Copiar código\",\"cF2ICc\":\"Copiar link do cliente\",\"+2ZJ7N\":\"Copiar detalhes para o primeiro participante\",\"ZN1WLO\":\"Copiar Email\",\"y1eoq1\":\"Copiar link\",\"tUGbi8\":\"Copiar meus dados para:\",\"y22tv0\":\"Copie este link para compartilhá-lo em qualquer lugar\",\"/4gGIX\":\"Copiar para a área de transferência\",\"e0f4yB\":\"Não foi possível eliminar a localização\",\"vkiDx2\":\"Não foi possível preparar a atualização em massa.\",\"KOavaU\":\"Não foi possível obter os detalhes da morada\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Não foi possível guardar a data\",\"eeLExK\":\"Não foi possível guardar a localização\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Imagem de capa\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"A imagem de capa será exibida no topo da sua página de evento\",\"2NLjA6\":\"A imagem de capa será exibida no topo da página do organizador\",\"GkrqoY\":\"Abrange todos os bilhetes\",\"zg4oSu\":[\"Criar modelo \",[\"0\"]],\"RKKhnW\":\"Crie um widget personalizado para vender ingressos no seu site.\",\"6sk7PP\":\"Criar um número fixo\",\"PhioFp\":\"Crie uma nova lista de check-in para uma sessão ativa, ou contacte o organizador se considera que se trata de um erro.\",\"yIRev4\":\"Criar uma senha\",\"j7xZ7J\":\"Crie organizadores adicionais para gerir marcas, departamentos ou séries de eventos separados numa conta. Cada organizador tem os seus próprios eventos, definições e página pública.\",\"xfKgwv\":\"Criar afiliado\",\"tudG8q\":\"Crie e configure ingressos e mercadorias para venda.\",\"YAl9Hg\":\"Criar Configuração\",\"BTne9e\":\"Criar modelos de e-mail personalizados para este evento que substituem os padrões do organizador\",\"YIDzi/\":\"Criar modelo personalizado\",\"tsGqx5\":\"Criar Data\",\"Nc3l/D\":\"Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Criar para esta data\",\"eWEV9G\":\"Criar nova senha\",\"wl2iai\":\"Criar Programação\",\"8AiKIu\":\"Criar ingresso ou produto\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Crie links rastreáveis para recompensar parceiros que promovem seu evento.\",\"dkAPxi\":\"Criar Webhook\",\"5slqwZ\":\"Crie seu evento\",\"JQNMrj\":\"Crie o seu primeiro evento\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Crie seu próprio evento\",\"67NsZP\":\"A criar evento...\",\"H34qcM\":\"A criar organizador...\",\"1YMS+X\":\"A criar o seu evento, por favor aguarde\",\"yiy8Jt\":\"A criar o seu perfil de organizador, por favor aguarde\",\"lfLHNz\":\"O rótulo CTA é obrigatório\",\"0xLR6W\":\"Atribuído atualmente\",\"iTvh6I\":\"Atualmente disponível para compra\",\"A42Dqn\":\"Marca personalizada\",\"Guo0lU\":\"Data e hora personalizadas\",\"mimF6c\":\"Mensagem personalizada após o checkout\",\"WDMdn8\":\"Perguntas personalizadas\",\"O6mra8\":\"Perguntas personalizadas\",\"axv/Mi\":\"Modelo personalizado\",\"2YeVGY\":\"Link do cliente copiado para a área de transferência\",\"QMHSMS\":\"O cliente receberá um email confirmando o reembolso\",\"L/Qc+w\":\"Endereço de e-mail do cliente\",\"wpfWhJ\":\"Primeiro nome do cliente\",\"GIoqtA\":\"Sobrenome do cliente\",\"NihQNk\":\"Clientes\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Personalize os e-mails enviados aos seus clientes usando modelos Liquid. Estes modelos serão usados como padrões para todos os eventos em sua organização.\",\"xJaTUK\":\"Personalize o layout, cores e marca da página inicial do seu evento.\",\"MXZfGN\":\"Personalize as perguntas feitas durante o checkout para coletar informações importantes dos seus participantes.\",\"iX6SLo\":\"Personalize o texto exibido no botão continuar\",\"pxNIxa\":\"Personalize seu modelo de e-mail usando modelos Liquid\",\"3trPKm\":\"Personalize a aparência da sua página de organizador\",\"U0sC6H\":\"Diário\",\"/gWrVZ\":\"Receita diária, impostos, taxas e reembolsos em todos os eventos\",\"zgCHnE\":\"Relatório de vendas diárias\",\"nHm0AI\":\"Detalhamento das vendas diárias, impostos e taxas\",\"1aPnDT\":\"Dança\",\"pvnfJD\":\"Escuro\",\"MaB9wW\":\"Cancelamento de Data\",\"e6cAxJ\":\"Data cancelada\",\"81jBnC\":\"Data cancelada com sucesso\",\"a/C/6R\":\"Data criada com sucesso\",\"IW7Q+u\":\"Data eliminada\",\"rngCAz\":\"Data eliminada com sucesso\",\"lnYE59\":\"Data do evento\",\"gnBreG\":\"Data em que o pedido foi feito\",\"vHbfoQ\":\"Data reativada\",\"hvah+S\":\"Data reaberta para novas vendas\",\"Ez0YsD\":\"Data atualizada com sucesso\",\"VTsZuy\":\"As datas e horas são geridas na\",\"/ITcnz\":\"dia\",\"H7OUPr\":\"Dia\",\"JtHrX9\":\"Dia do Mês\",\"J/Upwb\":\"dias\",\"vDVA2I\":\"Dias do Mês\",\"rDLvlL\":\"Dias da Semana\",\"r6zgGo\":\"Dezembro\",\"jbq7j2\":\"Recusar\",\"ovBPCi\":\"Padrão\",\"JtI4vj\":\"Recolha predefinida de informações do participante\",\"ULjv90\":\"Capacidade predefinida por data\",\"3R/Tu2\":\"Gestão de taxas padrão\",\"1bZAZA\":\"O modelo padrão será usado\",\"HNlEFZ\":\"eliminar\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Eliminar \",[\"count\"],\" data(s) selecionada(s)? As datas com encomendas serão ignoradas. Esta ação não pode ser anulada.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Eliminar tudo\",\"6EkaOO\":\"Eliminar Data\",\"io0G93\":\"Eliminar evento\",\"+jw/c1\":\"Excluir imagem\",\"hdyeZ0\":\"Eliminar trabalho\",\"xxjZeP\":\"Eliminar localização\",\"sY3tIw\":\"Eliminar organizador\",\"UBv8UK\":\"Eliminar Permanentemente\",\"dPyJ15\":\"Excluir modelo\",\"mxsm1o\":\"Excluir esta pergunta? Isso não pode ser desfeito.\",\"snMaH4\":\"Excluir webhook\",\"LIZZLY\":[[\"0\"],\" data(s) eliminada(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desselecionar tudo\",\"NvuEhl\":\"Elementos de Design\",\"H8kMHT\":\"Não recebeu o código?\",\"G8KNgd\":\"Localização diferente\",\"E/QGRL\":\"Desativado\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Dispensar esta mensagem\",\"BREO0S\":\"Exibe uma caixa de seleção permitindo que os clientes optem por receber comunicações de marketing deste organizador de eventos.\",\"pfa8F0\":\"Nome a apresentar\",\"Kdpf90\":\"Não se esqueça!\",\"352VU2\":\"Não tem uma conta? <0>Registe-se\",\"AXXqG+\":\"Donativo\",\"DPfwMq\":\"Concluído\",\"JoPiZ2\":\"Instruções para a equipa\",\"2+O9st\":\"Baixe relatórios de vendas, participantes e financeiros para todos os pedidos concluídos.\",\"eneWvv\":\"Rascunho\",\"Ts8hhq\":\"Devido ao alto risco de spam, deve conectar uma conta Stripe antes de poder modificar modelos de email. Isto é para garantir que todos os organizadores de eventos sejam verificados e responsáveis.\",\"TnzbL+\":\"Devido ao elevado risco de spam, deve ligar uma conta Stripe antes de poder enviar mensagens aos participantes.\\nIsto serve para garantir que todos os organizadores de eventos são verificados e responsáveis.\",\"euc6Ns\":\"Duplicar\",\"YueC+F\":\"Duplicar Data\",\"KRmTkx\":\"Duplicar produto\",\"Jd3ymG\":\"A duração deve ser de, pelo menos, 1 minuto.\",\"KIjvtr\":\"Holandês\",\"22xieU\":\"ex. 180 (3 horas)\",\"/zajIE\":\"ex.: Sessão da Manhã\",\"SPKbfM\":\"ex.: Comprar ingressos, Registrar-se agora\",\"fc7wGW\":\"por exemplo, Atualização importante sobre os seus bilhetes\",\"54MPqC\":\"por exemplo, Standard, Premium, Enterprise\",\"3RQ81z\":\"Cada pessoa receberá um e-mail com um lugar reservado para concluir a sua compra.\",\"5oD9f/\":\"Mais cedo\",\"LTzmgK\":[\"Editar modelo \",[\"0\"]],\"v4+lcZ\":\"Editar afiliado\",\"2iZEz7\":\"Editar resposta\",\"t2bbp8\":\"Editar participante\",\"etaWtB\":\"Editar detalhes do participante\",\"+guao5\":\"Editar Configuração\",\"1Mp/A4\":\"Editar Data\",\"m0ZqOT\":\"Editar localização\",\"8oivFT\":\"Editar Localização\",\"vRWOrM\":\"Editar detalhes do pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Editado\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educação\",\"iiWXDL\":\"Falhas de elegibilidade\",\"zPiC+q\":\"Listas de Check-In Elegíveis\",\"SiVstt\":\"E-mails e mensagens agendadas\",\"V2sk3H\":\"E-mail e Modelos\",\"hbwCKE\":\"Endereço de email copiado para a área de transferência\",\"dSyJj6\":\"Os endereços de e-mail não coincidem\",\"elW7Tn\":\"Corpo do e-mail\",\"ZsZeV2\":\"O email é obrigatório\",\"Be4gD+\":\"Visualização do e-mail\",\"6IwNUc\":\"Modelos de e-mail\",\"H/UMUG\":\"Verificação de e-mail necessária\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"Email verificado com sucesso!\",\"FSN4TS\":\"Widget incorporado\",\"z9NkYY\":\"Widget incorporável\",\"Qj0GKe\":\"Ativar autoatendimento para participantes\",\"hEtQsg\":\"Ativar autoatendimento para participantes por padrão\",\"Upeg/u\":\"Habilitar este modelo para enviar e-mails\",\"7dSOhU\":\"Ativar lista de espera\",\"RxzN1M\":\"Ativado\",\"xDr/ct\":\"Fim\",\"sGjBEq\":\"Data e hora de término (opcional)\",\"PKXt9R\":\"A data de término deve ser posterior à data de início\",\"UmzbPa\":\"Data de fim da sessão\",\"ZayGC7\":\"Terminar numa data\",\"48Y16Q\":\"Hora de fim (opcional)\",\"jpNdOC\":\"Hora de fim da sessão\",\"TbaYrr\":[\"Terminou \",[\"0\"]],\"CFgwiw\":[\"Termina \",[\"0\"]],\"SqOIQU\":\"Introduza um valor de capacidade ou escolha ilimitado.\",\"h37gRz\":\"Introduza um rótulo ou escolha removê-lo.\",\"7YZofi\":\"Digite um assunto e corpo para ver a visualização\",\"khyScF\":\"Introduza um intervalo de tempo para deslocar.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Introduza o email do afiliado (opcional)\",\"ARkzso\":\"Introduza o nome do afiliado\",\"ej4L8b\":\"Introduzir capacidade\",\"6KnyG0\":\"Insira o e-mail\",\"INDKM9\":\"Digite o assunto do e-mail...\",\"xUgUTh\":\"Insira o primeiro nome\",\"9/1YKL\":\"Insira o apelido\",\"VpwcSk\":\"Introduza a nova senha\",\"kWg31j\":\"Introduza um código de afiliado único\",\"C3nD/1\":\"Digite seu e-mail\",\"VmXiz4\":\"Introduza o seu email e enviaremos instruções para redefinir a sua senha.\",\"n9V+ps\":\"Digite seu nome\",\"IdULhL\":\"Introduza o seu número de IVA incluindo o código do país, sem espaços (por exemplo, PT123456789, ES12345678A)\",\"o21Y+P\":\"inscrições\",\"X88/6w\":\"As inscrições aparecerão aqui quando os clientes se juntarem à lista de espera de produtos esgotados.\",\"LslKhj\":\"Erro ao carregar os registros\",\"VCNHvW\":\"Evento Arquivado\",\"ZD0XSb\":\"Evento arquivado com sucesso\",\"WgD6rb\":\"Categoria do evento\",\"b46pt5\":\"Imagem de capa do evento\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evento Criado\",\"1Hzev4\":\"Modelo personalizado do evento\",\"7u9/DO\":\"Evento eliminado com sucesso\",\"imgKgl\":\"Descrição do evento\",\"kJDmsI\":\"Detalhes do evento\",\"m/N7Zq\":\"Endereço Completo do Evento\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Local do evento\",\"PYs3rP\":\"Nome do evento\",\"HhwcTQ\":\"Nome do evento\",\"WZZzB6\":\"O nome do evento é obrigatório\",\"Wd5CDM\":\"O nome do evento deve ter menos de 150 caracteres\",\"4JzCvP\":\"Evento não disponível\",\"Gh9Oqb\":\"Nome do organizador do evento\",\"mImacG\":\"Página do Evento\",\"Hk9Ki/\":\"Evento restaurado com sucesso\",\"JyD0LH\":\"Configurações do evento\",\"cOePZk\":\"Hora do evento\",\"e8WNln\":\"Fuso horário do evento\",\"GeqWgj\":\"Fuso Horário do Evento\",\"XVLu2v\":\"Título do evento\",\"OfmsI9\":\"Evento muito recente\",\"4SILkp\":\"Totais do evento\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento Atualizado\",\"4K2OjV\":\"Local do Evento\",\"19j6uh\":\"Desempenho de Eventos\",\"PC3/fk\":\"Eventos a Iniciar nas Próximas 24 Horas\",\"nwiZdc\":[\"A cada \",[\"0\"]],\"2LJU4o\":[\"A cada \",[\"0\"],\" dias\"],\"yLiYx+\":[\"A cada \",[\"0\"],\" meses\"],\"nn9ice\":[\"A cada \",[\"0\"],\" semanas\"],\"Cdr8f9\":[\"A cada \",[\"0\"],\" semanas em \",[\"1\"]],\"GVEHRk\":[\"A cada \",[\"0\"],\" anos\"],\"fTFfOK\":\"Todo modelo de e-mail deve incluir um botão de chamada para ação que leva à página apropriada\",\"BVinvJ\":\"Exemplos: \\\"Como você soube de nós?\\\", \\\"Nome da empresa para fatura\\\"\",\"2hGPQG\":\"Exemplos: \\\"Tamanho da camiseta\\\", \\\"Preferência de refeição\\\", \\\"Cargo\\\"\",\"qNuTh3\":\"Exceção\",\"M1RnFv\":\"Expirado\",\"kF8HQ7\":\"Exportar respostas\",\"2KAI4N\":\"Exportar CSV\",\"JKfSAv\":\"Falha na exportação. Por favor, tente novamente.\",\"SVOEsu\":\"Exportação iniciada. Preparando arquivo...\",\"wuyaZh\":\"Exportação bem-sucedida\",\"9bpUSo\":\"A exportar afiliados\",\"jtrqH9\":\"Exportando participantes\",\"R4Oqr8\":\"Exportação concluída. Baixando arquivo...\",\"UlAK8E\":\"Exportando pedidos\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Falhado\",\"8uOlgz\":\"Falhou em\",\"tKcbYd\":\"Trabalhos falhados\",\"SsI9v/\":\"Falha ao abandonar o pedido. Por favor, tente novamente.\",\"LdPKPR\":\"Falha ao atribuir configuração\",\"PO0cfn\":\"Falha ao cancelar data\",\"YUX+f+\":\"Falha ao cancelar datas\",\"SIHgVQ\":\"Falha ao cancelar mensagem\",\"cEFg3R\":\"Falha ao criar afiliado\",\"dVgNF1\":\"Falha ao criar configuração\",\"fAoRRJ\":\"Falha ao criar programação\",\"U66oUa\":\"Falha ao criar modelo\",\"aFk48v\":\"Falha ao excluir configuração\",\"n1CYMH\":\"Falha ao eliminar data\",\"KXv+Qn\":\"Falha ao eliminar a data. Poderá ter encomendas associadas.\",\"JJ0uRo\":\"Falha ao eliminar datas\",\"rgoBnv\":\"Falha ao eliminar o evento\",\"Zw6LWb\":\"Falha ao eliminar trabalho\",\"tq0abZ\":\"Falha ao eliminar trabalhos\",\"2mkc3c\":\"Falha ao eliminar o organizador\",\"vKMKnu\":\"Falha ao excluir pergunta\",\"xFj7Yj\":\"Falha ao excluir modelo\",\"jo3Gm6\":\"Falha ao exportar afiliados\",\"Jjw03p\":\"Falha ao exportar participantes\",\"ZPwFnN\":\"Falha ao exportar pedidos\",\"zGE3CH\":\"Falha ao exportar relatório. Por favor, tente novamente.\",\"lS9/aZ\":\"Falha ao carregar destinatários\",\"X4o0MX\":\"Falha ao carregar o Webhook\",\"ETcU7q\":\"Falha ao oferecer lugar\",\"5670b9\":\"Falha ao oferecer bilhetes\",\"e5KIbI\":\"Falha ao reativar a data\",\"7zyx8a\":\"Falha ao remover da lista de espera\",\"A/P7PX\":\"Falha ao remover substituição\",\"ogWc1z\":\"Falha ao reabrir a data\",\"0+iwE5\":\"Falha ao reordenar perguntas\",\"EJPAcd\":\"Falha ao reenviar confirmação do pedido\",\"DjSbj3\":\"Falha ao reenviar bilhete\",\"YQ3QSS\":\"Falha ao reenviar código de verificação\",\"wDioLj\":\"Falha ao tentar novamente o trabalho\",\"DKYTWG\":\"Falha ao tentar novamente os trabalhos\",\"WRREqF\":\"Falha ao guardar substituição\",\"sj/eZA\":\"Falha ao guardar substituição de preço\",\"780n8A\":\"Falha ao guardar definições do produto\",\"zTkTF3\":\"Falha ao salvar modelo\",\"l6acRV\":\"Falha ao guardar as definições de IVA. Por favor, tente novamente.\",\"T6B2gk\":\"Falha ao enviar mensagem. Por favor, tente novamente.\",\"lKh069\":\"Falha ao iniciar a exportação\",\"t/KVOk\":\"Falha ao iniciar a personificação. Por favor, tente novamente.\",\"QXgjH0\":\"Falha ao parar a personificação. Por favor, tente novamente.\",\"i0QKrm\":\"Falha ao atualizar afiliado\",\"NNc33d\":\"Falha ao atualizar a resposta.\",\"E9jY+o\":\"Falha ao atualizar participante\",\"uQynyf\":\"Falha ao atualizar configuração\",\"i2PFQJ\":\"Falha ao atualizar o estado do evento\",\"EhlbcI\":\"Falha ao atualizar nível de mensagens\",\"rpGMzC\":\"Falha ao atualizar pedido\",\"T2aCOV\":\"Falha ao atualizar o estado do organizador\",\"Eeo/Gy\":\"Falha ao atualizar configuração\",\"kqA9lY\":\"Falha ao atualizar as definições de IVA\",\"7/9RFs\":\"Falha ao carregar imagem.\",\"nkNfWu\":\"Falha ao enviar imagem. Por favor, tente novamente.\",\"rxy0tG\":\"Falha ao verificar email\",\"QRUpCk\":\"Família\",\"5LO38w\":\"Pagamentos rápidos para o teu banco\",\"4lgLew\":\"Fevereiro\",\"9bHCo2\":\"Moeda da taxa\",\"/sV91a\":\"Gestão de taxas\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Taxas ignoradas\",\"cf35MA\":\"Festival\",\"pAey+4\":\"O ficheiro é demasiado grande. O tamanho máximo é 5MB.\",\"VejKUM\":\"Preencha primeiro os seus dados acima\",\"/n6q8B\":\"Cinema\",\"L1qbUx\":\"Filtrar participantes\",\"8OvVZZ\":\"Filtrar Participantes\",\"N/H3++\":\"Filtrar por data\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Termina de configurar o Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"Primeiro\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primeiro participante\",\"4pwejF\":\"O primeiro nome é obrigatório\",\"3lkYdQ\":\"Taxa fixa\",\"6bBh3/\":\"Taxa Fixa\",\"zWqUyJ\":\"Taxa fixa cobrada por transação\",\"LWL3Bs\":\"A taxa fixa deve ser 0 ou maior\",\"0RI8m4\":\"Flash desligado\",\"q0923e\":\"Flash ligado\",\"lWxAUo\":\"Comida e bebida\",\"nFm+5u\":\"Texto do Rodapé\",\"a8nooQ\":\"Quarto\",\"mob/am\":\"Sex\",\"wtuVU4\":\"Frequência\",\"xVhQZV\":\"Sex\",\"39y5bn\":\"Sexta-feira\",\"f5UbZ0\":\"Propriedade total dos dados\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Reembolso total\",\"UsIfa8\":\"Morada completa resolvida\",\"PGQLdy\":\"futuras\",\"8N/j1s\":\"Apenas datas futuras\",\"yRx/6K\":\"As datas futuras serão copiadas com a capacidade reposta a zero\",\"T02gNN\":\"Admissão Geral\",\"3ep0Gx\":\"Informações gerais sobre seu organizador\",\"ziAjHi\":\"Gerar\",\"exy8uo\":\"Gerar código\",\"4CETZY\":\"Obter direções\",\"pjkEcB\":\"Receber pagamentos\",\"lGYzP6\":\"Recebe pagamentos com o Stripe\",\"ZDIydz\":\"Começar\",\"u6FPxT\":\"Obter Bilhetes\",\"8KDgYV\":\"Prepare seu evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Voltar\",\"oNL5vN\":\"Ir para a página do evento\",\"gHSuV/\":\"Ir para a página inicial\",\"8+Cj55\":\"Ir para a Programação\",\"6nDzTl\":\"Boa legibilidade\",\"76gPWk\":\"Entendido\",\"aGWZUr\":\"Receita bruta\",\"n8IUs7\":\"Receita Bruta\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestão de convidados\",\"NUsTc4\":\"A decorrer agora\",\"kTSQej\":[\"Olá \",[\"0\"],\", gerencie sua plataforma daqui.\"],\"dORAcs\":\"Aqui estão todos os ingressos associados ao seu endereço de e-mail.\",\"g+2103\":\"Aqui está o seu link de afiliado\",\"bVsnqU\":\"Olá,\",\"/iE8xx\":\"Taxa Hi.Events\",\"zppscQ\":\"Taxas da plataforma Hi.Events e discriminação do IVA por transação\",\"D+zLDD\":\"Oculto\",\"DRErHC\":\"Oculto para participantes - visível apenas para organizadores\",\"NNnsM0\":\"Ocultar opções avançadas\",\"P+5Pbo\":\"Ocultar respostas\",\"VMlRqi\":\"Ocultar detalhes\",\"FmogyU\":\"Ocultar Opções\",\"gtEbeW\":\"Destacar\",\"NF8sdv\":\"Mensagem de destaque\",\"MXSqmS\":\"Destacar este produto\",\"7ER2sc\":\"Destacado\",\"sq7vjE\":\"Os produtos destacados terão uma cor de fundo diferente para se destacarem na página do evento.\",\"1+WSY1\":\"Passatempos\",\"yY8wAv\":\"Horas\",\"sy9anN\":\"Quanto tempo um cliente tem para concluir a compra após receber uma oferta. Deixe vazio para sem limite de tempo.\",\"n2ilNh\":\"Durante quanto tempo decorre a programação?\",\"DMr2XN\":\"Com que frequência?\",\"AVpmAa\":\"Como pagar offline\",\"cceMns\":\"Como o IVA é aplicado às taxas da plataforma que cobramos.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Húngaro\",\"8Wgd41\":\"Reconheço as minhas responsabilidades enquanto responsável pelo tratamento de dados\",\"O8m7VA\":\"Concordo em receber notificações por email relacionadas com este evento\",\"YLgdk5\":\"Confirmo que esta é uma mensagem transacional relacionada com este evento\",\"4/kP5a\":\"Se uma nova aba não abriu automaticamente, clique no botão abaixo para continuar para o pagamento.\",\"W/eN+G\":\"Se em branco, o endereço será utilizado para gerar um link do Google Maps\",\"iIEaNB\":\"Se tem uma conta connosco, receberá um email com instruções sobre como redefinir a sua senha.\",\"an5hVd\":\"Imagens\",\"tSVr6t\":\"Personificar\",\"TWXU0c\":\"Personificar utilizador\",\"5LAZwq\":\"Personificação iniciada\",\"IMwcdR\":\"Personificação parada\",\"0I0Hac\":\"Aviso importante\",\"yD3avI\":\"Importante: Alterar o seu endereço de e-mail atualizará o link de acesso a este pedido. Será redirecionado para o novo link do pedido após guardar.\",\"jT142F\":[\"Em \",[\"diffHours\"],\" horas\"],\"OoSyqO\":[\"Em \",[\"diffMinutes\"],\" minutos\"],\"PdMhEx\":[\"nos últimos \",[\"0\"],\" min\"],\"u7r0G5\":\"Presencial — definir um local\",\"Ip0hl5\":\"in_person, online, unset ou mixed\",\"F1Xp97\":\"Participantes individuais\",\"85e6zs\":\"Inserir token Liquid\",\"38KFY0\":\"Inserir variável\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Pagamentos instantâneos via Stripe\",\"nbfdhU\":\"Integrações\",\"I8eJ6/\":\"Notas internas no bilhete do participante\",\"B2Tpo0\":\"Email inválido\",\"5tT0+u\":\"Formato de email inválido\",\"f9WRpE\":\"Tipo de ficheiro inválido. Por favor, carregue uma imagem.\",\"tnL+GP\":\"Sintaxe Liquid inválida. Por favor, corrija-a e tente novamente.\",\"N9JsFT\":\"Formato de número de IVA inválido\",\"g+lLS9\":\"Convidar um membro da equipe\",\"1z26sk\":\"Convidar membro da equipe\",\"KR0679\":\"Convidar membros da equipe\",\"aH6ZIb\":\"Convide sua equipe\",\"IuMGvq\":\"Fatura\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"item(ns)\",\"BzfzPK\":\"Itens\",\"rjyWPb\":\"Janeiro\",\"KmWyx0\":\"Trabalho\",\"o5r6b2\":\"Trabalho eliminado\",\"cd0jIM\":\"Detalhes do trabalho\",\"ruJO57\":\"Nome do trabalho\",\"YZi+Hu\":\"Trabalho em fila para nova tentativa\",\"nCywLA\":\"Participe de qualquer lugar\",\"SNzppu\":\"Juntar-se à lista de espera\",\"dLouFI\":[\"Juntar-se à lista de espera de \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrito\",\"u4ex5r\":\"Julho\",\"zeEQd/\":\"Junho\",\"MxjCqk\":\"Apenas procurando seus ingressos?\",\"xOTzt5\":\"agora mesmo\",\"0RihU9\":\"Acabou agora mesmo\",\"lB2hSG\":[\"Mantenha-me atualizado sobre notícias e eventos de \",[\"0\"]],\"ioFA9i\":\"Fica com o lucro.\",\"4Sffp7\":\"Rótulo da sessão\",\"o66QSP\":\"atualizações de rótulo\",\"RtKKbA\":\"Último\",\"DruLRc\":\"Últimos 14 dias\",\"ve9JTU\":\"O apelido é obrigatório\",\"h0Q9Iw\":\"Última resposta\",\"gw3Ur5\":\"Última ativação\",\"FIq1Ba\":\"Mais tarde\",\"xvnLMP\":\"Últimos check-ins\",\"pzAivY\":\"Latitude da localização resolvida\",\"N5TErv\":\"Deixar em branco para ilimitado\",\"L/hDDD\":\"Deixe em branco para aplicar esta lista de check-in a todas as sessões\",\"9Pf3wk\":\"Mantenha ativo para abranger todos os bilhetes do evento. Desative para escolher bilhetes específicos.\",\"Hq2BzX\":\"Avise-os da alteração\",\"+uexiy\":\"Avise-os das alterações\",\"exYcTF\":\"Biblioteca\",\"1njn7W\":\"Claro\",\"1qY5Ue\":\"Link expirado ou inválido\",\"+zSD/o\":\"Link para a página do evento\",\"psosdY\":\"Link para detalhes do pedido\",\"6JzK4N\":\"Link para o ingresso\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links permitidos\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Vista de lista\",\"dF6vP6\":\"Ao vivo\",\"fpMs2Z\":\"AO VIVO\",\"D9zTjx\":\"Eventos ao Vivo\",\"C33p4q\":\"Datas carregadas\",\"WdmJIX\":\"Carregando pré-visualização...\",\"IoDI2o\":\"Carregando tokens...\",\"G3Ge9Z\":\"A carregar registos do webhook...\",\"NFxlHW\":\"Carregando webhooks\",\"E0DoRM\":\"Localização eliminada\",\"NtLHT3\":\"Morada Formatada da Localização\",\"h4vxDc\":\"Latitude da Localização\",\"f2TMhR\":\"Longitude da Localização\",\"lnCo2f\":\"Modo de Localização\",\"8pmGFk\":\"Nome da Localização\",\"7w8lJU\":\"Localização guardada\",\"YsRXDD\":\"Localização atualizada\",\"A/kIva\":\"atualizações de localização\",\"VppBoU\":\"Localizações\",\"iG7KNr\":\"Logotipo\",\"vu7ZGG\":\"Logo e Capa\",\"gddQe0\":\"Logo e imagem de capa para seu organizador\",\"TBEnp1\":\"O logo será exibido no cabeçalho\",\"Jzu30R\":\"O logotipo será exibido no bilhete\",\"zKTMTg\":\"Longitude da localização resolvida\",\"PSRm6/\":\"Procurar os meus bilhetes\",\"yJFu/X\":\"Escritório Principal\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Gerir \",[\"0\"]],\"wZJfA8\":\"Gerir datas e horas do seu evento recorrente\",\"RlzPUE\":\"Gerir no Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Gerir Programação\",\"zXuaxY\":\"Gira a lista de espera do seu evento, consulte estatísticas e ofereça bilhetes aos participantes.\",\"BWTzAb\":\"Manual\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"Março\",\"pqRBOz\":\"Marcar como validado (substituição de administrador)\",\"2L3vle\":\"Máx. mensagens / 24h\",\"Qp4HWD\":\"Máx. destinatários / mensagem\",\"3JzsDb\":\"Maio\",\"agPptk\":\"Meio\",\"xDAtGP\":\"Mensagem\",\"bECJqy\":\"Mensagem aprovada com sucesso\",\"1jRD0v\":\"Enviar mensagens aos participantes com tickets específicos\",\"uQLXbS\":\"Mensagem cancelada\",\"48rf3i\":\"A mensagem não pode exceder 5000 caracteres\",\"ZPj0Q8\":\"Detalhes da mensagem\",\"Vjat/X\":\"A mensagem é obrigatória\",\"0/yJtP\":\"Enviar mensagem para proprietários de pedidos com produtos específicos\",\"saG4At\":\"Mensagem agendada\",\"mFdA+i\":\"Nível de mensagens\",\"v7xKtM\":\"Nível de mensagens atualizado com sucesso\",\"H9HlDe\":\"minutos\",\"agRWc1\":\"Minutos\",\"YYzBv9\":\"Seg\",\"zz/Wd/\":\"Modo\",\"fpMgHS\":\"Seg\",\"hty0d5\":\"Segunda-feira\",\"JbIgPz\":\"Os valores monetários são totais aproximados em todas as moedas\",\"qvF+MT\":\"Monitorar e gerir trabalhos de fundo falhados\",\"kY2ll9\":\"mês\",\"HajiZl\":\"Mês\",\"+8Nek/\":\"Mensal\",\"1LkxnU\":\"Padrão Mensal\",\"6jefe3\":\"meses\",\"f8jrkd\":\"mais\",\"JcD7qf\":\"Mais ações\",\"w36OkR\":\"Eventos mais vistos (Últimos 14 dias)\",\"+Y/na7\":\"Mover todas as datas para mais cedo ou mais tarde\",\"3DIpY0\":\"Várias localizações\",\"g9cQCP\":\"Vários tipos de bilhetes\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Meus Ingressos\",\"8/brI5\":\"O nome é obrigatório\",\"sFFArG\":\"O nome deve ter menos de 255 caracteres\",\"sCV5Yc\":\"Nome do evento\",\"xxU3NX\":\"Receita Líquida\",\"7I8LlL\":\"Nova capacidade\",\"n1GRql\":\"Novo rótulo\",\"y0Fcpd\":\"Nova localização\",\"ArHT/C\":\"Novos registos\",\"uK7xWf\":\"Nova hora:\",\"veT5Br\":\"Próxima sessão\",\"WXtl5X\":[\"Seguinte: \",[\"nextFormatted\"]],\"eWRECP\":\"Vida noturna\",\"HSw5l3\":\"Não - Sou um particular ou empresa não registada para IVA\",\"VHfLAW\":\"Sem contas\",\"+jIeoh\":\"Nenhuma conta encontrada\",\"074+X8\":\"Nenhum webhook ativo\",\"zxnup4\":\"Sem afiliados para mostrar\",\"Dwf4dR\":\"Ainda não há perguntas para participantes\",\"th7rdT\":\"Sem participantes\",\"PKySlW\":\"Ainda sem participantes para esta data.\",\"/UC6qk\":\"Nenhum dado de atribuição encontrado\",\"E2vYsO\":\"O Stripe ainda não comunicou nenhuma capacidade.\",\"amMkpL\":\"Sem capacidade\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nenhuma lista de check-in disponível para este evento.\",\"wG+knX\":\"Sem check-ins ainda\",\"+dAKxg\":\"Nenhuma configuração encontrada\",\"LiLk8u\":\"Sem ligações disponíveis\",\"eb47T5\":\"Nenhum dado encontrado para os filtros selecionados. Tente ajustar o período ou a moeda.\",\"lFVUyx\":\"Sem lista de check-in específica para a data\",\"I8mtzP\":\"Não há datas disponíveis este mês. Experimente navegar para outro mês.\",\"yDukIL\":\"Nenhuma data corresponde aos filtros atuais.\",\"B7phdj\":\"Nenhuma data corresponde aos seus filtros\",\"/ZB4Um\":\"Nenhuma data corresponde à sua pesquisa\",\"gEdNe8\":\"Ainda não há datas agendadas\",\"27GYXJ\":\"Sem datas agendadas.\",\"pZNOT9\":\"Sem data de fim\",\"dW40Uz\":\"Nenhum evento encontrado\",\"8pQ3NJ\":\"Nenhum evento a iniciar nas próximas 24 horas\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Sem trabalhos falhados\",\"EpvBAp\":\"Sem fatura\",\"XZkeaI\":\"Nenhum registro encontrado\",\"nrSs2u\":\"Nenhuma mensagem encontrada\",\"Rj99yx\":\"Sem sessões disponíveis\",\"IFU1IG\":\"Sem sessões nesta data\",\"OVFwlg\":\"Ainda não há perguntas de pedido\",\"EJ7bVz\":\"Nenhum pedido encontrado\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Ainda sem encomendas para esta data.\",\"wUv5xQ\":\"Sem atividade de organizador nos últimos 14 dias\",\"vLd1tV\":\"Sem contexto de organizador disponível.\",\"B7w4KY\":\"Nenhum outro organizador disponível\",\"PChXMe\":\"Sem pedidos pagos\",\"6jYQGG\":\"Nenhum evento passado\",\"CHzaTD\":\"Sem eventos populares nos últimos 14 dias\",\"zK/+ef\":\"Nenhum produto disponível para seleção\",\"M1/lXs\":\"Sem produtos configurados para este evento.\",\"kY7XDn\":\"Nenhum produto tem entradas na lista de espera\",\"wYiAtV\":\"Sem registos de contas recentes\",\"UW90md\":\"Nenhum destinatário encontrado\",\"QoAi8D\":\"Sem resposta\",\"JeO7SI\":\"Sem Resposta\",\"EK/G11\":\"Ainda sem respostas\",\"7J5OKy\":\"Ainda não existem localizações guardadas\",\"wpCjcf\":\"Ainda não há localizações guardadas. Aparecerão aqui à medida que criar eventos com moradas.\",\"mPdY6W\":\"Sem sugestões\",\"3sRuiW\":\"Nenhum ingresso encontrado\",\"k2C0ZR\":\"Sem próximas datas\",\"yM5c0q\":\"Nenhum evento futuro\",\"qpC74J\":\"Nenhum utilizador encontrado\",\"8wgkoi\":\"Sem eventos vistos nos últimos 14 dias\",\"Arzxc1\":\"Sem inscrições na lista de espera\",\"n5vdm2\":\"Nenhum evento de webhook foi registrado para este endpoint ainda. Os eventos aparecerão aqui assim que forem acionados.\",\"4GhX3c\":\"Nenhum Webhook\",\"4+am6b\":\"Não, manter-me aqui\",\"4JVMUi\":\"não editadas\",\"Itw24Q\":\"Sem check-in\",\"x5+Lcz\":\"Não Registado\",\"8n10sz\":\"Não Elegível\",\"kLvU3F\":\"Notificar os participantes e suspender vendas\",\"t9QlBd\":\"Novembro\",\"kAREMN\":\"Número de datas a criar\",\"6u1B3O\":\"Sessão\",\"mmoE62\":\"Sessão Cancelada\",\"UYWXdN\":\"Data de Fim da Sessão\",\"k7dZT5\":\"Hora de Fim da Sessão\",\"Opinaj\":\"Rótulo da Sessão\",\"V9flmL\":\"Programação de Sessões\",\"NUTUUs\":\"página de Programação de Sessões\",\"AT8UKD\":\"Data de Início da Sessão\",\"Um8bvD\":\"Hora de Início da Sessão\",\"Kh3WO8\":\"Resumo da Sessão\",\"byXCTu\":\"Sessões\",\"KATw3p\":\"Sessões (apenas futuras)\",\"85rTR2\":\"As sessões podem ser configuradas após a criação\",\"dzQfDY\":\"Outubro\",\"BwJKBw\":\"de\",\"9h7RDh\":\"Oferecer\",\"EfK2O6\":\"Oferecer lugar\",\"3sVRey\":\"Oferecer bilhetes\",\"2O7Ybb\":\"Tempo limite da oferta\",\"1jUg5D\":\"Oferecido\",\"l+/HS6\":[\"As ofertas expiram após \",[\"timeoutHours\"],\" horas.\"],\"lQgMLn\":\"Nome do escritório ou local\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Pagamento offline\",\"nO3VbP\":[\"Em promoção \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — fornecer dados de ligação\",\"LuZBbx\":\"Online e presencial\",\"IXuOqt\":\"Online e presencial — ver programação\",\"w3DG44\":\"Detalhes da Ligação Online\",\"WjSpu5\":\"Evento online\",\"TP6jss\":\"Detalhes da ligação do evento online\",\"NdOxqr\":\"Apenas os administradores da conta podem eliminar ou arquivar eventos. Contacte o administrador da sua conta para obter ajuda.\",\"rnoDMF\":\"Apenas os administradores da conta podem eliminar ou arquivar organizadores. Contacte o administrador da sua conta para obter ajuda.\",\"bU7oUm\":\"Enviar apenas para pedidos com esses status\",\"M2w1ni\":\"Apenas visível com código promocional\",\"y8Bm7C\":\"Abrir check-in\",\"RLz7P+\":\"Abrir sessão\",\"cDSdPb\":\"Alcunha opcional mostrada nos seletores, ex.: \\\"Sala de Conferências da Sede\\\"\",\"HXMJxH\":\"Texto opcional para avisos legais, informações de contacto ou notas de agradecimento (apenas uma linha)\",\"L565X2\":\"opções\",\"8m9emP\":\"ou adicionar uma única data\",\"dSeVIm\":\"encomenda\",\"c/TIyD\":\"Pedido e Bilhete\",\"H5qWhm\":\"Pedido cancelado\",\"b6+Y+n\":\"Pedido concluído\",\"x4MLWE\":\"Confirmação do pedido\",\"CsTTH0\":\"Confirmação do pedido reenviada com sucesso\",\"ppuQR4\":\"Pedido criado\",\"0UZTSq\":\"Moeda do Pedido\",\"xtQzag\":\"Detalhes da encomenda\",\"HdmwrI\":\"E-mail do pedido\",\"bwBlJv\":\"Primeiro nome do pedido\",\"vrSW9M\":\"O pedido foi cancelado e reembolsado. O proprietário do pedido foi notificado.\",\"rzw+wS\":\"Titulares de encomendas\",\"oI/hGR\":\"ID do Pedido\",\"Pc729f\":\"Pedido Aguardando Pagamento Offline\",\"F4NXOl\":\"Sobrenome do pedido\",\"RQCXz6\":\"Limites de Pedido\",\"SO9AEF\":\"Limites de pedido definidos\",\"5RDEEn\":\"Idioma do Pedido\",\"vu6Arl\":\"Pedido marcado como pago\",\"sLbJQz\":\"Pedido não encontrado\",\"kvYpYu\":\"Pedido não encontrado\",\"i8VBuv\":\"Número do pedido\",\"eJ8SvM\":\"Número da encomenda, data, email do comprador\",\"FaPYw+\":\"Proprietário do pedido\",\"eB5vce\":\"Proprietários de pedidos com um produto específico\",\"CxLoxM\":\"Proprietários de pedidos com produtos\",\"DoH3fD\":\"Pagamento do Pedido Pendente\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Status dos pedidos\",\"oW5877\":\"Total do pedido\",\"e7eZuA\":\"Pedido atualizado\",\"1SQRYo\":\"Pedido atualizado com sucesso\",\"KndP6g\":\"URL do pedido\",\"3NT0Ck\":\"O pedido foi cancelado\",\"V5khLm\":\"encomendas\",\"sd5IMt\":\"Encomendas concluídas\",\"5It1cQ\":\"Pedidos exportados\",\"tlKX/S\":\"As encomendas que abrangem várias datas serão sinalizadas para revisão manual.\",\"UQ0ACV\":\"Total de encomendas\",\"B/EBQv\":\"Encomendas:\",\"qtGTNu\":\"Contas orgânicas\",\"ucgZ0o\":\"Organização\",\"P/JHA4\":\"Organizador arquivado com sucesso\",\"S3CZ5M\":\"Painel do organizador\",\"GzjTd0\":\"Organizador eliminado com sucesso\",\"Uu0hZq\":\"Email do organizador\",\"Gy7BA3\":\"Endereço de email do organizador\",\"SQqJd8\":\"Organizador não encontrado\",\"HF8Bxa\":\"Organizador restaurado com sucesso\",\"wpj63n\":\"Configurações do organizador\",\"o1my93\":\"Falha ao atualizar o status do organizador. Por favor, tente novamente mais tarde.\",\"rLHma1\":\"Status do organizador atualizado\",\"LqBITi\":\"O modelo do organizador/padrão será usado\",\"q4zH+l\":\"Organizadores\",\"/IX/7x\":\"Outro\",\"RsiDDQ\":\"Outras Listas (Bilhete Não Incluído)\",\"aDfajK\":\"Ao ar livre\",\"qMASRF\":\"Mensagens de saída\",\"iCOVQO\":\"Substituir\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Substituir preço\",\"cnVIpl\":\"Substituição removida\",\"6/dCYd\":\"Visão geral\",\"6WdDG7\":\"Página\",\"8uqsE5\":\"Página já não disponível\",\"QkLf4H\":\"URL da página\",\"sF+Xp9\":\"Visualizações de página\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Contas pagas\",\"5F7SYw\":\"Reembolso parcial\",\"fFYotW\":[\"Parcialmente reembolsado: \",[\"0\"]],\"i8day5\":\"Passar taxa para o comprador\",\"k4FLBQ\":\"Passar para o comprador\",\"Ff0Dor\":\"Passado\",\"BFjW8X\":\"Em atraso\",\"xTPjSy\":\"Eventos passados\",\"/l/ckQ\":\"Cole a URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"OZK07J\":\"Pagar para desbloquear\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data de pagamento\",\"ENEPLY\":\"Método de pagamento\",\"8Lx2X7\":\"Pagamento recebido\",\"fx8BTd\":\"Pagamentos não disponíveis\",\"C+ylwF\":\"Pagamentos\",\"UbRKMZ\":\"Pendente\",\"UkM20g\":\"Revisão pendente\",\"dPYu1F\":\"Por participante\",\"mQV/nJ\":\"por min\",\"VlXNyK\":\"Por pedido\",\"hauDFf\":\"Por bilhete\",\"mnF83a\":\"Taxa Percentual\",\"TNLuRD\":\"Taxa percentual (%)\",\"MixU2P\":\"A percentagem deve estar entre 0 e 100\",\"MkuVAZ\":\"Percentagem do valor da transação\",\"/Bh+7r\":\"Desempenho\",\"fIp56F\":\"Eliminar permanentemente este evento e todos os dados associados.\",\"nJeeX7\":\"Eliminar permanentemente este organizador e todos os seus eventos.\",\"wfCTgK\":\"Remover esta data permanentemente\",\"6kPk3+\":\"Informações pessoais\",\"zmwvG2\":\"Telefone\",\"SdM+Q1\":\"Escolher uma localização\",\"tSR/oe\":\"Escolha uma data de fim\",\"e8kzpp\":\"Escolha pelo menos um dia do mês\",\"35C8QZ\":\"Escolha pelo menos um dia da semana\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Colocada\",\"wBJR8i\":\"Planejando um evento?\",\"J3lhKT\":\"Taxa da plataforma\",\"RD51+P\":[\"Taxa da plataforma de \",[\"0\"],\" deduzida do seu pagamento\"],\"br3Y/y\":\"Taxas da plataforma\",\"3buiaw\":\"Relatório de taxas da plataforma\",\"kv9dM4\":\"Receitas da plataforma\",\"PJ3Ykr\":\"Por favor, verifique o seu bilhete para confirmar a nova hora. Os seus bilhetes continuam válidos — não é necessária qualquer ação a menos que as novas horas não lhe sejam convenientes. Responda a este e-mail se tiver alguma dúvida.\",\"OtjenF\":\"Por favor, introduza um endereço de e-mail válido\",\"jEw0Mr\":\"Por favor, insira uma URL válida\",\"n8+Ng/\":\"Por favor, introduza o código de 5 dígitos\",\"r+lQXT\":\"Por favor, insira o seu número de IVA\",\"Dvq0wf\":\"Por favor, forneça uma imagem.\",\"2cUopP\":\"Por favor, reinicie o processo de compra.\",\"GoXxOA\":\"Por favor, selecione uma data e hora\",\"8KmsFa\":\"Por favor, selecione um intervalo de datas\",\"EFq6EG\":\"Por favor, selecione uma imagem.\",\"fuwKpE\":\"Por favor, tente novamente.\",\"klWBeI\":\"Por favor, aguarde antes de solicitar outro código\",\"hfHhaa\":\"Por favor, aguarde enquanto preparamos os seus afiliados para exportação...\",\"o+tJN/\":\"Por favor, aguarde enquanto preparamos seus participantes para exportação...\",\"+5Mlle\":\"Por favor, aguarde enquanto preparamos seus pedidos para exportação...\",\"trnWaw\":\"Polaco\",\"luHAJY\":\"Eventos populares (Últimos 14 dias)\",\"p/78dY\":\"Posição\",\"TjX7xL\":\"Mensagem Pós-Checkout\",\"OESu7I\":\"Evite sobrevenda compartilhando estoque entre vários tipos de ingresso.\",\"NgVUL2\":\"Pré-visualizar formulário de checkout\",\"cs5muu\":\"Pré-visualizar página do evento\",\"+4yRWM\":\"Preço do ingresso\",\"Jm2AC3\":\"Nível de Preço\",\"a5jvSX\":\"Níveis de Preço\",\"ReihZ7\":\"Pré-visualização de Impressão\",\"JnuPvH\":\"Imprimir Bilhete\",\"tYF4Zq\":\"Imprimir para PDF\",\"LcET2C\":\"Política de Privacidade\",\"8z6Y5D\":\"Processar reembolso\",\"JcejNJ\":\"A processar pedido\",\"EWCLpZ\":\"Produto criado\",\"XkFYVB\":\"Produto excluído\",\"YMwcbR\":\"Detalhamento das vendas de produtos, receitas e impostos\",\"ls0mTC\":\"As definições do produto não podem ser editadas para datas canceladas.\",\"2339ej\":\"Definições do produto guardadas com sucesso\",\"ldVIlB\":\"Produto atualizado\",\"CP3D8G\":\"Progresso\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionais e detalhamento de descontos\",\"tZqL0q\":\"códigos promocionais\",\"oCHiz3\":\"Códigos promocionais\",\"uEhdRh\":\"Apenas Promoção\",\"dLm8V5\":\"Emails promocionais podem resultar na suspensão da conta\",\"XoEWtl\":\"Indique pelo menos um campo de endereço para a nova localização.\",\"2W/7Gz\":\"Fornece os seguintes dados antes da próxima revisão do Stripe para manteres os pagamentos a fluir.\",\"aemBRq\":\"Fornecedor\",\"EEYbdt\":\"Publicar\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Adquirido\",\"JunetL\":\"Comprador\",\"phmeUH\":\"Email do comprador\",\"ywR4ZL\":\"Check-in por código QR\",\"oWXNE5\":\"Qtd.\",\"biEyJ4\":\"Respostas\",\"k/bJj0\":\"Perguntas reordenadas\",\"b24kPi\":\"Fila\",\"lTPqpM\":\"Dica Rápida\",\"fqDzSu\":\"Taxa\",\"mnUGVC\":\"Limite de taxa excedido. Por favor, tente novamente mais tarde.\",\"t41hVI\":\"Reoferecer lugar\",\"TNclgc\":\"Reativar esta data? Será reaberta para vendas futuras.\",\"uqoRbb\":\"Análise em tempo real\",\"xzRvs4\":[\"Receber atualizações de produtos do \",[\"0\"],\".\"],\"pLXbi8\":\"Registos de contas recentes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Participantes Recentes\",\"qhfiwV\":\"Check-ins recentes\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Pedidos recentes\",\"7hPBBn\":\"destinatário\",\"jp5bq8\":\"destinatários\",\"yPrbsy\":\"Destinatários\",\"E1F5Ji\":\"Os destinatários ficam disponíveis após o envio da mensagem\",\"wuhHPE\":\"Recorrente\",\"asLqwt\":\"Evento Recorrente\",\"D0tAMe\":\"Eventos recorrentes\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecionando para o Stripe...\",\"pnoTN5\":\"Contas de referência\",\"ACKu03\":\"Atualizar visualização\",\"vuFYA6\":\"Reembolsar todas as encomendas destas datas\",\"4cRUK3\":\"Reembolsar todas as encomendas desta data\",\"fKn/k6\":\"Valor do reembolso\",\"qY4rpA\":\"Reembolso falhou\",\"TspTcZ\":\"Reembolso Emitido\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configurações regionais\",\"5tl0Bp\":\"Perguntas de registro\",\"ZNo5k1\":\"Em falta\",\"EMnuA4\":\"Lembrete agendado\",\"Bjh87R\":\"Remover rótulo de todas as datas\",\"KkJtVK\":\"Reabrir para novas vendas\",\"XJwWJp\":\"Reabrir esta data para novas vendas? Os bilhetes anteriormente cancelados não serão restaurados — os participantes afetados permanecem cancelados e os reembolsos já emitidos não serão revertidos.\",\"bAwDQs\":\"Repetir a cada\",\"CQeZT8\":\"Relatório não encontrado\",\"JEPMXN\":\"Solicitar novo link\",\"TMLAx2\":\"Obrigatório\",\"mdeIOH\":\"Reenviar código\",\"sQxe68\":\"Reenviar confirmação\",\"bxoWpz\":\"Reenviar e-mail de confirmação\",\"G42SNI\":\"Reenviar e-mail\",\"TTpXL3\":[\"Reenviar em \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Reenviar bilhete\",\"Uwsg2F\":\"Reservado\",\"8wUjGl\":\"Reservado até\",\"a5z8mb\":\"Repor preço base\",\"kCn6wb\":\"A redefinir...\",\"404zLK\":\"Nome do local ou da localização resolvida\",\"ZlCDf+\":\"Resposta\",\"bsydMp\":\"Detalhes da Resposta\",\"yKu/3Y\":\"Restaurar\",\"RokrZf\":\"Restaurar evento\",\"/JyMGh\":\"Restaurar organizador\",\"HFvFRb\":\"Restaure este evento para o tornar visível novamente.\",\"DDIcqy\":\"Restaure este organizador e torne-o ativo novamente.\",\"mO8KLE\":\"resultados\",\"6gRgw8\":\"Tentar novamente\",\"1BG8ga\":\"Tentar tudo novamente\",\"rDC+T6\":\"Tentar trabalho novamente\",\"CbnrWb\":\"Voltar ao evento\",\"mdQ0zb\":\"Locais reutilizáveis para os seus eventos. As localizações criadas a partir do preenchimento automático são guardadas aqui automaticamente.\",\"XFOPle\":\"Reutilizar\",\"1Zehp4\":\"Reutiliza uma ligação Stripe de outro organizador desta conta.\",\"Oo/PLb\":\"Resumo de Receita\",\"O/8Ceg\":\"Receita de hoje\",\"CfuueU\":\"Revogar Oferta\",\"RIgKv+\":\"Decorrer até uma data específica\",\"JYRqp5\":\"Sáb\",\"dFFW9L\":[\"Promoção terminou \",[\"0\"]],\"loCKGB\":[\"Promoção termina \",[\"0\"]],\"wlfBad\":\"Período de Promoção\",\"qi81Jg\":\"As datas do período de venda aplicam-se a todas as datas da sua programação. Para controlar o preço e a disponibilidade de datas individuais, utilize as substituições na <0>página de Programação de Sessões.\",\"5CDM6r\":\"Período de venda definido\",\"ftzaMf\":\"Período de venda, limites de pedido, visibilidade\",\"zpekWp\":[\"Promoção começa \",[\"0\"]],\"mUv9U4\":\"Vendas\",\"9KnRdL\":\"As vendas estão pausadas\",\"JC3J0k\":\"Detalhamento de vendas, presenças e check-ins por sessão\",\"3VnlS9\":\"Vendas, pedidos e métricas de desempenho para todos os eventos\",\"3Q1AWe\":\"Vendas:\",\"LeuERW\":\"Igual ao evento\",\"B4nE3N\":\"Preço do bilhete de exemplo\",\"8BRPoH\":\"Local Exemplo\",\"PiK6Ld\":\"Sáb\",\"+5kO8P\":\"Sábado\",\"zJiuDn\":\"Guardar substituição de taxa\",\"NB8Uxt\":\"Guardar Programação\",\"KZrfYJ\":\"Salvar links sociais\",\"9Y3hAT\":\"Salvar modelo\",\"C8ne4X\":\"Guardar Design do Bilhete\",\"cTI8IK\":\"Guardar definições de IVA\",\"6/TNCd\":\"Guardar Definições de IVA\",\"4RvD9q\":\"Localização guardada\",\"cgw0cL\":\"Localizações guardadas\",\"lvSrsT\":\"Localizações Guardadas\",\"Fbqm/I\":\"Guardar uma substituição cria uma configuração dedicada para este organizador caso este esteja atualmente na predefinição do sistema.\",\"I+FvbD\":\"Digitalizar\",\"0zd6Nm\":\"Leia um bilhete para fazer check-in do participante\",\"bQG7Qk\":\"Os bilhetes lidos aparecerão aqui\",\"WDYSLJ\":\"Modo leitor\",\"gmB6oO\":\"Programação\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Programação criada com sucesso\",\"YP7frt\":\"A programação termina em\",\"QS1Nla\":\"Agendar para mais tarde\",\"NAzVVw\":\"Agendar mensagem\",\"Fz09JP\":\"O agendamento começa em\",\"4ba0NE\":\"Agendado\",\"qcP/8K\":\"Hora agendada\",\"A1taO8\":\"Pesquisar\",\"ftNXma\":\"Pesquisar afiliados...\",\"VMU+zM\":\"Pesquisar participantes\",\"VY+Bdn\":\"Pesquisar por nome da conta ou e-mail...\",\"VX+B3I\":\"Pesquisar por título do evento ou organizador...\",\"R0wEyA\":\"Pesquisar por nome do trabalho ou exceção...\",\"VT+urE\":\"Pesquisar por nome ou e-mail...\",\"GHdjuo\":\"Pesquisar por nome, e-mail ou conta...\",\"4mBFO7\":\"Pesquisar por nome, n.º encomenda, n.º bilhete ou email\",\"20ce0U\":\"Pesquisar por ID do pedido, nome do cliente ou email...\",\"4DSz7Z\":\"Pesquisar por assunto, evento ou conta...\",\"nQC7Z9\":\"Pesquisar datas...\",\"iRtEpV\":\"Pesquisar datas…\",\"JRM7ao\":\"Pesquisar uma morada\",\"BWF1kC\":\"Pesquisar mensagens...\",\"3aD3GF\":\"Sazonal\",\"ku//5b\":\"Segundo\",\"Mck5ht\":\"Checkout Seguro\",\"s7tXqF\":\"Ver programação\",\"JFap6u\":\"Ver o que o Stripe ainda precisa\",\"p7xUrt\":\"Selecione uma categoria\",\"hTKQwS\":\"Selecione uma Data e Hora\",\"e4L7bF\":\"Selecione uma mensagem para ver o seu conteúdo\",\"zPRPMf\":\"Selecionar um nível\",\"uqpVri\":\"Selecione uma hora\",\"BFRSTT\":\"Selecionar Conta\",\"wgNoIs\":\"Selecionar tudo\",\"mCB6Je\":\"Selecionar tudo\",\"aCEysm\":[\"Selecionar tudo em \",[\"0\"]],\"a6+167\":\"Selecionar um evento\",\"CFbaPk\":\"Selecione o grupo de participantes\",\"88a49s\":\"Selecionar câmara\",\"tVW/yo\":\"Selecionar moeda\",\"SJQM1I\":\"Selecionar data\",\"n9ZhRa\":\"Selecione data e hora de término\",\"gTN6Ws\":\"Selecionar hora de fim\",\"0U6E9W\":\"Selecionar categoria do evento\",\"j9cPeF\":\"Selecionar tipos de eventos\",\"ypTjHL\":\"Selecionar sessão\",\"KizCK7\":\"Selecione data e hora de início\",\"dJZTv2\":\"Selecionar hora de início\",\"x8XMsJ\":\"Selecione o nível de mensagens para esta conta. Isto controla os limites de mensagens e permissões de links.\",\"aT3jZX\":\"Selecionar fuso horário\",\"TxfvH2\":\"Selecione quais participantes devem receber esta mensagem\",\"Ropvj0\":\"Selecione quais eventos acionarão este webhook\",\"+6YAwo\":\"selecionada(s)\",\"ylXj1N\":\"Selecionado\",\"uq3CXQ\":\"Esgote o seu evento.\",\"j9b/iy\":\"Vendendo rápido 🔥\",\"73qYgo\":\"Enviar como teste\",\"HMAqFK\":\"Enviar e-mails para participantes, titulares de bilhetes ou proprietários de encomendas. As mensagens podem ser enviadas imediatamente ou agendadas para mais tarde.\",\"22Itl6\":\"Envie-me uma cópia\",\"NpEm3p\":\"Enviar agora\",\"nOBvex\":\"Envie dados de pedidos e participantes em tempo real para seus sistemas externos.\",\"1lNPhX\":\"Enviar email de notificação de reembolso\",\"eaUTwS\":\"Enviar link de redefinição\",\"5cV4PY\":\"Enviar para todas as sessões, ou escolher uma específica\",\"QEQlnV\":\"Envie a sua primeira mensagem\",\"3nMAVT\":\"A enviar em 2d 4h\",\"IoAuJG\":\"A enviar...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Enviado aos participantes quando uma data agendada é cancelada\",\"SPdzrs\":\"Enviado aos clientes quando fazem um pedido\",\"LxSN5F\":\"Enviado a cada participante com os detalhes do seu ingresso\",\"hgvbYY\":\"Setembro\",\"5sN96e\":\"Sessão cancelada\",\"89xaFU\":\"Defina as configurações padrão de taxa da plataforma para novos eventos criados sob este organizador.\",\"eXssj5\":\"Definir configurações predefinidas para novos eventos criados sob este organizador.\",\"uPe5p8\":\"Defina a duração de cada data\",\"xNsRxU\":\"Definir número de datas\",\"ODuUEi\":\"Definir ou limpar o rótulo da data\",\"buHACR\":\"Defina a hora de fim de cada data para este intervalo após a hora de início.\",\"TaeFgl\":\"Definir como ilimitado (remover limite)\",\"pd6SSe\":\"Configure uma programação recorrente para criar datas automaticamente, ou adicione-as uma de cada vez.\",\"s0FkEx\":\"Configure listas de check-in para diferentes entradas, sessões ou dias.\",\"TaWVGe\":\"Configurar pagamentos\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Configurar Programação\",\"xMO+Ao\":\"Configure a sua organização\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Configure a Sua Programação\",\"ETC76A\":\"Definir, alterar ou remover a localização ou os dados online da sessão\",\"C3htzi\":\"Configuração atualizada\",\"Ohn74G\":\"Configuração e design\",\"1W5XyZ\":\"A configuração demora apenas alguns minutos — não precisas de uma conta Stripe existente. O Stripe trata de cartões, carteiras, métodos de pagamento regionais e proteção contra fraude para que possas focar-te no teu evento.\",\"GG7qDw\":\"Partilhar link de afiliado\",\"hL7sDJ\":\"Compartilhar página do organizador\",\"jy6QDF\":\"Gestão de capacidade compartilhada\",\"jDNHW4\":\"Deslocar horas\",\"tPfIaW\":[\"Horas deslocadas em \",[\"count\"],\" data(s)\"],\"WwlM8F\":\"Mostrar opções avançadas\",\"cMW+gm\":[\"Mostrar todas as plataformas (\",[\"0\"],\" com valores)\"],\"wXi9pZ\":\"Mostrar notas a pessoal sem sessão\",\"UVPI5D\":\"Mostrar menos plataformas\",\"Eu/N/d\":\"Mostrar caixa de seleção de opt-in de marketing\",\"SXzpzO\":\"Mostrar caixa de seleção de opt-in de marketing por padrão\",\"57tTk5\":\"Mostrar mais datas\",\"b33PL9\":\"Mostrar mais plataformas\",\"Eut7p9\":\"Mostrar detalhes a pessoal sem sessão\",\"+RoWKN\":\"Mostrar respostas a pessoal sem sessão\",\"t1LIQW\":[\"A mostrar \",[\"0\"],\" de \",[\"totalRows\"],\" registos\"],\"E717U9\":[\"A mostrar \",[\"0\"],\"–\",[\"1\"],\" de \",[\"2\"]],\"5rzhBQ\":[\"A mostrar \",[\"MAX_VISIBLE\"],\" de \",[\"totalAvailable\"],\" datas. Escreva para pesquisar.\"],\"WSt3op\":[\"A mostrar as primeiras \",[\"0\"],\" — as restantes \",[\"1\"],\" sessão(ões) continuarão a ser abrangidas quando a mensagem for enviada.\"],\"OJLTEL\":\"Mostrado ao pessoal na primeira vez que abre a página.\",\"jVRHeq\":\"Registado\",\"5C7J+P\":\"Evento Único\",\"E//btK\":\"Ignorar datas editadas manualmente\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Links sociais\",\"j/TOB3\":\"Links sociais e site\",\"s9KGXU\":\"Vendido\",\"iACSrw\":\"Alguns detalhes estão ocultos do acesso público. Inicie sessão para ver tudo.\",\"KTxc6k\":\"Algo deu errado, tente novamente ou entre em contato com o suporte se o problema persistir\",\"lkE00/\":\"Algo correu mal. Por favor, tente novamente mais tarde.\",\"wdxz7K\":\"Fonte\",\"fDG2by\":\"Espiritualidade\",\"oPaRES\":\"Divida o check-in por dia, zona ou tipo de bilhete. Partilhe o link com o pessoal — sem necessidade de conta.\",\"7JFNej\":\"Desporto\",\"/bfV1Y\":\"Instruções para a equipa\",\"tXkhj/\":\"Início\",\"JcQp9p\":\"Data e hora de início\",\"0m/ekX\":\"Data e hora de início\",\"izRfYP\":\"A data de início é obrigatória\",\"tuO4fV\":\"Data de início da sessão\",\"2R1+Rv\":\"Hora de início do evento\",\"2Olov3\":\"Hora de início da sessão\",\"n9ZrDo\":\"Comece a escrever um local ou morada...\",\"qeFVhN\":[\"Começa em \",[\"diffDays\"],\" dias\"],\"AOqtxN\":[\"Começa em \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Começa em \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Começa em \",[\"seconds\"],\"s\"],\"NqChgF\":\"Começa amanhã\",\"2NbyY/\":\"Estatísticas\",\"GVUxAX\":\"As estatísticas são baseadas na data de criação da conta\",\"29Hx9U\":\"Estatísticas\",\"5ia+r6\":\"Ainda em falta\",\"wuV0bK\":\"Parar Personificação\",\"s/KaDb\":\"Stripe ligado\",\"Bk06QI\":\"Stripe ligado\",\"akZMv8\":[\"Ligação Stripe copiada de \",[\"0\"],\".\"],\"v0aRY1\":\"O Stripe não devolveu um link de configuração. Tenta de novo.\",\"aKtF0O\":\"Stripe não conectado\",\"9i0++A\":\"ID de pagamento Stripe\",\"R1lIMV\":\"O Stripe vai precisar de mais alguns dados em breve\",\"FzcCHA\":\"O Stripe vai conduzir-te através de algumas perguntas rápidas para concluir a configuração.\",\"eYbd7b\":\"Dom\",\"ii0qn/\":\"O assunto é obrigatório\",\"M7Uapz\":\"O assunto aparecerá aqui\",\"6aXq+t\":\"Assunto:\",\"JwTmB6\":\"Produto duplicado com sucesso\",\"WUOCgI\":\"Lugar oferecido com sucesso\",\"IvxA4G\":[\"Bilhetes oferecidos com sucesso a \",[\"count\"],\" pessoas\"],\"kKpkzy\":\"Bilhetes oferecidos com sucesso a 1 pessoa\",\"Zi3Sbw\":\"Removido da lista de espera com sucesso\",\"RuaKfn\":\"Endereço atualizado com sucesso\",\"kzx0uD\":\"Predefinições de Evento Atualizadas com Sucesso\",\"5n+Wwp\":\"Organizador atualizado com sucesso\",\"DMCX/I\":\"Configurações padrão de taxa da plataforma atualizadas com sucesso\",\"URUYHc\":\"Configurações de taxa da plataforma atualizadas com sucesso\",\"0Dk/l8\":\"Configurações de SEO atualizadas com sucesso\",\"S8Tua9\":\"Definições atualizadas com sucesso\",\"MhOoLQ\":\"Links sociais atualizados com sucesso\",\"CNSSfp\":\"Definições de Rastreio Atualizadas com Sucesso\",\"kj7zYe\":\"Webhook atualizado com sucesso\",\"dXoieq\":\"Resumo\",\"/RfJXt\":[\"Festival de Música de Verão \",[\"0\"]],\"CWOPIK\":\"Festival de Música de Verão 2025\",\"D89zck\":\"Dom\",\"DBC3t5\":\"Domingo\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Trocar organizador\",\"9YHrNC\":\"Padrão do Sistema\",\"lruQkA\":\"Toque no ecrã para retomar\",\"TJUrME\":[\"A abranger os participantes de \",[\"0\"],\" sessões selecionadas.\"],\"yT6dQ8\":\"Impostos cobrados agrupados por tipo de imposto e evento\",\"Ye321X\":\"Nome do Imposto\",\"WyCBRt\":\"Resumo de Impostos\",\"GkH0Pq\":\"Taxas e impostos aplicados\",\"Rwiyt2\":\"Impostos configurados\",\"iQZff7\":\"Impostos, Taxas, Visibilidade, Período de Venda, Destaque do Produto e Limites de Pedido\",\"SXvRWU\":\"Colaboração em equipa\",\"vlf/In\":\"Tecnologia\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Conte às pessoas o que esperar do seu evento\",\"NiIUyb\":\"Conte-nos sobre seu evento\",\"DovcfC\":\"Fale-nos sobre a sua organização. Esta informação será exibida nas páginas dos seus eventos.\",\"69GWRq\":\"Diga-nos com que frequência o seu evento se repete e criaremos todas as datas por si.\",\"mXPbwY\":\"Indica o teu estado de registo de IVA para aplicarmos o tratamento correto às taxas da plataforma.\",\"7wtpH5\":\"Modelo ativo\",\"QHhZeE\":\"Modelo criado com sucesso\",\"xrWdPR\":\"Modelo excluído com sucesso\",\"G04Zjt\":\"Modelo salvo com sucesso\",\"xowcRf\":\"Termos de serviço\",\"6K0GjX\":\"O texto pode ser difícil de ler\",\"u0F1Ey\":\"Qui\",\"nm3Iz/\":\"Obrigado por participar!\",\"pYwj0k\":\"Obrigado,\",\"k3IitN\":\"Fim\",\"KfmPRW\":\"A cor de fundo da página. Ao usar imagem de capa, esta é aplicada como uma sobreposição.\",\"MDNyJz\":\"O código irá expirar em 10 minutos. Verifique a sua pasta de spam se não vir o email.\",\"AIF7J2\":\"A moeda em que a taxa fixa é definida. Será convertida para a moeda do pedido no checkout.\",\"MJm4Tq\":\"A moeda do pedido\",\"cDHM1d\":\"O endereço de e-mail foi alterado. O participante receberá um novo bilhete no endereço de e-mail atualizado.\",\"I/NNtI\":\"O local do evento\",\"tXadb0\":\"O evento que você está procurando não está disponível no momento. Ele pode ter sido removido, expirado ou a URL pode estar incorreta.\",\"5fPdZe\":\"A primeira data a partir da qual este agendamento será gerado.\",\"EBzPwC\":\"O endereço completo do evento\",\"sxKqBm\":\"O valor total do pedido será reembolsado para o método de pagamento original do cliente.\",\"KgDp6G\":\"O link que está a tentar aceder expirou ou já não é válido. Por favor, verifique o seu e-mail para obter um link atualizado para gerir o seu pedido.\",\"5OmEal\":\"O idioma do cliente\",\"Np4eLs\":[\"O máximo é de \",[\"MAX_PREVIEW\"],\" sessões. Por favor, reduza o intervalo de datas, a frequência ou o número de sessões por dia.\"],\"sYLeDq\":\"O organizador que você está procurando não foi encontrado. A página pode ter sido movida, excluída ou o URL está incorreto.\",\"PCr4zw\":\"A substituição fica registada no registo de auditoria da encomenda.\",\"C4nQe5\":\"A taxa da plataforma é adicionada ao preço do bilhete. Os compradores pagam mais, mas você recebe o preço total do bilhete.\",\"HxxXZO\":\"A cor principal da marca usada para botões e destaques\",\"z0KrIG\":\"A hora agendada é obrigatória\",\"EWErQh\":\"A hora agendada deve ser no futuro\",\"UNd0OU\":[\"A sessão de \\\"\",[\"title\"],\"\\\", inicialmente agendada para \",[\"0\"],\", foi reagendada.\"],\"DEcpfp\":\"O corpo do modelo contém sintaxe Liquid inválida. Por favor, corrija-a e tente novamente.\",\"injXD7\":\"O número de IVA não pôde ser validado. Por favor, verifique o número e tente novamente.\",\"A4UmDy\":\"Teatro\",\"tDwYhx\":\"Tema e cores\",\"O7g4eR\":\"Não há próximas datas para este evento\",\"HrIl0p\":[\"Não existe uma lista de check-in específica para esta data. A lista \\\"\",[\"0\"],\"\\\" faz o check-in dos participantes em todas as datas — a equipa que ler um bilhete de outra data terá sucesso na mesma.\"],\"dt3TwA\":\"Estes são os preços e quantidades predefinidos para todas as datas. As datas de venda nos níveis aplicam-se globalmente. Pode substituir preços e quantidades para datas individuais na <0>página de Programação de Sessões.\",\"062KsE\":\"Estes detalhes são apresentados no bilhete do participante e no resumo da encomenda apenas para esta data.\",\"5Eu+tn\":\"Estes detalhes só serão apresentados se a encomenda for concluída com sucesso.\",\"jQjwR+\":\"Estes dados substituirão qualquer localização existente nas sessões afetadas e serão apresentados nos bilhetes dos participantes.\",\"QP3gP+\":\"Estas configurações se aplicam apenas ao código de incorporação copiado e não serão armazenadas.\",\"HirZe8\":\"Estes modelos serão usados como padrões para todos os eventos em sua organização. Eventos individuais podem substituir estes modelos por suas próprias versões personalizadas.\",\"lzAaG5\":\"Estes modelos substituirão os padrões do organizador apenas para este evento. Se nenhum modelo personalizado for definido aqui, o modelo do organizador será usado em vez disso.\",\"UlykKR\":\"Terceiro\",\"wkP5FM\":\"Isto aplica-se a todas as datas correspondentes do evento, incluindo as que não estão visíveis no momento. Os participantes registados em qualquer uma dessas datas poderão ser contactados através do compositor de mensagens assim que a atualização terminar.\",\"SOmGDa\":\"Esta lista de check-in está associada a uma sessão que foi cancelada, pelo que já não pode ser utilizada para check-ins.\",\"XBNC3E\":\"Este código será usado para rastrear vendas. Apenas são permitidas letras, números, hífenes e underscores.\",\"AaP0M+\":\"Esta combinação de cores pode ser difícil de ler para alguns utilizadores\",\"o1phK/\":[\"Esta data tem \",[\"orderCount\"],\" encomenda(s) que serão afetadas.\"],\"F/UtGt\":\"Esta data foi cancelada. Ainda assim, pode eliminá-la para a remover permanentemente.\",\"BLZ7pX\":\"Esta data está no passado. Será criada, mas não ficará visível para os participantes nas próximas datas.\",\"7IIY0z\":\"Esta data está marcada como esgotada.\",\"bddWMP\":\"Esta data já não está disponível. Por favor, selecione outra data.\",\"RzEvf5\":\"Este evento terminou\",\"YClrdK\":\"Este evento ainda não foi publicado\",\"dFJnia\":\"Este é o nome do seu organizador que será exibido aos seus usuários.\",\"vt7jiq\":\"Esta é a única vez que o segredo de assinatura será exibido. Por favor, copie-o agora e guarde-o em segurança.\",\"L7dIM7\":\"Este link é inválido ou expirou.\",\"MR5ygV\":\"Este link já não é válido\",\"9LEqK0\":\"Este nome é visível aos utilizadores finais\",\"QdUMM9\":\"Esta sessão atingiu a capacidade máxima\",\"j5FdeA\":\"Este pedido está a ser processado.\",\"sjNPMw\":\"Este pedido foi abandonado. Pode iniciar um novo pedido a qualquer momento.\",\"OhCesD\":\"Este pedido foi cancelado. Pode iniciar um novo pedido a qualquer momento.\",\"lyD7rQ\":\"Este perfil de organizador ainda não foi publicado\",\"9b5956\":\"Esta visualização mostra como seu e-mail ficará com dados de exemplo. E-mails reais usarão valores reais.\",\"uM9Alj\":\"Este produto está destacado na página do evento\",\"RqSKdX\":\"Este produto está esgotado\",\"W12OdJ\":\"Este relatório é apenas para fins informativos. Consulte sempre um profissional de impostos antes de usar estes dados para fins contabilísticos ou fiscais. Por favor, verifique com o seu painel do Stripe pois o Hi.Events pode não ter dados históricos.\",\"0Ew0uk\":\"Este bilhete acabou de ser digitalizado. Aguarde antes de digitalizar novamente.\",\"FYXq7k\":[\"Isto afetará \",[\"loadedAffectedCount\"],\" data(s).\"],\"kvpxIU\":\"Isso será usado para notificações e comunicação com seus usuários.\",\"rhsath\":\"Isto não será visível para os clientes, mas ajuda-o a identificar o afiliado.\",\"hV6FeJ\":\"Ritmo\",\"+FjWgX\":\"Qui\",\"kkDQ8m\":\"Quinta-feira\",\"0GSPnc\":\"Design do Bilhete\",\"EZC/Cu\":\"Design do bilhete guardado com sucesso\",\"bbslmb\":\"Designer de ingressos\",\"1BPctx\":\"Bilhete para\",\"bgqf+K\":\"E-mail do portador do ingresso\",\"oR7zL3\":\"Nome do portador do ingresso\",\"HGuXjF\":\"Portadores de ingressos\",\"CMUt3Y\":\"Titulares de bilhetes\",\"awHmAT\":\"ID do bilhete\",\"6czJik\":\"Logotipo do Bilhete\",\"OkRZ4Z\":\"Nome do ingresso\",\"t79rDv\":\"Bilhete não encontrado\",\"6tmWch\":\"Ingresso ou produto\",\"1tfWrD\":\"Pré-visualização do bilhete para\",\"KnjoUA\":\"Preço do bilhete\",\"tGCY6d\":\"Preço do ingresso\",\"pGZOcL\":\"Bilhete reenviado com sucesso\",\"o02GZM\":\"A venda de bilhetes para este evento terminou\",\"8jLPgH\":\"Tipo de Bilhete\",\"X26cQf\":\"URL do ingresso\",\"8qsbZ5\":\"Bilheteria e vendas\",\"zNECqg\":\"bilhetes\",\"6GQNLE\":\"Bilhetes\",\"NRhrIB\":\"Ingressos e produtos\",\"OrWHoZ\":\"Os bilhetes são automaticamente oferecidos aos clientes em lista de espera quando há disponibilidade.\",\"EUnesn\":\"Bilhetes disponíveis\",\"AGRilS\":\"Ingressos Vendidos\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Hora\",\"dMtLDE\":\"a\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar os seus limites, contacte-nos em\",\"ecUA8p\":\"Hoje\",\"W428WC\":\"Alternar colunas\",\"BRMXj0\":\"Amanhã\",\"UBSG1X\":\"Melhores organizadores (Últimos 14 dias)\",\"3sZ0xx\":\"Total de Contas\",\"EaAPbv\":\"Valor total pago\",\"SMDzqJ\":\"Total de Participantes\",\"orBECM\":\"Total Cobrado\",\"k5CU8c\":\"Total de entradas\",\"4B7oCp\":\"Taxa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total de Usuários\",\"oJjplO\":\"Visualizações totais\",\"rBZ9pz\":\"Visitas\",\"orluER\":\"Acompanhe o crescimento e desempenho da conta por fonte de atribuição\",\"YwKzpH\":\"Rastreio e Análise\",\"uKOFO5\":\"Verdadeiro se pagamento offline\",\"9GsDR2\":\"Verdadeiro se pagamento pendente\",\"GUA0Jy\":\"Tente outra pesquisa ou filtro\",\"2P/OWN\":\"Tente ajustar os filtros para ver mais datas.\",\"ouM5IM\":\"Tentar outro e-mail\",\"3DZvE7\":\"Experimente o Hi.Events gratuitamente\",\"7P/9OY\":\"Ter\",\"vq2WxD\":\"Ter\",\"G3myU+\":\"Terça-feira\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desativar som\",\"KUOhTy\":\"Ativar som\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Escreva \\\"eliminar\\\" para confirmar\",\"XxecLm\":\"Tipo de ingresso\",\"IrVSu+\":\"Não foi possível duplicar o produto. Por favor, verifique seus dados\",\"Vx2J6x\":\"Não foi possível buscar participante\",\"h0dx5e\":\"Não foi possível entrar na lista de espera\",\"DaE0Hg\":\"Não é possível carregar os detalhes do participante.\",\"GlnD5Y\":\"Não foi possível carregar os produtos para esta data. Por favor, tente novamente.\",\"17VbmV\":\"Não é possível anular o check-in\",\"n57zCW\":\"Contas não atribuídas\",\"9uI/rE\":\"Anular\",\"b9SN9q\":\"Referência única do pedido\",\"Ef7StM\":\"Desconhecido\",\"ZBAScj\":\"Participante desconhecido\",\"MEIAzV\":\"Sem nome\",\"K6L5Mx\":\"Localização sem nome\",\"X13xGn\":\"Não confiável\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Atualizar afiliado\",\"59qHrb\":\"Atualizar capacidade\",\"Gaem9v\":\"Atualizar nome e descrição do evento\",\"7EhE4k\":\"Atualizar rótulo\",\"NPQWj8\":\"Atualizar localização\",\"75+lpR\":[\"Atualização: \",[\"subjectTitle\"],\" — alterações de programação\"],\"UOGHdA\":[\"Atualização: \",[\"subjectTitle\"],\" — hora da sessão alterada\"],\"ogoTrw\":[[\"count\"],\" data(s) atualizada(s)\"],\"dDuona\":[\"Capacidade atualizada em \",[\"count\"],\" data(s)\"],\"FT3LSc\":[\"Rótulo atualizado em \",[\"count\"],\" data(s)\"],\"8EcY1g\":[\"Localização atualizada para \",[\"count\"],\" sessão(ões)\"],\"gJQsLv\":\"Envie uma imagem de capa para seu organizador\",\"4kEGqW\":\"Envie um logo para seu organizador\",\"lnCMdg\":\"Carregar imagem\",\"29w7p6\":\"Enviando imagem...\",\"HtrFfw\":\"A URL é obrigatória\",\"vzWC39\":\"USB\",\"td5pxI\":\"Leitor USB ativo\",\"dyTklH\":\"Leitor USB em pausa\",\"OHJXlK\":\"Use <0>modelos Liquid para personalizar os seus emails\",\"g0WJMu\":\"Usar lista de todas as datas\",\"0k4cdb\":\"Usar detalhes do pedido para todos os participantes. Os nomes e e-mails dos participantes corresponderão às informações do comprador.\",\"MKK5oI\":\"Usar a lista de todas as datas, ou criar uma lista para esta data?\",\"bA31T4\":\"Usar os dados do comprador para todos os participantes\",\"rnoQsz\":\"Usado para bordas, destaques e estilo do código QR\",\"BV4L/Q\":\"Análise UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"A validar o seu número de IVA...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Número de IVA\",\"pnVh83\":\"Número de IVA\",\"CabI04\":\"O número de IVA não deve conter espaços\",\"PMhxAR\":\"O número de IVA deve começar com um código de país de 2 letras seguido de 8-15 caracteres alfanuméricos (por exemplo, PT123456789)\",\"gPgdNV\":\"Número de IVA validado com sucesso\",\"RUMiLy\":\"A validação do número de IVA falhou\",\"vqji3Y\":\"A validação do número de IVA falhou. Por favor, verifique o seu número de IVA.\",\"8dENF9\":\"IVA sobre taxa\",\"ZutOKU\":\"Taxa de IVA\",\"+KJZt3\":\"Registado para IVA\",\"Nfbg76\":\"Definições de IVA guardadas com sucesso\",\"UvYql/\":\"Configurações de IVA guardadas. Estamos a validar o seu número de IVA em segundo plano.\",\"bXn1Jz\":\"Definições de IVA atualizadas\",\"tJylUv\":\"Tratamento de IVA para Taxas da Plataforma\",\"FlGprQ\":\"Tratamento de IVA para taxas da plataforma: Empresas registadas para IVA na UE podem usar o mecanismo de autoliquidação (0% - Artigo 196 da Diretiva IVA 2006/112/CE). Empresas não registadas para IVA são cobradas com IVA irlandês de 23%.\",\"516oLj\":\"Serviço de validação de IVA temporariamente indisponível\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"IVA: não registado\",\"AdWhjZ\":\"Código de verificação\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Verificado\",\"wCKkSr\":\"Verificar email\",\"/IBv6X\":\"Verifique seu e-mail\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"A verificar...\",\"fROFIL\":\"Vietnamita\",\"p5nYkr\":\"Ver Tudo\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Ver todas as capacidades\",\"RnvnDc\":\"Ver todas as mensagens enviadas na plataforma\",\"+WFMis\":\"Visualize e descarregue relatórios de todos os seus eventos. Apenas pedidos concluídos são incluídos.\",\"c7VN/A\":\"Ver respostas\",\"SZw9tS\":\"Ver Detalhes\",\"9+84uW\":[\"Ver detalhes de \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Ver evento\",\"c6SXHN\":\"Ver página do evento\",\"n6EaWL\":\"Ver logs\",\"OaKTzt\":\"Ver mapa\",\"zNZNMs\":\"Ver mensagem\",\"67OJ7t\":\"Ver pedido\",\"tKKZn0\":\"Ver detalhes do pedido\",\"KeCXJu\":\"Veja detalhes de pedidos, emita reembolsos e reenvie confirmações.\",\"9jnAcN\":\"Ver página inicial do organizador\",\"1J/AWD\":\"Ver ingresso\",\"N9FyyW\":\"Veja, edite e exporte seus participantes registrados.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Em espera\",\"quR8Qp\":\"A aguardar pagamento\",\"KrurBH\":\"A aguardar leitura…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de Espera Ativada\",\"TwnTPy\":\"Oferta da lista de espera expirou\",\"NzIvKm\":\"Lista de espera acionada\",\"aUi/Dz\":\"Aviso: Esta é a configuração padrão do sistema. As alterações afetarão todas as contas que não tenham uma configuração específica atribuída.\",\"qeygIa\":\"Qua\",\"aT/44s\":\"Não conseguimos copiar essa ligação Stripe. Tenta de novo.\",\"RRZDED\":\"Não encontramos pedidos associados a este endereço de e-mail.\",\"2RZK9x\":\"Não conseguimos encontrar o pedido que procura. O link pode ter expirado ou os detalhes do pedido podem ter sido alterados.\",\"nefMIK\":\"Não conseguimos encontrar o bilhete que procura. O link pode ter expirado ou os detalhes do bilhete podem ter sido alterados.\",\"miysJh\":\"Não foi possível encontrar este pedido. Pode ter sido removido.\",\"ADsQ23\":\"Não conseguimos ligar ao Stripe agora. Tenta novamente em instantes.\",\"HJKdzP\":\"Ocorreu um problema ao carregar esta página. Por favor, tente novamente.\",\"jegrvW\":\"Trabalhamos com o Stripe para enviar pagamentos diretamente para a tua conta bancária.\",\"IfN2Qo\":\"Recomendamos um logotipo quadrado com dimensões mínimas de 200x200px\",\"wJzo/w\":\"Recomendamos dimensões de 400px por 400px e tamanho máximo de 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Utilizamos cookies para nos ajudar a perceber como o site é utilizado e para melhorar a sua experiência.\",\"x8rEDQ\":\"Não conseguimos validar o seu número de IVA após várias tentativas. Continuaremos a tentar em segundo plano. Por favor, volte mais tarde.\",\"iy+M+c\":[\"Notificá-lo-emos por e-mail se ficar disponível um lugar para \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Após guardar, abriremos um compositor de mensagens com um modelo pré-preenchido. Você revê e envia — nada é enviado automaticamente.\",\"q1BizZ\":\"Enviaremos os seus bilhetes para este e-mail\",\"ZOmUYW\":\"Validaremos o seu número de IVA em segundo plano. Se houver algum problema, informaremos.\",\"LKjHr4\":[\"Fizemos alterações à programação de \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" afetando \",[\"affectedCount\"],\" sessão(ões).\"],\"Fq/Nx7\":\"Enviámos um código de verificação de 5 dígitos para:\",\"GdWB+V\":\"Webhook criado com sucesso\",\"2X4ecw\":\"Webhook excluído com sucesso\",\"ndBv0v\":\"Integrações de webhook\",\"CThMKa\":\"Logs do Webhook\",\"I0adYQ\":\"Segredo de assinatura do Webhook\",\"nuh/Wq\":\"URL do Webhook\",\"8BMPMe\":\"O webhook não enviará notificações\",\"FSaY52\":\"O webhook enviará notificações\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Site\",\"0f7U0k\":\"Qua\",\"VAcXNz\":\"Quarta-feira\",\"64X6l4\":\"semana\",\"4XSc4l\":\"Semanal\",\"IAUiSh\":\"semanas\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bem-vindo de volta\",\"QDWsl9\":[\"Bem-vindo ao \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bem-vindo ao \",[\"0\"],\", aqui está uma lista de todos os seus eventos\"],\"DDbx7K\":\"Bem-estar\",\"ywRaYa\":\"A que horas?\",\"FaSXqR\":\"Que tipo de evento?\",\"0WyYF4\":\"O que vê o pessoal sem sessão\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando um check-in é excluído\",\"RPe6bE\":\"Quando uma data é cancelada num evento recorrente\",\"Gmd0hv\":\"Quando um novo participante é criado\",\"zyIyPe\":\"Quando um novo evento é criado\",\"Lc18qn\":\"Quando um novo pedido é criado\",\"dfkQIO\":\"Quando um novo produto é criado\",\"8OhzyY\":\"Quando um produto é excluído\",\"tRXdQ9\":\"Quando um produto é atualizado\",\"9L9/28\":\"Quando um produto esgota, os clientes podem juntar-se a uma lista de espera para serem notificados quando houver vagas disponíveis.\",\"Q7CWxp\":\"Quando um participante é cancelado\",\"IuUoyV\":\"Quando um participante faz check-in\",\"nBVOd7\":\"Quando um participante é atualizado\",\"t7cuMp\":\"Quando um evento é arquivado\",\"gtoSzE\":\"Quando um evento é atualizado\",\"ny2r8d\":\"Quando um pedido é cancelado\",\"c9RYbv\":\"Quando um pedido é marcado como pago\",\"ejMDw1\":\"Quando um pedido é reembolsado\",\"fVPt0F\":\"Quando um pedido é atualizado\",\"bcYlvb\":\"Quando fecha o check-in\",\"XIG669\":\"Quando abre o check-in\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"Quando ativado, novos eventos permitirão que os participantes gerenciem seus próprios detalhes de bilhete através de um link seguro. Isso pode ser substituído por evento.\",\"blXLKj\":\"Quando ativado, novos eventos exibirão uma caixa de seleção de opt-in de marketing durante o checkout. Isso pode ser substituído por evento.\",\"Kj0Txn\":\"Quando ativado, não serão cobradas taxas de aplicação nas transações Stripe Connect. Use isto para países onde as taxas de aplicação não são suportadas.\",\"tMqezN\":\"Se os reembolsos estão a ser processados\",\"uchB0M\":\"Pré-visualização do widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Escreva sua mensagem aqui...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"ano\",\"zkWmBh\":\"Anual\",\"+BGee5\":\"anos\",\"X/azM1\":\"Sim - Tenho um número de registo de IVA da UE válido\",\"Tz5oXG\":\"Sim, cancelar o meu pedido\",\"QlSZU0\":[\"Está a personificar <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Está a emitir um reembolso parcial. O cliente será reembolsado em \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Você pode configurar taxas de serviço adicionais e impostos nas configurações da sua conta.\",\"rj3A7+\":\"Pode substituir isto para datas individuais mais tarde.\",\"paWwQ0\":\"Ainda pode oferecer bilhetes manualmente, se necessário.\",\"jTDzpA\":\"Não pode arquivar o último organizador ativo da sua conta.\",\"5VGIlq\":\"Atingiu o seu limite de mensagens.\",\"casL1O\":\"Você adicionou taxas e impostos a um produto gratuito. Deseja removê-los?\",\"9jJNZY\":\"Tem de reconhecer as suas responsabilidades antes de guardar\",\"pCLes8\":\"Deve concordar em receber mensagens\",\"FVTVBy\":\"Você precisa verificar seu e-mail antes de atualizar o status do organizador.\",\"ze4bi/\":\"Tem de criar pelo menos uma sessão antes de poder adicionar participantes a este evento recorrente.\",\"w65ZgF\":\"Precisa de verificar o email da sua conta antes de poder modificar modelos de email.\",\"FRl8Jv\":\"Você precisa verificar o e-mail da sua conta antes de poder enviar mensagens.\",\"88cUW+\":\"Você recebe\",\"O6/3cu\":\"Poderá configurar datas, programações e regras de recorrência no próximo passo.\",\"zKAheG\":\"Está a alterar as horas das sessões\",\"MNFIxz\":[\"Vai participar em \",[\"0\"],\"!\"],\"qGZz0m\":\"Está na lista de espera!\",\"/5HL6k\":\"Foi-lhe oferecido um lugar!\",\"gbjFFH\":\"Alterou a hora da sessão\",\"p/Sa0j\":\"A sua conta tem limites de mensagens. Para aumentar os seus limites, contacte-nos em\",\"x/xjzn\":\"Os seus afiliados foram exportados com sucesso.\",\"TF37u6\":\"Seus participantes foram exportados com sucesso.\",\"79lXGw\":\"A sua lista de check-in foi criada com sucesso. Partilhe a ligação abaixo com a sua equipa de check-in.\",\"BnlG9U\":\"O seu pedido atual será perdido.\",\"nBqgQb\":\"Seu e-mail\",\"GG1fRP\":\"O seu evento está online!\",\"ifRqmm\":\"A sua mensagem foi enviada com sucesso!\",\"0/+Nn9\":\"As suas mensagens aparecerão aqui\",\"/Rj5P4\":\"Seu nome\",\"PFjJxY\":\"A sua nova senha deve ter pelo menos 8 caracteres.\",\"gzrCuN\":\"Os detalhes do seu pedido foram atualizados. Foi enviado um e-mail de confirmação para o novo endereço de e-mail.\",\"naQW82\":\"O seu pedido foi cancelado.\",\"bhlHm/\":\"O seu pedido aguarda pagamento\",\"XeNum6\":\"Seus pedidos foram exportados com sucesso.\",\"Xd1R1a\":\"Endereço do seu organizador\",\"WWYHKD\":\"O seu pagamento está protegido com encriptação de nível bancário\",\"5b3QLi\":\"Seu plano\",\"N4Zkqc\":\"O seu filtro de datas guardado já não está disponível — a mostrar todas as datas.\",\"FNO5uZ\":\"O seu bilhete continua válido — não é necessária qualquer ação a menos que a nova hora não lhe seja conveniente. Por favor, responda a este e-mail se tiver alguma dúvida.\",\"CnZ3Ou\":\"Os seus bilhetes foram confirmados.\",\"EmFsMZ\":\"O seu número de IVA está na fila para validação\",\"QBlhh4\":\"O seu número de IVA será validado quando guardar\",\"fT9VLt\":\"A sua oferta da lista de espera expirou e não foi possível concluir a sua encomenda. Por favor, volte a juntar-se à lista de espera para ser notificado quando ficarem disponíveis mais lugares.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/pt.po b/frontend/src/locales/pt.po index 97ed799233..08e92d4b56 100644 --- a/frontend/src/locales/pt.po +++ b/frontend/src/locales/pt.po @@ -60,7 +60,7 @@ msgstr "{0} <0>desmarcado com sucesso" msgid "{0} Active Webhooks" msgstr "{0} webhooks ativos" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} disponível" @@ -78,7 +78,7 @@ msgstr "{0} restante" msgid "{0} logo" msgstr "Logo {0}" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{0} de {1} lugares ocupados." @@ -90,7 +90,7 @@ msgstr "{0} organizadores" msgid "{0} spots left" msgstr "{0} lugares restantes" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} bilhetes" @@ -114,7 +114,7 @@ msgstr "Logo {appName}" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} participantes estão registados para esta sessão." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} de {totalCount} disponíveis" @@ -122,7 +122,7 @@ msgstr "{availableCount} de {totalCount} disponíveis" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} com check-in" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} eventos" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} horas, {minutes} minutos e {seconds} segundos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "{loadedAffectedAttendees} participantes estão registados nas sessões afetadas." @@ -163,11 +163,11 @@ msgstr "{minutos} minutos e {segundos} segundos" msgid "{organizerName}'s first event" msgstr "Primeiro evento de {organizerName}" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} tipos de bilhetes" @@ -230,7 +230,7 @@ msgstr "0 minutos e 0 segundos" msgid "1 Active Webhook" msgstr "1 webhook ativo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "1 participante está registado nas sessões afetadas." @@ -238,35 +238,35 @@ msgstr "1 participante está registado nas sessões afetadas." msgid "1 attendee is registered for this session." msgstr "1 participante está registado para esta sessão." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 dia após a data de término" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 dia após a data de início" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 dia antes do evento" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 hora antes do evento" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 bilhete" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 tipo de bilhete" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 semana antes do evento" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "Um aviso de cancelamento foi enviado para" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "uma alteração de duração" @@ -321,7 +321,7 @@ msgstr "Uma entrada suspensa permite apenas uma seleção" msgid "A fee, like a booking fee or a service fee" msgstr "Uma taxa, como uma taxa de reserva ou uma taxa de serviço" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "Um código promocional sem desconto pode ser usado para revelar produtos msgid "A Radio option has multiple options but only one can be selected." msgstr "Uma opção Rádio tem múltiplas opções, mas apenas uma pode ser selecionada." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "uma alteração das horas de início/fim" @@ -465,7 +465,7 @@ msgstr "Conta atualizada com sucesso" msgid "Accounts" msgstr "Contas" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Ação Necessária: Informações de IVA Necessárias" @@ -493,10 +493,10 @@ msgstr "Data de ativação" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Métodos de pagamento ativos" msgid "Activity" msgstr "Atividade" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Adicionar uma data" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "Adicione quaisquer notas sobre o pedido..." msgid "Add at least one time" msgstr "Adicione pelo menos uma hora" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Adicione os dados de ligação para o evento online." @@ -572,15 +576,19 @@ msgstr "Adicionar Data" msgid "Add Dates" msgstr "Adicionar Datas" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Adicionar descrição" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "Adicionar pergunta" msgid "Add Tax or Fee" msgstr "Adicionar imposto ou taxa" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Adicionar este participante mesmo assim (ignorar capacidade)" @@ -634,8 +642,8 @@ msgstr "Adicionar este participante mesmo assim (ignorar capacidade)" msgid "Add this event to your calendar" msgstr "Adicione este evento ao seu calendário" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Adicionar ingressos" @@ -649,7 +657,7 @@ msgstr "Adicionar nível" msgid "Add to Calendar" msgstr "Adicionar ao calendário" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Adicione píxeis de rastreio às páginas públicas dos eventos e à página inicial do organizador. Será mostrado um banner de consentimento de cookies aos visitantes quando o rastreio estiver ativo." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Endereço Linha 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Endereço Linha 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Endereço linha 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "endereço linha 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Administrador" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Acesso de administrador necessário" @@ -725,7 +733,7 @@ msgstr "Acesso de administrador necessário" msgid "Admin Dashboard" msgstr "Painel de Administração" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Os usuários administradores têm acesso total aos eventos e configurações da conta." @@ -776,7 +784,7 @@ msgstr "Afiliados exportados" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Os afiliados ajudam-no a rastrear vendas geradas por parceiros e influenciadores. Crie códigos de afiliado e partilhe-os para monitorizar o desempenho." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "todas" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "Todos os eventos arquivados" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Todos os participantes" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "Todos os participantes das sessões selecionadas" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Todos os participantes deste evento" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Todos os participantes desta sessão" @@ -838,12 +846,12 @@ msgstr "Todos os trabalhos falhados eliminados" msgid "All jobs queued for retry" msgstr "Todos os trabalhos em fila para nova tentativa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Todas as datas correspondentes" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Todas as sessões" @@ -897,7 +905,7 @@ msgstr "Já tem uma conta? <0>{0}" msgid "Already in" msgstr "Já dentro" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Já reembolsado" @@ -905,11 +913,11 @@ msgstr "Já reembolsado" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Já usas o Stripe noutro organizador? Reutiliza essa ligação." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Também cancelar este pedido" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Também reembolsar este pedido" @@ -932,7 +940,7 @@ msgstr "Quantia" msgid "Amount Paid" msgstr "Valor pago" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Valor pago ({0})" @@ -952,7 +960,7 @@ msgstr "Ocorreu um erro ao carregar a página" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Uma mensagem opcional para exibir no produto destacado, por exemplo \"A vender rapidamente 🔥\" ou \"Melhor valor\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Um erro inesperado ocorreu." @@ -988,7 +996,7 @@ msgstr "Quaisquer perguntas dos portadores de produtos serão enviadas para este msgid "Appearance" msgstr "Aparência" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "aplicado" @@ -996,7 +1004,7 @@ msgstr "aplicado" msgid "Applies to {0} products" msgstr "Aplica-se a {0} produtos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Aplica-se às {0} datas não canceladas atualmente carregadas nesta página." @@ -1008,7 +1016,7 @@ msgstr "Aplica-se a 1 produto" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Aplica-se a quem abre o link sem sessão iniciada. Membros autenticados veem sempre tudo." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Aplica-se a todas as {0} datas não canceladas deste evento — incluindo datas não carregadas no momento." @@ -1016,11 +1024,11 @@ msgstr "Aplica-se a todas as {0} datas não canceladas deste evento — incluind msgid "Apply" msgstr "Aplicar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Aplicar Alterações" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Aplicar código promocional" @@ -1028,7 +1036,7 @@ msgstr "Aplicar código promocional" msgid "Apply this {type} to all new products" msgstr "Aplicar este {type} a todos os novos produtos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Aplicar a" @@ -1044,36 +1052,35 @@ msgstr "Aprovar mensagem" msgid "April" msgstr "Abril" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Arquivar" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Arquivar evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Arquivar evento" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Arquivar organizador" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Arquive este evento para o ocultar do público. Pode restaurá-lo mais tarde." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Arquive este organizador. Isso também arquivará todos os eventos pertencentes a este organizador." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Arquivado" @@ -1085,15 +1092,15 @@ msgstr "Organizadores arquivados" msgid "Are you sure you want to activate this attendee?" msgstr "Tem certeza de que deseja ativar este participante?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Tem certeza de que deseja arquivar este evento?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Tem a certeza de que pretende arquivar este evento? Deixará de estar visível para o público." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Tem a certeza de que pretende arquivar este organizador? Isso também arquivará todos os eventos pertencentes a este organizador." @@ -1123,7 +1130,7 @@ msgstr "Tem certeza que deseja eliminar todos os trabalhos falhados?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Tem a certeza de que deseja eliminar este afiliado? Esta ação não pode ser anulada." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Tem certeza de que deseja excluir esta configuração? Isso pode afetar as contas que a utilizam." @@ -1137,11 +1144,11 @@ msgstr "Tem a certeza de que pretende eliminar esta data? Esta ação não pode msgid "Are you sure you want to delete this promo code?" msgstr "Tem certeza de que deseja excluir este código promocional?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo padrão." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Tem certeza de que deseja excluir este modelo? Esta ação não pode ser desfeita e os e-mails voltarão ao modelo do organizador ou padrão." @@ -1150,17 +1157,17 @@ msgstr "Tem certeza de que deseja excluir este modelo? Esta ação não pode ser msgid "Are you sure you want to delete this webhook?" msgstr "Tem certeza de que deseja excluir este webhook?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Tem a certeza de que quer sair?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Tem certeza de que deseja fazer o rascunho deste evento? Isso tornará o evento invisível para o público" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Tem certeza de que deseja tornar este evento público? Isso tornará o evento visível ao público" @@ -1200,15 +1207,15 @@ msgstr "Tem a certeza de que pretende reenviar a confirmação da encomenda para msgid "Are you sure you want to resend the ticket to {0}?" msgstr "Tem a certeza de que pretende reenviar o bilhete para {0}?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Tem a certeza de que pretende restaurar este evento?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Tem certeza de que deseja restaurar este evento? Ele será restaurado como um evento rascunho." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Tem a certeza de que pretende restaurar este organizador?" @@ -1229,7 +1236,7 @@ msgstr "Tem certeza de que deseja excluir esta Atribuição de Capacidade?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "Tem certeza de que deseja excluir esta lista de registro?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "Está registado para IVA na UE?" @@ -1237,7 +1244,7 @@ msgstr "Está registado para IVA na UE?" msgid "Art" msgstr "Arte" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "Como a sua empresa está sediada na Irlanda, o IVA irlandês de 23% aplica-se automaticamente a todas as taxas da plataforma." @@ -1270,7 +1277,7 @@ msgstr "Nível atribuído" msgid "At least one event type must be selected" msgstr "Pelo menos um tipo de evento deve ser selecionado" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Tentativas" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Presença e taxas de registo em todos os eventos" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "participante" @@ -1287,7 +1293,7 @@ msgstr "participante" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Participante" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Status do Participante" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Bilhete do Participante" @@ -1364,13 +1370,13 @@ msgstr "O bilhete do participante não está incluído nesta lista" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "participantes" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "participantes" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Participantes" @@ -1393,16 +1399,16 @@ msgstr "participantes com check-in" msgid "Attendees Exported" msgstr "Participantes exportados" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Participantes registados" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Participantes Registrados" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Participantes com um ingresso específico" @@ -1454,7 +1460,7 @@ msgstr "Redimensionar automaticamente a altura do widget com base no conteúdo. msgid "Available" msgstr "Disponível" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Disponível para reembolso" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "Pendente" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "Aguardando pagamento offline" @@ -1482,7 +1488,7 @@ msgstr "Pagamento pendente" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "Aguardando pagamento" @@ -1513,14 +1519,14 @@ msgstr "Voltar para Contas" msgid "Back to calendar" msgstr "Voltar ao calendário" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Voltar ao evento" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Voltar à página do evento" @@ -1548,7 +1554,7 @@ msgstr "Cor de fundo" msgid "Background Type" msgstr "Tipo de plano de fundo" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "Com base no período de venda global acima, não por data" msgid "Basic Information" msgstr "Informações básicas" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Endereço de cobrança" @@ -1599,11 +1605,11 @@ msgstr "Proteção contra fraude integrada" msgid "Bulk Edit" msgstr "Edição em Massa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Editar Datas em Massa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "Falha na atualização em massa." @@ -1635,11 +1641,11 @@ msgstr "O comprador paga" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Os compradores veem um preço limpo. A taxa da plataforma é deduzida do seu pagamento." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "Ao adicionar píxeis de rastreio, reconhece que você e esta plataforma são responsáveis conjuntos pelos dados recolhidos. É da sua responsabilidade garantir que tem uma base legal para este tratamento ao abrigo das leis de privacidade aplicáveis (RGPD, CCPA, etc.)." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Ao continuar, concorda com os <0>Termos de Serviço de {0}" @@ -1660,7 +1666,7 @@ msgstr "Ao se registrar, você concorda com nossos <0>Termos de Serviço e < msgid "By ticket type" msgstr "Por tipo de bilhete" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Ignorar taxas de aplicação" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "Check-in indisponível" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Cancelar" @@ -1729,7 +1735,7 @@ msgstr "Cancelar" msgid "Cancel {count} date(s)" msgstr "Cancelar {count} data(s)" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Cancelar todos os produtos e devolvê-los ao conjunto disponível" @@ -1743,7 +1749,7 @@ msgstr "Cancelar todos os produtos e devolvê-los ao conjunto disponível" msgid "Cancel Date" msgstr "Cancelar Data" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "Cancelar alteração de e-mail" @@ -1751,7 +1757,7 @@ msgstr "Cancelar alteração de e-mail" msgid "Cancel order" msgstr "Cancelar pedido" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Cancelar pedido" @@ -1759,7 +1765,7 @@ msgstr "Cancelar pedido" msgid "Cancel Order {0}" msgstr "Cancelar pedido {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "Cancelar irá cancelar todos os participantes associados a este pedido e devolver os bilhetes ao conjunto disponível." @@ -1781,7 +1787,7 @@ msgstr "Cancelamento" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "Cancelado" msgid "Cancelled {0} date(s)" msgstr "{0} data(s) cancelada(s)" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "Não é possível excluir a configuração padrão do sistema" @@ -1825,7 +1831,7 @@ msgstr "Gestão de capacidade" msgid "Capacity must be 0 or greater" msgstr "A capacidade deve ser 0 ou superior" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "atualizações de capacidade" @@ -1833,7 +1839,7 @@ msgstr "atualizações de capacidade" msgid "Capacity Used" msgstr "Capacidade Utilizada" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "As categorias permitem agrupar produtos. Por exemplo, você pode ter uma categoria para \"Ingressos\" e outra para \"Mercadorias\"." @@ -1854,19 +1860,19 @@ msgstr "Categoria" msgid "Category Created Successfully" msgstr "Categoria Criada com Sucesso" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Alterar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Alterar duração" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Alterar a senha" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Alterar o limite de participantes" @@ -1874,7 +1880,7 @@ msgstr "Alterar o limite de participantes" msgid "Change waitlist settings" msgstr "Alterar configurações da lista de espera" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "Duração alterada em {count} data(s)" @@ -1891,15 +1897,15 @@ msgstr "Caridade" msgid "Check in" msgstr "Fazer check-in" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Fazer check-in de {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Fazer check-in e marcar pedido como pago" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Apenas fazer check-in" @@ -1913,7 +1919,7 @@ msgstr "Check-out" msgid "Check out this event: {0}" msgstr "Veja este evento: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Confira este evento!" @@ -1994,7 +2000,7 @@ msgstr "Listas de Registo" msgid "Check-In Lists" msgstr "Listas de Registro" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Navegação de check-in" @@ -2074,11 +2080,11 @@ msgstr "Escolha uma cor para o seu plano de fundo" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Escolher uma ação diferente" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Escolha uma localização guardada para aplicar." @@ -2108,12 +2114,12 @@ msgstr "Escolha quem paga a taxa da plataforma. Isso não afeta as taxas adicion #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Cidade" @@ -2122,7 +2128,7 @@ msgstr "Cidade" msgid "Clear" msgstr "Limpar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Limpar localização — voltar à predefinição do evento" @@ -2134,7 +2140,7 @@ msgstr "Limpar pesquisa" msgid "Clear Search Text" msgstr "Limpar texto de pesquisa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "Limpar remove qualquer substituição por sessão. As sessões afetadas voltarão à localização predefinida do evento." @@ -2154,7 +2160,7 @@ msgstr "Clique para reabrir para novas vendas" msgid "Click to view notes" msgstr "Clique para ver as notas" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "fechar" @@ -2162,8 +2168,8 @@ msgstr "fechar" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Fechar" @@ -2259,7 +2265,7 @@ msgstr "Em breve" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Palavras-chave separadas por vírgulas que descrevem o evento. Eles serão usados pelos mecanismos de pesquisa para ajudar a categorizar e indexar o evento" -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Preferências de comunicação" @@ -2267,11 +2273,11 @@ msgstr "Preferências de comunicação" msgid "complete" msgstr "completo" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Ordem completa" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Concluir pagamento" @@ -2280,11 +2286,11 @@ msgstr "Concluir pagamento" msgid "Complete Stripe setup" msgstr "Concluir a configuração do Stripe" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Conclua a sua encomenda para garantir os seus bilhetes. Esta oferta é limitada no tempo, por isso não espere demasiado." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Conclua o pagamento para garantir os seus bilhetes." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Complete o seu perfil para se juntar à equipa." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Concluído" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Pedidos concluídos" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Pedidos concluídos" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Compor" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Configuração atribuída" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Configuração criada com sucesso" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Configuração excluída com sucesso" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "Os nomes de configuração são visíveis para os usuários finais. As taxas fixas serão convertidas para a moeda do pedido na taxa de câmbio atual." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Configuração atualizada com sucesso" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Configurações" @@ -2377,10 +2383,10 @@ msgstr "Desconto configurado" msgid "Confirm" msgstr "confirme" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "Confirmar endereço de e-mail" @@ -2393,7 +2399,7 @@ msgstr "Confirmar alteração de e-mail" msgid "Confirm new password" msgstr "Confirmar nova senha" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Confirme a nova senha" @@ -2428,16 +2434,16 @@ msgstr "Confirmando endereço de e-mail..." msgid "Congratulations! Your event is now visible to the public." msgstr "Parabéns! O seu evento está agora visível para o público." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Conectar faixa" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Conecte o Stripe para ativar a edição de modelos de email" @@ -2445,7 +2451,7 @@ msgstr "Conecte o Stripe para ativar a edição de modelos de email" msgid "Connect Stripe to enable messaging" msgstr "Conecte o Stripe para ativar mensagens" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Conecte-se com Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "E-mail de contato para suporte" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Continuar" @@ -2508,7 +2514,7 @@ msgstr "Texto do botão Continuar" msgid "Continue Setup" msgstr "Continuar configuração" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Continuar para o pagamento" @@ -2520,7 +2526,7 @@ msgstr "Continuar para a criação do evento" msgid "Continue to next step" msgstr "Continuar para o próximo passo" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Continuar para pagamento" @@ -2545,7 +2551,7 @@ msgstr "Controle quem entra e quando" msgid "Copied" msgstr "Copiado" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Copiado de cima" @@ -2591,7 +2597,7 @@ msgstr "Copiar código" msgid "Copy customer link" msgstr "Copiar link do cliente" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Copiar detalhes para o primeiro participante" @@ -2609,7 +2615,7 @@ msgstr "Copiar link" msgid "Copy Link" msgstr "Link de cópia" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Copiar meus dados para:" @@ -2630,7 +2636,7 @@ msgstr "Copiar URL" msgid "Could not delete location" msgstr "Não foi possível eliminar a localização" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Não foi possível preparar a atualização em massa." @@ -2652,13 +2658,17 @@ msgstr "Não foi possível guardar a data" msgid "Could not save location" msgstr "Não foi possível guardar a localização" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "País" @@ -2671,6 +2681,10 @@ msgstr "Cobrir" msgid "Cover Image" msgstr "Imagem de capa" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "A imagem de capa será exibida no topo da sua página de evento" @@ -2743,7 +2757,7 @@ msgstr "criar um organizador" msgid "Create and configure tickets and merchandise for sale." msgstr "Crie e configure ingressos e mercadorias para venda." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Criar participante" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Criar categoria" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Criar Categoria" @@ -2771,17 +2785,17 @@ msgstr "Criar Categoria" msgid "Create Check-In List" msgstr "Criar Lista de Registro" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Criar Configuração" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Criar modelos de e-mail personalizados para este evento que substituem os padrões do organizador" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Criar modelo personalizado" @@ -2793,16 +2807,16 @@ msgstr "Criar Data" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Criar Evento" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Criar para esta data" @@ -2849,7 +2863,7 @@ msgstr "Criar imposto ou taxa" msgid "Create Ticket or Product" msgstr "Criar ingresso ou produto" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "Crie seu evento" msgid "Create your first event" msgstr "Crie o seu primeiro evento" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "O rótulo CTA é obrigatório" msgid "Currency" msgstr "Moeda" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Senha atual" @@ -2931,7 +2949,7 @@ msgstr "Atualmente disponível para compra" msgid "Custom branding" msgstr "Marca personalizada" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Data e hora personalizadas" @@ -2957,7 +2975,7 @@ msgstr "Perguntas personalizadas" msgid "Custom Range" msgstr "Intervalo personalizado" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Modelo personalizado" @@ -2970,7 +2988,7 @@ msgstr "Cliente" msgid "Customer link copied to clipboard" msgstr "Link do cliente copiado para a área de transferência" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "O cliente receberá um email confirmando o reembolso" @@ -2990,11 +3008,15 @@ msgstr "Sobrenome do cliente" msgid "Customers" msgstr "Clientes" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Personalize as configurações de e-mail e notificação deste evento" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Personalize os e-mails enviados aos seus clientes usando modelos Liquid. Estes modelos serão usados como padrões para todos os eventos em sua organização." @@ -3027,6 +3049,10 @@ msgstr "Personalize o texto exibido no botão continuar" msgid "Customize your email template using Liquid templating" msgstr "Personalize seu modelo de e-mail usando modelos Liquid" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Personalize a aparência da sua página de organizador" @@ -3079,7 +3105,7 @@ msgstr "Escuro" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Dashboard" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Data e hora" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Cancelamento de Data" @@ -3208,12 +3234,12 @@ msgstr "Capacidade predefinida por data" msgid "Default Fee Handling" msgstr "Gestão de taxas padrão" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "O modelo padrão será usado" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "eliminar" @@ -3267,8 +3293,8 @@ msgstr "Excluir código" msgid "Delete Date" msgstr "Eliminar Data" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Eliminar evento" @@ -3285,8 +3311,8 @@ msgstr "Eliminar trabalho" msgid "Delete location" msgstr "Eliminar localização" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Eliminar organizador" @@ -3294,7 +3320,7 @@ msgstr "Eliminar organizador" msgid "Delete Permanently" msgstr "Eliminar Permanentemente" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Excluir modelo" @@ -3319,7 +3345,7 @@ msgstr "{0} data(s) eliminada(s)" msgid "Description" msgstr "Descrição" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "Desconto em {0}" msgid "Discount Type" msgstr "Tipo de desconto" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Dispensar" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Dispensar esta mensagem" @@ -3441,7 +3467,7 @@ msgstr "Baixar CSV" msgid "Download invoice" msgstr "Baixar fatura" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Baixar fatura" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Baixe relatórios de vendas, participantes e financeiros para todos os pedidos concluídos." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "A baixar fatura" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Rascunho" @@ -3469,7 +3494,7 @@ msgstr "Rascunho" msgid "Dropdown selection" msgstr "Seleção suspensa" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "Devido ao alto risco de spam, deve conectar uma conta Stripe antes de poder modificar modelos de email. Isto é para garantir que todos os organizadores de eventos sejam verificados e responsáveis." @@ -3490,7 +3515,7 @@ msgstr "Duplicar" msgid "Duplicate Date" msgstr "Duplicar Data" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Duplicar evento" @@ -3508,7 +3533,7 @@ msgstr "Duplicar Opções" msgid "Duplicate Product" msgstr "Duplicar produto" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "A duração deve ser de, pelo menos, 1 minuto." @@ -3520,7 +3545,7 @@ msgstr "Holandês" msgid "e.g. 180 (3 hours)" msgstr "ex. 180 (3 horas)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "ex.: Sessão da Manhã" msgid "e.g., Get Tickets, Register Now" msgstr "ex.: Comprar ingressos, Registrar-se agora" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "por exemplo, Atualização importante sobre os seus bilhetes" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "por exemplo, Standard, Premium, Enterprise" @@ -3542,7 +3567,7 @@ msgstr "por exemplo, Standard, Premium, Enterprise" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Cada pessoa receberá um e-mail com um lugar reservado para concluir a sua compra." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Mais cedo" @@ -3611,7 +3636,7 @@ msgstr "Editar Lista de Registro" msgid "Edit Code" msgstr "Editar código" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Editar Configuração" @@ -3659,8 +3684,8 @@ msgstr "Editar pergunta" msgid "Edit user" msgstr "Editar usuário" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Editar usuário" @@ -3708,7 +3733,7 @@ msgstr "Listas de Check-In Elegíveis" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Listas de Check-In Elegíveis" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "E-mail" @@ -3743,10 +3768,10 @@ msgstr "E-mail e Modelos" msgid "Email address" msgstr "Endereço de email" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "Endereço de email" @@ -3755,8 +3780,8 @@ msgstr "Endereço de email" msgid "Email address copied to clipboard" msgstr "Endereço de email copiado para a área de transferência" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "Os endereços de e-mail não coincidem" @@ -3764,21 +3789,21 @@ msgstr "Os endereços de e-mail não coincidem" msgid "Email Body" msgstr "Corpo do e-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "Alteração de e-mail cancelada com sucesso" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "Alteração de e-mail pendente" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "Confirmação de e-mail reenviada" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "Confirmação de e-mail reenviada com sucesso" @@ -3792,7 +3817,7 @@ msgstr "Mensagem de rodapé do e-mail" msgid "Email is required" msgstr "O email é obrigatório" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "E-mail não verificado" @@ -3800,7 +3825,7 @@ msgstr "E-mail não verificado" msgid "Email Preview" msgstr "Visualização do e-mail" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "Modelos de e-mail" @@ -3809,6 +3834,10 @@ msgstr "Modelos de e-mail" msgid "Email Verification Required" msgstr "Verificação de e-mail necessária" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "Email verificado com sucesso!" @@ -3897,12 +3926,11 @@ msgstr "Hora de fim (opcional)" msgid "End time of the occurrence" msgstr "Hora de fim da sessão" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Terminou" @@ -3920,11 +3948,11 @@ msgstr "Termina {0}" msgid "English" msgstr "Inglês" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Introduza um valor de capacidade ou escolha ilimitado." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Introduza um rótulo ou escolha removê-lo." @@ -3932,7 +3960,7 @@ msgstr "Introduza um rótulo ou escolha removê-lo." msgid "Enter a subject and body to see the preview" msgstr "Digite um assunto e corpo para ver a visualização" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Introduza um intervalo de tempo para deslocar." @@ -3949,11 +3977,11 @@ msgstr "Introduza o email do afiliado (opcional)" msgid "Enter affiliate name" msgstr "Introduza o nome do afiliado" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Insira um valor sem impostos e taxas." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Introduzir capacidade" @@ -3998,7 +4026,7 @@ msgstr "Introduza o seu email e enviaremos instruções para redefinir a sua sen msgid "Enter your name" msgstr "Digite seu nome" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Introduza o seu número de IVA incluindo o código do país, sem espaços (por exemplo, PT123456789, ES12345678A)" @@ -4012,7 +4040,7 @@ msgstr "As inscrições aparecerão aqui quando os clientes se juntarem à lista #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Erro" @@ -4074,7 +4102,7 @@ msgstr "Evento" msgid "Event Archived" msgstr "Evento Arquivado" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Evento arquivado com sucesso" @@ -4086,7 +4114,7 @@ msgstr "Categoria do evento" msgid "Event Cover Image" msgstr "Imagem de capa do evento" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4094,7 +4122,7 @@ msgstr "" msgid "Event Created" msgstr "Evento Criado" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Modelo personalizado do evento" @@ -4113,7 +4141,7 @@ msgstr "Data do Evento" msgid "Event Defaults" msgstr "Padrões de eventos" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Evento eliminado com sucesso" @@ -4145,10 +4173,14 @@ msgstr "Evento duplicado com sucesso" msgid "Event Full Address" msgstr "Endereço Completo do Evento" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Página inicial do evento" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Local do evento" @@ -4188,7 +4220,7 @@ msgstr "Nome do organizador do evento" msgid "Event Page" msgstr "Página do Evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Evento restaurado com sucesso" @@ -4197,17 +4229,17 @@ msgstr "Evento restaurado com sucesso" msgid "Event Settings" msgstr "Configurações do evento" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Falha na atualização do status do evento. Por favor, tente novamente mais tarde" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Status do evento atualizado" @@ -4240,7 +4272,7 @@ msgstr "Título do evento" msgid "Event Too New" msgstr "Evento muito recente" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Totais do evento" @@ -4405,7 +4437,7 @@ msgstr "Falhou em" msgid "Failed Jobs" msgstr "Trabalhos falhados" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "Falha ao abandonar o pedido. Por favor, tente novamente." @@ -4439,7 +4471,7 @@ msgstr "Falha ao cancelar pedido" msgid "Failed to create affiliate" msgstr "Falha ao criar afiliado" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Falha ao criar configuração" @@ -4447,12 +4479,12 @@ msgstr "Falha ao criar configuração" msgid "Failed to create schedule" msgstr "Falha ao criar programação" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Falha ao criar modelo" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Falha ao excluir configuração" @@ -4470,7 +4502,7 @@ msgstr "Falha ao eliminar a data. Poderá ter encomendas associadas." msgid "Failed to delete dates" msgstr "Falha ao eliminar datas" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Falha ao eliminar o evento" @@ -4482,7 +4514,7 @@ msgstr "Falha ao eliminar trabalho" msgid "Failed to delete jobs" msgstr "Falha ao eliminar trabalhos" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Falha ao eliminar o organizador" @@ -4490,13 +4522,13 @@ msgstr "Falha ao eliminar o organizador" msgid "Failed to delete question" msgstr "Falha ao excluir pergunta" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Falha ao excluir modelo" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Falha ao baixar a fatura. Por favor, tente novamente." @@ -4594,14 +4626,14 @@ msgstr "Falha ao guardar substituição de preço" msgid "Failed to save product settings" msgstr "Falha ao guardar definições do produto" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Falha ao salvar modelo" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Falha ao guardar as definições de IVA. Por favor, tente novamente." @@ -4639,11 +4671,11 @@ msgstr "Falha ao atualizar a resposta." msgid "Failed to update attendee" msgstr "Falha ao atualizar participante" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Falha ao atualizar configuração" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Falha ao atualizar o estado do evento" @@ -4655,7 +4687,7 @@ msgstr "Falha ao atualizar nível de mensagens" msgid "Failed to update order" msgstr "Falha ao atualizar pedido" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Falha ao atualizar o estado do organizador" @@ -4701,7 +4733,7 @@ msgstr "Fevereiro" msgid "Fee" msgstr "Taxa" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Moeda da taxa" @@ -4720,7 +4752,7 @@ msgstr "" msgid "Fees" msgstr "Tarifas" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Taxas ignoradas" @@ -4732,8 +4764,8 @@ msgstr "Festival" msgid "File is too large. Maximum size is 5MB." msgstr "O ficheiro é demasiado grande. O tamanho máximo é 5MB." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Preencha primeiro os seus dados acima" @@ -4754,7 +4786,7 @@ msgstr "Filtrar Participantes" msgid "Filter by date" msgstr "Filtrar por data" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Filtrar por evento" @@ -4775,19 +4807,27 @@ msgstr "Filtros ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Termina de configurar o Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "Primeiro" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "Primeiro participante" @@ -4798,22 +4838,22 @@ msgstr "Primeiro número da fatura" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Primeiro nome" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Primeiro nome" @@ -4843,16 +4883,16 @@ msgstr "Quantia fixa" msgid "Fixed fee" msgstr "Taxa fixa" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Taxa Fixa" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Taxa fixa cobrada por transação" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "A taxa fixa deve ser 0 ou maior" @@ -4923,7 +4963,11 @@ msgstr "Sexta-feira" msgid "Full data ownership" msgstr "Propriedade total dos dados" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Reembolso total" @@ -4931,11 +4975,11 @@ msgstr "Reembolso total" msgid "Full resolved address" msgstr "Morada completa resolvida" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "futuras" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Apenas datas futuras" @@ -4992,7 +5036,7 @@ msgstr "Começar" msgid "Get Tickets" msgstr "Obter Bilhetes" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Prepare seu evento" @@ -5013,7 +5057,7 @@ msgstr "Voltar" msgid "Go back to profile" msgstr "Voltar ao perfil" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Ir para a página do evento" @@ -5037,7 +5081,7 @@ msgstr "Google Agenda" msgid "Got it" msgstr "Entendido" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Receita bruta" @@ -5045,22 +5089,22 @@ msgstr "Receita bruta" msgid "Gross Revenue" msgstr "Receita Bruta" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Vendas brutas" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Vendas brutas" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5077,7 +5121,7 @@ msgstr "Convidados" msgid "Happening now" msgstr "A decorrer agora" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Tem um código promocional?" @@ -5106,7 +5150,7 @@ msgstr "Aqui está o componente React que você pode usar para incorporar o widg msgid "Here is your affiliate link" msgstr "Aqui está o seu link de afiliado" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Oi {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Escondido da vista do público" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "As perguntas ocultas são visíveis apenas para o organizador do evento e não para o cliente." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Esconder" @@ -5239,8 +5283,8 @@ msgstr "Visualização da página inicial" msgid "Homer" msgstr "Homero" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Horas" @@ -5269,11 +5313,11 @@ msgstr "Com que frequência?" msgid "How to pay offline" msgstr "Como pagar offline" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "Como o IVA é aplicado às taxas da plataforma que cobramos." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "Limite de caracteres HTML excedido: {htmlLength}/{maxLength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Húngaro" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Reconheço as minhas responsabilidades enquanto responsável pelo tratamento de dados" @@ -5305,11 +5349,11 @@ msgstr "Concordo em receber notificações por email relacionadas com este event msgid "I agree to the <0>terms and conditions" msgstr "Concordo com os <0>termos e condições" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Confirmo que esta é uma mensagem transacional relacionada com este evento" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Se uma nova aba não abriu automaticamente, clique no botão abaixo para continuar para o pagamento." @@ -5325,7 +5369,7 @@ msgstr "Se ativado, a equipe de check-in pode marcar os participantes como regis msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Se ativado, o organizador receberá uma notificação por e-mail quando um novo pedido for feito" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Se você não solicitou essa alteração, altere imediatamente sua senha." @@ -5370,11 +5414,11 @@ msgstr "Personificação iniciada" msgid "Impersonation stopped" msgstr "Personificação parada" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Aviso importante" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Importante: Alterar o seu endereço de e-mail atualizará o link de acesso a este pedido. Será redirecionado para o novo link do pedido após guardar." @@ -5390,7 +5434,7 @@ msgstr "Em {diffMinutes} minutos" msgid "in last {0} min" msgstr "nos últimos {0} min" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "Presencial — definir um local" @@ -5401,15 +5445,15 @@ msgstr "in_person, online, unset ou mixed" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Inativo" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Usuários inativos não podem fazer login." @@ -5483,12 +5527,12 @@ msgstr "Formato de email inválido" msgid "Invalid file type. Please upload an image." msgstr "Tipo de ficheiro inválido. Por favor, carregue uma imagem." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Sintaxe Liquid inválida. Por favor, corrija-a e tente novamente." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Formato de número de IVA inválido" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Fatura" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Fatura baixada com sucesso" @@ -5545,7 +5589,7 @@ msgstr "Configurações da fatura" msgid "Italian" msgstr "Italiano" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Item" @@ -5628,7 +5672,7 @@ msgstr "agora mesmo" msgid "Just wrapped" msgstr "Acabou agora mesmo" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Mantenha-me atualizado sobre notícias e eventos de {0}" @@ -5647,13 +5691,13 @@ msgstr "Rótulo" msgid "Label for the occurrence" msgstr "Rótulo da sessão" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "atualizações de rótulo" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Língua" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "Últimas 24 horas" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "Últimos 30 dias" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "Últimos 6 meses" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "Últimos 7 dias" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "Últimos 90 dias" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Sobrenome" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Sobrenome" @@ -5753,7 +5797,7 @@ msgstr "Última ativação" msgid "Last Used" msgstr "Última vez usado" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Mais tarde" @@ -5786,7 +5830,7 @@ msgstr "Mantenha ativo para abranger todos os bilhetes do evento. Desative para msgid "Let them know about the change" msgstr "Avise-os da alteração" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Avise-os das alterações" @@ -5830,12 +5874,11 @@ msgstr "Lista" msgid "List view" msgstr "Vista de lista" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "Ao vivo" @@ -5848,7 +5891,7 @@ msgstr "AO VIVO" msgid "Live Events" msgstr "Eventos ao Vivo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Datas carregadas" @@ -5872,8 +5915,8 @@ msgstr "Carregando webhooks" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Carregando..." @@ -5926,7 +5969,7 @@ msgstr "Localização guardada" msgid "Location updated" msgstr "Localização atualizada" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "atualizações de localização" @@ -5990,7 +6033,7 @@ msgstr "Escritório Principal" msgid "Make billing address mandatory during checkout" msgstr "Tornar o endereço de cobrança obrigatório durante o checkout" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "Gerenciar participante" msgid "Manage dates and times for your recurring event" msgstr "Gerir datas e horas do seu evento recorrente" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Gerenciar evento" @@ -6039,10 +6082,14 @@ msgstr "Gerenciar pedido" msgid "Manage payment and invoicing settings for this event." msgstr "Gerenciar as configurações de pagamento e faturamento para este evento." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Gerenciar perfil" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Gerir Programação" @@ -6124,7 +6171,7 @@ msgstr "Meio" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Mensagem" @@ -6141,7 +6188,7 @@ msgstr "Participante da mensagem" msgid "Message Attendees" msgstr "Participantes da mensagem" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Enviar mensagens aos participantes com tickets específicos" @@ -6165,7 +6212,7 @@ msgstr "Conteúdo da mensagem" msgid "Message Details" msgstr "Detalhes da mensagem" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Mensagem para participantes individuais" @@ -6173,15 +6220,15 @@ msgstr "Mensagem para participantes individuais" msgid "Message is required" msgstr "A mensagem é obrigatória" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Enviar mensagem para proprietários de pedidos com produtos específicos" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Mensagem agendada" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Mensagem enviada" @@ -6212,8 +6259,8 @@ msgstr "Preço minimo" msgid "minutes" msgstr "minutos" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Minutos" @@ -6229,7 +6276,7 @@ msgstr "Configurações Diversas" msgid "Mo" msgstr "Seg" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Modo" @@ -6282,7 +6329,7 @@ msgstr "Mais ações" msgid "Most Viewed Events (Last 14 Days)" msgstr "Eventos mais vistos (Últimos 14 dias)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Mover todas as datas para mais cedo ou mais tarde" @@ -6290,7 +6337,7 @@ msgstr "Mover todas as datas para mais cedo ou mais tarde" msgid "Multi line text box" msgstr "Caixa de texto com várias linhas" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Nome" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "O nome é obrigatório" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "O nome deve ter menos de 255 caracteres" @@ -6384,21 +6431,21 @@ msgstr "Receita Líquida" msgid "Never" msgstr "Nunca" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Nova capacidade" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Novo rótulo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Nova localização" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "Nova Senha" @@ -6426,7 +6473,7 @@ msgstr "Vida noturna" msgid "No" msgstr "Não" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "Não - Sou um particular ou empresa não registada para IVA" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "Sem Atribuições de Capacidade" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "Nenhuma lista de check-in disponível para este evento." msgid "No check-ins yet" msgstr "Sem check-ins ainda" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "Nenhuma configuração encontrada" @@ -6537,7 +6584,7 @@ msgstr "Sem lista de check-in específica para a data" msgid "No dates available this month. Try navigating to another month." msgstr "Não há datas disponíveis este mês. Experimente navegar para outro mês." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "Nenhuma data corresponde aos filtros atuais." @@ -6582,8 +6629,8 @@ msgstr "Nenhum evento a iniciar nas próximas 24 horas" msgid "No events to show" msgstr "Nenhum evento para mostrar" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "Nenhum pedido encontrado" msgid "No orders to show" msgstr "Não há pedidos para mostrar" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "Ainda sem encomendas para esta data." msgid "No organizer activity in the last 14 days" msgstr "Sem atividade de organizador nos últimos 14 dias" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "Sem contexto de organizador disponível." @@ -6733,7 +6780,7 @@ msgstr "Ainda sem respostas" msgid "No results" msgstr "Nenhum resultado" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Ainda não existem localizações guardadas" @@ -6793,16 +6840,16 @@ msgstr "Nenhum evento de webhook foi registrado para este endpoint ainda. Os eve msgid "No Webhooks" msgstr "Nenhum Webhook" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "Não, manter-me aqui" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "não editadas" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Nenhum" @@ -6870,7 +6917,7 @@ msgstr "Prefixo numérico" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Sessão" @@ -7005,7 +7052,7 @@ msgstr "Informações sobre pagamentos offline" msgid "Offline Payments Settings" msgstr "Configurações de pagamentos offline" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "Assim que você começar a coletar dados, eles aparecerão aqui." msgid "Ongoing" msgstr "Em andamento" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "Em andamento" msgid "Online" msgstr "Online" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "Online — fornecer dados de ligação" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Online e presencial" @@ -7070,15 +7117,15 @@ msgstr "Detalhes da ligação do evento online" msgid "Online Event Details" msgstr "Detalhes do evento on-line" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Apenas os administradores da conta podem eliminar ou arquivar eventos. Contacte o administrador da sua conta para obter ajuda." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Apenas os administradores da conta podem eliminar ou arquivar organizadores. Contacte o administrador da sua conta para obter ajuda." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Enviar apenas para pedidos com esses status" @@ -7173,7 +7220,7 @@ msgstr "Pedido e Bilhete" msgid "Order #" msgstr "Encomenda n.º" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Pedido cancelado" @@ -7182,13 +7229,13 @@ msgstr "Pedido cancelado" msgid "Order Cancelled" msgstr "Pedido cancelado" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Pedido concluído" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Confirmação do pedido" @@ -7273,7 +7320,7 @@ msgstr "Pedido marcado como pago" msgid "Order Marked as Paid" msgstr "Pedido marcado como pago" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Pedido não encontrado" @@ -7297,7 +7344,7 @@ msgstr "Número da encomenda, data, email do comprador" msgid "Order owner" msgstr "Proprietário do pedido" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Proprietários de pedidos com um produto específico" @@ -7327,7 +7374,7 @@ msgstr "Pedido reembolsado" msgid "Order Status" msgstr "Status do pedido" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Status dos pedidos" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Tempo limite do pedido" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Total do pedido" @@ -7357,7 +7404,7 @@ msgstr "Pedido atualizado com sucesso" msgid "Order URL" msgstr "URL do pedido" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "O pedido foi cancelado" @@ -7374,8 +7421,8 @@ msgstr "encomendas" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Nome da organização" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Nome da organização" msgid "Organizer" msgstr "Organizador" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Organizador arquivado com sucesso" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Painel do organizador" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Organizador eliminado com sucesso" @@ -7486,7 +7533,7 @@ msgstr "Nome do organizador" msgid "Organizer Not Found" msgstr "Organizador não encontrado" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Organizador restaurado com sucesso" @@ -7504,7 +7551,7 @@ msgstr "Falha ao atualizar o status do organizador. Por favor, tente novamente m msgid "Organizer status updated" msgstr "Status do organizador atualizado" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "O modelo do organizador/padrão será usado" @@ -7512,7 +7559,7 @@ msgstr "O modelo do organizador/padrão será usado" msgid "Organizers" msgstr "Organizadores" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Os organizadores só podem gerenciar eventos e produtos. Eles não podem gerenciar usuários, configurações de conta ou informações de faturamento." @@ -7563,7 +7610,7 @@ msgstr "Preenchimento" msgid "Page" msgstr "Página" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Página já não disponível" @@ -7575,7 +7622,7 @@ msgstr "página não encontrada" msgid "Page URL" msgstr "URL da página" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "visualizações de página" @@ -7583,11 +7630,11 @@ msgstr "visualizações de página" msgid "Page Views" msgstr "Visualizações de página" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "pago" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "Contas pagas" msgid "Paid Product" msgstr "Produto Pago" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Reembolso parcial" @@ -7623,7 +7670,7 @@ msgstr "Passar para o comprador" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Senha" @@ -7694,7 +7741,7 @@ msgstr "Payload" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Pagamento" @@ -7735,7 +7782,7 @@ msgstr "Métodos de pagamento" msgid "Payment provider" msgstr "Provedor de pagamento" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Pagamento recebido" @@ -7747,7 +7794,7 @@ msgstr "Pagamento recebido" msgid "Payment Status" msgstr "Status do pagamento" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "Pagamento realizado com sucesso!" @@ -7761,11 +7808,11 @@ msgstr "Pagamentos não disponíveis" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Pagamentos" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "Pendente" @@ -7801,8 +7848,8 @@ msgstr "Percentagem" msgid "Percentage Amount" msgstr "Valor percentual" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Taxa Percentual" @@ -7810,11 +7857,11 @@ msgstr "Taxa Percentual" msgid "Percentage fee (%)" msgstr "Taxa percentual (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "A percentagem deve estar entre 0 e 100" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Percentagem do valor da transação" @@ -7822,11 +7869,11 @@ msgstr "Percentagem do valor da transação" msgid "Performance" msgstr "Desempenho" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Eliminar permanentemente este evento e todos os dados associados." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Eliminar permanentemente este organizador e todos os seus eventos." @@ -7834,7 +7881,7 @@ msgstr "Eliminar permanentemente este organizador e todos os seus eventos." msgid "Permanently remove this date" msgstr "Remover esta data permanentemente" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Informações pessoais" @@ -7842,7 +7889,7 @@ msgstr "Informações pessoais" msgid "Phone" msgstr "Telefone" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Escolher uma localização" @@ -7892,7 +7939,7 @@ msgstr "Taxa da plataforma de {0} deduzida do seu pagamento" msgid "Platform Fees" msgstr "Taxas da plataforma" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Relatório de taxas da plataforma" @@ -7918,7 +7965,7 @@ msgstr "Verifique seu e-mail e senha e tente novamente" msgid "Please check your email is valid" msgstr "Verifique se seu e-mail é válido" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Verifique seu e-mail para confirmar seu endereço de e-mail" @@ -7926,7 +7973,7 @@ msgstr "Verifique seu e-mail para confirmar seu endereço de e-mail" msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Por favor, verifique o seu bilhete para confirmar a nova hora. Os seus bilhetes continuam válidos — não é necessária qualquer ação a menos que as novas horas não lhe sejam convenientes. Responda a este e-mail se tiver alguma dúvida." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Continue na nova aba" @@ -7955,7 +8002,7 @@ msgstr "Por favor, insira uma URL válida" msgid "Please enter the 5-digit code" msgstr "Por favor, introduza o código de 5 dígitos" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Por favor, insira o seu número de IVA" @@ -7971,11 +8018,11 @@ msgstr "Por favor, forneça uma imagem." msgid "Please restart the checkout process." msgstr "Por favor, reinicie o processo de compra." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Por favor, volte para a página do evento para recomeçar." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Por favor, selecione uma data e hora" @@ -7987,7 +8034,7 @@ msgstr "Por favor, selecione um intervalo de datas" msgid "Please select an image." msgstr "Por favor, selecione uma imagem." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Por favor, selecione pelo menos um produto" @@ -7998,7 +8045,7 @@ msgstr "Por favor, selecione pelo menos um produto" msgid "Please try again." msgstr "Por favor, tente novamente." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Verifique seu endereço de e-mail para acessar todos os recursos" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Por favor, aguarde enquanto preparamos seus participantes para exportação..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Por favor, aguarde enquanto preparamos a sua fatura..." @@ -8124,7 +8171,7 @@ msgstr "Pré-visualização de Impressão" msgid "Print Ticket" msgstr "Imprimir Bilhete" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Imprimir ingressos" @@ -8139,7 +8186,7 @@ msgstr "Imprimir para PDF" msgid "Privacy Policy" msgstr "Política de Privacidade" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Processar reembolso" @@ -8180,7 +8227,7 @@ msgstr "Produto excluído com sucesso" msgid "Product Price Type" msgstr "Tipo de Preço do Produto" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Produto(s)" msgid "Products" msgstr "Produtos" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Produtos vendidos" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Produtos Vendidos" msgid "Products sorted successfully" msgstr "Produtos ordenados com sucesso" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Perfil" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Perfil atualizado com sucesso" @@ -8251,7 +8298,7 @@ msgstr "Perfil atualizado com sucesso" msgid "Progress" msgstr "Progresso" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Código promocional {promo_code} aplicado" @@ -8298,7 +8345,7 @@ msgstr "Relatório de códigos promocionais" msgid "Promo Only" msgstr "Apenas Promoção" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "Emails promocionais podem resultar na suspensão da conta" @@ -8310,11 +8357,11 @@ msgstr "" "Forneça contexto adicional ou instruções para esta pergunta. Utilize este campo para adicionar termos\n" "e condições, diretrizes ou qualquer informação importante que os participantes precisem de saber antes de responder." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Indique pelo menos um campo de endereço para a nova localização." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Fornece os seguintes dados antes da próxima revisão do Stripe para manteres os pagamentos a fluir." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Fornecedor" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Publicar" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "Análise em tempo real" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Receber atualizações de produtos do {0}." @@ -8439,6 +8486,10 @@ msgstr "Receber atualizações de produtos do {0}." msgid "Recent Account Signups" msgstr "Registos de contas recentes" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Participantes Recentes" @@ -8447,7 +8498,7 @@ msgstr "Participantes Recentes" msgid "Recent check-ins" msgstr "Check-ins recentes" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "Pedidos recentes" msgid "recipient" msgstr "destinatário" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Destinatário" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "destinatários" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Destinatários" msgid "Recipients are available after the message is sent" msgstr "Os destinatários ficam disponíveis após o envio da mensagem" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Recorrente" @@ -8517,7 +8569,7 @@ msgstr "Reembolsar todas as encomendas destas datas" msgid "Refund all orders for this date" msgstr "Reembolsar todas as encomendas desta data" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Valor do reembolso" @@ -8537,7 +8589,7 @@ msgstr "Reembolso Emitido" msgid "Refund order" msgstr "Pedido de reembolso" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Reembolsar pedido {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "Status do reembolso" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Devolveu" @@ -8571,7 +8623,7 @@ msgstr "Reembolsado: {0}" msgid "Refunds" msgstr "Reembolsos" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Configurações regionais" @@ -8598,18 +8650,18 @@ msgstr "Usos restantes" msgid "Reminder scheduled" msgstr "Lembrete agendado" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "remover" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Remover" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Remover rótulo de todas as datas" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Reenviar e-mail de confirmação" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "Reenviar e-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "Reenviar e-mail de confirmação" @@ -8688,7 +8741,7 @@ msgstr "Reenviar bilhete" msgid "Resend ticket email" msgstr "Reenviar e-mail do bilhete" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Reenviando..." @@ -8729,30 +8782,30 @@ msgstr "Resposta" msgid "Response Details" msgstr "Detalhes da Resposta" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Restaurar" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Restaurar evento" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Restaurar evento" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Restaurar organizador" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Restaure este evento para o tornar visível novamente." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Restaure este organizador e torne-o ativo novamente." @@ -8777,7 +8830,7 @@ msgstr "Tentar trabalho novamente" msgid "Return to Event" msgstr "Voltar ao evento" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Voltar para a página do evento" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Reutiliza uma ligação Stripe de outro organizador desta conta." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Receita" @@ -8818,7 +8872,7 @@ msgstr "Revogar convite" msgid "Revoke Offer" msgstr "Revogar Oferta" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Promoção começa {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Vendas" @@ -8930,7 +8984,7 @@ msgstr "Sábado" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Sábado" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Salvar" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Guardar Design do Bilhete" msgid "Save VAT settings" msgstr "Guardar definições de IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "Guardar Definições de IVA" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Localização guardada" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Localizações guardadas" @@ -9015,7 +9069,7 @@ msgstr "Localizações Guardadas" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "Guardar uma substituição cria uma configuração dedicada para este organizador caso este esteja atualmente na predefinição do sistema." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Digitalizar" @@ -9035,6 +9089,10 @@ msgstr "Modo leitor" msgid "Schedule" msgstr "Programação" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Programação criada com sucesso" @@ -9043,11 +9101,11 @@ msgstr "Programação criada com sucesso" msgid "Schedule ends on" msgstr "A programação termina em" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Agendar para mais tarde" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Agendar mensagem" @@ -9061,11 +9119,11 @@ msgstr "O agendamento começa em" msgid "Scheduled" msgstr "Agendado" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Hora agendada" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Pesquisar" @@ -9228,11 +9286,11 @@ msgstr "Selecionar tudo" msgid "Select all on {0}" msgstr "Selecionar tudo em {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Selecionar um evento" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Selecione o grupo de participantes" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Selecione o Nível do Produto" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Selecione os produtos" @@ -9298,7 +9356,7 @@ msgstr "Selecione data e hora de início" msgid "Select start time" msgstr "Selecionar hora de início" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Selecione o status" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Selecione o ingresso" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Selecionar ingressos" @@ -9325,7 +9383,7 @@ msgstr "Selecione o período de tempo" msgid "Select timezone" msgstr "Selecionar fuso horário" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Selecione quais participantes devem receber esta mensagem" @@ -9359,11 +9417,11 @@ msgstr "Vendendo rápido 🔥" msgid "Send" msgstr "Enviar" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Envie uma mensagem" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Enviar como teste" @@ -9371,20 +9429,20 @@ msgstr "Enviar como teste" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "Enviar e-mails para participantes, titulares de bilhetes ou proprietários de encomendas. As mensagens podem ser enviadas imediatamente ou agendadas para mais tarde." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Envie-me uma cópia" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Enviar Mensagem" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Enviar agora" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Enviar confirmação do pedido e e-mail do ticket" @@ -9392,7 +9450,7 @@ msgstr "Enviar confirmação do pedido e e-mail do ticket" msgid "Send real-time order and attendee data to your external systems." msgstr "Envie dados de pedidos e participantes em tempo real para seus sistemas externos." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Enviar email de notificação de reembolso" @@ -9400,11 +9458,11 @@ msgstr "Enviar email de notificação de reembolso" msgid "Send reset link" msgstr "Enviar link de redefinição" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Enviar teste" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Enviar para todas as sessões, ou escolher uma específica" @@ -9429,15 +9487,15 @@ msgstr "Enviado" msgid "Sent By" msgstr "Enviado por" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Enviado aos participantes quando uma data agendada é cancelada" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Enviado aos clientes quando fazem um pedido" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Enviado a cada participante com os detalhes do seu ingresso" @@ -9490,7 +9548,7 @@ msgstr "Defina as configurações padrão de taxa da plataforma para novos event msgid "Set default settings for new events created under this organizer." msgstr "Definir configurações predefinidas para novos eventos criados sob este organizador." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Defina a duração de cada data" @@ -9498,11 +9556,11 @@ msgstr "Defina a duração de cada data" msgid "Set number of dates" msgstr "Definir número de datas" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Definir ou limpar o rótulo da data" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Defina a hora de fim de cada data para este intervalo após a hora de início." @@ -9510,7 +9568,7 @@ msgstr "Defina a hora de fim de cada data para este intervalo após a hora de in msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Defina o número inicial para a numeração das faturas. Isso não poderá ser alterado depois que as faturas forem geradas." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Definir como ilimitado (remover limite)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Configure listas de check-in para diferentes entradas, sessões ou dias." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Configurar pagamentos" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Configurar Programação" msgid "Set up your organization" msgstr "Configure a sua organização" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Configure a Sua Programação" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Definir, alterar ou remover a localização ou os dados online da sessão" @@ -9599,11 +9665,11 @@ msgstr "Compartilhar página do organizador" msgid "Shared Capacity Management" msgstr "Gestão de capacidade compartilhada" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Deslocar horas" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "Horas deslocadas em {count} data(s)" @@ -9635,8 +9701,8 @@ msgstr "Mostrar caixa de seleção de opt-in de marketing" msgid "Show marketing opt-in checkbox by default" msgstr "Mostrar caixa de seleção de opt-in de marketing por padrão" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Mostre mais" @@ -9673,7 +9739,7 @@ msgstr "A mostrar {0}–{1} de {2}" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "A mostrar {MAX_VISIBLE} de {totalAvailable} datas. Escreva para pesquisar." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "A mostrar as primeiras {0} — as restantes {1} sessão(ões) continuarão a ser abrangidas quando a mensagem for enviada." @@ -9710,7 +9776,7 @@ msgstr "Evento Único" msgid "Single line text box" msgstr "Caixa de texto de linha única" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Ignorar datas editadas manualmente" @@ -9745,7 +9811,7 @@ msgstr "Links sociais e site" msgid "Sold" msgstr "Vendido" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Alguns detalhes estão ocultos do acesso público. Inicie sessão para v #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Algo correu mal" @@ -9784,7 +9850,7 @@ msgstr "Algo deu errado, tente novamente ou entre em contato com o suporte se o msgid "Something went wrong! Please try again" msgstr "Algo deu errado! Por favor, tente novamente" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Algo deu errado." @@ -9796,12 +9862,12 @@ msgstr "Algo correu mal. Por favor, tente novamente mais tarde." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Algo deu errado. Por favor, tente novamente." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Desculpe, este código promocional não é reconhecido" @@ -9897,12 +9963,12 @@ msgstr "Começa amanhã" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "Estado ou Região" @@ -9914,7 +9980,7 @@ msgstr "Estatísticas" msgid "Statistics are based on account creation date" msgstr "As estatísticas são baseadas na data de criação da conta" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Estatísticas" @@ -9931,7 +9997,7 @@ msgstr "Estatísticas" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "ID de pagamento Stripe" msgid "Stripe payments are not enabled for this event." msgstr "Os pagamentos via Stripe não estão ativados para este evento." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "O Stripe vai precisar de mais alguns dados em breve" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "Dom" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "O assunto é obrigatório" msgid "Subject will appear here" msgstr "O assunto aparecerá aqui" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Assunto:" @@ -10024,11 +10090,11 @@ msgstr "Subtotal" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Sucesso" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Sucesso! {0} receberá um e-mail em breve." @@ -10173,7 +10239,7 @@ msgstr "Definições atualizadas com sucesso" msgid "Successfully Updated Social Links" msgstr "Links sociais atualizados com sucesso" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Definições de Rastreio Atualizadas com Sucesso" @@ -10226,7 +10292,7 @@ msgstr "Sueco" msgid "Switch Organizer" msgstr "Trocar organizador" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Padrão do Sistema" @@ -10238,7 +10304,7 @@ msgstr "Camiseta" msgid "Tap this screen to resume scanning" msgstr "Toque no ecrã para retomar" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "A abranger os participantes de {0} sessões selecionadas." @@ -10336,7 +10402,7 @@ msgstr "Fale-nos sobre a sua organização. Esta informação será exibida nas msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Diga-nos com que frequência o seu evento se repete e criaremos todas as datas por si." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Indica o teu estado de registo de IVA para aplicarmos o tratamento correto às taxas da plataforma." @@ -10344,15 +10410,15 @@ msgstr "Indica o teu estado de registo de IVA para aplicarmos o tratamento corre msgid "Template Active" msgstr "Modelo ativo" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Modelo criado com sucesso" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Modelo excluído com sucesso" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Modelo salvo com sucesso" @@ -10378,8 +10444,8 @@ msgstr "Obrigado por participar!" msgid "Thanks," msgstr "Obrigado," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Esse código promocional é inválido" @@ -10399,7 +10465,7 @@ msgstr "A lista de check-in que você está procurando não existe." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "O código irá expirar em 10 minutos. Verifique a sua pasta de spam se não vir o email." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "A moeda em que a taxa fixa é definida. Será convertida para a moeda do pedido no checkout." @@ -10417,7 +10483,7 @@ msgstr "A moeda padrão para seus eventos." msgid "The default timezone for your events." msgstr "O fuso horário padrão para seus eventos." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "O endereço de e-mail foi alterado. O participante receberá um novo bilhete no endereço de e-mail atualizado." @@ -10442,7 +10508,7 @@ msgstr "A primeira data a partir da qual este agendamento será gerado." msgid "The full event address" msgstr "O endereço completo do evento" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "O valor total do pedido será reembolsado para o método de pagamento original do cliente." @@ -10466,7 +10532,7 @@ msgstr "O idioma do cliente" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "O máximo é de {MAX_PREVIEW} sessões. Por favor, reduza o intervalo de datas, a frequência ou o número de sessões por dia." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "O número máximo de produtos para {0} é {1}" @@ -10475,7 +10541,7 @@ msgstr "O número máximo de produtos para {0} é {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "O organizador que você está procurando não foi encontrado. A página pode ter sido movida, excluída ou o URL está incorreto." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "A substituição fica registada no registo de auditoria da encomenda." @@ -10499,11 +10565,11 @@ msgstr "O preço apresentado ao cliente não incluirá impostos e taxas. Eles se msgid "The primary brand color used for buttons and highlights" msgstr "A cor principal da marca usada para botões e destaques" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "A hora agendada é obrigatória" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "A hora agendada deve ser no futuro" @@ -10511,8 +10577,8 @@ msgstr "A hora agendada deve ser no futuro" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "A sessão de \"{title}\", inicialmente agendada para {0}, foi reagendada." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "O corpo do modelo contém sintaxe Liquid inválida. Por favor, corrija-a e tente novamente." @@ -10521,7 +10587,7 @@ msgstr "O corpo do modelo contém sintaxe Liquid inválida. Por favor, corrija-a msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "O título do evento que será exibido nos resultados dos buscadores e no compartilhamento nas redes sociais. Por padrão, o título do evento será usado" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "O número de IVA não pôde ser validado. Por favor, verifique o número e tente novamente." @@ -10534,19 +10600,19 @@ msgstr "Teatro" msgid "Theme & Colors" msgstr "Tema e cores" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "Não há produtos disponíveis para este evento" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "Não há produtos disponíveis nesta categoria" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "Não há próximas datas para este evento" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "Há um reembolso pendente. Aguarde a conclusão antes de solicitar outro reembolso." @@ -10578,7 +10644,7 @@ msgstr "Estes detalhes são apresentados no bilhete do participante e no resumo msgid "These details will only be shown if the order is completed successfully." msgstr "Estes detalhes só serão apresentados se a encomenda for concluída com sucesso." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Estes dados substituirão qualquer localização existente nas sessões afetadas e serão apresentados nos bilhetes dos participantes." @@ -10586,11 +10652,11 @@ msgstr "Estes dados substituirão qualquer localização existente nas sessões msgid "These settings apply only to copied embed code and won't be stored." msgstr "Estas configurações se aplicam apenas ao código de incorporação copiado e não serão armazenadas." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Estes modelos serão usados como padrões para todos os eventos em sua organização. Eventos individuais podem substituir estes modelos por suas próprias versões personalizadas." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Estes modelos substituirão os padrões do organizador apenas para este evento. Se nenhum modelo personalizado for definido aqui, o modelo do organizador será usado em vez disso." @@ -10598,11 +10664,11 @@ msgstr "Estes modelos substituirão os padrões do organizador apenas para este msgid "Third" msgstr "Terceiro" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Isto aplica-se a todas as datas correspondentes do evento, incluindo as que não estão visíveis no momento. Os participantes registados em qualquer uma dessas datas poderão ser contactados através do compositor de mensagens assim que a atualização terminar." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Este participante tem um pedido não pago." @@ -10660,11 +10726,11 @@ msgstr "Esta data foi cancelada. Ainda assim, pode eliminá-la para a remover pe msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Esta data está no passado. Será criada, mas não ficará visível para os participantes nas próximas datas." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Esta data está marcada como esgotada." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Esta data já não está disponível. Por favor, selecione outra data." @@ -10713,19 +10779,19 @@ msgstr "Esta mensagem será incluída no rodapé de todos os e-mails enviados de msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Esta mensagem só será mostrada se o pedido for concluído com sucesso. Pedidos aguardando pagamento não mostrarão esta mensagem." -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Este nome é visível aos utilizadores finais" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Esta sessão atingiu a capacidade máxima" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "Este pedido já foi pago." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "Este pedido já foi reembolsado." @@ -10733,7 +10799,7 @@ msgstr "Este pedido já foi reembolsado." msgid "This order has been cancelled." msgstr "Esse pedido foi cancelado." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "Este pedido expirou. Por favor, recomece." @@ -10745,15 +10811,15 @@ msgstr "Este pedido está a ser processado." msgid "This order is complete." msgstr "Este pedido está completo." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Esta página de pedido não está mais disponível." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "Este pedido foi abandonado. Pode iniciar um novo pedido a qualquer momento." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "Este pedido foi cancelado. Pode iniciar um novo pedido a qualquer momento." @@ -10785,7 +10851,7 @@ msgstr "Este produto está destacado na página do evento" msgid "This product is sold out" msgstr "Este produto está esgotado" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Este relatório é apenas para fins informativos. Consulte sempre um profissional de impostos antes de usar estes dados para fins contabilísticos ou fiscais. Por favor, verifique com o seu painel do Stripe pois o Hi.Events pode não ter dados históricos." @@ -10797,11 +10863,11 @@ msgstr "Este link de redefinição de senha é inválido ou expirou." msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Este bilhete acabou de ser digitalizado. Aguarde antes de digitalizar novamente." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Este usuário não está ativo porque não aceitou o convite." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Isto afetará {loadedAffectedCount} data(s)." @@ -10913,6 +10979,10 @@ msgstr "Preço do ingresso" msgid "Ticket resent successfully" msgstr "Bilhete reenviado com sucesso" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "A venda de bilhetes para este evento terminou" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Hora" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Tempo restante:" @@ -10994,7 +11064,7 @@ msgstr "Vezes usado" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Fuso horário" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "Para aumentar os seus limites, contacte-nos em" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "Melhores organizadores (Últimos 14 dias)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Total" @@ -11075,11 +11146,11 @@ msgstr "Total de entradas" msgid "Total Fee" msgstr "Taxa total" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Total de vendas brutas" msgid "Total order amount" msgstr "Valor total do pedido" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "Total reembolsado" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Total Reembolsado" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Acompanhe o crescimento e desempenho da conta por fonte de atribuição" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "Rastreio e Análise" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Tipo" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Escreva \"eliminar\" para confirmar" @@ -11222,7 +11293,7 @@ msgstr "Não foi possível retirar o participante" msgid "Unable to create product. Please check the your details" msgstr "Não foi possível criar o produto. Por favor, verifique seus detalhes" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Não foi possível criar o produto. Por favor, verifique seus detalhes" @@ -11246,7 +11317,7 @@ msgstr "Não foi possível entrar na lista de espera" msgid "Unable to load attendee details." msgstr "Não é possível carregar os detalhes do participante." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Não foi possível carregar os produtos para esta data. Por favor, tente novamente." @@ -11284,7 +11355,7 @@ msgstr "Estados Unidos" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Desconhecido" @@ -11304,7 +11375,7 @@ msgstr "Participante desconhecido" msgid "Unlimited" msgstr "Ilimitado" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Ilimitado disponível" @@ -11316,12 +11387,12 @@ msgstr "Usos ilimitados permitidos" msgid "Unnamed" msgstr "Sem nome" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Localização sem nome" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Pedido não pago" @@ -11337,7 +11408,7 @@ msgstr "Não confiável" msgid "Upcoming" msgstr "Por vir" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "Atualizar {0}" msgid "Update Affiliate" msgstr "Atualizar afiliado" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Atualizar capacidade" @@ -11365,15 +11436,15 @@ msgstr "Atualizar nome e descrição do evento" msgid "Update event name, description and dates" msgstr "Atualizar nome, descrição e datas do evento" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Atualizar rótulo" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Atualizar localização" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Atualizar perfil" @@ -11385,19 +11456,19 @@ msgstr "Atualização: {subjectTitle} — alterações de programação" msgid "Update: {subjectTitle} — session time changed" msgstr "Atualização: {subjectTitle} — hora da sessão alterada" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "{count} data(s) atualizada(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "Capacidade atualizada em {count} data(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "Rótulo atualizado em {count} data(s)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Localização atualizada para {count} sessão(ões)" @@ -11507,14 +11578,14 @@ msgstr "Gerenciamento de usuários" msgid "Users" msgstr "Usuários" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Os usuários podem alterar o e-mail em <0>Configurações do perfil" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11526,13 +11597,13 @@ msgstr "Análise UTM" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "A validar o seu número de IVA..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "CUBA" @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "Número de IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "Número de IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "O número de IVA não deve conter espaços" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "O número de IVA deve começar com um código de país de 2 letras seguido de 8-15 caracteres alfanuméricos (por exemplo, PT123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "Número de IVA validado com sucesso" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "A validação do número de IVA falhou" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "A validação do número de IVA falhou. Por favor, verifique o seu número de IVA." @@ -11581,12 +11652,12 @@ msgstr "Taxa de IVA" msgid "VAT registered" msgstr "Registado para IVA" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "Definições de IVA guardadas com sucesso" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "Configurações de IVA guardadas. Estamos a validar o seu número de IVA em segundo plano." @@ -11594,15 +11665,15 @@ msgstr "Configurações de IVA guardadas. Estamos a validar o seu número de IVA msgid "VAT settings updated" msgstr "Definições de IVA atualizadas" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "Tratamento de IVA para Taxas da Plataforma" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "Tratamento de IVA para taxas da plataforma: Empresas registadas para IVA na UE podem usar o mecanismo de autoliquidação (0% - Artigo 196 da Diretiva IVA 2006/112/CE). Empresas não registadas para IVA são cobradas com IVA irlandês de 23%." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "Serviço de validação de IVA temporariamente indisponível" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "IVA: não registado" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "Nome do local" msgid "Verification code" msgstr "Código de verificação" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "Verificar email" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Verifique seu e-mail" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "A verificar..." @@ -11655,8 +11735,7 @@ msgstr "Visualizar" msgid "View All" msgstr "Ver Tudo" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "Ver detalhes de {0} {1}" msgid "View Event" msgstr "Ver evento" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Ver página do evento" @@ -11729,8 +11808,8 @@ msgstr "Ver no Google Maps" msgid "View Order" msgstr "Ver pedido" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Ver detalhes do pedido" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "Em espera" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "A aguardar pagamento" @@ -11800,7 +11879,7 @@ msgstr "Lista de espera" msgid "Waitlist Enabled" msgstr "Lista de Espera Ativada" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "Oferta da lista de espera expirou" @@ -11808,7 +11887,7 @@ msgstr "Oferta da lista de espera expirou" msgid "Waitlist triggered" msgstr "Lista de espera acionada" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Aviso: Esta é a configuração padrão do sistema. As alterações afetarão todas as contas que não tenham uma configuração específica atribuída." @@ -11844,7 +11923,7 @@ msgstr "Não conseguimos encontrar o pedido que procura. O link pode ter expirad msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "Não conseguimos encontrar o bilhete que procura. O link pode ter expirado ou os detalhes do bilhete podem ter sido alterados." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "Não foi possível encontrar este pedido. Pode ter sido removido." @@ -11860,7 +11939,7 @@ msgstr "Não conseguimos ligar ao Stripe agora. Tenta novamente em instantes." msgid "We couldn't reorder the categories. Please try again." msgstr "Não conseguimos reordenar as categorias. Por favor, tente novamente." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Ocorreu um problema ao carregar esta página. Por favor, tente novamente." @@ -11881,6 +11960,10 @@ msgstr "Recomendamos dimensões de 2160px por 1080px e tamanho máximo de arquiv msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "Recomendamos dimensões de 400px por 400px e tamanho máximo de 5MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "Utilizamos cookies para nos ajudar a perceber como o site é utilizado e para melhorar a sua experiência." @@ -11889,7 +11972,7 @@ msgstr "Utilizamos cookies para nos ajudar a perceber como o site é utilizado e msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "Não foi possível confirmar seu pagamento. Tente novamente ou entre em contato com o suporte." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "Não conseguimos validar o seu número de IVA após várias tentativas. Continuaremos a tentar em segundo plano. Por favor, volte mais tarde." @@ -11897,16 +11980,16 @@ msgstr "Não conseguimos validar o seu número de IVA após várias tentativas. msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "Notificá-lo-emos por e-mail se ficar disponível um lugar para {productDisplayName}." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Após guardar, abriremos um compositor de mensagens com um modelo pré-preenchido. Você revê e envia — nada é enviado automaticamente." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "Enviaremos os seus bilhetes para este e-mail" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "Validaremos o seu número de IVA em segundo plano. Se houver algum problema, informaremos." @@ -12003,7 +12086,7 @@ msgstr "Bem vindo a bordo! Por favor faça o login para continuar." msgid "Welcome back" msgstr "Bem-vindo de volta" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Bem vindo de volta{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Bem-estar" msgid "What are Tiered Products?" msgstr "O que são Produtos em Camadas?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "O que é uma Categoria?" @@ -12143,6 +12226,10 @@ msgstr "Quando fecha o check-in" msgid "When check-in opens" msgstr "Quando abre o check-in" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "Quando ativado, as faturas serão geradas para os pedidos de ingressos. As faturas serão enviadas junto com o e-mail de confirmação do pedido. Os participantes também podem baixar suas faturas na página de confirmação do pedido." @@ -12155,7 +12242,7 @@ msgstr "Quando ativado, novos eventos permitirão que os participantes gerenciem msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "Quando ativado, novos eventos exibirão uma caixa de seleção de opt-in de marketing durante o checkout. Isso pode ser substituído por evento." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "Quando ativado, não serão cobradas taxas de aplicação nas transações Stripe Connect. Use isto para países onde as taxas de aplicação não são suportadas." @@ -12191,11 +12278,11 @@ msgstr "Pré-visualização do widget" msgid "Widget Settings" msgstr "Configurações do widget" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "Trabalhando" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "ano" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Ano até agora" @@ -12247,11 +12334,11 @@ msgstr "anos" msgid "Yes" msgstr "Sim" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Sim - Tenho um número de registo de IVA da UE válido" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Sim, cancelar o meu pedido" @@ -12267,7 +12354,7 @@ msgstr "Você está alterando seu e-mail para <0>{0}." msgid "You are impersonating <0>{0} ({1})" msgstr "Está a personificar <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Está a emitir um reembolso parcial. O cliente será reembolsado em {0} {1}." @@ -12292,7 +12379,7 @@ msgstr "Pode substituir isto para datas individuais mais tarde." msgid "You can still manually offer tickets if needed." msgstr "Ainda pode oferecer bilhetes manualmente, se necessário." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "Não pode arquivar o último organizador ativo da sua conta." @@ -12313,11 +12400,11 @@ msgstr "Você não pode excluir a última categoria." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "Você não pode excluir este nível de preço porque já há produtos vendidos para este nível. Você pode ocultá-lo em vez disso." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "Você não pode editar a função ou o status do proprietário da conta." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "Você não pode reembolsar um pedido criado manualmente." @@ -12333,11 +12420,11 @@ msgstr "Você já aceitou este convite. Por favor faça o login para continuar." msgid "You have no pending email change." msgstr "Você não tem nenhuma alteração de e-mail pendente." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "Atingiu o seu limite de mensagens." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "O tempo para concluir seu pedido acabou." @@ -12345,11 +12432,11 @@ msgstr "O tempo para concluir seu pedido acabou." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Você adicionou taxas e impostos a um produto gratuito. Deseja removê-los?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "Você deve reconhecer que este e-mail não é promocional" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Tem de reconhecer as suas responsabilidades antes de guardar" @@ -12409,7 +12496,7 @@ msgstr "Você precisará de um produto antes de poder criar uma atribuição de msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Você precisará de pelo menos um produto para começar. Grátis, pago ou deixe o usuário decidir o que pagar." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Está a alterar as horas das sessões" @@ -12421,7 +12508,7 @@ msgstr "Vai participar em {0}!" msgid "You're on the waitlist!" msgstr "Está na lista de espera!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "Foi-lhe oferecido um lugar!" @@ -12429,7 +12516,7 @@ msgstr "Foi-lhe oferecido um lugar!" msgid "You've changed the session time" msgstr "Alterou a hora da sessão" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "A sua conta tem limites de mensagens. Para aumentar os seus limites, contacte-nos em" @@ -12457,11 +12544,11 @@ msgstr "Seu site incrível 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "A sua lista de check-in foi criada com sucesso. Partilhe a ligação abaixo com a sua equipa de check-in." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "O seu pedido atual será perdido." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Seus detalhes" @@ -12469,7 +12556,7 @@ msgstr "Seus detalhes" msgid "Your Email" msgstr "Seu e-mail" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "Sua solicitação de e-mail para <0>{0} está pendente. Por favor, verifique seu e-mail para confirmar" @@ -12497,7 +12584,7 @@ msgstr "Seu nome" msgid "Your new password must be at least 8 characters long." msgstr "A sua nova senha deve ter pelo menos 8 caracteres." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Seu pedido" @@ -12509,7 +12596,7 @@ msgstr "Os detalhes do seu pedido foram atualizados. Foi enviado um e-mail de co msgid "Your order has been cancelled" msgstr "Seu pedido foi cancelado" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "O seu pedido foi cancelado." @@ -12534,7 +12621,7 @@ msgstr "Endereço do seu organizador" msgid "Your password" msgstr "Sua senha" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Seu pagamento está sendo processado." @@ -12542,11 +12629,11 @@ msgstr "Seu pagamento está sendo processado." msgid "Your payment is protected with bank-level encryption" msgstr "O seu pagamento está protegido com encriptação de nível bancário" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Seu pagamento não foi bem-sucedido, tente novamente." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Seu pagamento não foi bem-sucedido. Por favor, tente novamente." @@ -12554,7 +12641,7 @@ msgstr "Seu pagamento não foi bem-sucedido. Por favor, tente novamente." msgid "Your Plan" msgstr "Seu plano" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Seu reembolso está sendo processado." @@ -12570,19 +12657,19 @@ msgstr "Seu ingresso para" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "O seu bilhete continua válido — não é necessária qualquer ação a menos que a nova hora não lhe seja conveniente. Por favor, responda a este e-mail se tiver alguma dúvida." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "Os seus bilhetes foram confirmados." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "O seu número de IVA está na fila para validação" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "O seu número de IVA será validado quando guardar" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "A sua oferta da lista de espera expirou e não foi possível concluir a sua encomenda. Por favor, volte a juntar-se à lista de espera para ser notificado quando ficarem disponíveis mais lugares." @@ -12590,19 +12677,19 @@ msgstr "A sua oferta da lista de espera expirou e não foi possível concluir a msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "CEP / Código Postal" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "CEP ou Código postal" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "CEP ou Código Postal" diff --git a/frontend/src/locales/ru.js b/frontend/src/locales/ru.js index 6faa05c9f0..6fa2e2e3e4 100644 --- a/frontend/src/locales/ru.js +++ b/frontend/src/locales/ru.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>checked out successfully\"],\"KMgp2+\":[[\"0\"],\" available\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" days, \",[\"hours\"],\" hours, \",[\"minutes\"],\" minutes, and \",[\"seconds\"],\" seconds\"],\"f3RdEk\":[[\"hours\"],\" hours, \",[\"minutes\"],\" minutes, and \",[\"seconds\"],\" seconds\"],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0>Please enter the price excluding taxes and fees.<1>Taxes and fees can be added below.\",\"ZjMs6e\":\"<0>The number of products available for this product<1>This value can be overridden if there are <2>Capacity Limits associated with this product.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"A date input. Perfect for asking for a date of birth etc.\",\"6euFZ/\":[\"A default \",[\"type\"],\" is automaticaly applied to all new products. You can override this on a per product basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"POT0K/\":\"A fixed amount per product. E.g, $0.50 per product\",\"f4vJgj\":\"A multi line text input\",\"OIPtI5\":\"A percentage of the product price. E.g., 3.5% of the product price\",\"ZthcdI\":\"A promo code with no discount can be used to reveal hidden products.\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"h179TP\":\"A short description of the event that will be displayed in search engine results and when sharing on social media. By default, the event description will be used\",\"WKMnh4\":\"A single line text input\",\"BHZbFy\":\"A single question per order. E.g, What is your shipping address?\",\"Fuh+dI\":\"A single question per product. E.g, What is your t-shirt size?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Accept bank transfers, checks, or other offline payment methods\",\"hrvLf4\":\"Accept credit card payments with Stripe\",\"bfXQ+N\":\"Accept Invitation\",\"AeXO77\":\"Account\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"5T2HxQ\":\"Activation date\",\"F6pfE9\":\"Active\",\"/PN1DA\":\"Add a description for this check-in list\",\"0/vPdA\":\"Add any notes about the attendee. These will not be visible to the attendee.\",\"Or1CPR\":\"Add any notes about the attendee...\",\"l3sZO1\":\"Add any notes about the order. These will not be visible to the customer.\",\"xMekgu\":\"Add any notes about the order...\",\"PGPGsL\":\"Add description\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Add instructions for offline payments (e.g., bank transfer details, where to send checks, payment deadlines)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"24l4x6\":\"Add Product\",\"8q0EdE\":\"Add Product to Category\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"goOKRY\":\"Add tier\",\"oZW/gT\":\"Add to Calendar\",\"pn5qSs\":\"Additional Information\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Address\",\"NY/x1b\":\"Address line 1\",\"POdIrN\":\"Address Line 1\",\"cormHa\":\"Address line 2\",\"gwk5gg\":\"Address Line 2\",\"U3pytU\":\"Admin\",\"HLDaLi\":\"Admin users have full access to events and account settings.\",\"W7AfhC\":\"All attendees of this event\",\"cde2hc\":\"All Products\",\"5CQ+r0\":\"Allow attendees associated with unpaid orders to check in\",\"ipYKgM\":\"Allow search engine indexing\",\"LRbt6D\":\"Allow search engines to index this event\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"V7MwOy\":\"An error occurred while loading the page\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"An unexpected error occurred.\",\"byKna+\":\"An unexpected error occurred. Please try again.\",\"ubdMGz\":\"Any queries from product holders will be sent to this email address. This will also be used as the \\\"reply-to\\\" address for all emails sent from this event\",\"aAIQg2\":\"Appearance\",\"Ym1gnK\":\"applied\",\"sy6fss\":[\"Applies to \",[\"0\"],\" products\"],\"kadJKg\":\"Applies to 1 product\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"ARBThj\":[\"Apply this \",[\"type\"],\" to all new products\"],\"S0ctOE\":\"Archive event\",\"TdfEV7\":\"Archived\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"TvkW9+\":\"Are you sure you want to archive this event?\",\"/CV2x+\":\"Are you sure you want to cancel this attendee? This will void their ticket\",\"YgRSEE\":\"Are you sure you want to delete this promo code?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Are you sure you want to make this event draft? This will make the event invisible to the public\",\"mEHQ8I\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"Are you sure you want to restore this event? It will be restored as a draft event.\",\"vJuISq\":\"Are you sure you would like to delete this Capacity Assignment?\",\"baHeCz\":\"Are you sure you would like to delete this Check-In List?\",\"LBLOqH\":\"Ask once per order\",\"wu98dY\":\"Ask once per product\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"QKim6l\":\"Attendee not found\",\"R5IT/I\":\"Attendee Notes\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Attendee Ticket\",\"9SZT4E\":\"Attendees\",\"iPBfZP\":\"Attendees Registered\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"4lVaWA\":\"Awaiting offline payment\",\"2rHwhl\":\"Awaiting Offline Payment\",\"3wF4Q/\":\"Awaiting payment\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Billing Address\",\"/xC/im\":\"Billing Settings\",\"rp/zaT\":\"Brazilian Portuguese\",\"whqocw\":\"By registering you agree to our <0>Terms of Service and <1>Privacy Policy.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacity\",\"V6Q5RZ\":\"Capacity Assignment created successfully\",\"k5p8dz\":\"Capacity Assignment deleted successfully\",\"nDBs04\":\"Capacity Management\",\"ddha3c\":\"Categories allow you to group products together. For example, you might have a category for \\\"Tickets\\\" and another for \\\"Merchandise\\\".\",\"iS0wAT\":\"Categories help you organize your products. This title will be displayed on the public event page.\",\"eorM7z\":\"Categories reordered successfully.\",\"3EXqwa\":\"Category Created Successfully\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Check in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Check in and mark order as paid\",\"QYLpB4\":\"Check in only\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Check out this event!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Check-In List deleted successfully\",\"+hBhWk\":\"Check-in list has expired\",\"mBsBHq\":\"Check-in list is not active\",\"vPqpQG\":\"Check-in list not found\",\"tejfAy\":\"Check-In Lists\",\"hD1ocH\":\"Check-In URL copied to clipboard\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"znIg+z\":\"Checkout\",\"1WnhCL\":\"Checkout Settings\",\"6imsQS\":\"Chinese (Simplified)\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"3wV73y\":\"City\",\"FG98gC\":\"Clear Search Text\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Click to copy\",\"yz7wBu\":\"Close\",\"62Ciis\":\"Close sidebar\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Code must be between 3 and 50 characters long\",\"oqr9HB\":\"Collapse this product when the event page is initially loaded\",\"jZlrte\":\"Color\",\"Vd+LC3\":\"Color must be a valid hex color code. Example: #ffffff\",\"1HfW/F\":\"Colors\",\"VZeG/A\":\"Coming Soon\",\"yPI7n9\":\"Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event\",\"NPZqBL\":\"Complete Order\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Complete Payment\",\"qqWcBV\":\"Completed\",\"6HK5Ct\":\"Completed orders\",\"NWVRtl\":\"Completed Orders\",\"DwF9eH\":\"Component Code\",\"Tf55h7\":\"Configured Discount\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continue\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Continue Button Text\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"r2B2P8\":\"Copy Check-In URL\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"k9RiLi\":\"Create a Product\",\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"VwdqVy\":\"Create Capacity Assignment\",\"EwoMtl\":\"Create category\",\"XletzW\":\"Create Category\",\"WVbTwK\":\"Create Check-In List\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"a0EjD+\":\"Create Product\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Create Promo Code\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"UEqXyt\":\"Custom Range\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Y9Z/vP\":\"Customize the event homepage and checkout messaging\",\"2E2O5H\":\"Customize the miscellaneous settings for this event\",\"iJhSxe\":\"Customize the SEO settings for this event\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Danger zone\",\"ZQKLI1\":\"Danger Zone\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Дата и время\",\"JJhRbH\":\"Day one capacity\",\"cnGeoo\":\"Delete\",\"jRJZxD\":\"Delete Capacity\",\"VskHIx\":\"Delete category\",\"Qrc8RZ\":\"Delete Check-In List\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Description\",\"YC3oXa\":\"Description for check-in staff\",\"URmyfc\":\"Details\",\"1lRT3t\":\"Disabling this capacity will track sales but not stop them when the limit is reached\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"DZlSLn\":\"Document Label\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donation / Pay what you'd like product\",\"OvNbls\":\"Download .ics\",\"kodV18\":\"Download CSV\",\"CELKku\":\"Download invoice\",\"LQrXcu\":\"Download Invoice\",\"QIodqd\":\"Download QR Code\",\"yhjU+j\":\"Downloading Invoice\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Dropdown selection\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicate event\",\"3ogkAk\":\"Duplicate Event\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Duplicate Options\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kBkYSa\":\"Edit Capacity\",\"oHE9JT\":\"Edit Capacity Assignment\",\"j1Jl7s\":\"Edit category\",\"FU1gvP\":\"Edit Check-In List\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"tdD/QN\":\"Edit Product\",\"n143Tq\":\"Edit Product Category\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"poTr35\":\"Edit user\",\"GTOcxw\":\"Edit User\",\"pqFrv2\":\"eg. 2.50 for $2.50\",\"3yiej1\":\"eg. 23.5 for 23.5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Email & Notification Settings\",\"ATGYL1\":\"Email address\",\"hzKQCy\":\"Email Address\",\"HqP6Qf\":\"Email change cancelled successfully\",\"mISwW1\":\"Email change pending\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"8oPbg1\":\"Enable Invoicing\",\"j6w7d/\":\"Enable this capacity to stop product sales when the limit is reached\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"English\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"SlfejT\":\"Error\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Event Date\",\"0Zptey\":\"Event Defaults\",\"QcCPs8\":\"Event Details\",\"6fuA9p\":\"Event duplicated successfully\",\"AEuj2m\":\"Event Homepage\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"nMU2d3\":\"Event URL\",\"tst44n\":\"Events\",\"sZg7s1\":\"Expiration date\",\"KnN1Tu\":\"Expires\",\"uaSvqt\":\"Expiry Date\",\"GS+Mus\":\"Export\",\"9xAp/j\":\"Failed to cancel attendee\",\"ZpieFv\":\"Failed to cancel order\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Failed to download invoice. Please try again.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Failed to load Check-In List\",\"ZQ15eN\":\"Failed to resend ticket email\",\"ejXy+D\":\"Failed to sort products\",\"PLUB/s\":\"Fee\",\"/mfICu\":\"Fees\",\"LyFC7X\":\"Filter Orders\",\"cSev+j\":\"Filters\",\"CVw2MU\":[\"Filters (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"First Invoice Number\",\"V1EGGU\":\"First name\",\"kODvZJ\":\"First Name\",\"S+tm06\":\"First name must be between 1 and 50 characters\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"First Used\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"P/OAYJ\":\"Free Product\",\"vAbVy9\":\"Free product, no payment information required\",\"nLC6tu\":\"French\",\"Weq9zb\":\"General\",\"DDcvSo\":\"German\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Calendar\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Gross sales\",\"yRg26W\":\"Gross Sales\",\"R4r4XO\":\"Guests\",\"26pGvx\":\"Have a promo code?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Here is an example of how you can use the component in your application.\",\"Y1SSqh\":\"Here is the React component you can use to embed the widget in your application.\",\"QuhVpV\":[\"Hi \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Hide product after sale end date\",\"06s3w3\":\"Hide product before sale start date\",\"axVMjA\":\"Hide product unless user has applicable promo code\",\"ySQGHV\":\"Hide product when sold out\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Hide this product from customers\",\"Da29Y6\":\"Hide this question\",\"fvDQhr\":\"Hide this tier from users\",\"lNipG+\":\"Hiding a product will prevent users from seeing it on the event page.\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"How many minutes the customer has to complete their order. We recommend at least 15 minutes\",\"ySxKZe\":\"How many times can this code be used?\",\"dZsDbK\":[\"HTML character limit exceeded: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"If enabled, check-in staff can either mark attendees as checked in or mark the order as paid and check in the attendees. If disabled, attendees associated with unpaid orders cannot be checked in.\",\"muXhGi\":\"If enabled, the organizer will receive an email notification when a new order is placed\",\"6fLyj/\":\"If you did not request this change, please immediately change your password.\",\"n/ZDCz\":\"Image deleted successfully\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"VyUuZb\":\"Image URL\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"kO44sp\":\"Include connection details for your online event. These details will be shown on the order summary page and attendee ticket page.\",\"FlQKnG\":\"Include tax and fees in the price\",\"Vi+BiW\":[\"Includes \",[\"0\"],\" products\"],\"lpm0+y\":\"Includes 1 product\",\"UiAk5P\":\"Insert Image\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"bKOYkd\":\"Invoice downloaded successfully\",\"alD1+n\":\"Invoice Notes\",\"kOtCs2\":\"Invoice Numbering\",\"UZ2GSZ\":\"Invoice Settings\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Item\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Label\",\"vXIe7J\":\"Language\",\"2LMsOq\":\"Last 12 months\",\"vfe90m\":\"Last 14 days\",\"aK4uBd\":\"Last 24 hours\",\"uq2BmQ\":\"Last 30 days\",\"bB6Ram\":\"Last 48 hours\",\"VlnB7s\":\"Last 6 months\",\"ct2SYD\":\"Last 7 days\",\"XgOuA7\":\"Last 90 days\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"tKCBU0\":\"Last Used\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Leave blank to use the default word \\\"Invoice\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Loading...\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Make billing address mandatory during checkout\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"onpJrA\":\"Manage attendee\",\"n4SpU5\":\"Manage event\",\"WVgSTy\":\"Manage order\",\"1MAvUY\":\"Manage payment and invoicing settings for this event.\",\"cQrNR3\":\"Manage Profile\",\"AtXtSw\":\"Manage taxes and fees which can be applied to your products\",\"ophZVW\":\"Manage tickets\",\"DdHfeW\":\"Manage your account details and default settings\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Manage your users and their permissions\",\"1m+YT2\":\"Mandatory questions must be answered before the customer can checkout.\",\"Dim4LO\":\"Manually add an Attendee\",\"e4KdjJ\":\"Manually Add Attendee\",\"vFjEnF\":\"Mark as paid\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"RDie0n\":\"Miscellaneous\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"VD0iA7\":\"Multiple price options. Perfect for early bird products etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"fj5byd\":\"N/A\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"1UzENP\":\"No\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"No archived events to show.\",\"q2LEDV\":\"No attendees found for this order.\",\"zlHa5R\":\"No attendees have been added to this order.\",\"Wjz5KP\":\"No Attendees to show\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"No Capacity Assignments\",\"a/gMx2\":\"No Check-In Lists\",\"tMFDem\":\"No data available\",\"6Z/F61\":\"No data to show. Please select a date range\",\"fFeCKc\":\"No Discount\",\"HFucK5\":\"No ended events to show.\",\"yAlJXG\":\"No events to show\",\"GqvPcv\":\"No filters available\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"RBXXtB\":\"No payment methods are currently available. Please contact the event organizer for assistance.\",\"ZWEfBE\":\"No Payment Required\",\"ZPoHOn\":\"No product associated with this attendee.\",\"Ya1JhR\":\"No products available in this category.\",\"FTfObB\":\"No Products Yet\",\"+Y976X\":\"No Promo Codes to show\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"Ev2r9A\":\"No results\",\"gk5uwN\":\"No Search Results\",\"RHyZUL\":\"No search results.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notes\",\"jtrY3S\":\"Nothing to show yet\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Number of days allowed for payment (leave blank to omit payment terms from invoices)\",\"n86jmj\":\"Number Prefix\",\"mwe+2z\":\"Offline orders are not reflected in event statistics until the order is marked as paid.\",\"dWBrJX\":\"Offline payment failed. Please try again or contact the event organizer.\",\"fcnqjw\":\"Offline Payment Instructions\",\"+eZ7dp\":\"Offline Payments\",\"ojDQlR\":\"Offline Payments Information\",\"u5oO/W\":\"Offline Payments Settings\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"ZxnK5C\":\"Once you start collecting data, you'll see it here.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Ongoing\",\"z+nuVJ\":\"Online event\",\"WKHW0N\":\"Online Event Details\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Open Check-In Page\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"oPknTP\":\"Optional additional information to appear on all invoices (e.g., payment terms, late payment fees, return policy)\",\"OrXJBY\":\"Optional prefix for invoice numbers (e.g., INV-)\",\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"nAn4Oe\":\"Order marked as paid\",\"uzEfRz\":\"Order Notes\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Order Reference\",\"acIJ41\":\"Order Status\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"3y+V4p\":\"Organization Address\",\"GVcaW6\":\"Organization Details\",\"nfnm9D\":\"Organization Name\",\"G5RhpL\":\"Organizer\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"l894xP\":\"Organizers can only manage events and products. They cannot manage users, account settings or billing information.\",\"fdjq4c\":\"Padding\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Page not found\",\"QbrUIo\":\"Page views\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"paid\",\"HVW65c\":\"Paid Product\",\"ZfxaB4\":\"Partially Refunded\",\"8ZsakT\":\"Password\",\"TUJAyx\":\"Password must be a minimum of 8 characters\",\"vwGkYB\":\"Password must be at least 8 characters\",\"BLTZ42\":\"Password reset successfully. Please login with your new password.\",\"f7SUun\":\"Passwords are not the same\",\"aEDp5C\":\"Paste this where you want the widget to appear.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Payment\",\"Lg+ewC\":\"Payment & Invoicing\",\"DZjk8u\":\"Payment & Invoicing Settings\",\"lflimf\":\"Payment Due Period\",\"JhtZAK\":\"Payment Failed\",\"JEdsvQ\":\"Payment Instructions\",\"bLB3MJ\":\"Payment Methods\",\"QzmQBG\":\"Payment provider\",\"lsxOPC\":\"Payment Received\",\"wJTzyi\":\"Payment Status\",\"xgav5v\":\"Payment succeeded!\",\"R29lO5\":\"Payment Terms\",\"/roQKz\":\"Percentage\",\"vPJ1FI\":\"Percentage Amount\",\"xdA9ud\":\"Place this in the of your website.\",\"blK94r\":\"Please add at least one option\",\"FJ9Yat\":\"Please check the provided information is correct\",\"TkQVup\":\"Please check your email and password and try again\",\"sMiGXD\":\"Please check your email is valid\",\"Ajavq0\":\"Please check your email to confirm your email address\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Please continue in the new tab\",\"hcX103\":\"Please create a product\",\"cdR8d6\":\"Please create a ticket\",\"x2mjl4\":\"Please enter a valid image URL that points to an image.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"C63rRe\":\"Please return to the event page to start over.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Please select at least one product\",\"igBrCH\":\"Please verify your email address to access all features\",\"/IzmnP\":\"Please wait while we prepare your invoice...\",\"MOERNx\":\"Portuguese\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"BI7D9d\":\"Price not set\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Price Type\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"DKwDdj\":\"Print Tickets\",\"K47k8R\":\"Product\",\"1JwlHk\":\"Product Category\",\"U61sAj\":\"Product category updated successfully.\",\"1USFWA\":\"Product deleted successfully\",\"4Y2FZT\":\"Product Price Type\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Product Sales\",\"U/R4Ng\":\"Product Tier\",\"sJsr1h\":\"Product Type\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Product(s)\",\"N0qXpE\":\"Products\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Products sold\",\"/u4DIx\":\"Products Sold\",\"DJQEZc\":\"Products sorted successfully\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"P5sgAk\":\"Promo Code\",\"yKWfjC\":\"Promo Code page\",\"RVb8Fo\":\"Promo Codes\",\"BZ9GWa\":\"Promo codes can be used to offer discounts, presale access, or provide special access to your event.\",\"OP094m\":\"Promo Codes Report\",\"4kyDD5\":\"Provide additional context or instructions for this question. Use this field to add terms\\nand conditions, guidelines, or any important information that attendees need to know before answering.\",\"toutGW\":\"QR Code\",\"LkMOWF\":\"Quantity Available\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Question deleted\",\"avf0gk\":\"Question Description\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"ROv2ZT\":\"Questions & Answers\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Refund Failed\",\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Refund Pending\",\"xHpVRl\":\"Refund Status\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"9+8Vez\":\"Remaining Uses\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"t9yxlZ\":\"Reports\",\"prZGMe\":\"Require Billing Address\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"OfhWJH\":\"Reset\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restore event\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Return to Event Page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hBsw5C\":\"Sales ended\",\"kpAzPe\":\"Sales start\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Save\",\"IUwGEM\":\"Save Changes\",\"U65fiW\":\"Save Organizer\",\"UGT5vp\":\"Save Settings\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"+pr/FY\":\"Search by event name...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Search by name...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Search capacity assignments...\",\"r9M1hc\":\"Search check-in lists...\",\"+0Yy2U\":\"Search products\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"02ePaq\":[\"Select \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Select category...\",\"kWI/37\":\"Select organizer\",\"ixIx1f\":\"Select Product\",\"3oSV95\":\"Select Product Tier\",\"C4Y1hA\":\"Select products\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"OMX4tH\":\"Select tickets\",\"DrwwNd\":\"Select time period\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Send a message\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Send Message\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"L0pJmz\":\"Set the starting number for invoice numbering. This cannot be changed once invoices have been generated.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"B2V3cA\":\"Share Event\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Show available product quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"1SbbH8\":\"Shown to the customer after they checkout, on the order summary page.\",\"YfHZv0\":\"Shown to the customer before they checkout\",\"CBBcly\":\"Shows common address fields, including country\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Single line text box\",\"+P0Cn2\":\"Skip this step\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Sold out\",\"Mi1rVn\":\"Sold Out\",\"nwtY4N\":\"Something went wrong\",\"GRChTw\":\"Something went wrong while deleting the Tax or Fee\",\"YHFrbe\":\"Something went wrong! Please try again\",\"kf83Ld\":\"Something went wrong.\",\"fWsBTs\":\"Something went wrong. Please try again.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"65A04M\":\"Spanish\",\"mFuBqb\":\"Standard product with a fixed price\",\"D3iCkb\":\"Start Date\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe payments are not enabled for this event.\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"zzDlyQ\":\"Success\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"gP22tw\":\"Successfully Created Product\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"J3RJSZ\":\"Successfully updated attendee\",\"3suLF0\":\"Successfully updated Capacity Assignment\",\"Z+rnth\":\"Successfully updated Check-In List\",\"vzJenu\":\"Successfully Updated Email Settings\",\"7kOMfV\":\"Successfully Updated Event\",\"G0KW+e\":\"Successfully Updated Homepage Design\",\"k9m6/E\":\"Successfully Updated Homepage Settings\",\"y/NR6s\":\"Successfully Updated Location\",\"73nxDO\":\"Successfully Updated Misc Settings\",\"4H80qv\":\"Successfully updated order\",\"6xCBVN\":\"Successfully Updated Payment & Invoicing Settings\",\"1Ycaad\":\"Successfully updated product\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"dFHcIn\":\"Tax Details\",\"wQzCPX\":\"Tax information to appear at the bottom of all invoices (e.g., VAT number, tax registration)\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"qu6/03\":\"Taxes and Fees\",\"gypigA\":\"That promo code is invalid\",\"5ShqeM\":\"The check-in list you are looking for does not exist.\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"o7s5FA\":\"The language the attendee will receive emails in.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"HsFnrk\":[\"The maximum number of products for \",[\"0\"],\"is \",[\"1\"]],\"TSAiPM\":\"The page you are looking for does not exist\",\"MSmKHn\":\"The price displayed to the customer will include taxes and fees.\",\"6zQOg1\":\"The price displayed to the customer will not include taxes and fees. They will be shown separately\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used\",\"wDx3FF\":\"There are no products available for this event\",\"pNgdBv\":\"There are no products available in this category\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"F89D36\":\"There was an error marking the order as paid\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"This attendee has an unpaid order.\",\"mf3FrP\":\"This category doesn't have any products yet.\",\"8QH2Il\":\"This category is hidden from public view\",\"xxv3BZ\":\"This check-in list has expired\",\"Sa7w7S\":\"This check-in list has expired and is no longer available for check-ins.\",\"Uicx2U\":\"This check-in list is active\",\"1k0Mp4\":\"This check-in list is not active yet\",\"K6fmBI\":\"This check-in list is not yet active and is not available for check-ins.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"This information will be shown on the payment page, order summary page, and order confirmation email.\",\"XAHqAg\":\"This is a general product, like a t-shirt or a mug. No ticket will be issued\",\"CNk/ro\":\"This is an online event\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"55i7Fa\":\"This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message\",\"RjwlZt\":\"This order has already been paid.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"Q0zd4P\":\"This order has expired. Please start again.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"This order page is no longer available.\",\"i0TtkR\":\"This overrides all visibility settings and will hide the product from all customers.\",\"cRRc+F\":\"This product cannot be deleted because it is associated with an order. You can hide it instead.\",\"3Kzsk7\":\"This product is a ticket. Buyers will be issued a ticket upon purchase\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"54q0zp\":\"Tickets for\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"jZj9y9\":\"Tiered Product\",\"8wITQA\":\"Tiered products allow you to offer multiple price options for the same product. This is perfect for early bird products, or offering different price options for different groups of people.\",\"nn3mSR\":\"Time left:\",\"s/0RpH\":\"Times used\",\"y55eMd\":\"Times Used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total Before Discounts\",\"NRWNfv\":\"Total Discount Amount\",\"BxsfMK\":\"Total Fees\",\"2bR+8v\":\"Total Gross Sales\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"jEbkcB\":\"Total Refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"FMdMfZ\":\"Unable to check in attendee\",\"bPWBLL\":\"Unable to check out attendee\",\"9+P7zk\":\"Unable to create product. Please check the your details\",\"WLxtFC\":\"Unable to create product. Please check your details\",\"/cSMqv\":\"Unable to create question. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"nnfSdK\":\"Unique Customers\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"/p9Fhq\":\"Unlimited available\",\"E0q9qH\":\"Unlimited usages allowed\",\"h10Wm5\":\"Unpaid Order\",\"ia8YsC\":\"Upcoming\",\"TlEeFv\":\"Upcoming Events\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"fiV0xj\":\"Usage Limit\",\"sGEOe4\":\"Use a blurred version of the cover image as the background\",\"OadMRm\":\"Use cover image\",\"7PzzBU\":\"User\",\"yDOdwQ\":\"User Management\",\"Sxm8rQ\":\"Users\",\"VEsDvU\":\"Users can change their email in <0>Profile Settings\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"jpctdh\":\"View\",\"Pte1Hv\":\"View Attendee Details\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP check-in list\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"45Srzt\":\"We couldn't delete the category. Please try again.\",\"/DNy62\":[\"We couldn't find any tickets matching \",[\"0\"]],\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"NmpGKr\":\"We couldn't reorder the categories. Please try again.\",\"BJtMTd\":\"We recommend dimensions of 1950px by 650px, a ratio of 3:1, and a maximum file size of 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"We were unable to confirm your payment. Please try again or contact support.\",\"Gspam9\":\"We're processing your order. Please wait...\",\"LuY52w\":\"Welcome aboard! Please login to continue.\",\"dVxpp5\":[\"Welcome back\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"What are Tiered Products?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"What is a Category?\",\"gxeWAU\":\"What products does this code apply to?\",\"hFHnxR\":\"What products does this code apply to? (Applies to all by default)\",\"AeejQi\":\"What products should this capacity apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"gyLUYU\":\"When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page.\",\"D3opg4\":\"When offline payments are enabled, users will be able to complete their orders and receive their tickets. Their tickets will clearly indicate the order is not paid, and the check-in tool will notify the check-in staff if an order requires payment.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Which tickets should be associated with this check-in list?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"+G/XiQ\":\"Year to date\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\".\"],\"gGhBmF\":\"You are offline\",\"sdB7+6\":\"You can create a promo code which targets this product on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"You cannot change the product type as there are attendees associated with this product.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"You cannot check in attendees with unpaid orders. This setting can be changed in the event settings.\",\"c9Evkd\":\"You cannot delete the last category.\",\"6uwAvx\":\"You cannot delete this price tier because there are already products sold for this tier. You can hide it instead.\",\"tFbRKJ\":\"You cannot edit the role or status of the account owner.\",\"fHfiEo\":\"You cannot refund a manually created order.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"You have access to multiple accounts. Please choose one to continue.\",\"Z6q0Vl\":\"You have already accepted this invitation. Please login to continue.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"You have run out of time to complete your order.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"You must acknowledge that this email is not promotional\",\"3ZI8IL\":\"You must agree to the terms and conditions\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"You must create a ticket before you can manually add an attendee.\",\"jE4Z8R\":\"You must have at least one price tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"You will have to mark an order as paid manually. This can be done on the manage order page.\",\"L/+xOk\":\"You'll need a ticket before you can create a check-in list.\",\"Djl45M\":\"You'll need at a product before you can create a capacity assignment.\",\"y3qNri\":\"You'll need at least one product to get started. Free, paid or let the user decide what to pay.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Your account name is used on event pages and in emails.\",\"veessc\":\"Your attendees will appear here once they have registered for your event. You can also manually add attendees.\",\"Eh5Wrd\":\"Your awesome website 🎉\",\"lkMK2r\":\"Your Details\",\"3ENYTQ\":[\"Your email request change to <0>\",[\"0\"],\" is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"KSQ8An\":\"Your Order\",\"Jwiilf\":\"Your order has been cancelled\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Your orders will appear here once they start rolling in.\",\"9TO8nT\":\"Your password\",\"P8hBau\":\"Your payment is processing.\",\"UdY1lL\":\"Your payment was not successful, please try again.\",\"fzuM26\":\"Your payment was unsuccessful. Please try again.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"x1PPdr\":\"ZIP / Postal Code\",\"BM/KQm\":\"Zip or Postal Code\",\"+LtVBt\":\"ZIP or Postal Code\",\"25QDJ1\":\"- Нажмите, чтобы опубликовать\",\"WOyJmc\":\"- Нажмите, чтобы снять с публикации\",\"ncwQad\":\"(empty)\",\"B/gRsg\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" уже зарегистрирован\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Active Webhooks\"],\"6MIiOI\":[[\"0\"],\" left\"],\"COnw8D\":[[\"0\"],\" logo\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizers\"],\"rZTf6P\":[[\"0\"],\" spots left\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"dtXkP9\":[[\"0\"],\" upcoming dates\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" of \",[\"totalCount\"],\" available\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" events\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" ticket types\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Tax/Fees\",\"B1St2O\":\"<0>Check-in lists help you manage event entry by day, area, or ticket type. You can link tickets to specific lists such as VIP zones or Day 1 passes and share a secure check-in link with staff. No account is required. Check-in works on mobile, desktop, or tablet, using a device camera or HID USB scanner. \",\"v9VSIS\":\"<0>Set a single total attendance limit that applies to multiple ticket types at once.<1>For example, if you link a <2>Day Pass and a <3>Full Weekend ticket, they will both draw from the same pool of spots. Once the limit is reached, all linked tickets automatically stop selling.\",\"vKXqag\":\"<0>This is the default quantity across all dates. Each date's capacity can further limit availability on the <1>Occurrence Schedule page.\",\"ZnVt5v\":\"<0>Webhooks instantly notify external services when events happen, like adding a new attendee to your CRM or mailing list upon registration, ensuring seamless automation.<1>Use third-party services like <2>Zapier, <3>IFTTT or <4>Make to create custom workflows and automate tasks.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" at current rate\"],\"M2DyLc\":\"1 Active Webhook\",\"6hIk/x\":\"1 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"943BwI\":\"1 день после даты окончания\",\"yj3N+g\":\"1 день после даты начала\",\"Z3etYG\":\"За 1 день до мероприятия\",\"szSnlj\":\"За 1 час до мероприятия\",\"yTsaLw\":\"1 ticket\",\"nz96Ue\":\"1 ticket type\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"За 1 неделю до мероприятия\",\"09VFYl\":\"12 tickets offered\",\"HR/cvw\":\"123 Sample Street\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"A cancellation notice has been sent to\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"A new verification code has been sent to your email\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"A short description of your organizer that will be displayed to your users.\",\"aS0jtz\":\"Abandoned\",\"uyJsf6\":\"About\",\"JvuLls\":\"Absorb fee\",\"lk74+I\":\"Absorb Fee\",\"1uJlG9\":\"Accent Color\",\"g3UF2V\":\"Accept\",\"K5+3xg\":\"Accept invitation\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Account Information\",\"EHNORh\":\"Account not found\",\"bPwFdf\":\"Accounts\",\"AhwTa1\":\"Action Required: VAT Information Needed\",\"APyAR/\":\"Active Events\",\"kCl6ja\":\"Active payment methods\",\"XJOV1Y\":\"Activity\",\"0YEoxS\":\"Add a date\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Add a Single Date\",\"CjvTPJ\":\"Add another time\",\"0XCduh\":\"Add at least one time\",\"/chGpa\":\"Add connection details for the online event.\",\"UWWRyd\":\"Add custom questions to collect additional information during checkout\",\"Z/dcxc\":\"Add Date\",\"Q219NT\":\"Add Dates\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Add location\",\"VX6WUv\":\"Add Location\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Add Question\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Add this event to your calendar\",\"BGD9Yt\":\"Add tickets\",\"uIv4Op\":\"Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active.\",\"QN2F+7\":\"Add Webhook\",\"NsWqSP\":\"Add your social media handles and website URL. These will be displayed on your public organizer page.\",\"bVjDs9\":\"Additional Fees\",\"MKqSg4\":\"Admin Access Required\",\"0Zypnp\":\"Admin Dashboard\",\"YAV57v\":\"Affiliate\",\"I+utEq\":\"Affiliate code cannot be changed\",\"/jHBj5\":\"Affiliate created successfully\",\"uCFbG2\":\"Affiliate deleted successfully\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"Affiliate sales will be tracked\",\"mJJh2s\":\"Affiliate sales will not be tracked. This will deactivate the affiliate.\",\"jabmnm\":\"Affiliate updated successfully\",\"CPXP5Z\":\"Affiliates\",\"9Wh+ug\":\"Affiliates Exported\",\"3cqmut\":\"Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"All Archived Events\",\"gKq1fa\":\"All attendees\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"All Currencies\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"All Ended Events\",\"QsYjci\":\"All Events\",\"31KB8w\":\"All failed jobs deleted\",\"D2g7C7\":\"All jobs queued for retry\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"All Statuses\",\"dr7CWq\":\"All Upcoming Events\",\"GpT6Uf\":\"Разрешить участникам обновлять информацию о билетах (имя, электронная почта) через защищенную ссылку, отправленную с подтверждением заказа.\",\"F3mW5G\":\"Разрешить клиентам присоединиться к списку ожидания, когда этот продукт распродан\",\"c4uJfc\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds.\",\"ocS8eq\":[\"Already have an account? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Уже возвращено\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"Также отменить этот заказ\",\"jkNgQR\":\"Также вернуть деньги за этот заказ\",\"xYqsHg\":\"Always available\",\"Wvrz79\":\"Amount Paid\",\"Zkymb9\":\"An email to associate with this affiliate. The affiliate will not be notified.\",\"vRznIT\":\"An error occurred while checking export status.\",\"eusccx\":\"An optional message to display on the highlighted product, e.g. \\\"Selling fast 🔥\\\" or \\\"Best value\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Answer updated successfully.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"vP3Nzg\":[\"Applies to \",[\"0\"],\", non-cancelled dates currently loaded on this page.\"],\"kkVyZZ\":\"Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything.\",\"je4muG\":[\"Applies to every \",[\"0\"],\", non-cancelled date in this event — including dates not currently loaded.\"],\"YIIQtt\":\"Apply Changes\",\"NzWX1Y\":\"Apply to\",\"Ps5oDT\":\"Apply to all tickets\",\"261RBr\":\"Approve Message\",\"naCW6Z\":\"April\",\"B495Gs\":\"Archive\",\"5sNliy\":\"Archive Event\",\"BrwnrJ\":\"Archive Organizer\",\"E5eghW\":\"Archive this event to hide it from the public. You can restore it later.\",\"eqFkeI\":\"Archive this organizer. This will also archive all events belonging to this organizer.\",\"BzcxWv\":\"Archived Organizers\",\"9cQBd6\":\"Are you sure you want to archive this event? It will no longer be visible to the public.\",\"Trnl3E\":\"Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer.\",\"wOvn+e\":[\"Are you sure you want to cancel \",[\"count\"],\" date(s)? Affected attendees will be notified by email.\"],\"GTxE0U\":\"Are you sure you want to cancel this date? Affected attendees will be notified by email.\",\"VkSk/i\":\"Вы уверены, что хотите отменить это запланированное сообщение?\",\"0aVEBY\":\"Are you sure you want to delete all failed jobs?\",\"LchiNd\":\"Are you sure you want to delete this affiliate? This action cannot be undone.\",\"vPeW/6\":\"Are you sure you want to delete this configuration? This may affect accounts using it.\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"JmVITJ\":\"Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template.\",\"aLS+A6\":\"Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template.\",\"5H3Z78\":\"Are you sure you want to delete this webhook?\",\"147G4h\":\"Are you sure you want to leave?\",\"VDWChT\":\"Are you sure you want to make this organizer draft? This will make the organizer page invisible to the public\",\"pWtQJM\":\"Are you sure you want to make this organizer public? This will make the organizer page visible to the public\",\"EOqL/A\":\"Are you sure you want to offer a spot to this person? They will receive an email notification.\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"Are you sure you want to publish this event? Once published, it will be visible to the public.\",\"4TNVdy\":\"Are you sure you want to publish this organizer profile? Once published, it will be visible to the public.\",\"8x0pUg\":\"Вы уверены, что хотите удалить эту запись из списка ожидания?\",\"cDtoWq\":[\"Are you sure you want to resend the order confirmation to \",[\"0\"],\"?\"],\"xeIaKw\":[\"Are you sure you want to resend the ticket to \",[\"0\"],\"?\"],\"BjbocR\":\"Are you sure you want to restore this event?\",\"7MjfcR\":\"Are you sure you want to restore this organizer?\",\"ExDt3P\":\"Are you sure you want to unpublish this event? It will no longer be visible to the public.\",\"5Qmxo/\":\"Are you sure you want to unpublish this organizer profile? It will no longer be visible to the public.\",\"Uqefyd\":\"Are you VAT registered in the EU?\",\"+QARA4\":\"Art\",\"tLf3yJ\":\"As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees.\",\"tMeVa/\":\"Ask for name and email for each ticket purchased\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"Assigned Tier\",\"F2rX0R\":\"At least one event type must be selected\",\"BCmibk\":\"Attempts\",\"6PecK3\":\"Attendance and check-in rates across all events\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Attendee Cancelled\",\"qvylEK\":\"Attendee Created\",\"Aspq3b\":\"Attendee details collection\",\"fpb0rX\":\"Attendee details copied from order\",\"0R3Y+9\":\"Attendee Email\",\"94aQMU\":\"Attendee Information\",\"KkrBiR\":\"Attendee information collection\",\"av+gjP\":\"Attendee Name\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Attendee Status\",\"D2qlBU\":\"Attendee Updated\",\"22BOve\":\"Участник успешно обновлен\",\"x8Vnvf\":\"Attendee's ticket not included in this list\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Attendees Exported\",\"UoIRW8\":\"Attendees registered\",\"5UbY+B\":\"Attendees with a specific ticket\",\"4HVzhV\":\"Attendees:\",\"HVkhy2\":\"Attribution Analytics\",\"dMMjeD\":\"Attribution Breakdown\",\"1oPDuj\":\"Attribution Value\",\"DBHTm/\":\"August\",\"JgREph\":\"Auto-offer is enabled\",\"V7Tejz\":\"Автообработка списка ожидания\",\"PZ7FTW\":\"Automatically detected based on background color, but can be overridden\",\"zlnTuI\":\"Automatically offer tickets to the next person when capacity becomes available. If disabled, you can manually process the waitlist from the Waitlist page.\",\"csDS2L\":\"Available\",\"clF06r\":\"Доступно для возврата\",\"NB5+UG\":\"Available Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"iH8pgl\":\"Back\",\"TeSaQO\":\"Back to Accounts\",\"X7Q/iM\":\"Back to calendar\",\"kYqM1A\":\"Back to Event\",\"s5QRF3\":\"Back to messages\",\"td/bh+\":\"Back to Reports\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"Basic Information\",\"UabgBd\":\"Body is required\",\"HWXuQK\":\"Bookmark this page to manage your order anytime.\",\"CUKVDt\":\"Brand your tickets with a custom logo, colors, and footer message.\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Business\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"Button Label\",\"ChDLlO\":\"Button Text\",\"BUe8Wj\":\"Buyer pays\",\"qF1qbA\":\"Buyers see a clean price. The platform fee is deducted from your payout.\",\"dg05rc\":\"By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.).\",\"DFqasq\":[\"By continuing, you agree to the <0>\",[\"0\"],\" Terms of Service\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Bypass Application Fees\",\"AjVXBS\":\"Calendar\",\"alkXJ5\":\"Calendar view\",\"2VLZwd\":\"Call-to-Action Button\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campaign\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Отменить все продукты и вернуть их в общий пул\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Отмена отменит всех участников, связанных с этим заказом, и вернет билеты в доступный пул.\",\"vev1Jl\":\"Cancellation\",\"Ha17hq\":[\"Cancelled \",[\"0\"],\" date(s)\"],\"01sEfm\":\"Cannot delete the system default configuration\",\"VsM1HH\":\"Capacity Assignments\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Category\",\"o+XJ9D\":\"Change\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"CIHJJf\":\"Change waitlist settings\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Charity\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"Check your email\",\"51AsAN\":\"Check your inbox! If tickets are associated with this email, you'll receive a link to view them.\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"Check-in Created\",\"F4SRy3\":\"Check-in Deleted\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Check-In List Created\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Check-in Lists\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Check-in Rate\",\"qCqdg6\":\"Check-In Status\",\"cKj6OE\":\"Check-in Summary\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinese (Traditional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"fkb+y3\":\"Choose a saved location to apply.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Choose an Organizer\",\"Crr3pG\":\"Choose calendar\",\"LAW8Vb\":\"Choose the default setting for new events. This can be overridden for individual events.\",\"pjp2n5\":\"Choose who pays the platform fee. This does not affect additional fees you've configured in your account settings.\",\"xCJdfg\":\"Clear\",\"QyOWu9\":\"Clear location — fall back to the event default\",\"V8yTm6\":\"Clear search\",\"kmnKnX\":\"Clearing removes any per-date override. Affected dates will fall back to the event's default location.\",\"/o+aQX\":\"Click to cancel\",\"gD7WGV\":\"Click to reopen for new sales\",\"CySr+W\":\"Click to view notes\",\"RG3szS\":\"close\",\"RWw9Lg\":\"Close modal\",\"XwdMMg\":\"Code can only contain letters, numbers, hyphens, and underscores\",\"+yMJb7\":\"Code is required\",\"m9SD3V\":\"Code must be at least 3 characters\",\"V1krgP\":\"Code must be no more than 20 characters\",\"psqIm5\":\"Collaborate with your team to create amazing events together.\",\"4bUH9i\":\"Collect attendee details for each ticket purchased.\",\"TkfG8v\":\"Collect details per order\",\"96ryID\":\"Collect details per ticket\",\"FpsvqB\":\"Color Mode\",\"jEu4bB\":\"Columns\",\"CWk59I\":\"Comedy\",\"rPA+Gc\":\"Communication Preferences\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"Complete your order to secure your tickets. This offer is time-limited, so don't wait too long.\",\"5YrKW7\":\"Complete your payment to secure your tickets.\",\"xGU92i\":\"Complete your profile to join the team.\",\"QOhkyl\":\"Compose\",\"ih35UP\":\"Conference Center\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"Configuration created successfully\",\"mLBUMQ\":\"Configuration deleted successfully\",\"UIENhw\":\"Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate.\",\"eeZdaB\":\"Configuration updated successfully\",\"3cKoxx\":\"Configurations\",\"8v2LRU\":\"Configure event details, location, checkout options, and email notifications.\",\"raw09+\":\"Configure how attendee details are collected during checkout\",\"FI60XC\":\"Configure Taxes & Fees\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"Confirm Email Address\",\"JRQitQ\":\"Confirm new password\",\"Auz0Mz\":\"Confirm your email to access all features.\",\"7+grte\":\"Confirmation email sent! Please check your inbox.\",\"n/7+7Q\":\"Confirmation sent to\",\"x3wVFc\":\"Congratulations! Your event is now visible to the public.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Connect Stripe to enable email template editing\",\"LmvZ+E\":\"Подключите Stripe для включения сообщений\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contact \",[\"0\"]],\"41BQ3k\":\"Contact Email\",\"KcXRN+\":\"Contact email for support\",\"m8WD6t\":\"Continue Setup\",\"0GwUT4\":\"Continue to Checkout\",\"sBV87H\":\"Continue to event creation\",\"nKtyYu\":\"Continue to next step\",\"F3/nus\":\"Continue to Payment\",\"p2FRHj\":\"Control how platform fees are handled for this event\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copied from above\",\"FxVG/l\":\"Copied to clipboard\",\"PiH3UR\":\"Copied!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Copy Affiliate Link\",\"iVm46+\":\"Copy Code\",\"cF2ICc\":\"Copy customer link\",\"+2ZJ7N\":\"Copy details to first attendee\",\"ZN1WLO\":\"Copy Email\",\"y1eoq1\":\"Copy link\",\"tUGbi8\":\"Copy my details to:\",\"y22tv0\":\"Copy this link to share it anywhere\",\"/4gGIX\":\"Copy to clipboard\",\"e0f4yB\":\"Could not delete location\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Could not retrieve address details\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Could not save date\",\"eeLExK\":\"Could not save location\",\"P0rbCt\":\"Cover Image\",\"60u+dQ\":\"Cover image will be displayed at the top of your event page\",\"2NLjA6\":\"Cover image will be displayed at the top of your organizer page\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"Create \",[\"0\"],\" Template\"],\"RKKhnW\":\"Create a custom widget to sell tickets on your site.\",\"6sk7PP\":\"Create a fixed number\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"Create a password\",\"j7xZ7J\":\"Create additional organizers to manage separate brands, departments, or event series under one account. Each organizer has its own events, settings, and public page.\",\"xfKgwv\":\"Create Affiliate\",\"tudG8q\":\"Create and configure tickets and merchandise for sale.\",\"YAl9Hg\":\"Create Configuration\",\"BTne9e\":\"Create custom email templates for this event that override the organizer defaults\",\"YIDzi/\":\"Create Custom Template\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"Create discounts, access codes for hidden tickets, and special offers.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Create for this date\",\"eWEV9G\":\"Create new password\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Create Ticket or Product\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Create trackable links to reward partners who promote your event.\",\"dkAPxi\":\"Create Webhook\",\"5slqwZ\":\"Create Your Event\",\"JQNMrj\":\"Create your first event\",\"ZCSSd+\":\"Create your own event\",\"67NsZP\":\"Creating Event...\",\"H34qcM\":\"Creating Organizer...\",\"1YMS+X\":\"Creating your event, please wait\",\"yiy8Jt\":\"Creating your organizer profile, please wait\",\"lfLHNz\":\"CTA label is required\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"Currently available for purchase\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Произвольная дата и время\",\"mimF6c\":\"Custom message after checkout\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Custom Questions\",\"axv/Mi\":\"Custom template\",\"2YeVGY\":\"Customer link copied to clipboard\",\"QMHSMS\":\"Клиент получит email с подтверждением возврата\",\"L/Qc+w\":\"Customer's email address\",\"wpfWhJ\":\"Customer's first name\",\"GIoqtA\":\"Customer's last name\",\"NihQNk\":\"Customers\",\"7gsjkI\":\"Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization.\",\"xJaTUK\":\"Customize the layout, colors, and branding of your event homepage.\",\"MXZfGN\":\"Customize the questions asked during checkout to gather important information from your attendees.\",\"iX6SLo\":\"Customize the text shown on the continue button\",\"pxNIxa\":\"Customize your email template using Liquid templating\",\"3trPKm\":\"Customize your organizer page appearance\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"Daily revenue, taxes, fees, and refunds across all events\",\"zgCHnE\":\"Daily Sales Report\",\"nHm0AI\":\"Daily sales, tax, and fee breakdown\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Dark\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"lnYE59\":\"Date of the event\",\"gnBreG\":\"Дата размещения заказа\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"VTsZuy\":\"Dates and times are managed on the\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Decline\",\"ovBPCi\":\"Default\",\"JtI4vj\":\"Default attendee information collection\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Default Fee Handling\",\"1bZAZA\":\"Default template will be used\",\"HNlEFZ\":\"delete\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Delete Affiliate\",\"KZN4Lc\":\"Delete All\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Delete Event\",\"+jw/c1\":\"Delete image\",\"hdyeZ0\":\"Delete Job\",\"xxjZeP\":\"Delete location\",\"sY3tIw\":\"Delete Organizer\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Delete Template\",\"mxsm1o\":\"Delete this question? This cannot be undone.\",\"snMaH4\":\"Delete webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deselect All\",\"NvuEhl\":\"Design Elements\",\"H8kMHT\":\"Didn't receive the code?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Dismiss this message\",\"BREO0S\":\"Отображать флажок, позволяющий клиентам подписаться на маркетинговые сообщения от этого организатора мероприятий.\",\"pfa8F0\":\"Display name\",\"Kdpf90\":\"Don't forget!\",\"352VU2\":\"Don't have an account? <0>Sign up\",\"AXXqG+\":\"Donation\",\"DPfwMq\":\"Done\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"Download sales, attendee, and financial reports for all completed orders.\",\"eneWvv\":\"Draft\",\"Ts8hhq\":\"Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable.\",\"TnzbL+\":\"Due to the high risk of spam, you must connect a Stripe account before you can send messages to attendees.\\nThis is to ensure that all event organizers are verified and accountable.\",\"euc6Ns\":\"Duplicate\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplicate Product\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Dutch\",\"22xieU\":\"e.g. 180 (3 hours)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"e.g., Get Tickets, Register Now\",\"fc7wGW\":\"e.g., Important update about your tickets\",\"54MPqC\":\"e.g., Standard, Premium, Enterprise\",\"3RQ81z\":\"Each person will receive an email with a reserved spot to complete their purchase.\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Edit \",[\"0\"],\" Template\"],\"v4+lcZ\":\"Edit Affiliate\",\"2iZEz7\":\"Edit Answer\",\"t2bbp8\":\"Редактировать участника\",\"etaWtB\":\"Редактировать данные участника\",\"+guao5\":\"Edit Configuration\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Edit location\",\"8oivFT\":\"Edit Location\",\"vRWOrM\":\"Редактировать данные заказа\",\"fW5sSv\":\"Edit webhook\",\"nP7CdQ\":\"Edit Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Education\",\"iiWXDL\":\"Eligibility Failures\",\"zPiC+q\":\"Eligible Check-In Lists\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"Email & Templates\",\"hbwCKE\":\"Email address copied to clipboard\",\"dSyJj6\":\"Email addresses do not match\",\"elW7Tn\":\"Email Body\",\"ZsZeV2\":\"Email is required\",\"Be4gD+\":\"Email Preview\",\"6IwNUc\":\"Email Templates\",\"H/UMUG\":\"Email Verification Required\",\"L86zy2\":\"Email verified successfully!\",\"FSN4TS\":\"Embed Widget\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"Включить самообслуживание для участников\",\"hEtQsg\":\"Включить самообслуживание для участников по умолчанию\",\"Upeg/u\":\"Enable this template for sending emails\",\"7dSOhU\":\"Включить список ожидания\",\"RxzN1M\":\"Enabled\",\"xDr/ct\":\"End\",\"sGjBEq\":\"End Date & Time (optional)\",\"PKXt9R\":\"End date must be after start date\",\"UmzbPa\":\"End date of the occurrence\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"End time (optional)\",\"jpNdOC\":\"End time of the occurrence\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Enter a subject and body to see the preview\",\"khyScF\":\"Enter a time to shift by.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Enter affiliate email (optional)\",\"ARkzso\":\"Enter affiliate name\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"Введите электронную почту\",\"INDKM9\":\"Enter email subject...\",\"xUgUTh\":\"Введите имя\",\"9/1YKL\":\"Введите фамилию\",\"VpwcSk\":\"Enter new password\",\"kWg31j\":\"Enter unique affiliate code\",\"C3nD/1\":\"Enter your email\",\"VmXiz4\":\"Enter your email and we'll send you instructions to reset your password.\",\"n9V+ps\":\"Enter your name\",\"IdULhL\":\"Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)\",\"o21Y+P\":\"entries\",\"X88/6w\":\"Записи появятся здесь, когда клиенты присоединятся к списку ожидания распроданных продуктов.\",\"LslKhj\":\"Error loading logs\",\"VCNHvW\":\"Event Archived\",\"ZD0XSb\":\"Event archived successfully\",\"WgD6rb\":\"Event Category\",\"b46pt5\":\"Event Cover Image\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Event Created\",\"1Hzev4\":\"Event custom template\",\"7u9/DO\":\"Event deleted successfully\",\"imgKgl\":\"Event Description\",\"kJDmsI\":\"Event details\",\"m/N7Zq\":\"Event Full Address\",\"Nl1ZtM\":\"Event Location\",\"PYs3rP\":\"Event name\",\"HhwcTQ\":\"Event Name\",\"WZZzB6\":\"Event name is required\",\"Wd5CDM\":\"Event name should be less than 150 characters\",\"4JzCvP\":\"Event Not Available\",\"Gh9Oqb\":\"Event organizer name\",\"mImacG\":\"Event Page\",\"Hk9Ki/\":\"Event restored successfully\",\"JyD0LH\":\"Event Settings\",\"cOePZk\":\"Event Time\",\"e8WNln\":\"Event timezone\",\"GeqWgj\":\"Event Timezone\",\"XVLu2v\":\"Event Title\",\"OfmsI9\":\"Event Too New\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Event Types\",\"+HeiVx\":\"Event Updated\",\"4K2OjV\":\"Event Venue\",\"19j6uh\":\"Events Performance\",\"PC3/fk\":\"Events Starting in Next 24 Hours\",\"nwiZdc\":[\"Every \",[\"0\"]],\"2LJU4o\":[\"Every \",[\"0\"],\" days\"],\"yLiYx+\":[\"Every \",[\"0\"],\" months\"],\"nn9ice\":[\"Every \",[\"0\"],\" weeks\"],\"Cdr8f9\":[\"Every \",[\"0\"],\" weeks on \",[\"1\"]],\"GVEHRk\":[\"Every \",[\"0\"],\" years\"],\"fTFfOK\":\"Every email template must include a call-to-action button that links to the appropriate page\",\"BVinvJ\":\"Examples: \\\"How did you hear about us?\\\", \\\"Company name for invoice\\\"\",\"2hGPQG\":\"Examples: \\\"T-shirt size\\\", \\\"Meal preference\\\", \\\"Job title\\\"\",\"qNuTh3\":\"Exception\",\"M1RnFv\":\"Expired\",\"kF8HQ7\":\"Export Answers\",\"2KAI4N\":\"Export CSV\",\"JKfSAv\":\"Export failed. Please try again.\",\"SVOEsu\":\"Export started. Preparing file...\",\"wuyaZh\":\"Export successful\",\"9bpUSo\":\"Exporting Affiliates\",\"jtrqH9\":\"Exporting Attendees\",\"R4Oqr8\":\"Exporting complete. Downloading file...\",\"UlAK8E\":\"Exporting Orders\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Failed\",\"8uOlgz\":\"Failed At\",\"tKcbYd\":\"Failed Jobs\",\"SsI9v/\":\"Failed to abandon order. Please try again.\",\"LdPKPR\":\"Failed to assign configuration\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Failed to cancel message\",\"cEFg3R\":\"Failed to create affiliate\",\"dVgNF1\":\"Failed to create configuration\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Failed to create template\",\"aFk48v\":\"Failed to delete configuration\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Failed to delete event\",\"Zw6LWb\":\"Failed to delete job\",\"tq0abZ\":\"Failed to delete jobs\",\"2mkc3c\":\"Failed to delete organizer\",\"vKMKnu\":\"Failed to delete question\",\"xFj7Yj\":\"Failed to delete template\",\"jo3Gm6\":\"Failed to export affiliates\",\"Jjw03p\":\"Failed to export attendees\",\"ZPwFnN\":\"Failed to export orders\",\"zGE3CH\":\"Failed to export report. Please try again.\",\"lS9/aZ\":\"Не удалось загрузить получателей\",\"X4o0MX\":\"Failed to load Webhook\",\"ETcU7q\":\"Failed to offer spot\",\"5670b9\":\"Failed to offer tickets\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"Failed to remove from waitlist\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"Failed to reorder questions\",\"EJPAcd\":\"Не удалось повторно отправить подтверждение заказа\",\"DjSbj3\":\"Не удалось повторно отправить билет\",\"YQ3QSS\":\"Failed to resend verification code\",\"wDioLj\":\"Failed to retry job\",\"DKYTWG\":\"Failed to retry jobs\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"Failed to save template\",\"l6acRV\":\"Failed to save VAT settings. Please try again.\",\"T6B2gk\":\"Failed to send message. Please try again.\",\"lKh069\":\"Failed to start export job\",\"t/KVOk\":\"Failed to start impersonation. Please try again.\",\"QXgjH0\":\"Failed to stop impersonation. Please try again.\",\"i0QKrm\":\"Failed to update affiliate\",\"NNc33d\":\"Failed to update answer.\",\"E9jY+o\":\"Не удалось обновить участника\",\"uQynyf\":\"Failed to update configuration\",\"i2PFQJ\":\"Failed to update event status\",\"EhlbcI\":\"Failed to update messaging tier\",\"rpGMzC\":\"Не удалось обновить заказ\",\"T2aCOV\":\"Failed to update organizer status\",\"Eeo/Gy\":\"Failed to update setting\",\"kqA9lY\":\"Failed to update VAT settings\",\"7/9RFs\":\"Failed to upload image.\",\"nkNfWu\":\"Failed to upload image. Please try again.\",\"rxy0tG\":\"Failed to verify email\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"Fee Currency\",\"/sV91a\":\"Fee Handling\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Fees Bypassed\",\"cf35MA\":\"Festival\",\"pAey+4\":\"File is too large. Maximum size is 5MB.\",\"VejKUM\":\"Fill in your details above first\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filter Attendees\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filter by Event\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"First\",\"1vBhpG\":\"First attendee\",\"4pwejF\":\"Имя обязательно\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Fixed Fee\",\"zWqUyJ\":\"Fixed fee charged per transaction\",\"LWL3Bs\":\"Fixed fee must be 0 or greater\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"lWxAUo\":\"Food & Drink\",\"nFm+5u\":\"Footer Text\",\"a8nooQ\":\"Fourth\",\"mob/am\":\"Fr\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"MY2SVM\":\"Полный возврат\",\"UsIfa8\":\"Full resolved address\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"General Admission\",\"3ep0Gx\":\"General information about your organizer\",\"ziAjHi\":\"Generate\",\"exy8uo\":\"Generate code\",\"4CETZY\":\"Get Directions\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Get started\",\"u6FPxT\":\"Get Tickets\",\"8KDgYV\":\"Get your event ready\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Go to Event Page\",\"gHSuV/\":\"Go to home page\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Good readability\",\"76gPWk\":\"Got it\",\"aGWZUr\":\"Gross revenue\",\"n8IUs7\":\"Gross Revenue\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Guest Management\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"Hello \",[\"0\"],\", manage your platform from here.\"],\"dORAcs\":\"Here are all the tickets associated with your email address.\",\"g+2103\":\"Here is your affiliate link\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Hi.Events Fee\",\"zppscQ\":\"Hi.Events platform fees and VAT breakdown by transaction\",\"D+zLDD\":\"Hidden\",\"DRErHC\":\"Hidden from attendees - only visible to organizers\",\"NNnsM0\":\"Hide advanced options\",\"P+5Pbo\":\"Hide Answers\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"Hide Options\",\"gtEbeW\":\"Highlight\",\"NF8sdv\":\"Highlight Message\",\"MXSqmS\":\"Highlight this product\",\"7ER2sc\":\"Highlighted\",\"sq7vjE\":\"Highlighted products will have a different background color to make them stand out on the event page.\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"sy9anN\":\"How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"AVpmAa\":\"How to pay offline\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Hungarian\",\"8Wgd41\":\"I acknowledge my responsibilities as a data controller\",\"O8m7VA\":\"Я согласен получать уведомления по электронной почте, связанные с этим мероприятием\",\"YLgdk5\":\"I confirm this is a transactional message related to this event\",\"4/kP5a\":\"If a new tab did not open automatically, please click the button below to continue to checkout.\",\"W/eN+G\":\"If blank, the address will be used to generate a Google Maps link\",\"iIEaNB\":\"If you have an account with us, you will receive an email with instructions on how to reset your password.\",\"an5hVd\":\"Images\",\"tSVr6t\":\"Impersonate\",\"TWXU0c\":\"Impersonate User\",\"5LAZwq\":\"Impersonation started\",\"IMwcdR\":\"Impersonation stopped\",\"0I0Hac\":\"Important Notice\",\"yD3avI\":\"Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving.\",\"jT142F\":[\"In \",[\"diffHours\"],\" hours\"],\"OoSyqO\":[\"In \",[\"diffMinutes\"],\" minutes\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"Ip0hl5\":\"in_person, online, unset, or mixed\",\"F1Xp97\":\"Individual attendees\",\"85e6zs\":\"Insert Liquid Token\",\"38KFY0\":\"Insert Variable\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrations\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"Invalid email\",\"5tT0+u\":\"Invalid email format\",\"f9WRpE\":\"Invalid file type. Please upload an image.\",\"tnL+GP\":\"Invalid Liquid syntax. Please correct it and try again.\",\"N9JsFT\":\"Invalid VAT number format\",\"g+lLS9\":\"Invite a team member\",\"1z26sk\":\"Invite Team Member\",\"KR0679\":\"Invite Team Members\",\"aH6ZIb\":\"Invite Your Team\",\"IuMGvq\":\"Invoice\",\"Lj7sBL\":\"Italian\",\"F5/CBH\":\"item(s)\",\"BzfzPK\":\"Items\",\"rjyWPb\":\"January\",\"KmWyx0\":\"Job\",\"o5r6b2\":\"Job deleted\",\"cd0jIM\":\"Job Details\",\"ruJO57\":\"Job Name\",\"YZi+Hu\":\"Job queued for retry\",\"nCywLA\":\"Join from anywhere\",\"SNzppu\":\"Присоединиться к списку ожидания\",\"dLouFI\":[\"Join Waitlist for \",[\"productDisplayName\"]],\"2gMuHR\":\"Joined\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Just looking for your tickets?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Keep me updated on news and events from \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"4Sffp7\":\"Label for the occurrence\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Last 14 Days\",\"ve9JTU\":\"Фамилия обязательна\",\"h0Q9Iw\":\"Last Response\",\"gw3Ur5\":\"Last Triggered\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"pzAivY\":\"Latitude of the resolved location\",\"N5TErv\":\"Leave empty for unlimited\",\"L/hDDD\":\"Leave empty to apply this check-in list to all occurrences\",\"9Pf3wk\":\"Leave on to cover every ticket on the event. Turn off to pick specific tickets.\",\"Hq2BzX\":\"Let them know about the change\",\"+uexiy\":\"Let them know about the changes\",\"exYcTF\":\"Library\",\"1njn7W\":\"Light\",\"1qY5Ue\":\"Link Expired or Invalid\",\"+zSD/o\":\"Link to event homepage\",\"psosdY\":\"Link to order details\",\"6JzK4N\":\"Link to ticket\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links Allowed\",\"2BBAbc\":\"List\",\"5NZpX8\":\"List view\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live Events\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Загрузка предпросмотра...\",\"IoDI2o\":\"Loading tokens...\",\"G3Ge9Z\":\"Loading webhook logs...\",\"NFxlHW\":\"Loading Webhooks\",\"E0DoRM\":\"Location deleted\",\"NtLHT3\":\"Location Formatted Address\",\"h4vxDc\":\"Location Latitude\",\"f2TMhR\":\"Location Longitude\",\"lnCo2f\":\"Location Mode\",\"8pmGFk\":\"Location Name\",\"7w8lJU\":\"Location saved\",\"YsRXDD\":\"Location updated\",\"A/kIva\":\"location updates\",\"VppBoU\":\"Locations\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Cover\",\"gddQe0\":\"Logo and cover image for your organizer\",\"TBEnp1\":\"Logo will be displayed in the header\",\"Jzu30R\":\"Logo will be displayed on the ticket\",\"zKTMTg\":\"Longitude of the resolved location\",\"PSRm6/\":\"Найти мои билеты\",\"yJFu/X\":\"Main Office\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Manage \",[\"0\"]],\"wZJfA8\":\"Manage dates and times for your recurring event\",\"RlzPUE\":\"Manage on Stripe\",\"6NXJRK\":\"Manage Schedule\",\"zXuaxY\":\"Manage your event's waitlist, view stats, and offer tickets to attendees.\",\"BWTzAb\":\"Manual\",\"g2npA5\":\"Manual offer\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max Messages / 24h\",\"Qp4HWD\":\"Max Recipients / Message\",\"3JzsDb\":\"May\",\"agPptk\":\"Medium\",\"xDAtGP\":\"Message\",\"bECJqy\":\"Message approved successfully\",\"1jRD0v\":\"Message attendees with specific tickets\",\"uQLXbS\":\"Сообщение отменено\",\"48rf3i\":\"Message cannot exceed 5000 characters\",\"ZPj0Q8\":\"Message Details\",\"Vjat/X\":\"Message is required\",\"0/yJtP\":\"Message order owners with specific products\",\"saG4At\":\"Сообщение запланировано\",\"mFdA+i\":\"Messaging Tier\",\"v7xKtM\":\"Messaging tier updated successfully\",\"H9HlDe\":\"minutes\",\"agRWc1\":\"Minutes\",\"YYzBv9\":\"Mo\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Monetary values are approximate totals across all currencies\",\"qvF+MT\":\"Monitor and manage failed background jobs\",\"kY2ll9\":\"month\",\"HajiZl\":\"Month\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Most Viewed Events (Last 14 Days)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Music\",\"oVGCGh\":\"My Tickets\",\"8/brI5\":\"Name is required\",\"sFFArG\":\"Name must be less than 255 characters\",\"sCV5Yc\":\"Name of the event\",\"xxU3NX\":\"Net Revenue\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"New location\",\"ArHT/C\":\"New Signups\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"Nightlife\",\"HSw5l3\":\"No - I'm an individual or non-VAT registered business\",\"VHfLAW\":\"No accounts\",\"+jIeoh\":\"No accounts found\",\"074+X8\":\"No Active Webhooks\",\"zxnup4\":\"No Affiliates to show\",\"Dwf4dR\":\"No attendee questions yet\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"No attribution data found\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"No capacity\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"No check-in lists available for this event.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"No configurations found\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"No data found for the selected filters. Try adjusting the date range or currency.\",\"lFVUyx\":\"No date-specific check-in list\",\"I8mtzP\":\"No dates available this month. Try navigating to another month.\",\"yDukIL\":\"No dates match the current filters.\",\"B7phdj\":\"No dates match your filters\",\"/ZB4Um\":\"No dates match your search\",\"gEdNe8\":\"No dates scheduled yet\",\"27GYXJ\":\"No dates scheduled.\",\"pZNOT9\":\"No end date\",\"dW40Uz\":\"No events found\",\"8pQ3NJ\":\"No events starting in the next 24 hours\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"No failed jobs\",\"EpvBAp\":\"No invoice\",\"XZkeaI\":\"No logs found\",\"nrSs2u\":\"No messages found\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"No order questions yet\",\"EJ7bVz\":\"No orders found\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"No organizer activity in the last 14 days\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"No other organizers available\",\"PChXMe\":\"No Paid Orders\",\"6jYQGG\":\"No past events\",\"CHzaTD\":\"No popular events in the last 14 days\",\"zK/+ef\":\"No products available for selection\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"No products have waiting entries\",\"wYiAtV\":\"No recent account signups\",\"UW90md\":\"Получатели не найдены\",\"QoAi8D\":\"No response\",\"JeO7SI\":\"No Response\",\"EK/G11\":\"No responses yet\",\"7J5OKy\":\"No saved locations yet\",\"wpCjcf\":\"No saved locations yet. They'll appear here as you create events with addresses.\",\"mPdY6W\":\"No suggestions\",\"3sRuiW\":\"No Tickets Found\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"No upcoming events\",\"qpC74J\":\"No users found\",\"8wgkoi\":\"No viewed events in the last 14 days\",\"Arzxc1\":\"Нет записей в списке ожидания\",\"n5vdm2\":\"No webhook events have been recorded for this endpoint yet. Events will appear here once they are triggered.\",\"4GhX3c\":\"No Webhooks\",\"4+am6b\":\"No, keep me here\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Not Checked In\",\"8n10sz\":\"Not Eligible\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"UYWXdN\":\"Occurrence End Date\",\"k7dZT5\":\"Occurrence End Time\",\"Opinaj\":\"Occurrence Label\",\"V9flmL\":\"Occurrence Schedule\",\"NUTUUs\":\"Occurrence Schedule page\",\"AT8UKD\":\"Occurrence Start Date\",\"Um8bvD\":\"Occurrence Start Time\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"of\",\"9h7RDh\":\"Offer\",\"EfK2O6\":\"Offer Spot\",\"3sVRey\":\"Offer Tickets\",\"2O7Ybb\":\"Offer Timeout\",\"1jUg5D\":\"Offered\",\"l+/HS6\":[\"Offers expire after \",[\"timeoutHours\"],\" hours.\"],\"lQgMLn\":\"Office or venue name\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offline Payment\",\"nO3VbP\":[\"On sale \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"w3DG44\":\"Online Connection Details\",\"WjSpu5\":\"Online Event\",\"TP6jss\":\"Online event connection details\",\"NdOxqr\":\"Only account administrators can delete or archive events. Contact your account admin for assistance.\",\"rnoDMF\":\"Only account administrators can delete or archive organizers. Contact your account admin for assistance.\",\"bU7oUm\":\"Only send to orders with these statuses\",\"M2w1ni\":\"Only visible with promo code\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Optional nickname shown in pickers, e.g. \\\"HQ Conference Room\\\"\",\"HXMJxH\":\"Дополнительный текст для отказов от ответственности, контактной информации или благодарственных заметок (только одна строка)\",\"L565X2\":\"options\",\"8m9emP\":\"or add a single date\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Order & Ticket\",\"H5qWhm\":\"Order cancelled\",\"b6+Y+n\":\"Order complete\",\"x4MLWE\":\"Order Confirmation\",\"CsTTH0\":\"Подтверждение заказа успешно отправлено повторно\",\"ppuQR4\":\"Order Created\",\"0UZTSq\":\"Order Currency\",\"xtQzag\":\"Order details\",\"HdmwrI\":\"Order Email\",\"bwBlJv\":\"Order First Name\",\"vrSW9M\":\"Заказ отменен и возвращен. Владелец заказа уведомлен.\",\"rzw+wS\":\"Order Holders\",\"oI/hGR\":\"Order ID\",\"Pc729f\":\"Order Is Awaiting Offline Payment\",\"F4NXOl\":\"Order Last Name\",\"RQCXz6\":\"Order Limits\",\"SO9AEF\":\"Order limits set\",\"5RDEEn\":\"Order Locale\",\"vu6Arl\":\"Order Marked as Paid\",\"sLbJQz\":\"Order not found\",\"kvYpYu\":\"Order Not Found\",\"i8VBuv\":\"Order Number\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Order owner\",\"eB5vce\":\"Order owners with a specific product\",\"CxLoxM\":\"Order owners with products\",\"DoH3fD\":\"Order Payment Pending\",\"UkHo4c\":\"Order Ref\",\"EZy55F\":\"Order Refunded\",\"6eSHqs\":\"Order statuses\",\"oW5877\":\"Order Total\",\"e7eZuA\":\"Order Updated\",\"1SQRYo\":\"Заказ успешно обновлен\",\"KndP6g\":\"Order URL\",\"3NT0Ck\":\"Order was cancelled\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Orders Completed\",\"5It1cQ\":\"Orders Exported\",\"tlKX/S\":\"Orders spanning multiple dates will be flagged for manual review.\",\"UQ0ACV\":\"Orders Total\",\"B/EBQv\":\"Orders:\",\"qtGTNu\":\"Organic Accounts\",\"ucgZ0o\":\"Organization\",\"P/JHA4\":\"Organizer archived successfully\",\"S3CZ5M\":\"Organizer Dashboard\",\"GzjTd0\":\"Organizer deleted successfully\",\"Uu0hZq\":\"Email организатора\",\"Gy7BA3\":\"Адрес электронной почты организатора\",\"SQqJd8\":\"Organizer Not Found\",\"HF8Bxa\":\"Organizer restored successfully\",\"wpj63n\":\"Organizer Settings\",\"o1my93\":\"Organizer status update failed. Please try again later\",\"rLHma1\":\"Organizer status updated\",\"LqBITi\":\"Organizer/default template will be used\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"Other\",\"RsiDDQ\":\"Other Lists (Ticket Not Included)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Outgoing Messages\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"Overview\",\"6WdDG7\":\"Page\",\"8uqsE5\":\"Page no longer available\",\"QkLf4H\":\"Page URL\",\"sF+Xp9\":\"Page Views\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Paid Accounts\",\"5F7SYw\":\"Частичный возврат\",\"fFYotW\":[\"Partially refunded: \",[\"0\"]],\"i8day5\":\"Pass fee to buyer\",\"k4FLBQ\":\"Pass to Buyer\",\"Ff0Dor\":\"Past\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"Past Events\",\"/l/ckQ\":\"Paste URL\",\"URAE3q\":\"Paused\",\"4fL/V7\":\"Pay\",\"OZK07J\":\"Pay to unlock\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Payment Date\",\"ENEPLY\":\"Payment method\",\"8Lx2X7\":\"Payment received\",\"fx8BTd\":\"Payments not available\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Pending Review\",\"dPYu1F\":\"Per Attendee\",\"mQV/nJ\":\"per min\",\"VlXNyK\":\"Per order\",\"hauDFf\":\"Per ticket\",\"mnF83a\":\"Percentage Fee\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"Percentage must be between 0 and 100\",\"MkuVAZ\":\"Percentage of transaction amount\",\"/Bh+7r\":\"Performance\",\"fIp56F\":\"Permanently delete this event and all its associated data.\",\"nJeeX7\":\"Permanently delete this organizer and all its events.\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"Personal Information\",\"zmwvG2\":\"Phone\",\"SdM+Q1\":\"Pick a location\",\"tSR/oe\":\"Pick an end date\",\"e8kzpp\":\"Pick at least one day of the month\",\"35C8QZ\":\"Pick at least one day of the week\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Placed\",\"wBJR8i\":\"Planning an event?\",\"J3lhKT\":\"Platform fee\",\"RD51+P\":[\"Platform fee of \",[\"0\"],\" deducted from your payout\"],\"br3Y/y\":\"Platform Fees\",\"3buiaw\":\"Platform Fees Report\",\"kv9dM4\":\"Platform Revenue\",\"PJ3Ykr\":\"Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions.\",\"OtjenF\":\"Please enter a valid email address\",\"jEw0Mr\":\"Please enter a valid URL\",\"n8+Ng/\":\"Please enter the 5-digit code\",\"r+lQXT\":\"Please enter your VAT number\",\"Dvq0wf\":\"Please provide an image.\",\"2cUopP\":\"Please restart the checkout process.\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"Please select a date range\",\"EFq6EG\":\"Please select an image.\",\"fuwKpE\":\"Please try again.\",\"klWBeI\":\"Please wait before requesting another code\",\"hfHhaa\":\"Please wait while we prepare your affiliates for export...\",\"o+tJN/\":\"Please wait while we prepare your attendees for export...\",\"+5Mlle\":\"Please wait while we prepare your orders for export...\",\"trnWaw\":\"Polish\",\"luHAJY\":\"Popular Events (Last 14 Days)\",\"p/78dY\":\"Position\",\"TjX7xL\":\"Post Checkout Message\",\"OESu7I\":\"Prevent overselling by sharing inventory across multiple ticket types.\",\"NgVUL2\":\"Preview checkout form\",\"cs5muu\":\"Preview Event page\",\"+4yRWM\":\"Price of the ticket\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"Price Tiers\",\"ReihZ7\":\"Print Preview\",\"JnuPvH\":\"Print Ticket\",\"tYF4Zq\":\"Print to PDF\",\"LcET2C\":\"Privacy Policy\",\"8z6Y5D\":\"Обработать возврат\",\"JcejNJ\":\"Processing order\",\"EWCLpZ\":\"Product Created\",\"XkFYVB\":\"Product Deleted\",\"YMwcbR\":\"Product sales, revenue, and tax breakdown\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Product Updated\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Promo code\",\"k3wH7i\":\"Promo code usage and discount breakdown\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Promo Only\",\"dLm8V5\":\"Promotional emails may result in account suspension\",\"XoEWtl\":\"Provide at least one address field for the new location.\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"aemBRq\":\"Provider\",\"EEYbdt\":\"Publish\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Purchased\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qty\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Questions reordered\",\"b24kPi\":\"Queue\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Rate\",\"mnUGVC\":\"Превышен лимит запросов. Пожалуйста, попробуйте позже.\",\"t41hVI\":\"Re-offer Spot\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Receive product updates from \",[\"0\"],\".\"],\"pLXbi8\":\"Recent Account Signups\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Recent Orders\",\"7hPBBn\":\"получатель\",\"jp5bq8\":\"получателей\",\"yPrbsy\":\"Получатели\",\"E1F5Ji\":\"Получатели доступны после отправки сообщения\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Recurring Event\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecting to Stripe...\",\"pnoTN5\":\"Referral Accounts\",\"ACKu03\":\"Refresh Preview\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Сумма возврата\",\"qY4rpA\":\"Refund failed\",\"TspTcZ\":\"Refund Issued\",\"FaK/8G\":[\"Возврат заказа \",[\"0\"]],\"MGbi9P\":\"Refund pending\",\"BDSRuX\":[\"Refunded: \",[\"0\"]],\"bU4bS1\":\"Refunds\",\"rYXfOA\":\"Regional Settings\",\"5tl0Bp\":\"Registration Questions\",\"ZNo5k1\":\"Remaining\",\"EMnuA4\":\"Reminder scheduled\",\"Bjh87R\":\"Remove label from all dates\",\"KkJtVK\":\"Reopen for new sales\",\"XJwWJp\":\"Reopen this date for new sales? Previously cancelled tickets will not be restored — affected attendees stay cancelled and any refunds already issued are not reversed.\",\"bAwDQs\":\"Repeat every\",\"CQeZT8\":\"Report not found\",\"JEPMXN\":\"Request a new link\",\"TMLAx2\":\"Required\",\"mdeIOH\":\"Resend code\",\"sQxe68\":\"Отправить подтверждение повторно\",\"bxoWpz\":\"Resend Confirmation Email\",\"G42SNI\":\"Resend email\",\"TTpXL3\":[\"Resend in \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Отправить билет повторно\",\"Uwsg2F\":\"Reserved\",\"8wUjGl\":\"Reserved until\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"Resetting...\",\"404zLK\":\"Resolved location or venue name\",\"ZlCDf+\":\"Response\",\"bsydMp\":\"Response Details\",\"yKu/3Y\":\"Restore\",\"RokrZf\":\"Restore Event\",\"/JyMGh\":\"Restore Organizer\",\"HFvFRb\":\"Restore this event to make it visible again.\",\"DDIcqy\":\"Restore this organizer and make it active again.\",\"mO8KLE\":\"results\",\"6gRgw8\":\"Retry\",\"1BG8ga\":\"Retry All\",\"rDC+T6\":\"Retry Job\",\"CbnrWb\":\"Return to Event\",\"mdQ0zb\":\"Reusable venues for your events. Locations created from the autocomplete are saved here automatically.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Revenue Summary\",\"O/8Ceg\":\"Revenue today\",\"CfuueU\":\"Revoke Offer\",\"RIgKv+\":\"Run until a specific date\",\"JYRqp5\":\"Sa\",\"dFFW9L\":[\"Sale ended \",[\"0\"]],\"loCKGB\":[\"Sale ends \",[\"0\"]],\"wlfBad\":\"Sale Period\",\"qi81Jg\":\"Sale period dates apply across all dates in your schedule. To control pricing and availability for individual dates, use the overrides on the <0>Occurrence Schedule page.\",\"5CDM6r\":\"Sale period set\",\"ftzaMf\":\"Sale period, order limits, visibility\",\"zpekWp\":[\"Sale starts \",[\"0\"]],\"mUv9U4\":\"Sales\",\"9KnRdL\":\"Sales are paused\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Sales, orders, and performance metrics for all events\",\"3Q1AWe\":\"Sales:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Sample ticket price\",\"8BRPoH\":\"Sample Venue\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Save Social Links\",\"9Y3hAT\":\"Save Template\",\"C8ne4X\":\"Save Ticket Design\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Save VAT Settings\",\"4RvD9q\":\"Saved location\",\"cgw0cL\":\"Saved locations\",\"lvSrsT\":\"Saved Locations\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Сканировать\",\"0zd6Nm\":\"Scan a ticket to check in an attendee\",\"bQG7Qk\":\"Scanned tickets will appear here\",\"WDYSLJ\":\"Scanner mode\",\"gmB6oO\":\"Schedule\",\"j6NnBq\":\"Schedule created successfully\",\"YP7frt\":\"Schedule ends on\",\"QS1Nla\":\"Запланировать на потом\",\"NAzVVw\":\"Запланировать сообщение\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Scheduled\",\"qcP/8K\":\"Запланированное время\",\"A1taO8\":\"Search\",\"ftNXma\":\"Search affiliates...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Search by account name or email...\",\"VX+B3I\":\"Search by event title or organizer...\",\"R0wEyA\":\"Search by job name or exception...\",\"VT+urE\":\"Search by name or email...\",\"GHdjuo\":\"Search by name, email, or account...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Search by order ID, customer name, or email...\",\"4DSz7Z\":\"Search by subject, event, or account...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Search messages...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Secure Checkout\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Select a category\",\"hTKQwS\":\"Select a Date & Time\",\"e4L7bF\":\"Select a message to view its contents\",\"zPRPMf\":\"Select a tier\",\"uqpVri\":\"Select a time\",\"BFRSTT\":\"Select Account\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Select All\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Select an event\",\"CFbaPk\":\"Select attendee group\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Select currency\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Select end date and time\",\"gTN6Ws\":\"Select end time\",\"0U6E9W\":\"Select event category\",\"j9cPeF\":\"Select event types\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"Select start date and time\",\"dJZTv2\":\"Select start time\",\"x8XMsJ\":\"Select the messaging tier for this account. This controls message limits and link permissions.\",\"aT3jZX\":\"Select timezone\",\"TxfvH2\":\"Select which attendees should receive this message\",\"Ropvj0\":\"Select which events will trigger this webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"Selected\",\"uq3CXQ\":\"Sell out your event.\",\"j9b/iy\":\"Selling fast 🔥\",\"73qYgo\":\"Send as test\",\"HMAqFK\":\"Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later.\",\"22Itl6\":\"Send me a copy\",\"NpEm3p\":\"Отправить сейчас\",\"nOBvex\":\"Send real-time order and attendee data to your external systems.\",\"1lNPhX\":\"Отправить email с уведомлением о возврате\",\"eaUTwS\":\"Send reset link\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Send your first message\",\"3nMAVT\":\"Sending in 2d 4h\",\"IoAuJG\":\"Sending...\",\"h69WC6\":\"Sent\",\"BVu2Hz\":\"Sent By\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Sent to customers when they place an order\",\"LxSN5F\":\"Sent to each attendee with their ticket details\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"Set default platform fee settings for new events created under this organizer.\",\"eXssj5\":\"Set default settings for new events created under this organizer.\",\"uPe5p8\":\"Set how long each date lasts\",\"xNsRxU\":\"Set number of dates\",\"ODuUEi\":\"Set or clear the date label\",\"buHACR\":\"Set the end time of each date to be this long after its start time.\",\"TaeFgl\":\"Set to unlimited (remove limit)\",\"pd6SSe\":\"Set up a recurring schedule to automatically create dates, or add them one at a time.\",\"s0FkEx\":\"Set up check-in lists for different entrances, sessions, or days.\",\"TaWVGe\":\"Set up payouts\",\"gzXY7l\":\"Set Up Schedule\",\"xMO+Ao\":\"Set up your organization\",\"h/9JiC\":\"Set Up Your Schedule\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Setting updated\",\"Ohn74G\":\"Setup & Design\",\"1W5XyZ\":\"Setup takes just a few minutes — you don't need an existing Stripe account. Stripe handles cards, wallets, regional payment methods, and fraud protection so you can focus on your event.\",\"GG7qDw\":\"Share Affiliate Link\",\"hL7sDJ\":\"Share Organizer Page\",\"jy6QDF\":\"Shared Capacity Management\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Show advanced options\",\"cMW+gm\":[\"Show all platforms (\",[\"0\"],\" more with values)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"UVPI5D\":\"Show fewer platforms\",\"Eu/N/d\":\"Показать флажок подписки на маркетинг\",\"SXzpzO\":\"Показывать флажок подписки на маркетинг по умолчанию\",\"57tTk5\":\"Show more dates\",\"b33PL9\":\"Show more platforms\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"t1LIQW\":[\"Showing \",[\"0\"],\" of \",[\"totalRows\"],\" records\"],\"E717U9\":[\"Showing \",[\"0\"],\"–\",[\"1\"],\" of \",[\"2\"]],\"5rzhBQ\":[\"Showing \",[\"MAX_VISIBLE\"],\" of \",[\"totalAvailable\"],\" dates. Type to search.\"],\"WSt3op\":[\"Showing the first \",[\"0\"],\" — the remaining \",[\"1\"],\" session(s) will still be targeted when the message is sent.\"],\"OJLTEL\":\"Shown to staff the first time they open the check-in page.\",\"jVRHeq\":\"Signed Up\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Social Links\",\"j/TOB3\":\"Social Links & Website\",\"s9KGXU\":\"Sold\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"KTxc6k\":\"Something went wrong, please try again, or contact support if the problem persists\",\"lkE00/\":\"Something went wrong. Please try again later.\",\"wdxz7K\":\"Source\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sports\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"JcQp9p\":\"Start date & time\",\"0m/ekX\":\"Start Date & Time\",\"izRfYP\":\"Start date is required\",\"tuO4fV\":\"Start date of the occurrence\",\"2R1+Rv\":\"Start time of the event\",\"2Olov3\":\"Start time of the occurrence\",\"n9ZrDo\":\"Start typing a venue or address...\",\"qeFVhN\":[\"Starts in \",[\"diffDays\"],\" days\"],\"AOqtxN\":[\"Starts in \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Starts in \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Starts in \",[\"seconds\"],\"s\"],\"NqChgF\":\"Starts tomorrow\",\"2NbyY/\":\"Statistics\",\"GVUxAX\":\"Statistics are based on account creation date\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Stop Impersonating\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe Connected\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe Not Connected\",\"9i0++A\":\"Stripe Payment ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"eYbd7b\":\"Su\",\"ii0qn/\":\"Subject is required\",\"M7Uapz\":\"Subject will appear here\",\"6aXq+t\":\"Subject:\",\"JwTmB6\":\"Successfully Duplicated Product\",\"WUOCgI\":\"Successfully offered a spot\",\"IvxA4G\":[\"Successfully offered tickets to \",[\"count\"],\" people\"],\"kKpkzy\":\"Successfully offered tickets to 1 person\",\"Zi3Sbw\":\"Успешно удалено из списка ожидания\",\"RuaKfn\":\"Successfully Updated Address\",\"kzx0uD\":\"Successfully Updated Event Defaults\",\"5n+Wwp\":\"Successfully Updated Organizer\",\"DMCX/I\":\"Successfully Updated Platform Fee Defaults\",\"URUYHc\":\"Successfully Updated Platform Fee Settings\",\"0Dk/l8\":\"Successfully Updated SEO Settings\",\"S8Tua9\":\"Successfully Updated Settings\",\"MhOoLQ\":\"Successfully Updated Social Links\",\"CNSSfp\":\"Successfully Updated Tracking Settings\",\"kj7zYe\":\"Successfully updated Webhook\",\"dXoieq\":\"Summary\",\"/RfJXt\":[\"Summer Music Festival \",[\"0\"]],\"CWOPIK\":\"Summer Music Festival 2025\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Swedish\",\"JZTQI0\":\"Switch Organizer\",\"9YHrNC\":\"System Default\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"Tax collected grouped by tax type and event\",\"Ye321X\":\"Tax Name\",\"WyCBRt\":\"Tax Summary\",\"GkH0Pq\":\"Taxes & fees applied\",\"Rwiyt2\":\"Taxes configured\",\"iQZff7\":\"Taxes, Fees, Visibility, Sale Period, Product Highlight & Order Limits\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"Tech\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Tell people what to expect at your event\",\"NiIUyb\":\"Tell us about your event\",\"DovcfC\":\"Tell us about your organization. This information will be displayed on your event pages.\",\"69GWRq\":\"Tell us how often your event repeats and we'll create all the dates for you.\",\"mXPbwY\":\"Tell us your VAT registration status so we apply the correct VAT treatment to platform fees.\",\"7wtpH5\":\"Template Active\",\"QHhZeE\":\"Template created successfully\",\"xrWdPR\":\"Template deleted successfully\",\"G04Zjt\":\"Template saved successfully\",\"xowcRf\":\"Terms of Service\",\"6K0GjX\":\"Text may be hard to read\",\"u0F1Ey\":\"Th\",\"nm3Iz/\":\"Thank you for attending!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"The background color of the page. When using cover image, this is applied as an overlay.\",\"MDNyJz\":\"The code will expire in 10 minutes. Check your spam folder if you don't see the email.\",\"AIF7J2\":\"The currency in which the fixed fee is defined. It will be converted to the order currency at checkout.\",\"MJm4Tq\":\"The currency of the order\",\"cDHM1d\":\"Адрес электронной почты был изменен. Участник получит новый билет на обновленный адрес электронной почты.\",\"I/NNtI\":\"The event venue\",\"tXadb0\":\"The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"EBzPwC\":\"The full event address\",\"sxKqBm\":\"Полная сумма заказа будет возвращена на первоначальный способ оплаты клиента.\",\"KgDp6G\":\"Ссылка, к которой вы пытаетесь получить доступ, истекла или больше не действительна. Пожалуйста, проверьте вашу электронную почту для получения обновленной ссылки для управления вашим заказом.\",\"5OmEal\":\"The locale of the customer\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"The platform fee is added to the ticket price. Buyers pay more, but you receive the full ticket price.\",\"HxxXZO\":\"The primary brand color used for buttons and highlights\",\"z0KrIG\":\"Запланированное время обязательно\",\"EWErQh\":\"Запланированное время должно быть в будущем\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"The template body contains invalid Liquid syntax. Please correct it and try again.\",\"injXD7\":\"The VAT number could not be validated. Please check the number and try again.\",\"A4UmDy\":\"Theater\",\"tDwYhx\":\"Theme & Colors\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"HrIl0p\":[\"There's no check-in list scoped to this date. The \\\"\",[\"0\"],\"\\\" list checks in attendees across every date — staff scanning a ticket for a different date will still succeed.\"],\"dt3TwA\":\"These are the default prices and quantities across all dates. Sale dates on tiers apply globally. You can override prices and quantities for individual dates on the <0>Occurrence Schedule page.\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"These details will only be shown if the order is completed successfully.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"QP3gP+\":\"These settings apply only to copied embed code and won't be stored.\",\"HirZe8\":\"These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions.\",\"lzAaG5\":\"These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead.\",\"UlykKR\":\"Third\",\"wkP5FM\":\"This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes.\",\"SOmGDa\":\"This check-in list is scoped to a session that has been cancelled, so it can no longer be used for check-ins.\",\"XBNC3E\":\"This code will be used to track sales. Only letters, numbers, hyphens, and underscores allowed.\",\"AaP0M+\":\"This color combination may be hard to read for some users\",\"o1phK/\":[\"This date has \",[\"orderCount\"],\" order(s) that will be affected.\"],\"F/UtGt\":\"This date has been cancelled. You can still delete it to remove it permanently.\",\"BLZ7pX\":\"This date is in the past. It will be created but won't be visible to attendees under upcoming dates.\",\"7IIY0z\":\"This date is marked sold out.\",\"bddWMP\":\"This date is no longer available. Please select another date.\",\"RzEvf5\":\"Это мероприятие закончилось\",\"YClrdK\":\"This event is not published yet\",\"dFJnia\":\"This is the name of your organizer that will be displayed to your users.\",\"vt7jiq\":\"This is the only time the signing secret will be shown. Please copy it now and store it securely.\",\"L7dIM7\":\"This link is invalid or has expired.\",\"MR5ygV\":\"Эта ссылка больше не действительна\",\"9LEqK0\":\"This name is visible to end users\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"This order is being processed.\",\"sjNPMw\":\"This order was abandoned. You can start a new order anytime.\",\"OhCesD\":\"This order was cancelled. You can start a new order anytime.\",\"lyD7rQ\":\"This organizer profile is not published yet\",\"9b5956\":\"This preview shows how your email will look with sample data. Actual emails will use real values.\",\"uM9Alj\":\"This product is highlighted on the event page\",\"RqSKdX\":\"This product is sold out\",\"W12OdJ\":\"This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data.\",\"0Ew0uk\":\"Этот билет только что был отсканирован. Пожалуйста, подождите перед повторным сканированием.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"This will be used for notifications and communication with your users.\",\"rhsath\":\"This will not be visible to customers, but helps you identify the affiliate.\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Ticket Design\",\"EZC/Cu\":\"Ticket design saved successfully\",\"bbslmb\":\"Ticket Designer\",\"1BPctx\":\"Ticket for\",\"bgqf+K\":\"Ticket holder's email\",\"oR7zL3\":\"Ticket holder's name\",\"HGuXjF\":\"Ticket holders\",\"CMUt3Y\":\"Ticket Holders\",\"awHmAT\":\"ID билета\",\"6czJik\":\"Ticket Logo\",\"OkRZ4Z\":\"Ticket Name\",\"t79rDv\":\"Ticket Not Found\",\"6tmWch\":\"Ticket or Product\",\"1tfWrD\":\"Предпросмотр билета для\",\"KnjoUA\":\"Ticket price\",\"tGCY6d\":\"Ticket Price\",\"pGZOcL\":\"Билет успешно отправлен повторно\",\"8jLPgH\":\"Ticket Type\",\"X26cQf\":\"Ticket URL\",\"8qsbZ5\":\"Ticketing & Sales\",\"zNECqg\":\"tickets\",\"6GQNLE\":\"Tickets\",\"NRhrIB\":\"Tickets & Products\",\"OrWHoZ\":\"Tickets are automatically offered to waitlisted customers when capacity becomes available.\",\"EUnesn\":\"Tickets Available\",\"AGRilS\":\"Tickets Sold\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"dMtLDE\":\"to\",\"/jQctM\":\"To\",\"tiI71C\":\"To increase your limits, contact us at\",\"ecUA8p\":\"Today\",\"W428WC\":\"Toggle columns\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Top Organizers (Last 14 Days)\",\"3sZ0xx\":\"Total Accounts\",\"EaAPbv\":\"Total amount paid\",\"SMDzqJ\":\"Total Attendees\",\"orBECM\":\"Total Collected\",\"k5CU8c\":\"Total Entries\",\"4B7oCp\":\"Total Fee\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total Users\",\"oJjplO\":\"Total Views\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Track account growth and performance by attribution source\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"True if offline payment\",\"9GsDR2\":\"True if payment pending\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Try another email\",\"3DZvE7\":\"Try Hi.Events Free\",\"7P/9OY\":\"Tu\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turkish\",\"GdOhw6\":\"Turn sound off\",\"KUOhTy\":\"Turn sound on\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Type \\\"delete\\\" to confirm\",\"XxecLm\":\"Type of ticket\",\"IrVSu+\":\"Unable to duplicate product. Please check the your details\",\"Vx2J6x\":\"Unable to fetch attendee\",\"h0dx5e\":\"Не удалось присоединиться к списку ожидания\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Unattributed Accounts\",\"9uI/rE\":\"Undo\",\"b9SN9q\":\"Unique order reference\",\"Ef7StM\":\"Unknown\",\"ZBAScj\":\"Unknown Attendee\",\"MEIAzV\":\"Unnamed\",\"K6L5Mx\":\"Unnamed location\",\"X13xGn\":\"Untrusted\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Update Affiliate\",\"59qHrb\":\"Update capacity\",\"Gaem9v\":\"Update event name and description\",\"7EhE4k\":\"Update label\",\"NPQWj8\":\"Update location\",\"75+lpR\":[\"Update: \",[\"subjectTitle\"],\" — schedule changes\"],\"UOGHdA\":[\"Update: \",[\"subjectTitle\"],\" — session time changed\"],\"ogoTrw\":[\"Updated \",[\"count\"],\" date(s)\"],\"dDuona\":[\"Updated capacity for \",[\"count\"],\" date(s)\"],\"FT3LSc\":[\"Updated label for \",[\"count\"],\" date(s)\"],\"8EcY1g\":[\"Updated location for \",[\"count\"],\" date(s)\"],\"gJQsLv\":\"Upload a cover image for your organizer\",\"4kEGqW\":\"Upload a logo for your organizer\",\"lnCMdg\":\"Upload Image\",\"29w7p6\":\"Uploading image...\",\"HtrFfw\":\"URL is required\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Используйте <0>шаблоны Liquid для персонализации ваших писем\",\"g0WJMu\":\"Use all-dates list\",\"0k4cdb\":\"Use order details for all attendees. Attendee names and emails will match the buyer's information.\",\"MKK5oI\":\"Use the all-dates list, or create a list for this date?\",\"bA31T4\":\"Use the buyer's details for all attendees\",\"rnoQsz\":\"Used for borders, highlights, and QR code styling\",\"BV4L/Q\":\"UTM Analytics\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validating your VAT number...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"VAT Number\",\"CabI04\":\"VAT number must not contain spaces\",\"PMhxAR\":\"VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)\",\"gPgdNV\":\"VAT number validated successfully\",\"RUMiLy\":\"VAT number validation failed\",\"vqji3Y\":\"VAT number validation failed. Please check your VAT number.\",\"8dENF9\":\"VAT on Fee\",\"ZutOKU\":\"VAT Rate\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"VAT settings saved successfully\",\"UvYql/\":\"VAT settings saved. We're validating your VAT number in the background.\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"VAT Treatment for Platform Fees\",\"FlGprQ\":\"VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%.\",\"516oLj\":\"VAT validation service temporarily unavailable\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Verification code\",\"QDEWii\":\"Verified\",\"wCKkSr\":\"Verify Email\",\"/IBv6X\":\"Verify your email\",\"e/cvV1\":\"Verifying...\",\"fROFIL\":\"Vietnamese\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"RnvnDc\":\"View all messages sent across the platform\",\"+WFMis\":\"View and download reports across all your events. Only completed orders are included.\",\"c7VN/A\":\"View Answers\",\"SZw9tS\":\"View Details\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"View Event\",\"c6SXHN\":\"View Event Page\",\"n6EaWL\":\"View logs\",\"OaKTzt\":\"View Map\",\"zNZNMs\":\"View Message\",\"67OJ7t\":\"View Order\",\"tKKZn0\":\"View Order Details\",\"KeCXJu\":\"View order details, issue refunds, and resend confirmations.\",\"9jnAcN\":\"View Organizer Homepage\",\"1J/AWD\":\"View Ticket\",\"N9FyyW\":\"View, edit, and export your registered attendees.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Waiting\",\"quR8Qp\":\"Waiting for payment\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Список ожидания\",\"3RXFtE\":\"Список ожидания включён\",\"TwnTPy\":\"Waitlist offer expired\",\"NzIvKm\":\"Waitlist triggered\",\"aUi/Dz\":\"Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned.\",\"qeygIa\":\"We\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"We couldn't find any orders associated with this email address.\",\"2RZK9x\":\"We couldn't find the order you're looking for. The link may have expired or the order details may have changed.\",\"nefMIK\":\"We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed.\",\"miysJh\":\"We couldn't find this order. It may have been removed.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"We hit a snag loading this page. Please try again.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"We recommend a square logo with minimum dimensions of 200x200px\",\"wJzo/w\":\"We recommend dimensions of 400px by 400px, and a maximum file size of 5MB\",\"KRCDqH\":\"We use cookies to help us understand how the site is used and to improve your experience.\",\"x8rEDQ\":\"We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later.\",\"iy+M+c\":[\"We'll notify you by email if a spot becomes available for \",[\"productDisplayName\"],\".\"],\"McuGND\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"q1BizZ\":\"We'll send your tickets to this email\",\"ZOmUYW\":\"We'll validate your VAT number in the background. If there are any issues, we'll let you know.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"We've sent a 5-digit verification code to:\",\"GdWB+V\":\"Webhook created successfully\",\"2X4ecw\":\"Webhook deleted successfully\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook Logs\",\"I0adYQ\":\"Webhook Signing Secret\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook will not send notifications\",\"FSaY52\":\"Webhook will send notifications\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Welcome back\",\"QDWsl9\":[\"Welcome to \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Welcome to \",[\"0\"],\", here's a listing of all your events\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"What type of event?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"When a check-in is deleted\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"When a new attendee is created\",\"zyIyPe\":\"When a new event is created\",\"Lc18qn\":\"When a new order is created\",\"dfkQIO\":\"When a new product is created\",\"8OhzyY\":\"When a product is deleted\",\"tRXdQ9\":\"When a product is updated\",\"9L9/28\":\"When a product sells out, customers can join a waitlist to be notified when spots become available.\",\"Q7CWxp\":\"When an attendee is cancelled\",\"IuUoyV\":\"When an attendee is checked in\",\"nBVOd7\":\"When an attendee is updated\",\"t7cuMp\":\"When an event is archived\",\"gtoSzE\":\"When an event is updated\",\"ny2r8d\":\"When an order is cancelled\",\"c9RYbv\":\"When an order is marked as paid\",\"ejMDw1\":\"When an order is refunded\",\"fVPt0F\":\"When an order is updated\",\"bcYlvb\":\"When check-in closes\",\"XIG669\":\"When check-in opens\",\"403wpZ\":\"При включении новые мероприятия позволят участникам управлять своими данными билетов через защищенную ссылку. Это может быть переопределено для каждого мероприятия.\",\"blXLKj\":\"При включении новые мероприятия будут отображать флажок подписки на маркетинг при оформлении заказа. Это можно переопределить для каждого мероприятия.\",\"Kj0Txn\":\"When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported.\",\"tMqezN\":\"Whether refunds are being processed\",\"uchB0M\":\"Widget Preview\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Write your message here...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"Yes - I have a valid EU VAT registration number\",\"Tz5oXG\":\"Yes, cancel my order\",\"QlSZU0\":[\"You are impersonating <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Вы оформляете частичный возврат. Клиенту будет возвращено \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"You can configure additional service fees and taxes in your account settings.\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"You can still manually offer tickets if needed.\",\"jTDzpA\":\"You cannot archive the last active organizer on your account.\",\"5VGIlq\":\"You have reached your messaging limit.\",\"casL1O\":\"You have taxes and fees added to a Free Product. Would you like to remove them?\",\"9jJNZY\":\"You must acknowledge your responsibilities before saving\",\"pCLes8\":\"Вы должны согласиться на получение сообщений\",\"FVTVBy\":\"You must verify your email address before you can update the organizer status.\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"You need to verify your account email before you can modify email templates.\",\"FRl8Jv\":\"You need to verify your account email before you can send messages.\",\"88cUW+\":\"You receive\",\"O6/3cu\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"You're going to \",[\"0\"],\"!\"],\"qGZz0m\":\"Вы в списке ожидания!\",\"/5HL6k\":\"You've been offered a spot!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"Your account has messaging limits. To increase your limits, contact us at\",\"x/xjzn\":\"Your affiliates have been exported successfully.\",\"TF37u6\":\"Your attendees have been exported successfully.\",\"79lXGw\":\"Your check-in list has been created successfully. Share the link below with your check-in staff.\",\"BnlG9U\":\"Your current order will be lost.\",\"nBqgQb\":\"Your Email\",\"GG1fRP\":\"Your event is live!\",\"ifRqmm\":\"Your message has been sent successfully!\",\"0/+Nn9\":\"Your messages will appear here\",\"/Rj5P4\":\"Your Name\",\"PFjJxY\":\"Your new password must be at least 8 characters long.\",\"gzrCuN\":\"Your order details have been updated. A confirmation email has been sent to the new email address.\",\"naQW82\":\"Your order has been cancelled.\",\"bhlHm/\":\"Your order is awaiting payment\",\"XeNum6\":\"Your orders have been exported successfully.\",\"Xd1R1a\":\"Your organizer address\",\"WWYHKD\":\"Your payment is protected with bank-level encryption\",\"5b3QLi\":\"Your Plan\",\"N4Zkqc\":\"Your saved date filter is no longer available — showing all dates.\",\"FNO5uZ\":\"Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions.\",\"CnZ3Ou\":\"Your tickets have been confirmed.\",\"EmFsMZ\":\"Your VAT number is queued for validation\",\"QBlhh4\":\"Your VAT number will be validated when you save\",\"fT9VLt\":\"Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>checked out successfully\"],\"KMgp2+\":[[\"0\"],\" available\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" days, \",[\"hours\"],\" hours, \",[\"minutes\"],\" minutes, and \",[\"seconds\"],\" seconds\"],\"f3RdEk\":[[\"hours\"],\" hours, \",[\"minutes\"],\" minutes, and \",[\"seconds\"],\" seconds\"],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0>Please enter the price excluding taxes and fees.<1>Taxes and fees can be added below.\",\"ZjMs6e\":\"<0>The number of products available for this product<1>This value can be overridden if there are <2>Capacity Limits associated with this product.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"A date input. Perfect for asking for a date of birth etc.\",\"6euFZ/\":[\"A default \",[\"type\"],\" is automaticaly applied to all new products. You can override this on a per product basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"POT0K/\":\"A fixed amount per product. E.g, $0.50 per product\",\"f4vJgj\":\"A multi line text input\",\"OIPtI5\":\"A percentage of the product price. E.g., 3.5% of the product price\",\"ZthcdI\":\"A promo code with no discount can be used to reveal hidden products.\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"h179TP\":\"A short description of the event that will be displayed in search engine results and when sharing on social media. By default, the event description will be used\",\"WKMnh4\":\"A single line text input\",\"BHZbFy\":\"A single question per order. E.g, What is your shipping address?\",\"Fuh+dI\":\"A single question per product. E.g, What is your t-shirt size?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Accept bank transfers, checks, or other offline payment methods\",\"hrvLf4\":\"Accept credit card payments with Stripe\",\"bfXQ+N\":\"Accept Invitation\",\"AeXO77\":\"Account\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"5T2HxQ\":\"Activation date\",\"F6pfE9\":\"Active\",\"/PN1DA\":\"Add a description for this check-in list\",\"0/vPdA\":\"Add any notes about the attendee. These will not be visible to the attendee.\",\"Or1CPR\":\"Add any notes about the attendee...\",\"l3sZO1\":\"Add any notes about the order. These will not be visible to the customer.\",\"xMekgu\":\"Add any notes about the order...\",\"PGPGsL\":\"Add description\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Add instructions for offline payments (e.g., bank transfer details, where to send checks, payment deadlines)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"24l4x6\":\"Add Product\",\"8q0EdE\":\"Add Product to Category\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"goOKRY\":\"Add tier\",\"oZW/gT\":\"Add to Calendar\",\"pn5qSs\":\"Additional Information\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Address\",\"NY/x1b\":\"Address line 1\",\"POdIrN\":\"Address Line 1\",\"cormHa\":\"Address line 2\",\"gwk5gg\":\"Address Line 2\",\"U3pytU\":\"Admin\",\"HLDaLi\":\"Admin users have full access to events and account settings.\",\"W7AfhC\":\"All attendees of this event\",\"cde2hc\":\"All Products\",\"5CQ+r0\":\"Allow attendees associated with unpaid orders to check in\",\"ipYKgM\":\"Allow search engine indexing\",\"LRbt6D\":\"Allow search engines to index this event\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"V7MwOy\":\"An error occurred while loading the page\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"An unexpected error occurred.\",\"byKna+\":\"An unexpected error occurred. Please try again.\",\"ubdMGz\":\"Any queries from product holders will be sent to this email address. This will also be used as the \\\"reply-to\\\" address for all emails sent from this event\",\"aAIQg2\":\"Appearance\",\"Ym1gnK\":\"applied\",\"sy6fss\":[\"Applies to \",[\"0\"],\" products\"],\"kadJKg\":\"Applies to 1 product\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"ARBThj\":[\"Apply this \",[\"type\"],\" to all new products\"],\"S0ctOE\":\"Archive event\",\"TdfEV7\":\"Archived\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"TvkW9+\":\"Are you sure you want to archive this event?\",\"/CV2x+\":\"Are you sure you want to cancel this attendee? This will void their ticket\",\"YgRSEE\":\"Are you sure you want to delete this promo code?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Are you sure you want to make this event draft? This will make the event invisible to the public\",\"mEHQ8I\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"Are you sure you want to restore this event? It will be restored as a draft event.\",\"vJuISq\":\"Are you sure you would like to delete this Capacity Assignment?\",\"baHeCz\":\"Are you sure you would like to delete this Check-In List?\",\"LBLOqH\":\"Ask once per order\",\"wu98dY\":\"Ask once per product\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"QKim6l\":\"Attendee not found\",\"R5IT/I\":\"Attendee Notes\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Attendee Ticket\",\"9SZT4E\":\"Attendees\",\"iPBfZP\":\"Attendees Registered\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"4lVaWA\":\"Awaiting offline payment\",\"2rHwhl\":\"Awaiting Offline Payment\",\"3wF4Q/\":\"Awaiting payment\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Billing Address\",\"/xC/im\":\"Billing Settings\",\"rp/zaT\":\"Brazilian Portuguese\",\"whqocw\":\"By registering you agree to our <0>Terms of Service and <1>Privacy Policy.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Capacity\",\"V6Q5RZ\":\"Capacity Assignment created successfully\",\"k5p8dz\":\"Capacity Assignment deleted successfully\",\"nDBs04\":\"Capacity Management\",\"ddha3c\":\"Categories allow you to group products together. For example, you might have a category for \\\"Tickets\\\" and another for \\\"Merchandise\\\".\",\"iS0wAT\":\"Categories help you organize your products. This title will be displayed on the public event page.\",\"eorM7z\":\"Categories reordered successfully.\",\"3EXqwa\":\"Category Created Successfully\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Check in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Check in and mark order as paid\",\"QYLpB4\":\"Check in only\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Check out this event!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Check-In List deleted successfully\",\"+hBhWk\":\"Check-in list has expired\",\"mBsBHq\":\"Check-in list is not active\",\"vPqpQG\":\"Check-in list not found\",\"tejfAy\":\"Check-In Lists\",\"hD1ocH\":\"Check-In URL copied to clipboard\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"znIg+z\":\"Checkout\",\"1WnhCL\":\"Checkout Settings\",\"6imsQS\":\"Chinese (Simplified)\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"3wV73y\":\"City\",\"FG98gC\":\"Clear Search Text\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Click to copy\",\"yz7wBu\":\"Close\",\"62Ciis\":\"Close sidebar\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Code must be between 3 and 50 characters long\",\"oqr9HB\":\"Collapse this product when the event page is initially loaded\",\"jZlrte\":\"Color\",\"Vd+LC3\":\"Color must be a valid hex color code. Example: #ffffff\",\"1HfW/F\":\"Colors\",\"VZeG/A\":\"Coming Soon\",\"yPI7n9\":\"Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event\",\"NPZqBL\":\"Complete Order\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Complete Payment\",\"qqWcBV\":\"Completed\",\"6HK5Ct\":\"Completed orders\",\"NWVRtl\":\"Completed Orders\",\"DwF9eH\":\"Component Code\",\"Tf55h7\":\"Configured Discount\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Continue\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Continue Button Text\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"r2B2P8\":\"Copy Check-In URL\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"k9RiLi\":\"Create a Product\",\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"VwdqVy\":\"Create Capacity Assignment\",\"EwoMtl\":\"Create category\",\"XletzW\":\"Create Category\",\"WVbTwK\":\"Create Check-In List\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"a0EjD+\":\"Create Product\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Create Promo Code\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"UEqXyt\":\"Custom Range\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Y9Z/vP\":\"Customize the event homepage and checkout messaging\",\"2E2O5H\":\"Customize the miscellaneous settings for this event\",\"iJhSxe\":\"Customize the SEO settings for this event\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Danger zone\",\"ZQKLI1\":\"Danger Zone\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Дата и время\",\"JJhRbH\":\"Day one capacity\",\"cnGeoo\":\"Delete\",\"jRJZxD\":\"Delete Capacity\",\"VskHIx\":\"Delete category\",\"Qrc8RZ\":\"Delete Check-In List\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Description\",\"YC3oXa\":\"Description for check-in staff\",\"URmyfc\":\"Details\",\"1lRT3t\":\"Disabling this capacity will track sales but not stop them when the limit is reached\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"DZlSLn\":\"Document Label\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donation / Pay what you'd like product\",\"OvNbls\":\"Download .ics\",\"kodV18\":\"Download CSV\",\"CELKku\":\"Download invoice\",\"LQrXcu\":\"Download Invoice\",\"QIodqd\":\"Download QR Code\",\"yhjU+j\":\"Downloading Invoice\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Dropdown selection\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicate event\",\"3ogkAk\":\"Duplicate Event\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Duplicate Options\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kBkYSa\":\"Edit Capacity\",\"oHE9JT\":\"Edit Capacity Assignment\",\"j1Jl7s\":\"Edit category\",\"FU1gvP\":\"Edit Check-In List\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"tdD/QN\":\"Edit Product\",\"n143Tq\":\"Edit Product Category\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"poTr35\":\"Edit user\",\"GTOcxw\":\"Edit User\",\"pqFrv2\":\"eg. 2.50 for $2.50\",\"3yiej1\":\"eg. 23.5 for 23.5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Email & Notification Settings\",\"ATGYL1\":\"Email address\",\"hzKQCy\":\"Email Address\",\"HqP6Qf\":\"Email change cancelled successfully\",\"mISwW1\":\"Email change pending\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"8oPbg1\":\"Enable Invoicing\",\"j6w7d/\":\"Enable this capacity to stop product sales when the limit is reached\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"English\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"SlfejT\":\"Error\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Event Date\",\"0Zptey\":\"Event Defaults\",\"QcCPs8\":\"Event Details\",\"6fuA9p\":\"Event duplicated successfully\",\"AEuj2m\":\"Event Homepage\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"nMU2d3\":\"Event URL\",\"tst44n\":\"Events\",\"sZg7s1\":\"Expiration date\",\"KnN1Tu\":\"Expires\",\"uaSvqt\":\"Expiry Date\",\"GS+Mus\":\"Export\",\"9xAp/j\":\"Failed to cancel attendee\",\"ZpieFv\":\"Failed to cancel order\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Failed to download invoice. Please try again.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Failed to load Check-In List\",\"ZQ15eN\":\"Failed to resend ticket email\",\"ejXy+D\":\"Failed to sort products\",\"PLUB/s\":\"Fee\",\"/mfICu\":\"Fees\",\"LyFC7X\":\"Filter Orders\",\"cSev+j\":\"Filters\",\"CVw2MU\":[\"Filters (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"First Invoice Number\",\"V1EGGU\":\"First name\",\"kODvZJ\":\"First Name\",\"S+tm06\":\"First name must be between 1 and 50 characters\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"First Used\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"P/OAYJ\":\"Free Product\",\"vAbVy9\":\"Free product, no payment information required\",\"nLC6tu\":\"French\",\"Weq9zb\":\"General\",\"DDcvSo\":\"German\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Calendar\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Gross sales\",\"yRg26W\":\"Gross Sales\",\"R4r4XO\":\"Guests\",\"26pGvx\":\"Have a promo code?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Here is an example of how you can use the component in your application.\",\"Y1SSqh\":\"Here is the React component you can use to embed the widget in your application.\",\"QuhVpV\":[\"Hi \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Hide product after sale end date\",\"06s3w3\":\"Hide product before sale start date\",\"axVMjA\":\"Hide product unless user has applicable promo code\",\"ySQGHV\":\"Hide product when sold out\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Hide this product from customers\",\"Da29Y6\":\"Hide this question\",\"fvDQhr\":\"Hide this tier from users\",\"lNipG+\":\"Hiding a product will prevent users from seeing it on the event page.\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"How many minutes the customer has to complete their order. We recommend at least 15 minutes\",\"ySxKZe\":\"How many times can this code be used?\",\"dZsDbK\":[\"HTML character limit exceeded: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"If enabled, check-in staff can either mark attendees as checked in or mark the order as paid and check in the attendees. If disabled, attendees associated with unpaid orders cannot be checked in.\",\"muXhGi\":\"If enabled, the organizer will receive an email notification when a new order is placed\",\"6fLyj/\":\"If you did not request this change, please immediately change your password.\",\"n/ZDCz\":\"Image deleted successfully\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"VyUuZb\":\"Image URL\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"kO44sp\":\"Include connection details for your online event. These details will be shown on the order summary page and attendee ticket page.\",\"FlQKnG\":\"Include tax and fees in the price\",\"Vi+BiW\":[\"Includes \",[\"0\"],\" products\"],\"lpm0+y\":\"Includes 1 product\",\"UiAk5P\":\"Insert Image\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"bKOYkd\":\"Invoice downloaded successfully\",\"alD1+n\":\"Invoice Notes\",\"kOtCs2\":\"Invoice Numbering\",\"UZ2GSZ\":\"Invoice Settings\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Item\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Label\",\"vXIe7J\":\"Language\",\"2LMsOq\":\"Last 12 months\",\"vfe90m\":\"Last 14 days\",\"aK4uBd\":\"Last 24 hours\",\"uq2BmQ\":\"Last 30 days\",\"bB6Ram\":\"Last 48 hours\",\"VlnB7s\":\"Last 6 months\",\"ct2SYD\":\"Last 7 days\",\"XgOuA7\":\"Last 90 days\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"tKCBU0\":\"Last Used\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Leave blank to use the default word \\\"Invoice\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Loading...\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Make billing address mandatory during checkout\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"onpJrA\":\"Manage attendee\",\"n4SpU5\":\"Manage event\",\"WVgSTy\":\"Manage order\",\"1MAvUY\":\"Manage payment and invoicing settings for this event.\",\"cQrNR3\":\"Manage Profile\",\"AtXtSw\":\"Manage taxes and fees which can be applied to your products\",\"ophZVW\":\"Manage tickets\",\"DdHfeW\":\"Manage your account details and default settings\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Manage your users and their permissions\",\"1m+YT2\":\"Mandatory questions must be answered before the customer can checkout.\",\"Dim4LO\":\"Manually add an Attendee\",\"e4KdjJ\":\"Manually Add Attendee\",\"vFjEnF\":\"Mark as paid\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"RDie0n\":\"Miscellaneous\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"VD0iA7\":\"Multiple price options. Perfect for early bird products etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"fj5byd\":\"N/A\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"1UzENP\":\"No\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"No archived events to show.\",\"q2LEDV\":\"No attendees found for this order.\",\"zlHa5R\":\"No attendees have been added to this order.\",\"Wjz5KP\":\"No Attendees to show\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"No Capacity Assignments\",\"a/gMx2\":\"No Check-In Lists\",\"tMFDem\":\"No data available\",\"6Z/F61\":\"No data to show. Please select a date range\",\"fFeCKc\":\"No Discount\",\"HFucK5\":\"No ended events to show.\",\"yAlJXG\":\"No events to show\",\"GqvPcv\":\"No filters available\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"RBXXtB\":\"No payment methods are currently available. Please contact the event organizer for assistance.\",\"ZWEfBE\":\"No Payment Required\",\"ZPoHOn\":\"No product associated with this attendee.\",\"Ya1JhR\":\"No products available in this category.\",\"FTfObB\":\"No Products Yet\",\"+Y976X\":\"No Promo Codes to show\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"Ev2r9A\":\"No results\",\"gk5uwN\":\"No Search Results\",\"RHyZUL\":\"No search results.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notes\",\"jtrY3S\":\"Nothing to show yet\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Number of days allowed for payment (leave blank to omit payment terms from invoices)\",\"n86jmj\":\"Number Prefix\",\"mwe+2z\":\"Offline orders are not reflected in event statistics until the order is marked as paid.\",\"dWBrJX\":\"Offline payment failed. Please try again or contact the event organizer.\",\"fcnqjw\":\"Offline Payment Instructions\",\"+eZ7dp\":\"Offline Payments\",\"ojDQlR\":\"Offline Payments Information\",\"u5oO/W\":\"Offline Payments Settings\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"ZxnK5C\":\"Once you start collecting data, you'll see it here.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Ongoing\",\"z+nuVJ\":\"Online event\",\"WKHW0N\":\"Online Event Details\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Open Check-In Page\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"oPknTP\":\"Optional additional information to appear on all invoices (e.g., payment terms, late payment fees, return policy)\",\"OrXJBY\":\"Optional prefix for invoice numbers (e.g., INV-)\",\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"nAn4Oe\":\"Order marked as paid\",\"uzEfRz\":\"Order Notes\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Order Reference\",\"acIJ41\":\"Order Status\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"3y+V4p\":\"Organization Address\",\"GVcaW6\":\"Organization Details\",\"nfnm9D\":\"Organization Name\",\"G5RhpL\":\"Organizer\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"l894xP\":\"Organizers can only manage events and products. They cannot manage users, account settings or billing information.\",\"fdjq4c\":\"Padding\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Page not found\",\"QbrUIo\":\"Page views\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"paid\",\"HVW65c\":\"Paid Product\",\"ZfxaB4\":\"Partially Refunded\",\"8ZsakT\":\"Password\",\"TUJAyx\":\"Password must be a minimum of 8 characters\",\"vwGkYB\":\"Password must be at least 8 characters\",\"BLTZ42\":\"Password reset successfully. Please login with your new password.\",\"f7SUun\":\"Passwords are not the same\",\"aEDp5C\":\"Paste this where you want the widget to appear.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Payment\",\"Lg+ewC\":\"Payment & Invoicing\",\"DZjk8u\":\"Payment & Invoicing Settings\",\"lflimf\":\"Payment Due Period\",\"JhtZAK\":\"Payment Failed\",\"JEdsvQ\":\"Payment Instructions\",\"bLB3MJ\":\"Payment Methods\",\"QzmQBG\":\"Payment provider\",\"lsxOPC\":\"Payment Received\",\"wJTzyi\":\"Payment Status\",\"xgav5v\":\"Payment succeeded!\",\"R29lO5\":\"Payment Terms\",\"/roQKz\":\"Percentage\",\"vPJ1FI\":\"Percentage Amount\",\"xdA9ud\":\"Place this in the of your website.\",\"blK94r\":\"Please add at least one option\",\"FJ9Yat\":\"Please check the provided information is correct\",\"TkQVup\":\"Please check your email and password and try again\",\"sMiGXD\":\"Please check your email is valid\",\"Ajavq0\":\"Please check your email to confirm your email address\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Please continue in the new tab\",\"hcX103\":\"Please create a product\",\"cdR8d6\":\"Please create a ticket\",\"x2mjl4\":\"Please enter a valid image URL that points to an image.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"C63rRe\":\"Please return to the event page to start over.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Please select at least one product\",\"igBrCH\":\"Please verify your email address to access all features\",\"/IzmnP\":\"Please wait while we prepare your invoice...\",\"MOERNx\":\"Portuguese\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"BI7D9d\":\"Price not set\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Price Type\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"DKwDdj\":\"Print Tickets\",\"K47k8R\":\"Product\",\"1JwlHk\":\"Product Category\",\"U61sAj\":\"Product category updated successfully.\",\"1USFWA\":\"Product deleted successfully\",\"4Y2FZT\":\"Product Price Type\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Product Sales\",\"U/R4Ng\":\"Product Tier\",\"sJsr1h\":\"Product Type\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Product(s)\",\"N0qXpE\":\"Products\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Products sold\",\"/u4DIx\":\"Products Sold\",\"DJQEZc\":\"Products sorted successfully\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"P5sgAk\":\"Promo Code\",\"yKWfjC\":\"Promo Code page\",\"RVb8Fo\":\"Promo Codes\",\"BZ9GWa\":\"Promo codes can be used to offer discounts, presale access, or provide special access to your event.\",\"OP094m\":\"Promo Codes Report\",\"4kyDD5\":\"Provide additional context or instructions for this question. Use this field to add terms\\nand conditions, guidelines, or any important information that attendees need to know before answering.\",\"toutGW\":\"QR Code\",\"LkMOWF\":\"Quantity Available\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Question deleted\",\"avf0gk\":\"Question Description\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"ROv2ZT\":\"Questions & Answers\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Refund Failed\",\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Refund Pending\",\"xHpVRl\":\"Refund Status\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"9+8Vez\":\"Remaining Uses\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"t9yxlZ\":\"Reports\",\"prZGMe\":\"Require Billing Address\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"OfhWJH\":\"Reset\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Restore event\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Return to Event Page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hBsw5C\":\"Sales ended\",\"kpAzPe\":\"Sales start\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Save\",\"IUwGEM\":\"Save Changes\",\"U65fiW\":\"Save Organizer\",\"UGT5vp\":\"Save Settings\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"+pr/FY\":\"Search by event name...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Search by name...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Search capacity assignments...\",\"r9M1hc\":\"Search check-in lists...\",\"+0Yy2U\":\"Search products\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"02ePaq\":[\"Select \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Select category...\",\"kWI/37\":\"Select organizer\",\"ixIx1f\":\"Select Product\",\"3oSV95\":\"Select Product Tier\",\"C4Y1hA\":\"Select products\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"OMX4tH\":\"Select tickets\",\"DrwwNd\":\"Select time period\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Send a message\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Send Message\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"L0pJmz\":\"Set the starting number for invoice numbering. This cannot be changed once invoices have been generated.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"B2V3cA\":\"Share Event\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Show available product quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"1SbbH8\":\"Shown to the customer after they checkout, on the order summary page.\",\"YfHZv0\":\"Shown to the customer before they checkout\",\"CBBcly\":\"Shows common address fields, including country\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Single line text box\",\"+P0Cn2\":\"Skip this step\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Sold out\",\"Mi1rVn\":\"Sold Out\",\"nwtY4N\":\"Something went wrong\",\"GRChTw\":\"Something went wrong while deleting the Tax or Fee\",\"YHFrbe\":\"Something went wrong! Please try again\",\"kf83Ld\":\"Something went wrong.\",\"fWsBTs\":\"Something went wrong. Please try again.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"65A04M\":\"Spanish\",\"mFuBqb\":\"Standard product with a fixed price\",\"D3iCkb\":\"Start Date\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe payments are not enabled for this event.\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"zzDlyQ\":\"Success\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"gP22tw\":\"Successfully Created Product\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"J3RJSZ\":\"Successfully updated attendee\",\"3suLF0\":\"Successfully updated Capacity Assignment\",\"Z+rnth\":\"Successfully updated Check-In List\",\"vzJenu\":\"Successfully Updated Email Settings\",\"7kOMfV\":\"Successfully Updated Event\",\"G0KW+e\":\"Successfully Updated Homepage Design\",\"k9m6/E\":\"Successfully Updated Homepage Settings\",\"y/NR6s\":\"Successfully Updated Location\",\"73nxDO\":\"Successfully Updated Misc Settings\",\"4H80qv\":\"Successfully updated order\",\"6xCBVN\":\"Successfully Updated Payment & Invoicing Settings\",\"1Ycaad\":\"Successfully updated product\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"dFHcIn\":\"Tax Details\",\"wQzCPX\":\"Tax information to appear at the bottom of all invoices (e.g., VAT number, tax registration)\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"qu6/03\":\"Taxes and Fees\",\"gypigA\":\"That promo code is invalid\",\"5ShqeM\":\"The check-in list you are looking for does not exist.\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"o7s5FA\":\"The language the attendee will receive emails in.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"HsFnrk\":[\"The maximum number of products for \",[\"0\"],\"is \",[\"1\"]],\"TSAiPM\":\"The page you are looking for does not exist\",\"MSmKHn\":\"The price displayed to the customer will include taxes and fees.\",\"6zQOg1\":\"The price displayed to the customer will not include taxes and fees. They will be shown separately\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used\",\"wDx3FF\":\"There are no products available for this event\",\"pNgdBv\":\"There are no products available in this category\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"F89D36\":\"There was an error marking the order as paid\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"This attendee has an unpaid order.\",\"mf3FrP\":\"This category doesn't have any products yet.\",\"8QH2Il\":\"This category is hidden from public view\",\"xxv3BZ\":\"This check-in list has expired\",\"Sa7w7S\":\"This check-in list has expired and is no longer available for check-ins.\",\"Uicx2U\":\"This check-in list is active\",\"1k0Mp4\":\"This check-in list is not active yet\",\"K6fmBI\":\"This check-in list is not yet active and is not available for check-ins.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"This information will be shown on the payment page, order summary page, and order confirmation email.\",\"XAHqAg\":\"This is a general product, like a t-shirt or a mug. No ticket will be issued\",\"CNk/ro\":\"This is an online event\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"55i7Fa\":\"This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message\",\"RjwlZt\":\"This order has already been paid.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"Q0zd4P\":\"This order has expired. Please start again.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"This order page is no longer available.\",\"i0TtkR\":\"This overrides all visibility settings and will hide the product from all customers.\",\"cRRc+F\":\"This product cannot be deleted because it is associated with an order. You can hide it instead.\",\"3Kzsk7\":\"This product is a ticket. Buyers will be issued a ticket upon purchase\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"54q0zp\":\"Tickets for\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"jZj9y9\":\"Tiered Product\",\"8wITQA\":\"Tiered products allow you to offer multiple price options for the same product. This is perfect for early bird products, or offering different price options for different groups of people.\",\"nn3mSR\":\"Time left:\",\"s/0RpH\":\"Times used\",\"y55eMd\":\"Times Used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"YXx+fG\":\"Total Before Discounts\",\"NRWNfv\":\"Total Discount Amount\",\"BxsfMK\":\"Total Fees\",\"2bR+8v\":\"Total Gross Sales\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"jEbkcB\":\"Total Refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"FMdMfZ\":\"Unable to check in attendee\",\"bPWBLL\":\"Unable to check out attendee\",\"9+P7zk\":\"Unable to create product. Please check the your details\",\"WLxtFC\":\"Unable to create product. Please check your details\",\"/cSMqv\":\"Unable to create question. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"nnfSdK\":\"Unique Customers\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"/p9Fhq\":\"Unlimited available\",\"E0q9qH\":\"Unlimited usages allowed\",\"h10Wm5\":\"Unpaid Order\",\"ia8YsC\":\"Upcoming\",\"TlEeFv\":\"Upcoming Events\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"fiV0xj\":\"Usage Limit\",\"sGEOe4\":\"Use a blurred version of the cover image as the background\",\"OadMRm\":\"Use cover image\",\"7PzzBU\":\"User\",\"yDOdwQ\":\"User Management\",\"Sxm8rQ\":\"Users\",\"VEsDvU\":\"Users can change their email in <0>Profile Settings\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"jpctdh\":\"View\",\"Pte1Hv\":\"View Attendee Details\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP check-in list\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"45Srzt\":\"We couldn't delete the category. Please try again.\",\"/DNy62\":[\"We couldn't find any tickets matching \",[\"0\"]],\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"NmpGKr\":\"We couldn't reorder the categories. Please try again.\",\"BJtMTd\":\"We recommend dimensions of 1950px by 650px, a ratio of 3:1, and a maximum file size of 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"We were unable to confirm your payment. Please try again or contact support.\",\"Gspam9\":\"We're processing your order. Please wait...\",\"LuY52w\":\"Welcome aboard! Please login to continue.\",\"dVxpp5\":[\"Welcome back\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"What are Tiered Products?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"What is a Category?\",\"gxeWAU\":\"What products does this code apply to?\",\"hFHnxR\":\"What products does this code apply to? (Applies to all by default)\",\"AeejQi\":\"What products should this capacity apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"gyLUYU\":\"When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page.\",\"D3opg4\":\"When offline payments are enabled, users will be able to complete their orders and receive their tickets. Their tickets will clearly indicate the order is not paid, and the check-in tool will notify the check-in staff if an order requires payment.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Which tickets should be associated with this check-in list?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"+G/XiQ\":\"Year to date\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\".\"],\"gGhBmF\":\"You are offline\",\"sdB7+6\":\"You can create a promo code which targets this product on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"You cannot change the product type as there are attendees associated with this product.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"You cannot check in attendees with unpaid orders. This setting can be changed in the event settings.\",\"c9Evkd\":\"You cannot delete the last category.\",\"6uwAvx\":\"You cannot delete this price tier because there are already products sold for this tier. You can hide it instead.\",\"tFbRKJ\":\"You cannot edit the role or status of the account owner.\",\"fHfiEo\":\"You cannot refund a manually created order.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"You have access to multiple accounts. Please choose one to continue.\",\"Z6q0Vl\":\"You have already accepted this invitation. Please login to continue.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"You have run out of time to complete your order.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"You must acknowledge that this email is not promotional\",\"3ZI8IL\":\"You must agree to the terms and conditions\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"You must create a ticket before you can manually add an attendee.\",\"jE4Z8R\":\"You must have at least one price tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"You will have to mark an order as paid manually. This can be done on the manage order page.\",\"L/+xOk\":\"You'll need a ticket before you can create a check-in list.\",\"Djl45M\":\"You'll need at a product before you can create a capacity assignment.\",\"y3qNri\":\"You'll need at least one product to get started. Free, paid or let the user decide what to pay.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Your account name is used on event pages and in emails.\",\"veessc\":\"Your attendees will appear here once they have registered for your event. You can also manually add attendees.\",\"Eh5Wrd\":\"Your awesome website 🎉\",\"lkMK2r\":\"Your Details\",\"3ENYTQ\":[\"Your email request change to <0>\",[\"0\"],\" is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"KSQ8An\":\"Your Order\",\"Jwiilf\":\"Your order has been cancelled\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Your orders will appear here once they start rolling in.\",\"9TO8nT\":\"Your password\",\"P8hBau\":\"Your payment is processing.\",\"UdY1lL\":\"Your payment was not successful, please try again.\",\"fzuM26\":\"Your payment was unsuccessful. Please try again.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"x1PPdr\":\"ZIP / Postal Code\",\"BM/KQm\":\"Zip or Postal Code\",\"+LtVBt\":\"ZIP or Postal Code\",\"25QDJ1\":\"- Нажмите, чтобы опубликовать\",\"WOyJmc\":\"- Нажмите, чтобы снять с публикации\",\"ncwQad\":\"(empty)\",\"B/gRsg\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" уже зарегистрирован\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Active Webhooks\"],\"6MIiOI\":[[\"0\"],\" left\"],\"COnw8D\":[[\"0\"],\" logo\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizers\"],\"rZTf6P\":[[\"0\"],\" spots left\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"dtXkP9\":[[\"0\"],\" upcoming dates\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" of \",[\"totalCount\"],\" available\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" events\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" ticket types\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Tax/Fees\",\"B1St2O\":\"<0>Check-in lists help you manage event entry by day, area, or ticket type. You can link tickets to specific lists such as VIP zones or Day 1 passes and share a secure check-in link with staff. No account is required. Check-in works on mobile, desktop, or tablet, using a device camera or HID USB scanner. \",\"v9VSIS\":\"<0>Set a single total attendance limit that applies to multiple ticket types at once.<1>For example, if you link a <2>Day Pass and a <3>Full Weekend ticket, they will both draw from the same pool of spots. Once the limit is reached, all linked tickets automatically stop selling.\",\"vKXqag\":\"<0>This is the default quantity across all dates. Each date's capacity can further limit availability on the <1>Occurrence Schedule page.\",\"ZnVt5v\":\"<0>Webhooks instantly notify external services when events happen, like adding a new attendee to your CRM or mailing list upon registration, ensuring seamless automation.<1>Use third-party services like <2>Zapier, <3>IFTTT or <4>Make to create custom workflows and automate tasks.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" at current rate\"],\"M2DyLc\":\"1 Active Webhook\",\"6hIk/x\":\"1 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"943BwI\":\"1 день после даты окончания\",\"yj3N+g\":\"1 день после даты начала\",\"Z3etYG\":\"За 1 день до мероприятия\",\"szSnlj\":\"За 1 час до мероприятия\",\"yTsaLw\":\"1 ticket\",\"nz96Ue\":\"1 ticket type\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"За 1 неделю до мероприятия\",\"09VFYl\":\"12 tickets offered\",\"HR/cvw\":\"123 Sample Street\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"A cancellation notice has been sent to\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"A new verification code has been sent to your email\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"A short description of your organizer that will be displayed to your users.\",\"aS0jtz\":\"Abandoned\",\"uyJsf6\":\"About\",\"JvuLls\":\"Absorb fee\",\"lk74+I\":\"Absorb Fee\",\"1uJlG9\":\"Accent Color\",\"g3UF2V\":\"Accept\",\"K5+3xg\":\"Accept invitation\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Account Information\",\"EHNORh\":\"Account not found\",\"bPwFdf\":\"Accounts\",\"AhwTa1\":\"Action Required: VAT Information Needed\",\"APyAR/\":\"Active Events\",\"kCl6ja\":\"Active payment methods\",\"XJOV1Y\":\"Activity\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Add a date\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Add a Single Date\",\"CjvTPJ\":\"Add another time\",\"0XCduh\":\"Add at least one time\",\"/chGpa\":\"Add connection details for the online event.\",\"UWWRyd\":\"Add custom questions to collect additional information during checkout\",\"Z/dcxc\":\"Add Date\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Add location\",\"VX6WUv\":\"Add Location\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Add Question\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Add this event to your calendar\",\"BGD9Yt\":\"Add tickets\",\"uIv4Op\":\"Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active.\",\"QN2F+7\":\"Add Webhook\",\"NsWqSP\":\"Add your social media handles and website URL. These will be displayed on your public organizer page.\",\"bVjDs9\":\"Additional Fees\",\"MKqSg4\":\"Admin Access Required\",\"0Zypnp\":\"Admin Dashboard\",\"YAV57v\":\"Affiliate\",\"I+utEq\":\"Affiliate code cannot be changed\",\"/jHBj5\":\"Affiliate created successfully\",\"uCFbG2\":\"Affiliate deleted successfully\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"Affiliate sales will be tracked\",\"mJJh2s\":\"Affiliate sales will not be tracked. This will deactivate the affiliate.\",\"jabmnm\":\"Affiliate updated successfully\",\"CPXP5Z\":\"Affiliates\",\"9Wh+ug\":\"Affiliates Exported\",\"3cqmut\":\"Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"All Archived Events\",\"gKq1fa\":\"All attendees\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"All Currencies\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"All Ended Events\",\"QsYjci\":\"All Events\",\"31KB8w\":\"All failed jobs deleted\",\"D2g7C7\":\"All jobs queued for retry\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"All Statuses\",\"dr7CWq\":\"All Upcoming Events\",\"GpT6Uf\":\"Разрешить участникам обновлять информацию о билетах (имя, электронная почта) через защищенную ссылку, отправленную с подтверждением заказа.\",\"F3mW5G\":\"Разрешить клиентам присоединиться к списку ожидания, когда этот продукт распродан\",\"c4uJfc\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds.\",\"ocS8eq\":[\"Already have an account? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Уже возвращено\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"Также отменить этот заказ\",\"jkNgQR\":\"Также вернуть деньги за этот заказ\",\"xYqsHg\":\"Always available\",\"Wvrz79\":\"Amount Paid\",\"Zkymb9\":\"An email to associate with this affiliate. The affiliate will not be notified.\",\"vRznIT\":\"An error occurred while checking export status.\",\"eusccx\":\"An optional message to display on the highlighted product, e.g. \\\"Selling fast 🔥\\\" or \\\"Best value\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Answer updated successfully.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"vP3Nzg\":[\"Applies to \",[\"0\"],\", non-cancelled dates currently loaded on this page.\"],\"kkVyZZ\":\"Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything.\",\"je4muG\":[\"Applies to every \",[\"0\"],\", non-cancelled date in this event — including dates not currently loaded.\"],\"YIIQtt\":\"Apply Changes\",\"NzWX1Y\":\"Apply to\",\"Ps5oDT\":\"Apply to all tickets\",\"261RBr\":\"Approve Message\",\"naCW6Z\":\"April\",\"B495Gs\":\"Archive\",\"5sNliy\":\"Archive Event\",\"BrwnrJ\":\"Archive Organizer\",\"E5eghW\":\"Archive this event to hide it from the public. You can restore it later.\",\"eqFkeI\":\"Archive this organizer. This will also archive all events belonging to this organizer.\",\"BzcxWv\":\"Archived Organizers\",\"9cQBd6\":\"Are you sure you want to archive this event? It will no longer be visible to the public.\",\"Trnl3E\":\"Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer.\",\"wOvn+e\":[\"Are you sure you want to cancel \",[\"count\"],\" date(s)? Affected attendees will be notified by email.\"],\"GTxE0U\":\"Are you sure you want to cancel this date? Affected attendees will be notified by email.\",\"VkSk/i\":\"Вы уверены, что хотите отменить это запланированное сообщение?\",\"0aVEBY\":\"Are you sure you want to delete all failed jobs?\",\"LchiNd\":\"Are you sure you want to delete this affiliate? This action cannot be undone.\",\"vPeW/6\":\"Are you sure you want to delete this configuration? This may affect accounts using it.\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"JmVITJ\":\"Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template.\",\"aLS+A6\":\"Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template.\",\"5H3Z78\":\"Are you sure you want to delete this webhook?\",\"147G4h\":\"Are you sure you want to leave?\",\"VDWChT\":\"Are you sure you want to make this organizer draft? This will make the organizer page invisible to the public\",\"pWtQJM\":\"Are you sure you want to make this organizer public? This will make the organizer page visible to the public\",\"EOqL/A\":\"Are you sure you want to offer a spot to this person? They will receive an email notification.\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"Are you sure you want to publish this event? Once published, it will be visible to the public.\",\"4TNVdy\":\"Are you sure you want to publish this organizer profile? Once published, it will be visible to the public.\",\"8x0pUg\":\"Вы уверены, что хотите удалить эту запись из списка ожидания?\",\"cDtoWq\":[\"Are you sure you want to resend the order confirmation to \",[\"0\"],\"?\"],\"xeIaKw\":[\"Are you sure you want to resend the ticket to \",[\"0\"],\"?\"],\"BjbocR\":\"Are you sure you want to restore this event?\",\"7MjfcR\":\"Are you sure you want to restore this organizer?\",\"ExDt3P\":\"Are you sure you want to unpublish this event? It will no longer be visible to the public.\",\"5Qmxo/\":\"Are you sure you want to unpublish this organizer profile? It will no longer be visible to the public.\",\"Uqefyd\":\"Are you VAT registered in the EU?\",\"+QARA4\":\"Art\",\"tLf3yJ\":\"As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees.\",\"tMeVa/\":\"Ask for name and email for each ticket purchased\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"Assigned Tier\",\"F2rX0R\":\"At least one event type must be selected\",\"BCmibk\":\"Attempts\",\"6PecK3\":\"Attendance and check-in rates across all events\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Attendee Cancelled\",\"qvylEK\":\"Attendee Created\",\"Aspq3b\":\"Attendee details collection\",\"fpb0rX\":\"Attendee details copied from order\",\"0R3Y+9\":\"Attendee Email\",\"94aQMU\":\"Attendee Information\",\"KkrBiR\":\"Attendee information collection\",\"av+gjP\":\"Attendee Name\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Attendee Status\",\"D2qlBU\":\"Attendee Updated\",\"22BOve\":\"Участник успешно обновлен\",\"x8Vnvf\":\"Attendee's ticket not included in this list\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Attendees Exported\",\"UoIRW8\":\"Attendees registered\",\"5UbY+B\":\"Attendees with a specific ticket\",\"4HVzhV\":\"Attendees:\",\"HVkhy2\":\"Attribution Analytics\",\"dMMjeD\":\"Attribution Breakdown\",\"1oPDuj\":\"Attribution Value\",\"DBHTm/\":\"August\",\"JgREph\":\"Auto-offer is enabled\",\"V7Tejz\":\"Автообработка списка ожидания\",\"PZ7FTW\":\"Automatically detected based on background color, but can be overridden\",\"zlnTuI\":\"Automatically offer tickets to the next person when capacity becomes available. If disabled, you can manually process the waitlist from the Waitlist page.\",\"csDS2L\":\"Available\",\"clF06r\":\"Доступно для возврата\",\"NB5+UG\":\"Available Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"iH8pgl\":\"Back\",\"TeSaQO\":\"Back to Accounts\",\"X7Q/iM\":\"Back to calendar\",\"kYqM1A\":\"Back to Event\",\"s5QRF3\":\"Back to messages\",\"td/bh+\":\"Back to Reports\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"Basic Information\",\"UabgBd\":\"Body is required\",\"HWXuQK\":\"Bookmark this page to manage your order anytime.\",\"CUKVDt\":\"Brand your tickets with a custom logo, colors, and footer message.\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Business\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"Button Label\",\"ChDLlO\":\"Button Text\",\"BUe8Wj\":\"Buyer pays\",\"qF1qbA\":\"Buyers see a clean price. The platform fee is deducted from your payout.\",\"dg05rc\":\"By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.).\",\"DFqasq\":[\"By continuing, you agree to the <0>\",[\"0\"],\" Terms of Service\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Bypass Application Fees\",\"AjVXBS\":\"Calendar\",\"alkXJ5\":\"Calendar view\",\"2VLZwd\":\"Call-to-Action Button\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campaign\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Отменить все продукты и вернуть их в общий пул\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Отмена отменит всех участников, связанных с этим заказом, и вернет билеты в доступный пул.\",\"vev1Jl\":\"Cancellation\",\"Ha17hq\":[\"Cancelled \",[\"0\"],\" date(s)\"],\"01sEfm\":\"Cannot delete the system default configuration\",\"VsM1HH\":\"Capacity Assignments\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Category\",\"o+XJ9D\":\"Change\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"CIHJJf\":\"Change waitlist settings\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Charity\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"Check your email\",\"51AsAN\":\"Check your inbox! If tickets are associated with this email, you'll receive a link to view them.\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"Check-in Created\",\"F4SRy3\":\"Check-in Deleted\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Check-In List Created\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Check-in Lists\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Check-in Rate\",\"qCqdg6\":\"Check-In Status\",\"cKj6OE\":\"Check-in Summary\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinese (Traditional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"fkb+y3\":\"Choose a saved location to apply.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Choose an Organizer\",\"Crr3pG\":\"Choose calendar\",\"LAW8Vb\":\"Choose the default setting for new events. This can be overridden for individual events.\",\"pjp2n5\":\"Choose who pays the platform fee. This does not affect additional fees you've configured in your account settings.\",\"xCJdfg\":\"Clear\",\"QyOWu9\":\"Clear location — fall back to the event default\",\"V8yTm6\":\"Clear search\",\"kmnKnX\":\"Clearing removes any per-date override. Affected dates will fall back to the event's default location.\",\"/o+aQX\":\"Click to cancel\",\"gD7WGV\":\"Click to reopen for new sales\",\"CySr+W\":\"Click to view notes\",\"RG3szS\":\"close\",\"RWw9Lg\":\"Close modal\",\"XwdMMg\":\"Code can only contain letters, numbers, hyphens, and underscores\",\"+yMJb7\":\"Code is required\",\"m9SD3V\":\"Code must be at least 3 characters\",\"V1krgP\":\"Code must be no more than 20 characters\",\"psqIm5\":\"Collaborate with your team to create amazing events together.\",\"4bUH9i\":\"Collect attendee details for each ticket purchased.\",\"TkfG8v\":\"Collect details per order\",\"96ryID\":\"Collect details per ticket\",\"FpsvqB\":\"Color Mode\",\"jEu4bB\":\"Columns\",\"CWk59I\":\"Comedy\",\"rPA+Gc\":\"Communication Preferences\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"Complete your order to secure your tickets. This offer is time-limited, so don't wait too long.\",\"5YrKW7\":\"Complete your payment to secure your tickets.\",\"xGU92i\":\"Complete your profile to join the team.\",\"QOhkyl\":\"Compose\",\"ih35UP\":\"Conference Center\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"Configuration created successfully\",\"mLBUMQ\":\"Configuration deleted successfully\",\"UIENhw\":\"Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate.\",\"eeZdaB\":\"Configuration updated successfully\",\"3cKoxx\":\"Configurations\",\"8v2LRU\":\"Configure event details, location, checkout options, and email notifications.\",\"raw09+\":\"Configure how attendee details are collected during checkout\",\"FI60XC\":\"Configure Taxes & Fees\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"Confirm Email Address\",\"JRQitQ\":\"Confirm new password\",\"Auz0Mz\":\"Confirm your email to access all features.\",\"7+grte\":\"Confirmation email sent! Please check your inbox.\",\"n/7+7Q\":\"Confirmation sent to\",\"x3wVFc\":\"Congratulations! Your event is now visible to the public.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Connect Stripe to enable email template editing\",\"LmvZ+E\":\"Подключите Stripe для включения сообщений\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contact \",[\"0\"]],\"41BQ3k\":\"Contact Email\",\"KcXRN+\":\"Contact email for support\",\"m8WD6t\":\"Continue Setup\",\"0GwUT4\":\"Continue to Checkout\",\"sBV87H\":\"Continue to event creation\",\"nKtyYu\":\"Continue to next step\",\"F3/nus\":\"Continue to Payment\",\"p2FRHj\":\"Control how platform fees are handled for this event\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copied from above\",\"FxVG/l\":\"Copied to clipboard\",\"PiH3UR\":\"Copied!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Copy Affiliate Link\",\"iVm46+\":\"Copy Code\",\"cF2ICc\":\"Copy customer link\",\"+2ZJ7N\":\"Copy details to first attendee\",\"ZN1WLO\":\"Copy Email\",\"y1eoq1\":\"Copy link\",\"tUGbi8\":\"Copy my details to:\",\"y22tv0\":\"Copy this link to share it anywhere\",\"/4gGIX\":\"Copy to clipboard\",\"e0f4yB\":\"Could not delete location\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Could not retrieve address details\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Could not save date\",\"eeLExK\":\"Could not save location\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Cover Image\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Cover image will be displayed at the top of your event page\",\"2NLjA6\":\"Cover image will be displayed at the top of your organizer page\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"Create \",[\"0\"],\" Template\"],\"RKKhnW\":\"Create a custom widget to sell tickets on your site.\",\"6sk7PP\":\"Create a fixed number\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"Create a password\",\"j7xZ7J\":\"Create additional organizers to manage separate brands, departments, or event series under one account. Each organizer has its own events, settings, and public page.\",\"xfKgwv\":\"Create Affiliate\",\"tudG8q\":\"Create and configure tickets and merchandise for sale.\",\"YAl9Hg\":\"Create Configuration\",\"BTne9e\":\"Create custom email templates for this event that override the organizer defaults\",\"YIDzi/\":\"Create Custom Template\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"Create discounts, access codes for hidden tickets, and special offers.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Create for this date\",\"eWEV9G\":\"Create new password\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Create Ticket or Product\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Create trackable links to reward partners who promote your event.\",\"dkAPxi\":\"Create Webhook\",\"5slqwZ\":\"Create Your Event\",\"JQNMrj\":\"Create your first event\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Create your own event\",\"67NsZP\":\"Creating Event...\",\"H34qcM\":\"Creating Organizer...\",\"1YMS+X\":\"Creating your event, please wait\",\"yiy8Jt\":\"Creating your organizer profile, please wait\",\"lfLHNz\":\"CTA label is required\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"Currently available for purchase\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Произвольная дата и время\",\"mimF6c\":\"Custom message after checkout\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Custom Questions\",\"axv/Mi\":\"Custom template\",\"2YeVGY\":\"Customer link copied to clipboard\",\"QMHSMS\":\"Клиент получит email с подтверждением возврата\",\"L/Qc+w\":\"Customer's email address\",\"wpfWhJ\":\"Customer's first name\",\"GIoqtA\":\"Customer's last name\",\"NihQNk\":\"Customers\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization.\",\"xJaTUK\":\"Customize the layout, colors, and branding of your event homepage.\",\"MXZfGN\":\"Customize the questions asked during checkout to gather important information from your attendees.\",\"iX6SLo\":\"Customize the text shown on the continue button\",\"pxNIxa\":\"Customize your email template using Liquid templating\",\"3trPKm\":\"Customize your organizer page appearance\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"Daily revenue, taxes, fees, and refunds across all events\",\"zgCHnE\":\"Daily Sales Report\",\"nHm0AI\":\"Daily sales, tax, and fee breakdown\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Dark\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"lnYE59\":\"Date of the event\",\"gnBreG\":\"Дата размещения заказа\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"VTsZuy\":\"Dates and times are managed on the\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Decline\",\"ovBPCi\":\"Default\",\"JtI4vj\":\"Default attendee information collection\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Default Fee Handling\",\"1bZAZA\":\"Default template will be used\",\"HNlEFZ\":\"delete\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Delete Affiliate\",\"KZN4Lc\":\"Delete All\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Delete Event\",\"+jw/c1\":\"Delete image\",\"hdyeZ0\":\"Delete Job\",\"xxjZeP\":\"Delete location\",\"sY3tIw\":\"Delete Organizer\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Delete Template\",\"mxsm1o\":\"Delete this question? This cannot be undone.\",\"snMaH4\":\"Delete webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deselect All\",\"NvuEhl\":\"Design Elements\",\"H8kMHT\":\"Didn't receive the code?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Dismiss this message\",\"BREO0S\":\"Отображать флажок, позволяющий клиентам подписаться на маркетинговые сообщения от этого организатора мероприятий.\",\"pfa8F0\":\"Display name\",\"Kdpf90\":\"Don't forget!\",\"352VU2\":\"Don't have an account? <0>Sign up\",\"AXXqG+\":\"Donation\",\"DPfwMq\":\"Done\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"Download sales, attendee, and financial reports for all completed orders.\",\"eneWvv\":\"Draft\",\"Ts8hhq\":\"Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable.\",\"TnzbL+\":\"Due to the high risk of spam, you must connect a Stripe account before you can send messages to attendees.\\nThis is to ensure that all event organizers are verified and accountable.\",\"euc6Ns\":\"Duplicate\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplicate Product\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Dutch\",\"22xieU\":\"e.g. 180 (3 hours)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"e.g., Get Tickets, Register Now\",\"fc7wGW\":\"e.g., Important update about your tickets\",\"54MPqC\":\"e.g., Standard, Premium, Enterprise\",\"3RQ81z\":\"Each person will receive an email with a reserved spot to complete their purchase.\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Edit \",[\"0\"],\" Template\"],\"v4+lcZ\":\"Edit Affiliate\",\"2iZEz7\":\"Edit Answer\",\"t2bbp8\":\"Редактировать участника\",\"etaWtB\":\"Редактировать данные участника\",\"+guao5\":\"Edit Configuration\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Edit location\",\"8oivFT\":\"Edit Location\",\"vRWOrM\":\"Редактировать данные заказа\",\"fW5sSv\":\"Edit webhook\",\"nP7CdQ\":\"Edit Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Education\",\"iiWXDL\":\"Eligibility Failures\",\"zPiC+q\":\"Eligible Check-In Lists\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"Email & Templates\",\"hbwCKE\":\"Email address copied to clipboard\",\"dSyJj6\":\"Email addresses do not match\",\"elW7Tn\":\"Email Body\",\"ZsZeV2\":\"Email is required\",\"Be4gD+\":\"Email Preview\",\"6IwNUc\":\"Email Templates\",\"H/UMUG\":\"Email Verification Required\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"Email verified successfully!\",\"FSN4TS\":\"Embed Widget\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"Включить самообслуживание для участников\",\"hEtQsg\":\"Включить самообслуживание для участников по умолчанию\",\"Upeg/u\":\"Enable this template for sending emails\",\"7dSOhU\":\"Включить список ожидания\",\"RxzN1M\":\"Enabled\",\"xDr/ct\":\"End\",\"sGjBEq\":\"End Date & Time (optional)\",\"PKXt9R\":\"End date must be after start date\",\"UmzbPa\":\"End date of the occurrence\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"End time (optional)\",\"jpNdOC\":\"End time of the occurrence\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Enter a subject and body to see the preview\",\"khyScF\":\"Enter a time to shift by.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Enter affiliate email (optional)\",\"ARkzso\":\"Enter affiliate name\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"Введите электронную почту\",\"INDKM9\":\"Enter email subject...\",\"xUgUTh\":\"Введите имя\",\"9/1YKL\":\"Введите фамилию\",\"VpwcSk\":\"Enter new password\",\"kWg31j\":\"Enter unique affiliate code\",\"C3nD/1\":\"Enter your email\",\"VmXiz4\":\"Enter your email and we'll send you instructions to reset your password.\",\"n9V+ps\":\"Enter your name\",\"IdULhL\":\"Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)\",\"o21Y+P\":\"entries\",\"X88/6w\":\"Записи появятся здесь, когда клиенты присоединятся к списку ожидания распроданных продуктов.\",\"LslKhj\":\"Error loading logs\",\"VCNHvW\":\"Event Archived\",\"ZD0XSb\":\"Event archived successfully\",\"WgD6rb\":\"Event Category\",\"b46pt5\":\"Event Cover Image\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Event Created\",\"1Hzev4\":\"Event custom template\",\"7u9/DO\":\"Event deleted successfully\",\"imgKgl\":\"Event Description\",\"kJDmsI\":\"Event details\",\"m/N7Zq\":\"Event Full Address\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Event Location\",\"PYs3rP\":\"Event name\",\"HhwcTQ\":\"Event Name\",\"WZZzB6\":\"Event name is required\",\"Wd5CDM\":\"Event name should be less than 150 characters\",\"4JzCvP\":\"Event Not Available\",\"Gh9Oqb\":\"Event organizer name\",\"mImacG\":\"Event Page\",\"Hk9Ki/\":\"Event restored successfully\",\"JyD0LH\":\"Event Settings\",\"cOePZk\":\"Event Time\",\"e8WNln\":\"Event timezone\",\"GeqWgj\":\"Event Timezone\",\"XVLu2v\":\"Event Title\",\"OfmsI9\":\"Event Too New\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Event Types\",\"+HeiVx\":\"Event Updated\",\"4K2OjV\":\"Event Venue\",\"19j6uh\":\"Events Performance\",\"PC3/fk\":\"Events Starting in Next 24 Hours\",\"nwiZdc\":[\"Every \",[\"0\"]],\"2LJU4o\":[\"Every \",[\"0\"],\" days\"],\"yLiYx+\":[\"Every \",[\"0\"],\" months\"],\"nn9ice\":[\"Every \",[\"0\"],\" weeks\"],\"Cdr8f9\":[\"Every \",[\"0\"],\" weeks on \",[\"1\"]],\"GVEHRk\":[\"Every \",[\"0\"],\" years\"],\"fTFfOK\":\"Every email template must include a call-to-action button that links to the appropriate page\",\"BVinvJ\":\"Examples: \\\"How did you hear about us?\\\", \\\"Company name for invoice\\\"\",\"2hGPQG\":\"Examples: \\\"T-shirt size\\\", \\\"Meal preference\\\", \\\"Job title\\\"\",\"qNuTh3\":\"Exception\",\"M1RnFv\":\"Expired\",\"kF8HQ7\":\"Export Answers\",\"2KAI4N\":\"Export CSV\",\"JKfSAv\":\"Export failed. Please try again.\",\"SVOEsu\":\"Export started. Preparing file...\",\"wuyaZh\":\"Export successful\",\"9bpUSo\":\"Exporting Affiliates\",\"jtrqH9\":\"Exporting Attendees\",\"R4Oqr8\":\"Exporting complete. Downloading file...\",\"UlAK8E\":\"Exporting Orders\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Failed\",\"8uOlgz\":\"Failed At\",\"tKcbYd\":\"Failed Jobs\",\"SsI9v/\":\"Failed to abandon order. Please try again.\",\"LdPKPR\":\"Failed to assign configuration\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Failed to cancel message\",\"cEFg3R\":\"Failed to create affiliate\",\"dVgNF1\":\"Failed to create configuration\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Failed to create template\",\"aFk48v\":\"Failed to delete configuration\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Failed to delete event\",\"Zw6LWb\":\"Failed to delete job\",\"tq0abZ\":\"Failed to delete jobs\",\"2mkc3c\":\"Failed to delete organizer\",\"vKMKnu\":\"Failed to delete question\",\"xFj7Yj\":\"Failed to delete template\",\"jo3Gm6\":\"Failed to export affiliates\",\"Jjw03p\":\"Failed to export attendees\",\"ZPwFnN\":\"Failed to export orders\",\"zGE3CH\":\"Failed to export report. Please try again.\",\"lS9/aZ\":\"Не удалось загрузить получателей\",\"X4o0MX\":\"Failed to load Webhook\",\"ETcU7q\":\"Failed to offer spot\",\"5670b9\":\"Failed to offer tickets\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"Failed to remove from waitlist\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"Failed to reorder questions\",\"EJPAcd\":\"Не удалось повторно отправить подтверждение заказа\",\"DjSbj3\":\"Не удалось повторно отправить билет\",\"YQ3QSS\":\"Failed to resend verification code\",\"wDioLj\":\"Failed to retry job\",\"DKYTWG\":\"Failed to retry jobs\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"Failed to save template\",\"l6acRV\":\"Failed to save VAT settings. Please try again.\",\"T6B2gk\":\"Failed to send message. Please try again.\",\"lKh069\":\"Failed to start export job\",\"t/KVOk\":\"Failed to start impersonation. Please try again.\",\"QXgjH0\":\"Failed to stop impersonation. Please try again.\",\"i0QKrm\":\"Failed to update affiliate\",\"NNc33d\":\"Failed to update answer.\",\"E9jY+o\":\"Не удалось обновить участника\",\"uQynyf\":\"Failed to update configuration\",\"i2PFQJ\":\"Failed to update event status\",\"EhlbcI\":\"Failed to update messaging tier\",\"rpGMzC\":\"Не удалось обновить заказ\",\"T2aCOV\":\"Failed to update organizer status\",\"Eeo/Gy\":\"Failed to update setting\",\"kqA9lY\":\"Failed to update VAT settings\",\"7/9RFs\":\"Failed to upload image.\",\"nkNfWu\":\"Failed to upload image. Please try again.\",\"rxy0tG\":\"Failed to verify email\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"Fee Currency\",\"/sV91a\":\"Fee Handling\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Fees Bypassed\",\"cf35MA\":\"Festival\",\"pAey+4\":\"File is too large. Maximum size is 5MB.\",\"VejKUM\":\"Fill in your details above first\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filter Attendees\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filter by Event\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"First attendee\",\"4pwejF\":\"Имя обязательно\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Fixed Fee\",\"zWqUyJ\":\"Fixed fee charged per transaction\",\"LWL3Bs\":\"Fixed fee must be 0 or greater\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"lWxAUo\":\"Food & Drink\",\"nFm+5u\":\"Footer Text\",\"a8nooQ\":\"Fourth\",\"mob/am\":\"Fr\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Полный возврат\",\"UsIfa8\":\"Full resolved address\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"General Admission\",\"3ep0Gx\":\"General information about your organizer\",\"ziAjHi\":\"Generate\",\"exy8uo\":\"Generate code\",\"4CETZY\":\"Get Directions\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Get started\",\"u6FPxT\":\"Get Tickets\",\"8KDgYV\":\"Get your event ready\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Go to Event Page\",\"gHSuV/\":\"Go to home page\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Good readability\",\"76gPWk\":\"Got it\",\"aGWZUr\":\"Gross revenue\",\"n8IUs7\":\"Gross Revenue\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Guest Management\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"Hello \",[\"0\"],\", manage your platform from here.\"],\"dORAcs\":\"Here are all the tickets associated with your email address.\",\"g+2103\":\"Here is your affiliate link\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Hi.Events Fee\",\"zppscQ\":\"Hi.Events platform fees and VAT breakdown by transaction\",\"D+zLDD\":\"Hidden\",\"DRErHC\":\"Hidden from attendees - only visible to organizers\",\"NNnsM0\":\"Hide advanced options\",\"P+5Pbo\":\"Hide Answers\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"Hide Options\",\"gtEbeW\":\"Highlight\",\"NF8sdv\":\"Highlight Message\",\"MXSqmS\":\"Highlight this product\",\"7ER2sc\":\"Highlighted\",\"sq7vjE\":\"Highlighted products will have a different background color to make them stand out on the event page.\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"sy9anN\":\"How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"AVpmAa\":\"How to pay offline\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Hungarian\",\"8Wgd41\":\"I acknowledge my responsibilities as a data controller\",\"O8m7VA\":\"Я согласен получать уведомления по электронной почте, связанные с этим мероприятием\",\"YLgdk5\":\"I confirm this is a transactional message related to this event\",\"4/kP5a\":\"If a new tab did not open automatically, please click the button below to continue to checkout.\",\"W/eN+G\":\"If blank, the address will be used to generate a Google Maps link\",\"iIEaNB\":\"If you have an account with us, you will receive an email with instructions on how to reset your password.\",\"an5hVd\":\"Images\",\"tSVr6t\":\"Impersonate\",\"TWXU0c\":\"Impersonate User\",\"5LAZwq\":\"Impersonation started\",\"IMwcdR\":\"Impersonation stopped\",\"0I0Hac\":\"Important Notice\",\"yD3avI\":\"Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving.\",\"jT142F\":[\"In \",[\"diffHours\"],\" hours\"],\"OoSyqO\":[\"In \",[\"diffMinutes\"],\" minutes\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"Ip0hl5\":\"in_person, online, unset, or mixed\",\"F1Xp97\":\"Individual attendees\",\"85e6zs\":\"Insert Liquid Token\",\"38KFY0\":\"Insert Variable\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrations\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"Invalid email\",\"5tT0+u\":\"Invalid email format\",\"f9WRpE\":\"Invalid file type. Please upload an image.\",\"tnL+GP\":\"Invalid Liquid syntax. Please correct it and try again.\",\"N9JsFT\":\"Invalid VAT number format\",\"g+lLS9\":\"Invite a team member\",\"1z26sk\":\"Invite Team Member\",\"KR0679\":\"Invite Team Members\",\"aH6ZIb\":\"Invite Your Team\",\"IuMGvq\":\"Invoice\",\"Lj7sBL\":\"Italian\",\"F5/CBH\":\"item(s)\",\"BzfzPK\":\"Items\",\"rjyWPb\":\"January\",\"KmWyx0\":\"Job\",\"o5r6b2\":\"Job deleted\",\"cd0jIM\":\"Job Details\",\"ruJO57\":\"Job Name\",\"YZi+Hu\":\"Job queued for retry\",\"nCywLA\":\"Join from anywhere\",\"SNzppu\":\"Присоединиться к списку ожидания\",\"dLouFI\":[\"Join Waitlist for \",[\"productDisplayName\"]],\"2gMuHR\":\"Joined\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Just looking for your tickets?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Keep me updated on news and events from \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"4Sffp7\":\"Label for the occurrence\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Last 14 Days\",\"ve9JTU\":\"Фамилия обязательна\",\"h0Q9Iw\":\"Last Response\",\"gw3Ur5\":\"Last Triggered\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"pzAivY\":\"Latitude of the resolved location\",\"N5TErv\":\"Leave empty for unlimited\",\"L/hDDD\":\"Leave empty to apply this check-in list to all occurrences\",\"9Pf3wk\":\"Leave on to cover every ticket on the event. Turn off to pick specific tickets.\",\"Hq2BzX\":\"Let them know about the change\",\"+uexiy\":\"Let them know about the changes\",\"exYcTF\":\"Library\",\"1njn7W\":\"Light\",\"1qY5Ue\":\"Link Expired or Invalid\",\"+zSD/o\":\"Link to event homepage\",\"psosdY\":\"Link to order details\",\"6JzK4N\":\"Link to ticket\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links Allowed\",\"2BBAbc\":\"List\",\"5NZpX8\":\"List view\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live Events\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Загрузка предпросмотра...\",\"IoDI2o\":\"Loading tokens...\",\"G3Ge9Z\":\"Loading webhook logs...\",\"NFxlHW\":\"Loading Webhooks\",\"E0DoRM\":\"Location deleted\",\"NtLHT3\":\"Location Formatted Address\",\"h4vxDc\":\"Location Latitude\",\"f2TMhR\":\"Location Longitude\",\"lnCo2f\":\"Location Mode\",\"8pmGFk\":\"Location Name\",\"7w8lJU\":\"Location saved\",\"YsRXDD\":\"Location updated\",\"A/kIva\":\"location updates\",\"VppBoU\":\"Locations\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Cover\",\"gddQe0\":\"Logo and cover image for your organizer\",\"TBEnp1\":\"Logo will be displayed in the header\",\"Jzu30R\":\"Logo will be displayed on the ticket\",\"zKTMTg\":\"Longitude of the resolved location\",\"PSRm6/\":\"Найти мои билеты\",\"yJFu/X\":\"Main Office\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Manage \",[\"0\"]],\"wZJfA8\":\"Manage dates and times for your recurring event\",\"RlzPUE\":\"Manage on Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Manage Schedule\",\"zXuaxY\":\"Manage your event's waitlist, view stats, and offer tickets to attendees.\",\"BWTzAb\":\"Manual\",\"g2npA5\":\"Manual offer\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max Messages / 24h\",\"Qp4HWD\":\"Max Recipients / Message\",\"3JzsDb\":\"May\",\"agPptk\":\"Medium\",\"xDAtGP\":\"Message\",\"bECJqy\":\"Message approved successfully\",\"1jRD0v\":\"Message attendees with specific tickets\",\"uQLXbS\":\"Сообщение отменено\",\"48rf3i\":\"Message cannot exceed 5000 characters\",\"ZPj0Q8\":\"Message Details\",\"Vjat/X\":\"Message is required\",\"0/yJtP\":\"Message order owners with specific products\",\"saG4At\":\"Сообщение запланировано\",\"mFdA+i\":\"Messaging Tier\",\"v7xKtM\":\"Messaging tier updated successfully\",\"H9HlDe\":\"minutes\",\"agRWc1\":\"Minutes\",\"YYzBv9\":\"Mo\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Monetary values are approximate totals across all currencies\",\"qvF+MT\":\"Monitor and manage failed background jobs\",\"kY2ll9\":\"month\",\"HajiZl\":\"Month\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Most Viewed Events (Last 14 Days)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Music\",\"oVGCGh\":\"My Tickets\",\"8/brI5\":\"Name is required\",\"sFFArG\":\"Name must be less than 255 characters\",\"sCV5Yc\":\"Name of the event\",\"xxU3NX\":\"Net Revenue\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"New location\",\"ArHT/C\":\"New Signups\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"Nightlife\",\"HSw5l3\":\"No - I'm an individual or non-VAT registered business\",\"VHfLAW\":\"No accounts\",\"+jIeoh\":\"No accounts found\",\"074+X8\":\"No Active Webhooks\",\"zxnup4\":\"No Affiliates to show\",\"Dwf4dR\":\"No attendee questions yet\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"No attribution data found\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"No capacity\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"No check-in lists available for this event.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"No configurations found\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"No data found for the selected filters. Try adjusting the date range or currency.\",\"lFVUyx\":\"No date-specific check-in list\",\"I8mtzP\":\"No dates available this month. Try navigating to another month.\",\"yDukIL\":\"No dates match the current filters.\",\"B7phdj\":\"No dates match your filters\",\"/ZB4Um\":\"No dates match your search\",\"gEdNe8\":\"No dates scheduled yet\",\"27GYXJ\":\"No dates scheduled.\",\"pZNOT9\":\"No end date\",\"dW40Uz\":\"No events found\",\"8pQ3NJ\":\"No events starting in the next 24 hours\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"No failed jobs\",\"EpvBAp\":\"No invoice\",\"XZkeaI\":\"No logs found\",\"nrSs2u\":\"No messages found\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"No order questions yet\",\"EJ7bVz\":\"No orders found\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"No organizer activity in the last 14 days\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"No other organizers available\",\"PChXMe\":\"No Paid Orders\",\"6jYQGG\":\"No past events\",\"CHzaTD\":\"No popular events in the last 14 days\",\"zK/+ef\":\"No products available for selection\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"No products have waiting entries\",\"wYiAtV\":\"No recent account signups\",\"UW90md\":\"Получатели не найдены\",\"QoAi8D\":\"No response\",\"JeO7SI\":\"No Response\",\"EK/G11\":\"No responses yet\",\"7J5OKy\":\"No saved locations yet\",\"wpCjcf\":\"No saved locations yet. They'll appear here as you create events with addresses.\",\"mPdY6W\":\"No suggestions\",\"3sRuiW\":\"No Tickets Found\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"No upcoming events\",\"qpC74J\":\"No users found\",\"8wgkoi\":\"No viewed events in the last 14 days\",\"Arzxc1\":\"Нет записей в списке ожидания\",\"n5vdm2\":\"No webhook events have been recorded for this endpoint yet. Events will appear here once they are triggered.\",\"4GhX3c\":\"No Webhooks\",\"4+am6b\":\"No, keep me here\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Not Checked In\",\"8n10sz\":\"Not Eligible\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"UYWXdN\":\"Occurrence End Date\",\"k7dZT5\":\"Occurrence End Time\",\"Opinaj\":\"Occurrence Label\",\"V9flmL\":\"Occurrence Schedule\",\"NUTUUs\":\"Occurrence Schedule page\",\"AT8UKD\":\"Occurrence Start Date\",\"Um8bvD\":\"Occurrence Start Time\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"of\",\"9h7RDh\":\"Offer\",\"EfK2O6\":\"Offer Spot\",\"3sVRey\":\"Offer Tickets\",\"2O7Ybb\":\"Offer Timeout\",\"1jUg5D\":\"Offered\",\"l+/HS6\":[\"Offers expire after \",[\"timeoutHours\"],\" hours.\"],\"lQgMLn\":\"Office or venue name\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offline Payment\",\"nO3VbP\":[\"On sale \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"w3DG44\":\"Online Connection Details\",\"WjSpu5\":\"Online Event\",\"TP6jss\":\"Online event connection details\",\"NdOxqr\":\"Only account administrators can delete or archive events. Contact your account admin for assistance.\",\"rnoDMF\":\"Only account administrators can delete or archive organizers. Contact your account admin for assistance.\",\"bU7oUm\":\"Only send to orders with these statuses\",\"M2w1ni\":\"Only visible with promo code\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Optional nickname shown in pickers, e.g. \\\"HQ Conference Room\\\"\",\"HXMJxH\":\"Дополнительный текст для отказов от ответственности, контактной информации или благодарственных заметок (только одна строка)\",\"L565X2\":\"options\",\"8m9emP\":\"or add a single date\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Order & Ticket\",\"H5qWhm\":\"Order cancelled\",\"b6+Y+n\":\"Order complete\",\"x4MLWE\":\"Order Confirmation\",\"CsTTH0\":\"Подтверждение заказа успешно отправлено повторно\",\"ppuQR4\":\"Order Created\",\"0UZTSq\":\"Order Currency\",\"xtQzag\":\"Order details\",\"HdmwrI\":\"Order Email\",\"bwBlJv\":\"Order First Name\",\"vrSW9M\":\"Заказ отменен и возвращен. Владелец заказа уведомлен.\",\"rzw+wS\":\"Order Holders\",\"oI/hGR\":\"Order ID\",\"Pc729f\":\"Order Is Awaiting Offline Payment\",\"F4NXOl\":\"Order Last Name\",\"RQCXz6\":\"Order Limits\",\"SO9AEF\":\"Order limits set\",\"5RDEEn\":\"Order Locale\",\"vu6Arl\":\"Order Marked as Paid\",\"sLbJQz\":\"Order not found\",\"kvYpYu\":\"Order Not Found\",\"i8VBuv\":\"Order Number\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Order owner\",\"eB5vce\":\"Order owners with a specific product\",\"CxLoxM\":\"Order owners with products\",\"DoH3fD\":\"Order Payment Pending\",\"UkHo4c\":\"Order Ref\",\"EZy55F\":\"Order Refunded\",\"6eSHqs\":\"Order statuses\",\"oW5877\":\"Order Total\",\"e7eZuA\":\"Order Updated\",\"1SQRYo\":\"Заказ успешно обновлен\",\"KndP6g\":\"Order URL\",\"3NT0Ck\":\"Order was cancelled\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Orders Completed\",\"5It1cQ\":\"Orders Exported\",\"tlKX/S\":\"Orders spanning multiple dates will be flagged for manual review.\",\"UQ0ACV\":\"Orders Total\",\"B/EBQv\":\"Orders:\",\"qtGTNu\":\"Organic Accounts\",\"ucgZ0o\":\"Organization\",\"P/JHA4\":\"Organizer archived successfully\",\"S3CZ5M\":\"Organizer Dashboard\",\"GzjTd0\":\"Organizer deleted successfully\",\"Uu0hZq\":\"Email организатора\",\"Gy7BA3\":\"Адрес электронной почты организатора\",\"SQqJd8\":\"Organizer Not Found\",\"HF8Bxa\":\"Organizer restored successfully\",\"wpj63n\":\"Organizer Settings\",\"o1my93\":\"Organizer status update failed. Please try again later\",\"rLHma1\":\"Organizer status updated\",\"LqBITi\":\"Organizer/default template will be used\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"Other\",\"RsiDDQ\":\"Other Lists (Ticket Not Included)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Outgoing Messages\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"Overview\",\"6WdDG7\":\"Page\",\"8uqsE5\":\"Page no longer available\",\"QkLf4H\":\"Page URL\",\"sF+Xp9\":\"Page Views\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Paid Accounts\",\"5F7SYw\":\"Частичный возврат\",\"fFYotW\":[\"Partially refunded: \",[\"0\"]],\"i8day5\":\"Pass fee to buyer\",\"k4FLBQ\":\"Pass to Buyer\",\"Ff0Dor\":\"Past\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"Past Events\",\"/l/ckQ\":\"Paste URL\",\"URAE3q\":\"Paused\",\"4fL/V7\":\"Pay\",\"OZK07J\":\"Pay to unlock\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Payment Date\",\"ENEPLY\":\"Payment method\",\"8Lx2X7\":\"Payment received\",\"fx8BTd\":\"Payments not available\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Pending Review\",\"dPYu1F\":\"Per Attendee\",\"mQV/nJ\":\"per min\",\"VlXNyK\":\"Per order\",\"hauDFf\":\"Per ticket\",\"mnF83a\":\"Percentage Fee\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"Percentage must be between 0 and 100\",\"MkuVAZ\":\"Percentage of transaction amount\",\"/Bh+7r\":\"Performance\",\"fIp56F\":\"Permanently delete this event and all its associated data.\",\"nJeeX7\":\"Permanently delete this organizer and all its events.\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"Personal Information\",\"zmwvG2\":\"Phone\",\"SdM+Q1\":\"Pick a location\",\"tSR/oe\":\"Pick an end date\",\"e8kzpp\":\"Pick at least one day of the month\",\"35C8QZ\":\"Pick at least one day of the week\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Placed\",\"wBJR8i\":\"Planning an event?\",\"J3lhKT\":\"Platform fee\",\"RD51+P\":[\"Platform fee of \",[\"0\"],\" deducted from your payout\"],\"br3Y/y\":\"Platform Fees\",\"3buiaw\":\"Platform Fees Report\",\"kv9dM4\":\"Platform Revenue\",\"PJ3Ykr\":\"Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions.\",\"OtjenF\":\"Please enter a valid email address\",\"jEw0Mr\":\"Please enter a valid URL\",\"n8+Ng/\":\"Please enter the 5-digit code\",\"r+lQXT\":\"Please enter your VAT number\",\"Dvq0wf\":\"Please provide an image.\",\"2cUopP\":\"Please restart the checkout process.\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"Please select a date range\",\"EFq6EG\":\"Please select an image.\",\"fuwKpE\":\"Please try again.\",\"klWBeI\":\"Please wait before requesting another code\",\"hfHhaa\":\"Please wait while we prepare your affiliates for export...\",\"o+tJN/\":\"Please wait while we prepare your attendees for export...\",\"+5Mlle\":\"Please wait while we prepare your orders for export...\",\"trnWaw\":\"Polish\",\"luHAJY\":\"Popular Events (Last 14 Days)\",\"p/78dY\":\"Position\",\"TjX7xL\":\"Post Checkout Message\",\"OESu7I\":\"Prevent overselling by sharing inventory across multiple ticket types.\",\"NgVUL2\":\"Preview checkout form\",\"cs5muu\":\"Preview Event page\",\"+4yRWM\":\"Price of the ticket\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"Price Tiers\",\"ReihZ7\":\"Print Preview\",\"JnuPvH\":\"Print Ticket\",\"tYF4Zq\":\"Print to PDF\",\"LcET2C\":\"Privacy Policy\",\"8z6Y5D\":\"Обработать возврат\",\"JcejNJ\":\"Processing order\",\"EWCLpZ\":\"Product Created\",\"XkFYVB\":\"Product Deleted\",\"YMwcbR\":\"Product sales, revenue, and tax breakdown\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Product Updated\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Promo code\",\"k3wH7i\":\"Promo code usage and discount breakdown\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Promo Only\",\"dLm8V5\":\"Promotional emails may result in account suspension\",\"XoEWtl\":\"Provide at least one address field for the new location.\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"aemBRq\":\"Provider\",\"EEYbdt\":\"Publish\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Purchased\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qty\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Questions reordered\",\"b24kPi\":\"Queue\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Rate\",\"mnUGVC\":\"Превышен лимит запросов. Пожалуйста, попробуйте позже.\",\"t41hVI\":\"Re-offer Spot\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Receive product updates from \",[\"0\"],\".\"],\"pLXbi8\":\"Recent Account Signups\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Recent Orders\",\"7hPBBn\":\"получатель\",\"jp5bq8\":\"получателей\",\"yPrbsy\":\"Получатели\",\"E1F5Ji\":\"Получатели доступны после отправки сообщения\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Recurring Event\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecting to Stripe...\",\"pnoTN5\":\"Referral Accounts\",\"ACKu03\":\"Refresh Preview\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Сумма возврата\",\"qY4rpA\":\"Refund failed\",\"TspTcZ\":\"Refund Issued\",\"FaK/8G\":[\"Возврат заказа \",[\"0\"]],\"MGbi9P\":\"Refund pending\",\"BDSRuX\":[\"Refunded: \",[\"0\"]],\"bU4bS1\":\"Refunds\",\"rYXfOA\":\"Regional Settings\",\"5tl0Bp\":\"Registration Questions\",\"ZNo5k1\":\"Remaining\",\"EMnuA4\":\"Reminder scheduled\",\"Bjh87R\":\"Remove label from all dates\",\"KkJtVK\":\"Reopen for new sales\",\"XJwWJp\":\"Reopen this date for new sales? Previously cancelled tickets will not be restored — affected attendees stay cancelled and any refunds already issued are not reversed.\",\"bAwDQs\":\"Repeat every\",\"CQeZT8\":\"Report not found\",\"JEPMXN\":\"Request a new link\",\"TMLAx2\":\"Required\",\"mdeIOH\":\"Resend code\",\"sQxe68\":\"Отправить подтверждение повторно\",\"bxoWpz\":\"Resend Confirmation Email\",\"G42SNI\":\"Resend email\",\"TTpXL3\":[\"Resend in \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Отправить билет повторно\",\"Uwsg2F\":\"Reserved\",\"8wUjGl\":\"Reserved until\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"Resetting...\",\"404zLK\":\"Resolved location or venue name\",\"ZlCDf+\":\"Response\",\"bsydMp\":\"Response Details\",\"yKu/3Y\":\"Restore\",\"RokrZf\":\"Restore Event\",\"/JyMGh\":\"Restore Organizer\",\"HFvFRb\":\"Restore this event to make it visible again.\",\"DDIcqy\":\"Restore this organizer and make it active again.\",\"mO8KLE\":\"results\",\"6gRgw8\":\"Retry\",\"1BG8ga\":\"Retry All\",\"rDC+T6\":\"Retry Job\",\"CbnrWb\":\"Return to Event\",\"mdQ0zb\":\"Reusable venues for your events. Locations created from the autocomplete are saved here automatically.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Revenue Summary\",\"O/8Ceg\":\"Revenue today\",\"CfuueU\":\"Revoke Offer\",\"RIgKv+\":\"Run until a specific date\",\"JYRqp5\":\"Sa\",\"dFFW9L\":[\"Sale ended \",[\"0\"]],\"loCKGB\":[\"Sale ends \",[\"0\"]],\"wlfBad\":\"Sale Period\",\"qi81Jg\":\"Sale period dates apply across all dates in your schedule. To control pricing and availability for individual dates, use the overrides on the <0>Occurrence Schedule page.\",\"5CDM6r\":\"Sale period set\",\"ftzaMf\":\"Sale period, order limits, visibility\",\"zpekWp\":[\"Sale starts \",[\"0\"]],\"mUv9U4\":\"Sales\",\"9KnRdL\":\"Sales are paused\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Sales, orders, and performance metrics for all events\",\"3Q1AWe\":\"Sales:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Sample ticket price\",\"8BRPoH\":\"Sample Venue\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Save Social Links\",\"9Y3hAT\":\"Save Template\",\"C8ne4X\":\"Save Ticket Design\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Save VAT Settings\",\"4RvD9q\":\"Saved location\",\"cgw0cL\":\"Saved locations\",\"lvSrsT\":\"Saved Locations\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Сканировать\",\"0zd6Nm\":\"Scan a ticket to check in an attendee\",\"bQG7Qk\":\"Scanned tickets will appear here\",\"WDYSLJ\":\"Scanner mode\",\"gmB6oO\":\"Schedule\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Schedule created successfully\",\"YP7frt\":\"Schedule ends on\",\"QS1Nla\":\"Запланировать на потом\",\"NAzVVw\":\"Запланировать сообщение\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Scheduled\",\"qcP/8K\":\"Запланированное время\",\"A1taO8\":\"Search\",\"ftNXma\":\"Search affiliates...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Search by account name or email...\",\"VX+B3I\":\"Search by event title or organizer...\",\"R0wEyA\":\"Search by job name or exception...\",\"VT+urE\":\"Search by name or email...\",\"GHdjuo\":\"Search by name, email, or account...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Search by order ID, customer name, or email...\",\"4DSz7Z\":\"Search by subject, event, or account...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Search messages...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Secure Checkout\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Select a category\",\"hTKQwS\":\"Select a Date & Time\",\"e4L7bF\":\"Select a message to view its contents\",\"zPRPMf\":\"Select a tier\",\"uqpVri\":\"Select a time\",\"BFRSTT\":\"Select Account\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Select All\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Select an event\",\"CFbaPk\":\"Select attendee group\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Select currency\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Select end date and time\",\"gTN6Ws\":\"Select end time\",\"0U6E9W\":\"Select event category\",\"j9cPeF\":\"Select event types\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"Select start date and time\",\"dJZTv2\":\"Select start time\",\"x8XMsJ\":\"Select the messaging tier for this account. This controls message limits and link permissions.\",\"aT3jZX\":\"Select timezone\",\"TxfvH2\":\"Select which attendees should receive this message\",\"Ropvj0\":\"Select which events will trigger this webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"Selected\",\"uq3CXQ\":\"Sell out your event.\",\"j9b/iy\":\"Selling fast 🔥\",\"73qYgo\":\"Send as test\",\"HMAqFK\":\"Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later.\",\"22Itl6\":\"Send me a copy\",\"NpEm3p\":\"Отправить сейчас\",\"nOBvex\":\"Send real-time order and attendee data to your external systems.\",\"1lNPhX\":\"Отправить email с уведомлением о возврате\",\"eaUTwS\":\"Send reset link\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Send your first message\",\"3nMAVT\":\"Sending in 2d 4h\",\"IoAuJG\":\"Sending...\",\"h69WC6\":\"Sent\",\"BVu2Hz\":\"Sent By\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Sent to customers when they place an order\",\"LxSN5F\":\"Sent to each attendee with their ticket details\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"Set default platform fee settings for new events created under this organizer.\",\"eXssj5\":\"Set default settings for new events created under this organizer.\",\"uPe5p8\":\"Set how long each date lasts\",\"xNsRxU\":\"Set number of dates\",\"ODuUEi\":\"Set or clear the date label\",\"buHACR\":\"Set the end time of each date to be this long after its start time.\",\"TaeFgl\":\"Set to unlimited (remove limit)\",\"pd6SSe\":\"Set up a recurring schedule to automatically create dates, or add them one at a time.\",\"s0FkEx\":\"Set up check-in lists for different entrances, sessions, or days.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"xMO+Ao\":\"Set up your organization\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Setting updated\",\"Ohn74G\":\"Setup & Design\",\"1W5XyZ\":\"Setup takes just a few minutes — you don't need an existing Stripe account. Stripe handles cards, wallets, regional payment methods, and fraud protection so you can focus on your event.\",\"GG7qDw\":\"Share Affiliate Link\",\"hL7sDJ\":\"Share Organizer Page\",\"jy6QDF\":\"Shared Capacity Management\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Show advanced options\",\"cMW+gm\":[\"Show all platforms (\",[\"0\"],\" more with values)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"UVPI5D\":\"Show fewer platforms\",\"Eu/N/d\":\"Показать флажок подписки на маркетинг\",\"SXzpzO\":\"Показывать флажок подписки на маркетинг по умолчанию\",\"57tTk5\":\"Show more dates\",\"b33PL9\":\"Show more platforms\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"t1LIQW\":[\"Showing \",[\"0\"],\" of \",[\"totalRows\"],\" records\"],\"E717U9\":[\"Showing \",[\"0\"],\"–\",[\"1\"],\" of \",[\"2\"]],\"5rzhBQ\":[\"Showing \",[\"MAX_VISIBLE\"],\" of \",[\"totalAvailable\"],\" dates. Type to search.\"],\"WSt3op\":[\"Showing the first \",[\"0\"],\" — the remaining \",[\"1\"],\" session(s) will still be targeted when the message is sent.\"],\"OJLTEL\":\"Shown to staff the first time they open the check-in page.\",\"jVRHeq\":\"Signed Up\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Social Links\",\"j/TOB3\":\"Social Links & Website\",\"s9KGXU\":\"Sold\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"KTxc6k\":\"Something went wrong, please try again, or contact support if the problem persists\",\"lkE00/\":\"Something went wrong. Please try again later.\",\"wdxz7K\":\"Source\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sports\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"JcQp9p\":\"Start date & time\",\"0m/ekX\":\"Start Date & Time\",\"izRfYP\":\"Start date is required\",\"tuO4fV\":\"Start date of the occurrence\",\"2R1+Rv\":\"Start time of the event\",\"2Olov3\":\"Start time of the occurrence\",\"n9ZrDo\":\"Start typing a venue or address...\",\"qeFVhN\":[\"Starts in \",[\"diffDays\"],\" days\"],\"AOqtxN\":[\"Starts in \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Starts in \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Starts in \",[\"seconds\"],\"s\"],\"NqChgF\":\"Starts tomorrow\",\"2NbyY/\":\"Statistics\",\"GVUxAX\":\"Statistics are based on account creation date\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Stop Impersonating\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe Connected\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe Not Connected\",\"9i0++A\":\"Stripe Payment ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"eYbd7b\":\"Su\",\"ii0qn/\":\"Subject is required\",\"M7Uapz\":\"Subject will appear here\",\"6aXq+t\":\"Subject:\",\"JwTmB6\":\"Successfully Duplicated Product\",\"WUOCgI\":\"Successfully offered a spot\",\"IvxA4G\":[\"Successfully offered tickets to \",[\"count\"],\" people\"],\"kKpkzy\":\"Successfully offered tickets to 1 person\",\"Zi3Sbw\":\"Успешно удалено из списка ожидания\",\"RuaKfn\":\"Successfully Updated Address\",\"kzx0uD\":\"Successfully Updated Event Defaults\",\"5n+Wwp\":\"Successfully Updated Organizer\",\"DMCX/I\":\"Successfully Updated Platform Fee Defaults\",\"URUYHc\":\"Successfully Updated Platform Fee Settings\",\"0Dk/l8\":\"Successfully Updated SEO Settings\",\"S8Tua9\":\"Successfully Updated Settings\",\"MhOoLQ\":\"Successfully Updated Social Links\",\"CNSSfp\":\"Successfully Updated Tracking Settings\",\"kj7zYe\":\"Successfully updated Webhook\",\"dXoieq\":\"Summary\",\"/RfJXt\":[\"Summer Music Festival \",[\"0\"]],\"CWOPIK\":\"Summer Music Festival 2025\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Swedish\",\"JZTQI0\":\"Switch Organizer\",\"9YHrNC\":\"System Default\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"Tax collected grouped by tax type and event\",\"Ye321X\":\"Tax Name\",\"WyCBRt\":\"Tax Summary\",\"GkH0Pq\":\"Taxes & fees applied\",\"Rwiyt2\":\"Taxes configured\",\"iQZff7\":\"Taxes, Fees, Visibility, Sale Period, Product Highlight & Order Limits\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"Tech\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Tell people what to expect at your event\",\"NiIUyb\":\"Tell us about your event\",\"DovcfC\":\"Tell us about your organization. This information will be displayed on your event pages.\",\"69GWRq\":\"Tell us how often your event repeats and we'll create all the dates for you.\",\"mXPbwY\":\"Tell us your VAT registration status so we apply the correct VAT treatment to platform fees.\",\"7wtpH5\":\"Template Active\",\"QHhZeE\":\"Template created successfully\",\"xrWdPR\":\"Template deleted successfully\",\"G04Zjt\":\"Template saved successfully\",\"xowcRf\":\"Terms of Service\",\"6K0GjX\":\"Text may be hard to read\",\"u0F1Ey\":\"Th\",\"nm3Iz/\":\"Thank you for attending!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"The background color of the page. When using cover image, this is applied as an overlay.\",\"MDNyJz\":\"The code will expire in 10 minutes. Check your spam folder if you don't see the email.\",\"AIF7J2\":\"The currency in which the fixed fee is defined. It will be converted to the order currency at checkout.\",\"MJm4Tq\":\"The currency of the order\",\"cDHM1d\":\"Адрес электронной почты был изменен. Участник получит новый билет на обновленный адрес электронной почты.\",\"I/NNtI\":\"The event venue\",\"tXadb0\":\"The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"EBzPwC\":\"The full event address\",\"sxKqBm\":\"Полная сумма заказа будет возвращена на первоначальный способ оплаты клиента.\",\"KgDp6G\":\"Ссылка, к которой вы пытаетесь получить доступ, истекла или больше не действительна. Пожалуйста, проверьте вашу электронную почту для получения обновленной ссылки для управления вашим заказом.\",\"5OmEal\":\"The locale of the customer\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"The platform fee is added to the ticket price. Buyers pay more, but you receive the full ticket price.\",\"HxxXZO\":\"The primary brand color used for buttons and highlights\",\"z0KrIG\":\"Запланированное время обязательно\",\"EWErQh\":\"Запланированное время должно быть в будущем\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"The template body contains invalid Liquid syntax. Please correct it and try again.\",\"injXD7\":\"The VAT number could not be validated. Please check the number and try again.\",\"A4UmDy\":\"Theater\",\"tDwYhx\":\"Theme & Colors\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"HrIl0p\":[\"There's no check-in list scoped to this date. The \\\"\",[\"0\"],\"\\\" list checks in attendees across every date — staff scanning a ticket for a different date will still succeed.\"],\"dt3TwA\":\"These are the default prices and quantities across all dates. Sale dates on tiers apply globally. You can override prices and quantities for individual dates on the <0>Occurrence Schedule page.\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"These details will only be shown if the order is completed successfully.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"QP3gP+\":\"These settings apply only to copied embed code and won't be stored.\",\"HirZe8\":\"These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions.\",\"lzAaG5\":\"These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead.\",\"UlykKR\":\"Third\",\"wkP5FM\":\"This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes.\",\"SOmGDa\":\"This check-in list is scoped to a session that has been cancelled, so it can no longer be used for check-ins.\",\"XBNC3E\":\"This code will be used to track sales. Only letters, numbers, hyphens, and underscores allowed.\",\"AaP0M+\":\"This color combination may be hard to read for some users\",\"o1phK/\":[\"This date has \",[\"orderCount\"],\" order(s) that will be affected.\"],\"F/UtGt\":\"This date has been cancelled. You can still delete it to remove it permanently.\",\"BLZ7pX\":\"This date is in the past. It will be created but won't be visible to attendees under upcoming dates.\",\"7IIY0z\":\"This date is marked sold out.\",\"bddWMP\":\"This date is no longer available. Please select another date.\",\"RzEvf5\":\"Это мероприятие закончилось\",\"YClrdK\":\"This event is not published yet\",\"dFJnia\":\"This is the name of your organizer that will be displayed to your users.\",\"vt7jiq\":\"This is the only time the signing secret will be shown. Please copy it now and store it securely.\",\"L7dIM7\":\"This link is invalid or has expired.\",\"MR5ygV\":\"Эта ссылка больше не действительна\",\"9LEqK0\":\"This name is visible to end users\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"This order is being processed.\",\"sjNPMw\":\"This order was abandoned. You can start a new order anytime.\",\"OhCesD\":\"This order was cancelled. You can start a new order anytime.\",\"lyD7rQ\":\"This organizer profile is not published yet\",\"9b5956\":\"This preview shows how your email will look with sample data. Actual emails will use real values.\",\"uM9Alj\":\"This product is highlighted on the event page\",\"RqSKdX\":\"This product is sold out\",\"W12OdJ\":\"This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data.\",\"0Ew0uk\":\"Этот билет только что был отсканирован. Пожалуйста, подождите перед повторным сканированием.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"This will be used for notifications and communication with your users.\",\"rhsath\":\"This will not be visible to customers, but helps you identify the affiliate.\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Ticket Design\",\"EZC/Cu\":\"Ticket design saved successfully\",\"bbslmb\":\"Ticket Designer\",\"1BPctx\":\"Ticket for\",\"bgqf+K\":\"Ticket holder's email\",\"oR7zL3\":\"Ticket holder's name\",\"HGuXjF\":\"Ticket holders\",\"CMUt3Y\":\"Ticket Holders\",\"awHmAT\":\"ID билета\",\"6czJik\":\"Ticket Logo\",\"OkRZ4Z\":\"Ticket Name\",\"t79rDv\":\"Ticket Not Found\",\"6tmWch\":\"Ticket or Product\",\"1tfWrD\":\"Предпросмотр билета для\",\"KnjoUA\":\"Ticket price\",\"tGCY6d\":\"Ticket Price\",\"pGZOcL\":\"Билет успешно отправлен повторно\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Ticket Type\",\"X26cQf\":\"Ticket URL\",\"8qsbZ5\":\"Ticketing & Sales\",\"zNECqg\":\"tickets\",\"6GQNLE\":\"Tickets\",\"NRhrIB\":\"Tickets & Products\",\"OrWHoZ\":\"Tickets are automatically offered to waitlisted customers when capacity becomes available.\",\"EUnesn\":\"Tickets Available\",\"AGRilS\":\"Tickets Sold\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"dMtLDE\":\"to\",\"/jQctM\":\"To\",\"tiI71C\":\"To increase your limits, contact us at\",\"ecUA8p\":\"Today\",\"W428WC\":\"Toggle columns\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Top Organizers (Last 14 Days)\",\"3sZ0xx\":\"Total Accounts\",\"EaAPbv\":\"Total amount paid\",\"SMDzqJ\":\"Total Attendees\",\"orBECM\":\"Total Collected\",\"k5CU8c\":\"Total Entries\",\"4B7oCp\":\"Total Fee\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total Users\",\"oJjplO\":\"Total Views\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Track account growth and performance by attribution source\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"True if offline payment\",\"9GsDR2\":\"True if payment pending\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Try another email\",\"3DZvE7\":\"Try Hi.Events Free\",\"7P/9OY\":\"Tu\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turkish\",\"GdOhw6\":\"Turn sound off\",\"KUOhTy\":\"Turn sound on\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Type \\\"delete\\\" to confirm\",\"XxecLm\":\"Type of ticket\",\"IrVSu+\":\"Unable to duplicate product. Please check the your details\",\"Vx2J6x\":\"Unable to fetch attendee\",\"h0dx5e\":\"Не удалось присоединиться к списку ожидания\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Unattributed Accounts\",\"9uI/rE\":\"Undo\",\"b9SN9q\":\"Unique order reference\",\"Ef7StM\":\"Unknown\",\"ZBAScj\":\"Unknown Attendee\",\"MEIAzV\":\"Unnamed\",\"K6L5Mx\":\"Unnamed location\",\"X13xGn\":\"Untrusted\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Update Affiliate\",\"59qHrb\":\"Update capacity\",\"Gaem9v\":\"Update event name and description\",\"7EhE4k\":\"Update label\",\"NPQWj8\":\"Update location\",\"75+lpR\":[\"Update: \",[\"subjectTitle\"],\" — schedule changes\"],\"UOGHdA\":[\"Update: \",[\"subjectTitle\"],\" — session time changed\"],\"ogoTrw\":[\"Updated \",[\"count\"],\" date(s)\"],\"dDuona\":[\"Updated capacity for \",[\"count\"],\" date(s)\"],\"FT3LSc\":[\"Updated label for \",[\"count\"],\" date(s)\"],\"8EcY1g\":[\"Updated location for \",[\"count\"],\" date(s)\"],\"gJQsLv\":\"Upload a cover image for your organizer\",\"4kEGqW\":\"Upload a logo for your organizer\",\"lnCMdg\":\"Upload Image\",\"29w7p6\":\"Uploading image...\",\"HtrFfw\":\"URL is required\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Используйте <0>шаблоны Liquid для персонализации ваших писем\",\"g0WJMu\":\"Use all-dates list\",\"0k4cdb\":\"Use order details for all attendees. Attendee names and emails will match the buyer's information.\",\"MKK5oI\":\"Use the all-dates list, or create a list for this date?\",\"bA31T4\":\"Use the buyer's details for all attendees\",\"rnoQsz\":\"Used for borders, highlights, and QR code styling\",\"BV4L/Q\":\"UTM Analytics\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validating your VAT number...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"VAT Number\",\"CabI04\":\"VAT number must not contain spaces\",\"PMhxAR\":\"VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)\",\"gPgdNV\":\"VAT number validated successfully\",\"RUMiLy\":\"VAT number validation failed\",\"vqji3Y\":\"VAT number validation failed. Please check your VAT number.\",\"8dENF9\":\"VAT on Fee\",\"ZutOKU\":\"VAT Rate\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"VAT settings saved successfully\",\"UvYql/\":\"VAT settings saved. We're validating your VAT number in the background.\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"VAT Treatment for Platform Fees\",\"FlGprQ\":\"VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%.\",\"516oLj\":\"VAT validation service temporarily unavailable\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Verification code\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Verified\",\"wCKkSr\":\"Verify Email\",\"/IBv6X\":\"Verify your email\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Verifying...\",\"fROFIL\":\"Vietnamese\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"RnvnDc\":\"View all messages sent across the platform\",\"+WFMis\":\"View and download reports across all your events. Only completed orders are included.\",\"c7VN/A\":\"View Answers\",\"SZw9tS\":\"View Details\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"View Event\",\"c6SXHN\":\"View Event Page\",\"n6EaWL\":\"View logs\",\"OaKTzt\":\"View Map\",\"zNZNMs\":\"View Message\",\"67OJ7t\":\"View Order\",\"tKKZn0\":\"View Order Details\",\"KeCXJu\":\"View order details, issue refunds, and resend confirmations.\",\"9jnAcN\":\"View Organizer Homepage\",\"1J/AWD\":\"View Ticket\",\"N9FyyW\":\"View, edit, and export your registered attendees.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Waiting\",\"quR8Qp\":\"Waiting for payment\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Список ожидания\",\"3RXFtE\":\"Список ожидания включён\",\"TwnTPy\":\"Waitlist offer expired\",\"NzIvKm\":\"Waitlist triggered\",\"aUi/Dz\":\"Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned.\",\"qeygIa\":\"We\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"We couldn't find any orders associated with this email address.\",\"2RZK9x\":\"We couldn't find the order you're looking for. The link may have expired or the order details may have changed.\",\"nefMIK\":\"We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed.\",\"miysJh\":\"We couldn't find this order. It may have been removed.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"We hit a snag loading this page. Please try again.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"We recommend a square logo with minimum dimensions of 200x200px\",\"wJzo/w\":\"We recommend dimensions of 400px by 400px, and a maximum file size of 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"We use cookies to help us understand how the site is used and to improve your experience.\",\"x8rEDQ\":\"We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later.\",\"iy+M+c\":[\"We'll notify you by email if a spot becomes available for \",[\"productDisplayName\"],\".\"],\"McuGND\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"q1BizZ\":\"We'll send your tickets to this email\",\"ZOmUYW\":\"We'll validate your VAT number in the background. If there are any issues, we'll let you know.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"We've sent a 5-digit verification code to:\",\"GdWB+V\":\"Webhook created successfully\",\"2X4ecw\":\"Webhook deleted successfully\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook Logs\",\"I0adYQ\":\"Webhook Signing Secret\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook will not send notifications\",\"FSaY52\":\"Webhook will send notifications\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Welcome back\",\"QDWsl9\":[\"Welcome to \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Welcome to \",[\"0\"],\", here's a listing of all your events\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"What type of event?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"When a check-in is deleted\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"When a new attendee is created\",\"zyIyPe\":\"When a new event is created\",\"Lc18qn\":\"When a new order is created\",\"dfkQIO\":\"When a new product is created\",\"8OhzyY\":\"When a product is deleted\",\"tRXdQ9\":\"When a product is updated\",\"9L9/28\":\"When a product sells out, customers can join a waitlist to be notified when spots become available.\",\"Q7CWxp\":\"When an attendee is cancelled\",\"IuUoyV\":\"When an attendee is checked in\",\"nBVOd7\":\"When an attendee is updated\",\"t7cuMp\":\"When an event is archived\",\"gtoSzE\":\"When an event is updated\",\"ny2r8d\":\"When an order is cancelled\",\"c9RYbv\":\"When an order is marked as paid\",\"ejMDw1\":\"When an order is refunded\",\"fVPt0F\":\"When an order is updated\",\"bcYlvb\":\"When check-in closes\",\"XIG669\":\"When check-in opens\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"При включении новые мероприятия позволят участникам управлять своими данными билетов через защищенную ссылку. Это может быть переопределено для каждого мероприятия.\",\"blXLKj\":\"При включении новые мероприятия будут отображать флажок подписки на маркетинг при оформлении заказа. Это можно переопределить для каждого мероприятия.\",\"Kj0Txn\":\"When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported.\",\"tMqezN\":\"Whether refunds are being processed\",\"uchB0M\":\"Widget Preview\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Write your message here...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"Yes - I have a valid EU VAT registration number\",\"Tz5oXG\":\"Yes, cancel my order\",\"QlSZU0\":[\"You are impersonating <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Вы оформляете частичный возврат. Клиенту будет возвращено \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"You can configure additional service fees and taxes in your account settings.\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"You can still manually offer tickets if needed.\",\"jTDzpA\":\"You cannot archive the last active organizer on your account.\",\"5VGIlq\":\"You have reached your messaging limit.\",\"casL1O\":\"You have taxes and fees added to a Free Product. Would you like to remove them?\",\"9jJNZY\":\"You must acknowledge your responsibilities before saving\",\"pCLes8\":\"Вы должны согласиться на получение сообщений\",\"FVTVBy\":\"You must verify your email address before you can update the organizer status.\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"You need to verify your account email before you can modify email templates.\",\"FRl8Jv\":\"You need to verify your account email before you can send messages.\",\"88cUW+\":\"You receive\",\"O6/3cu\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"You're going to \",[\"0\"],\"!\"],\"qGZz0m\":\"Вы в списке ожидания!\",\"/5HL6k\":\"You've been offered a spot!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"Your account has messaging limits. To increase your limits, contact us at\",\"x/xjzn\":\"Your affiliates have been exported successfully.\",\"TF37u6\":\"Your attendees have been exported successfully.\",\"79lXGw\":\"Your check-in list has been created successfully. Share the link below with your check-in staff.\",\"BnlG9U\":\"Your current order will be lost.\",\"nBqgQb\":\"Your Email\",\"GG1fRP\":\"Your event is live!\",\"ifRqmm\":\"Your message has been sent successfully!\",\"0/+Nn9\":\"Your messages will appear here\",\"/Rj5P4\":\"Your Name\",\"PFjJxY\":\"Your new password must be at least 8 characters long.\",\"gzrCuN\":\"Your order details have been updated. A confirmation email has been sent to the new email address.\",\"naQW82\":\"Your order has been cancelled.\",\"bhlHm/\":\"Your order is awaiting payment\",\"XeNum6\":\"Your orders have been exported successfully.\",\"Xd1R1a\":\"Your organizer address\",\"WWYHKD\":\"Your payment is protected with bank-level encryption\",\"5b3QLi\":\"Your Plan\",\"N4Zkqc\":\"Your saved date filter is no longer available — showing all dates.\",\"FNO5uZ\":\"Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions.\",\"CnZ3Ou\":\"Your tickets have been confirmed.\",\"EmFsMZ\":\"Your VAT number is queued for validation\",\"QBlhh4\":\"Your VAT number will be validated when you save\",\"fT9VLt\":\"Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/ru.po b/frontend/src/locales/ru.po index d1d2d55cc2..add94ee60d 100644 --- a/frontend/src/locales/ru.po +++ b/frontend/src/locales/ru.po @@ -60,7 +60,7 @@ msgstr "" msgid "{0} Active Webhooks" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "" @@ -78,7 +78,7 @@ msgstr "" msgid "{0} logo" msgstr "" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "" @@ -90,7 +90,7 @@ msgstr "" msgid "{0} spots left" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "{attendeeCount} attendees are registered for this session." msgstr "" -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "{checkedIn} / {total} checked in" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "" @@ -163,11 +163,11 @@ msgstr "" msgid "{organizerName}'s first event" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "" @@ -230,7 +230,7 @@ msgstr "" msgid "1 Active Webhook" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "" @@ -238,35 +238,35 @@ msgstr "" msgid "1 attendee is registered for this session." msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 день после даты окончания" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 день после даты начала" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "За 1 день до мероприятия" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "За 1 час до мероприятия" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "За 1 неделю до мероприятия" @@ -301,7 +301,7 @@ msgstr "" msgid "A cancellation notice has been sent to" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "" @@ -321,7 +321,7 @@ msgstr "" msgid "A fee, like a booking fee or a service fee" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "" msgid "A Radio option has multiple options but only one can be selected." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Accounts" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "" @@ -493,10 +493,10 @@ msgstr "" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "" msgid "Activity" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "" msgid "Add at least one time" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "" @@ -572,15 +576,19 @@ msgstr "" msgid "Add Dates" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "" msgid "Add Tax or Fee" msgstr "" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "" @@ -634,8 +642,8 @@ msgstr "" msgid "Add this event to your calendar" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "" @@ -649,7 +657,7 @@ msgstr "" msgid "Add to Calendar" msgstr "" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "" @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "" @@ -725,7 +733,7 @@ msgstr "" msgid "Admin Dashboard" msgstr "" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "" @@ -776,7 +784,7 @@ msgstr "" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "" @@ -838,12 +846,12 @@ msgstr "" msgid "All jobs queued for retry" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "" @@ -897,7 +905,7 @@ msgstr "" msgid "Already in" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Уже возвращено" @@ -905,11 +913,11 @@ msgstr "Уже возвращено" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Также отменить этот заказ" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Также вернуть деньги за этот заказ" @@ -932,7 +940,7 @@ msgstr "" msgid "Amount Paid" msgstr "" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "" @@ -952,7 +960,7 @@ msgstr "" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "" @@ -988,7 +996,7 @@ msgstr "" msgid "Appearance" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "" @@ -996,7 +1004,7 @@ msgstr "" msgid "Applies to {0} products" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "" @@ -1008,7 +1016,7 @@ msgstr "" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "" @@ -1016,11 +1024,11 @@ msgstr "" msgid "Apply" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "" @@ -1028,7 +1036,7 @@ msgstr "" msgid "Apply this {type} to all new products" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "" @@ -1044,36 +1052,35 @@ msgstr "" msgid "April" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "" -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "" @@ -1085,15 +1092,15 @@ msgstr "" msgid "Are you sure you want to activate this attendee?" msgstr "" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "" @@ -1123,7 +1130,7 @@ msgstr "" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "" @@ -1137,11 +1144,11 @@ msgstr "" msgid "Are you sure you want to delete this promo code?" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "" @@ -1150,17 +1157,17 @@ msgstr "" msgid "Are you sure you want to delete this webhook?" msgstr "" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "" @@ -1200,15 +1207,15 @@ msgstr "" msgid "Are you sure you want to resend the ticket to {0}?" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "" @@ -1229,7 +1236,7 @@ msgstr "" msgid "Are you sure you would like to delete this Check-In List?" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "" @@ -1237,7 +1244,7 @@ msgstr "" msgid "Art" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "" @@ -1270,7 +1277,7 @@ msgstr "" msgid "At least one event type must be selected" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "" @@ -1287,7 +1293,7 @@ msgstr "" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "" @@ -1364,13 +1370,13 @@ msgstr "" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "" @@ -1393,16 +1399,16 @@ msgstr "" msgid "Attendees Exported" msgstr "" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "" @@ -1454,7 +1460,7 @@ msgstr "" msgid "Available" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Доступно для возврата" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "" @@ -1482,7 +1488,7 @@ msgstr "" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "" @@ -1513,14 +1519,14 @@ msgstr "" msgid "Back to calendar" msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "" @@ -1548,7 +1554,7 @@ msgstr "" msgid "Background Type" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "" msgid "Basic Information" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "" @@ -1599,11 +1605,11 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "" @@ -1635,11 +1641,11 @@ msgstr "" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "" @@ -1660,7 +1666,7 @@ msgstr "" msgid "By ticket type" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "" @@ -1729,7 +1735,7 @@ msgstr "" msgid "Cancel {count} date(s)" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Отменить все продукты и вернуть их в общий пул" @@ -1743,7 +1749,7 @@ msgstr "Отменить все продукты и вернуть их в об msgid "Cancel Date" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "" @@ -1751,7 +1757,7 @@ msgstr "" msgid "Cancel order" msgstr "" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "" @@ -1759,7 +1765,7 @@ msgstr "" msgid "Cancel Order {0}" msgstr "" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "Отмена отменит всех участников, связанных с этим заказом, и вернет билеты в доступный пул." @@ -1781,7 +1787,7 @@ msgstr "" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "" msgid "Cancelled {0} date(s)" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "" @@ -1825,7 +1831,7 @@ msgstr "" msgid "Capacity must be 0 or greater" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "" @@ -1833,7 +1839,7 @@ msgstr "" msgid "Capacity Used" msgstr "" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "" @@ -1854,19 +1860,19 @@ msgstr "" msgid "Category Created Successfully" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "" @@ -1874,7 +1880,7 @@ msgstr "" msgid "Change waitlist settings" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "" @@ -1891,15 +1897,15 @@ msgstr "" msgid "Check in" msgstr "" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "" @@ -1913,7 +1919,7 @@ msgstr "" msgid "Check out this event: {0}" msgstr "" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "" @@ -1994,7 +2000,7 @@ msgstr "" msgid "Check-In Lists" msgstr "" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "" @@ -2074,11 +2080,11 @@ msgstr "" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "" @@ -2108,12 +2114,12 @@ msgstr "" #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "" @@ -2122,7 +2128,7 @@ msgstr "" msgid "Clear" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "" @@ -2134,7 +2140,7 @@ msgstr "" msgid "Clear Search Text" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" @@ -2154,7 +2160,7 @@ msgstr "" msgid "Click to view notes" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "" @@ -2162,8 +2168,8 @@ msgstr "" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "" @@ -2259,7 +2265,7 @@ msgstr "" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "" @@ -2267,11 +2273,11 @@ msgstr "" msgid "complete" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "" @@ -2280,11 +2286,11 @@ msgstr "" msgid "Complete Stripe setup" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "" @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "" #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "" @@ -2377,10 +2383,10 @@ msgstr "" msgid "Confirm" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "" @@ -2393,7 +2399,7 @@ msgstr "" msgid "Confirm new password" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "" @@ -2428,16 +2434,16 @@ msgstr "" msgid "Congratulations! Your event is now visible to the public." msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "" @@ -2445,7 +2451,7 @@ msgstr "" msgid "Connect Stripe to enable messaging" msgstr "Подключите Stripe для включения сообщений" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "" @@ -2508,7 +2514,7 @@ msgstr "" msgid "Continue Setup" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "" @@ -2520,7 +2526,7 @@ msgstr "" msgid "Continue to next step" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "" @@ -2545,7 +2551,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "" @@ -2591,7 +2597,7 @@ msgstr "" msgid "Copy customer link" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "" @@ -2609,7 +2615,7 @@ msgstr "" msgid "Copy Link" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "" @@ -2630,7 +2636,7 @@ msgstr "" msgid "Could not delete location" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "" @@ -2652,13 +2658,17 @@ msgstr "" msgid "Could not save location" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "" @@ -2671,6 +2681,10 @@ msgstr "" msgid "Cover Image" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "" @@ -2743,7 +2757,7 @@ msgstr "" msgid "Create and configure tickets and merchandise for sale." msgstr "" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "" @@ -2771,17 +2785,17 @@ msgstr "" msgid "Create Check-In List" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "" @@ -2793,16 +2807,16 @@ msgstr "" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "" @@ -2849,7 +2863,7 @@ msgstr "" msgid "Create Ticket or Product" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "" msgid "Create your first event" msgstr "" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "" msgid "Currency" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "" @@ -2931,7 +2949,7 @@ msgstr "" msgid "Custom branding" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Произвольная дата и время" @@ -2957,7 +2975,7 @@ msgstr "" msgid "Custom Range" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "" @@ -2970,7 +2988,7 @@ msgstr "" msgid "Customer link copied to clipboard" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "Клиент получит email с подтверждением возврата" @@ -2990,11 +3008,15 @@ msgstr "" msgid "Customers" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "" @@ -3027,6 +3049,10 @@ msgstr "" msgid "Customize your email template using Liquid templating" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "" @@ -3079,7 +3105,7 @@ msgstr "" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Дата и время" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "" @@ -3208,12 +3234,12 @@ msgstr "" msgid "Default Fee Handling" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "" @@ -3267,8 +3293,8 @@ msgstr "" msgid "Delete Date" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "" @@ -3285,8 +3311,8 @@ msgstr "" msgid "Delete location" msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "" @@ -3294,7 +3320,7 @@ msgstr "" msgid "Delete Permanently" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "" @@ -3319,7 +3345,7 @@ msgstr "" msgid "Description" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "" msgid "Discount Type" msgstr "" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "" @@ -3441,7 +3467,7 @@ msgstr "" msgid "Download invoice" msgstr "" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "" #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "" @@ -3469,7 +3494,7 @@ msgstr "" msgid "Dropdown selection" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "" @@ -3488,7 +3513,7 @@ msgstr "" msgid "Duplicate Date" msgstr "" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "" @@ -3506,7 +3531,7 @@ msgstr "" msgid "Duplicate Product" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "" @@ -3518,7 +3543,7 @@ msgstr "" msgid "e.g. 180 (3 hours)" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3528,11 +3553,11 @@ msgstr "" msgid "e.g., Get Tickets, Register Now" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "" @@ -3540,7 +3565,7 @@ msgstr "" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "" @@ -3609,7 +3634,7 @@ msgstr "" msgid "Edit Code" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "" @@ -3657,8 +3682,8 @@ msgstr "" msgid "Edit user" msgstr "" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "" @@ -3706,7 +3731,7 @@ msgstr "" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3719,7 +3744,7 @@ msgstr "" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "" @@ -3741,10 +3766,10 @@ msgstr "" msgid "Email address" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "" @@ -3753,8 +3778,8 @@ msgstr "" msgid "Email address copied to clipboard" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "" @@ -3762,21 +3787,21 @@ msgstr "" msgid "Email Body" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "" @@ -3790,7 +3815,7 @@ msgstr "" msgid "Email is required" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "" @@ -3798,7 +3823,7 @@ msgstr "" msgid "Email Preview" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "" @@ -3807,6 +3832,10 @@ msgstr "" msgid "Email Verification Required" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "" @@ -3895,12 +3924,11 @@ msgstr "" msgid "End time of the occurrence" msgstr "" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "" @@ -3918,11 +3946,11 @@ msgstr "" msgid "English" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "" @@ -3930,7 +3958,7 @@ msgstr "" msgid "Enter a subject and body to see the preview" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "" @@ -3947,11 +3975,11 @@ msgstr "" msgid "Enter affiliate name" msgstr "" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "" @@ -3996,7 +4024,7 @@ msgstr "" msgid "Enter your name" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "" @@ -4010,7 +4038,7 @@ msgstr "Записи появятся здесь, когда клиенты пр #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "" @@ -4072,7 +4100,7 @@ msgstr "" msgid "Event Archived" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "" @@ -4084,7 +4112,7 @@ msgstr "" msgid "Event Cover Image" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4092,7 +4120,7 @@ msgstr "" msgid "Event Created" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "" @@ -4111,7 +4139,7 @@ msgstr "" msgid "Event Defaults" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "" @@ -4143,10 +4171,14 @@ msgstr "" msgid "Event Full Address" msgstr "" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "" @@ -4186,7 +4218,7 @@ msgstr "" msgid "Event Page" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "" @@ -4195,17 +4227,17 @@ msgstr "" msgid "Event Settings" msgstr "" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "" @@ -4238,7 +4270,7 @@ msgstr "" msgid "Event Too New" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "" @@ -4403,7 +4435,7 @@ msgstr "" msgid "Failed Jobs" msgstr "" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "" @@ -4437,7 +4469,7 @@ msgstr "" msgid "Failed to create affiliate" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "" @@ -4445,12 +4477,12 @@ msgstr "" msgid "Failed to create schedule" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "" @@ -4468,7 +4500,7 @@ msgstr "" msgid "Failed to delete dates" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "" @@ -4480,7 +4512,7 @@ msgstr "" msgid "Failed to delete jobs" msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "" @@ -4488,13 +4520,13 @@ msgstr "" msgid "Failed to delete question" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "" @@ -4592,14 +4624,14 @@ msgstr "" msgid "Failed to save product settings" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "" @@ -4637,11 +4669,11 @@ msgstr "" msgid "Failed to update attendee" msgstr "Не удалось обновить участника" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "" @@ -4653,7 +4685,7 @@ msgstr "" msgid "Failed to update order" msgstr "Не удалось обновить заказ" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "" @@ -4699,7 +4731,7 @@ msgstr "" msgid "Fee" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "" @@ -4718,7 +4750,7 @@ msgstr "" msgid "Fees" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "" @@ -4730,8 +4762,8 @@ msgstr "" msgid "File is too large. Maximum size is 5MB." msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "" @@ -4752,7 +4784,7 @@ msgstr "" msgid "Filter by date" msgstr "" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "" @@ -4773,19 +4805,27 @@ msgstr "" msgid "Finish setting up Stripe" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "" @@ -4796,22 +4836,22 @@ msgstr "" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "" @@ -4841,16 +4881,16 @@ msgstr "" msgid "Fixed fee" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "" @@ -4921,7 +4961,11 @@ msgstr "" msgid "Full data ownership" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Полный возврат" @@ -4929,11 +4973,11 @@ msgstr "Полный возврат" msgid "Full resolved address" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "" @@ -4990,7 +5034,7 @@ msgstr "" msgid "Get Tickets" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "" @@ -5011,7 +5055,7 @@ msgstr "" msgid "Go back to profile" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "" @@ -5035,7 +5079,7 @@ msgstr "" msgid "Got it" msgstr "" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "" @@ -5043,22 +5087,22 @@ msgstr "" msgid "Gross Revenue" msgstr "" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5075,7 +5119,7 @@ msgstr "" msgid "Happening now" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "" @@ -5104,7 +5148,7 @@ msgstr "" msgid "Here is your affiliate link" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "" @@ -5139,8 +5183,8 @@ msgstr "" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "" @@ -5237,8 +5281,8 @@ msgstr "" msgid "Homer" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "" @@ -5267,11 +5311,11 @@ msgstr "" msgid "How to pay offline" msgstr "" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "" -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "" @@ -5291,7 +5335,7 @@ msgstr "" msgid "Hungarian" msgstr "" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "" @@ -5303,11 +5347,11 @@ msgstr "Я согласен получать уведомления по эле msgid "I agree to the <0>terms and conditions" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "" @@ -5323,7 +5367,7 @@ msgstr "" msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "" @@ -5368,11 +5412,11 @@ msgstr "" msgid "Impersonation stopped" msgstr "" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "" @@ -5388,7 +5432,7 @@ msgstr "" msgid "in last {0} min" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "" @@ -5399,15 +5443,15 @@ msgstr "" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "" @@ -5481,12 +5525,12 @@ msgstr "" msgid "Invalid file type. Please upload an image." msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "" @@ -5523,7 +5567,7 @@ msgid "Invoice" msgstr "" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "" @@ -5543,7 +5587,7 @@ msgstr "" msgid "Italian" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "" @@ -5626,7 +5670,7 @@ msgstr "" msgid "Just wrapped" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "" @@ -5645,13 +5689,13 @@ msgstr "" msgid "Label for the occurrence" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "" @@ -5679,7 +5723,7 @@ msgid "Last 24 hours" msgstr "" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "" @@ -5695,13 +5739,13 @@ msgid "Last 6 months" msgstr "" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "" @@ -5717,18 +5761,18 @@ msgid "Last name" msgstr "" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "" @@ -5751,7 +5795,7 @@ msgstr "" msgid "Last Used" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "" @@ -5784,7 +5828,7 @@ msgstr "" msgid "Let them know about the change" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "" @@ -5828,12 +5872,11 @@ msgstr "" msgid "List view" msgstr "" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "" @@ -5846,7 +5889,7 @@ msgstr "" msgid "Live Events" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "" @@ -5870,8 +5913,8 @@ msgstr "" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "" @@ -5924,7 +5967,7 @@ msgstr "" msgid "Location updated" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "" @@ -5988,7 +6031,7 @@ msgstr "" msgid "Make billing address mandatory during checkout" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6021,7 +6064,7 @@ msgstr "" msgid "Manage dates and times for your recurring event" msgstr "" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "" @@ -6037,10 +6080,14 @@ msgstr "" msgid "Manage payment and invoicing settings for this event." msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "" @@ -6122,7 +6169,7 @@ msgstr "" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "" @@ -6139,7 +6186,7 @@ msgstr "" msgid "Message Attendees" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "" @@ -6163,7 +6210,7 @@ msgstr "" msgid "Message Details" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "" @@ -6171,15 +6218,15 @@ msgstr "" msgid "Message is required" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Сообщение запланировано" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "" @@ -6210,8 +6257,8 @@ msgstr "" msgid "minutes" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "" @@ -6227,7 +6274,7 @@ msgstr "" msgid "Mo" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "" @@ -6280,7 +6327,7 @@ msgstr "" msgid "Most Viewed Events (Last 14 Days)" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "" @@ -6288,7 +6335,7 @@ msgstr "" msgid "Multi line text box" msgstr "" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6341,7 +6388,7 @@ msgstr "" #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6351,11 +6398,11 @@ msgstr "" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "" @@ -6382,21 +6429,21 @@ msgstr "" msgid "Never" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "" @@ -6424,7 +6471,7 @@ msgstr "" msgid "No" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "" @@ -6490,7 +6537,7 @@ msgid "No Capacity Assignments" msgstr "" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6507,7 +6554,7 @@ msgstr "" msgid "No check-ins yet" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "" @@ -6535,7 +6582,7 @@ msgstr "" msgid "No dates available this month. Try navigating to another month." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "" @@ -6580,8 +6627,8 @@ msgstr "" msgid "No events to show" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6629,8 +6676,8 @@ msgstr "" msgid "No orders to show" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6641,7 +6688,7 @@ msgstr "" msgid "No organizer activity in the last 14 days" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "" @@ -6731,7 +6778,7 @@ msgstr "" msgid "No results" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "" @@ -6791,16 +6838,16 @@ msgstr "" msgid "No Webhooks" msgstr "" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "" @@ -6868,7 +6915,7 @@ msgstr "" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "" @@ -7003,7 +7050,7 @@ msgstr "" msgid "Offline Payments Settings" msgstr "" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7026,7 +7073,7 @@ msgstr "" msgid "Ongoing" msgstr "" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7034,11 +7081,11 @@ msgstr "" msgid "Online" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "" @@ -7068,15 +7115,15 @@ msgstr "" msgid "Online Event Details" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "" @@ -7171,7 +7218,7 @@ msgstr "" msgid "Order #" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "" @@ -7180,13 +7227,13 @@ msgstr "" msgid "Order Cancelled" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "" @@ -7271,7 +7318,7 @@ msgstr "" msgid "Order Marked as Paid" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "" @@ -7295,7 +7342,7 @@ msgstr "" msgid "Order owner" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "" @@ -7325,7 +7372,7 @@ msgstr "" msgid "Order Status" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "" @@ -7339,7 +7386,7 @@ msgid "Order timeout" msgstr "" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "" @@ -7355,7 +7402,7 @@ msgstr "Заказ успешно обновлен" msgid "Order URL" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "" @@ -7372,8 +7419,8 @@ msgstr "" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7432,7 +7479,7 @@ msgstr "" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7442,17 +7489,17 @@ msgstr "" msgid "Organizer" msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "" @@ -7484,7 +7531,7 @@ msgstr "" msgid "Organizer Not Found" msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "" @@ -7502,7 +7549,7 @@ msgstr "" msgid "Organizer status updated" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "" @@ -7510,7 +7557,7 @@ msgstr "" msgid "Organizers" msgstr "" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "" @@ -7561,7 +7608,7 @@ msgstr "" msgid "Page" msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "" @@ -7573,7 +7620,7 @@ msgstr "" msgid "Page URL" msgstr "" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "" @@ -7581,11 +7628,11 @@ msgstr "" msgid "Page Views" msgstr "" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7597,7 +7644,7 @@ msgstr "" msgid "Paid Product" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Частичный возврат" @@ -7621,7 +7668,7 @@ msgstr "" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "" @@ -7692,7 +7739,7 @@ msgstr "" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "" @@ -7733,7 +7780,7 @@ msgstr "" msgid "Payment provider" msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "" @@ -7745,7 +7792,7 @@ msgstr "" msgid "Payment Status" msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "" @@ -7759,11 +7806,11 @@ msgstr "" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "" @@ -7799,8 +7846,8 @@ msgstr "" msgid "Percentage Amount" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "" @@ -7808,11 +7855,11 @@ msgstr "" msgid "Percentage fee (%)" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "" @@ -7820,11 +7867,11 @@ msgstr "" msgid "Performance" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "" @@ -7832,7 +7879,7 @@ msgstr "" msgid "Permanently remove this date" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "" @@ -7840,7 +7887,7 @@ msgstr "" msgid "Phone" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "" @@ -7890,7 +7937,7 @@ msgstr "" msgid "Platform Fees" msgstr "" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "" @@ -7916,7 +7963,7 @@ msgstr "" msgid "Please check your email is valid" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "" @@ -7924,7 +7971,7 @@ msgstr "" msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "" @@ -7953,7 +8000,7 @@ msgstr "" msgid "Please enter the 5-digit code" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "" @@ -7969,11 +8016,11 @@ msgstr "" msgid "Please restart the checkout process." msgstr "" -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "" @@ -7985,7 +8032,7 @@ msgstr "" msgid "Please select an image." msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "" @@ -7996,7 +8043,7 @@ msgstr "" msgid "Please try again." msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "" @@ -8013,7 +8060,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "" #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "" @@ -8122,7 +8169,7 @@ msgstr "" msgid "Print Ticket" msgstr "" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "" @@ -8137,7 +8184,7 @@ msgstr "" msgid "Privacy Policy" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Обработать возврат" @@ -8178,7 +8225,7 @@ msgstr "" msgid "Product Price Type" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8219,14 +8266,14 @@ msgstr "" msgid "Products" msgstr "" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8237,11 +8284,11 @@ msgstr "" msgid "Products sorted successfully" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "" @@ -8249,7 +8296,7 @@ msgstr "" msgid "Progress" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "" @@ -8296,7 +8343,7 @@ msgstr "" msgid "Promo Only" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "" @@ -8306,11 +8353,11 @@ msgid "" "and conditions, guidelines, or any important information that attendees need to know before answering." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "" @@ -8319,11 +8366,11 @@ msgid "Provider" msgstr "" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8427,7 +8474,7 @@ msgstr "" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "" @@ -8435,6 +8482,10 @@ msgstr "" msgid "Recent Account Signups" msgstr "" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "" @@ -8443,7 +8494,7 @@ msgstr "" msgid "Recent check-ins" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8455,7 +8506,7 @@ msgstr "" msgid "recipient" msgstr "получатель" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "" @@ -8464,7 +8515,7 @@ msgid "recipients" msgstr "получателей" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8474,7 +8525,8 @@ msgstr "Получатели" msgid "Recipients are available after the message is sent" msgstr "Получатели доступны после отправки сообщения" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "" @@ -8513,7 +8565,7 @@ msgstr "" msgid "Refund all orders for this date" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Сумма возврата" @@ -8533,7 +8585,7 @@ msgstr "" msgid "Refund order" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Возврат заказа {0}" @@ -8551,9 +8603,9 @@ msgid "Refund Status" msgstr "" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "" @@ -8567,7 +8619,7 @@ msgstr "" msgid "Refunds" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "" @@ -8594,18 +8646,18 @@ msgstr "" msgid "Reminder scheduled" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "" @@ -8657,10 +8709,11 @@ msgid "Resend Confirmation Email" msgstr "" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "" @@ -8684,7 +8737,7 @@ msgstr "Отправить билет повторно" msgid "Resend ticket email" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "" @@ -8725,30 +8778,30 @@ msgstr "" msgid "Response Details" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "" @@ -8773,7 +8826,7 @@ msgstr "" msgid "Return to Event" msgstr "" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "" @@ -8790,9 +8843,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "" #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "" @@ -8814,7 +8868,7 @@ msgstr "" msgid "Revoke Offer" msgstr "" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8868,7 +8922,7 @@ msgid "Sale starts {0}" msgstr "" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "" @@ -8926,7 +8980,7 @@ msgstr "" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8940,16 +8994,16 @@ msgstr "" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8989,16 +9043,16 @@ msgstr "" msgid "Save VAT settings" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "" @@ -9011,7 +9065,7 @@ msgstr "" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "" -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Сканировать" @@ -9031,6 +9085,10 @@ msgstr "" msgid "Schedule" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "" @@ -9039,11 +9097,11 @@ msgstr "" msgid "Schedule ends on" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Запланировать на потом" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Запланировать сообщение" @@ -9057,11 +9115,11 @@ msgstr "" msgid "Scheduled" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Запланированное время" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "" @@ -9224,11 +9282,11 @@ msgstr "" msgid "Select all on {0}" msgstr "" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "" @@ -9282,7 +9340,7 @@ msgid "Select Product Tier" msgstr "" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "" @@ -9294,7 +9352,7 @@ msgstr "" msgid "Select start time" msgstr "" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "" @@ -9307,7 +9365,7 @@ msgid "Select Ticket" msgstr "" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "" @@ -9321,7 +9379,7 @@ msgstr "" msgid "Select timezone" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "" @@ -9355,11 +9413,11 @@ msgstr "" msgid "Send" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "" @@ -9367,20 +9425,20 @@ msgstr "" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Отправить сейчас" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "" @@ -9388,7 +9446,7 @@ msgstr "" msgid "Send real-time order and attendee data to your external systems." msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Отправить email с уведомлением о возврате" @@ -9396,11 +9454,11 @@ msgstr "Отправить email с уведомлением о возврате msgid "Send reset link" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "" @@ -9425,15 +9483,15 @@ msgstr "" msgid "Sent By" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "" @@ -9486,7 +9544,7 @@ msgstr "" msgid "Set default settings for new events created under this organizer." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "" @@ -9494,11 +9552,11 @@ msgstr "" msgid "Set number of dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "" @@ -9506,7 +9564,7 @@ msgstr "" msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "" @@ -9519,10 +9577,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "" #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9532,11 +9594,15 @@ msgstr "" msgid "Set up your organization" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "" @@ -9595,11 +9661,11 @@ msgstr "" msgid "Shared Capacity Management" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "" @@ -9631,8 +9697,8 @@ msgstr "Показать флажок подписки на маркетинг" msgid "Show marketing opt-in checkbox by default" msgstr "Показывать флажок подписки на маркетинг по умолчанию" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "" @@ -9669,7 +9735,7 @@ msgstr "" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "" @@ -9706,7 +9772,7 @@ msgstr "" msgid "Single line text box" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "" @@ -9741,7 +9807,7 @@ msgstr "" msgid "Sold" msgstr "" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9762,7 +9828,7 @@ msgstr "" #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "" @@ -9780,7 +9846,7 @@ msgstr "" msgid "Something went wrong! Please try again" msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "" @@ -9792,12 +9858,12 @@ msgstr "" #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "" @@ -9893,12 +9959,12 @@ msgstr "" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "" @@ -9910,7 +9976,7 @@ msgstr "" msgid "Statistics are based on account creation date" msgstr "" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "" @@ -9927,7 +9993,7 @@ msgstr "" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9982,7 +10048,7 @@ msgstr "" msgid "Stripe payments are not enabled for this event." msgstr "" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "" @@ -9995,7 +10061,7 @@ msgid "Su" msgstr "" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10009,7 +10075,7 @@ msgstr "" msgid "Subject will appear here" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "" @@ -10020,11 +10086,11 @@ msgstr "" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "" @@ -10169,7 +10235,7 @@ msgstr "" msgid "Successfully Updated Social Links" msgstr "" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "" @@ -10222,7 +10288,7 @@ msgstr "" msgid "Switch Organizer" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "" @@ -10234,7 +10300,7 @@ msgstr "" msgid "Tap this screen to resume scanning" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "" @@ -10332,7 +10398,7 @@ msgstr "" msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "" @@ -10340,15 +10406,15 @@ msgstr "" msgid "Template Active" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "" @@ -10374,8 +10440,8 @@ msgstr "" msgid "Thanks," msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "" @@ -10395,7 +10461,7 @@ msgstr "" msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "" @@ -10413,7 +10479,7 @@ msgstr "" msgid "The default timezone for your events." msgstr "" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "Адрес электронной почты был изменен. Участник получит новый билет на обновленный адрес электронной почты." @@ -10438,7 +10504,7 @@ msgstr "" msgid "The full event address" msgstr "" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "Полная сумма заказа будет возвращена на первоначальный способ оплаты клиента." @@ -10462,7 +10528,7 @@ msgstr "" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "" @@ -10471,7 +10537,7 @@ msgstr "" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "" -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "" @@ -10495,11 +10561,11 @@ msgstr "" msgid "The primary brand color used for buttons and highlights" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "Запланированное время обязательно" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "Запланированное время должно быть в будущем" @@ -10507,8 +10573,8 @@ msgstr "Запланированное время должно быть в бу msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "" @@ -10517,7 +10583,7 @@ msgstr "" msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "" @@ -10530,19 +10596,19 @@ msgstr "" msgid "Theme & Colors" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "" @@ -10574,7 +10640,7 @@ msgstr "" msgid "These details will only be shown if the order is completed successfully." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "" @@ -10582,11 +10648,11 @@ msgstr "" msgid "These settings apply only to copied embed code and won't be stored." msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "" @@ -10594,11 +10660,11 @@ msgstr "" msgid "Third" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "" @@ -10656,11 +10722,11 @@ msgstr "" msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "" -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "" @@ -10709,19 +10775,19 @@ msgstr "" msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "" @@ -10729,7 +10795,7 @@ msgstr "" msgid "This order has been cancelled." msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "" @@ -10741,15 +10807,15 @@ msgstr "" msgid "This order is complete." msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "" @@ -10781,7 +10847,7 @@ msgstr "" msgid "This product is sold out" msgstr "" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "" @@ -10793,11 +10859,11 @@ msgstr "" msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Этот билет только что был отсканирован. Пожалуйста, подождите перед повторным сканированием." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "" @@ -10909,6 +10975,10 @@ msgstr "" msgid "Ticket resent successfully" msgstr "Билет успешно отправлен повторно" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10971,7 +11041,7 @@ msgstr "" msgid "Time" msgstr "" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "" @@ -10990,7 +11060,7 @@ msgstr "" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "" @@ -11007,7 +11077,7 @@ msgid "To increase your limits, contact us at" msgstr "" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11036,6 +11106,7 @@ msgstr "" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "" @@ -11071,11 +11142,11 @@ msgstr "" msgid "Total Fee" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11089,7 +11160,7 @@ msgstr "" msgid "Total order amount" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11097,16 +11168,16 @@ msgstr "" msgid "Total refunded" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11129,7 +11200,7 @@ msgid "Track account growth and performance by attribution source" msgstr "" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "" @@ -11196,8 +11267,8 @@ msgstr "" msgid "Type" msgstr "" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "" @@ -11218,7 +11289,7 @@ msgstr "" msgid "Unable to create product. Please check the your details" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "" @@ -11242,7 +11313,7 @@ msgstr "Не удалось присоединиться к списку ожи msgid "Unable to load attendee details." msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "" @@ -11280,7 +11351,7 @@ msgstr "" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "" @@ -11300,7 +11371,7 @@ msgstr "" msgid "Unlimited" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "" @@ -11312,12 +11383,12 @@ msgstr "" msgid "Unnamed" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "" @@ -11333,7 +11404,7 @@ msgstr "" msgid "Upcoming" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11349,7 +11420,7 @@ msgstr "" msgid "Update Affiliate" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "" @@ -11361,15 +11432,15 @@ msgstr "" msgid "Update event name, description and dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "" @@ -11381,19 +11452,19 @@ msgstr "" msgid "Update: {subjectTitle} — session time changed" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "" @@ -11503,14 +11574,14 @@ msgstr "" msgid "Users" msgstr "" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "" @@ -11522,13 +11593,13 @@ msgstr "" msgid "UUID" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "" #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "" @@ -11540,28 +11611,28 @@ msgstr "" msgid "VAT number" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "" @@ -11577,12 +11648,12 @@ msgstr "" msgid "VAT registered" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "" @@ -11590,15 +11661,15 @@ msgstr "" msgid "VAT settings updated" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "" @@ -11611,7 +11682,7 @@ msgid "VAT: not registered" msgstr "" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11621,6 +11692,10 @@ msgstr "" msgid "Verification code" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11631,9 +11706,14 @@ msgid "Verify Email" msgstr "" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "" @@ -11651,8 +11731,7 @@ msgstr "" msgid "View All" msgstr "" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11692,7 +11771,7 @@ msgstr "" msgid "View Event" msgstr "" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "" @@ -11725,8 +11804,8 @@ msgstr "" msgid "View Order" msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "" @@ -11776,7 +11855,7 @@ msgstr "" msgid "Waiting" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "" @@ -11796,7 +11875,7 @@ msgstr "Список ожидания" msgid "Waitlist Enabled" msgstr "Список ожидания включён" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "" @@ -11804,7 +11883,7 @@ msgstr "" msgid "Waitlist triggered" msgstr "" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "" @@ -11840,7 +11919,7 @@ msgstr "" msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "" @@ -11856,7 +11935,7 @@ msgstr "" msgid "We couldn't reorder the categories. Please try again." msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "" @@ -11877,6 +11956,10 @@ msgstr "" msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "" @@ -11885,7 +11968,7 @@ msgstr "" msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "" @@ -11893,16 +11976,16 @@ msgstr "" msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "" @@ -11999,7 +12082,7 @@ msgstr "" msgid "Welcome back" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "" @@ -12019,7 +12102,7 @@ msgstr "" msgid "What are Tiered Products?" msgstr "" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "" @@ -12139,6 +12222,10 @@ msgstr "" msgid "When check-in opens" msgstr "" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "" @@ -12151,7 +12238,7 @@ msgstr "При включении новые мероприятия позвол msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "При включении новые мероприятия будут отображать флажок подписки на маркетинг при оформлении заказа. Это можно переопределить для каждого мероприятия." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "" @@ -12187,11 +12274,11 @@ msgstr "" msgid "Widget Settings" msgstr "" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12225,7 +12312,7 @@ msgid "year" msgstr "" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "" @@ -12243,11 +12330,11 @@ msgstr "" msgid "Yes" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "" @@ -12263,7 +12350,7 @@ msgstr "" msgid "You are impersonating <0>{0} ({1})" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Вы оформляете частичный возврат. Клиенту будет возвращено {0} {1}." @@ -12288,7 +12375,7 @@ msgstr "" msgid "You can still manually offer tickets if needed." msgstr "" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "" @@ -12309,11 +12396,11 @@ msgstr "" msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "" -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "" @@ -12329,11 +12416,11 @@ msgstr "" msgid "You have no pending email change." msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "" -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "" @@ -12341,11 +12428,11 @@ msgstr "" msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "" @@ -12405,7 +12492,7 @@ msgstr "" msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "" @@ -12417,7 +12504,7 @@ msgstr "" msgid "You're on the waitlist!" msgstr "Вы в списке ожидания!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "" @@ -12425,7 +12512,7 @@ msgstr "" msgid "You've changed the session time" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "" @@ -12453,11 +12540,11 @@ msgstr "" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "" -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "" @@ -12465,7 +12552,7 @@ msgstr "" msgid "Your Email" msgstr "" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "" @@ -12493,7 +12580,7 @@ msgstr "" msgid "Your new password must be at least 8 characters long." msgstr "" -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "" @@ -12505,7 +12592,7 @@ msgstr "" msgid "Your order has been cancelled" msgstr "" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "" @@ -12530,7 +12617,7 @@ msgstr "" msgid "Your password" msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "" @@ -12538,11 +12625,11 @@ msgstr "" msgid "Your payment is protected with bank-level encryption" msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "" -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "" @@ -12550,7 +12637,7 @@ msgstr "" msgid "Your Plan" msgstr "" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "" @@ -12566,19 +12653,19 @@ msgstr "" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "" @@ -12586,19 +12673,19 @@ msgstr "" msgid "YouTube" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "" diff --git a/frontend/src/locales/se.js b/frontend/src/locales/se.js index e0bf521f76..c53a2deed7 100644 --- a/frontend/src/locales/se.js +++ b/frontend/src/locales/se.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"Det finns inget att visa ännu\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>utcheckad lyckades\"],\"KMgp2+\":[[\"0\"],\" tillgängliga\"],\"Pmr5xp\":[[\"0\"],\" skapades framgångsrikt\"],\"FImCSc\":[[\"0\"],\" uppdaterades\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dagar, \",[\"hours\"],\" timmar, \",[\"minutes\"],\" minuter och \",[\"seconds\"],\" sekunder\"],\"f3RdEk\":[[\"hours\"],\" timmar, \",[\"minutes\"],\" minuter och \",[\"seconds\"],\" sekunder\"],\"fyE7Au\":[[\"minutes\"],\" minuter och \",[\"seconds\"],\" sekunder\"],\"NlQ0cx\":[[\"organizerName\"],\"s första evenemang\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://din-webbplats.com\",\"qnSLLW\":\"<0>Vänligen ange priset exklusive skatter och avgifter.<1>Skatter och avgifter kan läggas till nedan.\",\"ZjMs6e\":\"<0>Antalet produkter tillgängliga för denna produkt<1>Detta värde kan åsidosättas om det finns <2>kapacitetsbegränsningar kopplade till denna produkt.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minuter och 0 sekunder\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Huvudgatan 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Ett datumfält. Perfekt för att fråga efter födelsedatum osv.\",\"6euFZ/\":[\"Ett standardvärde för \",[\"type\"],\" tillämpas automatiskt på alla nya produkter. Du kan åsidosätta detta per produkt.\"],\"SMUbbQ\":\"En rullgardinsmeny tillåter endast ett val\",\"qv4bfj\":\"En avgift, som en bokningsavgift eller serviceavgift\",\"POT0K/\":\"Ett fast belopp per produkt. T.ex. $0,50 per produkt\",\"f4vJgj\":\"Ett flerradigt textfält\",\"OIPtI5\":\"En procentandel av produktpriset. T.ex. 3,5% av produktpriset\",\"ZthcdI\":\"En kampanjkod utan rabatt kan användas för att visa dolda produkter.\",\"AG/qmQ\":\"Ett radioval har flera alternativ men endast ett kan väljas.\",\"h179TP\":\"En kort beskrivning av evenemanget som visas i sökresultat och vid delning på sociala medier. Som standard används evenemangsbeskrivningen.\",\"WKMnh4\":\"Ett enradigt textfält\",\"BHZbFy\":\"En enda fråga per order. T.ex. Vilken är din leveransadress?\",\"Fuh+dI\":\"En enda fråga per produkt. T.ex. Vilken är din t-shirtstorlek?\",\"RlJmQg\":\"En standardskatt, såsom moms\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Acceptera banköverföringar, checkar eller andra offline-betalningsmetoder\",\"hrvLf4\":\"Acceptera kreditkortsbetalningar med Stripe\",\"bfXQ+N\":\"Acceptera inbjudan\",\"AeXO77\":\"Konto\",\"lkNdiH\":\"Kontonamn\",\"Puv7+X\":\"Kontoinställningar\",\"OmylXO\":\"Kontot uppdaterades\",\"7L01XJ\":\"Åtgärder\",\"FQBaXG\":\"Aktivera\",\"5T2HxQ\":\"Aktiveringsdatum\",\"F6pfE9\":\"Aktiv\",\"/PN1DA\":\"Lägg till en beskrivning för denna incheckningslista\",\"0/vPdA\":\"Lägg till eventuella anteckningar om deltagaren. Dessa kommer inte vara synliga för deltagaren.\",\"Or1CPR\":\"Lägg till eventuella anteckningar om deltagaren...\",\"l3sZO1\":\"Lägg till eventuella anteckningar om ordern. Dessa kommer inte vara synliga för kunden.\",\"xMekgu\":\"Lägg till eventuella anteckningar om ordern...\",\"PGPGsL\":\"Lägg till beskrivning\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Lägg till instruktioner för offline-betalningar (t.ex. banköverföringsuppgifter, vart man skickar checkar, betalningsfrister)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Lägg till ny\",\"TZxnm8\":\"Lägg till alternativ\",\"24l4x6\":\"Lägg till produkt\",\"8q0EdE\":\"Lägg till produkt i kategori\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Lägg till skatt eller avgift\",\"goOKRY\":\"Lägg till prisnivå\",\"oZW/gT\":\"Lägg till i kalendern\",\"pn5qSs\":\"Ytterligare information\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adress\",\"NY/x1b\":\"Adressrad 1\",\"POdIrN\":\"Adressrad 1\",\"cormHa\":\"Adressrad 2\",\"gwk5gg\":\"Adressrad 2\",\"U3pytU\":\"Admin\",\"HLDaLi\":\"Adminanvändare har full åtkomst till evenemang och kontoinställningar.\",\"W7AfhC\":\"Alla deltagare för detta evenemang\",\"cde2hc\":\"Alla produkter\",\"5CQ+r0\":\"Tillåt incheckning av deltagare kopplade till obetalda order\",\"ipYKgM\":\"Tillåt indexering av sökmotorer\",\"LRbt6D\":\"Tillåt sökmotorer att indexera detta evenemang\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Fantastiskt, Evenemang, Nyckelord...\",\"hehnjM\":\"Belopp\",\"R2O9Rg\":[\"Betalt belopp (\",[\"0\"],\")\"],\"V7MwOy\":\"Ett fel uppstod vid inläsning av sidan\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Ett oväntat fel uppstod.\",\"byKna+\":\"Ett oväntat fel uppstod. Vänligen försök igen.\",\"ubdMGz\":\"Eventuella frågor från produktinnehavare kommer att skickas till denna e-postadress. Detta kommer också att användas som \\\"svarsadress\\\" för alla e-postmeddelanden från detta evenemang\",\"aAIQg2\":\"Utseende\",\"Ym1gnK\":\"tillämpat\",\"sy6fss\":[\"Gäller \",[\"0\"],\" produkter\"],\"kadJKg\":\"Gäller 1 produkt\",\"DB8zMK\":\"Använd\",\"GctSSm\":\"Använd kampanjkod\",\"ARBThj\":[\"Tillämpa denna \",[\"type\"],\" på alla nya produkter\"],\"S0ctOE\":\"Arkivera evenemang\",\"TdfEV7\":\"Arkiverad\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Är du säker på att du vill aktivera denna deltagare?\",\"TvkW9+\":\"Är du säker på att du vill arkivera detta evenemang?\",\"/CV2x+\":\"Är du säker på att du vill avboka denna deltagare? Detta ogiltigförklarar deras biljett\",\"YgRSEE\":\"Är du säker på att du vill ta bort denna kampanjkod?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Är du säker på att du vill göra detta evenemang till ett utkast? Detta kommer att göra evenemanget osynligt för allmänheten\",\"mEHQ8I\":\"Är du säker på att du vill publicera detta evenemang? Detta kommer att göra evenemanget synligt för allmänheten\",\"s4JozW\":\"Är du säker på att du vill återställa detta evenemang? Det kommer att återställas som ett utkast.\",\"vJuISq\":\"Är du säker på att du vill ta bort denna kapacitetstilldelning?\",\"baHeCz\":\"Är du säker på att du vill ta bort denna incheckningslista?\",\"LBLOqH\":\"Fråga en gång per order\",\"wu98dY\":\"Fråga en gång per produkt\",\"ss9PbX\":\"Deltagare\",\"m0CFV2\":\"Deltagaruppgifter\",\"QKim6l\":\"Deltagare hittades inte\",\"R5IT/I\":\"Deltagaranteckningar\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Deltagarbiljett\",\"9SZT4E\":\"Deltagare\",\"iPBfZP\":\"Registrerade deltagare\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatisk storleksanpassning\",\"vZ5qKF\":\"Anpassa widgetens höjd automatiskt baserat på innehållet. När funktionen är avstängd fyller widgeten hela behållarens höjd.\",\"4lVaWA\":\"Väntar på offlinebetalning\",\"2rHwhl\":\"Väntar på offlinebetalning\",\"3wF4Q/\":\"Väntar på betalning\",\"ioG+xt\":\"Väntar på betalning\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Tillbaka till evenemangssidan\",\"VCoEm+\":\"Tillbaka till inloggning\",\"k1bLf+\":\"Bakgrundsfärg\",\"I7xjqg\":\"Bakgrundstyp\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Faktureringsadress\",\"/xC/im\":\"Faktureringsinställningar\",\"rp/zaT\":\"Brasiliansk portugisiska\",\"whqocw\":\"Genom att registrera dig godkänner du våra <0>användarvillkor och <1>integritetspolicy.\",\"bcCn6r\":\"Beräkningstyp\",\"+8bmSu\":\"Kalifornien\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Avbryt\",\"Gjt/py\":\"Avbryt ändring av e-postadress\",\"tVJk4q\":\"Avbryt order\",\"Os6n2a\":\"Avbryt order\",\"Mz7Ygx\":[\"Avbryt order \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Avbruten\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Kapacitet\",\"V6Q5RZ\":\"Kapacitetstilldelning skapades\",\"k5p8dz\":\"Kapacitetstilldelning togs bort\",\"nDBs04\":\"Kapacitetshantering\",\"ddha3c\":\"Kategorier låter dig gruppera produkter. Till exempel kan du ha en kategori för \\\"Biljetter\\\" och en annan för \\\"Merchandise\\\".\",\"iS0wAT\":\"Kategorier hjälper dig att organisera dina produkter. Denna titel visas på den publika evenemangssidan.\",\"eorM7z\":\"Kategorierna har sorterats om\",\"3EXqwa\":\"Kategori skapades\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Ändra lösenord\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Checka in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Checka in och markera ordern som betald\",\"QYLpB4\":\"Endast checka in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Kolla in detta evenemang!\",\"gXcPxc\":\"Incheckning\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Incheckningslista togs bort\",\"+hBhWk\":\"Incheckningslistan har gått ut\",\"mBsBHq\":\"Incheckningslistan är inte aktiv\",\"vPqpQG\":\"Incheckningslistan hittades inte\",\"tejfAy\":\"Incheckningslistor\",\"hD1ocH\":\"Inchecknings-URL kopierad till urklipp\",\"CNafaC\":\"Kryssrutealternativ tillåter flera val\",\"SpabVf\":\"Kryssrutor\",\"CRu4lK\":\"Incheckad\",\"znIg+z\":\"Kassa\",\"1WnhCL\":\"Kassainställningar\",\"6imsQS\":\"Kinesiska (förenklad)\",\"JjkX4+\":\"Välj en färg för din bakgrund\",\"/Jizh9\":\"Välj ett konto\",\"3wV73y\":\"Stad\",\"FG98gC\":\"Rensa söktext\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Klicka för att kopiera\",\"yz7wBu\":\"Stäng\",\"62Ciis\":\"Stäng sidofält\",\"EWPtMO\":\"Kod\",\"ercTDX\":\"Koden måste vara mellan 3 och 50 tecken lång\",\"oqr9HB\":\"Fäll ihop denna produkt när evenemangssidan laddas\",\"jZlrte\":\"Färg\",\"Vd+LC3\":\"Färgen måste vara en giltig hexkod. Exempel: #ffffff\",\"1HfW/F\":\"Färger\",\"VZeG/A\":\"Kommer snart\",\"yPI7n9\":\"Kommaseparerade nyckelord som beskriver evenemanget. Dessa används av sökmotorer för att kategorisera och indexera evenemanget.\",\"NPZqBL\":\"Slutför order\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Slutför betalning\",\"qqWcBV\":\"Slutförd\",\"6HK5Ct\":\"Slutförda ordrar\",\"NWVRtl\":\"Slutförda ordrar\",\"DwF9eH\":\"Komponentkod\",\"Tf55h7\":\"Konfigurerad rabatt\",\"7VpPHA\":\"Bekräfta\",\"ZaEJZM\":\"Bekräfta ändring av e-postadress\",\"yjkELF\":\"Bekräfta nytt lösenord\",\"xnWESi\":\"Bekräfta lösenord\",\"p2/GCq\":\"Bekräfta lösenord\",\"wnDgGj\":\"Bekräftar e-postadress...\",\"pbAk7a\":\"Anslut Stripe\",\"UMGQOh\":\"Anslut med Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Anslutningsuppgifter\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Fortsätt\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Text på fortsätt-knapp\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Kopierad\",\"T5rdis\":\"kopierad till urklipp\",\"he3ygx\":\"Kopiera\",\"r2B2P8\":\"Kopiera inchecknings-URL\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Kopiera länk\",\"E6nRW7\":\"Kopiera URL\",\"JNCzPW\":\"Land\",\"IF7RiR\":\"Omslag\",\"hYgDIe\":\"Skapa\",\"b9XOHo\":[\"Skapa \",[\"0\"]],\"k9RiLi\":\"Skapa en produkt\",\"6kdXbW\":\"Skapa en kampanjkod\",\"n5pRtF\":\"Skapa en biljett\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"skapa en organisatör\",\"ipP6Ue\":\"Skapa deltagare\",\"VwdqVy\":\"Skapa kapacitetstilldelning\",\"EwoMtl\":\"Skapa kategori\",\"XletzW\":\"Skapa kategori\",\"WVbTwK\":\"Skapa incheckningslista\",\"uN355O\":\"Skapa evenemang\",\"BOqY23\":\"Skapa ny\",\"kpJAeS\":\"Skapa organisatör\",\"a0EjD+\":\"Skapa produkt\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Skapa kampanjkod\",\"B3Mkdt\":\"Skapa fråga\",\"UKfi21\":\"Skapa skatt eller avgift\",\"d+F6q9\":\"Skapad\",\"Q2lUR2\":\"Valuta\",\"DCKkhU\":\"Nuvarande lösenord\",\"uIElGP\":\"Anpassad Maps-URL\",\"UEqXyt\":\"Anpassat intervall\",\"876pfE\":\"Kund\",\"QOg2Sf\":\"Anpassa e-post- och aviseringsinställningarna för detta evenemang\",\"Y9Z/vP\":\"Anpassa evenemangets startsida och kassameddelanden\",\"2E2O5H\":\"Anpassa övriga inställningar för detta evenemang\",\"iJhSxe\":\"Anpassa SEO-inställningarna för detta evenemang\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Riskzon\",\"ZQKLI1\":\"Riskzon\",\"7p5kLi\":\"Instrumentpanel\",\"mYGY3B\":\"Datum\",\"JvUngl\":\"Datum och tid\",\"JJhRbH\":\"Kapacitet dag ett\",\"cnGeoo\":\"Ta bort\",\"jRJZxD\":\"Ta bort kapacitet\",\"VskHIx\":\"Ta bort kategori\",\"Qrc8RZ\":\"Ta bort incheckningslista\",\"WHf154\":\"Ta bort kod\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Beskrivning\",\"YC3oXa\":\"Beskrivning för incheckningspersonal\",\"URmyfc\":\"Detaljer\",\"1lRT3t\":\"Om denna kapacitet inaktiveras spåras försäljningen men den stoppas inte när gränsen nås\",\"H6Ma8Z\":\"Rabatt\",\"ypJ62C\":\"Rabatt %\",\"3LtiBI\":[\"Rabatt i \",[\"0\"]],\"C8JLas\":\"Rabattyp\",\"1QfxQT\":\"Stäng\",\"DZlSLn\":\"Dokumentetikett\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donation eller betala vad du vill-produkt\",\"OvNbls\":\"Ladda ner .ics\",\"kodV18\":\"Ladda ner CSV\",\"CELKku\":\"Ladda ner faktura\",\"LQrXcu\":\"Ladda ner faktura\",\"QIodqd\":\"Ladda ner QR-kod\",\"yhjU+j\":\"Laddar ner faktura\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Rullgardinsval\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicera evenemang\",\"3ogkAk\":\"Duplicera evenemang\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Dupliceringsalternativ\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Redigera\",\"N6j2JH\":[\"Redigera \",[\"0\"]],\"kBkYSa\":\"Redigera kapacitet\",\"oHE9JT\":\"Redigera kapacitetstilldelning\",\"j1Jl7s\":\"Redigera kategori\",\"FU1gvP\":\"Redigera incheckningslista\",\"iFgaVN\":\"Redigera kod\",\"jrBSO1\":\"Redigera organisatör\",\"tdD/QN\":\"Redigera produkt\",\"n143Tq\":\"Redigera produktkategori\",\"9BdS63\":\"Redigera kampanjkod\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Redigera fråga\",\"poTr35\":\"Redigera användare\",\"GTOcxw\":\"Redigera användare\",\"pqFrv2\":\"t.ex. 2,50 för 2,50 $\",\"3yiej1\":\"t.ex. 23,5 för 23,5 %\",\"O3oNi5\":\"E-post\",\"VxYKoK\":\"E-post- och aviseringsinställningar\",\"ATGYL1\":\"E-postadress\",\"hzKQCy\":\"E-postadress\",\"HqP6Qf\":\"Ändring av e-postadress avbröts\",\"mISwW1\":\"Ändring av e-postadress väntar\",\"APuxIE\":\"E-postbekräftelse skickades igen\",\"YaCgdO\":\"E-postbekräftelse skickades igen\",\"jyt+cx\":\"Meddelande i e-postsidfot\",\"I6F3cp\":\"E-post ej verifierad\",\"NTZ/NX\":\"Inbäddningskod\",\"4rnJq4\":\"Inbäddningsskript\",\"8oPbg1\":\"Aktivera fakturering\",\"j6w7d/\":\"Aktivera denna kapacitet för att stoppa försäljning när gränsen nås\",\"VFv2ZC\":\"Slutdatum\",\"237hSL\":\"Avslutad\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Engelska\",\"MhVoma\":\"Ange ett belopp exklusive skatter och avgifter\",\"SlfejT\":\"Fel\",\"3Z223G\":\"Fel vid bekräftelse av e-postadress\",\"a6gga1\":\"Fel vid bekräftelse av ändring av e-postadress\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evenemang\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Evenemangsdatum\",\"0Zptey\":\"Standardinställningar för evenemang\",\"QcCPs8\":\"Evenemangsdetaljer\",\"6fuA9p\":\"Evenemang duplicerades\",\"AEuj2m\":\"Evenemangets startsida\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Plats- och lokalinformation för evenemanget\",\"OopDbA\":\"Event page\",\"4/If97\":\"Uppdatering av evenemangsstatus misslyckades. Försök igen senare.\",\"btxLWj\":\"Evenemangsstatus uppdaterad\",\"nMU2d3\":\"Evenemangs-URL\",\"tst44n\":\"Evenemang\",\"sZg7s1\":\"Utgångsdatum\",\"KnN1Tu\":\"Går ut\",\"uaSvqt\":\"Utgångsdatum\",\"GS+Mus\":\"Exportera\",\"9xAp/j\":\"Misslyckades med att avbryta deltagare\",\"ZpieFv\":\"Misslyckades med att avbryta order\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Misslyckades med att ladda ner faktura. Försök igen.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Misslyckades med att läsa in incheckningslista\",\"ZQ15eN\":\"Misslyckades med att skicka biljettmejl igen\",\"ejXy+D\":\"Misslyckades med att sortera produkter\",\"PLUB/s\":\"Avgift\",\"/mfICu\":\"Avgifter\",\"LyFC7X\":\"Filtrera ordrar\",\"cSev+j\":\"Filter\",\"CVw2MU\":[\"Filter (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Första fakturanummer\",\"V1EGGU\":\"Förnamn\",\"kODvZJ\":\"Förnamn\",\"S+tm06\":\"Förnamn måste vara mellan 1 och 50 tecken\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Första användning\",\"TpqW74\":\"Fast\",\"irpUxR\":\"Fast belopp\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Glömt lösenord?\",\"2POOFK\":\"Gratis\",\"P/OAYJ\":\"Gratis produkt\",\"vAbVy9\":\"Gratis produkt, ingen betalningsinformation krävs\",\"nLC6tu\":\"Franska\",\"Weq9zb\":\"Allmänt\",\"DDcvSo\":\"Tyska\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Gå tillbaka till profilen\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Kalender\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Bruttoförsäljning\",\"yRg26W\":\"Bruttoförsäljning\",\"R4r4XO\":\"Gäster\",\"26pGvx\":\"Har du en kampanjkod?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Här är ett exempel på hur du kan använda komponenten i din applikation.\",\"Y1SSqh\":\"Här är React-komponenten som du kan använda för att bädda in widgeten i din applikation.\",\"QuhVpV\":[\"Hej \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Dold från offentlig vy\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Dolda frågor är endast synliga för arrangören och inte för kunden.\",\"vLyv1R\":\"Dölj\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Dölj produkt efter försäljningens slutdatum\",\"06s3w3\":\"Dölj produkt före försäljningens startdatum\",\"axVMjA\":\"Dölj produkt om användaren saknar giltig kampanjkod\",\"ySQGHV\":\"Dölj produkt när den är slutsåld\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Dölj denna produkt för kunder\",\"Da29Y6\":\"Dölj denna fråga\",\"fvDQhr\":\"Dölj denna nivå för användare\",\"lNipG+\":\"Att dölja en produkt förhindrar att användare ser den på evenemangssidan.\",\"ZOBwQn\":\"Startsidedesign\",\"PRuBTd\":\"Startsidedesigner\",\"YjVNGZ\":\"Förhandsvisning av startsida\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Hur många minuter kunden har på sig att slutföra sin beställning. Vi rekommenderar minst 15 minuter\",\"ySxKZe\":\"Hur många gånger kan denna kod användas?\",\"dZsDbK\":[\"HTML-teckengränsen har överskridits: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Jag godkänner <0>villkoren\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Om detta är aktiverat kan incheckningspersonal antingen markera deltagare som incheckade eller markera beställningen som betald och checka in deltagarna. Om detta är inaktiverat kan deltagare som är kopplade till obetalda beställningar inte checkas in.\",\"muXhGi\":\"Om detta är aktiverat får arrangören ett e-postmeddelande när en ny beställning görs\",\"6fLyj/\":\"Om du inte begärde denna ändring, ändra omedelbart ditt lösenord.\",\"n/ZDCz\":\"Bilden har raderats\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Bilden har laddats upp\",\"VyUuZb\":\"Bild-URL\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inaktiv\",\"T0K0yl\":\"Inaktiva användare kan inte logga in.\",\"kO44sp\":\"Inkludera anslutningsinformation för ditt onlineevenemang. Dessa uppgifter visas på sidan för ordersammanfattning och på deltagarbiljetten.\",\"FlQKnG\":\"Inkludera skatt och avgifter i priset\",\"Vi+BiW\":[\"Innehåller \",[\"0\"],\" produkter\"],\"lpm0+y\":\"Innehåller 1 produkt\",\"UiAk5P\":\"Infoga bild\",\"OyLdaz\":\"Inbjudan skickades igen!\",\"HE6KcK\":\"Inbjudan återkallad!\",\"SQKPvQ\":\"Bjud in användare\",\"bKOYkd\":\"Fakturan laddades ner\",\"alD1+n\":\"Fakturanoteringar\",\"kOtCs2\":\"Fakturanumrering\",\"UZ2GSZ\":\"Fakturainställningar\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Artikel\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etikett\",\"vXIe7J\":\"Språk\",\"2LMsOq\":\"Senaste 12 månaderna\",\"vfe90m\":\"Senaste 14 dagarna\",\"aK4uBd\":\"Senaste 24 timmarna\",\"uq2BmQ\":\"Senaste 30 dagarna\",\"bB6Ram\":\"Senaste 48 timmarna\",\"VlnB7s\":\"Senaste 6 månaderna\",\"ct2SYD\":\"Senaste 7 dagarna\",\"XgOuA7\":\"Senaste 90 dagarna\",\"I3yitW\":\"Senaste inloggning\",\"1ZaQUH\":\"Efternamn\",\"UXBCwc\":\"Efternamn\",\"tKCBU0\":\"Senast använd\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Lämna tomt för att använda standardordet \\\"Faktura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Laddar...\",\"wJijgU\":\"Plats\",\"sQia9P\":\"Logga in\",\"zUDyah\":\"Loggar in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logga ut\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Gör faktureringsadress obligatorisk i kassan\",\"MU3ijv\":\"Gör denna fråga obligatorisk\",\"wckWOP\":\"Hantera\",\"onpJrA\":\"Hantera deltagare\",\"n4SpU5\":\"Hantera evenemang\",\"WVgSTy\":\"Hantera order\",\"1MAvUY\":\"Hantera betalnings- och fakturainställningar för detta evenemang.\",\"cQrNR3\":\"Hantera profil\",\"AtXtSw\":\"Hantera skatter och avgifter som kan tillämpas på dina produkter\",\"ophZVW\":\"Hantera biljetter\",\"DdHfeW\":\"Hantera dina kontouppgifter och standardinställningar\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Hantera dina användare och deras behörigheter\",\"1m+YT2\":\"Obligatoriska frågor måste besvaras innan kunden kan slutföra köpet.\",\"Dim4LO\":\"Lägg till deltagare manuellt\",\"e4KdjJ\":\"Lägg till deltagare manuellt\",\"vFjEnF\":\"Markera som betald\",\"g9dPPQ\":\"Max per order\",\"l5OcwO\":\"Meddela deltagare\",\"Gv5AMu\":\"Meddela deltagare\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Meddela köpare\",\"tNZzFb\":\"Meddelandeinnehåll\",\"lYDV/s\":\"Meddela enskilda deltagare\",\"V7DYWd\":\"Meddelande skickat\",\"t7TeQU\":\"Meddelanden\",\"xFRMlO\":\"Min per order\",\"QYcUEf\":\"Minimipris\",\"RDie0n\":\"Övrigt\",\"mYLhkl\":\"Övriga inställningar\",\"KYveV8\":\"Flerradigt textfält\",\"VD0iA7\":\"Flera prisalternativ. Perfekt för till exempel early bird-produkter.\",\"/bhMdO\":\"Min fantastiska evenemangsbeskrivning...\",\"vX8/tc\":\"Min fantastiska evenemangstitel...\",\"hKtWk2\":\"Min profil\",\"fj5byd\":\"Ej tillgängligt\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Namn\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Gå till deltagare\",\"qqeAJM\":\"Aldrig\",\"7vhWI8\":\"Nytt lösenord\",\"1UzENP\":\"Nej\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Inga arkiverade evenemang att visa.\",\"q2LEDV\":\"Inga deltagare hittades för denna order.\",\"zlHa5R\":\"Inga deltagare har lagts till i denna order.\",\"Wjz5KP\":\"Inga deltagare att visa\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Inga kapacitetstilldelningar\",\"a/gMx2\":\"Inga incheckningslistor\",\"tMFDem\":\"Ingen data tillgänglig\",\"6Z/F61\":\"Ingen data att visa. Välj ett datumintervall\",\"fFeCKc\":\"Ingen rabatt\",\"HFucK5\":\"Inga avslutade evenemang att visa.\",\"yAlJXG\":\"Inga evenemang att visa\",\"GqvPcv\":\"Inga filter tillgängliga\",\"KPWxKD\":\"Inga meddelanden att visa\",\"J2LkP8\":\"Inga ordrar att visa\",\"RBXXtB\":\"Inga betalningsmetoder är tillgängliga för närvarande. Kontakta arrangören för hjälp.\",\"ZWEfBE\":\"Ingen betalning krävs\",\"ZPoHOn\":\"Ingen produkt är kopplad till denna deltagare.\",\"Ya1JhR\":\"Inga produkter tillgängliga i denna kategori.\",\"FTfObB\":\"Inga produkter ännu\",\"+Y976X\":\"Inga kampanjkoder att visa\",\"MAavyl\":\"Inga frågor har besvarats av denna deltagare.\",\"SnlQeq\":\"Inga frågor har ställts för denna order.\",\"Ev2r9A\":\"Inga resultat\",\"gk5uwN\":\"Inga sökresultat\",\"RHyZUL\":\"Inga sökresultat.\",\"RY2eP1\":\"Inga skatter eller avgifter har lagts till.\",\"EdQY6l\":\"Ingen\",\"OJx3wK\":\"Inte tillgänglig\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Anteckningar\",\"jtrY3S\":\"Inget att visa ännu\",\"hFwWnI\":\"Aviseringsinställningar\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Meddela arrangören om nya ordrar\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Antal dagar tillåtet för betalning (lämna tomt för att utelämna betalningsvillkor från fakturor)\",\"n86jmj\":\"Nummerprefix\",\"mwe+2z\":\"Offlineordrar återspeglas inte i evenemangsstatistiken förrän ordern markeras som betald.\",\"dWBrJX\":\"Offlinebetalningen misslyckades. Försök igen eller kontakta arrangören.\",\"fcnqjw\":\"Instruktioner för offlinebetalning\",\"+eZ7dp\":\"Offlinebetalningar\",\"ojDQlR\":\"Information om offlinebetalningar\",\"u5oO/W\":\"Inställningar för offlinebetalningar\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"Till salu\",\"Ug4SfW\":\"När du skapar ett evenemang visas det här.\",\"ZxnK5C\":\"När du börjar samla in data visas det här.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Pågående\",\"z+nuVJ\":\"Onlineevenemang\",\"WKHW0N\":\"Information om onlineevenemang\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Öppna incheckningssida\",\"OdnLE4\":\"Öppna sidomeny\",\"ZZEYpT\":[\"Alternativ \",[\"i\"]],\"oPknTP\":\"Valfri extra information som visas på alla fakturor, till exempel betalningsvillkor, förseningsavgifter eller returpolicy\",\"OrXJBY\":\"Valfritt prefix för fakturanummer, till exempel INV-\",\"0zpgxV\":\"Alternativ\",\"BzEFor\":\"eller\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order nr\",\"B3gPuX\":\"Order avbruten\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Orderdatum\",\"Tol4BF\":\"Orderdetaljer\",\"WbImlQ\":\"Ordern har avbrutits och orderägaren har informerats.\",\"nAn4Oe\":\"Order markerad som betald\",\"uzEfRz\":\"Orderanteckningar\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Orderreferens\",\"acIJ41\":\"Orderstatus\",\"GX6dZv\":\"Ordersammanfattning\",\"tDTq0D\":\"Ordertidsgräns\",\"1h+RBg\":\"Ordrar\",\"3y+V4p\":\"Organisationens adress\",\"GVcaW6\":\"Organisationsuppgifter\",\"nfnm9D\":\"Organisationsnamn\",\"G5RhpL\":\"Arrangör\",\"mYygCM\":\"Arrangör krävs\",\"Pa6G7v\":\"Arrangörsnamn\",\"l894xP\":\"Arrangörer kan endast hantera evenemang och produkter. De kan inte hantera användare, kontoinställningar eller faktureringsinformation.\",\"fdjq4c\":\"Utfyllnad\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Sidan hittades inte\",\"QbrUIo\":\"Sidvisningar\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"betald\",\"HVW65c\":\"Betald produkt\",\"ZfxaB4\":\"Delvis återbetald\",\"8ZsakT\":\"Lösenord\",\"TUJAyx\":\"Lösenordet måste vara minst 8 tecken\",\"vwGkYB\":\"Lösenordet måste vara minst 8 tecken\",\"BLTZ42\":\"Lösenordet har återställts. Logga in med ditt nya lösenord.\",\"f7SUun\":\"Lösenorden är inte samma\",\"aEDp5C\":\"Klistra in detta där du vill att widgeten ska visas.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Betalning\",\"Lg+ewC\":\"Betalning och fakturering\",\"DZjk8u\":\"Inställningar för betalning och fakturering\",\"lflimf\":\"Betalningsfrist\",\"JhtZAK\":\"Betalning misslyckades\",\"JEdsvQ\":\"Betalningsinstruktioner\",\"bLB3MJ\":\"Betalningsmetoder\",\"QzmQBG\":\"Betalleverantör\",\"lsxOPC\":\"Betalning mottagen\",\"wJTzyi\":\"Betalningsstatus\",\"xgav5v\":\"Betalningen lyckades!\",\"R29lO5\":\"Betalningsvillkor\",\"/roQKz\":\"Procent\",\"vPJ1FI\":\"Procentbelopp\",\"xdA9ud\":\"Placera detta i -delen på din webbplats.\",\"blK94r\":\"Lägg till minst ett alternativ\",\"FJ9Yat\":\"Kontrollera att den angivna informationen är korrekt\",\"TkQVup\":\"Kontrollera din e-postadress och ditt lösenord och försök igen\",\"sMiGXD\":\"Kontrollera att din e-postadress är giltig\",\"Ajavq0\":\"Kontrollera din e-post för att bekräfta din e-postadress\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Fortsätt i den nya fliken\",\"hcX103\":\"Skapa en produkt\",\"cdR8d6\":\"Skapa en biljett\",\"x2mjl4\":\"Ange en giltig bild-URL som pekar på en bild.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Observera\",\"C63rRe\":\"Gå tillbaka till evenemangssidan för att börja om.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Välj minst en produkt\",\"igBrCH\":\"Verifiera din e-postadress för att få tillgång till alla funktioner\",\"/IzmnP\":\"Vänta medan vi förbereder din faktura...\",\"MOERNx\":\"Portugisiska\",\"qCJyMx\":\"Meddelande efter checkout\",\"g2UNkE\":\"Drivs av\",\"Rs7IQv\":\"Meddelande före checkout\",\"rdUucN\":\"Förhandsgranska\",\"a7u1N9\":\"Pris\",\"CmoB9j\":\"Visningsläge för pris\",\"BI7D9d\":\"Pris ej angivet\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Pristyp\",\"6RmHKN\":\"Primär färg\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primär textfärg\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Skriv ut alla biljetter\",\"DKwDdj\":\"Skriv ut biljetter\",\"K47k8R\":\"Produkt\",\"1JwlHk\":\"Produktkategori\",\"U61sAj\":\"Produktkategorin uppdaterades.\",\"1USFWA\":\"Produkten togs bort\",\"4Y2FZT\":\"Produktens pristyp\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Produktförsäljning\",\"U/R4Ng\":\"Produktnivå\",\"sJsr1h\":\"Produkttyp\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produkt(er)\",\"N0qXpE\":\"Produkter\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Sålda produkter\",\"/u4DIx\":\"Sålda produkter\",\"DJQEZc\":\"Produkter sorterades korrekt\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profilen uppdaterades\",\"cl5WYc\":[\"Kampanjkoden \",[\"promo_code\"],\" har tillämpats\"],\"P5sgAk\":\"Kampanjkod\",\"yKWfjC\":\"Sida för kampanjkoder\",\"RVb8Fo\":\"Kampanjkoder\",\"BZ9GWa\":\"Kampanjkoder kan användas för att erbjuda rabatter, förköp eller särskild åtkomst till ditt evenemang.\",\"OP094m\":\"Rapport för kampanjkoder\",\"4kyDD5\":\"Ge ytterligare sammanhang eller instruktioner för denna fråga. Använd detta fält för att lägga till villkor\\noch bestämmelser, riktlinjer eller annan viktig information som deltagare behöver veta innan de svarar.\",\"toutGW\":\"QR-kod\",\"LkMOWF\":\"Tillgängligt antal\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Frågan togs bort\",\"avf0gk\":\"Frågebeskrivning\",\"oQvMPn\":\"Frågetitel\",\"enzGAL\":\"Frågor\",\"ROv2ZT\":\"Frågor och svar\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radiovalsalternativ\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Mottagare\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Återbetalning misslyckades\",\"n10yGu\":\"Återbetala order\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Återbetalning väntar\",\"xHpVRl\":\"Återbetalningsstatus\",\"/BI0y9\":\"Återbetald\",\"fgLNSM\":\"Registrera\",\"9+8Vez\":\"Återstående användningar\",\"tasfos\":\"ta bort\",\"t/YqKh\":\"Ta bort\",\"t9yxlZ\":\"Rapporter\",\"prZGMe\":\"Kräv faktureringsadress\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Skicka e-postbekräftelse igen\",\"wIa8Qe\":\"Skicka inbjudan igen\",\"VeKsnD\":\"Skicka ordermail igen\",\"dFuEhO\":\"Skicka biljettmail igen\",\"o6+Y6d\":\"Skickar igen...\",\"OfhWJH\":\"Återställ\",\"RfwZxd\":\"Återställ lösenord\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Återställ evenemang\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Tillbaka till evenemangssidan\",\"8YBH95\":\"Intäkter\",\"PO/sOY\":\"Återkalla inbjudan\",\"GDvlUT\":\"Roll\",\"ELa4O9\":\"Slutdatum för försäljning\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Startdatum för försäljning\",\"hBsw5C\":\"Försäljningen är avslutad\",\"kpAzPe\":\"Försäljningen startar\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Spara\",\"IUwGEM\":\"Spara ändringar\",\"U65fiW\":\"Spara arrangör\",\"UGT5vp\":\"Spara inställningar\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Sök på deltagarnamn, e-post eller ordernummer...\",\"+pr/FY\":\"Sök på evenemangsnamn...\",\"3zRbWw\":\"Sök på namn, e-post eller ordernummer...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Sök på namn...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Sök kapacitetstilldelningar...\",\"r9M1hc\":\"Sök incheckningslistor...\",\"+0Yy2U\":\"Sök produkter\",\"YIix5Y\":\"Sök...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Sekundär färg\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Sekundär textfärg\",\"02ePaq\":[\"Välj \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Välj kategori...\",\"kWI/37\":\"Välj arrangör\",\"ixIx1f\":\"Välj produkt\",\"3oSV95\":\"Välj produktnivå\",\"C4Y1hA\":\"Välj produkter\",\"hAjDQy\":\"Välj status\",\"QYARw/\":\"Välj biljett\",\"OMX4tH\":\"Välj biljetter\",\"DrwwNd\":\"Välj tidsperiod\",\"O/7I0o\":\"Välj...\",\"JlFcis\":\"Skicka\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Skicka ett meddelande\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Skicka meddelande\",\"D7ZemV\":\"Skicka orderbekräftelse och biljettsmejl\",\"v1rRtW\":\"Skicka test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO-beskrivning\",\"/SIY6o\":\"SEO-nyckelord\",\"GfWoKv\":\"SEO-inställningar\",\"rXngLf\":\"SEO-titel\",\"/jZOZa\":\"Serviceavgift\",\"Bj/QGQ\":\"Ange ett minimipris och låt användare betala mer om de vill\",\"L0pJmz\":\"Ange startnummer för fakturanumrering. Detta kan inte ändras när fakturor väl har skapats.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Inställningar\",\"Z8lGw6\":\"Dela\",\"B2V3cA\":\"Dela evenemang\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Visa tillgängligt produktantal\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Visa mer\",\"izwOOD\":\"Visa moms och avgifter separat\",\"1SbbH8\":\"Visas för kunden efter att de har slutfört köpet, på ordersammanfattningssidan.\",\"YfHZv0\":\"Visas för kunden innan de slutför köpet\",\"CBBcly\":\"Visar vanliga adressfält, inklusive land\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Enradig textruta\",\"+P0Cn2\":\"Hoppa över detta steg\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Slutsålt\",\"Mi1rVn\":\"Slutsålt\",\"nwtY4N\":\"Något gick fel\",\"GRChTw\":\"Något gick fel när momsen eller avgiften skulle tas bort\",\"YHFrbe\":\"Något gick fel! Försök igen\",\"kf83Ld\":\"Något gick fel.\",\"fWsBTs\":\"Något gick fel. Försök igen.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Tyvärr, den här kampanjkoden känns inte igen\",\"65A04M\":\"Spanska\",\"mFuBqb\":\"Standardprodukt med ett fast pris\",\"D3iCkb\":\"Startdatum\",\"/2by1f\":\"Delstat eller region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe-betalningar är inte aktiverade för detta evenemang.\",\"UJmAAK\":\"Ämne\",\"X2rrlw\":\"Delsumma\",\"zzDlyQ\":\"Lyckades\",\"b0HJ45\":[\"Klart! \",[\"0\"],\" kommer snart att få ett e-postmeddelande.\"],\"BJIEiF\":[\"Lyckades \",[\"0\"],\" deltagare\"],\"OtgNFx\":\"E-postadressen bekräftades\",\"IKwyaF\":\"E-poständringen bekräftades\",\"zLmvhE\":\"Deltagaren skapades\",\"gP22tw\":\"Produkten skapades\",\"9mZEgt\":\"Kampanjkoden skapades\",\"aIA9C4\":\"Frågan skapades\",\"J3RJSZ\":\"Deltagaren uppdaterades\",\"3suLF0\":\"Kapacitetstilldelningen uppdaterades\",\"Z+rnth\":\"Incheckningslistan uppdaterades\",\"vzJenu\":\"E-postinställningarna uppdaterades\",\"7kOMfV\":\"Evenemanget uppdaterades\",\"G0KW+e\":\"Startsidedesignen uppdaterades\",\"k9m6/E\":\"Startsidesinställningarna uppdaterades\",\"y/NR6s\":\"Platsen uppdaterades\",\"73nxDO\":\"Övriga inställningar uppdaterades\",\"4H80qv\":\"Ordern uppdaterades\",\"6xCBVN\":\"Betalnings- och faktureringsinställningarna uppdaterades\",\"1Ycaad\":\"Produkt uppdaterad\",\"70dYC8\":\"Kampanjkoden uppdaterades\",\"F+pJnL\":\"SEO-inställningarna uppdaterades\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Supportmejl\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Moms\",\"geUFpZ\":\"Moms och avgifter\",\"dFHcIn\":\"Momsuppgifter\",\"wQzCPX\":\"Momsinformation som ska visas längst ned på alla fakturor (t.ex. momsnummer, skatteregistrering)\",\"0RXCDo\":\"Moms eller avgift togs bort\",\"ZowkxF\":\"Moms\",\"qu6/03\":\"Moms och avgifter\",\"gypigA\":\"Den kampanjkoden är ogiltig\",\"5ShqeM\":\"Incheckningslistan du letar efter finns inte.\",\"QXlz+n\":\"Standardvaluta för dina evenemang.\",\"mnafgQ\":\"Standardtidszon för dina evenemang.\",\"o7s5FA\":\"Språket som deltagaren kommer att få e-post på.\",\"NlfnUd\":\"Länken du klickade på är ogiltig.\",\"HsFnrk\":[\"Maximalt antal produkter för \",[\"0\"],\" är \",[\"1\"]],\"TSAiPM\":\"Sidan du letar efter finns inte\",\"MSmKHn\":\"Priset som visas för kunden inkluderar moms och avgifter.\",\"6zQOg1\":\"Priset som visas för kunden inkluderar inte moms och avgifter. De visas separat\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Titeln för evenemanget som visas i sökresultat och vid delning i sociala medier. Som standard används evenemangets titel\",\"wDx3FF\":\"Det finns inga produkter tillgängliga för det här evenemanget\",\"pNgdBv\":\"Det finns inga produkter tillgängliga i den här kategorin\",\"rMcHYt\":\"En återbetalning väntar. Vänta tills den är slutförd innan du begär en ny återbetalning.\",\"F89D36\":\"Det uppstod ett fel när ordern skulle markeras som betald\",\"68Axnm\":\"Det uppstod ett fel när din begäran skulle behandlas. Försök igen.\",\"mVKOW6\":\"Det uppstod ett fel när ditt meddelande skulle skickas\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Den här deltagaren har en obetald order.\",\"mf3FrP\":\"Den här kategorin har inga produkter ännu.\",\"8QH2Il\":\"Den här kategorin är dold för allmänheten\",\"xxv3BZ\":\"Den här incheckningslistan har löpt ut\",\"Sa7w7S\":\"Den här incheckningslistan har löpt ut och är inte längre tillgänglig för incheckning.\",\"Uicx2U\":\"Den här incheckningslistan är aktiv\",\"1k0Mp4\":\"Den här incheckningslistan är inte aktiv ännu\",\"K6fmBI\":\"Den här incheckningslistan är ännu inte aktiv och är inte tillgänglig för incheckning.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Den här informationen visas på betalningssidan, ordersammanfattningen och i orderbekräftelsen via e-post.\",\"XAHqAg\":\"Det här är en vanlig produkt, som en t-shirt eller en mugg. Ingen biljett utfärdas\",\"CNk/ro\":\"Det här är ett onlineevenemang\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Det här meddelandet inkluderas i sidfoten i alla mejl som skickas från detta evenemang\",\"55i7Fa\":\"Det här meddelandet visas endast om ordern slutförs. Ordrar som väntar på betalning visar inte detta meddelande\",\"RjwlZt\":\"Den här ordern är redan betald.\",\"5K8REg\":\"Den här ordern har redan återbetalats.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Den här ordern har avbrutits.\",\"Q0zd4P\":\"Den här ordern har löpt ut. Börja om.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Den här ordern är slutförd.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Den här ordersidan är inte längre tillgänglig.\",\"i0TtkR\":\"Detta åsidosätter alla synlighetsinställningar och döljer produkten för alla kunder.\",\"cRRc+F\":\"Den här produkten kan inte tas bort eftersom den är kopplad till en order. Du kan dölja den i stället.\",\"3Kzsk7\":\"Den här produkten är en biljett. Köpare får en biljett vid köp\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Den här länken för att återställa lösenordet är ogiltig eller har löpt ut.\",\"IV9xTT\":\"Den här användaren är inte aktiv eftersom hen inte har accepterat sin inbjudan.\",\"5AnPaO\":\"biljett\",\"kjAL4v\":\"Biljett\",\"dtGC3q\":\"Biljettmejlet har skickats igen till deltagaren\",\"54q0zp\":\"Biljetter för\",\"xN9AhL\":[\"Nivå \",[\"0\"]],\"jZj9y9\":\"Produkt med nivåer\",\"8wITQA\":\"Produkter med nivåer låter dig erbjuda flera prisalternativ för samma produkt. Perfekt för early bird-produkter eller för att erbjuda olika priser till olika grupper.\",\"nn3mSR\":\"Tid kvar:\",\"s/0RpH\":\"Antal gånger använd\",\"y55eMd\":\"Antal gånger använd\",\"40Gx0U\":\"Tidszon\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Verktyg\",\"72c5Qo\":\"Totalt\",\"YXx+fG\":\"Totalt före rabatter\",\"NRWNfv\":\"Totalt rabattbelopp\",\"BxsfMK\":\"Totala avgifter\",\"2bR+8v\":\"Total bruttoförsäljning\",\"mpB/d9\":\"Totalt orderbelopp\",\"m3FM1g\":\"Totalt återbetalt\",\"jEbkcB\":\"Totalt återbetalt\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total skatt\",\"+zy2Nq\":\"Typ\",\"FMdMfZ\":\"Det gick inte att checka in deltagaren\",\"bPWBLL\":\"Det gick inte att checka ut deltagaren\",\"9+P7zk\":\"Det gick inte att skapa produkten. Kontrollera dina uppgifter\",\"WLxtFC\":\"Det gick inte att skapa produkten. Kontrollera dina uppgifter\",\"/cSMqv\":\"Det gick inte att skapa frågan. Kontrollera dina uppgifter\",\"MH/lj8\":\"Det gick inte att uppdatera frågan. Kontrollera dina uppgifter\",\"nnfSdK\":\"Unika kunder\",\"Mqy/Zy\":\"USA\",\"NIuIk1\":\"Obegränsat\",\"/p9Fhq\":\"Obegränsat antal tillgängliga\",\"E0q9qH\":\"Obegränsat antal användningar tillåts\",\"h10Wm5\":\"Obetald order\",\"ia8YsC\":\"Kommande\",\"TlEeFv\":\"Kommande evenemang\",\"L/gNNk\":[\"Uppdatera \",[\"0\"]],\"+qqX74\":\"Uppdatera evenemangets namn, beskrivning och datum\",\"vXPSuB\":\"Uppdatera profil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL kopierad till urklipp\",\"e5lF64\":\"Exempel på användning\",\"fiV0xj\":\"Användningsgräns\",\"sGEOe4\":\"Använd en suddig version av omslagsbilden som bakgrund\",\"OadMRm\":\"Använd omslagsbild\",\"7PzzBU\":\"Användare\",\"yDOdwQ\":\"Användarhantering\",\"Sxm8rQ\":\"Användare\",\"VEsDvU\":\"Användare kan ändra sin e-postadress i <0>Profilinställningar\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"Moms\",\"E/9LUk\":\"Platsnamn\",\"jpctdh\":\"Visa\",\"Pte1Hv\":\"Visa deltagardetaljer\",\"/5PEQz\":\"Visa evenemangssida\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Visa på Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP-incheckningslista\",\"tF+VVr\":\"VIP-biljett\",\"2q/Q7x\":\"Synlighet\",\"vmOFL/\":\"Vi kunde inte behandla din betalning. Försök igen eller kontakta supporten.\",\"45Srzt\":\"Vi kunde inte ta bort kategorin. Försök igen.\",\"/DNy62\":[\"Vi kunde inte hitta några biljetter som matchar \",[\"0\"]],\"1E0vyy\":\"Vi kunde inte ladda data. Försök igen.\",\"NmpGKr\":\"Vi kunde inte ändra ordningen på kategorierna. Försök igen.\",\"BJtMTd\":\"Vi rekommenderar 1950×650 px, bildförhållande 3:1 och maximal filstorlek 5 MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Vi kunde inte bekräfta din betalning. Försök igen eller kontakta supporten.\",\"Gspam9\":\"Vi behandlar din order. Vänta...\",\"LuY52w\":\"Välkommen ombord! Logga in för att fortsätta.\",\"dVxpp5\":[\"Välkommen tillbaka\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Vad är nivåindelade produkter?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Vad är en kategori?\",\"gxeWAU\":\"Vilka produkter gäller den här koden för?\",\"hFHnxR\":\"Vilka produkter gäller den här koden för? (Gäller alla som standard)\",\"AeejQi\":\"Vilka produkter ska den här kapaciteten gälla för?\",\"Rb0XUE\":\"Vilken tid kommer du?\",\"5N4wLD\":\"Vilken typ av fråga är detta?\",\"gyLUYU\":\"När detta är aktiverat skapas fakturor för biljettordrar. Fakturor skickas tillsammans med orderbekräftelsen via e-post. Deltagare kan även ladda ner sina fakturor från orderbekräftelsesidan.\",\"D3opg4\":\"När offlinebetalningar är aktiverade kan användare slutföra sina ordrar och få sina biljetter. Biljetterna visar tydligt att ordern inte är betald, och incheckningsverktyget meddelar incheckningspersonalen om en order kräver betalning.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Vilka biljetter ska kopplas till den här incheckningslistan?\",\"S+OdxP\":\"Vem arrangerar det här evenemanget?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Vem ska få den här frågan?\",\"VxFvXQ\":\"Bädda in widget\",\"v1P7Gm\":\"Widgetinställningar\",\"b4itZn\":\"Arbetar\",\"hqmXmc\":\"Arbetar...\",\"+G/XiQ\":\"Hittills i år\",\"l75CjT\":\"Ja\",\"QcwyCh\":\"Ja, ta bort dem\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Du ändrar din e-postadress till <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Du är offline\",\"sdB7+6\":\"Du kan skapa en kampanjkod som riktar sig mot den här produkten på\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Du kan inte ändra produkttyp eftersom det finns deltagare kopplade till den här produkten.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Du kan inte checka in deltagare med obetalda ordrar. Den här inställningen kan ändras i evenemangsinställningarna.\",\"c9Evkd\":\"Du kan inte ta bort den sista kategorin.\",\"6uwAvx\":\"Du kan inte ta bort den här prisnivån eftersom det redan finns sålda produkter för nivån. Du kan dölja den i stället.\",\"tFbRKJ\":\"Du kan inte redigera kontoinnehavarens roll eller status.\",\"fHfiEo\":\"Du kan inte återbetala en manuellt skapad order.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Du har åtkomst till flera konton. Välj ett för att fortsätta.\",\"Z6q0Vl\":\"Du har redan accepterat den här inbjudan. Logga in för att fortsätta.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Du har ingen väntande ändring av e-postadress.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Tiden för att slutföra din order har gått ut.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Du måste bekräfta att det här e-postmeddelandet inte är reklam\",\"3ZI8IL\":\"Du måste godkänna villkoren\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Du måste skapa en biljett innan du kan lägga till en deltagare manuellt.\",\"jE4Z8R\":\"Du måste ha minst en prisnivå\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Du behöver markera en order som betald manuellt. Det kan göras på sidan för att hantera ordern.\",\"L/+xOk\":\"Du behöver en biljett innan du kan skapa en incheckningslista.\",\"Djl45M\":\"Du behöver en produkt innan du kan skapa en kapacitetstilldelning.\",\"y3qNri\":\"Du behöver minst en produkt för att komma igång. Gratis, betald eller låt användaren bestämma vad de vill betala.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Ditt kontonamn används på evenemangssidor och i e-post.\",\"veessc\":\"Dina deltagare visas här när de har registrerat sig för ditt evenemang. Du kan också lägga till deltagare manuellt.\",\"Eh5Wrd\":\"Din grymma webbplats 🎉\",\"lkMK2r\":\"Dina uppgifter\",\"3ENYTQ\":[\"Din begäran om att ändra e-postadress till <0>\",[\"0\"],\" väntar. Kontrollera din e-post för att bekräfta.\"],\"yZfBoy\":\"Ditt meddelande har skickats\",\"KSQ8An\":\"Din order\",\"Jwiilf\":\"Din order har avbokats\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Dina ordrar visas här när de börjar komma in.\",\"9TO8nT\":\"Ditt lösenord\",\"P8hBau\":\"Din betalning behandlas.\",\"UdY1lL\":\"Din betalning lyckades inte, försök igen.\",\"fzuM26\":\"Din betalning misslyckades. Försök igen.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Din återbetalning behandlas.\",\"IFHV2p\":\"Din biljett till\",\"x1PPdr\":\"Postnummer\",\"BM/KQm\":\"Postnummer\",\"+LtVBt\":\"Postnummer\",\"25QDJ1\":\"- Klicka för att publicera\",\"WOyJmc\":\"- Klicka för att avpublicera\",\"ncwQad\":\"(tom)\",\"B/gRsg\":\"(ingen)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" är redan incheckad\"],\"3beCx0\":[[\"0\"],\" <0>incheckad\"],\"S4PqS9\":[[\"0\"],\" aktiva webhooks\"],\"6MIiOI\":[[\"0\"],\" kvar\"],\"COnw8D\":[[\"0\"],\" logotyp\"],\"xG9N0H\":[[\"0\"],\" av \",[\"1\"],\" platser är upptagna.\"],\"B7pZfX\":[[\"0\"],\" arrangörer\"],\"rZTf6P\":[[\"0\"],\" platser kvar\"],\"/HkCs4\":[[\"0\"],\" biljetter\"],\"dtXkP9\":[[\"0\"],\" kommande datum\"],\"30bTiU\":[[\"activeCount\"],\" aktiverade\"],\"jTs4am\":[[\"appName\"],\"-logotyp\"],\"gbJOk9\":[[\"attendeeCount\"],\" deltagare är registrerade för detta tillfälle.\"],\"TjbIUI\":[[\"availableCount\"],\" av \",[\"totalCount\"],\" tillgängliga\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" incheckade\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"för \",[\"diffHr\"],\" tim sedan\"],\"NRSLBe\":[\"för \",[\"diffMin\"],\" min sedan\"],\"iYfwJE\":[\"för \",[\"diffSec\"],\" sek sedan\"],\"OJnhhX\":[[\"eventCount\"],\" evenemang\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" deltagare är registrerade över de berörda tillfällena.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" biljettkategorier\"],\"0cLzoF\":[[\"totalOccurrences\"],\" datum\"],\"AEGc4t\":[[\"totalOccurrences\"],\" tillfällen över \",[\"0\"],\" datum (\",[\"1\",\"plural\",{\"one\":[\"#\",\" tillfälle\"],\"other\":[\"#\",\" tillfällen\"]}],\" per dag)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Skatt/Avgifter\",\"B1St2O\":\"<0>Incheckningslistor hjälper dig att hantera evenemangets entré per dag, område eller biljetttyp. Du kan länka biljetter till specifika listor som VIP-zoner eller Dag 1-pass och dela en säker incheckningslänk med personal. Inget konto krävs. Incheckning fungerar på mobil, dator eller surfplatta med enhetens kamera eller HID USB-skanner.\",\"v9VSIS\":\"<0>Ställ in en enda total deltagarbegränsning som gäller för flera biljettyper samtidigt.<1>Om du till exempel länkar en <2>Dagsbiljett och en <3>Helgbiljett, kommer de båda att använda samma pool av platser. När gränsen är nådd slutar alla länkade biljetter automatiskt att säljas.\",\"vKXqag\":\"<0>Detta är standardantalet för alla datum. Varje datums kapacitet kan ytterligare begränsa tillgängligheten på <1>sidan Tillfällesschema.\",\"ZnVt5v\":\"<0>Webhooks meddelar omedelbart externa tjänster när händelser inträffar, till exempel att lägga till en ny deltagare i ditt CRM eller din e-postlista vid registrering, vilket ger sömlös automation.<1>Använd tredjepartstjänster som <2>Zapier, <3>IFTTT eller <4>Make för att skapa anpassade arbetsflöden och automatisera uppgifter.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" vid aktuell kurs\"],\"M2DyLc\":\"1 aktiv webhook\",\"6hIk/x\":\"1 deltagare är registrerad över de berörda tillfällena.\",\"qOyE2U\":\"1 deltagare är registrerad för detta tillfälle.\",\"943BwI\":\"1 dag efter slutdatum\",\"yj3N+g\":\"1 dag efter startdatum\",\"Z3etYG\":\"1 dag före evenemanget\",\"szSnlj\":\"1 timme före evenemanget\",\"yTsaLw\":\"1 biljett\",\"nz96Ue\":\"1 biljettyp\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 vecka före evenemanget\",\"09VFYl\":\"12 biljetter erbjudna\",\"HR/cvw\":\"Exempelgatan 123\",\"dgKxZ5\":\"135+ valutor och 40+ betalningsmetoder\",\"kMU5aM\":\"Ett avbokningsmeddelande har skickats till\",\"o++0qa\":\"en ändring i varaktighet\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"En ny verifieringskod har skickats till din e-post\",\"sr2Je0\":\"en förskjutning av start-/sluttider\",\"/z/bH1\":\"En kort beskrivning av din arrangör som visas för dina användare.\",\"aS0jtz\":\"Övergiven\",\"uyJsf6\":\"Om\",\"JvuLls\":\"Absorbera avgift\",\"lk74+I\":\"Absorbera Avgift\",\"1uJlG9\":\"Accentfärg\",\"g3UF2V\":\"Acceptera\",\"K5+3xg\":\"Acceptera inbjudan\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Konto · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Kontoinformation\",\"EHNORh\":\"Konto hittades inte\",\"bPwFdf\":\"Konton\",\"AhwTa1\":\"Åtgärd krävs: Momsinformation krävs\",\"APyAR/\":\"Aktiva evenemang\",\"kCl6ja\":\"Aktiva betalningsmetoder\",\"XJOV1Y\":\"Aktivitet\",\"0YEoxS\":\"Lägg till ett datum\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Lägg till ett enstaka datum\",\"CjvTPJ\":\"Lägg till en annan tid\",\"0XCduh\":\"Lägg till minst en tid\",\"/chGpa\":\"Lägg till anslutningsuppgifter för onlineevenemanget.\",\"UWWRyd\":\"Lägg till fråga\",\"Z/dcxc\":\"Lägg till datum\",\"Q219NT\":\"Lägg till datum\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Lägg till plats\",\"VX6WUv\":\"Lägg till plats\",\"GCQlV2\":\"Lägg till flera tider om du kör flera tillfällen per dag.\",\"7JF9w9\":\"Lägg till fråga\",\"NLbIb6\":\"Lägg till denna deltagare ändå (kringgå kapacitet)\",\"6PNlRV\":\"Lägg till detta evenemang i din kalender\",\"BGD9Yt\":\"Lägg till biljetter\",\"uIv4Op\":\"Lägg till spårningspixlar på dina offentliga evenemangssidor och arrangörens startsida. En cookie-medgivandebanner visas för besökare när spårning är aktiv.\",\"QN2F+7\":\"Lägg till webhook\",\"NsWqSP\":\"Lägg till dina sociala mediekonton och din webbplats URL. Dessa kommer att visas på din offentliga arrangörssida.\",\"bVjDs9\":\"Ytterligare avgifter\",\"MKqSg4\":\"Administratörsåtkomst krävs\",\"0Zypnp\":\"Adminpanel\",\"YAV57v\":\"Partner\",\"I+utEq\":\"Partnerkoden kan inte ändras\",\"/jHBj5\":\"Partnern skapades\",\"uCFbG2\":\"Partern raderades\",\"ld8I+f\":\"Affiliateprogram\",\"a41PKA\":\"Partnerförsäljning kommer att spåras\",\"mJJh2s\":\"Partnerförsäljning kommer inte att spåras. Detta kommer att inaktivera affiliaten.\",\"jabmnm\":\"Partern uppdaterades\",\"CPXP5Z\":\"Partners\",\"9Wh+ug\":\"Partners exporterades\",\"3cqmut\":\"Partners hjälper dig att spåra försäljning som genereras av partners och influencers. Skapa partnerkoder och dela dem för att övervaka resultat.\",\"z7GAMJ\":\"alla\",\"N40H+G\":\"Alla\",\"7rLTkE\":\"Alla arkiverade evenemang\",\"gKq1fa\":\"Alla deltagare\",\"63gRoO\":\"Alla deltagare för de valda tillfällena\",\"uWxIoH\":\"Alla deltagare för detta tillfälle\",\"pMLul+\":\"Alla valutor\",\"sgUdRZ\":\"Alla datum\",\"e4q4uO\":\"Alla datum\",\"ZS/D7f\":\"Alla avslutade evenemang\",\"QsYjci\":\"Alla evenemang\",\"31KB8w\":\"Alla misslyckade jobb borttagna\",\"D2g7C7\":\"Alla jobb köade för nytt försök\",\"B4RFBk\":\"Alla matchande datum\",\"F1/VgK\":\"Alla tillfällen\",\"OpWjMq\":\"Alla tillfällen\",\"Sxm1lO\":\"Alla statusar\",\"dr7CWq\":\"Alla kommande evenemang\",\"GpT6Uf\":\"Tillåt deltagare att uppdatera deras biljettinformation (namn, epost) via säker länk skickad med deras orderinformation.\",\"F3mW5G\":\"Tillåt kunder att gå med i en väntelista när denna produkt är slutsåld\",\"c4uJfc\":\"Snart klart! Vi väntar bara på att din betalning ska behandlas. Det tar bara några sekunder.\",\"ocS8eq\":[\"Har du redan ett konto? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Redan inne\",\"/H326L\":\"Redan återbetald\",\"USEpOK\":\"Använder du redan Stripe på en annan arrangör? Återanvänd den anslutningen.\",\"RtxQTF\":\"Avboka även denna order\",\"jkNgQR\":\"Återbetala även denna order\",\"xYqsHg\":\"Alltid tillgänglig\",\"Wvrz79\":\"Betalt belopp\",\"Zkymb9\":\"En e-postadress att koppla till denna partner. Partnern kommer inte att meddelas.\",\"vRznIT\":\"Ett fel uppstod vid kontroll av exportstatus.\",\"eusccx\":\"Ett valfritt meddelande att visa på den markerade produkten, t.ex. \\\"Säljer snabbt 🔥\\\" eller \\\"Bästa värdet\\\"\",\"5GJuNp\":[\"och \",[\"0\"],\" till...\"],\"QNrkms\":\"Svaret uppdaterades\",\"+qygei\":\"Svar\",\"GK7Lnt\":\"Svar vid kassan (t.ex. maträtt)\",\"lE8PgT\":\"Alla datum som du manuellt har anpassat behålls.\",\"vP3Nzg\":[\"Gäller \",[\"0\"],\", ej avbokade datum som för närvarande är inlästa på denna sida.\"],\"kkVyZZ\":\"Gäller alla som öppnar länken utan att vara inloggade. Inloggade ser alltid allt.\",\"je4muG\":[\"Gäller varje \",[\"0\"],\", ej avbokat datum i detta evenemang — inklusive datum som inte är inlästa.\"],\"YIIQtt\":\"Tillämpa ändringar\",\"NzWX1Y\":\"Tillämpa på\",\"Ps5oDT\":\"Tillämpa på alla biljetter\",\"261RBr\":\"Godkänn meddelande\",\"naCW6Z\":\"April\",\"B495Gs\":\"Arkivera\",\"5sNliy\":\"Arkivera evenemang\",\"BrwnrJ\":\"Arkivera arrangör\",\"E5eghW\":\"Arkivera detta evenemang för att dölja det för allmänheten. Du kan återställa det senare.\",\"eqFkeI\":\"Arkivera denna arrangör. Detta kommer också att arkivera alla evenemang som tillhör denna arrangör.\",\"BzcxWv\":\"Arkiverade arrangörer\",\"9cQBd6\":\"Är du säker på att du vill arkivera detta evenemang? Det kommer inte längre att vara synligt för allmänheten.\",\"Trnl3E\":\"Är du säker på att du vill arkivera denna arrangör? Detta kommer också att arkivera alla evenemang som tillhör denna arrangör.\",\"wOvn+e\":[\"Är du säker på att du vill avboka \",[\"count\"],\" datum? Berörda deltagare meddelas via e-post.\"],\"GTxE0U\":\"Är du säker på att du vill avboka detta datum? Berörda deltagare meddelas via e-post.\",\"VkSk/i\":\"Är du säker på att du vill avbryta detta schemalagda meddelande?\",\"0aVEBY\":\"Är du säker på att du vill ta bort alla misslyckade jobb?\",\"LchiNd\":\"Är du säker på att du vill ta bort denna partner? Denna åtgärd kan inte ångras.\",\"vPeW/6\":\"Är du säker på att du vill ta bort denna konfiguration? Detta kan påverka konton som använder den.\",\"h42Hc/\":\"Är du säker på att du vill ta bort detta datum? Denna åtgärd kan inte ångras.\",\"JmVITJ\":\"Är du säker på att du vill ta bort denna mall? Denna åtgärd kan inte ångras och e-post kommer att återgå till standardmallen.\",\"aLS+A6\":\"Är du säker på att du vill ta bort denna mall? Denna åtgärd kan inte ångras och e-post kommer att återgå till arrangörens eller standardmallen.\",\"5H3Z78\":\"Är du säker på att du vill ta bort denna webhook?\",\"147G4h\":\"Är du säker på att du vill lämna?\",\"VDWChT\":\"Är du säker på att du vill göra denna arrangör till ett utkast? Detta gör arrangörssidan osynlig för allmänheten\",\"pWtQJM\":\"Är du säker på att du vill publicera denna arrangör? Detta gör arrangörssidan synlig för allmänheten\",\"EOqL/A\":\"Är du säker på att du vill erbjuda en plats till denna person? De kommer att få ett e-postmeddelande.\",\"yAXqWW\":\"Är du säker på att du vill ta bort detta datum permanent? Detta kan inte ångras.\",\"WFHOlF\":\"Är du säker på att du vill publicera detta evenemang? När det är publicerat blir det synligt för allmänheten.\",\"4TNVdy\":\"Är du säker på att du vill publicera denna arrangörsprofil? När den är publicerad blir den synlig för allmänheten.\",\"8x0pUg\":\"Är du säker på att du vill ta bort denna post från väntelistan?\",\"cDtoWq\":[\"Vill du verkligen skicka om orderbekräftelsen till \",[\"0\"],\"?\"],\"xeIaKw\":[\"Vill du verkligen skicka om biljetten till \",[\"0\"],\"?\"],\"BjbocR\":\"Är du säker på att du vill återställa detta evenemang?\",\"7MjfcR\":\"Är du säker på att du vill återställa denna arrangör?\",\"ExDt3P\":\"Är du säker på att du vill avpublicera detta evenemang? Det kommer inte längre vara synligt för allmänheten.\",\"5Qmxo/\":\"Är du säker på att du vill avpublicera denna arrangörsprofil? Den kommer inte längre vara synlig för allmänheten.\",\"Uqefyd\":\"Är du momsregistrerad i EU?\",\"+QARA4\":\"Konst\",\"tLf3yJ\":\"Eftersom ditt företag är baserat i Irland tillämpas irländsk moms på 23% automatiskt på alla plattformsavgifter.\",\"tMeVa/\":\"Be om namn och e-post för varje biljett som köps\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Tilldela plan\",\"xdiER7\":\"Tilldelad nivå\",\"F2rX0R\":\"Minst en evenemangstyp måste väljas\",\"BCmibk\":\"Försök\",\"6PecK3\":\"Närvaro och incheckningsfrekvens för alla evenemang\",\"K2tp3v\":\"deltagare\",\"AJ4rvK\":\"Deltagare avbokad\",\"qvylEK\":\"Deltagare skapad\",\"Aspq3b\":\"Insamling av deltagaruppgifter\",\"fpb0rX\":\"Deltagaruppgifter kopierade från order\",\"0R3Y+9\":\"Deltagarens e-postadress\",\"94aQMU\":\"Deltagarinformation\",\"KkrBiR\":\"Insamling av deltagarinformation\",\"av+gjP\":\"Deltagarens namn\",\"sjPjOg\":\"Deltagaranteckningar\",\"cosfD8\":\"Deltagarstatus\",\"D2qlBU\":\"Deltagare uppdaterad\",\"22BOve\":\"Deltagare uppdaterades framgångsrikt\",\"x8Vnvf\":\"Deltagarens biljett ingår inte i denna lista\",\"/Ywywr\":\"deltagare\",\"zLRobu\":\"deltagare incheckade\",\"k3Tngl\":\"Deltagare exporterade\",\"UoIRW8\":\"Deltagare registrerade\",\"5UbY+B\":\"Deltagare med en specifik biljett\",\"4HVzhV\":\"Deltagare:\",\"HVkhy2\":\"Attributionsanalys\",\"dMMjeD\":\"Attributionsuppdelning\",\"1oPDuj\":\"Attributionsvärde\",\"DBHTm/\":\"Augusti\",\"JgREph\":\"Automatiskt erbjudande är aktiverat\",\"V7Tejz\":\"Automatisk hantering av väntelista\",\"PZ7FTW\":\"Identifieras automatiskt baserat på bakgrundsfärg, men kan åsidosättas\",\"zlnTuI\":\"Erbjud automatiskt biljetter till nästa person när kapacitet blir tillgänglig. Om inaktiverat kan du manuellt behandla väntelistan från väntelistesidan.\",\"csDS2L\":\"Tillgängligt\",\"clF06r\":\"Tillgängligt för återbetalning\",\"NB5+UG\":\"Tillgängliga tokens\",\"L+wGOG\":\"Väntande\",\"qcw2OD\":\"Väntar betalning\",\"kNmmvE\":\"Awesome Events Ltd.\",\"iH8pgl\":\"Tillbaka\",\"TeSaQO\":\"Tillbaka till konton\",\"X7Q/iM\":\"Tillbaka till kalender\",\"kYqM1A\":\"Tillbaka till evenemanget\",\"s5QRF3\":\"Tillbaka till meddelanden\",\"td/bh+\":\"Tillbaka till rapporter\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Grundpris\",\"hviJef\":\"Baserat på den globala försäljningsperioden ovan, inte per datum\",\"jIPNJG\":\"Grundläggande information\",\"UabgBd\":\"Meddelandet är obligatoriskt\",\"HWXuQK\":\"Bokmärk denna sida för att hantera din order när som helst.\",\"CUKVDt\":\"Profilera dina biljetter med en anpassad logotyp, färger och sidfotmeddelande.\",\"4BZj5p\":\"Inbyggt bedrägeriskydd\",\"cr7kGH\":\"Massredigera\",\"1Fbd6n\":\"Massredigera datum\",\"Eq6Tu9\":\"Massuppdatering misslyckades.\",\"9N+p+g\":\"Företag\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Företagsnamn\",\"bv6RXK\":\"Knapptext\",\"ChDLlO\":\"Knapptext\",\"BUe8Wj\":\"Köparen betalar\",\"qF1qbA\":\"Köpare ser ett rent pris. Plattformavgiften dras från din utbetalning.\",\"dg05rc\":\"Genom att lägga till spårningspixlar bekräftar du att du och denna plattform är gemensamt ansvariga för insamlade uppgifter. Du ansvarar för att säkerställa att du har en rättslig grund för denna behandling enligt tillämpliga integritetslagar (GDPR, CCPA, etc.).\",\"DFqasq\":[\"Genom att fortsätta godkänner du <0>\",[\"0\"],\" användarvillkor\"],\"wVSa+U\":\"Per dag i månaden\",\"0MnNgi\":\"Per veckodag\",\"CetOZE\":\"Per biljettyp\",\"lFdbRS\":\"Kringgå applikationsavgifter\",\"AjVXBS\":\"Kalender\",\"alkXJ5\":\"Kalendervy\",\"2VLZwd\":\"Uppmaningsknapp\",\"rT2cV+\":\"Kamera\",\"7hYa9y\":\"Kameraåtkomst nekades. <0>Begär åtkomst igen, eller ge sidan kameraåtkomst i webbläsarinställningarna.\",\"D02dD9\":\"Kampanj\",\"RRPA79\":\"Kan inte checka in\",\"OcVwAd\":[\"Avboka \",[\"count\"],\" datum\"],\"H4nE+E\":\"Avbryt alla produkter och släpp tillbaka dem till poolen\",\"Py78q9\":\"Avboka datum\",\"tOXAdc\":\"Avbrytande kommer att avbryta alla deltagare som är kopplade till denna order och släppa tillbaka biljetterna till den tillgängliga poolen.\",\"vev1Jl\":\"Avbokning\",\"Ha17hq\":[\"Avbokade \",[\"0\"],\" datum\"],\"01sEfm\":\"Det går inte att ta bort systemets standardkonfiguration\",\"VsM1HH\":\"Kapacitetstilldelningar\",\"9bIMVF\":\"Kapacitetshantering\",\"H7K8og\":\"Kapaciteten måste vara 0 eller större\",\"nzao08\":\"kapacitetsuppdateringar\",\"4cp9NP\":\"Använd kapacitet\",\"K7tIrx\":\"Kategori\",\"o+XJ9D\":\"Ändra\",\"kJkjoB\":\"Ändra varaktighet\",\"J0KExZ\":\"Ändra deltagargränsen\",\"CIHJJf\":\"Ändra väntlistinställningar\",\"B5icLR\":[\"Ändrade varaktighet för \",[\"count\"],\" datum\"],\"Kb+0BT\":\"Debiteringar\",\"2tbLdK\":\"Välgörenhet\",\"BPWGKn\":\"Checka in\",\"6uFFoY\":\"Checka ut\",\"FjAlwK\":[\"Kolla in detta evenemang: \",[\"0\"]],\"v4fiSg\":\"Kontrollera din e-post\",\"51AsAN\":\"Kontrollera din inkorg! Om biljetter är kopplade till denna e-postadress får du en länk för att visa dem.\",\"Y3FYXy\":\"Incheckning\",\"udRwQs\":\"Incheckning skapad\",\"F4SRy3\":\"Incheckning borttagen\",\"as6XfO\":[\"Incheckning av \",[\"0\"],\" ångrades\"],\"9s/wrQ\":\"Incheckningshistorik\",\"Wwztk4\":\"Incheckningslista\",\"9gPPUY\":\"Incheckningslista skapad\",\"dwjiJt\":\"Info för listan\",\"7od0PV\":\"incheckningslistor\",\"f2vU9t\":\"Incheckningslistor\",\"XprdTn\":\"Incheckningsnavigering\",\"5tV1in\":\"Incheckningsförlopp\",\"SHJwyq\":\"Incheckningsgrad\",\"qCqdg6\":\"Incheckningsstatus\",\"cKj6OE\":\"Incheckningssammanfattning\",\"7B5M35\":\"Incheckningar\",\"VrmydS\":\"Incheckad\",\"DM4gBB\":\"Kinesiska (traditionell)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Välj en annan åtgärd\",\"fkb+y3\":\"Välj en sparad plats att tillämpa.\",\"Zok1Gx\":\"Välj en arrangör\",\"pkk46Q\":\"Välj en organisatör\",\"Crr3pG\":\"Välj kalender\",\"LAW8Vb\":\"Välj standardinställningen för nya evenemang. Detta kan åsidosättas för enskilda evenemang.\",\"pjp2n5\":\"Välj vem som betalar plattformsavgiften. Detta påverkar inte ytterligare avgifter som du har konfigurerat i dina kontoinställningar.\",\"xCJdfg\":\"Rensa\",\"QyOWu9\":\"Rensa plats — återgå till evenemangets standard\",\"V8yTm6\":\"Rensa sökning\",\"kmnKnX\":\"Att rensa tar bort alla åsidosättningar per tillfälle. Berörda tillfällen återgår till evenemangets standardplats.\",\"/o+aQX\":\"Klicka för att avbryta\",\"gD7WGV\":\"Klicka för att öppna igen för ny försäljning\",\"CySr+W\":\"Klicka för att visa anteckningar\",\"RG3szS\":\"stäng\",\"RWw9Lg\":\"Stäng dialogruta\",\"XwdMMg\":\"Koden får endast innehålla bokstäver, siffror, bindestreck och understreck\",\"+yMJb7\":\"Kod är obligatorisk\",\"m9SD3V\":\"Koden måste vara minst 3 tecken\",\"V1krgP\":\"Koden får vara högst 20 tecken\",\"psqIm5\":\"Samarbeta med ditt team för att skapa fantastiska evenemang tillsammans.\",\"4bUH9i\":\"Samla in deltagaruppgifter för varje köpt biljett.\",\"TkfG8v\":\"Hämta detaljer per order\",\"96ryID\":\"Hämta detaljer per biljett\",\"FpsvqB\":\"Färgläge\",\"jEu4bB\":\"Kolumner\",\"CWk59I\":\"Komedi\",\"rPA+Gc\":\"Kommunikationspreferens\",\"zFT5rr\":\"klart\",\"bUQMpb\":\"Slutför Stripe-installationen\",\"744BMm\":\"Slutför din beställning för att säkra dina biljetter. Detta erbjudande är tidsbegränsat, så vänta inte för länge.\",\"5YrKW7\":\"Slutför din betalning för att säkra dina biljetter.\",\"xGU92i\":\"Slutför din profil för att gå med i laget.\",\"QOhkyl\":\"Skriv\",\"ih35UP\":\"Konferenscenter\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Konfiguration tilldelad\",\"X1zdE7\":\"Konfiguration skapad\",\"mLBUMQ\":\"Konfiguration borttagen\",\"UIENhw\":\"Konfigurationsnamn är synliga för slutanvändare. Fasta avgifter kommer att konverteras till ordervalutan enligt aktuell växelkurs.\",\"eeZdaB\":\"Konfiguration uppdaterad\",\"3cKoxx\":\"Konfigurationer\",\"8v2LRU\":\"Konfigurera evenemangsdetaljer, plats, kassainställningar och epost notifikationer.\",\"raw09+\":\"Konfigurera hur deltagaruppgifter samlas in i kassan\",\"FI60XC\":\"Konfigurera skatter och avgifter\",\"av6ukY\":\"Konfigurera vilka produkter som är tillgängliga för detta tillfälle och justera eventuellt priserna.\",\"NGXKG/\":\"Bekräfta e-postadress\",\"JRQitQ\":\"Bekräfta nytt lösenord\",\"Auz0Mz\":\"Bekräfta din e-postadress för att få tillgång till alla funktioner.\",\"7+grte\":\"Bekräftelsemail skickat. Kontrollera din inkorg.\",\"n/7+7Q\":\"Bekräftelse skickad till\",\"x3wVFc\":\"Grattis! Ditt evenemang är nu synligt för allmänheten.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Anslut Stripe för att aktivera redigering av e-postmallar\",\"LmvZ+E\":\"Anslut Stripe för att aktivera meddelanden\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakta \",[\"0\"]],\"41BQ3k\":\"Kontakt-e-post\",\"KcXRN+\":\"Kontakt-e-post för support\",\"m8WD6t\":\"Fortsätt konfigurering\",\"0GwUT4\":\"Fortsätt till kassan\",\"sBV87H\":\"Fortsätt till skapande av evenemang\",\"nKtyYu\":\"Fortsätt till nästa steg\",\"F3/nus\":\"Fortsätt till betalning\",\"p2FRHj\":\"Kontrollera hur plattformsavgifter hanteras för detta evenemang\",\"NqfabH\":\"Kontrollera vem som kommer in för detta datum\",\"fmYxZx\":\"Vem som kommer in, och när\",\"1JnTgU\":\"Kopierad från ovan\",\"FxVG/l\":\"Kopierad till urklipp\",\"PiH3UR\":\"Kopierad!\",\"4i7smN\":\"Kopiera konto-ID\",\"uUPbPg\":\"Kopiera partnerlänk\",\"iVm46+\":\"Kopiera kod\",\"cF2ICc\":\"Kopiera kundlänk\",\"+2ZJ7N\":\"Kopiera uppgifter till första deltagaren\",\"ZN1WLO\":\"Kopiera e-post\",\"y1eoq1\":\"Kopiera länk\",\"tUGbi8\":\"Kopiera mina uppgifter till:\",\"y22tv0\":\"Kopiera denna länk för att dela den var som helst\",\"/4gGIX\":\"Kopiera till urklipp\",\"e0f4yB\":\"Kunde inte ta bort plats\",\"vkiDx2\":\"Kunde inte förbereda massuppdateringen.\",\"KOavaU\":\"Kunde inte hämta adressuppgifter\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Kunde inte spara datum\",\"eeLExK\":\"Kunde inte spara plats\",\"P0rbCt\":\"Omslagsbild\",\"60u+dQ\":\"Omslagsbilden visas högst upp på din evenemangssida\",\"2NLjA6\":\"Omslagsbilden visas högst upp på din organisatörssida\",\"GkrqoY\":\"Täcker alla biljetter\",\"zg4oSu\":[\"Skapa mall för \",[\"0\"]],\"RKKhnW\":\"Skapa en anpassad widget för att sälja biljetter på din webbplats.\",\"6sk7PP\":\"Skapa ett fast antal\",\"PhioFp\":\"Skapa en ny incheckningslista för ett aktivt tillfälle, eller kontakta arrangören om du tror att detta är ett misstag.\",\"yIRev4\":\"Skapa ett lösenord\",\"j7xZ7J\":\"Skapa ytterligare arrangörer för att hantera separata varumärken, avdelningar eller evenemangsserier under ett konto. Varje arrangör har sina egna evenemang, inställningar och offentliga sida.\",\"xfKgwv\":\"Skapa partner\",\"tudG8q\":\"Skapa och konfigurera biljetter och produkter till försäljning.\",\"YAl9Hg\":\"Skapa konfiguration\",\"BTne9e\":\"Skapa anpassade e-postmallar för detta evenemang som åsidosätter organisatörens standardinställningar\",\"YIDzi/\":\"Skapa anpassad mall\",\"tsGqx5\":\"Skapa datum\",\"Nc3l/D\":\"Skapa rabatter, åtkomstkoder för dolda biljetter och specialerbjudanden.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Skapa för detta datum\",\"eWEV9G\":\"Skapa nytt lösenord\",\"wl2iai\":\"Skapa schema\",\"8AiKIu\":\"Skapa biljett eller produkt\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Skapa spårbar länk för att belöna partners som har delat till event.\",\"dkAPxi\":\"Skapa webhook\",\"5slqwZ\":\"Skapa ditt evenemang\",\"JQNMrj\":\"Skapa ditt första evenemang\",\"ZCSSd+\":\"Skapa ditt eget evenemang\",\"67NsZP\":\"Skapar evenemang...\",\"H34qcM\":\"Skapar organisatör...\",\"1YMS+X\":\"Skapar ditt evenemang, vänligen vänta\",\"yiy8Jt\":\"Skapar din organisatörsprofil, vänligen vänta\",\"lfLHNz\":\"CTA-text är obligatorisk\",\"0xLR6W\":\"För närvarande tilldelad\",\"iTvh6I\":\"För närvarande tillgänglig för köp\",\"A42Dqn\":\"Anpassad varumärkesprofil\",\"Guo0lU\":\"Anpassat datum och tid\",\"mimF6c\":\"Anpassat meddelande efter kassan\",\"WDMdn8\":\"Anpassade frågor\",\"O6mra8\":\"Anpassade frågor\",\"axv/Mi\":\"Anpassad mall\",\"2YeVGY\":\"Kundlänk kopierad till urklipp\",\"QMHSMS\":\"Kunden kommer att få ett e-postmeddelande som bekräftar återbetalningen\",\"L/Qc+w\":\"Kundens e-postadress\",\"wpfWhJ\":\"Kundens förnamn\",\"GIoqtA\":\"Kundens efternamn\",\"NihQNk\":\"Kunder\",\"7gsjkI\":\"Anpassa e-postmeddelanden som skickas till dina kunder med Liquid-mallar. Dessa mallar används som standard för alla evenemang i din organisation.\",\"xJaTUK\":\"Anpassa layout, färger och varumärkesprofil för ditt evenemangs startsida.\",\"MXZfGN\":\"Anpassa frågorna som ställs i kassan för att samla in viktig information från dina deltagare.\",\"iX6SLo\":\"Anpassa texten som visas på fortsätt-knappen\",\"pxNIxa\":\"Anpassa din e-postmall med Liquid-mallar\",\"3trPKm\":\"Anpassa utseendet på din organisatörssida\",\"U0sC6H\":\"Dagligen\",\"/gWrVZ\":\"Dagliga intäkter, skatter, avgifter och återbetalningar för alla evenemang\",\"zgCHnE\":\"Daglig försäljningsrapport\",\"nHm0AI\":\"Daglig sammanställning av försäljning, skatt och avgifter\",\"1aPnDT\":\"Dans\",\"pvnfJD\":\"Mörk\",\"MaB9wW\":\"Datumavbokning\",\"e6cAxJ\":\"Datum avbokat\",\"81jBnC\":\"Datum avbokat\",\"a/C/6R\":\"Datum skapat\",\"IW7Q+u\":\"Datum borttaget\",\"rngCAz\":\"Datum borttaget\",\"lnYE59\":\"Datum för evenemanget\",\"gnBreG\":\"Datum då ordern lades\",\"vHbfoQ\":\"Datum återaktiverat\",\"hvah+S\":\"Datum öppnat igen för ny försäljning\",\"Ez0YsD\":\"Datum uppdaterat\",\"VTsZuy\":\"Datum och tider hanteras på\",\"/ITcnz\":\"dag\",\"H7OUPr\":\"Dag\",\"JtHrX9\":\"Dag i månaden\",\"J/Upwb\":\"dagar\",\"vDVA2I\":\"Dagar i månaden\",\"rDLvlL\":\"Veckodagar\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Avböj\",\"ovBPCi\":\"Standard\",\"JtI4vj\":\"Standardinsamling av deltagarinformation\",\"ULjv90\":\"Standardkapacitet per datum\",\"3R/Tu2\":\"Standard avgiftshantering\",\"1bZAZA\":\"Standardmall kommer att användas\",\"HNlEFZ\":\"ta bort\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Ta bort \",[\"count\"],\" valda datum? Datum med beställningar hoppas över. Detta kan inte ångras.\"],\"vu7gDm\":\"Ta bort partner\",\"KZN4Lc\":\"Ta bort alla\",\"6EkaOO\":\"Ta bort datum\",\"io0G93\":\"Ta bort evenemang\",\"+jw/c1\":\"Ta bort bild\",\"hdyeZ0\":\"Ta bort jobb\",\"xxjZeP\":\"Ta bort plats\",\"sY3tIw\":\"Ta bort arrangör\",\"UBv8UK\":\"Ta bort permanent\",\"dPyJ15\":\"Ta bort mall\",\"mxsm1o\":\"Ta bort denna fråga? Detta kan inte ångras.\",\"snMaH4\":\"Ta bort webhook\",\"LIZZLY\":[\"Tog bort \",[\"0\"],\" datum\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Avmarkera alla\",\"NvuEhl\":\"Designelement\",\"H8kMHT\":\"Fick du inte koden?\",\"G8KNgd\":\"Annan plats\",\"E/QGRL\":\"Inaktiverad\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Stäng detta meddelande\",\"BREO0S\":\"Visa en kryssruta som låter kunder välja att ta emot marknadsföringskommunikation från denna organisatör.\",\"pfa8F0\":\"Visningsnamn\",\"Kdpf90\":\"Glöm inte!\",\"352VU2\":\"Har du inget konto? <0>Registrera dig\",\"AXXqG+\":\"Donation\",\"DPfwMq\":\"Klar\",\"JoPiZ2\":\"Instruktioner för entrépersonal\",\"2+O9st\":\"Ladda ner försäljnings-, deltagar- och finansiella rapporter för alla slutförda order.\",\"eneWvv\":\"Utkast\",\"Ts8hhq\":\"På grund av hög risk för spam måste du ansluta ett Stripe-konto innan du kan ändra e-postmallar. Detta säkerställer att alla evenemangsarrangörer är verifierade och ansvariga.\",\"TnzbL+\":\"På grund av den höga risken för spam måste du ansluta ett Stripe-konto innan du kan skicka meddelanden till deltagare.\\nDetta är för att säkerställa att alla evenemangsarrangörer är verifierade och ansvarsskyldiga.\",\"euc6Ns\":\"Duplicera\",\"YueC+F\":\"Duplicera datum\",\"KRmTkx\":\"Duplicera produkt\",\"Jd3ymG\":\"Varaktigheten måste vara minst 1 minut.\",\"KIjvtr\":\"Nederländska\",\"22xieU\":\"t.ex. 180 (3 timmar)\",\"/zajIE\":\"t.ex. Morgonpass\",\"SPKbfM\":\"t.ex. Köp biljetter, Registrera dig nu\",\"fc7wGW\":\"t.ex., viktiga uppdateringar gällande dina biljetter\",\"54MPqC\":\"t.ex. Standard, Premium, Enterprise\",\"3RQ81z\":\"Varje person kommer att få ett e-postmeddelande med en reserverad plats för att slutföra sitt köp.\",\"5oD9f/\":\"Tidigare\",\"LTzmgK\":[\"Redigera \",[\"0\"],\"-mall\"],\"v4+lcZ\":\"Redigera partner\",\"2iZEz7\":\"Redigera svar\",\"t2bbp8\":\"Redigera deltagare\",\"etaWtB\":\"Redigera deltagardetaljer\",\"+guao5\":\"Redigera konfiguration\",\"1Mp/A4\":\"Redigera datum\",\"m0ZqOT\":\"Redigera plats\",\"8oivFT\":\"Redigera plats\",\"vRWOrM\":\"Redigera orderdetaljer\",\"fW5sSv\":\"Redigera webhook\",\"nP7CdQ\":\"Redigera webhook\",\"MRZxAn\":\"Redigerad\",\"uBAxNB\":\"Redigerare\",\"aqxYLv\":\"Utbildning\",\"iiWXDL\":\"Behörighetsfel\",\"zPiC+q\":\"Giltiga incheckningslistor\",\"SiVstt\":\"E-post och schemalagda meddelanden\",\"V2sk3H\":\"E-post och mallar\",\"hbwCKE\":\"E-postadress kopierad till urklipp\",\"dSyJj6\":\"E-postadresserna matchar inte\",\"elW7Tn\":\"E-postinnehåll\",\"ZsZeV2\":\"E-post krävs\",\"Be4gD+\":\"Förhandsgranskning av e-post\",\"6IwNUc\":\"E-postmallar\",\"H/UMUG\":\"E-postverifiering krävs\",\"L86zy2\":\"E-post verifierad\",\"FSN4TS\":\"Bädda in widget\",\"z9NkYY\":\"Inbäddningsbar widget\",\"Qj0GKe\":\"Aktivera självservice för deltagare\",\"hEtQsg\":\"Aktivera självservice för deltagare som standard\",\"Upeg/u\":\"Aktivera denna mall för att skicka e-post\",\"7dSOhU\":\"Aktivera väntelista\",\"RxzN1M\":\"Aktiverad\",\"xDr/ct\":\"Slut\",\"sGjBEq\":\"Slutdatum och tid (valfritt)\",\"PKXt9R\":\"Slutdatum måste vara efter startdatum\",\"UmzbPa\":\"Slutdatum för tillfället\",\"ZayGC7\":\"Sluta på ett datum\",\"48Y16Q\":\"Sluttid (valfritt)\",\"jpNdOC\":\"Sluttid för tillfället\",\"TbaYrr\":[\"Slutade \",[\"0\"]],\"CFgwiw\":[\"Slutar \",[\"0\"]],\"SqOIQU\":\"Ange ett kapacitetsvärde eller välj obegränsat.\",\"h37gRz\":\"Ange en etikett eller välj att ta bort den.\",\"7YZofi\":\"Ange ämne och innehåll för att se förhandsgranskningen\",\"khyScF\":\"Ange en tid att förskjuta med.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Ange partnerns e-post (valfritt)\",\"ARkzso\":\"Ange partnernamn\",\"ej4L8b\":\"Ange kapacitet\",\"6KnyG0\":\"Ange e-postadress\",\"INDKM9\":\"Ange e-postämne...\",\"xUgUTh\":\"Ange förnamn\",\"9/1YKL\":\"Ange efternamn\",\"VpwcSk\":\"Ange nytt lösenord\",\"kWg31j\":\"Ange unik partnerkod\",\"C3nD/1\":\"Ange din e-postadress\",\"VmXiz4\":\"Ange din e-postadress så skickar vi instruktioner för att återställa ditt lösenord.\",\"n9V+ps\":\"Ange ditt namn\",\"IdULhL\":\"Ange ditt momsnummer inklusive landskod, utan mellanslag (t.ex. IE1234567A, DE123456789)\",\"o21Y+P\":\"poster\",\"X88/6w\":\"Poster visas här när kunder ansluter sig till väntelistan för slutsålda produkter.\",\"LslKhj\":\"Fel vid inläsning av loggar\",\"VCNHvW\":\"Evenemang arkiverat\",\"ZD0XSb\":\"Evenemanget har arkiverats\",\"WgD6rb\":\"Evenemangskategori\",\"b46pt5\":\"Omslagsbild för evenemang\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evenemang skapat\",\"1Hzev4\":\"Anpassad evenemangsmall\",\"7u9/DO\":\"Evenemanget har tagits bort\",\"imgKgl\":\"Evenemangsbeskrivning\",\"kJDmsI\":\"Evenemangsdetaljer\",\"m/N7Zq\":\"Evenemangets fullständiga adress\",\"Nl1ZtM\":\"Evenemangsplats\",\"PYs3rP\":\"Evenemangsnamn\",\"HhwcTQ\":\"Evenemangsnamn\",\"WZZzB6\":\"Evenemangsnamn krävs\",\"Wd5CDM\":\"Evenemangsnamnet måste vara kortare än 150 tecken\",\"4JzCvP\":\"Evenemanget är inte tillgängligt\",\"Gh9Oqb\":\"Evenemangsarrangörens namn\",\"mImacG\":\"Evenemangssida\",\"Hk9Ki/\":\"Evenemanget har återställts\",\"JyD0LH\":\"Evenemangsinställningar\",\"cOePZk\":\"Evenemangstid\",\"e8WNln\":\"Evenemangets tidszon\",\"GeqWgj\":\"Evenemangets tidszon\",\"XVLu2v\":\"Evenemangstitel\",\"OfmsI9\":\"Evenemang för nytt\",\"4SILkp\":\"Evenemangstotaler\",\"YDVUVl\":\"Evenemangstyper\",\"+HeiVx\":\"Evenemang uppdaterat\",\"4K2OjV\":\"Evenemangslokal\",\"19j6uh\":\"Evenemangens resultat\",\"PC3/fk\":\"Evenemang som startar inom 24 timmar\",\"nwiZdc\":[\"Varje \",[\"0\"]],\"2LJU4o\":[\"Var \",[\"0\"],\":e dag\"],\"yLiYx+\":[\"Var \",[\"0\"],\":e månad\"],\"nn9ice\":[\"Var \",[\"0\"],\":e vecka\"],\"Cdr8f9\":[\"Var \",[\"0\"],\":e vecka på \",[\"1\"]],\"GVEHRk\":[\"Var \",[\"0\"],\":e år\"],\"fTFfOK\":\"Varje e-postmall måste innehålla en uppmaningsknapp som länkar till rätt sida\",\"BVinvJ\":\"Exempel: \\\"Hur hörde du talas om oss?\\\", \\\"Företagsnamn för faktura\\\"\",\"2hGPQG\":\"Exempel: \\\"T-shirtstorlek\\\", \\\"Matpreferens\\\", \\\"Jobbtitel\\\"\",\"qNuTh3\":\"Undantag\",\"M1RnFv\":\"Utgånget\",\"kF8HQ7\":\"Exportera svar\",\"2KAI4N\":\"Exportera CSV\",\"JKfSAv\":\"Export misslyckades. Försök igen.\",\"SVOEsu\":\"Export startad. Förbereder fil...\",\"wuyaZh\":\"Export lyckades\",\"9bpUSo\":\"Exporterar partners\",\"jtrqH9\":\"Exporterar deltagare\",\"R4Oqr8\":\"Export klar. Laddar ner fil...\",\"UlAK8E\":\"Exporterar ordrar\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Misslyckades\",\"8uOlgz\":\"Misslyckades vid\",\"tKcbYd\":\"Misslyckade jobb\",\"SsI9v/\":\"Misslyckades med att avbryta ordern. Försök igen.\",\"LdPKPR\":\"Det gick inte att tilldela konfiguration\",\"PO0cfn\":\"Det gick inte att avboka datum\",\"YUX+f+\":\"Det gick inte att avboka datum\",\"SIHgVQ\":\"Det gick inte att avbryta meddelandet\",\"cEFg3R\":\"Misslyckades med att skapa partner\",\"dVgNF1\":\"Misslyckades med att skapa konfiguration\",\"fAoRRJ\":\"Det gick inte att skapa schema\",\"U66oUa\":\"Misslyckades med att skapa mall\",\"aFk48v\":\"Misslyckades med att ta bort konfiguration\",\"n1CYMH\":\"Det gick inte att ta bort datum\",\"KXv+Qn\":\"Det gick inte att ta bort datum. Det kan ha befintliga beställningar.\",\"JJ0uRo\":\"Det gick inte att ta bort datum\",\"rgoBnv\":\"Det gick inte att ta bort evenemanget\",\"Zw6LWb\":\"Misslyckades med att ta bort jobb\",\"tq0abZ\":\"Misslyckades med att ta bort jobb\",\"2mkc3c\":\"Det gick inte att ta bort arrangören\",\"vKMKnu\":\"Misslyckades med att ta bort frågan\",\"xFj7Yj\":\"Misslyckades med att ta bort mall\",\"jo3Gm6\":\"Misslyckades med att exportera partners\",\"Jjw03p\":\"Misslyckades med att exportera deltagare\",\"ZPwFnN\":\"Misslyckades med att exportera ordrar\",\"zGE3CH\":\"Misslyckades med att exportera rapport. Försök igen.\",\"lS9/aZ\":\"Kunde inte ladda mottagare\",\"X4o0MX\":\"Misslyckades med att läsa in webhook\",\"ETcU7q\":\"Kunde inte erbjuda plats\",\"5670b9\":\"Kunde inte erbjuda biljetter\",\"e5KIbI\":\"Det gick inte att återaktivera datum\",\"7zyx8a\":\"Det gick inte att ta bort från väntelistan\",\"A/P7PX\":\"Det gick inte att ta bort åsidosättning\",\"ogWc1z\":\"Det gick inte att öppna datumet igen\",\"0+iwE5\":\"Misslyckades med att ändra ordning på frågorna\",\"EJPAcd\":\"Misslyckades med att skicka orderbekräftelsen igen\",\"DjSbj3\":\"Misslyckades med att skicka biljetten igen\",\"YQ3QSS\":\"Misslyckades med att skicka verifieringskod igen\",\"wDioLj\":\"Misslyckades med att försöka igen\",\"DKYTWG\":\"Misslyckades med att försöka igen\",\"WRREqF\":\"Det gick inte att spara åsidosättning\",\"sj/eZA\":\"Det gick inte att spara prisåsidosättning\",\"780n8A\":\"Det gick inte att spara produktinställningar\",\"zTkTF3\":\"Misslyckades med att spara mall\",\"l6acRV\":\"Misslyckades med att spara momsinställningar. Försök igen.\",\"T6B2gk\":\"Misslyckades med att skicka meddelande. Försök igen.\",\"lKh069\":\"Misslyckades med att starta exportjobb\",\"t/KVOk\":\"Misslyckades med att starta impersonering. Försök igen.\",\"QXgjH0\":\"Misslyckades med att stoppa impersonering. Försök igen.\",\"i0QKrm\":\"Misslyckades med att uppdatera partner\",\"NNc33d\":\"Misslyckades med att uppdatera svar.\",\"E9jY+o\":\"Misslyckades med att uppdatera deltagare\",\"uQynyf\":\"Misslyckades med att uppdatera konfiguration\",\"i2PFQJ\":\"Det gick inte att uppdatera evenemangets status\",\"EhlbcI\":\"Misslyckades med att uppdatera meddelandenivå\",\"rpGMzC\":\"Misslyckades med att uppdatera order\",\"T2aCOV\":\"Det gick inte att uppdatera arrangörens status\",\"Eeo/Gy\":\"Misslyckades med att uppdatera inställning\",\"kqA9lY\":\"Det gick inte att uppdatera momsinställningar\",\"7/9RFs\":\"Misslyckades med att ladda upp bild.\",\"nkNfWu\":\"Misslyckades med att ladda upp bild. Försök igen.\",\"rxy0tG\":\"Misslyckades med att verifiera e-post\",\"QRUpCk\":\"Familj\",\"5LO38w\":\"Snabba utbetalningar till din bank\",\"4lgLew\":\"Februari\",\"9bHCo2\":\"Avgiftsvaluta\",\"/sV91a\":\"Hantering av avgifter\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Avgifter kringgås\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Filen är för stor. Maximal storlek är 5 MB.\",\"VejKUM\":\"Fyll i dina uppgifter ovan först\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filtrera deltagare\",\"8OvVZZ\":\"Filtrera deltagare\",\"N/H3++\":\"Filtrera efter datum\",\"mvrlBO\":\"Filtrera efter evenemang\",\"g+xRXP\":\"Slutför Stripe-konfigurationen\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"Första\",\"1vBhpG\":\"Första deltagare\",\"4pwejF\":\"Förnamn är obligatoriskt\",\"3lkYdQ\":\"Fast avgift\",\"6bBh3/\":\"Fast avgift\",\"zWqUyJ\":\"Fast avgift per transaktion\",\"LWL3Bs\":\"Fast avgift måste vara 0 eller högre\",\"0RI8m4\":\"Blixt av\",\"q0923e\":\"Blixt på\",\"lWxAUo\":\"Mat och dryck\",\"nFm+5u\":\"Sidfotstext\",\"a8nooQ\":\"Fjärde\",\"mob/am\":\"Fr\",\"wtuVU4\":\"Frekvens\",\"xVhQZV\":\"Fre\",\"39y5bn\":\"Fredag\",\"f5UbZ0\":\"Fullt dataägande\",\"MY2SVM\":\"Full återbetalning\",\"UsIfa8\":\"Fullständig upplöst adress\",\"PGQLdy\":\"framtida\",\"8N/j1s\":\"Endast framtida datum\",\"yRx/6K\":\"Framtida datum kopieras med kapacitet återställd till noll\",\"T02gNN\":\"Allmän entré\",\"3ep0Gx\":\"Allmän information om din arrangör\",\"ziAjHi\":\"Generera\",\"exy8uo\":\"Generera kod\",\"4CETZY\":\"Få vägbeskrivning\",\"pjkEcB\":\"Få betalt\",\"lGYzP6\":\"Få betalt med Stripe\",\"ZDIydz\":\"Sätt igång\",\"u6FPxT\":\"Köp biljetter\",\"8KDgYV\":\"Gör ditt evenemang redo\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Gå tillbaka\",\"oNL5vN\":\"Gå till evenemangssidan\",\"gHSuV/\":\"Gå till startsidan\",\"8+Cj55\":\"Gå till schema\",\"6nDzTl\":\"God läsbarhet\",\"76gPWk\":\"Uppfattat\",\"aGWZUr\":\"Bruttointäkter\",\"n8IUs7\":\"Bruttointäkter\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gästhantering\",\"NUsTc4\":\"Pågår nu\",\"kTSQej\":[\"Hej \",[\"0\"],\", hantera din plattform härifrån.\"],\"dORAcs\":\"Här är alla biljetter som är kopplade till din e-postadress.\",\"g+2103\":\"Här är din partnerlänk\",\"bVsnqU\":\"Hej,\",\"/iE8xx\":\"Hi.Events-avgift\",\"zppscQ\":\"Hi.Events plattformsavgifter och momsfördelning per transaktion\",\"D+zLDD\":\"Dold\",\"DRErHC\":\"Dold för deltagare – endast synlig för arrangörer\",\"NNnsM0\":\"Dölj avancerade alternativ\",\"P+5Pbo\":\"Dölj svar\",\"VMlRqi\":\"Dölj detaljer\",\"FmogyU\":\"Dölj alternativ\",\"gtEbeW\":\"Markera\",\"NF8sdv\":\"Markeringsmeddelande\",\"MXSqmS\":\"Markera denna produkt\",\"7ER2sc\":\"Markerad\",\"sq7vjE\":\"Markerade produkter får en annan bakgrundsfärg för att sticka ut på evenemangssidan.\",\"1+WSY1\":\"Hobbyer\",\"yY8wAv\":\"Timmar\",\"sy9anN\":\"Hur lång tid en kund har på sig att slutföra sitt köp efter att ha fått ett erbjudande. Lämna tomt för ingen tidsgräns.\",\"n2ilNh\":\"Hur länge pågår schemat?\",\"DMr2XN\":\"Hur ofta?\",\"AVpmAa\":\"Hur man betalar offline\",\"cceMns\":\"Hur moms tillämpas på de plattformsavgifter vi tar ut.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Ungerska\",\"8Wgd41\":\"Jag bekräftar mitt ansvar som personuppgiftsansvarig\",\"O8m7VA\":\"Jag godkänner att ta emot e-postmeddelanden relaterade till detta evenemang\",\"YLgdk5\":\"Jag bekräftar att detta är ett transaktionsmeddelande relaterat till detta evenemang\",\"4/kP5a\":\"Om en ny flik inte öppnades automatiskt, klicka på knappen nedan för att fortsätta till kassan.\",\"W/eN+G\":\"Om tomt kommer adressen att användas för att generera en Google Maps-länk\",\"iIEaNB\":\"Om du har ett konto hos oss kommer du att få ett e-postmeddelande med instruktioner för hur du återställer ditt lösenord.\",\"an5hVd\":\"Bilder\",\"tSVr6t\":\"Impersonera\",\"TWXU0c\":\"Impersonera användare\",\"5LAZwq\":\"Impersonering startad\",\"IMwcdR\":\"Impersonering stoppad\",\"0I0Hac\":\"Viktig information\",\"yD3avI\":\"Viktigt: Om du ändrar din e-postadress uppdateras länken för att komma åt denna order. Du kommer att omdirigeras till den nya orderlänken efter att du har sparat.\",\"jT142F\":[\"Om \",[\"diffHours\"],\" timmar\"],\"OoSyqO\":[\"Om \",[\"diffMinutes\"],\" minuter\"],\"PdMhEx\":[\"senaste \",[\"0\"],\" min\"],\"u7r0G5\":\"På plats — ange en plats\",\"Ip0hl5\":\"in_person, online, unset, eller mixed\",\"F1Xp97\":\"Enskilda deltagare\",\"85e6zs\":\"Infoga Liquid-token\",\"38KFY0\":\"Infoga variabel\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Direktutbetalningar via Stripe\",\"nbfdhU\":\"Integrationer\",\"I8eJ6/\":\"Interna anteckningar på biljetten\",\"B2Tpo0\":\"Ogiltig e-postadress\",\"5tT0+u\":\"Ogiltigt e-postformat\",\"f9WRpE\":\"Ogiltig filtyp. Ladda upp en bild.\",\"tnL+GP\":\"Ogiltig Liquid-syntax. Korrigera och försök igen.\",\"N9JsFT\":\"Ogiltigt format på momsregistreringsnummer\",\"g+lLS9\":\"Bjud in en teammedlem\",\"1z26sk\":\"Bjud in teammedlem\",\"KR0679\":\"Bjud in teammedlemmar\",\"aH6ZIb\":\"Bjud in ditt team\",\"IuMGvq\":\"Faktura\",\"Lj7sBL\":\"Italienska\",\"F5/CBH\":\"artikel(er)\",\"BzfzPK\":\"Artiklar\",\"rjyWPb\":\"Januari\",\"KmWyx0\":\"Jobb\",\"o5r6b2\":\"Jobb borttaget\",\"cd0jIM\":\"Jobbdetaljer\",\"ruJO57\":\"Jobbnamn\",\"YZi+Hu\":\"Jobb köat för nytt försök\",\"nCywLA\":\"Delta varifrån som helst\",\"SNzppu\":\"Gå med i väntelistan\",\"dLouFI\":[\"Gå med i väntelistan för \",[\"productDisplayName\"]],\"2gMuHR\":\"Ansluten\",\"u4ex5r\":\"Juli\",\"zeEQd/\":\"Juni\",\"MxjCqk\":\"Letar du bara efter dina biljetter?\",\"xOTzt5\":\"just nu\",\"0RihU9\":\"Just avslutat\",\"lB2hSG\":[\"Håll mig uppdaterad om nyheter och evenemang från \",[\"0\"]],\"ioFA9i\":\"Behåll vinsten.\",\"4Sffp7\":\"Etikett för tillfället\",\"o66QSP\":\"etikettuppdateringar\",\"RtKKbA\":\"Sista\",\"DruLRc\":\"Senaste 14 dagarna\",\"ve9JTU\":\"Efternamn är obligatoriskt\",\"h0Q9Iw\":\"Senaste svar\",\"gw3Ur5\":\"Senast utlöst\",\"FIq1Ba\":\"Senare\",\"xvnLMP\":\"Senaste incheckningar\",\"pzAivY\":\"Latitud för den upplösta platsen\",\"N5TErv\":\"Lämna tomt för obegränsat\",\"L/hDDD\":\"Lämna tomt för att tillämpa denna incheckningslista på alla tillfällen\",\"9Pf3wk\":\"Lämna på för att täcka varje biljett på evenemanget. Stäng av för att välja specifika biljetter.\",\"Hq2BzX\":\"Meddela dem om ändringen\",\"+uexiy\":\"Meddela dem om ändringarna\",\"exYcTF\":\"Bibliotek\",\"1njn7W\":\"Ljus\",\"1qY5Ue\":\"Länken har gått ut eller är ogiltig\",\"+zSD/o\":\"Länk till evenemangets startsida\",\"psosdY\":\"Länk till orderdetaljer\",\"6JzK4N\":\"Länk till biljett\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Länkar tillåtna\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Listvy\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Liveevenemang\",\"C33p4q\":\"Inlästa datum\",\"WdmJIX\":\"Laddar förhandsvisning...\",\"IoDI2o\":\"Laddar tokens...\",\"G3Ge9Z\":\"Läser in webhook-loggar...\",\"NFxlHW\":\"Laddar webhooks\",\"E0DoRM\":\"Plats borttagen\",\"NtLHT3\":\"Platsens formaterade adress\",\"h4vxDc\":\"Platsens latitud\",\"f2TMhR\":\"Platsens longitud\",\"lnCo2f\":\"Platsläge\",\"8pmGFk\":\"Platsnamn\",\"7w8lJU\":\"Plats sparad\",\"YsRXDD\":\"Plats uppdaterad\",\"A/kIva\":\"platsuppdateringar\",\"VppBoU\":\"Platser\",\"iG7KNr\":\"Logotyp\",\"vu7ZGG\":\"Logotyp och omslagsbild\",\"gddQe0\":\"Logotyp och omslagsbild för din arrangör\",\"TBEnp1\":\"Logotypen visas i sidhuvudet\",\"Jzu30R\":\"Logotypen visas på biljetten\",\"zKTMTg\":\"Longitud för den upplösta platsen\",\"PSRm6/\":\"Hitta mina biljetter\",\"yJFu/X\":\"Huvudkontor\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Hantera \",[\"0\"]],\"wZJfA8\":\"Hantera datum och tider för ditt återkommande evenemang\",\"RlzPUE\":\"Hantera på Stripe\",\"6NXJRK\":\"Hantera schema\",\"zXuaxY\":\"Hantera evenemangets väntelista, se statistik och erbjud biljetter till deltagare.\",\"BWTzAb\":\"Manuell\",\"g2npA5\":\"Manuellt erbjudande\",\"hg6l4j\":\"Mars\",\"pqRBOz\":\"Markera som validerad (admin-åsidosättning)\",\"2L3vle\":\"Max meddelanden / 24h\",\"Qp4HWD\":\"Max mottagare / meddelande\",\"3JzsDb\":\"Maj\",\"agPptk\":\"Medium\",\"xDAtGP\":\"Meddelande\",\"bECJqy\":\"Meddelande godkänt\",\"1jRD0v\":\"Meddela deltagare med specifika biljetter\",\"uQLXbS\":\"Meddelande avbrutet\",\"48rf3i\":\"Meddelandet får inte överstiga 5000 tecken\",\"ZPj0Q8\":\"Meddelandedetaljer\",\"Vjat/X\":\"Meddelande krävs\",\"0/yJtP\":\"Meddela orderägare med specifika produkter\",\"saG4At\":\"Meddelande schemalagt\",\"mFdA+i\":\"Meddelandenivå\",\"v7xKtM\":\"Meddelandenivå uppdaterad\",\"H9HlDe\":\"minuter\",\"agRWc1\":\"Minuter\",\"YYzBv9\":\"Må\",\"zz/Wd/\":\"Läge\",\"fpMgHS\":\"Mån\",\"hty0d5\":\"Måndag\",\"JbIgPz\":\"Monetära värden är ungefärliga totaler över alla valutor\",\"qvF+MT\":\"Övervaka och hantera misslyckade bakgrundsjobb\",\"kY2ll9\":\"månad\",\"HajiZl\":\"Månad\",\"+8Nek/\":\"Månadsvis\",\"1LkxnU\":\"Månadsmönster\",\"6jefe3\":\"månader\",\"f8jrkd\":\"mer\",\"JcD7qf\":\"Fler åtgärder\",\"w36OkR\":\"Mest visade evenemang (Senaste 14 dagarna)\",\"+Y/na7\":\"Flytta alla datum tidigare eller senare\",\"3DIpY0\":\"Flera platser\",\"g9cQCP\":\"Flera biljettyper\",\"GfaxEk\":\"Musik\",\"oVGCGh\":\"Mina biljetter\",\"8/brI5\":\"Namn krävs\",\"sFFArG\":\"Namnet måste vara kortare än 255 tecken\",\"sCV5Yc\":\"Evenemangets namn\",\"xxU3NX\":\"Nettointäkter\",\"7I8LlL\":\"Ny kapacitet\",\"n1GRql\":\"Ny etikett\",\"y0Fcpd\":\"Ny plats\",\"ArHT/C\":\"Nya registreringar\",\"uK7xWf\":\"Ny tid:\",\"veT5Br\":\"Nästa tillfälle\",\"WXtl5X\":[\"Nästa: \",[\"nextFormatted\"]],\"eWRECP\":\"Nattliv\",\"HSw5l3\":\"Nej, jag är en privatperson eller ett företag som inte är momsregistrerat\",\"VHfLAW\":\"Inga konton\",\"+jIeoh\":\"Inga konton hittades\",\"074+X8\":\"Inga aktiva webhooks\",\"zxnup4\":\"Inga affiliates att visa\",\"Dwf4dR\":\"Inga deltagarfrågor ännu\",\"th7rdT\":\"Inga deltagare att visa\",\"PKySlW\":\"Inga deltagare ännu för detta datum.\",\"/UC6qk\":\"Ingen attributionsdata hittades\",\"E2vYsO\":\"Stripe har inte rapporterat några funktioner än.\",\"amMkpL\":\"Ingen kapacitet\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Inga incheckningslistor tillgängliga för detta evenemang.\",\"wG+knX\":\"Inga incheckningar än\",\"+dAKxg\":\"Inga konfigurationer hittades\",\"LiLk8u\":\"Inga anslutningar tillgängliga\",\"eb47T5\":\"Ingen data hittades för de valda filtren. Prova att justera datumintervall eller valuta.\",\"lFVUyx\":\"Ingen datumspecifik incheckningslista\",\"I8mtzP\":\"Inga datum tillgängliga denna månad. Försök navigera till en annan månad.\",\"yDukIL\":\"Inga datum matchar de aktuella filtren.\",\"B7phdj\":\"Inga datum matchar dina filter\",\"/ZB4Um\":\"Inga datum matchar din sökning\",\"gEdNe8\":\"Inga datum schemalagda ännu\",\"27GYXJ\":\"Inga datum schemalagda.\",\"pZNOT9\":\"Inget slutdatum\",\"dW40Uz\":\"Inga evenemang hittades\",\"8pQ3NJ\":\"Inga evenemang startar inom de närmaste 24 timmarna\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Inga misslyckade jobb\",\"EpvBAp\":\"Ingen faktura\",\"XZkeaI\":\"Inga loggar hittades\",\"nrSs2u\":\"Inga meddelanden hittades\",\"Rj99yx\":\"Inga tillfällen tillgängliga\",\"IFU1IG\":\"Inga tillfällen detta datum\",\"OVFwlg\":\"Inga orderfrågor ännu\",\"EJ7bVz\":\"Inga ordrar hittades\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Inga beställningar ännu för detta datum.\",\"wUv5xQ\":\"Ingen arrangörsaktivitet de senaste 14 dagarna\",\"vLd1tV\":\"Ingen arrangörskontext tillgänglig.\",\"B7w4KY\":\"Inga andra arrangörer tillgängliga\",\"PChXMe\":\"Inga betalda beställningar\",\"6jYQGG\":\"Inga tidigare evenemang\",\"CHzaTD\":\"Inga populära evenemang de senaste 14 dagarna\",\"zK/+ef\":\"Inga produkter tillgängliga för val\",\"M1/lXs\":\"Inga produkter konfigurerade för detta evenemang.\",\"kY7XDn\":\"Inga produkter har väntelisteposter\",\"wYiAtV\":\"Inga nya kontoregistreringar\",\"UW90md\":\"Inga mottagare hittades\",\"QoAi8D\":\"Inget svar\",\"JeO7SI\":\"Inget svar\",\"EK/G11\":\"Inga svar ännu\",\"7J5OKy\":\"Inga sparade platser ännu\",\"wpCjcf\":\"Inga sparade platser ännu. De visas här när du skapar evenemang med adresser.\",\"mPdY6W\":\"Inga förslag\",\"3sRuiW\":\"Inga biljetter hittades\",\"k2C0ZR\":\"Inga kommande datum\",\"yM5c0q\":\"Inga kommande evenemang\",\"qpC74J\":\"Inga användare hittades\",\"8wgkoi\":\"Inga visade evenemang de senaste 14 dagarna\",\"Arzxc1\":\"Inga väntelisteposter\",\"n5vdm2\":\"Inga webhook-händelser har registrerats för denna endpoint ännu. Händelser visas här när de utlöses.\",\"4GhX3c\":\"Inga webhooks\",\"4+am6b\":\"Nej, stanna kvar här\",\"4JVMUi\":\"ej redigerad\",\"Itw24Q\":\"Ej incheckad\",\"x5+Lcz\":\"Inte incheckad\",\"8n10sz\":\"Inte behörig\",\"kLvU3F\":\"Meddela deltagare och stoppa försäljning\",\"t9QlBd\":\"November\",\"kAREMN\":\"Antal datum att skapa\",\"6u1B3O\":\"Tillfälle\",\"mmoE62\":\"Tillfälle avbokat\",\"UYWXdN\":\"Slutdatum för tillfället\",\"k7dZT5\":\"Sluttid för tillfället\",\"Opinaj\":\"Tillfällesetikett\",\"V9flmL\":\"Tillfällesschema\",\"NUTUUs\":\"sidan Tillfällesschema\",\"AT8UKD\":\"Startdatum för tillfället\",\"Um8bvD\":\"Starttid för tillfället\",\"Kh3WO8\":\"Tillfällessammanfattning\",\"byXCTu\":\"Tillfällen\",\"KATw3p\":\"Tillfällen (endast framtida)\",\"85rTR2\":\"Tillfällen kan konfigureras efter skapande\",\"dzQfDY\":\"Oktober\",\"BwJKBw\":\"av\",\"9h7RDh\":\"Erbjud\",\"EfK2O6\":\"Erbjud plats\",\"3sVRey\":\"Erbjud biljetter\",\"2O7Ybb\":\"Tidsgräns för erbjudande\",\"1jUg5D\":\"Erbjuden\",\"l+/HS6\":[\"Erbjudanden löper ut efter \",[\"timeoutHours\"],\" timmar.\"],\"lQgMLn\":\"Kontors- eller lokalnamn\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offlinebetalning\",\"nO3VbP\":[\"Till salu \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — ange anslutningsuppgifter\",\"LuZBbx\":\"Online och fysiskt\",\"IXuOqt\":\"Online och fysiskt — se schema\",\"w3DG44\":\"Online-anslutningsuppgifter\",\"WjSpu5\":\"Onlineevenemang\",\"TP6jss\":\"Anslutningsuppgifter för onlineevenemang\",\"NdOxqr\":\"Endast kontoadministratörer kan ta bort eller arkivera evenemang. Kontakta din kontoadministratör för hjälp.\",\"rnoDMF\":\"Endast kontoadministratörer kan ta bort eller arkivera arrangörer. Kontakta din kontoadministratör för hjälp.\",\"bU7oUm\":\"Skicka endast till ordrar med dessa statusar\",\"M2w1ni\":\"Endast synlig med kampanjkod\",\"y8Bm7C\":\"Öppna incheckning\",\"RLz7P+\":\"Öppna tillfälle\",\"cDSdPb\":\"Valfritt smeknamn som visas i väljare, t.ex. \\\"HQ Konferensrum\\\"\",\"HXMJxH\":\"Valfri text för friskrivningar, kontaktuppgifter eller tackmeddelanden, endast en rad\",\"L565X2\":\"alternativ\",\"8m9emP\":\"eller lägg till ett enstaka datum\",\"dSeVIm\":\"beställning\",\"c/TIyD\":\"Order och biljett\",\"H5qWhm\":\"Order avbruten\",\"b6+Y+n\":\"Order slutförd\",\"x4MLWE\":\"Orderbekräftelse\",\"CsTTH0\":\"Orderbekräftelsen skickades igen\",\"ppuQR4\":\"Order skapad\",\"0UZTSq\":\"Ordervaluta\",\"xtQzag\":\"Orderdetaljer\",\"HdmwrI\":\"Orderns e-postadress\",\"bwBlJv\":\"Orderns förnamn\",\"vrSW9M\":\"Ordern har avbrutits och återbetalats. Orderägaren har informerats.\",\"rzw+wS\":\"Beställningsinnehavare\",\"oI/hGR\":\"Order-ID\",\"Pc729f\":\"Ordern väntar på offlinebetalning\",\"F4NXOl\":\"Orderns efternamn\",\"RQCXz6\":\"Ordergränser\",\"SO9AEF\":\"Ordergräns satt\",\"5RDEEn\":\"Orderns språkregion\",\"vu6Arl\":\"Order markerad som betald\",\"sLbJQz\":\"Order hittades inte\",\"kvYpYu\":\"Order hittades inte\",\"i8VBuv\":\"Ordernummer\",\"eJ8SvM\":\"Ordernummer, köpdatum, köparens e-post\",\"FaPYw+\":\"Orderägare\",\"eB5vce\":\"Orderägare med en specifik produkt\",\"CxLoxM\":\"Orderägare med produkter\",\"DoH3fD\":\"Orderbetalning väntar\",\"UkHo4c\":\"Beställningsreferens\",\"EZy55F\":\"Order återbetalad\",\"6eSHqs\":\"Orderstatusar\",\"oW5877\":\"Ordersumma\",\"e7eZuA\":\"Order uppdaterad\",\"1SQRYo\":\"Order uppdaterades\",\"KndP6g\":\"Order-URL\",\"3NT0Ck\":\"Ordern avbröts\",\"V5khLm\":\"beställningar\",\"sd5IMt\":\"Slutförda beställningar\",\"5It1cQ\":\"Ordrar exporterade\",\"tlKX/S\":\"Beställningar som sträcker sig över flera datum kommer att flaggas för manuell granskning.\",\"UQ0ACV\":\"Totalt antal beställningar\",\"B/EBQv\":\"Ordrar:\",\"qtGTNu\":\"Naturliga konton\",\"ucgZ0o\":\"Organisation\",\"P/JHA4\":\"Arrangören har arkiverats\",\"S3CZ5M\":\"Arrangörens instrumentpanel\",\"GzjTd0\":\"Arrangören har tagits bort\",\"Uu0hZq\":\"Arrangörens e-post\",\"Gy7BA3\":\"Arrangörens e-postadress\",\"SQqJd8\":\"Arrangör hittades inte\",\"HF8Bxa\":\"Arrangören har återställts\",\"wpj63n\":\"Arrangörsinställningar\",\"o1my93\":\"Uppdatering av arrangörsstatus misslyckades. Försök igen senare\",\"rLHma1\":\"Arrangörsstatus uppdaterad\",\"LqBITi\":\"Arrangörens eller standardmall kommer att användas\",\"q4zH+l\":\"Arrangörer\",\"/IX/7x\":\"Övrigt\",\"RsiDDQ\":\"Andra listor (biljett ingår inte)\",\"aDfajK\":\"Utomhus\",\"qMASRF\":\"Utgående meddelanden\",\"iCOVQO\":\"Åsidosättning\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Åsidosätt pris\",\"cnVIpl\":\"Åsidosättning borttagen\",\"6/dCYd\":\"Översikt\",\"6WdDG7\":\"Sida\",\"8uqsE5\":\"Sidan är inte längre tillgänglig\",\"QkLf4H\":\"Sidans URL\",\"sF+Xp9\":\"Sidvisningar\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Betalda konton\",\"5F7SYw\":\"Delvis återbetalning\",\"fFYotW\":[\"Delvis återbetald: \",[\"0\"]],\"i8day5\":\"För över avgiften till köparen\",\"k4FLBQ\":\"För över till köparen\",\"Ff0Dor\":\"Tidigare\",\"BFjW8X\":\"Försenat\",\"xTPjSy\":\"Tidigare evenemang\",\"/l/ckQ\":\"Klistra in URL\",\"URAE3q\":\"Pausad\",\"4fL/V7\":\"Betala\",\"OZK07J\":\"Betala för att låsa upp\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Betalningsdatum\",\"ENEPLY\":\"Betalningsmetod\",\"8Lx2X7\":\"Betalning mottagen\",\"fx8BTd\":\"Betalningar är inte tillgängliga\",\"C+ylwF\":\"Utbetalningar\",\"UbRKMZ\":\"Väntar\",\"UkM20g\":\"Väntar på granskning\",\"dPYu1F\":\"Per deltagare\",\"mQV/nJ\":\"per min\",\"VlXNyK\":\"Per order\",\"hauDFf\":\"Per biljett\",\"mnF83a\":\"Procentuell avgift\",\"TNLuRD\":\"Procentavgift (%)\",\"MixU2P\":\"Procenttalet måste vara mellan 0 och 100\",\"MkuVAZ\":\"Procent av transaktionsbeloppet\",\"/Bh+7r\":\"Prestanda\",\"fIp56F\":\"Ta bort detta evenemang och alla tillhörande data permanent.\",\"nJeeX7\":\"Ta bort denna arrangör och alla dess evenemang permanent.\",\"wfCTgK\":\"Ta bort detta datum permanent\",\"6kPk3+\":\"Personlig information\",\"zmwvG2\":\"Telefon\",\"SdM+Q1\":\"Välj en plats\",\"tSR/oe\":\"Välj ett slutdatum\",\"e8kzpp\":\"Välj minst en dag i månaden\",\"35C8QZ\":\"Välj minst en veckodag\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Lagd\",\"wBJR8i\":\"Planerar du ett evenemang?\",\"J3lhKT\":\"Plattformsavgift\",\"RD51+P\":[\"Plattformsavgift på \",[\"0\"],\" dras från din utbetalning\"],\"br3Y/y\":\"Plattformsavgifter\",\"3buiaw\":\"Plattformsavgiftsrapport\",\"kv9dM4\":\"Plattformsintäkter\",\"PJ3Ykr\":\"Kontrollera din biljett för den uppdaterade tiden. Dina biljetter är fortfarande giltiga — ingen åtgärd behövs om inte de nya tiderna inte fungerar för dig. Svara på detta e-postmeddelande om du har några frågor.\",\"OtjenF\":\"Vänligen ange en giltig e-postadress\",\"jEw0Mr\":\"Ange en giltig URL\",\"n8+Ng/\":\"Ange den femsiffriga koden\",\"r+lQXT\":\"Ange ditt momsregistreringsnummer\",\"Dvq0wf\":\"Vänligen tillhandahåll en bild.\",\"2cUopP\":\"Starta om kassaprocessen.\",\"GoXxOA\":\"Välj ett datum och en tid\",\"8KmsFa\":\"Välj ett datumintervall\",\"EFq6EG\":\"Välj en bild.\",\"fuwKpE\":\"Försök igen.\",\"klWBeI\":\"Vänta innan du begär en ny kod\",\"hfHhaa\":\"Vänta medan vi förbereder dina affiliates för export...\",\"o+tJN/\":\"Vänta medan vi förbereder dina deltagare för export...\",\"+5Mlle\":\"Vänta medan vi förbereder dina ordrar för export...\",\"trnWaw\":\"Polska\",\"luHAJY\":\"Populära evenemang (Senaste 14 dagarna)\",\"p/78dY\":\"Position\",\"TjX7xL\":\"Meddelande efter checkout\",\"OESu7I\":\"Förhindra översäljning genom att dela lager mellan flera biljett­typer.\",\"NgVUL2\":\"Förhandsgranska kassaflödet\",\"cs5muu\":\"Förhandsgranska evenemangssidan\",\"+4yRWM\":\"Biljettens pris\",\"Jm2AC3\":\"Prisnivå\",\"a5jvSX\":\"Prisnivåer\",\"ReihZ7\":\"Utskriftsförhandsgranskning\",\"JnuPvH\":\"Skriv ut biljett\",\"tYF4Zq\":\"Skriv ut till PDF\",\"LcET2C\":\"Integritetspolicy\",\"8z6Y5D\":\"Genomför återbetalning\",\"JcejNJ\":\"Behandlar order\",\"EWCLpZ\":\"Produkt skapad\",\"XkFYVB\":\"Produkt borttagen\",\"YMwcbR\":\"Produktförsäljning, intäkter och skattefördelning\",\"ls0mTC\":\"Produktinställningar kan inte redigeras för avbokade datum.\",\"2339ej\":\"Produktinställningar sparade\",\"ldVIlB\":\"Produkt uppdaterad\",\"CP3D8G\":\"Förlopp\",\"JoKGiJ\":\"Kampanjkod\",\"k3wH7i\":\"Användning av kampanjkoder och rabattfördelning\",\"tZqL0q\":\"kampanjkoder\",\"oCHiz3\":\"Kampanjkoder\",\"uEhdRh\":\"Endast kampanj\",\"dLm8V5\":\"Marknadsföringsmejl kan leda till att kontot stängs av\",\"XoEWtl\":\"Ange minst ett adressfält för den nya platsen.\",\"2W/7Gz\":\"Tillhandahåll följande före Stripes nästa granskning för att hålla utbetalningarna igång.\",\"aemBRq\":\"Leverantör\",\"EEYbdt\":\"Publicera\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Köpt\",\"JunetL\":\"Köpare\",\"phmeUH\":\"Köparens e-post\",\"ywR4ZL\":\"QR-kodsincheckning\",\"oWXNE5\":\"Ant.\",\"biEyJ4\":\"Svar\",\"k/bJj0\":\"Frågorna ordnades om\",\"b24kPi\":\"Kö\",\"lTPqpM\":\"Snabbtips\",\"fqDzSu\":\"Sats\",\"mnUGVC\":\"Hastighetsgränsen har överskridits. Försök igen senare.\",\"t41hVI\":\"Erbjud plats igen\",\"TNclgc\":\"Återaktivera detta datum? Det kommer att öppnas igen för framtida försäljning.\",\"uqoRbb\":\"Realtidsanalys\",\"xzRvs4\":[\"Ta emot produktuppdateringar från \",[\"0\"],\".\"],\"pLXbi8\":\"Senaste kontoregistreringar\",\"3kJ0gv\":\"Senaste deltagare\",\"qhfiwV\":\"Senaste incheckningar\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Senaste ordrar\",\"7hPBBn\":\"mottagare\",\"jp5bq8\":\"mottagare\",\"yPrbsy\":\"Mottagare\",\"E1F5Ji\":\"Mottagare är tillgängliga efter att meddelandet har skickats\",\"wuhHPE\":\"Återkommande\",\"asLqwt\":\"Återkommande evenemang\",\"D0tAMe\":\"Återkommande evenemang\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Omdirigerar till Stripe...\",\"pnoTN5\":\"Hänvisade konton\",\"ACKu03\":\"Uppdatera förhandsgranskning\",\"vuFYA6\":\"Återbetala alla beställningar för dessa datum\",\"4cRUK3\":\"Återbetala alla beställningar för detta datum\",\"fKn/k6\":\"Återbetalningsbelopp\",\"qY4rpA\":\"Återbetalning misslyckades\",\"TspTcZ\":\"Återbetalning utfärdad\",\"FaK/8G\":[\"Återbetala order \",[\"0\"]],\"MGbi9P\":\"Återbetalning väntar\",\"BDSRuX\":[\"Återbetald: \",[\"0\"]],\"bU4bS1\":\"Återbetalningar\",\"rYXfOA\":\"Regionala inställningar\",\"5tl0Bp\":\"Registreringsfrågor\",\"ZNo5k1\":\"Återstår\",\"EMnuA4\":\"Påminnelse schemalagd\",\"Bjh87R\":\"Ta bort etikett från alla datum\",\"KkJtVK\":\"Öppna igen för ny försäljning\",\"XJwWJp\":\"Öppna detta datum igen för ny försäljning? Tidigare avbokade biljetter kommer inte att återställas — berörda deltagare förblir avbokade och redan utfärdade återbetalningar återställs inte.\",\"bAwDQs\":\"Upprepa var\",\"CQeZT8\":\"Rapporten hittades inte\",\"JEPMXN\":\"Begär en ny länk\",\"TMLAx2\":\"Obligatorisk\",\"mdeIOH\":\"Skicka koden igen\",\"sQxe68\":\"Skicka bekräftelse igen\",\"bxoWpz\":\"Skicka bekräftelsemail igen\",\"G42SNI\":\"Skicka e-post igen\",\"TTpXL3\":[\"Skicka igen om \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Skicka biljett igen\",\"Uwsg2F\":\"Reserverad\",\"8wUjGl\":\"Reserverad till\",\"a5z8mb\":\"Återställ till grundpris\",\"kCn6wb\":\"Återställer...\",\"404zLK\":\"Upplöst plats eller lokalnamn\",\"ZlCDf+\":\"Svar\",\"bsydMp\":\"Svarsdetaljer\",\"yKu/3Y\":\"Återställ\",\"RokrZf\":\"Återställ evenemang\",\"/JyMGh\":\"Återställ arrangör\",\"HFvFRb\":\"Återställ detta evenemang för att göra det synligt igen.\",\"DDIcqy\":\"Återställ denna arrangör och gör den aktiv igen.\",\"mO8KLE\":\"resultat\",\"6gRgw8\":\"Försök igen\",\"1BG8ga\":\"Försök alla igen\",\"rDC+T6\":\"Försök jobb igen\",\"CbnrWb\":\"Tillbaka till evenemanget\",\"mdQ0zb\":\"Återanvändbara lokaler för dina evenemang. Platser som skapats från autoifyllningen sparas här automatiskt.\",\"XFOPle\":\"Återanvänd\",\"1Zehp4\":\"Återanvänd en Stripe-anslutning från en annan arrangör i detta konto.\",\"Oo/PLb\":\"Sammanfattning av intäkter\",\"O/8Ceg\":\"Intäkter idag\",\"CfuueU\":\"Återkalla erbjudande\",\"RIgKv+\":\"Kör till ett specifikt datum\",\"JYRqp5\":\"Lö\",\"dFFW9L\":[\"Försäljningen avslutades \",[\"0\"]],\"loCKGB\":[\"Försäljningen avslutas \",[\"0\"]],\"wlfBad\":\"Försäljningsperiod\",\"qi81Jg\":\"Försäljningsperiodens datum gäller för alla datum i ditt schema. För att kontrollera prissättning och tillgänglighet för enskilda datum, använd åsidosättningarna på <0>sidan Tillfällesschema.\",\"5CDM6r\":\"Försäljningsperiod angiven\",\"ftzaMf\":\"Försäljningsperiod, ordergränser, synlighet\",\"zpekWp\":[\"Försäljningen startar \",[\"0\"]],\"mUv9U4\":\"Försäljning\",\"9KnRdL\":\"Försäljningen är pausad\",\"JC3J0k\":\"Försäljning, närvaro och incheckningsuppdelning per tillfälle\",\"3VnlS9\":\"Försäljning, ordrar och prestandamått för alla evenemang\",\"3Q1AWe\":\"Försäljning:\",\"LeuERW\":\"Samma som evenemanget\",\"B4nE3N\":\"Exempel på biljettpris\",\"8BRPoH\":\"Exempelplats\",\"PiK6Ld\":\"Lör\",\"+5kO8P\":\"Lördag\",\"zJiuDn\":\"Spara avgiftsåsidosättning\",\"NB8Uxt\":\"Spara schema\",\"KZrfYJ\":\"Spara sociala länkar\",\"9Y3hAT\":\"Spara mall\",\"C8ne4X\":\"Spara biljettlayout\",\"cTI8IK\":\"Spara momsinställningar\",\"6/TNCd\":\"Spara momsinställningar\",\"4RvD9q\":\"Sparad plats\",\"cgw0cL\":\"Sparade platser\",\"lvSrsT\":\"Sparade platser\",\"Fbqm/I\":\"Att spara en åsidosättning skapar en dedikerad konfiguration för denna arrangör om den för närvarande är på systemstandard.\",\"I+FvbD\":\"Skanna\",\"0zd6Nm\":\"Skanna en biljett för att checka in en deltagare\",\"bQG7Qk\":\"Skannade biljetter visas här\",\"WDYSLJ\":\"Skannerläge\",\"gmB6oO\":\"Schema\",\"j6NnBq\":\"Schema skapat\",\"YP7frt\":\"Schemat slutar\",\"QS1Nla\":\"Schemalägg för senare\",\"NAzVVw\":\"Schemalägg meddelande\",\"Fz09JP\":\"Schemat börjar den\",\"4ba0NE\":\"Schemalagd\",\"qcP/8K\":\"Schemalagd tid\",\"A1taO8\":\"Sök\",\"ftNXma\":\"Sök affiliates...\",\"VMU+zM\":\"Sök deltagare\",\"VY+Bdn\":\"Sök på kontonamn eller e-post...\",\"VX+B3I\":\"Sök på evenemangstitel eller arrangör...\",\"R0wEyA\":\"Sök efter jobbnamn eller undantag...\",\"VT+urE\":\"Sök efter namn eller e-post...\",\"GHdjuo\":\"Sök på namn, e-post eller konto...\",\"4mBFO7\":\"Sök på namn, order-nr, biljett-nr eller e-post\",\"20ce0U\":\"Sök på order-ID, kundnamn eller e-post...\",\"4DSz7Z\":\"Sök efter ämne, evenemang eller konto...\",\"nQC7Z9\":\"Sök datum...\",\"iRtEpV\":\"Sök datum…\",\"JRM7ao\":\"Sök efter en adress\",\"BWF1kC\":\"Sök meddelanden...\",\"3aD3GF\":\"Säsongsbetonat\",\"ku//5b\":\"Andra\",\"Mck5ht\":\"Säker kassa\",\"s7tXqF\":\"Se schema\",\"JFap6u\":\"Se vad Stripe behöver\",\"p7xUrt\":\"Välj en kategori\",\"hTKQwS\":\"Välj ett datum och en tid\",\"e4L7bF\":\"Välj ett meddelande för att visa dess innehåll\",\"zPRPMf\":\"Välj en nivå\",\"uqpVri\":\"Välj en tid\",\"BFRSTT\":\"Välj konto\",\"wgNoIs\":\"Välj alla\",\"mCB6Je\":\"Välj alla\",\"aCEysm\":[\"Välj alla på \",[\"0\"]],\"a6+167\":\"Välj ett evenemang\",\"CFbaPk\":\"Välj deltagargrupp\",\"88a49s\":\"Välj kamera\",\"tVW/yo\":\"Välj valuta\",\"SJQM1I\":\"Välj datum\",\"n9ZhRa\":\"Välj slutdatum och tid\",\"gTN6Ws\":\"Välj sluttid\",\"0U6E9W\":\"Välj evenemangskategori\",\"j9cPeF\":\"Välj evenemangstyper\",\"ypTjHL\":\"Välj tillfälle\",\"KizCK7\":\"Välj startdatum och tid\",\"dJZTv2\":\"Välj starttid\",\"x8XMsJ\":\"Välj meddelandenivå för detta konto. Detta styr meddelandegränser och länkbehörigheter.\",\"aT3jZX\":\"Välj tidszon\",\"TxfvH2\":\"Välj vilka deltagare som ska få detta meddelande\",\"Ropvj0\":\"Välj vilka evenemang som ska utlösa denna webhook\",\"+6YAwo\":\"valda\",\"ylXj1N\":\"Vald\",\"uq3CXQ\":\"Sälj slut ditt evenemang.\",\"j9b/iy\":\"Säljer snabbt 🔥\",\"73qYgo\":\"Skicka som test\",\"HMAqFK\":\"Skicka e-post till deltagare, biljettinnehavare eller orderägare. Meddelanden kan skickas omedelbart eller schemaläggas för senare.\",\"22Itl6\":\"Skicka en kopia till mig\",\"NpEm3p\":\"Skicka nu\",\"nOBvex\":\"Skicka order- och deltagardata i realtid till dina externa system.\",\"1lNPhX\":\"Skicka e-postmeddelande om återbetalning\",\"eaUTwS\":\"Skicka återställningslänk\",\"5cV4PY\":\"Skicka till alla tillfällen, eller välj ett specifikt\",\"QEQlnV\":\"Skicka ditt första meddelande\",\"3nMAVT\":\"Skickas om 2d 4h\",\"IoAuJG\":\"Skickar...\",\"h69WC6\":\"Skickat\",\"BVu2Hz\":\"Skickat av\",\"ZFa8wv\":\"Skickas till deltagare när ett schemalagt datum avbokas\",\"SPdzrs\":\"Skickas till kunder när de lägger en order\",\"LxSN5F\":\"Skickas till varje deltagare med deras biljettuppgifter\",\"hgvbYY\":\"September\",\"5sN96e\":\"Tillfälle avbokat\",\"89xaFU\":\"Ange standardinställningar för plattformsavgifter för nya evenemang som skapas under denna arrangör.\",\"eXssj5\":\"Ange standardinställningar för nya evenemang som skapas under denna arrangör.\",\"uPe5p8\":\"Ange hur länge varje datum varar\",\"xNsRxU\":\"Ange antal datum\",\"ODuUEi\":\"Ange eller rensa datumetiketten\",\"buHACR\":\"Ställ in sluttiden för varje datum så att den är så här lång efter starttiden.\",\"TaeFgl\":\"Ställ in på obegränsat (ta bort gräns)\",\"pd6SSe\":\"Ställ in ett återkommande schema för att automatiskt skapa datum, eller lägg till dem ett i taget.\",\"s0FkEx\":\"Skapa incheckningslistor för olika entréer, pass eller dagar.\",\"TaWVGe\":\"Konfigurera utbetalningar\",\"gzXY7l\":\"Ställ in schema\",\"xMO+Ao\":\"Konfigurera din organisation\",\"h/9JiC\":\"Ställ in ditt schema\",\"ETC76A\":\"Ange, ändra eller ta bort tillfällets plats eller onlineuppgifter\",\"C3htzi\":\"Inställningen uppdaterades\",\"Ohn74G\":\"Konfiguration och design\",\"1W5XyZ\":\"Installationen tar bara några minuter — du behöver inget befintligt Stripe-konto. Stripe hanterar kort, plånböcker, regionala betalningsmetoder och bedrägeriskydd så att du kan fokusera på ditt evenemang.\",\"GG7qDw\":\"Dela affiliate-länk\",\"hL7sDJ\":\"Dela arrangörssida\",\"jy6QDF\":\"Delad kapacitetshantering\",\"jDNHW4\":\"Förskjut tider\",\"tPfIaW\":[\"Förskjöt tider för \",[\"count\"],\" datum\"],\"WwlM8F\":\"Visa avancerade alternativ\",\"cMW+gm\":[\"Visa alla plattformar (\",[\"0\"],\" till med värden)\"],\"wXi9pZ\":\"Visa anteckningar för ej inloggad personal\",\"UVPI5D\":\"Visa färre plattformar\",\"Eu/N/d\":\"Visa kryssruta för samtycke till marknadsföring\",\"SXzpzO\":\"Visa kryssruta för samtycke till marknadsföring som standard\",\"57tTk5\":\"Visa fler datum\",\"b33PL9\":\"Visa fler plattformar\",\"Eut7p9\":\"Visa orderdetaljer för ej inloggad personal\",\"+RoWKN\":\"Visa svar för ej inloggad personal\",\"t1LIQW\":[\"Visar \",[\"0\"],\" av \",[\"totalRows\"],\" poster\"],\"E717U9\":[\"Visar \",[\"0\"],\"–\",[\"1\"],\" av \",[\"2\"]],\"5rzhBQ\":[\"Visar \",[\"MAX_VISIBLE\"],\" av \",[\"totalAvailable\"],\" datum. Skriv för att söka.\"],\"WSt3op\":[\"Visar de första \",[\"0\"],\" — de återstående \",[\"1\"],\" tillfällena kommer fortfarande att inkluderas när meddelandet skickas.\"],\"OJLTEL\":\"Visas för personalen första gången de öppnar sidan.\",\"jVRHeq\":\"Registrerad\",\"5C7J+P\":\"Enskilt evenemang\",\"E//btK\":\"Hoppa över manuellt redigerade datum\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Socialt\",\"d0rUsW\":\"Sociala länkar\",\"j/TOB3\":\"Sociala länkar och webbplats\",\"s9KGXU\":\"Sålda\",\"iACSrw\":\"Vissa uppgifter är dolda för allmän åtkomst. Logga in för att se allt.\",\"KTxc6k\":\"Något gick fel, försök igen eller kontakta supporten om problemet kvarstår\",\"lkE00/\":\"Något gick fel. Försök igen senare.\",\"wdxz7K\":\"Källa\",\"fDG2by\":\"Andlighet\",\"oPaRES\":\"Dela upp incheckning per dag, område eller biljettyp. Dela länken med personalen — inget konto behövs.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Instruktioner för personal\",\"tXkhj/\":\"Start\",\"JcQp9p\":\"Startdatum och tid\",\"0m/ekX\":\"Startdatum och tid\",\"izRfYP\":\"Startdatum är obligatoriskt\",\"tuO4fV\":\"Startdatum för tillfället\",\"2R1+Rv\":\"Evenemangets starttid\",\"2Olov3\":\"Starttid för tillfället\",\"n9ZrDo\":\"Börja skriva en lokal eller adress...\",\"qeFVhN\":[\"Börjar om \",[\"diffDays\"],\" dagar\"],\"AOqtxN\":[\"Börjar om \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Börjar om \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Börjar om \",[\"seconds\"],\"s\"],\"NqChgF\":\"Börjar imorgon\",\"2NbyY/\":\"Statistik\",\"GVUxAX\":\"Statistiken baseras på kontots skapandedatum\",\"29Hx9U\":\"Statistik\",\"5ia+r6\":\"Behövs fortfarande\",\"wuV0bK\":\"Sluta impersonera\",\"s/KaDb\":\"Stripe anslutet\",\"Bk06QI\":\"Stripe anslutet\",\"akZMv8\":[\"Stripe-anslutning kopierad från \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe returnerade ingen installationslänk. Försök igen.\",\"aKtF0O\":\"Stripe ej ansluten\",\"9i0++A\":\"Stripe betalnings-ID\",\"R1lIMV\":\"Stripe kommer snart att behöva några fler uppgifter\",\"FzcCHA\":\"Stripe guidar dig genom några snabba frågor för att slutföra installationen.\",\"eYbd7b\":\"Sö\",\"ii0qn/\":\"Ämne är obligatoriskt\",\"M7Uapz\":\"Ämnet visas här\",\"6aXq+t\":\"Ämne:\",\"JwTmB6\":\"Produkten duplicerades\",\"WUOCgI\":\"Plats erbjuden framgångsrikt\",\"IvxA4G\":[\"Biljetter har erbjudits till \",[\"count\"],\" personer\"],\"kKpkzy\":\"Biljetter har erbjudits till 1 person\",\"Zi3Sbw\":\"Borttagen från väntelistan\",\"RuaKfn\":\"Adressen uppdaterades\",\"kzx0uD\":\"Standardinställningarna för evenemang uppdaterades\",\"5n+Wwp\":\"Arrangören uppdaterades\",\"DMCX/I\":\"Standardinställningar för plattformsavgifter uppdaterades\",\"URUYHc\":\"Inställningar för plattformsavgifter uppdaterades\",\"0Dk/l8\":\"SEO-inställningarna uppdaterades\",\"S8Tua9\":\"Inställningar uppdaterade\",\"MhOoLQ\":\"Sociala länkar uppdaterades\",\"CNSSfp\":\"Spårningsinställningar uppdaterade\",\"kj7zYe\":\"Webhooken uppdaterades\",\"dXoieq\":\"Sammanfattning\",\"/RfJXt\":[\"Sommarens musikfestival \",[\"0\"]],\"CWOPIK\":\"Sommarens musikfestival 2025\",\"D89zck\":\"Sön\",\"DBC3t5\":\"Söndag\",\"UaISq3\":\"Svenska\",\"JZTQI0\":\"Byt arrangör\",\"9YHrNC\":\"Systemstandard\",\"lruQkA\":\"Tryck på skärmen för att fortsätta skanna\",\"TJUrME\":[\"Riktar sig till deltagare över \",[\"0\"],\" valda tillfällen.\"],\"yT6dQ8\":\"Insamlad moms grupperad efter momstyp och evenemang\",\"Ye321X\":\"Momsnamn\",\"WyCBRt\":\"Momssammanfattning\",\"GkH0Pq\":\"Moms och avgifter tillämpade\",\"Rwiyt2\":\"Moms konfigurerad\",\"iQZff7\":\"Moms, avgifter, synlighet, försäljningsperiod, produktmarkering och ordergränser\",\"SXvRWU\":\"Teamsamarbete\",\"vlf/In\":\"Teknik\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Berätta vad man kan förvänta sig på ditt evenemang\",\"NiIUyb\":\"Berätta om ditt evenemang\",\"DovcfC\":\"Berätta om din organisation. Denna information kommer att visas på dina evenemangssidor.\",\"69GWRq\":\"Berätta hur ofta ditt evenemang upprepas så skapar vi alla datum åt dig.\",\"mXPbwY\":\"Berätta din momsregistreringsstatus så vi tillämpar rätt momsbehandling på plattformsavgifter.\",\"7wtpH5\":\"Mall aktiv\",\"QHhZeE\":\"Mallen skapades\",\"xrWdPR\":\"Mallen togs bort\",\"G04Zjt\":\"Mallen sparades\",\"xowcRf\":\"Användarvillkor\",\"6K0GjX\":\"Texten kan vara svår att läsa\",\"u0F1Ey\":\"To\",\"nm3Iz/\":\"Tack för att du deltog!\",\"pYwj0k\":\"Tack,\",\"k3IitN\":\"Det var det\",\"KfmPRW\":\"Sidans bakgrundsfärg. När en omslagsbild används appliceras detta som en överlagring.\",\"MDNyJz\":\"Koden går ut om 10 minuter. Kontrollera skräpposten om du inte ser mejlet.\",\"AIF7J2\":\"Valutan i vilken den fasta avgiften definieras. Den kommer att konverteras till ordervalutan vid kassan.\",\"MJm4Tq\":\"Orderns valuta\",\"cDHM1d\":\"E-postadressen har ändrats. Deltagaren kommer att få en ny biljett till den uppdaterade e-postadressen.\",\"I/NNtI\":\"Evenemangets plats\",\"tXadb0\":\"Evenemanget du letar efter är inte tillgängligt just nu. Det kan ha tagits bort, löpt ut eller så kan webbadressen vara felaktig.\",\"5fPdZe\":\"Det första datumet som detta schema kommer att genereras från.\",\"EBzPwC\":\"Evenemangets fullständiga adress\",\"sxKqBm\":\"Hela orderbeloppet kommer att återbetalas till kundens ursprungliga betalningsmetod.\",\"KgDp6G\":\"Länken du försöker öppna har gått ut eller är inte längre giltig. Kontrollera din e-post efter en uppdaterad länk för att hantera din order.\",\"5OmEal\":\"Kundens språk och region\",\"Np4eLs\":[\"Maxgränsen är \",[\"MAX_PREVIEW\"],\" tillfällen. Minska datumintervallet, frekvensen eller antalet tillfällen per dag.\"],\"sYLeDq\":\"Arrangören du letar efter kunde inte hittas. Sidan kan ha flyttats, tagits bort eller så kan webbadressen vara felaktig.\",\"PCr4zw\":\"Åsidosättningen registreras i orderns granskningslogg.\",\"C4nQe5\":\"Plattformsavgiften läggs på biljettpriset. Köpare betalar mer, men du får hela biljettpriset.\",\"HxxXZO\":\"Den primära varumärkesfärgen som används för knappar och markeringar\",\"z0KrIG\":\"Den schemalagda tiden är obligatorisk\",\"EWErQh\":\"Den schemalagda tiden måste vara i framtiden\",\"UNd0OU\":[\"Tillfället för \\\"\",[\"title\"],\"\\\" som ursprungligen var planerat till \",[\"0\"],\" har flyttats.\"],\"DEcpfp\":\"Mallens brödtext innehåller ogiltig Liquid-syntax. Rätta den och försök igen.\",\"injXD7\":\"Momsnumret kunde inte valideras. Kontrollera numret och försök igen.\",\"A4UmDy\":\"Teater\",\"tDwYhx\":\"Tema och färger\",\"O7g4eR\":\"Det finns inga kommande datum för detta evenemang\",\"HrIl0p\":[\"Det finns ingen incheckningslista kopplad till detta datum. Listan \\\"\",[\"0\"],\"\\\" checkar in deltagare över alla datum — personal som skannar en biljett för ett annat datum kommer fortfarande att lyckas.\"],\"dt3TwA\":\"Detta är standardpriser och kvantiteter över alla datum. Försäljningsdatum för nivåer gäller globalt. Du kan åsidosätta priser och kvantiteter för enskilda datum på <0>sidan Tillfällesschema.\",\"062KsE\":\"Dessa uppgifter visas på deltagarens biljett och ordersammanfattning endast för detta datum.\",\"5Eu+tn\":\"Dessa uppgifter visas endast om beställningen slutförs framgångsrikt.\",\"jQjwR+\":\"Dessa uppgifter ersätter alla befintliga platser för de berörda tillfällena och visas på deltagarnas biljetter.\",\"QP3gP+\":\"Dessa inställningar gäller bara för kopierad inbäddningskod och kommer inte att sparas.\",\"HirZe8\":\"Dessa mallar används som standard för alla evenemang i din organisation. Enskilda evenemang kan ersätta dem med egna anpassade versioner.\",\"lzAaG5\":\"Dessa mallar ersätter arrangörens standardmallar endast för detta evenemang. Om ingen anpassad mall anges här används arrangörens mall i stället.\",\"UlykKR\":\"Tredje\",\"wkP5FM\":\"Detta gäller för varje matchande datum i evenemanget, inklusive datum som inte är synliga för tillfället. Deltagare registrerade på något av dessa datum kommer att kunna nås via meddelandekompositören när uppdateringen är klar.\",\"SOmGDa\":\"Denna incheckningslista är kopplad till ett tillfälle som har avbokats, så den kan inte längre användas för incheckningar.\",\"XBNC3E\":\"Den här koden används för att spåra försäljning. Endast bokstäver, siffror, bindestreck och understreck är tillåtna.\",\"AaP0M+\":\"Den här färgkombinationen kan vara svår att läsa för vissa användare\",\"o1phK/\":[\"Detta datum har \",[\"orderCount\"],\" beställningar som påverkas.\"],\"F/UtGt\":\"Detta datum har avbokats. Du kan fortfarande ta bort det permanent.\",\"BLZ7pX\":\"Detta datum är förflutet. Det kommer att skapas men kommer inte att synas för deltagare under kommande datum.\",\"7IIY0z\":\"Detta datum är markerat som slutsålt.\",\"bddWMP\":\"Detta datum är inte längre tillgängligt. Välj ett annat datum.\",\"RzEvf5\":\"Det här evenemanget har avslutats\",\"YClrdK\":\"Det här evenemanget är inte publicerat ännu\",\"dFJnia\":\"Det här är namnet på din arrangör som kommer att visas för dina användare.\",\"vt7jiq\":\"Detta är den enda gången signeringshemligheten visas. Kopiera den nu och förvara den säkert.\",\"L7dIM7\":\"Den här länken är ogiltig eller har löpt ut.\",\"MR5ygV\":\"Den här länken är inte längre giltig\",\"9LEqK0\":\"Det här namnet är synligt för slutanvändare\",\"QdUMM9\":\"Detta tillfälle har nått sin kapacitet\",\"j5FdeA\":\"Den här ordern behandlas.\",\"sjNPMw\":\"Den här ordern övergavs. Du kan starta en ny order när som helst.\",\"OhCesD\":\"Den här ordern avbröts. Du kan starta en ny order när som helst.\",\"lyD7rQ\":\"Den här arrangörsprofilen är inte publicerad ännu\",\"9b5956\":\"Den här förhandsvisningen visar hur ditt mejl kommer att se ut med exempeldata. Faktiska mejl använder riktiga värden.\",\"uM9Alj\":\"Den här produkten är markerad på evenemangssidan\",\"RqSKdX\":\"Den här produkten är slutsåld\",\"W12OdJ\":\"Denna rapport är endast för informationsändamål. Rådgör alltid med en skatteexpert innan du använder dessa uppgifter för redovisnings- eller skatteändamål. Vänligen dubbelkolla med din Stripe-instrumentpanel då Hi.Events kan sakna historiska data.\",\"0Ew0uk\":\"Den här biljetten skannades nyss. Vänta innan du skannar igen.\",\"FYXq7k\":[\"Detta påverkar \",[\"loadedAffectedCount\"],\" datum.\"],\"kvpxIU\":\"Detta används för notiser och kommunikation med dina användare.\",\"rhsath\":\"Detta syns inte för kunder, men hjälper dig att identifiera affiliaten.\",\"hV6FeJ\":\"Takt\",\"+FjWgX\":\"Tor\",\"kkDQ8m\":\"Torsdag\",\"0GSPnc\":\"Biljettdesign\",\"EZC/Cu\":\"Biljettdesignen sparades\",\"bbslmb\":\"Biljettdesigner\",\"1BPctx\":\"Biljett för\",\"bgqf+K\":\"Biljettinnehavarens e-post\",\"oR7zL3\":\"Biljettinnehavarens namn\",\"HGuXjF\":\"Biljettinnehavare\",\"CMUt3Y\":\"Biljettinnehavare\",\"awHmAT\":\"Biljett-ID\",\"6czJik\":\"Biljettlogotyp\",\"OkRZ4Z\":\"Biljettnamn\",\"t79rDv\":\"Biljett hittades inte\",\"6tmWch\":\"Biljett eller produkt\",\"1tfWrD\":\"Biljettförhandsvisning för\",\"KnjoUA\":\"Biljettpris\",\"tGCY6d\":\"Biljettpris\",\"pGZOcL\":\"Biljetten skickades igen\",\"8jLPgH\":\"Biljettyp\",\"X26cQf\":\"Biljett-URL\",\"8qsbZ5\":\"Biljetter och försäljning\",\"zNECqg\":\"biljetter\",\"6GQNLE\":\"Biljetter\",\"NRhrIB\":\"Biljetter och produkter\",\"OrWHoZ\":\"Biljetter erbjuds automatiskt till kunder på väntelistan när kapacitet blir tillgänglig.\",\"EUnesn\":\"Tillgängliga biljetter\",\"AGRilS\":\"Sålda biljetter\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Tid\",\"dMtLDE\":\"till\",\"/jQctM\":\"Till\",\"tiI71C\":\"För att öka dina gränser, kontakta oss på\",\"ecUA8p\":\"Idag\",\"W428WC\":\"Växla kolumner\",\"BRMXj0\":\"Imorgon\",\"UBSG1X\":\"Topparrangörer (Senaste 14 dagarna)\",\"3sZ0xx\":\"Totalt antal konton\",\"EaAPbv\":\"Totalt betalt belopp\",\"SMDzqJ\":\"Totalt antal deltagare\",\"orBECM\":\"Totalt inkasserat\",\"k5CU8c\":\"Totalt antal poster\",\"4B7oCp\":\"Total avgift\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Totalt antal användare\",\"oJjplO\":\"Totala visningar\",\"rBZ9pz\":\"Turer\",\"orluER\":\"Spåra kontotillväxt och resultat efter attribueringskälla\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Sant om offlinebetalning\",\"9GsDR2\":\"Sant om betalning väntar\",\"GUA0Jy\":\"Prova en annan sökning eller filter\",\"2P/OWN\":\"Försök justera dina filter för att se fler datum.\",\"ouM5IM\":\"Prova en annan e-postadress\",\"3DZvE7\":\"Prova Hi.Events gratis\",\"7P/9OY\":\"Ti\",\"vq2WxD\":\"Tis\",\"G3myU+\":\"Tisdag\",\"Kz91g/\":\"Turkiska\",\"GdOhw6\":\"Stäng av ljudet\",\"KUOhTy\":\"Slå på ljudet\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Skriv \\\"ta bort\\\" för att bekräfta\",\"XxecLm\":\"Typ av biljett\",\"IrVSu+\":\"Det gick inte att duplicera produkten. Kontrollera dina uppgifter\",\"Vx2J6x\":\"Det gick inte att hämta deltagaren\",\"h0dx5e\":\"Det gick inte att gå med i väntelistan\",\"DaE0Hg\":\"Det gick inte att läsa in deltagarinformation.\",\"GlnD5Y\":\"Det gick inte att läsa in produkter för detta datum. Försök igen.\",\"17VbmV\":\"Det gick inte att ångra incheckning\",\"n57zCW\":\"Oattribuerade konton\",\"9uI/rE\":\"Ångra\",\"b9SN9q\":\"Unik orderreferens\",\"Ef7StM\":\"Okänd\",\"ZBAScj\":\"Okänd deltagare\",\"MEIAzV\":\"Namnlös\",\"K6L5Mx\":\"Plats utan namn\",\"X13xGn\":\"Ej betrodd\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Uppdatera affiliate\",\"59qHrb\":\"Uppdatera kapacitet\",\"Gaem9v\":\"Uppdatera evenemangsnamn och beskrivning\",\"7EhE4k\":\"Uppdatera etikett\",\"NPQWj8\":\"Uppdatera plats\",\"75+lpR\":[\"Uppdatering: \",[\"subjectTitle\"],\" — schemaändringar\"],\"UOGHdA\":[\"Uppdatering: \",[\"subjectTitle\"],\" — tillfällets tid har ändrats\"],\"ogoTrw\":[\"Uppdaterade \",[\"count\"],\" datum\"],\"dDuona\":[\"Uppdaterade kapacitet för \",[\"count\"],\" datum\"],\"FT3LSc\":[\"Uppdaterade etikett för \",[\"count\"],\" datum\"],\"8EcY1g\":[\"Uppdaterade plats för \",[\"count\"],\" tillfälle(n)\"],\"gJQsLv\":\"Ladda upp en omslagsbild för din arrangör\",\"4kEGqW\":\"Ladda upp en logotyp för din arrangör\",\"lnCMdg\":\"Ladda upp bild\",\"29w7p6\":\"Laddar upp bild...\",\"HtrFfw\":\"URL krävs\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB-skanner aktiv\",\"dyTklH\":\"USB-skanner pausad\",\"OHJXlK\":\"Använd <0>Liquid-mallar för att anpassa dina mejl\",\"g0WJMu\":\"Använd lista för alla datum\",\"0k4cdb\":\"Använd orderuppgifterna för alla deltagare. Deltagarnas namn och e-postadresser matchar köparens uppgifter.\",\"MKK5oI\":\"Använd listan för alla datum, eller skapa en lista för detta datum?\",\"bA31T4\":\"Använd köparens uppgifter för alla deltagare\",\"rnoQsz\":\"Används för ramar, markeringar och formatering av QR-kod\",\"BV4L/Q\":\"UTM-analys\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validerar ditt momsregistreringsnummer...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Momsnummer\",\"pnVh83\":\"Momsregistreringsnummer\",\"CabI04\":\"Momsregistreringsnumret får inte innehålla mellanslag\",\"PMhxAR\":\"Momsregistreringsnumret måste börja med en landskod med två bokstäver följt av 8–15 alfanumeriska tecken (t.ex. DE123456789)\",\"gPgdNV\":\"Momsregistreringsnumret validerades\",\"RUMiLy\":\"Validering av momsregistreringsnummer misslyckades\",\"vqji3Y\":\"Validering av momsregistreringsnummer misslyckades. Kontrollera ditt momsregistreringsnummer.\",\"8dENF9\":\"Moms på avgift\",\"ZutOKU\":\"Momssats\",\"+KJZt3\":\"Momsregistrerad\",\"Nfbg76\":\"Momsinställningarna sparades\",\"UvYql/\":\"Momsinställningarna sparades. Vi validerar ditt momsregistreringsnummer i bakgrunden.\",\"bXn1Jz\":\"Momsinställningar uppdaterade\",\"tJylUv\":\"Momshantering för plattformsavgifter\",\"FlGprQ\":\"Momshantering för plattformsavgifter: EU-momsregistrerade företag kan använda omvänd skattskyldighet (0 % – artikel 196 i momsdirektivet 2006/112/EG). Icke momsregistrerade företag debiteras irländsk moms på 23 %.\",\"516oLj\":\"Valideringstjänsten för moms är tillfälligt otillgänglig\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"Moms: ej registrerad\",\"AdWhjZ\":\"Verifieringskod\",\"QDEWii\":\"Verifierad\",\"wCKkSr\":\"Verifiera e-postadress\",\"/IBv6X\":\"Verifiera din e-postadress\",\"e/cvV1\":\"Verifierar...\",\"fROFIL\":\"Vietnamesiska\",\"p5nYkr\":\"Visa alla\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Visa alla funktioner\",\"RnvnDc\":\"Visa alla meddelanden skickade på plattformen\",\"+WFMis\":\"Visa och ladda ner rapporter för alla dina evenemang. Endast slutförda ordrar ingår.\",\"c7VN/A\":\"Visa svar\",\"SZw9tS\":\"Visa detaljer\",\"9+84uW\":[\"Visa detaljer för \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Visa evenemang\",\"c6SXHN\":\"Visa evenemangsida\",\"n6EaWL\":\"Visa loggar\",\"OaKTzt\":\"Visa karta\",\"zNZNMs\":\"Visa meddelande\",\"67OJ7t\":\"Visa order\",\"tKKZn0\":\"Visa orderdetaljer\",\"KeCXJu\":\"Visa orderdetaljer, genomför återbetalningar och skicka bekräftelser igen.\",\"9jnAcN\":\"Visa arrangörens startsida\",\"1J/AWD\":\"Visa biljett\",\"N9FyyW\":\"Visa, redigera och exportera dina registrerade deltagare.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Väntar\",\"quR8Qp\":\"Väntar på betalning\",\"KrurBH\":\"Väntar på skanning…\",\"u0n+wz\":\"Väntelista\",\"3RXFtE\":\"Väntelista aktiverad\",\"TwnTPy\":\"Väntelisteerbjudande utgånget\",\"NzIvKm\":\"Väntelista utlöst\",\"aUi/Dz\":\"Varning: Detta är systemets standardkonfiguration. Ändringar påverkar alla konton som inte har en specifik konfiguration tilldelad.\",\"qeygIa\":\"On\",\"aT/44s\":\"Vi kunde inte kopiera den Stripe-anslutningen. Försök igen.\",\"RRZDED\":\"Vi kunde inte hitta några ordrar kopplade till den här e-postadressen.\",\"2RZK9x\":\"Vi kunde inte hitta ordern du letar efter. Länken kan ha löpt ut eller så kan orderuppgifterna ha ändrats.\",\"nefMIK\":\"Vi kunde inte hitta biljetten du letar efter. Länken kan ha löpt ut eller så kan biljettuppgifterna ha ändrats.\",\"miysJh\":\"Vi kunde inte hitta den här ordern. Den kan ha tagits bort.\",\"ADsQ23\":\"Vi kunde inte nå Stripe just nu. Försök igen om en stund.\",\"HJKdzP\":\"Det uppstod ett problem när sidan skulle laddas. Försök igen.\",\"jegrvW\":\"Vi samarbetar med Stripe för att skicka utbetalningar direkt till ditt bankkonto.\",\"IfN2Qo\":\"Vi rekommenderar en kvadratisk logotyp med minst 200×200 px\",\"wJzo/w\":\"Vi rekommenderar 400×400 px och maximal filstorlek 5 MB\",\"KRCDqH\":\"Vi använder cookies för att hjälpa oss förstå hur webbplatsen används och för att förbättra din upplevelse.\",\"x8rEDQ\":\"Vi kunde inte validera ditt momsregistreringsnummer efter flera försök. Vi fortsätter att försöka i bakgrunden. Kom tillbaka senare.\",\"iy+M+c\":[\"Vi meddelar dig via e-post om en plats blir tillgänglig för \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Vi öppnar en meddelandekompositör med en förifylld mall efter att du sparat. Du granskar och skickar den — ingenting skickas automatiskt.\",\"q1BizZ\":\"Vi skickar dina biljetter till den här e-postadressen\",\"ZOmUYW\":\"Vi validerar ditt momsregistreringsnummer i bakgrunden. Om det uppstår problem hör vi av oss.\",\"LKjHr4\":[\"Vi har gjort ändringar i schemat för \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" som påverkar \",[\"affectedCount\"],\" tillfällen.\"],\"Fq/Nx7\":\"Vi har skickat en verifieringskod med 5 siffror till:\",\"GdWB+V\":\"Webhook skapades\",\"2X4ecw\":\"Webhook togs bort\",\"ndBv0v\":\"Webhook-integrationer\",\"CThMKa\":\"Webhook-loggar\",\"I0adYQ\":\"Webhook-signeringshemlighet\",\"nuh/Wq\":\"Webhook-URL\",\"8BMPMe\":\"Webhooken skickar inga notiser\",\"FSaY52\":\"Webhooken skickar notiser\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Webbplats\",\"0f7U0k\":\"Ons\",\"VAcXNz\":\"Onsdag\",\"64X6l4\":\"vecka\",\"4XSc4l\":\"Veckovis\",\"IAUiSh\":\"veckor\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Välkommen tillbaka\",\"QDWsl9\":[\"Välkommen till \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Välkommen till \",[\"0\"],\", här är en lista över alla dina evenemang\"],\"DDbx7K\":\"Välbefinnande\",\"ywRaYa\":\"Vilken tid?\",\"FaSXqR\":\"Vilken typ av evenemang?\",\"0WyYF4\":\"Vad ej inloggad personal ser\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"När en incheckning tas bort\",\"RPe6bE\":\"När ett datum avbokas på ett återkommande evenemang\",\"Gmd0hv\":\"När en ny deltagare skapas\",\"zyIyPe\":\"När ett nytt evenemang skapas\",\"Lc18qn\":\"När en ny order skapas\",\"dfkQIO\":\"När en ny produkt skapas\",\"8OhzyY\":\"När en produkt tas bort\",\"tRXdQ9\":\"När en produkt uppdateras\",\"9L9/28\":\"När en produkt blir slutsåld kan kunder gå med i en väntelista för att meddelas när platser blir tillgängliga.\",\"Q7CWxp\":\"När en deltagare avbokas\",\"IuUoyV\":\"När en deltagare checkas in\",\"nBVOd7\":\"När en deltagare uppdateras\",\"t7cuMp\":\"När ett evenemang arkiveras\",\"gtoSzE\":\"När ett evenemang uppdateras\",\"ny2r8d\":\"När en order avbokas\",\"c9RYbv\":\"När en order markeras som betald\",\"ejMDw1\":\"När en order återbetalas\",\"fVPt0F\":\"När en order uppdateras\",\"bcYlvb\":\"När incheckningen stänger\",\"XIG669\":\"När incheckningen öppnar\",\"403wpZ\":\"När detta är aktiverat kan nya evenemang låta deltagare hantera sina egna biljettuppgifter via en säker länk. Detta kan åsidosättas per evenemang.\",\"blXLKj\":\"När detta är aktiverat visar nya evenemang en kryssruta för marknadsföringssamtycke i kassan. Detta kan åsidosättas per evenemang.\",\"Kj0Txn\":\"När aktiverat kommer inga applikationsavgifter att debiteras på Stripe Connect-transaktioner. Använd detta för länder där applikationsavgifter inte stöds.\",\"tMqezN\":\"Om återbetalningar behandlas\",\"uchB0M\":\"Förhandsgranskning av widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Skriv ditt meddelande här...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"år\",\"zkWmBh\":\"Årligen\",\"+BGee5\":\"år\",\"X/azM1\":\"Ja – jag har ett giltigt EU-momsregistreringsnummer\",\"Tz5oXG\":\"Ja, avbryt min order\",\"QlSZU0\":[\"Du utger dig för att vara <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Du gör en delåterbetalning. Kunden kommer att få \",[\"0\"],\" \",[\"1\"],\" återbetalat.\"],\"o7LgX6\":\"Du kan konfigurera ytterligare serviceavgifter och skatter i dina kontoinställningar.\",\"rj3A7+\":\"Du kan åsidosätta detta för enskilda datum senare.\",\"paWwQ0\":\"Du kan fortfarande erbjuda biljetter manuellt vid behov.\",\"jTDzpA\":\"Du kan inte arkivera den sista aktiva arrangören på ditt konto.\",\"5VGIlq\":\"Du har nått din meddelandegräns.\",\"casL1O\":\"Du har lagt till skatter och avgifter på en gratis produkt. Vill du ta bort dem?\",\"9jJNZY\":\"Du måste bekräfta ditt ansvar innan du sparar\",\"pCLes8\":\"Du måste godkänna att ta emot meddelanden\",\"FVTVBy\":\"Du måste verifiera din e-postadress innan du kan uppdatera arrangörsstatusen.\",\"ze4bi/\":\"Du måste skapa minst ett tillfälle innan du kan lägga till deltagare i detta återkommande evenemang.\",\"w65ZgF\":\"Du behöver verifiera kontots e-postadress innan du kan ändra e-postmallar.\",\"FRl8Jv\":\"Du behöver verifiera kontots e-postadress innan du kan skicka meddelanden.\",\"88cUW+\":\"Du får\",\"O6/3cu\":\"Du kommer att kunna ställa in datum, scheman och återkommande regler i nästa steg.\",\"zKAheG\":\"Du ändrar tillfällets tid\",\"MNFIxz\":[\"Du ska till \",[\"0\"],\"!\"],\"qGZz0m\":\"Du är på väntelistan!\",\"/5HL6k\":\"Du har erbjudits en plats!\",\"gbjFFH\":\"Du har ändrat tillfällets tid\",\"p/Sa0j\":\"Ditt konto har meddelandebegränsningar. För att öka dina gränser, kontakta oss på\",\"x/xjzn\":\"Dina affiliates har exporterats.\",\"TF37u6\":\"Dina deltagare har exporterats.\",\"79lXGw\":\"Din incheckningslista har skapats. Dela länken nedan med din incheckningspersonal.\",\"BnlG9U\":\"Din nuvarande order kommer att försvinna.\",\"nBqgQb\":\"Din e-postadress\",\"GG1fRP\":\"Ditt evenemang är live!\",\"ifRqmm\":\"Ditt meddelande har skickats!\",\"0/+Nn9\":\"Dina meddelanden visas här\",\"/Rj5P4\":\"Ditt namn\",\"PFjJxY\":\"Ditt nya lösenord måste vara minst 8 tecken långt.\",\"gzrCuN\":\"Dina orderuppgifter har uppdaterats. Ett bekräftelsemejl har skickats till den nya e-postadressen.\",\"naQW82\":\"Din order har avbokats.\",\"bhlHm/\":\"Din order väntar på betalning\",\"XeNum6\":\"Dina ordrar har exporterats.\",\"Xd1R1a\":\"Din arrangörsadress\",\"WWYHKD\":\"Din betalning skyddas med banknivå-kryptering\",\"5b3QLi\":\"Din plan\",\"N4Zkqc\":\"Ditt sparade datumfilter är inte längre tillgängligt — visar alla datum.\",\"FNO5uZ\":\"Din biljett är fortfarande giltig — ingen åtgärd behövs om inte den nya tiden inte fungerar för dig. Svara på detta e-postmeddelande om du har några frågor.\",\"CnZ3Ou\":\"Dina biljetter har bekräftats.\",\"EmFsMZ\":\"Ditt momsregistreringsnummer är köat för validering\",\"QBlhh4\":\"Ditt momsregistreringsnummer valideras när du sparar\",\"fT9VLt\":\"Ditt väntelisteerbjudande har upphört att gälla och vi kunde inte slutföra din beställning. Gå med i väntelistan igen för att meddelas när fler platser blir tillgängliga.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"Det finns inget att visa ännu\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>utcheckad lyckades\"],\"KMgp2+\":[[\"0\"],\" tillgängliga\"],\"Pmr5xp\":[[\"0\"],\" skapades framgångsrikt\"],\"FImCSc\":[[\"0\"],\" uppdaterades\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dagar, \",[\"hours\"],\" timmar, \",[\"minutes\"],\" minuter och \",[\"seconds\"],\" sekunder\"],\"f3RdEk\":[[\"hours\"],\" timmar, \",[\"minutes\"],\" minuter och \",[\"seconds\"],\" sekunder\"],\"fyE7Au\":[[\"minutes\"],\" minuter och \",[\"seconds\"],\" sekunder\"],\"NlQ0cx\":[[\"organizerName\"],\"s första evenemang\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://din-webbplats.com\",\"qnSLLW\":\"<0>Vänligen ange priset exklusive skatter och avgifter.<1>Skatter och avgifter kan läggas till nedan.\",\"ZjMs6e\":\"<0>Antalet produkter tillgängliga för denna produkt<1>Detta värde kan åsidosättas om det finns <2>kapacitetsbegränsningar kopplade till denna produkt.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minuter och 0 sekunder\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Huvudgatan 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Ett datumfält. Perfekt för att fråga efter födelsedatum osv.\",\"6euFZ/\":[\"Ett standardvärde för \",[\"type\"],\" tillämpas automatiskt på alla nya produkter. Du kan åsidosätta detta per produkt.\"],\"SMUbbQ\":\"En rullgardinsmeny tillåter endast ett val\",\"qv4bfj\":\"En avgift, som en bokningsavgift eller serviceavgift\",\"POT0K/\":\"Ett fast belopp per produkt. T.ex. $0,50 per produkt\",\"f4vJgj\":\"Ett flerradigt textfält\",\"OIPtI5\":\"En procentandel av produktpriset. T.ex. 3,5% av produktpriset\",\"ZthcdI\":\"En kampanjkod utan rabatt kan användas för att visa dolda produkter.\",\"AG/qmQ\":\"Ett radioval har flera alternativ men endast ett kan väljas.\",\"h179TP\":\"En kort beskrivning av evenemanget som visas i sökresultat och vid delning på sociala medier. Som standard används evenemangsbeskrivningen.\",\"WKMnh4\":\"Ett enradigt textfält\",\"BHZbFy\":\"En enda fråga per order. T.ex. Vilken är din leveransadress?\",\"Fuh+dI\":\"En enda fråga per produkt. T.ex. Vilken är din t-shirtstorlek?\",\"RlJmQg\":\"En standardskatt, såsom moms\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Acceptera banköverföringar, checkar eller andra offline-betalningsmetoder\",\"hrvLf4\":\"Acceptera kreditkortsbetalningar med Stripe\",\"bfXQ+N\":\"Acceptera inbjudan\",\"AeXO77\":\"Konto\",\"lkNdiH\":\"Kontonamn\",\"Puv7+X\":\"Kontoinställningar\",\"OmylXO\":\"Kontot uppdaterades\",\"7L01XJ\":\"Åtgärder\",\"FQBaXG\":\"Aktivera\",\"5T2HxQ\":\"Aktiveringsdatum\",\"F6pfE9\":\"Aktiv\",\"/PN1DA\":\"Lägg till en beskrivning för denna incheckningslista\",\"0/vPdA\":\"Lägg till eventuella anteckningar om deltagaren. Dessa kommer inte vara synliga för deltagaren.\",\"Or1CPR\":\"Lägg till eventuella anteckningar om deltagaren...\",\"l3sZO1\":\"Lägg till eventuella anteckningar om ordern. Dessa kommer inte vara synliga för kunden.\",\"xMekgu\":\"Lägg till eventuella anteckningar om ordern...\",\"PGPGsL\":\"Lägg till beskrivning\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Lägg till instruktioner för offline-betalningar (t.ex. banköverföringsuppgifter, vart man skickar checkar, betalningsfrister)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Lägg till ny\",\"TZxnm8\":\"Lägg till alternativ\",\"24l4x6\":\"Lägg till produkt\",\"8q0EdE\":\"Lägg till produkt i kategori\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Lägg till skatt eller avgift\",\"goOKRY\":\"Lägg till prisnivå\",\"oZW/gT\":\"Lägg till i kalendern\",\"pn5qSs\":\"Ytterligare information\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adress\",\"NY/x1b\":\"Adressrad 1\",\"POdIrN\":\"Adressrad 1\",\"cormHa\":\"Adressrad 2\",\"gwk5gg\":\"Adressrad 2\",\"U3pytU\":\"Admin\",\"HLDaLi\":\"Adminanvändare har full åtkomst till evenemang och kontoinställningar.\",\"W7AfhC\":\"Alla deltagare för detta evenemang\",\"cde2hc\":\"Alla produkter\",\"5CQ+r0\":\"Tillåt incheckning av deltagare kopplade till obetalda order\",\"ipYKgM\":\"Tillåt indexering av sökmotorer\",\"LRbt6D\":\"Tillåt sökmotorer att indexera detta evenemang\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Fantastiskt, Evenemang, Nyckelord...\",\"hehnjM\":\"Belopp\",\"R2O9Rg\":[\"Betalt belopp (\",[\"0\"],\")\"],\"V7MwOy\":\"Ett fel uppstod vid inläsning av sidan\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Ett oväntat fel uppstod.\",\"byKna+\":\"Ett oväntat fel uppstod. Vänligen försök igen.\",\"ubdMGz\":\"Eventuella frågor från produktinnehavare kommer att skickas till denna e-postadress. Detta kommer också att användas som \\\"svarsadress\\\" för alla e-postmeddelanden från detta evenemang\",\"aAIQg2\":\"Utseende\",\"Ym1gnK\":\"tillämpat\",\"sy6fss\":[\"Gäller \",[\"0\"],\" produkter\"],\"kadJKg\":\"Gäller 1 produkt\",\"DB8zMK\":\"Använd\",\"GctSSm\":\"Använd kampanjkod\",\"ARBThj\":[\"Tillämpa denna \",[\"type\"],\" på alla nya produkter\"],\"S0ctOE\":\"Arkivera evenemang\",\"TdfEV7\":\"Arkiverad\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Är du säker på att du vill aktivera denna deltagare?\",\"TvkW9+\":\"Är du säker på att du vill arkivera detta evenemang?\",\"/CV2x+\":\"Är du säker på att du vill avboka denna deltagare? Detta ogiltigförklarar deras biljett\",\"YgRSEE\":\"Är du säker på att du vill ta bort denna kampanjkod?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Är du säker på att du vill göra detta evenemang till ett utkast? Detta kommer att göra evenemanget osynligt för allmänheten\",\"mEHQ8I\":\"Är du säker på att du vill publicera detta evenemang? Detta kommer att göra evenemanget synligt för allmänheten\",\"s4JozW\":\"Är du säker på att du vill återställa detta evenemang? Det kommer att återställas som ett utkast.\",\"vJuISq\":\"Är du säker på att du vill ta bort denna kapacitetstilldelning?\",\"baHeCz\":\"Är du säker på att du vill ta bort denna incheckningslista?\",\"LBLOqH\":\"Fråga en gång per order\",\"wu98dY\":\"Fråga en gång per produkt\",\"ss9PbX\":\"Deltagare\",\"m0CFV2\":\"Deltagaruppgifter\",\"QKim6l\":\"Deltagare hittades inte\",\"R5IT/I\":\"Deltagaranteckningar\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Deltagarbiljett\",\"9SZT4E\":\"Deltagare\",\"iPBfZP\":\"Registrerade deltagare\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatisk storleksanpassning\",\"vZ5qKF\":\"Anpassa widgetens höjd automatiskt baserat på innehållet. När funktionen är avstängd fyller widgeten hela behållarens höjd.\",\"4lVaWA\":\"Väntar på offlinebetalning\",\"2rHwhl\":\"Väntar på offlinebetalning\",\"3wF4Q/\":\"Väntar på betalning\",\"ioG+xt\":\"Väntar på betalning\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Tillbaka till evenemangssidan\",\"VCoEm+\":\"Tillbaka till inloggning\",\"k1bLf+\":\"Bakgrundsfärg\",\"I7xjqg\":\"Bakgrundstyp\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Faktureringsadress\",\"/xC/im\":\"Faktureringsinställningar\",\"rp/zaT\":\"Brasiliansk portugisiska\",\"whqocw\":\"Genom att registrera dig godkänner du våra <0>användarvillkor och <1>integritetspolicy.\",\"bcCn6r\":\"Beräkningstyp\",\"+8bmSu\":\"Kalifornien\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Avbryt\",\"Gjt/py\":\"Avbryt ändring av e-postadress\",\"tVJk4q\":\"Avbryt order\",\"Os6n2a\":\"Avbryt order\",\"Mz7Ygx\":[\"Avbryt order \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Avbruten\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Kapacitet\",\"V6Q5RZ\":\"Kapacitetstilldelning skapades\",\"k5p8dz\":\"Kapacitetstilldelning togs bort\",\"nDBs04\":\"Kapacitetshantering\",\"ddha3c\":\"Kategorier låter dig gruppera produkter. Till exempel kan du ha en kategori för \\\"Biljetter\\\" och en annan för \\\"Merchandise\\\".\",\"iS0wAT\":\"Kategorier hjälper dig att organisera dina produkter. Denna titel visas på den publika evenemangssidan.\",\"eorM7z\":\"Kategorierna har sorterats om\",\"3EXqwa\":\"Kategori skapades\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Ändra lösenord\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Checka in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Checka in och markera ordern som betald\",\"QYLpB4\":\"Endast checka in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Kolla in detta evenemang!\",\"gXcPxc\":\"Incheckning\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Incheckningslista togs bort\",\"+hBhWk\":\"Incheckningslistan har gått ut\",\"mBsBHq\":\"Incheckningslistan är inte aktiv\",\"vPqpQG\":\"Incheckningslistan hittades inte\",\"tejfAy\":\"Incheckningslistor\",\"hD1ocH\":\"Inchecknings-URL kopierad till urklipp\",\"CNafaC\":\"Kryssrutealternativ tillåter flera val\",\"SpabVf\":\"Kryssrutor\",\"CRu4lK\":\"Incheckad\",\"znIg+z\":\"Kassa\",\"1WnhCL\":\"Kassainställningar\",\"6imsQS\":\"Kinesiska (förenklad)\",\"JjkX4+\":\"Välj en färg för din bakgrund\",\"/Jizh9\":\"Välj ett konto\",\"3wV73y\":\"Stad\",\"FG98gC\":\"Rensa söktext\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Klicka för att kopiera\",\"yz7wBu\":\"Stäng\",\"62Ciis\":\"Stäng sidofält\",\"EWPtMO\":\"Kod\",\"ercTDX\":\"Koden måste vara mellan 3 och 50 tecken lång\",\"oqr9HB\":\"Fäll ihop denna produkt när evenemangssidan laddas\",\"jZlrte\":\"Färg\",\"Vd+LC3\":\"Färgen måste vara en giltig hexkod. Exempel: #ffffff\",\"1HfW/F\":\"Färger\",\"VZeG/A\":\"Kommer snart\",\"yPI7n9\":\"Kommaseparerade nyckelord som beskriver evenemanget. Dessa används av sökmotorer för att kategorisera och indexera evenemanget.\",\"NPZqBL\":\"Slutför order\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Slutför betalning\",\"qqWcBV\":\"Slutförd\",\"6HK5Ct\":\"Slutförda ordrar\",\"NWVRtl\":\"Slutförda ordrar\",\"DwF9eH\":\"Komponentkod\",\"Tf55h7\":\"Konfigurerad rabatt\",\"7VpPHA\":\"Bekräfta\",\"ZaEJZM\":\"Bekräfta ändring av e-postadress\",\"yjkELF\":\"Bekräfta nytt lösenord\",\"xnWESi\":\"Bekräfta lösenord\",\"p2/GCq\":\"Bekräfta lösenord\",\"wnDgGj\":\"Bekräftar e-postadress...\",\"pbAk7a\":\"Anslut Stripe\",\"UMGQOh\":\"Anslut med Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Anslutningsuppgifter\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Fortsätt\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Text på fortsätt-knapp\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Kopierad\",\"T5rdis\":\"kopierad till urklipp\",\"he3ygx\":\"Kopiera\",\"r2B2P8\":\"Kopiera inchecknings-URL\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Kopiera länk\",\"E6nRW7\":\"Kopiera URL\",\"JNCzPW\":\"Land\",\"IF7RiR\":\"Omslag\",\"hYgDIe\":\"Skapa\",\"b9XOHo\":[\"Skapa \",[\"0\"]],\"k9RiLi\":\"Skapa en produkt\",\"6kdXbW\":\"Skapa en kampanjkod\",\"n5pRtF\":\"Skapa en biljett\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"skapa en organisatör\",\"ipP6Ue\":\"Skapa deltagare\",\"VwdqVy\":\"Skapa kapacitetstilldelning\",\"EwoMtl\":\"Skapa kategori\",\"XletzW\":\"Skapa kategori\",\"WVbTwK\":\"Skapa incheckningslista\",\"uN355O\":\"Skapa evenemang\",\"BOqY23\":\"Skapa ny\",\"kpJAeS\":\"Skapa organisatör\",\"a0EjD+\":\"Skapa produkt\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Skapa kampanjkod\",\"B3Mkdt\":\"Skapa fråga\",\"UKfi21\":\"Skapa skatt eller avgift\",\"d+F6q9\":\"Skapad\",\"Q2lUR2\":\"Valuta\",\"DCKkhU\":\"Nuvarande lösenord\",\"uIElGP\":\"Anpassad Maps-URL\",\"UEqXyt\":\"Anpassat intervall\",\"876pfE\":\"Kund\",\"QOg2Sf\":\"Anpassa e-post- och aviseringsinställningarna för detta evenemang\",\"Y9Z/vP\":\"Anpassa evenemangets startsida och kassameddelanden\",\"2E2O5H\":\"Anpassa övriga inställningar för detta evenemang\",\"iJhSxe\":\"Anpassa SEO-inställningarna för detta evenemang\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Riskzon\",\"ZQKLI1\":\"Riskzon\",\"7p5kLi\":\"Instrumentpanel\",\"mYGY3B\":\"Datum\",\"JvUngl\":\"Datum och tid\",\"JJhRbH\":\"Kapacitet dag ett\",\"cnGeoo\":\"Ta bort\",\"jRJZxD\":\"Ta bort kapacitet\",\"VskHIx\":\"Ta bort kategori\",\"Qrc8RZ\":\"Ta bort incheckningslista\",\"WHf154\":\"Ta bort kod\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Beskrivning\",\"YC3oXa\":\"Beskrivning för incheckningspersonal\",\"URmyfc\":\"Detaljer\",\"1lRT3t\":\"Om denna kapacitet inaktiveras spåras försäljningen men den stoppas inte när gränsen nås\",\"H6Ma8Z\":\"Rabatt\",\"ypJ62C\":\"Rabatt %\",\"3LtiBI\":[\"Rabatt i \",[\"0\"]],\"C8JLas\":\"Rabattyp\",\"1QfxQT\":\"Stäng\",\"DZlSLn\":\"Dokumentetikett\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Donation eller betala vad du vill-produkt\",\"OvNbls\":\"Ladda ner .ics\",\"kodV18\":\"Ladda ner CSV\",\"CELKku\":\"Ladda ner faktura\",\"LQrXcu\":\"Ladda ner faktura\",\"QIodqd\":\"Ladda ner QR-kod\",\"yhjU+j\":\"Laddar ner faktura\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Rullgardinsval\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplicera evenemang\",\"3ogkAk\":\"Duplicera evenemang\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Dupliceringsalternativ\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Redigera\",\"N6j2JH\":[\"Redigera \",[\"0\"]],\"kBkYSa\":\"Redigera kapacitet\",\"oHE9JT\":\"Redigera kapacitetstilldelning\",\"j1Jl7s\":\"Redigera kategori\",\"FU1gvP\":\"Redigera incheckningslista\",\"iFgaVN\":\"Redigera kod\",\"jrBSO1\":\"Redigera organisatör\",\"tdD/QN\":\"Redigera produkt\",\"n143Tq\":\"Redigera produktkategori\",\"9BdS63\":\"Redigera kampanjkod\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Redigera fråga\",\"poTr35\":\"Redigera användare\",\"GTOcxw\":\"Redigera användare\",\"pqFrv2\":\"t.ex. 2,50 för 2,50 $\",\"3yiej1\":\"t.ex. 23,5 för 23,5 %\",\"O3oNi5\":\"E-post\",\"VxYKoK\":\"E-post- och aviseringsinställningar\",\"ATGYL1\":\"E-postadress\",\"hzKQCy\":\"E-postadress\",\"HqP6Qf\":\"Ändring av e-postadress avbröts\",\"mISwW1\":\"Ändring av e-postadress väntar\",\"APuxIE\":\"E-postbekräftelse skickades igen\",\"YaCgdO\":\"E-postbekräftelse skickades igen\",\"jyt+cx\":\"Meddelande i e-postsidfot\",\"I6F3cp\":\"E-post ej verifierad\",\"NTZ/NX\":\"Inbäddningskod\",\"4rnJq4\":\"Inbäddningsskript\",\"8oPbg1\":\"Aktivera fakturering\",\"j6w7d/\":\"Aktivera denna kapacitet för att stoppa försäljning när gränsen nås\",\"VFv2ZC\":\"Slutdatum\",\"237hSL\":\"Avslutad\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Engelska\",\"MhVoma\":\"Ange ett belopp exklusive skatter och avgifter\",\"SlfejT\":\"Fel\",\"3Z223G\":\"Fel vid bekräftelse av e-postadress\",\"a6gga1\":\"Fel vid bekräftelse av ändring av e-postadress\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evenemang\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Evenemangsdatum\",\"0Zptey\":\"Standardinställningar för evenemang\",\"QcCPs8\":\"Evenemangsdetaljer\",\"6fuA9p\":\"Evenemang duplicerades\",\"AEuj2m\":\"Evenemangets startsida\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Plats- och lokalinformation för evenemanget\",\"OopDbA\":\"Event page\",\"4/If97\":\"Uppdatering av evenemangsstatus misslyckades. Försök igen senare.\",\"btxLWj\":\"Evenemangsstatus uppdaterad\",\"nMU2d3\":\"Evenemangs-URL\",\"tst44n\":\"Evenemang\",\"sZg7s1\":\"Utgångsdatum\",\"KnN1Tu\":\"Går ut\",\"uaSvqt\":\"Utgångsdatum\",\"GS+Mus\":\"Exportera\",\"9xAp/j\":\"Misslyckades med att avbryta deltagare\",\"ZpieFv\":\"Misslyckades med att avbryta order\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Misslyckades med att ladda ner faktura. Försök igen.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Misslyckades med att läsa in incheckningslista\",\"ZQ15eN\":\"Misslyckades med att skicka biljettmejl igen\",\"ejXy+D\":\"Misslyckades med att sortera produkter\",\"PLUB/s\":\"Avgift\",\"/mfICu\":\"Avgifter\",\"LyFC7X\":\"Filtrera ordrar\",\"cSev+j\":\"Filter\",\"CVw2MU\":[\"Filter (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Första fakturanummer\",\"V1EGGU\":\"Förnamn\",\"kODvZJ\":\"Förnamn\",\"S+tm06\":\"Förnamn måste vara mellan 1 och 50 tecken\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Första användning\",\"TpqW74\":\"Fast\",\"irpUxR\":\"Fast belopp\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Glömt lösenord?\",\"2POOFK\":\"Gratis\",\"P/OAYJ\":\"Gratis produkt\",\"vAbVy9\":\"Gratis produkt, ingen betalningsinformation krävs\",\"nLC6tu\":\"Franska\",\"Weq9zb\":\"Allmänt\",\"DDcvSo\":\"Tyska\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Gå tillbaka till profilen\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Kalender\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Bruttoförsäljning\",\"yRg26W\":\"Bruttoförsäljning\",\"R4r4XO\":\"Gäster\",\"26pGvx\":\"Har du en kampanjkod?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Här är ett exempel på hur du kan använda komponenten i din applikation.\",\"Y1SSqh\":\"Här är React-komponenten som du kan använda för att bädda in widgeten i din applikation.\",\"QuhVpV\":[\"Hej \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Dold från offentlig vy\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Dolda frågor är endast synliga för arrangören och inte för kunden.\",\"vLyv1R\":\"Dölj\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Dölj produkt efter försäljningens slutdatum\",\"06s3w3\":\"Dölj produkt före försäljningens startdatum\",\"axVMjA\":\"Dölj produkt om användaren saknar giltig kampanjkod\",\"ySQGHV\":\"Dölj produkt när den är slutsåld\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Dölj denna produkt för kunder\",\"Da29Y6\":\"Dölj denna fråga\",\"fvDQhr\":\"Dölj denna nivå för användare\",\"lNipG+\":\"Att dölja en produkt förhindrar att användare ser den på evenemangssidan.\",\"ZOBwQn\":\"Startsidedesign\",\"PRuBTd\":\"Startsidedesigner\",\"YjVNGZ\":\"Förhandsvisning av startsida\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Hur många minuter kunden har på sig att slutföra sin beställning. Vi rekommenderar minst 15 minuter\",\"ySxKZe\":\"Hur många gånger kan denna kod användas?\",\"dZsDbK\":[\"HTML-teckengränsen har överskridits: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Jag godkänner <0>villkoren\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Om detta är aktiverat kan incheckningspersonal antingen markera deltagare som incheckade eller markera beställningen som betald och checka in deltagarna. Om detta är inaktiverat kan deltagare som är kopplade till obetalda beställningar inte checkas in.\",\"muXhGi\":\"Om detta är aktiverat får arrangören ett e-postmeddelande när en ny beställning görs\",\"6fLyj/\":\"Om du inte begärde denna ändring, ändra omedelbart ditt lösenord.\",\"n/ZDCz\":\"Bilden har raderats\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Bilden har laddats upp\",\"VyUuZb\":\"Bild-URL\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inaktiv\",\"T0K0yl\":\"Inaktiva användare kan inte logga in.\",\"kO44sp\":\"Inkludera anslutningsinformation för ditt onlineevenemang. Dessa uppgifter visas på sidan för ordersammanfattning och på deltagarbiljetten.\",\"FlQKnG\":\"Inkludera skatt och avgifter i priset\",\"Vi+BiW\":[\"Innehåller \",[\"0\"],\" produkter\"],\"lpm0+y\":\"Innehåller 1 produkt\",\"UiAk5P\":\"Infoga bild\",\"OyLdaz\":\"Inbjudan skickades igen!\",\"HE6KcK\":\"Inbjudan återkallad!\",\"SQKPvQ\":\"Bjud in användare\",\"bKOYkd\":\"Fakturan laddades ner\",\"alD1+n\":\"Fakturanoteringar\",\"kOtCs2\":\"Fakturanumrering\",\"UZ2GSZ\":\"Fakturainställningar\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Artikel\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etikett\",\"vXIe7J\":\"Språk\",\"2LMsOq\":\"Senaste 12 månaderna\",\"vfe90m\":\"Senaste 14 dagarna\",\"aK4uBd\":\"Senaste 24 timmarna\",\"uq2BmQ\":\"Senaste 30 dagarna\",\"bB6Ram\":\"Senaste 48 timmarna\",\"VlnB7s\":\"Senaste 6 månaderna\",\"ct2SYD\":\"Senaste 7 dagarna\",\"XgOuA7\":\"Senaste 90 dagarna\",\"I3yitW\":\"Senaste inloggning\",\"1ZaQUH\":\"Efternamn\",\"UXBCwc\":\"Efternamn\",\"tKCBU0\":\"Senast använd\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Lämna tomt för att använda standardordet \\\"Faktura\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Laddar...\",\"wJijgU\":\"Plats\",\"sQia9P\":\"Logga in\",\"zUDyah\":\"Loggar in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logga ut\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Gör faktureringsadress obligatorisk i kassan\",\"MU3ijv\":\"Gör denna fråga obligatorisk\",\"wckWOP\":\"Hantera\",\"onpJrA\":\"Hantera deltagare\",\"n4SpU5\":\"Hantera evenemang\",\"WVgSTy\":\"Hantera order\",\"1MAvUY\":\"Hantera betalnings- och fakturainställningar för detta evenemang.\",\"cQrNR3\":\"Hantera profil\",\"AtXtSw\":\"Hantera skatter och avgifter som kan tillämpas på dina produkter\",\"ophZVW\":\"Hantera biljetter\",\"DdHfeW\":\"Hantera dina kontouppgifter och standardinställningar\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Hantera dina användare och deras behörigheter\",\"1m+YT2\":\"Obligatoriska frågor måste besvaras innan kunden kan slutföra köpet.\",\"Dim4LO\":\"Lägg till deltagare manuellt\",\"e4KdjJ\":\"Lägg till deltagare manuellt\",\"vFjEnF\":\"Markera som betald\",\"g9dPPQ\":\"Max per order\",\"l5OcwO\":\"Meddela deltagare\",\"Gv5AMu\":\"Meddela deltagare\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Meddela köpare\",\"tNZzFb\":\"Meddelandeinnehåll\",\"lYDV/s\":\"Meddela enskilda deltagare\",\"V7DYWd\":\"Meddelande skickat\",\"t7TeQU\":\"Meddelanden\",\"xFRMlO\":\"Min per order\",\"QYcUEf\":\"Minimipris\",\"RDie0n\":\"Övrigt\",\"mYLhkl\":\"Övriga inställningar\",\"KYveV8\":\"Flerradigt textfält\",\"VD0iA7\":\"Flera prisalternativ. Perfekt för till exempel early bird-produkter.\",\"/bhMdO\":\"Min fantastiska evenemangsbeskrivning...\",\"vX8/tc\":\"Min fantastiska evenemangstitel...\",\"hKtWk2\":\"Min profil\",\"fj5byd\":\"Ej tillgängligt\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Namn\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Gå till deltagare\",\"qqeAJM\":\"Aldrig\",\"7vhWI8\":\"Nytt lösenord\",\"1UzENP\":\"Nej\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Inga arkiverade evenemang att visa.\",\"q2LEDV\":\"Inga deltagare hittades för denna order.\",\"zlHa5R\":\"Inga deltagare har lagts till i denna order.\",\"Wjz5KP\":\"Inga deltagare att visa\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Inga kapacitetstilldelningar\",\"a/gMx2\":\"Inga incheckningslistor\",\"tMFDem\":\"Ingen data tillgänglig\",\"6Z/F61\":\"Ingen data att visa. Välj ett datumintervall\",\"fFeCKc\":\"Ingen rabatt\",\"HFucK5\":\"Inga avslutade evenemang att visa.\",\"yAlJXG\":\"Inga evenemang att visa\",\"GqvPcv\":\"Inga filter tillgängliga\",\"KPWxKD\":\"Inga meddelanden att visa\",\"J2LkP8\":\"Inga ordrar att visa\",\"RBXXtB\":\"Inga betalningsmetoder är tillgängliga för närvarande. Kontakta arrangören för hjälp.\",\"ZWEfBE\":\"Ingen betalning krävs\",\"ZPoHOn\":\"Ingen produkt är kopplad till denna deltagare.\",\"Ya1JhR\":\"Inga produkter tillgängliga i denna kategori.\",\"FTfObB\":\"Inga produkter ännu\",\"+Y976X\":\"Inga kampanjkoder att visa\",\"MAavyl\":\"Inga frågor har besvarats av denna deltagare.\",\"SnlQeq\":\"Inga frågor har ställts för denna order.\",\"Ev2r9A\":\"Inga resultat\",\"gk5uwN\":\"Inga sökresultat\",\"RHyZUL\":\"Inga sökresultat.\",\"RY2eP1\":\"Inga skatter eller avgifter har lagts till.\",\"EdQY6l\":\"Ingen\",\"OJx3wK\":\"Inte tillgänglig\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Anteckningar\",\"jtrY3S\":\"Inget att visa ännu\",\"hFwWnI\":\"Aviseringsinställningar\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Meddela arrangören om nya ordrar\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Antal dagar tillåtet för betalning (lämna tomt för att utelämna betalningsvillkor från fakturor)\",\"n86jmj\":\"Nummerprefix\",\"mwe+2z\":\"Offlineordrar återspeglas inte i evenemangsstatistiken förrän ordern markeras som betald.\",\"dWBrJX\":\"Offlinebetalningen misslyckades. Försök igen eller kontakta arrangören.\",\"fcnqjw\":\"Instruktioner för offlinebetalning\",\"+eZ7dp\":\"Offlinebetalningar\",\"ojDQlR\":\"Information om offlinebetalningar\",\"u5oO/W\":\"Inställningar för offlinebetalningar\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"Till salu\",\"Ug4SfW\":\"När du skapar ett evenemang visas det här.\",\"ZxnK5C\":\"När du börjar samla in data visas det här.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Pågående\",\"z+nuVJ\":\"Onlineevenemang\",\"WKHW0N\":\"Information om onlineevenemang\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Öppna incheckningssida\",\"OdnLE4\":\"Öppna sidomeny\",\"ZZEYpT\":[\"Alternativ \",[\"i\"]],\"oPknTP\":\"Valfri extra information som visas på alla fakturor, till exempel betalningsvillkor, förseningsavgifter eller returpolicy\",\"OrXJBY\":\"Valfritt prefix för fakturanummer, till exempel INV-\",\"0zpgxV\":\"Alternativ\",\"BzEFor\":\"eller\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order nr\",\"B3gPuX\":\"Order avbruten\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Orderdatum\",\"Tol4BF\":\"Orderdetaljer\",\"WbImlQ\":\"Ordern har avbrutits och orderägaren har informerats.\",\"nAn4Oe\":\"Order markerad som betald\",\"uzEfRz\":\"Orderanteckningar\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Orderreferens\",\"acIJ41\":\"Orderstatus\",\"GX6dZv\":\"Ordersammanfattning\",\"tDTq0D\":\"Ordertidsgräns\",\"1h+RBg\":\"Ordrar\",\"3y+V4p\":\"Organisationens adress\",\"GVcaW6\":\"Organisationsuppgifter\",\"nfnm9D\":\"Organisationsnamn\",\"G5RhpL\":\"Arrangör\",\"mYygCM\":\"Arrangör krävs\",\"Pa6G7v\":\"Arrangörsnamn\",\"l894xP\":\"Arrangörer kan endast hantera evenemang och produkter. De kan inte hantera användare, kontoinställningar eller faktureringsinformation.\",\"fdjq4c\":\"Utfyllnad\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Sidan hittades inte\",\"QbrUIo\":\"Sidvisningar\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"betald\",\"HVW65c\":\"Betald produkt\",\"ZfxaB4\":\"Delvis återbetald\",\"8ZsakT\":\"Lösenord\",\"TUJAyx\":\"Lösenordet måste vara minst 8 tecken\",\"vwGkYB\":\"Lösenordet måste vara minst 8 tecken\",\"BLTZ42\":\"Lösenordet har återställts. Logga in med ditt nya lösenord.\",\"f7SUun\":\"Lösenorden är inte samma\",\"aEDp5C\":\"Klistra in detta där du vill att widgeten ska visas.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Betalning\",\"Lg+ewC\":\"Betalning och fakturering\",\"DZjk8u\":\"Inställningar för betalning och fakturering\",\"lflimf\":\"Betalningsfrist\",\"JhtZAK\":\"Betalning misslyckades\",\"JEdsvQ\":\"Betalningsinstruktioner\",\"bLB3MJ\":\"Betalningsmetoder\",\"QzmQBG\":\"Betalleverantör\",\"lsxOPC\":\"Betalning mottagen\",\"wJTzyi\":\"Betalningsstatus\",\"xgav5v\":\"Betalningen lyckades!\",\"R29lO5\":\"Betalningsvillkor\",\"/roQKz\":\"Procent\",\"vPJ1FI\":\"Procentbelopp\",\"xdA9ud\":\"Placera detta i -delen på din webbplats.\",\"blK94r\":\"Lägg till minst ett alternativ\",\"FJ9Yat\":\"Kontrollera att den angivna informationen är korrekt\",\"TkQVup\":\"Kontrollera din e-postadress och ditt lösenord och försök igen\",\"sMiGXD\":\"Kontrollera att din e-postadress är giltig\",\"Ajavq0\":\"Kontrollera din e-post för att bekräfta din e-postadress\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Fortsätt i den nya fliken\",\"hcX103\":\"Skapa en produkt\",\"cdR8d6\":\"Skapa en biljett\",\"x2mjl4\":\"Ange en giltig bild-URL som pekar på en bild.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Observera\",\"C63rRe\":\"Gå tillbaka till evenemangssidan för att börja om.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Välj minst en produkt\",\"igBrCH\":\"Verifiera din e-postadress för att få tillgång till alla funktioner\",\"/IzmnP\":\"Vänta medan vi förbereder din faktura...\",\"MOERNx\":\"Portugisiska\",\"qCJyMx\":\"Meddelande efter checkout\",\"g2UNkE\":\"Drivs av\",\"Rs7IQv\":\"Meddelande före checkout\",\"rdUucN\":\"Förhandsgranska\",\"a7u1N9\":\"Pris\",\"CmoB9j\":\"Visningsläge för pris\",\"BI7D9d\":\"Pris ej angivet\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Pristyp\",\"6RmHKN\":\"Primär färg\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primär textfärg\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Skriv ut alla biljetter\",\"DKwDdj\":\"Skriv ut biljetter\",\"K47k8R\":\"Produkt\",\"1JwlHk\":\"Produktkategori\",\"U61sAj\":\"Produktkategorin uppdaterades.\",\"1USFWA\":\"Produkten togs bort\",\"4Y2FZT\":\"Produktens pristyp\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Produktförsäljning\",\"U/R4Ng\":\"Produktnivå\",\"sJsr1h\":\"Produkttyp\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produkt(er)\",\"N0qXpE\":\"Produkter\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Sålda produkter\",\"/u4DIx\":\"Sålda produkter\",\"DJQEZc\":\"Produkter sorterades korrekt\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profilen uppdaterades\",\"cl5WYc\":[\"Kampanjkoden \",[\"promo_code\"],\" har tillämpats\"],\"P5sgAk\":\"Kampanjkod\",\"yKWfjC\":\"Sida för kampanjkoder\",\"RVb8Fo\":\"Kampanjkoder\",\"BZ9GWa\":\"Kampanjkoder kan användas för att erbjuda rabatter, förköp eller särskild åtkomst till ditt evenemang.\",\"OP094m\":\"Rapport för kampanjkoder\",\"4kyDD5\":\"Ge ytterligare sammanhang eller instruktioner för denna fråga. Använd detta fält för att lägga till villkor\\noch bestämmelser, riktlinjer eller annan viktig information som deltagare behöver veta innan de svarar.\",\"toutGW\":\"QR-kod\",\"LkMOWF\":\"Tillgängligt antal\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Frågan togs bort\",\"avf0gk\":\"Frågebeskrivning\",\"oQvMPn\":\"Frågetitel\",\"enzGAL\":\"Frågor\",\"ROv2ZT\":\"Frågor och svar\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radiovalsalternativ\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Mottagare\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Återbetalning misslyckades\",\"n10yGu\":\"Återbetala order\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Återbetalning väntar\",\"xHpVRl\":\"Återbetalningsstatus\",\"/BI0y9\":\"Återbetald\",\"fgLNSM\":\"Registrera\",\"9+8Vez\":\"Återstående användningar\",\"tasfos\":\"ta bort\",\"t/YqKh\":\"Ta bort\",\"t9yxlZ\":\"Rapporter\",\"prZGMe\":\"Kräv faktureringsadress\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Skicka e-postbekräftelse igen\",\"wIa8Qe\":\"Skicka inbjudan igen\",\"VeKsnD\":\"Skicka ordermail igen\",\"dFuEhO\":\"Skicka biljettmail igen\",\"o6+Y6d\":\"Skickar igen...\",\"OfhWJH\":\"Återställ\",\"RfwZxd\":\"Återställ lösenord\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Återställ evenemang\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Tillbaka till evenemangssidan\",\"8YBH95\":\"Intäkter\",\"PO/sOY\":\"Återkalla inbjudan\",\"GDvlUT\":\"Roll\",\"ELa4O9\":\"Slutdatum för försäljning\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Startdatum för försäljning\",\"hBsw5C\":\"Försäljningen är avslutad\",\"kpAzPe\":\"Försäljningen startar\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Spara\",\"IUwGEM\":\"Spara ändringar\",\"U65fiW\":\"Spara arrangör\",\"UGT5vp\":\"Spara inställningar\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Sök på deltagarnamn, e-post eller ordernummer...\",\"+pr/FY\":\"Sök på evenemangsnamn...\",\"3zRbWw\":\"Sök på namn, e-post eller ordernummer...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Sök på namn...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Sök kapacitetstilldelningar...\",\"r9M1hc\":\"Sök incheckningslistor...\",\"+0Yy2U\":\"Sök produkter\",\"YIix5Y\":\"Sök...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Sekundär färg\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Sekundär textfärg\",\"02ePaq\":[\"Välj \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Välj kategori...\",\"kWI/37\":\"Välj arrangör\",\"ixIx1f\":\"Välj produkt\",\"3oSV95\":\"Välj produktnivå\",\"C4Y1hA\":\"Välj produkter\",\"hAjDQy\":\"Välj status\",\"QYARw/\":\"Välj biljett\",\"OMX4tH\":\"Välj biljetter\",\"DrwwNd\":\"Välj tidsperiod\",\"O/7I0o\":\"Välj...\",\"JlFcis\":\"Skicka\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Skicka ett meddelande\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Skicka meddelande\",\"D7ZemV\":\"Skicka orderbekräftelse och biljettsmejl\",\"v1rRtW\":\"Skicka test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO-beskrivning\",\"/SIY6o\":\"SEO-nyckelord\",\"GfWoKv\":\"SEO-inställningar\",\"rXngLf\":\"SEO-titel\",\"/jZOZa\":\"Serviceavgift\",\"Bj/QGQ\":\"Ange ett minimipris och låt användare betala mer om de vill\",\"L0pJmz\":\"Ange startnummer för fakturanumrering. Detta kan inte ändras när fakturor väl har skapats.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Inställningar\",\"Z8lGw6\":\"Dela\",\"B2V3cA\":\"Dela evenemang\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Visa tillgängligt produktantal\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Visa mer\",\"izwOOD\":\"Visa moms och avgifter separat\",\"1SbbH8\":\"Visas för kunden efter att de har slutfört köpet, på ordersammanfattningssidan.\",\"YfHZv0\":\"Visas för kunden innan de slutför köpet\",\"CBBcly\":\"Visar vanliga adressfält, inklusive land\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Enradig textruta\",\"+P0Cn2\":\"Hoppa över detta steg\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Slutsålt\",\"Mi1rVn\":\"Slutsålt\",\"nwtY4N\":\"Något gick fel\",\"GRChTw\":\"Något gick fel när momsen eller avgiften skulle tas bort\",\"YHFrbe\":\"Något gick fel! Försök igen\",\"kf83Ld\":\"Något gick fel.\",\"fWsBTs\":\"Något gick fel. Försök igen.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Tyvärr, den här kampanjkoden känns inte igen\",\"65A04M\":\"Spanska\",\"mFuBqb\":\"Standardprodukt med ett fast pris\",\"D3iCkb\":\"Startdatum\",\"/2by1f\":\"Delstat eller region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe-betalningar är inte aktiverade för detta evenemang.\",\"UJmAAK\":\"Ämne\",\"X2rrlw\":\"Delsumma\",\"zzDlyQ\":\"Lyckades\",\"b0HJ45\":[\"Klart! \",[\"0\"],\" kommer snart att få ett e-postmeddelande.\"],\"BJIEiF\":[\"Lyckades \",[\"0\"],\" deltagare\"],\"OtgNFx\":\"E-postadressen bekräftades\",\"IKwyaF\":\"E-poständringen bekräftades\",\"zLmvhE\":\"Deltagaren skapades\",\"gP22tw\":\"Produkten skapades\",\"9mZEgt\":\"Kampanjkoden skapades\",\"aIA9C4\":\"Frågan skapades\",\"J3RJSZ\":\"Deltagaren uppdaterades\",\"3suLF0\":\"Kapacitetstilldelningen uppdaterades\",\"Z+rnth\":\"Incheckningslistan uppdaterades\",\"vzJenu\":\"E-postinställningarna uppdaterades\",\"7kOMfV\":\"Evenemanget uppdaterades\",\"G0KW+e\":\"Startsidedesignen uppdaterades\",\"k9m6/E\":\"Startsidesinställningarna uppdaterades\",\"y/NR6s\":\"Platsen uppdaterades\",\"73nxDO\":\"Övriga inställningar uppdaterades\",\"4H80qv\":\"Ordern uppdaterades\",\"6xCBVN\":\"Betalnings- och faktureringsinställningarna uppdaterades\",\"1Ycaad\":\"Produkt uppdaterad\",\"70dYC8\":\"Kampanjkoden uppdaterades\",\"F+pJnL\":\"SEO-inställningarna uppdaterades\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Supportmejl\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Moms\",\"geUFpZ\":\"Moms och avgifter\",\"dFHcIn\":\"Momsuppgifter\",\"wQzCPX\":\"Momsinformation som ska visas längst ned på alla fakturor (t.ex. momsnummer, skatteregistrering)\",\"0RXCDo\":\"Moms eller avgift togs bort\",\"ZowkxF\":\"Moms\",\"qu6/03\":\"Moms och avgifter\",\"gypigA\":\"Den kampanjkoden är ogiltig\",\"5ShqeM\":\"Incheckningslistan du letar efter finns inte.\",\"QXlz+n\":\"Standardvaluta för dina evenemang.\",\"mnafgQ\":\"Standardtidszon för dina evenemang.\",\"o7s5FA\":\"Språket som deltagaren kommer att få e-post på.\",\"NlfnUd\":\"Länken du klickade på är ogiltig.\",\"HsFnrk\":[\"Maximalt antal produkter för \",[\"0\"],\" är \",[\"1\"]],\"TSAiPM\":\"Sidan du letar efter finns inte\",\"MSmKHn\":\"Priset som visas för kunden inkluderar moms och avgifter.\",\"6zQOg1\":\"Priset som visas för kunden inkluderar inte moms och avgifter. De visas separat\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Titeln för evenemanget som visas i sökresultat och vid delning i sociala medier. Som standard används evenemangets titel\",\"wDx3FF\":\"Det finns inga produkter tillgängliga för det här evenemanget\",\"pNgdBv\":\"Det finns inga produkter tillgängliga i den här kategorin\",\"rMcHYt\":\"En återbetalning väntar. Vänta tills den är slutförd innan du begär en ny återbetalning.\",\"F89D36\":\"Det uppstod ett fel när ordern skulle markeras som betald\",\"68Axnm\":\"Det uppstod ett fel när din begäran skulle behandlas. Försök igen.\",\"mVKOW6\":\"Det uppstod ett fel när ditt meddelande skulle skickas\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Den här deltagaren har en obetald order.\",\"mf3FrP\":\"Den här kategorin har inga produkter ännu.\",\"8QH2Il\":\"Den här kategorin är dold för allmänheten\",\"xxv3BZ\":\"Den här incheckningslistan har löpt ut\",\"Sa7w7S\":\"Den här incheckningslistan har löpt ut och är inte längre tillgänglig för incheckning.\",\"Uicx2U\":\"Den här incheckningslistan är aktiv\",\"1k0Mp4\":\"Den här incheckningslistan är inte aktiv ännu\",\"K6fmBI\":\"Den här incheckningslistan är ännu inte aktiv och är inte tillgänglig för incheckning.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Den här informationen visas på betalningssidan, ordersammanfattningen och i orderbekräftelsen via e-post.\",\"XAHqAg\":\"Det här är en vanlig produkt, som en t-shirt eller en mugg. Ingen biljett utfärdas\",\"CNk/ro\":\"Det här är ett onlineevenemang\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Det här meddelandet inkluderas i sidfoten i alla mejl som skickas från detta evenemang\",\"55i7Fa\":\"Det här meddelandet visas endast om ordern slutförs. Ordrar som väntar på betalning visar inte detta meddelande\",\"RjwlZt\":\"Den här ordern är redan betald.\",\"5K8REg\":\"Den här ordern har redan återbetalats.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Den här ordern har avbrutits.\",\"Q0zd4P\":\"Den här ordern har löpt ut. Börja om.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Den här ordern är slutförd.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Den här ordersidan är inte längre tillgänglig.\",\"i0TtkR\":\"Detta åsidosätter alla synlighetsinställningar och döljer produkten för alla kunder.\",\"cRRc+F\":\"Den här produkten kan inte tas bort eftersom den är kopplad till en order. Du kan dölja den i stället.\",\"3Kzsk7\":\"Den här produkten är en biljett. Köpare får en biljett vid köp\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Den här länken för att återställa lösenordet är ogiltig eller har löpt ut.\",\"IV9xTT\":\"Den här användaren är inte aktiv eftersom hen inte har accepterat sin inbjudan.\",\"5AnPaO\":\"biljett\",\"kjAL4v\":\"Biljett\",\"dtGC3q\":\"Biljettmejlet har skickats igen till deltagaren\",\"54q0zp\":\"Biljetter för\",\"xN9AhL\":[\"Nivå \",[\"0\"]],\"jZj9y9\":\"Produkt med nivåer\",\"8wITQA\":\"Produkter med nivåer låter dig erbjuda flera prisalternativ för samma produkt. Perfekt för early bird-produkter eller för att erbjuda olika priser till olika grupper.\",\"nn3mSR\":\"Tid kvar:\",\"s/0RpH\":\"Antal gånger använd\",\"y55eMd\":\"Antal gånger använd\",\"40Gx0U\":\"Tidszon\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Verktyg\",\"72c5Qo\":\"Totalt\",\"YXx+fG\":\"Totalt före rabatter\",\"NRWNfv\":\"Totalt rabattbelopp\",\"BxsfMK\":\"Totala avgifter\",\"2bR+8v\":\"Total bruttoförsäljning\",\"mpB/d9\":\"Totalt orderbelopp\",\"m3FM1g\":\"Totalt återbetalt\",\"jEbkcB\":\"Totalt återbetalt\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total skatt\",\"+zy2Nq\":\"Typ\",\"FMdMfZ\":\"Det gick inte att checka in deltagaren\",\"bPWBLL\":\"Det gick inte att checka ut deltagaren\",\"9+P7zk\":\"Det gick inte att skapa produkten. Kontrollera dina uppgifter\",\"WLxtFC\":\"Det gick inte att skapa produkten. Kontrollera dina uppgifter\",\"/cSMqv\":\"Det gick inte att skapa frågan. Kontrollera dina uppgifter\",\"MH/lj8\":\"Det gick inte att uppdatera frågan. Kontrollera dina uppgifter\",\"nnfSdK\":\"Unika kunder\",\"Mqy/Zy\":\"USA\",\"NIuIk1\":\"Obegränsat\",\"/p9Fhq\":\"Obegränsat antal tillgängliga\",\"E0q9qH\":\"Obegränsat antal användningar tillåts\",\"h10Wm5\":\"Obetald order\",\"ia8YsC\":\"Kommande\",\"TlEeFv\":\"Kommande evenemang\",\"L/gNNk\":[\"Uppdatera \",[\"0\"]],\"+qqX74\":\"Uppdatera evenemangets namn, beskrivning och datum\",\"vXPSuB\":\"Uppdatera profil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL kopierad till urklipp\",\"e5lF64\":\"Exempel på användning\",\"fiV0xj\":\"Användningsgräns\",\"sGEOe4\":\"Använd en suddig version av omslagsbilden som bakgrund\",\"OadMRm\":\"Använd omslagsbild\",\"7PzzBU\":\"Användare\",\"yDOdwQ\":\"Användarhantering\",\"Sxm8rQ\":\"Användare\",\"VEsDvU\":\"Användare kan ändra sin e-postadress i <0>Profilinställningar\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"Moms\",\"E/9LUk\":\"Platsnamn\",\"jpctdh\":\"Visa\",\"Pte1Hv\":\"Visa deltagardetaljer\",\"/5PEQz\":\"Visa evenemangssida\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Visa på Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP-incheckningslista\",\"tF+VVr\":\"VIP-biljett\",\"2q/Q7x\":\"Synlighet\",\"vmOFL/\":\"Vi kunde inte behandla din betalning. Försök igen eller kontakta supporten.\",\"45Srzt\":\"Vi kunde inte ta bort kategorin. Försök igen.\",\"/DNy62\":[\"Vi kunde inte hitta några biljetter som matchar \",[\"0\"]],\"1E0vyy\":\"Vi kunde inte ladda data. Försök igen.\",\"NmpGKr\":\"Vi kunde inte ändra ordningen på kategorierna. Försök igen.\",\"BJtMTd\":\"Vi rekommenderar 1950×650 px, bildförhållande 3:1 och maximal filstorlek 5 MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Vi kunde inte bekräfta din betalning. Försök igen eller kontakta supporten.\",\"Gspam9\":\"Vi behandlar din order. Vänta...\",\"LuY52w\":\"Välkommen ombord! Logga in för att fortsätta.\",\"dVxpp5\":[\"Välkommen tillbaka\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Vad är nivåindelade produkter?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Vad är en kategori?\",\"gxeWAU\":\"Vilka produkter gäller den här koden för?\",\"hFHnxR\":\"Vilka produkter gäller den här koden för? (Gäller alla som standard)\",\"AeejQi\":\"Vilka produkter ska den här kapaciteten gälla för?\",\"Rb0XUE\":\"Vilken tid kommer du?\",\"5N4wLD\":\"Vilken typ av fråga är detta?\",\"gyLUYU\":\"När detta är aktiverat skapas fakturor för biljettordrar. Fakturor skickas tillsammans med orderbekräftelsen via e-post. Deltagare kan även ladda ner sina fakturor från orderbekräftelsesidan.\",\"D3opg4\":\"När offlinebetalningar är aktiverade kan användare slutföra sina ordrar och få sina biljetter. Biljetterna visar tydligt att ordern inte är betald, och incheckningsverktyget meddelar incheckningspersonalen om en order kräver betalning.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Vilka biljetter ska kopplas till den här incheckningslistan?\",\"S+OdxP\":\"Vem arrangerar det här evenemanget?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Vem ska få den här frågan?\",\"VxFvXQ\":\"Bädda in widget\",\"v1P7Gm\":\"Widgetinställningar\",\"b4itZn\":\"Arbetar\",\"hqmXmc\":\"Arbetar...\",\"+G/XiQ\":\"Hittills i år\",\"l75CjT\":\"Ja\",\"QcwyCh\":\"Ja, ta bort dem\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Du ändrar din e-postadress till <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Du är offline\",\"sdB7+6\":\"Du kan skapa en kampanjkod som riktar sig mot den här produkten på\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Du kan inte ändra produkttyp eftersom det finns deltagare kopplade till den här produkten.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Du kan inte checka in deltagare med obetalda ordrar. Den här inställningen kan ändras i evenemangsinställningarna.\",\"c9Evkd\":\"Du kan inte ta bort den sista kategorin.\",\"6uwAvx\":\"Du kan inte ta bort den här prisnivån eftersom det redan finns sålda produkter för nivån. Du kan dölja den i stället.\",\"tFbRKJ\":\"Du kan inte redigera kontoinnehavarens roll eller status.\",\"fHfiEo\":\"Du kan inte återbetala en manuellt skapad order.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Du har åtkomst till flera konton. Välj ett för att fortsätta.\",\"Z6q0Vl\":\"Du har redan accepterat den här inbjudan. Logga in för att fortsätta.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Du har ingen väntande ändring av e-postadress.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Tiden för att slutföra din order har gått ut.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Du måste bekräfta att det här e-postmeddelandet inte är reklam\",\"3ZI8IL\":\"Du måste godkänna villkoren\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Du måste skapa en biljett innan du kan lägga till en deltagare manuellt.\",\"jE4Z8R\":\"Du måste ha minst en prisnivå\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Du behöver markera en order som betald manuellt. Det kan göras på sidan för att hantera ordern.\",\"L/+xOk\":\"Du behöver en biljett innan du kan skapa en incheckningslista.\",\"Djl45M\":\"Du behöver en produkt innan du kan skapa en kapacitetstilldelning.\",\"y3qNri\":\"Du behöver minst en produkt för att komma igång. Gratis, betald eller låt användaren bestämma vad de vill betala.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Ditt kontonamn används på evenemangssidor och i e-post.\",\"veessc\":\"Dina deltagare visas här när de har registrerat sig för ditt evenemang. Du kan också lägga till deltagare manuellt.\",\"Eh5Wrd\":\"Din grymma webbplats 🎉\",\"lkMK2r\":\"Dina uppgifter\",\"3ENYTQ\":[\"Din begäran om att ändra e-postadress till <0>\",[\"0\"],\" väntar. Kontrollera din e-post för att bekräfta.\"],\"yZfBoy\":\"Ditt meddelande har skickats\",\"KSQ8An\":\"Din order\",\"Jwiilf\":\"Din order har avbokats\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Dina ordrar visas här när de börjar komma in.\",\"9TO8nT\":\"Ditt lösenord\",\"P8hBau\":\"Din betalning behandlas.\",\"UdY1lL\":\"Din betalning lyckades inte, försök igen.\",\"fzuM26\":\"Din betalning misslyckades. Försök igen.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Din återbetalning behandlas.\",\"IFHV2p\":\"Din biljett till\",\"x1PPdr\":\"Postnummer\",\"BM/KQm\":\"Postnummer\",\"+LtVBt\":\"Postnummer\",\"25QDJ1\":\"- Klicka för att publicera\",\"WOyJmc\":\"- Klicka för att avpublicera\",\"ncwQad\":\"(tom)\",\"B/gRsg\":\"(ingen)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" är redan incheckad\"],\"3beCx0\":[[\"0\"],\" <0>incheckad\"],\"S4PqS9\":[[\"0\"],\" aktiva webhooks\"],\"6MIiOI\":[[\"0\"],\" kvar\"],\"COnw8D\":[[\"0\"],\" logotyp\"],\"xG9N0H\":[[\"0\"],\" av \",[\"1\"],\" platser är upptagna.\"],\"B7pZfX\":[[\"0\"],\" arrangörer\"],\"rZTf6P\":[[\"0\"],\" platser kvar\"],\"/HkCs4\":[[\"0\"],\" biljetter\"],\"dtXkP9\":[[\"0\"],\" kommande datum\"],\"30bTiU\":[[\"activeCount\"],\" aktiverade\"],\"jTs4am\":[[\"appName\"],\"-logotyp\"],\"gbJOk9\":[[\"attendeeCount\"],\" deltagare är registrerade för detta tillfälle.\"],\"TjbIUI\":[[\"availableCount\"],\" av \",[\"totalCount\"],\" tillgängliga\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" incheckade\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[\"för \",[\"diffHr\"],\" tim sedan\"],\"NRSLBe\":[\"för \",[\"diffMin\"],\" min sedan\"],\"iYfwJE\":[\"för \",[\"diffSec\"],\" sek sedan\"],\"OJnhhX\":[[\"eventCount\"],\" evenemang\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" deltagare är registrerade över de berörda tillfällena.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" biljettkategorier\"],\"0cLzoF\":[[\"totalOccurrences\"],\" datum\"],\"AEGc4t\":[[\"totalOccurrences\"],\" tillfällen över \",[\"0\"],\" datum (\",[\"1\",\"plural\",{\"one\":[\"#\",\" tillfälle\"],\"other\":[\"#\",\" tillfällen\"]}],\" per dag)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Skatt/Avgifter\",\"B1St2O\":\"<0>Incheckningslistor hjälper dig att hantera evenemangets entré per dag, område eller biljetttyp. Du kan länka biljetter till specifika listor som VIP-zoner eller Dag 1-pass och dela en säker incheckningslänk med personal. Inget konto krävs. Incheckning fungerar på mobil, dator eller surfplatta med enhetens kamera eller HID USB-skanner.\",\"v9VSIS\":\"<0>Ställ in en enda total deltagarbegränsning som gäller för flera biljettyper samtidigt.<1>Om du till exempel länkar en <2>Dagsbiljett och en <3>Helgbiljett, kommer de båda att använda samma pool av platser. När gränsen är nådd slutar alla länkade biljetter automatiskt att säljas.\",\"vKXqag\":\"<0>Detta är standardantalet för alla datum. Varje datums kapacitet kan ytterligare begränsa tillgängligheten på <1>sidan Tillfällesschema.\",\"ZnVt5v\":\"<0>Webhooks meddelar omedelbart externa tjänster när händelser inträffar, till exempel att lägga till en ny deltagare i ditt CRM eller din e-postlista vid registrering, vilket ger sömlös automation.<1>Använd tredjepartstjänster som <2>Zapier, <3>IFTTT eller <4>Make för att skapa anpassade arbetsflöden och automatisera uppgifter.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" vid aktuell kurs\"],\"M2DyLc\":\"1 aktiv webhook\",\"6hIk/x\":\"1 deltagare är registrerad över de berörda tillfällena.\",\"qOyE2U\":\"1 deltagare är registrerad för detta tillfälle.\",\"943BwI\":\"1 dag efter slutdatum\",\"yj3N+g\":\"1 dag efter startdatum\",\"Z3etYG\":\"1 dag före evenemanget\",\"szSnlj\":\"1 timme före evenemanget\",\"yTsaLw\":\"1 biljett\",\"nz96Ue\":\"1 biljettyp\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 vecka före evenemanget\",\"09VFYl\":\"12 biljetter erbjudna\",\"HR/cvw\":\"Exempelgatan 123\",\"dgKxZ5\":\"135+ valutor och 40+ betalningsmetoder\",\"kMU5aM\":\"Ett avbokningsmeddelande har skickats till\",\"o++0qa\":\"en ändring i varaktighet\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"En ny verifieringskod har skickats till din e-post\",\"sr2Je0\":\"en förskjutning av start-/sluttider\",\"/z/bH1\":\"En kort beskrivning av din arrangör som visas för dina användare.\",\"aS0jtz\":\"Övergiven\",\"uyJsf6\":\"Om\",\"JvuLls\":\"Absorbera avgift\",\"lk74+I\":\"Absorbera Avgift\",\"1uJlG9\":\"Accentfärg\",\"g3UF2V\":\"Acceptera\",\"K5+3xg\":\"Acceptera inbjudan\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Konto · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Kontoinformation\",\"EHNORh\":\"Konto hittades inte\",\"bPwFdf\":\"Konton\",\"AhwTa1\":\"Åtgärd krävs: Momsinformation krävs\",\"APyAR/\":\"Aktiva evenemang\",\"kCl6ja\":\"Aktiva betalningsmetoder\",\"XJOV1Y\":\"Aktivitet\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Lägg till ett datum\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Lägg till ett enstaka datum\",\"CjvTPJ\":\"Lägg till en annan tid\",\"0XCduh\":\"Lägg till minst en tid\",\"/chGpa\":\"Lägg till anslutningsuppgifter för onlineevenemanget.\",\"UWWRyd\":\"Lägg till fråga\",\"Z/dcxc\":\"Lägg till datum\",\"Q219NT\":\"Lägg till datum\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Lägg till plats\",\"VX6WUv\":\"Lägg till plats\",\"GCQlV2\":\"Lägg till flera tider om du kör flera tillfällen per dag.\",\"7JF9w9\":\"Lägg till fråga\",\"NLbIb6\":\"Lägg till denna deltagare ändå (kringgå kapacitet)\",\"6PNlRV\":\"Lägg till detta evenemang i din kalender\",\"BGD9Yt\":\"Lägg till biljetter\",\"uIv4Op\":\"Lägg till spårningspixlar på dina offentliga evenemangssidor och arrangörens startsida. En cookie-medgivandebanner visas för besökare när spårning är aktiv.\",\"QN2F+7\":\"Lägg till webhook\",\"NsWqSP\":\"Lägg till dina sociala mediekonton och din webbplats URL. Dessa kommer att visas på din offentliga arrangörssida.\",\"bVjDs9\":\"Ytterligare avgifter\",\"MKqSg4\":\"Administratörsåtkomst krävs\",\"0Zypnp\":\"Adminpanel\",\"YAV57v\":\"Partner\",\"I+utEq\":\"Partnerkoden kan inte ändras\",\"/jHBj5\":\"Partnern skapades\",\"uCFbG2\":\"Partern raderades\",\"ld8I+f\":\"Affiliateprogram\",\"a41PKA\":\"Partnerförsäljning kommer att spåras\",\"mJJh2s\":\"Partnerförsäljning kommer inte att spåras. Detta kommer att inaktivera affiliaten.\",\"jabmnm\":\"Partern uppdaterades\",\"CPXP5Z\":\"Partners\",\"9Wh+ug\":\"Partners exporterades\",\"3cqmut\":\"Partners hjälper dig att spåra försäljning som genereras av partners och influencers. Skapa partnerkoder och dela dem för att övervaka resultat.\",\"z7GAMJ\":\"alla\",\"N40H+G\":\"Alla\",\"7rLTkE\":\"Alla arkiverade evenemang\",\"gKq1fa\":\"Alla deltagare\",\"63gRoO\":\"Alla deltagare för de valda tillfällena\",\"uWxIoH\":\"Alla deltagare för detta tillfälle\",\"pMLul+\":\"Alla valutor\",\"sgUdRZ\":\"Alla datum\",\"e4q4uO\":\"Alla datum\",\"ZS/D7f\":\"Alla avslutade evenemang\",\"QsYjci\":\"Alla evenemang\",\"31KB8w\":\"Alla misslyckade jobb borttagna\",\"D2g7C7\":\"Alla jobb köade för nytt försök\",\"B4RFBk\":\"Alla matchande datum\",\"F1/VgK\":\"Alla tillfällen\",\"OpWjMq\":\"Alla tillfällen\",\"Sxm1lO\":\"Alla statusar\",\"dr7CWq\":\"Alla kommande evenemang\",\"GpT6Uf\":\"Tillåt deltagare att uppdatera deras biljettinformation (namn, epost) via säker länk skickad med deras orderinformation.\",\"F3mW5G\":\"Tillåt kunder att gå med i en väntelista när denna produkt är slutsåld\",\"c4uJfc\":\"Snart klart! Vi väntar bara på att din betalning ska behandlas. Det tar bara några sekunder.\",\"ocS8eq\":[\"Har du redan ett konto? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Redan inne\",\"/H326L\":\"Redan återbetald\",\"USEpOK\":\"Använder du redan Stripe på en annan arrangör? Återanvänd den anslutningen.\",\"RtxQTF\":\"Avboka även denna order\",\"jkNgQR\":\"Återbetala även denna order\",\"xYqsHg\":\"Alltid tillgänglig\",\"Wvrz79\":\"Betalt belopp\",\"Zkymb9\":\"En e-postadress att koppla till denna partner. Partnern kommer inte att meddelas.\",\"vRznIT\":\"Ett fel uppstod vid kontroll av exportstatus.\",\"eusccx\":\"Ett valfritt meddelande att visa på den markerade produkten, t.ex. \\\"Säljer snabbt 🔥\\\" eller \\\"Bästa värdet\\\"\",\"5GJuNp\":[\"och \",[\"0\"],\" till...\"],\"QNrkms\":\"Svaret uppdaterades\",\"+qygei\":\"Svar\",\"GK7Lnt\":\"Svar vid kassan (t.ex. maträtt)\",\"lE8PgT\":\"Alla datum som du manuellt har anpassat behålls.\",\"vP3Nzg\":[\"Gäller \",[\"0\"],\", ej avbokade datum som för närvarande är inlästa på denna sida.\"],\"kkVyZZ\":\"Gäller alla som öppnar länken utan att vara inloggade. Inloggade ser alltid allt.\",\"je4muG\":[\"Gäller varje \",[\"0\"],\", ej avbokat datum i detta evenemang — inklusive datum som inte är inlästa.\"],\"YIIQtt\":\"Tillämpa ändringar\",\"NzWX1Y\":\"Tillämpa på\",\"Ps5oDT\":\"Tillämpa på alla biljetter\",\"261RBr\":\"Godkänn meddelande\",\"naCW6Z\":\"April\",\"B495Gs\":\"Arkivera\",\"5sNliy\":\"Arkivera evenemang\",\"BrwnrJ\":\"Arkivera arrangör\",\"E5eghW\":\"Arkivera detta evenemang för att dölja det för allmänheten. Du kan återställa det senare.\",\"eqFkeI\":\"Arkivera denna arrangör. Detta kommer också att arkivera alla evenemang som tillhör denna arrangör.\",\"BzcxWv\":\"Arkiverade arrangörer\",\"9cQBd6\":\"Är du säker på att du vill arkivera detta evenemang? Det kommer inte längre att vara synligt för allmänheten.\",\"Trnl3E\":\"Är du säker på att du vill arkivera denna arrangör? Detta kommer också att arkivera alla evenemang som tillhör denna arrangör.\",\"wOvn+e\":[\"Är du säker på att du vill avboka \",[\"count\"],\" datum? Berörda deltagare meddelas via e-post.\"],\"GTxE0U\":\"Är du säker på att du vill avboka detta datum? Berörda deltagare meddelas via e-post.\",\"VkSk/i\":\"Är du säker på att du vill avbryta detta schemalagda meddelande?\",\"0aVEBY\":\"Är du säker på att du vill ta bort alla misslyckade jobb?\",\"LchiNd\":\"Är du säker på att du vill ta bort denna partner? Denna åtgärd kan inte ångras.\",\"vPeW/6\":\"Är du säker på att du vill ta bort denna konfiguration? Detta kan påverka konton som använder den.\",\"h42Hc/\":\"Är du säker på att du vill ta bort detta datum? Denna åtgärd kan inte ångras.\",\"JmVITJ\":\"Är du säker på att du vill ta bort denna mall? Denna åtgärd kan inte ångras och e-post kommer att återgå till standardmallen.\",\"aLS+A6\":\"Är du säker på att du vill ta bort denna mall? Denna åtgärd kan inte ångras och e-post kommer att återgå till arrangörens eller standardmallen.\",\"5H3Z78\":\"Är du säker på att du vill ta bort denna webhook?\",\"147G4h\":\"Är du säker på att du vill lämna?\",\"VDWChT\":\"Är du säker på att du vill göra denna arrangör till ett utkast? Detta gör arrangörssidan osynlig för allmänheten\",\"pWtQJM\":\"Är du säker på att du vill publicera denna arrangör? Detta gör arrangörssidan synlig för allmänheten\",\"EOqL/A\":\"Är du säker på att du vill erbjuda en plats till denna person? De kommer att få ett e-postmeddelande.\",\"yAXqWW\":\"Är du säker på att du vill ta bort detta datum permanent? Detta kan inte ångras.\",\"WFHOlF\":\"Är du säker på att du vill publicera detta evenemang? När det är publicerat blir det synligt för allmänheten.\",\"4TNVdy\":\"Är du säker på att du vill publicera denna arrangörsprofil? När den är publicerad blir den synlig för allmänheten.\",\"8x0pUg\":\"Är du säker på att du vill ta bort denna post från väntelistan?\",\"cDtoWq\":[\"Vill du verkligen skicka om orderbekräftelsen till \",[\"0\"],\"?\"],\"xeIaKw\":[\"Vill du verkligen skicka om biljetten till \",[\"0\"],\"?\"],\"BjbocR\":\"Är du säker på att du vill återställa detta evenemang?\",\"7MjfcR\":\"Är du säker på att du vill återställa denna arrangör?\",\"ExDt3P\":\"Är du säker på att du vill avpublicera detta evenemang? Det kommer inte längre vara synligt för allmänheten.\",\"5Qmxo/\":\"Är du säker på att du vill avpublicera denna arrangörsprofil? Den kommer inte längre vara synlig för allmänheten.\",\"Uqefyd\":\"Är du momsregistrerad i EU?\",\"+QARA4\":\"Konst\",\"tLf3yJ\":\"Eftersom ditt företag är baserat i Irland tillämpas irländsk moms på 23% automatiskt på alla plattformsavgifter.\",\"tMeVa/\":\"Be om namn och e-post för varje biljett som köps\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Tilldela plan\",\"xdiER7\":\"Tilldelad nivå\",\"F2rX0R\":\"Minst en evenemangstyp måste väljas\",\"BCmibk\":\"Försök\",\"6PecK3\":\"Närvaro och incheckningsfrekvens för alla evenemang\",\"K2tp3v\":\"deltagare\",\"AJ4rvK\":\"Deltagare avbokad\",\"qvylEK\":\"Deltagare skapad\",\"Aspq3b\":\"Insamling av deltagaruppgifter\",\"fpb0rX\":\"Deltagaruppgifter kopierade från order\",\"0R3Y+9\":\"Deltagarens e-postadress\",\"94aQMU\":\"Deltagarinformation\",\"KkrBiR\":\"Insamling av deltagarinformation\",\"av+gjP\":\"Deltagarens namn\",\"sjPjOg\":\"Deltagaranteckningar\",\"cosfD8\":\"Deltagarstatus\",\"D2qlBU\":\"Deltagare uppdaterad\",\"22BOve\":\"Deltagare uppdaterades framgångsrikt\",\"x8Vnvf\":\"Deltagarens biljett ingår inte i denna lista\",\"/Ywywr\":\"deltagare\",\"zLRobu\":\"deltagare incheckade\",\"k3Tngl\":\"Deltagare exporterade\",\"UoIRW8\":\"Deltagare registrerade\",\"5UbY+B\":\"Deltagare med en specifik biljett\",\"4HVzhV\":\"Deltagare:\",\"HVkhy2\":\"Attributionsanalys\",\"dMMjeD\":\"Attributionsuppdelning\",\"1oPDuj\":\"Attributionsvärde\",\"DBHTm/\":\"Augusti\",\"JgREph\":\"Automatiskt erbjudande är aktiverat\",\"V7Tejz\":\"Automatisk hantering av väntelista\",\"PZ7FTW\":\"Identifieras automatiskt baserat på bakgrundsfärg, men kan åsidosättas\",\"zlnTuI\":\"Erbjud automatiskt biljetter till nästa person när kapacitet blir tillgänglig. Om inaktiverat kan du manuellt behandla väntelistan från väntelistesidan.\",\"csDS2L\":\"Tillgängligt\",\"clF06r\":\"Tillgängligt för återbetalning\",\"NB5+UG\":\"Tillgängliga tokens\",\"L+wGOG\":\"Väntande\",\"qcw2OD\":\"Väntar betalning\",\"kNmmvE\":\"Awesome Events Ltd.\",\"iH8pgl\":\"Tillbaka\",\"TeSaQO\":\"Tillbaka till konton\",\"X7Q/iM\":\"Tillbaka till kalender\",\"kYqM1A\":\"Tillbaka till evenemanget\",\"s5QRF3\":\"Tillbaka till meddelanden\",\"td/bh+\":\"Tillbaka till rapporter\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Grundpris\",\"hviJef\":\"Baserat på den globala försäljningsperioden ovan, inte per datum\",\"jIPNJG\":\"Grundläggande information\",\"UabgBd\":\"Meddelandet är obligatoriskt\",\"HWXuQK\":\"Bokmärk denna sida för att hantera din order när som helst.\",\"CUKVDt\":\"Profilera dina biljetter med en anpassad logotyp, färger och sidfotmeddelande.\",\"4BZj5p\":\"Inbyggt bedrägeriskydd\",\"cr7kGH\":\"Massredigera\",\"1Fbd6n\":\"Massredigera datum\",\"Eq6Tu9\":\"Massuppdatering misslyckades.\",\"9N+p+g\":\"Företag\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Företagsnamn\",\"bv6RXK\":\"Knapptext\",\"ChDLlO\":\"Knapptext\",\"BUe8Wj\":\"Köparen betalar\",\"qF1qbA\":\"Köpare ser ett rent pris. Plattformavgiften dras från din utbetalning.\",\"dg05rc\":\"Genom att lägga till spårningspixlar bekräftar du att du och denna plattform är gemensamt ansvariga för insamlade uppgifter. Du ansvarar för att säkerställa att du har en rättslig grund för denna behandling enligt tillämpliga integritetslagar (GDPR, CCPA, etc.).\",\"DFqasq\":[\"Genom att fortsätta godkänner du <0>\",[\"0\"],\" användarvillkor\"],\"wVSa+U\":\"Per dag i månaden\",\"0MnNgi\":\"Per veckodag\",\"CetOZE\":\"Per biljettyp\",\"lFdbRS\":\"Kringgå applikationsavgifter\",\"AjVXBS\":\"Kalender\",\"alkXJ5\":\"Kalendervy\",\"2VLZwd\":\"Uppmaningsknapp\",\"rT2cV+\":\"Kamera\",\"7hYa9y\":\"Kameraåtkomst nekades. <0>Begär åtkomst igen, eller ge sidan kameraåtkomst i webbläsarinställningarna.\",\"D02dD9\":\"Kampanj\",\"RRPA79\":\"Kan inte checka in\",\"OcVwAd\":[\"Avboka \",[\"count\"],\" datum\"],\"H4nE+E\":\"Avbryt alla produkter och släpp tillbaka dem till poolen\",\"Py78q9\":\"Avboka datum\",\"tOXAdc\":\"Avbrytande kommer att avbryta alla deltagare som är kopplade till denna order och släppa tillbaka biljetterna till den tillgängliga poolen.\",\"vev1Jl\":\"Avbokning\",\"Ha17hq\":[\"Avbokade \",[\"0\"],\" datum\"],\"01sEfm\":\"Det går inte att ta bort systemets standardkonfiguration\",\"VsM1HH\":\"Kapacitetstilldelningar\",\"9bIMVF\":\"Kapacitetshantering\",\"H7K8og\":\"Kapaciteten måste vara 0 eller större\",\"nzao08\":\"kapacitetsuppdateringar\",\"4cp9NP\":\"Använd kapacitet\",\"K7tIrx\":\"Kategori\",\"o+XJ9D\":\"Ändra\",\"kJkjoB\":\"Ändra varaktighet\",\"J0KExZ\":\"Ändra deltagargränsen\",\"CIHJJf\":\"Ändra väntlistinställningar\",\"B5icLR\":[\"Ändrade varaktighet för \",[\"count\"],\" datum\"],\"Kb+0BT\":\"Debiteringar\",\"2tbLdK\":\"Välgörenhet\",\"BPWGKn\":\"Checka in\",\"6uFFoY\":\"Checka ut\",\"FjAlwK\":[\"Kolla in detta evenemang: \",[\"0\"]],\"v4fiSg\":\"Kontrollera din e-post\",\"51AsAN\":\"Kontrollera din inkorg! Om biljetter är kopplade till denna e-postadress får du en länk för att visa dem.\",\"Y3FYXy\":\"Incheckning\",\"udRwQs\":\"Incheckning skapad\",\"F4SRy3\":\"Incheckning borttagen\",\"as6XfO\":[\"Incheckning av \",[\"0\"],\" ångrades\"],\"9s/wrQ\":\"Incheckningshistorik\",\"Wwztk4\":\"Incheckningslista\",\"9gPPUY\":\"Incheckningslista skapad\",\"dwjiJt\":\"Info för listan\",\"7od0PV\":\"incheckningslistor\",\"f2vU9t\":\"Incheckningslistor\",\"XprdTn\":\"Incheckningsnavigering\",\"5tV1in\":\"Incheckningsförlopp\",\"SHJwyq\":\"Incheckningsgrad\",\"qCqdg6\":\"Incheckningsstatus\",\"cKj6OE\":\"Incheckningssammanfattning\",\"7B5M35\":\"Incheckningar\",\"VrmydS\":\"Incheckad\",\"DM4gBB\":\"Kinesiska (traditionell)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Välj en annan åtgärd\",\"fkb+y3\":\"Välj en sparad plats att tillämpa.\",\"Zok1Gx\":\"Välj en arrangör\",\"pkk46Q\":\"Välj en organisatör\",\"Crr3pG\":\"Välj kalender\",\"LAW8Vb\":\"Välj standardinställningen för nya evenemang. Detta kan åsidosättas för enskilda evenemang.\",\"pjp2n5\":\"Välj vem som betalar plattformsavgiften. Detta påverkar inte ytterligare avgifter som du har konfigurerat i dina kontoinställningar.\",\"xCJdfg\":\"Rensa\",\"QyOWu9\":\"Rensa plats — återgå till evenemangets standard\",\"V8yTm6\":\"Rensa sökning\",\"kmnKnX\":\"Att rensa tar bort alla åsidosättningar per tillfälle. Berörda tillfällen återgår till evenemangets standardplats.\",\"/o+aQX\":\"Klicka för att avbryta\",\"gD7WGV\":\"Klicka för att öppna igen för ny försäljning\",\"CySr+W\":\"Klicka för att visa anteckningar\",\"RG3szS\":\"stäng\",\"RWw9Lg\":\"Stäng dialogruta\",\"XwdMMg\":\"Koden får endast innehålla bokstäver, siffror, bindestreck och understreck\",\"+yMJb7\":\"Kod är obligatorisk\",\"m9SD3V\":\"Koden måste vara minst 3 tecken\",\"V1krgP\":\"Koden får vara högst 20 tecken\",\"psqIm5\":\"Samarbeta med ditt team för att skapa fantastiska evenemang tillsammans.\",\"4bUH9i\":\"Samla in deltagaruppgifter för varje köpt biljett.\",\"TkfG8v\":\"Hämta detaljer per order\",\"96ryID\":\"Hämta detaljer per biljett\",\"FpsvqB\":\"Färgläge\",\"jEu4bB\":\"Kolumner\",\"CWk59I\":\"Komedi\",\"rPA+Gc\":\"Kommunikationspreferens\",\"zFT5rr\":\"klart\",\"bUQMpb\":\"Slutför Stripe-installationen\",\"744BMm\":\"Slutför din beställning för att säkra dina biljetter. Detta erbjudande är tidsbegränsat, så vänta inte för länge.\",\"5YrKW7\":\"Slutför din betalning för att säkra dina biljetter.\",\"xGU92i\":\"Slutför din profil för att gå med i laget.\",\"QOhkyl\":\"Skriv\",\"ih35UP\":\"Konferenscenter\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Konfiguration tilldelad\",\"X1zdE7\":\"Konfiguration skapad\",\"mLBUMQ\":\"Konfiguration borttagen\",\"UIENhw\":\"Konfigurationsnamn är synliga för slutanvändare. Fasta avgifter kommer att konverteras till ordervalutan enligt aktuell växelkurs.\",\"eeZdaB\":\"Konfiguration uppdaterad\",\"3cKoxx\":\"Konfigurationer\",\"8v2LRU\":\"Konfigurera evenemangsdetaljer, plats, kassainställningar och epost notifikationer.\",\"raw09+\":\"Konfigurera hur deltagaruppgifter samlas in i kassan\",\"FI60XC\":\"Konfigurera skatter och avgifter\",\"av6ukY\":\"Konfigurera vilka produkter som är tillgängliga för detta tillfälle och justera eventuellt priserna.\",\"NGXKG/\":\"Bekräfta e-postadress\",\"JRQitQ\":\"Bekräfta nytt lösenord\",\"Auz0Mz\":\"Bekräfta din e-postadress för att få tillgång till alla funktioner.\",\"7+grte\":\"Bekräftelsemail skickat. Kontrollera din inkorg.\",\"n/7+7Q\":\"Bekräftelse skickad till\",\"x3wVFc\":\"Grattis! Ditt evenemang är nu synligt för allmänheten.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Anslut Stripe för att aktivera redigering av e-postmallar\",\"LmvZ+E\":\"Anslut Stripe för att aktivera meddelanden\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakta \",[\"0\"]],\"41BQ3k\":\"Kontakt-e-post\",\"KcXRN+\":\"Kontakt-e-post för support\",\"m8WD6t\":\"Fortsätt konfigurering\",\"0GwUT4\":\"Fortsätt till kassan\",\"sBV87H\":\"Fortsätt till skapande av evenemang\",\"nKtyYu\":\"Fortsätt till nästa steg\",\"F3/nus\":\"Fortsätt till betalning\",\"p2FRHj\":\"Kontrollera hur plattformsavgifter hanteras för detta evenemang\",\"NqfabH\":\"Kontrollera vem som kommer in för detta datum\",\"fmYxZx\":\"Vem som kommer in, och när\",\"1JnTgU\":\"Kopierad från ovan\",\"FxVG/l\":\"Kopierad till urklipp\",\"PiH3UR\":\"Kopierad!\",\"4i7smN\":\"Kopiera konto-ID\",\"uUPbPg\":\"Kopiera partnerlänk\",\"iVm46+\":\"Kopiera kod\",\"cF2ICc\":\"Kopiera kundlänk\",\"+2ZJ7N\":\"Kopiera uppgifter till första deltagaren\",\"ZN1WLO\":\"Kopiera e-post\",\"y1eoq1\":\"Kopiera länk\",\"tUGbi8\":\"Kopiera mina uppgifter till:\",\"y22tv0\":\"Kopiera denna länk för att dela den var som helst\",\"/4gGIX\":\"Kopiera till urklipp\",\"e0f4yB\":\"Kunde inte ta bort plats\",\"vkiDx2\":\"Kunde inte förbereda massuppdateringen.\",\"KOavaU\":\"Kunde inte hämta adressuppgifter\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Kunde inte spara datum\",\"eeLExK\":\"Kunde inte spara plats\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Omslagsbild\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Omslagsbilden visas högst upp på din evenemangssida\",\"2NLjA6\":\"Omslagsbilden visas högst upp på din organisatörssida\",\"GkrqoY\":\"Täcker alla biljetter\",\"zg4oSu\":[\"Skapa mall för \",[\"0\"]],\"RKKhnW\":\"Skapa en anpassad widget för att sälja biljetter på din webbplats.\",\"6sk7PP\":\"Skapa ett fast antal\",\"PhioFp\":\"Skapa en ny incheckningslista för ett aktivt tillfälle, eller kontakta arrangören om du tror att detta är ett misstag.\",\"yIRev4\":\"Skapa ett lösenord\",\"j7xZ7J\":\"Skapa ytterligare arrangörer för att hantera separata varumärken, avdelningar eller evenemangsserier under ett konto. Varje arrangör har sina egna evenemang, inställningar och offentliga sida.\",\"xfKgwv\":\"Skapa partner\",\"tudG8q\":\"Skapa och konfigurera biljetter och produkter till försäljning.\",\"YAl9Hg\":\"Skapa konfiguration\",\"BTne9e\":\"Skapa anpassade e-postmallar för detta evenemang som åsidosätter organisatörens standardinställningar\",\"YIDzi/\":\"Skapa anpassad mall\",\"tsGqx5\":\"Skapa datum\",\"Nc3l/D\":\"Skapa rabatter, åtkomstkoder för dolda biljetter och specialerbjudanden.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Skapa för detta datum\",\"eWEV9G\":\"Skapa nytt lösenord\",\"wl2iai\":\"Skapa schema\",\"8AiKIu\":\"Skapa biljett eller produkt\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Skapa spårbar länk för att belöna partners som har delat till event.\",\"dkAPxi\":\"Skapa webhook\",\"5slqwZ\":\"Skapa ditt evenemang\",\"JQNMrj\":\"Skapa ditt första evenemang\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Skapa ditt eget evenemang\",\"67NsZP\":\"Skapar evenemang...\",\"H34qcM\":\"Skapar organisatör...\",\"1YMS+X\":\"Skapar ditt evenemang, vänligen vänta\",\"yiy8Jt\":\"Skapar din organisatörsprofil, vänligen vänta\",\"lfLHNz\":\"CTA-text är obligatorisk\",\"0xLR6W\":\"För närvarande tilldelad\",\"iTvh6I\":\"För närvarande tillgänglig för köp\",\"A42Dqn\":\"Anpassad varumärkesprofil\",\"Guo0lU\":\"Anpassat datum och tid\",\"mimF6c\":\"Anpassat meddelande efter kassan\",\"WDMdn8\":\"Anpassade frågor\",\"O6mra8\":\"Anpassade frågor\",\"axv/Mi\":\"Anpassad mall\",\"2YeVGY\":\"Kundlänk kopierad till urklipp\",\"QMHSMS\":\"Kunden kommer att få ett e-postmeddelande som bekräftar återbetalningen\",\"L/Qc+w\":\"Kundens e-postadress\",\"wpfWhJ\":\"Kundens förnamn\",\"GIoqtA\":\"Kundens efternamn\",\"NihQNk\":\"Kunder\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Anpassa e-postmeddelanden som skickas till dina kunder med Liquid-mallar. Dessa mallar används som standard för alla evenemang i din organisation.\",\"xJaTUK\":\"Anpassa layout, färger och varumärkesprofil för ditt evenemangs startsida.\",\"MXZfGN\":\"Anpassa frågorna som ställs i kassan för att samla in viktig information från dina deltagare.\",\"iX6SLo\":\"Anpassa texten som visas på fortsätt-knappen\",\"pxNIxa\":\"Anpassa din e-postmall med Liquid-mallar\",\"3trPKm\":\"Anpassa utseendet på din organisatörssida\",\"U0sC6H\":\"Dagligen\",\"/gWrVZ\":\"Dagliga intäkter, skatter, avgifter och återbetalningar för alla evenemang\",\"zgCHnE\":\"Daglig försäljningsrapport\",\"nHm0AI\":\"Daglig sammanställning av försäljning, skatt och avgifter\",\"1aPnDT\":\"Dans\",\"pvnfJD\":\"Mörk\",\"MaB9wW\":\"Datumavbokning\",\"e6cAxJ\":\"Datum avbokat\",\"81jBnC\":\"Datum avbokat\",\"a/C/6R\":\"Datum skapat\",\"IW7Q+u\":\"Datum borttaget\",\"rngCAz\":\"Datum borttaget\",\"lnYE59\":\"Datum för evenemanget\",\"gnBreG\":\"Datum då ordern lades\",\"vHbfoQ\":\"Datum återaktiverat\",\"hvah+S\":\"Datum öppnat igen för ny försäljning\",\"Ez0YsD\":\"Datum uppdaterat\",\"VTsZuy\":\"Datum och tider hanteras på\",\"/ITcnz\":\"dag\",\"H7OUPr\":\"Dag\",\"JtHrX9\":\"Dag i månaden\",\"J/Upwb\":\"dagar\",\"vDVA2I\":\"Dagar i månaden\",\"rDLvlL\":\"Veckodagar\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Avböj\",\"ovBPCi\":\"Standard\",\"JtI4vj\":\"Standardinsamling av deltagarinformation\",\"ULjv90\":\"Standardkapacitet per datum\",\"3R/Tu2\":\"Standard avgiftshantering\",\"1bZAZA\":\"Standardmall kommer att användas\",\"HNlEFZ\":\"ta bort\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Ta bort \",[\"count\"],\" valda datum? Datum med beställningar hoppas över. Detta kan inte ångras.\"],\"vu7gDm\":\"Ta bort partner\",\"KZN4Lc\":\"Ta bort alla\",\"6EkaOO\":\"Ta bort datum\",\"io0G93\":\"Ta bort evenemang\",\"+jw/c1\":\"Ta bort bild\",\"hdyeZ0\":\"Ta bort jobb\",\"xxjZeP\":\"Ta bort plats\",\"sY3tIw\":\"Ta bort arrangör\",\"UBv8UK\":\"Ta bort permanent\",\"dPyJ15\":\"Ta bort mall\",\"mxsm1o\":\"Ta bort denna fråga? Detta kan inte ångras.\",\"snMaH4\":\"Ta bort webhook\",\"LIZZLY\":[\"Tog bort \",[\"0\"],\" datum\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Avmarkera alla\",\"NvuEhl\":\"Designelement\",\"H8kMHT\":\"Fick du inte koden?\",\"G8KNgd\":\"Annan plats\",\"E/QGRL\":\"Inaktiverad\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Stäng detta meddelande\",\"BREO0S\":\"Visa en kryssruta som låter kunder välja att ta emot marknadsföringskommunikation från denna organisatör.\",\"pfa8F0\":\"Visningsnamn\",\"Kdpf90\":\"Glöm inte!\",\"352VU2\":\"Har du inget konto? <0>Registrera dig\",\"AXXqG+\":\"Donation\",\"DPfwMq\":\"Klar\",\"JoPiZ2\":\"Instruktioner för entrépersonal\",\"2+O9st\":\"Ladda ner försäljnings-, deltagar- och finansiella rapporter för alla slutförda order.\",\"eneWvv\":\"Utkast\",\"Ts8hhq\":\"På grund av hög risk för spam måste du ansluta ett Stripe-konto innan du kan ändra e-postmallar. Detta säkerställer att alla evenemangsarrangörer är verifierade och ansvariga.\",\"TnzbL+\":\"På grund av den höga risken för spam måste du ansluta ett Stripe-konto innan du kan skicka meddelanden till deltagare.\\nDetta är för att säkerställa att alla evenemangsarrangörer är verifierade och ansvarsskyldiga.\",\"euc6Ns\":\"Duplicera\",\"YueC+F\":\"Duplicera datum\",\"KRmTkx\":\"Duplicera produkt\",\"Jd3ymG\":\"Varaktigheten måste vara minst 1 minut.\",\"KIjvtr\":\"Nederländska\",\"22xieU\":\"t.ex. 180 (3 timmar)\",\"/zajIE\":\"t.ex. Morgonpass\",\"SPKbfM\":\"t.ex. Köp biljetter, Registrera dig nu\",\"fc7wGW\":\"t.ex., viktiga uppdateringar gällande dina biljetter\",\"54MPqC\":\"t.ex. Standard, Premium, Enterprise\",\"3RQ81z\":\"Varje person kommer att få ett e-postmeddelande med en reserverad plats för att slutföra sitt köp.\",\"5oD9f/\":\"Tidigare\",\"LTzmgK\":[\"Redigera \",[\"0\"],\"-mall\"],\"v4+lcZ\":\"Redigera partner\",\"2iZEz7\":\"Redigera svar\",\"t2bbp8\":\"Redigera deltagare\",\"etaWtB\":\"Redigera deltagardetaljer\",\"+guao5\":\"Redigera konfiguration\",\"1Mp/A4\":\"Redigera datum\",\"m0ZqOT\":\"Redigera plats\",\"8oivFT\":\"Redigera plats\",\"vRWOrM\":\"Redigera orderdetaljer\",\"fW5sSv\":\"Redigera webhook\",\"nP7CdQ\":\"Redigera webhook\",\"MRZxAn\":\"Redigerad\",\"uBAxNB\":\"Redigerare\",\"aqxYLv\":\"Utbildning\",\"iiWXDL\":\"Behörighetsfel\",\"zPiC+q\":\"Giltiga incheckningslistor\",\"SiVstt\":\"E-post och schemalagda meddelanden\",\"V2sk3H\":\"E-post och mallar\",\"hbwCKE\":\"E-postadress kopierad till urklipp\",\"dSyJj6\":\"E-postadresserna matchar inte\",\"elW7Tn\":\"E-postinnehåll\",\"ZsZeV2\":\"E-post krävs\",\"Be4gD+\":\"Förhandsgranskning av e-post\",\"6IwNUc\":\"E-postmallar\",\"H/UMUG\":\"E-postverifiering krävs\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"E-post verifierad\",\"FSN4TS\":\"Bädda in widget\",\"z9NkYY\":\"Inbäddningsbar widget\",\"Qj0GKe\":\"Aktivera självservice för deltagare\",\"hEtQsg\":\"Aktivera självservice för deltagare som standard\",\"Upeg/u\":\"Aktivera denna mall för att skicka e-post\",\"7dSOhU\":\"Aktivera väntelista\",\"RxzN1M\":\"Aktiverad\",\"xDr/ct\":\"Slut\",\"sGjBEq\":\"Slutdatum och tid (valfritt)\",\"PKXt9R\":\"Slutdatum måste vara efter startdatum\",\"UmzbPa\":\"Slutdatum för tillfället\",\"ZayGC7\":\"Sluta på ett datum\",\"48Y16Q\":\"Sluttid (valfritt)\",\"jpNdOC\":\"Sluttid för tillfället\",\"TbaYrr\":[\"Slutade \",[\"0\"]],\"CFgwiw\":[\"Slutar \",[\"0\"]],\"SqOIQU\":\"Ange ett kapacitetsvärde eller välj obegränsat.\",\"h37gRz\":\"Ange en etikett eller välj att ta bort den.\",\"7YZofi\":\"Ange ämne och innehåll för att se förhandsgranskningen\",\"khyScF\":\"Ange en tid att förskjuta med.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Ange partnerns e-post (valfritt)\",\"ARkzso\":\"Ange partnernamn\",\"ej4L8b\":\"Ange kapacitet\",\"6KnyG0\":\"Ange e-postadress\",\"INDKM9\":\"Ange e-postämne...\",\"xUgUTh\":\"Ange förnamn\",\"9/1YKL\":\"Ange efternamn\",\"VpwcSk\":\"Ange nytt lösenord\",\"kWg31j\":\"Ange unik partnerkod\",\"C3nD/1\":\"Ange din e-postadress\",\"VmXiz4\":\"Ange din e-postadress så skickar vi instruktioner för att återställa ditt lösenord.\",\"n9V+ps\":\"Ange ditt namn\",\"IdULhL\":\"Ange ditt momsnummer inklusive landskod, utan mellanslag (t.ex. IE1234567A, DE123456789)\",\"o21Y+P\":\"poster\",\"X88/6w\":\"Poster visas här när kunder ansluter sig till väntelistan för slutsålda produkter.\",\"LslKhj\":\"Fel vid inläsning av loggar\",\"VCNHvW\":\"Evenemang arkiverat\",\"ZD0XSb\":\"Evenemanget har arkiverats\",\"WgD6rb\":\"Evenemangskategori\",\"b46pt5\":\"Omslagsbild för evenemang\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Evenemang skapat\",\"1Hzev4\":\"Anpassad evenemangsmall\",\"7u9/DO\":\"Evenemanget har tagits bort\",\"imgKgl\":\"Evenemangsbeskrivning\",\"kJDmsI\":\"Evenemangsdetaljer\",\"m/N7Zq\":\"Evenemangets fullständiga adress\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Evenemangsplats\",\"PYs3rP\":\"Evenemangsnamn\",\"HhwcTQ\":\"Evenemangsnamn\",\"WZZzB6\":\"Evenemangsnamn krävs\",\"Wd5CDM\":\"Evenemangsnamnet måste vara kortare än 150 tecken\",\"4JzCvP\":\"Evenemanget är inte tillgängligt\",\"Gh9Oqb\":\"Evenemangsarrangörens namn\",\"mImacG\":\"Evenemangssida\",\"Hk9Ki/\":\"Evenemanget har återställts\",\"JyD0LH\":\"Evenemangsinställningar\",\"cOePZk\":\"Evenemangstid\",\"e8WNln\":\"Evenemangets tidszon\",\"GeqWgj\":\"Evenemangets tidszon\",\"XVLu2v\":\"Evenemangstitel\",\"OfmsI9\":\"Evenemang för nytt\",\"4SILkp\":\"Evenemangstotaler\",\"YDVUVl\":\"Evenemangstyper\",\"+HeiVx\":\"Evenemang uppdaterat\",\"4K2OjV\":\"Evenemangslokal\",\"19j6uh\":\"Evenemangens resultat\",\"PC3/fk\":\"Evenemang som startar inom 24 timmar\",\"nwiZdc\":[\"Varje \",[\"0\"]],\"2LJU4o\":[\"Var \",[\"0\"],\":e dag\"],\"yLiYx+\":[\"Var \",[\"0\"],\":e månad\"],\"nn9ice\":[\"Var \",[\"0\"],\":e vecka\"],\"Cdr8f9\":[\"Var \",[\"0\"],\":e vecka på \",[\"1\"]],\"GVEHRk\":[\"Var \",[\"0\"],\":e år\"],\"fTFfOK\":\"Varje e-postmall måste innehålla en uppmaningsknapp som länkar till rätt sida\",\"BVinvJ\":\"Exempel: \\\"Hur hörde du talas om oss?\\\", \\\"Företagsnamn för faktura\\\"\",\"2hGPQG\":\"Exempel: \\\"T-shirtstorlek\\\", \\\"Matpreferens\\\", \\\"Jobbtitel\\\"\",\"qNuTh3\":\"Undantag\",\"M1RnFv\":\"Utgånget\",\"kF8HQ7\":\"Exportera svar\",\"2KAI4N\":\"Exportera CSV\",\"JKfSAv\":\"Export misslyckades. Försök igen.\",\"SVOEsu\":\"Export startad. Förbereder fil...\",\"wuyaZh\":\"Export lyckades\",\"9bpUSo\":\"Exporterar partners\",\"jtrqH9\":\"Exporterar deltagare\",\"R4Oqr8\":\"Export klar. Laddar ner fil...\",\"UlAK8E\":\"Exporterar ordrar\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Misslyckades\",\"8uOlgz\":\"Misslyckades vid\",\"tKcbYd\":\"Misslyckade jobb\",\"SsI9v/\":\"Misslyckades med att avbryta ordern. Försök igen.\",\"LdPKPR\":\"Det gick inte att tilldela konfiguration\",\"PO0cfn\":\"Det gick inte att avboka datum\",\"YUX+f+\":\"Det gick inte att avboka datum\",\"SIHgVQ\":\"Det gick inte att avbryta meddelandet\",\"cEFg3R\":\"Misslyckades med att skapa partner\",\"dVgNF1\":\"Misslyckades med att skapa konfiguration\",\"fAoRRJ\":\"Det gick inte att skapa schema\",\"U66oUa\":\"Misslyckades med att skapa mall\",\"aFk48v\":\"Misslyckades med att ta bort konfiguration\",\"n1CYMH\":\"Det gick inte att ta bort datum\",\"KXv+Qn\":\"Det gick inte att ta bort datum. Det kan ha befintliga beställningar.\",\"JJ0uRo\":\"Det gick inte att ta bort datum\",\"rgoBnv\":\"Det gick inte att ta bort evenemanget\",\"Zw6LWb\":\"Misslyckades med att ta bort jobb\",\"tq0abZ\":\"Misslyckades med att ta bort jobb\",\"2mkc3c\":\"Det gick inte att ta bort arrangören\",\"vKMKnu\":\"Misslyckades med att ta bort frågan\",\"xFj7Yj\":\"Misslyckades med att ta bort mall\",\"jo3Gm6\":\"Misslyckades med att exportera partners\",\"Jjw03p\":\"Misslyckades med att exportera deltagare\",\"ZPwFnN\":\"Misslyckades med att exportera ordrar\",\"zGE3CH\":\"Misslyckades med att exportera rapport. Försök igen.\",\"lS9/aZ\":\"Kunde inte ladda mottagare\",\"X4o0MX\":\"Misslyckades med att läsa in webhook\",\"ETcU7q\":\"Kunde inte erbjuda plats\",\"5670b9\":\"Kunde inte erbjuda biljetter\",\"e5KIbI\":\"Det gick inte att återaktivera datum\",\"7zyx8a\":\"Det gick inte att ta bort från väntelistan\",\"A/P7PX\":\"Det gick inte att ta bort åsidosättning\",\"ogWc1z\":\"Det gick inte att öppna datumet igen\",\"0+iwE5\":\"Misslyckades med att ändra ordning på frågorna\",\"EJPAcd\":\"Misslyckades med att skicka orderbekräftelsen igen\",\"DjSbj3\":\"Misslyckades med att skicka biljetten igen\",\"YQ3QSS\":\"Misslyckades med att skicka verifieringskod igen\",\"wDioLj\":\"Misslyckades med att försöka igen\",\"DKYTWG\":\"Misslyckades med att försöka igen\",\"WRREqF\":\"Det gick inte att spara åsidosättning\",\"sj/eZA\":\"Det gick inte att spara prisåsidosättning\",\"780n8A\":\"Det gick inte att spara produktinställningar\",\"zTkTF3\":\"Misslyckades med att spara mall\",\"l6acRV\":\"Misslyckades med att spara momsinställningar. Försök igen.\",\"T6B2gk\":\"Misslyckades med att skicka meddelande. Försök igen.\",\"lKh069\":\"Misslyckades med att starta exportjobb\",\"t/KVOk\":\"Misslyckades med att starta impersonering. Försök igen.\",\"QXgjH0\":\"Misslyckades med att stoppa impersonering. Försök igen.\",\"i0QKrm\":\"Misslyckades med att uppdatera partner\",\"NNc33d\":\"Misslyckades med att uppdatera svar.\",\"E9jY+o\":\"Misslyckades med att uppdatera deltagare\",\"uQynyf\":\"Misslyckades med att uppdatera konfiguration\",\"i2PFQJ\":\"Det gick inte att uppdatera evenemangets status\",\"EhlbcI\":\"Misslyckades med att uppdatera meddelandenivå\",\"rpGMzC\":\"Misslyckades med att uppdatera order\",\"T2aCOV\":\"Det gick inte att uppdatera arrangörens status\",\"Eeo/Gy\":\"Misslyckades med att uppdatera inställning\",\"kqA9lY\":\"Det gick inte att uppdatera momsinställningar\",\"7/9RFs\":\"Misslyckades med att ladda upp bild.\",\"nkNfWu\":\"Misslyckades med att ladda upp bild. Försök igen.\",\"rxy0tG\":\"Misslyckades med att verifiera e-post\",\"QRUpCk\":\"Familj\",\"5LO38w\":\"Snabba utbetalningar till din bank\",\"4lgLew\":\"Februari\",\"9bHCo2\":\"Avgiftsvaluta\",\"/sV91a\":\"Hantering av avgifter\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Avgifter kringgås\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Filen är för stor. Maximal storlek är 5 MB.\",\"VejKUM\":\"Fyll i dina uppgifter ovan först\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filtrera deltagare\",\"8OvVZZ\":\"Filtrera deltagare\",\"N/H3++\":\"Filtrera efter datum\",\"mvrlBO\":\"Filtrera efter evenemang\",\"g+xRXP\":\"Slutför Stripe-konfigurationen\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"Första\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Första deltagare\",\"4pwejF\":\"Förnamn är obligatoriskt\",\"3lkYdQ\":\"Fast avgift\",\"6bBh3/\":\"Fast avgift\",\"zWqUyJ\":\"Fast avgift per transaktion\",\"LWL3Bs\":\"Fast avgift måste vara 0 eller högre\",\"0RI8m4\":\"Blixt av\",\"q0923e\":\"Blixt på\",\"lWxAUo\":\"Mat och dryck\",\"nFm+5u\":\"Sidfotstext\",\"a8nooQ\":\"Fjärde\",\"mob/am\":\"Fr\",\"wtuVU4\":\"Frekvens\",\"xVhQZV\":\"Fre\",\"39y5bn\":\"Fredag\",\"f5UbZ0\":\"Fullt dataägande\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Full återbetalning\",\"UsIfa8\":\"Fullständig upplöst adress\",\"PGQLdy\":\"framtida\",\"8N/j1s\":\"Endast framtida datum\",\"yRx/6K\":\"Framtida datum kopieras med kapacitet återställd till noll\",\"T02gNN\":\"Allmän entré\",\"3ep0Gx\":\"Allmän information om din arrangör\",\"ziAjHi\":\"Generera\",\"exy8uo\":\"Generera kod\",\"4CETZY\":\"Få vägbeskrivning\",\"pjkEcB\":\"Få betalt\",\"lGYzP6\":\"Få betalt med Stripe\",\"ZDIydz\":\"Sätt igång\",\"u6FPxT\":\"Köp biljetter\",\"8KDgYV\":\"Gör ditt evenemang redo\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Gå tillbaka\",\"oNL5vN\":\"Gå till evenemangssidan\",\"gHSuV/\":\"Gå till startsidan\",\"8+Cj55\":\"Gå till schema\",\"6nDzTl\":\"God läsbarhet\",\"76gPWk\":\"Uppfattat\",\"aGWZUr\":\"Bruttointäkter\",\"n8IUs7\":\"Bruttointäkter\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gästhantering\",\"NUsTc4\":\"Pågår nu\",\"kTSQej\":[\"Hej \",[\"0\"],\", hantera din plattform härifrån.\"],\"dORAcs\":\"Här är alla biljetter som är kopplade till din e-postadress.\",\"g+2103\":\"Här är din partnerlänk\",\"bVsnqU\":\"Hej,\",\"/iE8xx\":\"Hi.Events-avgift\",\"zppscQ\":\"Hi.Events plattformsavgifter och momsfördelning per transaktion\",\"D+zLDD\":\"Dold\",\"DRErHC\":\"Dold för deltagare – endast synlig för arrangörer\",\"NNnsM0\":\"Dölj avancerade alternativ\",\"P+5Pbo\":\"Dölj svar\",\"VMlRqi\":\"Dölj detaljer\",\"FmogyU\":\"Dölj alternativ\",\"gtEbeW\":\"Markera\",\"NF8sdv\":\"Markeringsmeddelande\",\"MXSqmS\":\"Markera denna produkt\",\"7ER2sc\":\"Markerad\",\"sq7vjE\":\"Markerade produkter får en annan bakgrundsfärg för att sticka ut på evenemangssidan.\",\"1+WSY1\":\"Hobbyer\",\"yY8wAv\":\"Timmar\",\"sy9anN\":\"Hur lång tid en kund har på sig att slutföra sitt köp efter att ha fått ett erbjudande. Lämna tomt för ingen tidsgräns.\",\"n2ilNh\":\"Hur länge pågår schemat?\",\"DMr2XN\":\"Hur ofta?\",\"AVpmAa\":\"Hur man betalar offline\",\"cceMns\":\"Hur moms tillämpas på de plattformsavgifter vi tar ut.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Ungerska\",\"8Wgd41\":\"Jag bekräftar mitt ansvar som personuppgiftsansvarig\",\"O8m7VA\":\"Jag godkänner att ta emot e-postmeddelanden relaterade till detta evenemang\",\"YLgdk5\":\"Jag bekräftar att detta är ett transaktionsmeddelande relaterat till detta evenemang\",\"4/kP5a\":\"Om en ny flik inte öppnades automatiskt, klicka på knappen nedan för att fortsätta till kassan.\",\"W/eN+G\":\"Om tomt kommer adressen att användas för att generera en Google Maps-länk\",\"iIEaNB\":\"Om du har ett konto hos oss kommer du att få ett e-postmeddelande med instruktioner för hur du återställer ditt lösenord.\",\"an5hVd\":\"Bilder\",\"tSVr6t\":\"Impersonera\",\"TWXU0c\":\"Impersonera användare\",\"5LAZwq\":\"Impersonering startad\",\"IMwcdR\":\"Impersonering stoppad\",\"0I0Hac\":\"Viktig information\",\"yD3avI\":\"Viktigt: Om du ändrar din e-postadress uppdateras länken för att komma åt denna order. Du kommer att omdirigeras till den nya orderlänken efter att du har sparat.\",\"jT142F\":[\"Om \",[\"diffHours\"],\" timmar\"],\"OoSyqO\":[\"Om \",[\"diffMinutes\"],\" minuter\"],\"PdMhEx\":[\"senaste \",[\"0\"],\" min\"],\"u7r0G5\":\"På plats — ange en plats\",\"Ip0hl5\":\"in_person, online, unset, eller mixed\",\"F1Xp97\":\"Enskilda deltagare\",\"85e6zs\":\"Infoga Liquid-token\",\"38KFY0\":\"Infoga variabel\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Direktutbetalningar via Stripe\",\"nbfdhU\":\"Integrationer\",\"I8eJ6/\":\"Interna anteckningar på biljetten\",\"B2Tpo0\":\"Ogiltig e-postadress\",\"5tT0+u\":\"Ogiltigt e-postformat\",\"f9WRpE\":\"Ogiltig filtyp. Ladda upp en bild.\",\"tnL+GP\":\"Ogiltig Liquid-syntax. Korrigera och försök igen.\",\"N9JsFT\":\"Ogiltigt format på momsregistreringsnummer\",\"g+lLS9\":\"Bjud in en teammedlem\",\"1z26sk\":\"Bjud in teammedlem\",\"KR0679\":\"Bjud in teammedlemmar\",\"aH6ZIb\":\"Bjud in ditt team\",\"IuMGvq\":\"Faktura\",\"Lj7sBL\":\"Italienska\",\"F5/CBH\":\"artikel(er)\",\"BzfzPK\":\"Artiklar\",\"rjyWPb\":\"Januari\",\"KmWyx0\":\"Jobb\",\"o5r6b2\":\"Jobb borttaget\",\"cd0jIM\":\"Jobbdetaljer\",\"ruJO57\":\"Jobbnamn\",\"YZi+Hu\":\"Jobb köat för nytt försök\",\"nCywLA\":\"Delta varifrån som helst\",\"SNzppu\":\"Gå med i väntelistan\",\"dLouFI\":[\"Gå med i väntelistan för \",[\"productDisplayName\"]],\"2gMuHR\":\"Ansluten\",\"u4ex5r\":\"Juli\",\"zeEQd/\":\"Juni\",\"MxjCqk\":\"Letar du bara efter dina biljetter?\",\"xOTzt5\":\"just nu\",\"0RihU9\":\"Just avslutat\",\"lB2hSG\":[\"Håll mig uppdaterad om nyheter och evenemang från \",[\"0\"]],\"ioFA9i\":\"Behåll vinsten.\",\"4Sffp7\":\"Etikett för tillfället\",\"o66QSP\":\"etikettuppdateringar\",\"RtKKbA\":\"Sista\",\"DruLRc\":\"Senaste 14 dagarna\",\"ve9JTU\":\"Efternamn är obligatoriskt\",\"h0Q9Iw\":\"Senaste svar\",\"gw3Ur5\":\"Senast utlöst\",\"FIq1Ba\":\"Senare\",\"xvnLMP\":\"Senaste incheckningar\",\"pzAivY\":\"Latitud för den upplösta platsen\",\"N5TErv\":\"Lämna tomt för obegränsat\",\"L/hDDD\":\"Lämna tomt för att tillämpa denna incheckningslista på alla tillfällen\",\"9Pf3wk\":\"Lämna på för att täcka varje biljett på evenemanget. Stäng av för att välja specifika biljetter.\",\"Hq2BzX\":\"Meddela dem om ändringen\",\"+uexiy\":\"Meddela dem om ändringarna\",\"exYcTF\":\"Bibliotek\",\"1njn7W\":\"Ljus\",\"1qY5Ue\":\"Länken har gått ut eller är ogiltig\",\"+zSD/o\":\"Länk till evenemangets startsida\",\"psosdY\":\"Länk till orderdetaljer\",\"6JzK4N\":\"Länk till biljett\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Länkar tillåtna\",\"2BBAbc\":\"Lista\",\"5NZpX8\":\"Listvy\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Liveevenemang\",\"C33p4q\":\"Inlästa datum\",\"WdmJIX\":\"Laddar förhandsvisning...\",\"IoDI2o\":\"Laddar tokens...\",\"G3Ge9Z\":\"Läser in webhook-loggar...\",\"NFxlHW\":\"Laddar webhooks\",\"E0DoRM\":\"Plats borttagen\",\"NtLHT3\":\"Platsens formaterade adress\",\"h4vxDc\":\"Platsens latitud\",\"f2TMhR\":\"Platsens longitud\",\"lnCo2f\":\"Platsläge\",\"8pmGFk\":\"Platsnamn\",\"7w8lJU\":\"Plats sparad\",\"YsRXDD\":\"Plats uppdaterad\",\"A/kIva\":\"platsuppdateringar\",\"VppBoU\":\"Platser\",\"iG7KNr\":\"Logotyp\",\"vu7ZGG\":\"Logotyp och omslagsbild\",\"gddQe0\":\"Logotyp och omslagsbild för din arrangör\",\"TBEnp1\":\"Logotypen visas i sidhuvudet\",\"Jzu30R\":\"Logotypen visas på biljetten\",\"zKTMTg\":\"Longitud för den upplösta platsen\",\"PSRm6/\":\"Hitta mina biljetter\",\"yJFu/X\":\"Huvudkontor\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Hantera \",[\"0\"]],\"wZJfA8\":\"Hantera datum och tider för ditt återkommande evenemang\",\"RlzPUE\":\"Hantera på Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Hantera schema\",\"zXuaxY\":\"Hantera evenemangets väntelista, se statistik och erbjud biljetter till deltagare.\",\"BWTzAb\":\"Manuell\",\"g2npA5\":\"Manuellt erbjudande\",\"hg6l4j\":\"Mars\",\"pqRBOz\":\"Markera som validerad (admin-åsidosättning)\",\"2L3vle\":\"Max meddelanden / 24h\",\"Qp4HWD\":\"Max mottagare / meddelande\",\"3JzsDb\":\"Maj\",\"agPptk\":\"Medium\",\"xDAtGP\":\"Meddelande\",\"bECJqy\":\"Meddelande godkänt\",\"1jRD0v\":\"Meddela deltagare med specifika biljetter\",\"uQLXbS\":\"Meddelande avbrutet\",\"48rf3i\":\"Meddelandet får inte överstiga 5000 tecken\",\"ZPj0Q8\":\"Meddelandedetaljer\",\"Vjat/X\":\"Meddelande krävs\",\"0/yJtP\":\"Meddela orderägare med specifika produkter\",\"saG4At\":\"Meddelande schemalagt\",\"mFdA+i\":\"Meddelandenivå\",\"v7xKtM\":\"Meddelandenivå uppdaterad\",\"H9HlDe\":\"minuter\",\"agRWc1\":\"Minuter\",\"YYzBv9\":\"Må\",\"zz/Wd/\":\"Läge\",\"fpMgHS\":\"Mån\",\"hty0d5\":\"Måndag\",\"JbIgPz\":\"Monetära värden är ungefärliga totaler över alla valutor\",\"qvF+MT\":\"Övervaka och hantera misslyckade bakgrundsjobb\",\"kY2ll9\":\"månad\",\"HajiZl\":\"Månad\",\"+8Nek/\":\"Månadsvis\",\"1LkxnU\":\"Månadsmönster\",\"6jefe3\":\"månader\",\"f8jrkd\":\"mer\",\"JcD7qf\":\"Fler åtgärder\",\"w36OkR\":\"Mest visade evenemang (Senaste 14 dagarna)\",\"+Y/na7\":\"Flytta alla datum tidigare eller senare\",\"3DIpY0\":\"Flera platser\",\"g9cQCP\":\"Flera biljettyper\",\"GfaxEk\":\"Musik\",\"oVGCGh\":\"Mina biljetter\",\"8/brI5\":\"Namn krävs\",\"sFFArG\":\"Namnet måste vara kortare än 255 tecken\",\"sCV5Yc\":\"Evenemangets namn\",\"xxU3NX\":\"Nettointäkter\",\"7I8LlL\":\"Ny kapacitet\",\"n1GRql\":\"Ny etikett\",\"y0Fcpd\":\"Ny plats\",\"ArHT/C\":\"Nya registreringar\",\"uK7xWf\":\"Ny tid:\",\"veT5Br\":\"Nästa tillfälle\",\"WXtl5X\":[\"Nästa: \",[\"nextFormatted\"]],\"eWRECP\":\"Nattliv\",\"HSw5l3\":\"Nej, jag är en privatperson eller ett företag som inte är momsregistrerat\",\"VHfLAW\":\"Inga konton\",\"+jIeoh\":\"Inga konton hittades\",\"074+X8\":\"Inga aktiva webhooks\",\"zxnup4\":\"Inga affiliates att visa\",\"Dwf4dR\":\"Inga deltagarfrågor ännu\",\"th7rdT\":\"Inga deltagare att visa\",\"PKySlW\":\"Inga deltagare ännu för detta datum.\",\"/UC6qk\":\"Ingen attributionsdata hittades\",\"E2vYsO\":\"Stripe har inte rapporterat några funktioner än.\",\"amMkpL\":\"Ingen kapacitet\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Inga incheckningslistor tillgängliga för detta evenemang.\",\"wG+knX\":\"Inga incheckningar än\",\"+dAKxg\":\"Inga konfigurationer hittades\",\"LiLk8u\":\"Inga anslutningar tillgängliga\",\"eb47T5\":\"Ingen data hittades för de valda filtren. Prova att justera datumintervall eller valuta.\",\"lFVUyx\":\"Ingen datumspecifik incheckningslista\",\"I8mtzP\":\"Inga datum tillgängliga denna månad. Försök navigera till en annan månad.\",\"yDukIL\":\"Inga datum matchar de aktuella filtren.\",\"B7phdj\":\"Inga datum matchar dina filter\",\"/ZB4Um\":\"Inga datum matchar din sökning\",\"gEdNe8\":\"Inga datum schemalagda ännu\",\"27GYXJ\":\"Inga datum schemalagda.\",\"pZNOT9\":\"Inget slutdatum\",\"dW40Uz\":\"Inga evenemang hittades\",\"8pQ3NJ\":\"Inga evenemang startar inom de närmaste 24 timmarna\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Inga misslyckade jobb\",\"EpvBAp\":\"Ingen faktura\",\"XZkeaI\":\"Inga loggar hittades\",\"nrSs2u\":\"Inga meddelanden hittades\",\"Rj99yx\":\"Inga tillfällen tillgängliga\",\"IFU1IG\":\"Inga tillfällen detta datum\",\"OVFwlg\":\"Inga orderfrågor ännu\",\"EJ7bVz\":\"Inga ordrar hittades\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Inga beställningar ännu för detta datum.\",\"wUv5xQ\":\"Ingen arrangörsaktivitet de senaste 14 dagarna\",\"vLd1tV\":\"Ingen arrangörskontext tillgänglig.\",\"B7w4KY\":\"Inga andra arrangörer tillgängliga\",\"PChXMe\":\"Inga betalda beställningar\",\"6jYQGG\":\"Inga tidigare evenemang\",\"CHzaTD\":\"Inga populära evenemang de senaste 14 dagarna\",\"zK/+ef\":\"Inga produkter tillgängliga för val\",\"M1/lXs\":\"Inga produkter konfigurerade för detta evenemang.\",\"kY7XDn\":\"Inga produkter har väntelisteposter\",\"wYiAtV\":\"Inga nya kontoregistreringar\",\"UW90md\":\"Inga mottagare hittades\",\"QoAi8D\":\"Inget svar\",\"JeO7SI\":\"Inget svar\",\"EK/G11\":\"Inga svar ännu\",\"7J5OKy\":\"Inga sparade platser ännu\",\"wpCjcf\":\"Inga sparade platser ännu. De visas här när du skapar evenemang med adresser.\",\"mPdY6W\":\"Inga förslag\",\"3sRuiW\":\"Inga biljetter hittades\",\"k2C0ZR\":\"Inga kommande datum\",\"yM5c0q\":\"Inga kommande evenemang\",\"qpC74J\":\"Inga användare hittades\",\"8wgkoi\":\"Inga visade evenemang de senaste 14 dagarna\",\"Arzxc1\":\"Inga väntelisteposter\",\"n5vdm2\":\"Inga webhook-händelser har registrerats för denna endpoint ännu. Händelser visas här när de utlöses.\",\"4GhX3c\":\"Inga webhooks\",\"4+am6b\":\"Nej, stanna kvar här\",\"4JVMUi\":\"ej redigerad\",\"Itw24Q\":\"Ej incheckad\",\"x5+Lcz\":\"Inte incheckad\",\"8n10sz\":\"Inte behörig\",\"kLvU3F\":\"Meddela deltagare och stoppa försäljning\",\"t9QlBd\":\"November\",\"kAREMN\":\"Antal datum att skapa\",\"6u1B3O\":\"Tillfälle\",\"mmoE62\":\"Tillfälle avbokat\",\"UYWXdN\":\"Slutdatum för tillfället\",\"k7dZT5\":\"Sluttid för tillfället\",\"Opinaj\":\"Tillfällesetikett\",\"V9flmL\":\"Tillfällesschema\",\"NUTUUs\":\"sidan Tillfällesschema\",\"AT8UKD\":\"Startdatum för tillfället\",\"Um8bvD\":\"Starttid för tillfället\",\"Kh3WO8\":\"Tillfällessammanfattning\",\"byXCTu\":\"Tillfällen\",\"KATw3p\":\"Tillfällen (endast framtida)\",\"85rTR2\":\"Tillfällen kan konfigureras efter skapande\",\"dzQfDY\":\"Oktober\",\"BwJKBw\":\"av\",\"9h7RDh\":\"Erbjud\",\"EfK2O6\":\"Erbjud plats\",\"3sVRey\":\"Erbjud biljetter\",\"2O7Ybb\":\"Tidsgräns för erbjudande\",\"1jUg5D\":\"Erbjuden\",\"l+/HS6\":[\"Erbjudanden löper ut efter \",[\"timeoutHours\"],\" timmar.\"],\"lQgMLn\":\"Kontors- eller lokalnamn\",\"6Aih4U\":\"Offline\",\"Z6gBGW\":\"Offlinebetalning\",\"nO3VbP\":[\"Till salu \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — ange anslutningsuppgifter\",\"LuZBbx\":\"Online och fysiskt\",\"IXuOqt\":\"Online och fysiskt — se schema\",\"w3DG44\":\"Online-anslutningsuppgifter\",\"WjSpu5\":\"Onlineevenemang\",\"TP6jss\":\"Anslutningsuppgifter för onlineevenemang\",\"NdOxqr\":\"Endast kontoadministratörer kan ta bort eller arkivera evenemang. Kontakta din kontoadministratör för hjälp.\",\"rnoDMF\":\"Endast kontoadministratörer kan ta bort eller arkivera arrangörer. Kontakta din kontoadministratör för hjälp.\",\"bU7oUm\":\"Skicka endast till ordrar med dessa statusar\",\"M2w1ni\":\"Endast synlig med kampanjkod\",\"y8Bm7C\":\"Öppna incheckning\",\"RLz7P+\":\"Öppna tillfälle\",\"cDSdPb\":\"Valfritt smeknamn som visas i väljare, t.ex. \\\"HQ Konferensrum\\\"\",\"HXMJxH\":\"Valfri text för friskrivningar, kontaktuppgifter eller tackmeddelanden, endast en rad\",\"L565X2\":\"alternativ\",\"8m9emP\":\"eller lägg till ett enstaka datum\",\"dSeVIm\":\"beställning\",\"c/TIyD\":\"Order och biljett\",\"H5qWhm\":\"Order avbruten\",\"b6+Y+n\":\"Order slutförd\",\"x4MLWE\":\"Orderbekräftelse\",\"CsTTH0\":\"Orderbekräftelsen skickades igen\",\"ppuQR4\":\"Order skapad\",\"0UZTSq\":\"Ordervaluta\",\"xtQzag\":\"Orderdetaljer\",\"HdmwrI\":\"Orderns e-postadress\",\"bwBlJv\":\"Orderns förnamn\",\"vrSW9M\":\"Ordern har avbrutits och återbetalats. Orderägaren har informerats.\",\"rzw+wS\":\"Beställningsinnehavare\",\"oI/hGR\":\"Order-ID\",\"Pc729f\":\"Ordern väntar på offlinebetalning\",\"F4NXOl\":\"Orderns efternamn\",\"RQCXz6\":\"Ordergränser\",\"SO9AEF\":\"Ordergräns satt\",\"5RDEEn\":\"Orderns språkregion\",\"vu6Arl\":\"Order markerad som betald\",\"sLbJQz\":\"Order hittades inte\",\"kvYpYu\":\"Order hittades inte\",\"i8VBuv\":\"Ordernummer\",\"eJ8SvM\":\"Ordernummer, köpdatum, köparens e-post\",\"FaPYw+\":\"Orderägare\",\"eB5vce\":\"Orderägare med en specifik produkt\",\"CxLoxM\":\"Orderägare med produkter\",\"DoH3fD\":\"Orderbetalning väntar\",\"UkHo4c\":\"Beställningsreferens\",\"EZy55F\":\"Order återbetalad\",\"6eSHqs\":\"Orderstatusar\",\"oW5877\":\"Ordersumma\",\"e7eZuA\":\"Order uppdaterad\",\"1SQRYo\":\"Order uppdaterades\",\"KndP6g\":\"Order-URL\",\"3NT0Ck\":\"Ordern avbröts\",\"V5khLm\":\"beställningar\",\"sd5IMt\":\"Slutförda beställningar\",\"5It1cQ\":\"Ordrar exporterade\",\"tlKX/S\":\"Beställningar som sträcker sig över flera datum kommer att flaggas för manuell granskning.\",\"UQ0ACV\":\"Totalt antal beställningar\",\"B/EBQv\":\"Ordrar:\",\"qtGTNu\":\"Naturliga konton\",\"ucgZ0o\":\"Organisation\",\"P/JHA4\":\"Arrangören har arkiverats\",\"S3CZ5M\":\"Arrangörens instrumentpanel\",\"GzjTd0\":\"Arrangören har tagits bort\",\"Uu0hZq\":\"Arrangörens e-post\",\"Gy7BA3\":\"Arrangörens e-postadress\",\"SQqJd8\":\"Arrangör hittades inte\",\"HF8Bxa\":\"Arrangören har återställts\",\"wpj63n\":\"Arrangörsinställningar\",\"o1my93\":\"Uppdatering av arrangörsstatus misslyckades. Försök igen senare\",\"rLHma1\":\"Arrangörsstatus uppdaterad\",\"LqBITi\":\"Arrangörens eller standardmall kommer att användas\",\"q4zH+l\":\"Arrangörer\",\"/IX/7x\":\"Övrigt\",\"RsiDDQ\":\"Andra listor (biljett ingår inte)\",\"aDfajK\":\"Utomhus\",\"qMASRF\":\"Utgående meddelanden\",\"iCOVQO\":\"Åsidosättning\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Åsidosätt pris\",\"cnVIpl\":\"Åsidosättning borttagen\",\"6/dCYd\":\"Översikt\",\"6WdDG7\":\"Sida\",\"8uqsE5\":\"Sidan är inte längre tillgänglig\",\"QkLf4H\":\"Sidans URL\",\"sF+Xp9\":\"Sidvisningar\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Betalda konton\",\"5F7SYw\":\"Delvis återbetalning\",\"fFYotW\":[\"Delvis återbetald: \",[\"0\"]],\"i8day5\":\"För över avgiften till köparen\",\"k4FLBQ\":\"För över till köparen\",\"Ff0Dor\":\"Tidigare\",\"BFjW8X\":\"Försenat\",\"xTPjSy\":\"Tidigare evenemang\",\"/l/ckQ\":\"Klistra in URL\",\"URAE3q\":\"Pausad\",\"4fL/V7\":\"Betala\",\"OZK07J\":\"Betala för att låsa upp\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Betalningsdatum\",\"ENEPLY\":\"Betalningsmetod\",\"8Lx2X7\":\"Betalning mottagen\",\"fx8BTd\":\"Betalningar är inte tillgängliga\",\"C+ylwF\":\"Utbetalningar\",\"UbRKMZ\":\"Väntar\",\"UkM20g\":\"Väntar på granskning\",\"dPYu1F\":\"Per deltagare\",\"mQV/nJ\":\"per min\",\"VlXNyK\":\"Per order\",\"hauDFf\":\"Per biljett\",\"mnF83a\":\"Procentuell avgift\",\"TNLuRD\":\"Procentavgift (%)\",\"MixU2P\":\"Procenttalet måste vara mellan 0 och 100\",\"MkuVAZ\":\"Procent av transaktionsbeloppet\",\"/Bh+7r\":\"Prestanda\",\"fIp56F\":\"Ta bort detta evenemang och alla tillhörande data permanent.\",\"nJeeX7\":\"Ta bort denna arrangör och alla dess evenemang permanent.\",\"wfCTgK\":\"Ta bort detta datum permanent\",\"6kPk3+\":\"Personlig information\",\"zmwvG2\":\"Telefon\",\"SdM+Q1\":\"Välj en plats\",\"tSR/oe\":\"Välj ett slutdatum\",\"e8kzpp\":\"Välj minst en dag i månaden\",\"35C8QZ\":\"Välj minst en veckodag\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Lagd\",\"wBJR8i\":\"Planerar du ett evenemang?\",\"J3lhKT\":\"Plattformsavgift\",\"RD51+P\":[\"Plattformsavgift på \",[\"0\"],\" dras från din utbetalning\"],\"br3Y/y\":\"Plattformsavgifter\",\"3buiaw\":\"Plattformsavgiftsrapport\",\"kv9dM4\":\"Plattformsintäkter\",\"PJ3Ykr\":\"Kontrollera din biljett för den uppdaterade tiden. Dina biljetter är fortfarande giltiga — ingen åtgärd behövs om inte de nya tiderna inte fungerar för dig. Svara på detta e-postmeddelande om du har några frågor.\",\"OtjenF\":\"Vänligen ange en giltig e-postadress\",\"jEw0Mr\":\"Ange en giltig URL\",\"n8+Ng/\":\"Ange den femsiffriga koden\",\"r+lQXT\":\"Ange ditt momsregistreringsnummer\",\"Dvq0wf\":\"Vänligen tillhandahåll en bild.\",\"2cUopP\":\"Starta om kassaprocessen.\",\"GoXxOA\":\"Välj ett datum och en tid\",\"8KmsFa\":\"Välj ett datumintervall\",\"EFq6EG\":\"Välj en bild.\",\"fuwKpE\":\"Försök igen.\",\"klWBeI\":\"Vänta innan du begär en ny kod\",\"hfHhaa\":\"Vänta medan vi förbereder dina affiliates för export...\",\"o+tJN/\":\"Vänta medan vi förbereder dina deltagare för export...\",\"+5Mlle\":\"Vänta medan vi förbereder dina ordrar för export...\",\"trnWaw\":\"Polska\",\"luHAJY\":\"Populära evenemang (Senaste 14 dagarna)\",\"p/78dY\":\"Position\",\"TjX7xL\":\"Meddelande efter checkout\",\"OESu7I\":\"Förhindra översäljning genom att dela lager mellan flera biljett­typer.\",\"NgVUL2\":\"Förhandsgranska kassaflödet\",\"cs5muu\":\"Förhandsgranska evenemangssidan\",\"+4yRWM\":\"Biljettens pris\",\"Jm2AC3\":\"Prisnivå\",\"a5jvSX\":\"Prisnivåer\",\"ReihZ7\":\"Utskriftsförhandsgranskning\",\"JnuPvH\":\"Skriv ut biljett\",\"tYF4Zq\":\"Skriv ut till PDF\",\"LcET2C\":\"Integritetspolicy\",\"8z6Y5D\":\"Genomför återbetalning\",\"JcejNJ\":\"Behandlar order\",\"EWCLpZ\":\"Produkt skapad\",\"XkFYVB\":\"Produkt borttagen\",\"YMwcbR\":\"Produktförsäljning, intäkter och skattefördelning\",\"ls0mTC\":\"Produktinställningar kan inte redigeras för avbokade datum.\",\"2339ej\":\"Produktinställningar sparade\",\"ldVIlB\":\"Produkt uppdaterad\",\"CP3D8G\":\"Förlopp\",\"JoKGiJ\":\"Kampanjkod\",\"k3wH7i\":\"Användning av kampanjkoder och rabattfördelning\",\"tZqL0q\":\"kampanjkoder\",\"oCHiz3\":\"Kampanjkoder\",\"uEhdRh\":\"Endast kampanj\",\"dLm8V5\":\"Marknadsföringsmejl kan leda till att kontot stängs av\",\"XoEWtl\":\"Ange minst ett adressfält för den nya platsen.\",\"2W/7Gz\":\"Tillhandahåll följande före Stripes nästa granskning för att hålla utbetalningarna igång.\",\"aemBRq\":\"Leverantör\",\"EEYbdt\":\"Publicera\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Köpt\",\"JunetL\":\"Köpare\",\"phmeUH\":\"Köparens e-post\",\"ywR4ZL\":\"QR-kodsincheckning\",\"oWXNE5\":\"Ant.\",\"biEyJ4\":\"Svar\",\"k/bJj0\":\"Frågorna ordnades om\",\"b24kPi\":\"Kö\",\"lTPqpM\":\"Snabbtips\",\"fqDzSu\":\"Sats\",\"mnUGVC\":\"Hastighetsgränsen har överskridits. Försök igen senare.\",\"t41hVI\":\"Erbjud plats igen\",\"TNclgc\":\"Återaktivera detta datum? Det kommer att öppnas igen för framtida försäljning.\",\"uqoRbb\":\"Realtidsanalys\",\"xzRvs4\":[\"Ta emot produktuppdateringar från \",[\"0\"],\".\"],\"pLXbi8\":\"Senaste kontoregistreringar\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Senaste deltagare\",\"qhfiwV\":\"Senaste incheckningar\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Senaste ordrar\",\"7hPBBn\":\"mottagare\",\"jp5bq8\":\"mottagare\",\"yPrbsy\":\"Mottagare\",\"E1F5Ji\":\"Mottagare är tillgängliga efter att meddelandet har skickats\",\"wuhHPE\":\"Återkommande\",\"asLqwt\":\"Återkommande evenemang\",\"D0tAMe\":\"Återkommande evenemang\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Omdirigerar till Stripe...\",\"pnoTN5\":\"Hänvisade konton\",\"ACKu03\":\"Uppdatera förhandsgranskning\",\"vuFYA6\":\"Återbetala alla beställningar för dessa datum\",\"4cRUK3\":\"Återbetala alla beställningar för detta datum\",\"fKn/k6\":\"Återbetalningsbelopp\",\"qY4rpA\":\"Återbetalning misslyckades\",\"TspTcZ\":\"Återbetalning utfärdad\",\"FaK/8G\":[\"Återbetala order \",[\"0\"]],\"MGbi9P\":\"Återbetalning väntar\",\"BDSRuX\":[\"Återbetald: \",[\"0\"]],\"bU4bS1\":\"Återbetalningar\",\"rYXfOA\":\"Regionala inställningar\",\"5tl0Bp\":\"Registreringsfrågor\",\"ZNo5k1\":\"Återstår\",\"EMnuA4\":\"Påminnelse schemalagd\",\"Bjh87R\":\"Ta bort etikett från alla datum\",\"KkJtVK\":\"Öppna igen för ny försäljning\",\"XJwWJp\":\"Öppna detta datum igen för ny försäljning? Tidigare avbokade biljetter kommer inte att återställas — berörda deltagare förblir avbokade och redan utfärdade återbetalningar återställs inte.\",\"bAwDQs\":\"Upprepa var\",\"CQeZT8\":\"Rapporten hittades inte\",\"JEPMXN\":\"Begär en ny länk\",\"TMLAx2\":\"Obligatorisk\",\"mdeIOH\":\"Skicka koden igen\",\"sQxe68\":\"Skicka bekräftelse igen\",\"bxoWpz\":\"Skicka bekräftelsemail igen\",\"G42SNI\":\"Skicka e-post igen\",\"TTpXL3\":[\"Skicka igen om \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Skicka biljett igen\",\"Uwsg2F\":\"Reserverad\",\"8wUjGl\":\"Reserverad till\",\"a5z8mb\":\"Återställ till grundpris\",\"kCn6wb\":\"Återställer...\",\"404zLK\":\"Upplöst plats eller lokalnamn\",\"ZlCDf+\":\"Svar\",\"bsydMp\":\"Svarsdetaljer\",\"yKu/3Y\":\"Återställ\",\"RokrZf\":\"Återställ evenemang\",\"/JyMGh\":\"Återställ arrangör\",\"HFvFRb\":\"Återställ detta evenemang för att göra det synligt igen.\",\"DDIcqy\":\"Återställ denna arrangör och gör den aktiv igen.\",\"mO8KLE\":\"resultat\",\"6gRgw8\":\"Försök igen\",\"1BG8ga\":\"Försök alla igen\",\"rDC+T6\":\"Försök jobb igen\",\"CbnrWb\":\"Tillbaka till evenemanget\",\"mdQ0zb\":\"Återanvändbara lokaler för dina evenemang. Platser som skapats från autoifyllningen sparas här automatiskt.\",\"XFOPle\":\"Återanvänd\",\"1Zehp4\":\"Återanvänd en Stripe-anslutning från en annan arrangör i detta konto.\",\"Oo/PLb\":\"Sammanfattning av intäkter\",\"O/8Ceg\":\"Intäkter idag\",\"CfuueU\":\"Återkalla erbjudande\",\"RIgKv+\":\"Kör till ett specifikt datum\",\"JYRqp5\":\"Lö\",\"dFFW9L\":[\"Försäljningen avslutades \",[\"0\"]],\"loCKGB\":[\"Försäljningen avslutas \",[\"0\"]],\"wlfBad\":\"Försäljningsperiod\",\"qi81Jg\":\"Försäljningsperiodens datum gäller för alla datum i ditt schema. För att kontrollera prissättning och tillgänglighet för enskilda datum, använd åsidosättningarna på <0>sidan Tillfällesschema.\",\"5CDM6r\":\"Försäljningsperiod angiven\",\"ftzaMf\":\"Försäljningsperiod, ordergränser, synlighet\",\"zpekWp\":[\"Försäljningen startar \",[\"0\"]],\"mUv9U4\":\"Försäljning\",\"9KnRdL\":\"Försäljningen är pausad\",\"JC3J0k\":\"Försäljning, närvaro och incheckningsuppdelning per tillfälle\",\"3VnlS9\":\"Försäljning, ordrar och prestandamått för alla evenemang\",\"3Q1AWe\":\"Försäljning:\",\"LeuERW\":\"Samma som evenemanget\",\"B4nE3N\":\"Exempel på biljettpris\",\"8BRPoH\":\"Exempelplats\",\"PiK6Ld\":\"Lör\",\"+5kO8P\":\"Lördag\",\"zJiuDn\":\"Spara avgiftsåsidosättning\",\"NB8Uxt\":\"Spara schema\",\"KZrfYJ\":\"Spara sociala länkar\",\"9Y3hAT\":\"Spara mall\",\"C8ne4X\":\"Spara biljettlayout\",\"cTI8IK\":\"Spara momsinställningar\",\"6/TNCd\":\"Spara momsinställningar\",\"4RvD9q\":\"Sparad plats\",\"cgw0cL\":\"Sparade platser\",\"lvSrsT\":\"Sparade platser\",\"Fbqm/I\":\"Att spara en åsidosättning skapar en dedikerad konfiguration för denna arrangör om den för närvarande är på systemstandard.\",\"I+FvbD\":\"Skanna\",\"0zd6Nm\":\"Skanna en biljett för att checka in en deltagare\",\"bQG7Qk\":\"Skannade biljetter visas här\",\"WDYSLJ\":\"Skannerläge\",\"gmB6oO\":\"Schema\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Schema skapat\",\"YP7frt\":\"Schemat slutar\",\"QS1Nla\":\"Schemalägg för senare\",\"NAzVVw\":\"Schemalägg meddelande\",\"Fz09JP\":\"Schemat börjar den\",\"4ba0NE\":\"Schemalagd\",\"qcP/8K\":\"Schemalagd tid\",\"A1taO8\":\"Sök\",\"ftNXma\":\"Sök affiliates...\",\"VMU+zM\":\"Sök deltagare\",\"VY+Bdn\":\"Sök på kontonamn eller e-post...\",\"VX+B3I\":\"Sök på evenemangstitel eller arrangör...\",\"R0wEyA\":\"Sök efter jobbnamn eller undantag...\",\"VT+urE\":\"Sök efter namn eller e-post...\",\"GHdjuo\":\"Sök på namn, e-post eller konto...\",\"4mBFO7\":\"Sök på namn, order-nr, biljett-nr eller e-post\",\"20ce0U\":\"Sök på order-ID, kundnamn eller e-post...\",\"4DSz7Z\":\"Sök efter ämne, evenemang eller konto...\",\"nQC7Z9\":\"Sök datum...\",\"iRtEpV\":\"Sök datum…\",\"JRM7ao\":\"Sök efter en adress\",\"BWF1kC\":\"Sök meddelanden...\",\"3aD3GF\":\"Säsongsbetonat\",\"ku//5b\":\"Andra\",\"Mck5ht\":\"Säker kassa\",\"s7tXqF\":\"Se schema\",\"JFap6u\":\"Se vad Stripe behöver\",\"p7xUrt\":\"Välj en kategori\",\"hTKQwS\":\"Välj ett datum och en tid\",\"e4L7bF\":\"Välj ett meddelande för att visa dess innehåll\",\"zPRPMf\":\"Välj en nivå\",\"uqpVri\":\"Välj en tid\",\"BFRSTT\":\"Välj konto\",\"wgNoIs\":\"Välj alla\",\"mCB6Je\":\"Välj alla\",\"aCEysm\":[\"Välj alla på \",[\"0\"]],\"a6+167\":\"Välj ett evenemang\",\"CFbaPk\":\"Välj deltagargrupp\",\"88a49s\":\"Välj kamera\",\"tVW/yo\":\"Välj valuta\",\"SJQM1I\":\"Välj datum\",\"n9ZhRa\":\"Välj slutdatum och tid\",\"gTN6Ws\":\"Välj sluttid\",\"0U6E9W\":\"Välj evenemangskategori\",\"j9cPeF\":\"Välj evenemangstyper\",\"ypTjHL\":\"Välj tillfälle\",\"KizCK7\":\"Välj startdatum och tid\",\"dJZTv2\":\"Välj starttid\",\"x8XMsJ\":\"Välj meddelandenivå för detta konto. Detta styr meddelandegränser och länkbehörigheter.\",\"aT3jZX\":\"Välj tidszon\",\"TxfvH2\":\"Välj vilka deltagare som ska få detta meddelande\",\"Ropvj0\":\"Välj vilka evenemang som ska utlösa denna webhook\",\"+6YAwo\":\"valda\",\"ylXj1N\":\"Vald\",\"uq3CXQ\":\"Sälj slut ditt evenemang.\",\"j9b/iy\":\"Säljer snabbt 🔥\",\"73qYgo\":\"Skicka som test\",\"HMAqFK\":\"Skicka e-post till deltagare, biljettinnehavare eller orderägare. Meddelanden kan skickas omedelbart eller schemaläggas för senare.\",\"22Itl6\":\"Skicka en kopia till mig\",\"NpEm3p\":\"Skicka nu\",\"nOBvex\":\"Skicka order- och deltagardata i realtid till dina externa system.\",\"1lNPhX\":\"Skicka e-postmeddelande om återbetalning\",\"eaUTwS\":\"Skicka återställningslänk\",\"5cV4PY\":\"Skicka till alla tillfällen, eller välj ett specifikt\",\"QEQlnV\":\"Skicka ditt första meddelande\",\"3nMAVT\":\"Skickas om 2d 4h\",\"IoAuJG\":\"Skickar...\",\"h69WC6\":\"Skickat\",\"BVu2Hz\":\"Skickat av\",\"ZFa8wv\":\"Skickas till deltagare när ett schemalagt datum avbokas\",\"SPdzrs\":\"Skickas till kunder när de lägger en order\",\"LxSN5F\":\"Skickas till varje deltagare med deras biljettuppgifter\",\"hgvbYY\":\"September\",\"5sN96e\":\"Tillfälle avbokat\",\"89xaFU\":\"Ange standardinställningar för plattformsavgifter för nya evenemang som skapas under denna arrangör.\",\"eXssj5\":\"Ange standardinställningar för nya evenemang som skapas under denna arrangör.\",\"uPe5p8\":\"Ange hur länge varje datum varar\",\"xNsRxU\":\"Ange antal datum\",\"ODuUEi\":\"Ange eller rensa datumetiketten\",\"buHACR\":\"Ställ in sluttiden för varje datum så att den är så här lång efter starttiden.\",\"TaeFgl\":\"Ställ in på obegränsat (ta bort gräns)\",\"pd6SSe\":\"Ställ in ett återkommande schema för att automatiskt skapa datum, eller lägg till dem ett i taget.\",\"s0FkEx\":\"Skapa incheckningslistor för olika entréer, pass eller dagar.\",\"TaWVGe\":\"Konfigurera utbetalningar\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Ställ in schema\",\"xMO+Ao\":\"Konfigurera din organisation\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Ställ in ditt schema\",\"ETC76A\":\"Ange, ändra eller ta bort tillfällets plats eller onlineuppgifter\",\"C3htzi\":\"Inställningen uppdaterades\",\"Ohn74G\":\"Konfiguration och design\",\"1W5XyZ\":\"Installationen tar bara några minuter — du behöver inget befintligt Stripe-konto. Stripe hanterar kort, plånböcker, regionala betalningsmetoder och bedrägeriskydd så att du kan fokusera på ditt evenemang.\",\"GG7qDw\":\"Dela affiliate-länk\",\"hL7sDJ\":\"Dela arrangörssida\",\"jy6QDF\":\"Delad kapacitetshantering\",\"jDNHW4\":\"Förskjut tider\",\"tPfIaW\":[\"Förskjöt tider för \",[\"count\"],\" datum\"],\"WwlM8F\":\"Visa avancerade alternativ\",\"cMW+gm\":[\"Visa alla plattformar (\",[\"0\"],\" till med värden)\"],\"wXi9pZ\":\"Visa anteckningar för ej inloggad personal\",\"UVPI5D\":\"Visa färre plattformar\",\"Eu/N/d\":\"Visa kryssruta för samtycke till marknadsföring\",\"SXzpzO\":\"Visa kryssruta för samtycke till marknadsföring som standard\",\"57tTk5\":\"Visa fler datum\",\"b33PL9\":\"Visa fler plattformar\",\"Eut7p9\":\"Visa orderdetaljer för ej inloggad personal\",\"+RoWKN\":\"Visa svar för ej inloggad personal\",\"t1LIQW\":[\"Visar \",[\"0\"],\" av \",[\"totalRows\"],\" poster\"],\"E717U9\":[\"Visar \",[\"0\"],\"–\",[\"1\"],\" av \",[\"2\"]],\"5rzhBQ\":[\"Visar \",[\"MAX_VISIBLE\"],\" av \",[\"totalAvailable\"],\" datum. Skriv för att söka.\"],\"WSt3op\":[\"Visar de första \",[\"0\"],\" — de återstående \",[\"1\"],\" tillfällena kommer fortfarande att inkluderas när meddelandet skickas.\"],\"OJLTEL\":\"Visas för personalen första gången de öppnar sidan.\",\"jVRHeq\":\"Registrerad\",\"5C7J+P\":\"Enskilt evenemang\",\"E//btK\":\"Hoppa över manuellt redigerade datum\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Socialt\",\"d0rUsW\":\"Sociala länkar\",\"j/TOB3\":\"Sociala länkar och webbplats\",\"s9KGXU\":\"Sålda\",\"iACSrw\":\"Vissa uppgifter är dolda för allmän åtkomst. Logga in för att se allt.\",\"KTxc6k\":\"Något gick fel, försök igen eller kontakta supporten om problemet kvarstår\",\"lkE00/\":\"Något gick fel. Försök igen senare.\",\"wdxz7K\":\"Källa\",\"fDG2by\":\"Andlighet\",\"oPaRES\":\"Dela upp incheckning per dag, område eller biljettyp. Dela länken med personalen — inget konto behövs.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Instruktioner för personal\",\"tXkhj/\":\"Start\",\"JcQp9p\":\"Startdatum och tid\",\"0m/ekX\":\"Startdatum och tid\",\"izRfYP\":\"Startdatum är obligatoriskt\",\"tuO4fV\":\"Startdatum för tillfället\",\"2R1+Rv\":\"Evenemangets starttid\",\"2Olov3\":\"Starttid för tillfället\",\"n9ZrDo\":\"Börja skriva en lokal eller adress...\",\"qeFVhN\":[\"Börjar om \",[\"diffDays\"],\" dagar\"],\"AOqtxN\":[\"Börjar om \",[\"diffMinutes\"],\" min\"],\"Otg8Oh\":[\"Börjar om \",[\"h\"],\"h \",[\"m\"],\"m\"],\"Lo49in\":[\"Börjar om \",[\"seconds\"],\"s\"],\"NqChgF\":\"Börjar imorgon\",\"2NbyY/\":\"Statistik\",\"GVUxAX\":\"Statistiken baseras på kontots skapandedatum\",\"29Hx9U\":\"Statistik\",\"5ia+r6\":\"Behövs fortfarande\",\"wuV0bK\":\"Sluta impersonera\",\"s/KaDb\":\"Stripe anslutet\",\"Bk06QI\":\"Stripe anslutet\",\"akZMv8\":[\"Stripe-anslutning kopierad från \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe returnerade ingen installationslänk. Försök igen.\",\"aKtF0O\":\"Stripe ej ansluten\",\"9i0++A\":\"Stripe betalnings-ID\",\"R1lIMV\":\"Stripe kommer snart att behöva några fler uppgifter\",\"FzcCHA\":\"Stripe guidar dig genom några snabba frågor för att slutföra installationen.\",\"eYbd7b\":\"Sö\",\"ii0qn/\":\"Ämne är obligatoriskt\",\"M7Uapz\":\"Ämnet visas här\",\"6aXq+t\":\"Ämne:\",\"JwTmB6\":\"Produkten duplicerades\",\"WUOCgI\":\"Plats erbjuden framgångsrikt\",\"IvxA4G\":[\"Biljetter har erbjudits till \",[\"count\"],\" personer\"],\"kKpkzy\":\"Biljetter har erbjudits till 1 person\",\"Zi3Sbw\":\"Borttagen från väntelistan\",\"RuaKfn\":\"Adressen uppdaterades\",\"kzx0uD\":\"Standardinställningarna för evenemang uppdaterades\",\"5n+Wwp\":\"Arrangören uppdaterades\",\"DMCX/I\":\"Standardinställningar för plattformsavgifter uppdaterades\",\"URUYHc\":\"Inställningar för plattformsavgifter uppdaterades\",\"0Dk/l8\":\"SEO-inställningarna uppdaterades\",\"S8Tua9\":\"Inställningar uppdaterade\",\"MhOoLQ\":\"Sociala länkar uppdaterades\",\"CNSSfp\":\"Spårningsinställningar uppdaterade\",\"kj7zYe\":\"Webhooken uppdaterades\",\"dXoieq\":\"Sammanfattning\",\"/RfJXt\":[\"Sommarens musikfestival \",[\"0\"]],\"CWOPIK\":\"Sommarens musikfestival 2025\",\"D89zck\":\"Sön\",\"DBC3t5\":\"Söndag\",\"UaISq3\":\"Svenska\",\"JZTQI0\":\"Byt arrangör\",\"9YHrNC\":\"Systemstandard\",\"lruQkA\":\"Tryck på skärmen för att fortsätta skanna\",\"TJUrME\":[\"Riktar sig till deltagare över \",[\"0\"],\" valda tillfällen.\"],\"yT6dQ8\":\"Insamlad moms grupperad efter momstyp och evenemang\",\"Ye321X\":\"Momsnamn\",\"WyCBRt\":\"Momssammanfattning\",\"GkH0Pq\":\"Moms och avgifter tillämpade\",\"Rwiyt2\":\"Moms konfigurerad\",\"iQZff7\":\"Moms, avgifter, synlighet, försäljningsperiod, produktmarkering och ordergränser\",\"SXvRWU\":\"Teamsamarbete\",\"vlf/In\":\"Teknik\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Berätta vad man kan förvänta sig på ditt evenemang\",\"NiIUyb\":\"Berätta om ditt evenemang\",\"DovcfC\":\"Berätta om din organisation. Denna information kommer att visas på dina evenemangssidor.\",\"69GWRq\":\"Berätta hur ofta ditt evenemang upprepas så skapar vi alla datum åt dig.\",\"mXPbwY\":\"Berätta din momsregistreringsstatus så vi tillämpar rätt momsbehandling på plattformsavgifter.\",\"7wtpH5\":\"Mall aktiv\",\"QHhZeE\":\"Mallen skapades\",\"xrWdPR\":\"Mallen togs bort\",\"G04Zjt\":\"Mallen sparades\",\"xowcRf\":\"Användarvillkor\",\"6K0GjX\":\"Texten kan vara svår att läsa\",\"u0F1Ey\":\"To\",\"nm3Iz/\":\"Tack för att du deltog!\",\"pYwj0k\":\"Tack,\",\"k3IitN\":\"Det var det\",\"KfmPRW\":\"Sidans bakgrundsfärg. När en omslagsbild används appliceras detta som en överlagring.\",\"MDNyJz\":\"Koden går ut om 10 minuter. Kontrollera skräpposten om du inte ser mejlet.\",\"AIF7J2\":\"Valutan i vilken den fasta avgiften definieras. Den kommer att konverteras till ordervalutan vid kassan.\",\"MJm4Tq\":\"Orderns valuta\",\"cDHM1d\":\"E-postadressen har ändrats. Deltagaren kommer att få en ny biljett till den uppdaterade e-postadressen.\",\"I/NNtI\":\"Evenemangets plats\",\"tXadb0\":\"Evenemanget du letar efter är inte tillgängligt just nu. Det kan ha tagits bort, löpt ut eller så kan webbadressen vara felaktig.\",\"5fPdZe\":\"Det första datumet som detta schema kommer att genereras från.\",\"EBzPwC\":\"Evenemangets fullständiga adress\",\"sxKqBm\":\"Hela orderbeloppet kommer att återbetalas till kundens ursprungliga betalningsmetod.\",\"KgDp6G\":\"Länken du försöker öppna har gått ut eller är inte längre giltig. Kontrollera din e-post efter en uppdaterad länk för att hantera din order.\",\"5OmEal\":\"Kundens språk och region\",\"Np4eLs\":[\"Maxgränsen är \",[\"MAX_PREVIEW\"],\" tillfällen. Minska datumintervallet, frekvensen eller antalet tillfällen per dag.\"],\"sYLeDq\":\"Arrangören du letar efter kunde inte hittas. Sidan kan ha flyttats, tagits bort eller så kan webbadressen vara felaktig.\",\"PCr4zw\":\"Åsidosättningen registreras i orderns granskningslogg.\",\"C4nQe5\":\"Plattformsavgiften läggs på biljettpriset. Köpare betalar mer, men du får hela biljettpriset.\",\"HxxXZO\":\"Den primära varumärkesfärgen som används för knappar och markeringar\",\"z0KrIG\":\"Den schemalagda tiden är obligatorisk\",\"EWErQh\":\"Den schemalagda tiden måste vara i framtiden\",\"UNd0OU\":[\"Tillfället för \\\"\",[\"title\"],\"\\\" som ursprungligen var planerat till \",[\"0\"],\" har flyttats.\"],\"DEcpfp\":\"Mallens brödtext innehåller ogiltig Liquid-syntax. Rätta den och försök igen.\",\"injXD7\":\"Momsnumret kunde inte valideras. Kontrollera numret och försök igen.\",\"A4UmDy\":\"Teater\",\"tDwYhx\":\"Tema och färger\",\"O7g4eR\":\"Det finns inga kommande datum för detta evenemang\",\"HrIl0p\":[\"Det finns ingen incheckningslista kopplad till detta datum. Listan \\\"\",[\"0\"],\"\\\" checkar in deltagare över alla datum — personal som skannar en biljett för ett annat datum kommer fortfarande att lyckas.\"],\"dt3TwA\":\"Detta är standardpriser och kvantiteter över alla datum. Försäljningsdatum för nivåer gäller globalt. Du kan åsidosätta priser och kvantiteter för enskilda datum på <0>sidan Tillfällesschema.\",\"062KsE\":\"Dessa uppgifter visas på deltagarens biljett och ordersammanfattning endast för detta datum.\",\"5Eu+tn\":\"Dessa uppgifter visas endast om beställningen slutförs framgångsrikt.\",\"jQjwR+\":\"Dessa uppgifter ersätter alla befintliga platser för de berörda tillfällena och visas på deltagarnas biljetter.\",\"QP3gP+\":\"Dessa inställningar gäller bara för kopierad inbäddningskod och kommer inte att sparas.\",\"HirZe8\":\"Dessa mallar används som standard för alla evenemang i din organisation. Enskilda evenemang kan ersätta dem med egna anpassade versioner.\",\"lzAaG5\":\"Dessa mallar ersätter arrangörens standardmallar endast för detta evenemang. Om ingen anpassad mall anges här används arrangörens mall i stället.\",\"UlykKR\":\"Tredje\",\"wkP5FM\":\"Detta gäller för varje matchande datum i evenemanget, inklusive datum som inte är synliga för tillfället. Deltagare registrerade på något av dessa datum kommer att kunna nås via meddelandekompositören när uppdateringen är klar.\",\"SOmGDa\":\"Denna incheckningslista är kopplad till ett tillfälle som har avbokats, så den kan inte längre användas för incheckningar.\",\"XBNC3E\":\"Den här koden används för att spåra försäljning. Endast bokstäver, siffror, bindestreck och understreck är tillåtna.\",\"AaP0M+\":\"Den här färgkombinationen kan vara svår att läsa för vissa användare\",\"o1phK/\":[\"Detta datum har \",[\"orderCount\"],\" beställningar som påverkas.\"],\"F/UtGt\":\"Detta datum har avbokats. Du kan fortfarande ta bort det permanent.\",\"BLZ7pX\":\"Detta datum är förflutet. Det kommer att skapas men kommer inte att synas för deltagare under kommande datum.\",\"7IIY0z\":\"Detta datum är markerat som slutsålt.\",\"bddWMP\":\"Detta datum är inte längre tillgängligt. Välj ett annat datum.\",\"RzEvf5\":\"Det här evenemanget har avslutats\",\"YClrdK\":\"Det här evenemanget är inte publicerat ännu\",\"dFJnia\":\"Det här är namnet på din arrangör som kommer att visas för dina användare.\",\"vt7jiq\":\"Detta är den enda gången signeringshemligheten visas. Kopiera den nu och förvara den säkert.\",\"L7dIM7\":\"Den här länken är ogiltig eller har löpt ut.\",\"MR5ygV\":\"Den här länken är inte längre giltig\",\"9LEqK0\":\"Det här namnet är synligt för slutanvändare\",\"QdUMM9\":\"Detta tillfälle har nått sin kapacitet\",\"j5FdeA\":\"Den här ordern behandlas.\",\"sjNPMw\":\"Den här ordern övergavs. Du kan starta en ny order när som helst.\",\"OhCesD\":\"Den här ordern avbröts. Du kan starta en ny order när som helst.\",\"lyD7rQ\":\"Den här arrangörsprofilen är inte publicerad ännu\",\"9b5956\":\"Den här förhandsvisningen visar hur ditt mejl kommer att se ut med exempeldata. Faktiska mejl använder riktiga värden.\",\"uM9Alj\":\"Den här produkten är markerad på evenemangssidan\",\"RqSKdX\":\"Den här produkten är slutsåld\",\"W12OdJ\":\"Denna rapport är endast för informationsändamål. Rådgör alltid med en skatteexpert innan du använder dessa uppgifter för redovisnings- eller skatteändamål. Vänligen dubbelkolla med din Stripe-instrumentpanel då Hi.Events kan sakna historiska data.\",\"0Ew0uk\":\"Den här biljetten skannades nyss. Vänta innan du skannar igen.\",\"FYXq7k\":[\"Detta påverkar \",[\"loadedAffectedCount\"],\" datum.\"],\"kvpxIU\":\"Detta används för notiser och kommunikation med dina användare.\",\"rhsath\":\"Detta syns inte för kunder, men hjälper dig att identifiera affiliaten.\",\"hV6FeJ\":\"Takt\",\"+FjWgX\":\"Tor\",\"kkDQ8m\":\"Torsdag\",\"0GSPnc\":\"Biljettdesign\",\"EZC/Cu\":\"Biljettdesignen sparades\",\"bbslmb\":\"Biljettdesigner\",\"1BPctx\":\"Biljett för\",\"bgqf+K\":\"Biljettinnehavarens e-post\",\"oR7zL3\":\"Biljettinnehavarens namn\",\"HGuXjF\":\"Biljettinnehavare\",\"CMUt3Y\":\"Biljettinnehavare\",\"awHmAT\":\"Biljett-ID\",\"6czJik\":\"Biljettlogotyp\",\"OkRZ4Z\":\"Biljettnamn\",\"t79rDv\":\"Biljett hittades inte\",\"6tmWch\":\"Biljett eller produkt\",\"1tfWrD\":\"Biljettförhandsvisning för\",\"KnjoUA\":\"Biljettpris\",\"tGCY6d\":\"Biljettpris\",\"pGZOcL\":\"Biljetten skickades igen\",\"o02GZM\":\"Biljettförsäljningen för detta evenemang har avslutats\",\"8jLPgH\":\"Biljettyp\",\"X26cQf\":\"Biljett-URL\",\"8qsbZ5\":\"Biljetter och försäljning\",\"zNECqg\":\"biljetter\",\"6GQNLE\":\"Biljetter\",\"NRhrIB\":\"Biljetter och produkter\",\"OrWHoZ\":\"Biljetter erbjuds automatiskt till kunder på väntelistan när kapacitet blir tillgänglig.\",\"EUnesn\":\"Tillgängliga biljetter\",\"AGRilS\":\"Sålda biljetter\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Tid\",\"dMtLDE\":\"till\",\"/jQctM\":\"Till\",\"tiI71C\":\"För att öka dina gränser, kontakta oss på\",\"ecUA8p\":\"Idag\",\"W428WC\":\"Växla kolumner\",\"BRMXj0\":\"Imorgon\",\"UBSG1X\":\"Topparrangörer (Senaste 14 dagarna)\",\"3sZ0xx\":\"Totalt antal konton\",\"EaAPbv\":\"Totalt betalt belopp\",\"SMDzqJ\":\"Totalt antal deltagare\",\"orBECM\":\"Totalt inkasserat\",\"k5CU8c\":\"Totalt antal poster\",\"4B7oCp\":\"Total avgift\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Totalt antal användare\",\"oJjplO\":\"Totala visningar\",\"rBZ9pz\":\"Turer\",\"orluER\":\"Spåra kontotillväxt och resultat efter attribueringskälla\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Sant om offlinebetalning\",\"9GsDR2\":\"Sant om betalning väntar\",\"GUA0Jy\":\"Prova en annan sökning eller filter\",\"2P/OWN\":\"Försök justera dina filter för att se fler datum.\",\"ouM5IM\":\"Prova en annan e-postadress\",\"3DZvE7\":\"Prova Hi.Events gratis\",\"7P/9OY\":\"Ti\",\"vq2WxD\":\"Tis\",\"G3myU+\":\"Tisdag\",\"Kz91g/\":\"Turkiska\",\"GdOhw6\":\"Stäng av ljudet\",\"KUOhTy\":\"Slå på ljudet\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Skriv \\\"ta bort\\\" för att bekräfta\",\"XxecLm\":\"Typ av biljett\",\"IrVSu+\":\"Det gick inte att duplicera produkten. Kontrollera dina uppgifter\",\"Vx2J6x\":\"Det gick inte att hämta deltagaren\",\"h0dx5e\":\"Det gick inte att gå med i väntelistan\",\"DaE0Hg\":\"Det gick inte att läsa in deltagarinformation.\",\"GlnD5Y\":\"Det gick inte att läsa in produkter för detta datum. Försök igen.\",\"17VbmV\":\"Det gick inte att ångra incheckning\",\"n57zCW\":\"Oattribuerade konton\",\"9uI/rE\":\"Ångra\",\"b9SN9q\":\"Unik orderreferens\",\"Ef7StM\":\"Okänd\",\"ZBAScj\":\"Okänd deltagare\",\"MEIAzV\":\"Namnlös\",\"K6L5Mx\":\"Plats utan namn\",\"X13xGn\":\"Ej betrodd\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Uppdatera affiliate\",\"59qHrb\":\"Uppdatera kapacitet\",\"Gaem9v\":\"Uppdatera evenemangsnamn och beskrivning\",\"7EhE4k\":\"Uppdatera etikett\",\"NPQWj8\":\"Uppdatera plats\",\"75+lpR\":[\"Uppdatering: \",[\"subjectTitle\"],\" — schemaändringar\"],\"UOGHdA\":[\"Uppdatering: \",[\"subjectTitle\"],\" — tillfällets tid har ändrats\"],\"ogoTrw\":[\"Uppdaterade \",[\"count\"],\" datum\"],\"dDuona\":[\"Uppdaterade kapacitet för \",[\"count\"],\" datum\"],\"FT3LSc\":[\"Uppdaterade etikett för \",[\"count\"],\" datum\"],\"8EcY1g\":[\"Uppdaterade plats för \",[\"count\"],\" tillfälle(n)\"],\"gJQsLv\":\"Ladda upp en omslagsbild för din arrangör\",\"4kEGqW\":\"Ladda upp en logotyp för din arrangör\",\"lnCMdg\":\"Ladda upp bild\",\"29w7p6\":\"Laddar upp bild...\",\"HtrFfw\":\"URL krävs\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB-skanner aktiv\",\"dyTklH\":\"USB-skanner pausad\",\"OHJXlK\":\"Använd <0>Liquid-mallar för att anpassa dina mejl\",\"g0WJMu\":\"Använd lista för alla datum\",\"0k4cdb\":\"Använd orderuppgifterna för alla deltagare. Deltagarnas namn och e-postadresser matchar köparens uppgifter.\",\"MKK5oI\":\"Använd listan för alla datum, eller skapa en lista för detta datum?\",\"bA31T4\":\"Använd köparens uppgifter för alla deltagare\",\"rnoQsz\":\"Används för ramar, markeringar och formatering av QR-kod\",\"BV4L/Q\":\"UTM-analys\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Validerar ditt momsregistreringsnummer...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Momsnummer\",\"pnVh83\":\"Momsregistreringsnummer\",\"CabI04\":\"Momsregistreringsnumret får inte innehålla mellanslag\",\"PMhxAR\":\"Momsregistreringsnumret måste börja med en landskod med två bokstäver följt av 8–15 alfanumeriska tecken (t.ex. DE123456789)\",\"gPgdNV\":\"Momsregistreringsnumret validerades\",\"RUMiLy\":\"Validering av momsregistreringsnummer misslyckades\",\"vqji3Y\":\"Validering av momsregistreringsnummer misslyckades. Kontrollera ditt momsregistreringsnummer.\",\"8dENF9\":\"Moms på avgift\",\"ZutOKU\":\"Momssats\",\"+KJZt3\":\"Momsregistrerad\",\"Nfbg76\":\"Momsinställningarna sparades\",\"UvYql/\":\"Momsinställningarna sparades. Vi validerar ditt momsregistreringsnummer i bakgrunden.\",\"bXn1Jz\":\"Momsinställningar uppdaterade\",\"tJylUv\":\"Momshantering för plattformsavgifter\",\"FlGprQ\":\"Momshantering för plattformsavgifter: EU-momsregistrerade företag kan använda omvänd skattskyldighet (0 % – artikel 196 i momsdirektivet 2006/112/EG). Icke momsregistrerade företag debiteras irländsk moms på 23 %.\",\"516oLj\":\"Valideringstjänsten för moms är tillfälligt otillgänglig\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"Moms: ej registrerad\",\"AdWhjZ\":\"Verifieringskod\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Verifierad\",\"wCKkSr\":\"Verifiera e-postadress\",\"/IBv6X\":\"Verifiera din e-postadress\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Verifierar...\",\"fROFIL\":\"Vietnamesiska\",\"p5nYkr\":\"Visa alla\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Visa alla funktioner\",\"RnvnDc\":\"Visa alla meddelanden skickade på plattformen\",\"+WFMis\":\"Visa och ladda ner rapporter för alla dina evenemang. Endast slutförda ordrar ingår.\",\"c7VN/A\":\"Visa svar\",\"SZw9tS\":\"Visa detaljer\",\"9+84uW\":[\"Visa detaljer för \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Visa evenemang\",\"c6SXHN\":\"Visa evenemangsida\",\"n6EaWL\":\"Visa loggar\",\"OaKTzt\":\"Visa karta\",\"zNZNMs\":\"Visa meddelande\",\"67OJ7t\":\"Visa order\",\"tKKZn0\":\"Visa orderdetaljer\",\"KeCXJu\":\"Visa orderdetaljer, genomför återbetalningar och skicka bekräftelser igen.\",\"9jnAcN\":\"Visa arrangörens startsida\",\"1J/AWD\":\"Visa biljett\",\"N9FyyW\":\"Visa, redigera och exportera dina registrerade deltagare.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Väntar\",\"quR8Qp\":\"Väntar på betalning\",\"KrurBH\":\"Väntar på skanning…\",\"u0n+wz\":\"Väntelista\",\"3RXFtE\":\"Väntelista aktiverad\",\"TwnTPy\":\"Väntelisteerbjudande utgånget\",\"NzIvKm\":\"Väntelista utlöst\",\"aUi/Dz\":\"Varning: Detta är systemets standardkonfiguration. Ändringar påverkar alla konton som inte har en specifik konfiguration tilldelad.\",\"qeygIa\":\"On\",\"aT/44s\":\"Vi kunde inte kopiera den Stripe-anslutningen. Försök igen.\",\"RRZDED\":\"Vi kunde inte hitta några ordrar kopplade till den här e-postadressen.\",\"2RZK9x\":\"Vi kunde inte hitta ordern du letar efter. Länken kan ha löpt ut eller så kan orderuppgifterna ha ändrats.\",\"nefMIK\":\"Vi kunde inte hitta biljetten du letar efter. Länken kan ha löpt ut eller så kan biljettuppgifterna ha ändrats.\",\"miysJh\":\"Vi kunde inte hitta den här ordern. Den kan ha tagits bort.\",\"ADsQ23\":\"Vi kunde inte nå Stripe just nu. Försök igen om en stund.\",\"HJKdzP\":\"Det uppstod ett problem när sidan skulle laddas. Försök igen.\",\"jegrvW\":\"Vi samarbetar med Stripe för att skicka utbetalningar direkt till ditt bankkonto.\",\"IfN2Qo\":\"Vi rekommenderar en kvadratisk logotyp med minst 200×200 px\",\"wJzo/w\":\"Vi rekommenderar 400×400 px och maximal filstorlek 5 MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Vi använder cookies för att hjälpa oss förstå hur webbplatsen används och för att förbättra din upplevelse.\",\"x8rEDQ\":\"Vi kunde inte validera ditt momsregistreringsnummer efter flera försök. Vi fortsätter att försöka i bakgrunden. Kom tillbaka senare.\",\"iy+M+c\":[\"Vi meddelar dig via e-post om en plats blir tillgänglig för \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Vi öppnar en meddelandekompositör med en förifylld mall efter att du sparat. Du granskar och skickar den — ingenting skickas automatiskt.\",\"q1BizZ\":\"Vi skickar dina biljetter till den här e-postadressen\",\"ZOmUYW\":\"Vi validerar ditt momsregistreringsnummer i bakgrunden. Om det uppstår problem hör vi av oss.\",\"LKjHr4\":[\"Vi har gjort ändringar i schemat för \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" som påverkar \",[\"affectedCount\"],\" tillfällen.\"],\"Fq/Nx7\":\"Vi har skickat en verifieringskod med 5 siffror till:\",\"GdWB+V\":\"Webhook skapades\",\"2X4ecw\":\"Webhook togs bort\",\"ndBv0v\":\"Webhook-integrationer\",\"CThMKa\":\"Webhook-loggar\",\"I0adYQ\":\"Webhook-signeringshemlighet\",\"nuh/Wq\":\"Webhook-URL\",\"8BMPMe\":\"Webhooken skickar inga notiser\",\"FSaY52\":\"Webhooken skickar notiser\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Webbplats\",\"0f7U0k\":\"Ons\",\"VAcXNz\":\"Onsdag\",\"64X6l4\":\"vecka\",\"4XSc4l\":\"Veckovis\",\"IAUiSh\":\"veckor\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Välkommen tillbaka\",\"QDWsl9\":[\"Välkommen till \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Välkommen till \",[\"0\"],\", här är en lista över alla dina evenemang\"],\"DDbx7K\":\"Välbefinnande\",\"ywRaYa\":\"Vilken tid?\",\"FaSXqR\":\"Vilken typ av evenemang?\",\"0WyYF4\":\"Vad ej inloggad personal ser\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"När en incheckning tas bort\",\"RPe6bE\":\"När ett datum avbokas på ett återkommande evenemang\",\"Gmd0hv\":\"När en ny deltagare skapas\",\"zyIyPe\":\"När ett nytt evenemang skapas\",\"Lc18qn\":\"När en ny order skapas\",\"dfkQIO\":\"När en ny produkt skapas\",\"8OhzyY\":\"När en produkt tas bort\",\"tRXdQ9\":\"När en produkt uppdateras\",\"9L9/28\":\"När en produkt blir slutsåld kan kunder gå med i en väntelista för att meddelas när platser blir tillgängliga.\",\"Q7CWxp\":\"När en deltagare avbokas\",\"IuUoyV\":\"När en deltagare checkas in\",\"nBVOd7\":\"När en deltagare uppdateras\",\"t7cuMp\":\"När ett evenemang arkiveras\",\"gtoSzE\":\"När ett evenemang uppdateras\",\"ny2r8d\":\"När en order avbokas\",\"c9RYbv\":\"När en order markeras som betald\",\"ejMDw1\":\"När en order återbetalas\",\"fVPt0F\":\"När en order uppdateras\",\"bcYlvb\":\"När incheckningen stänger\",\"XIG669\":\"När incheckningen öppnar\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"När detta är aktiverat kan nya evenemang låta deltagare hantera sina egna biljettuppgifter via en säker länk. Detta kan åsidosättas per evenemang.\",\"blXLKj\":\"När detta är aktiverat visar nya evenemang en kryssruta för marknadsföringssamtycke i kassan. Detta kan åsidosättas per evenemang.\",\"Kj0Txn\":\"När aktiverat kommer inga applikationsavgifter att debiteras på Stripe Connect-transaktioner. Använd detta för länder där applikationsavgifter inte stöds.\",\"tMqezN\":\"Om återbetalningar behandlas\",\"uchB0M\":\"Förhandsgranskning av widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Skriv ditt meddelande här...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"år\",\"zkWmBh\":\"Årligen\",\"+BGee5\":\"år\",\"X/azM1\":\"Ja – jag har ett giltigt EU-momsregistreringsnummer\",\"Tz5oXG\":\"Ja, avbryt min order\",\"QlSZU0\":[\"Du utger dig för att vara <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Du gör en delåterbetalning. Kunden kommer att få \",[\"0\"],\" \",[\"1\"],\" återbetalat.\"],\"o7LgX6\":\"Du kan konfigurera ytterligare serviceavgifter och skatter i dina kontoinställningar.\",\"rj3A7+\":\"Du kan åsidosätta detta för enskilda datum senare.\",\"paWwQ0\":\"Du kan fortfarande erbjuda biljetter manuellt vid behov.\",\"jTDzpA\":\"Du kan inte arkivera den sista aktiva arrangören på ditt konto.\",\"5VGIlq\":\"Du har nått din meddelandegräns.\",\"casL1O\":\"Du har lagt till skatter och avgifter på en gratis produkt. Vill du ta bort dem?\",\"9jJNZY\":\"Du måste bekräfta ditt ansvar innan du sparar\",\"pCLes8\":\"Du måste godkänna att ta emot meddelanden\",\"FVTVBy\":\"Du måste verifiera din e-postadress innan du kan uppdatera arrangörsstatusen.\",\"ze4bi/\":\"Du måste skapa minst ett tillfälle innan du kan lägga till deltagare i detta återkommande evenemang.\",\"w65ZgF\":\"Du behöver verifiera kontots e-postadress innan du kan ändra e-postmallar.\",\"FRl8Jv\":\"Du behöver verifiera kontots e-postadress innan du kan skicka meddelanden.\",\"88cUW+\":\"Du får\",\"O6/3cu\":\"Du kommer att kunna ställa in datum, scheman och återkommande regler i nästa steg.\",\"zKAheG\":\"Du ändrar tillfällets tid\",\"MNFIxz\":[\"Du ska till \",[\"0\"],\"!\"],\"qGZz0m\":\"Du är på väntelistan!\",\"/5HL6k\":\"Du har erbjudits en plats!\",\"gbjFFH\":\"Du har ändrat tillfällets tid\",\"p/Sa0j\":\"Ditt konto har meddelandebegränsningar. För att öka dina gränser, kontakta oss på\",\"x/xjzn\":\"Dina affiliates har exporterats.\",\"TF37u6\":\"Dina deltagare har exporterats.\",\"79lXGw\":\"Din incheckningslista har skapats. Dela länken nedan med din incheckningspersonal.\",\"BnlG9U\":\"Din nuvarande order kommer att försvinna.\",\"nBqgQb\":\"Din e-postadress\",\"GG1fRP\":\"Ditt evenemang är live!\",\"ifRqmm\":\"Ditt meddelande har skickats!\",\"0/+Nn9\":\"Dina meddelanden visas här\",\"/Rj5P4\":\"Ditt namn\",\"PFjJxY\":\"Ditt nya lösenord måste vara minst 8 tecken långt.\",\"gzrCuN\":\"Dina orderuppgifter har uppdaterats. Ett bekräftelsemejl har skickats till den nya e-postadressen.\",\"naQW82\":\"Din order har avbokats.\",\"bhlHm/\":\"Din order väntar på betalning\",\"XeNum6\":\"Dina ordrar har exporterats.\",\"Xd1R1a\":\"Din arrangörsadress\",\"WWYHKD\":\"Din betalning skyddas med banknivå-kryptering\",\"5b3QLi\":\"Din plan\",\"N4Zkqc\":\"Ditt sparade datumfilter är inte längre tillgängligt — visar alla datum.\",\"FNO5uZ\":\"Din biljett är fortfarande giltig — ingen åtgärd behövs om inte den nya tiden inte fungerar för dig. Svara på detta e-postmeddelande om du har några frågor.\",\"CnZ3Ou\":\"Dina biljetter har bekräftats.\",\"EmFsMZ\":\"Ditt momsregistreringsnummer är köat för validering\",\"QBlhh4\":\"Ditt momsregistreringsnummer valideras när du sparar\",\"fT9VLt\":\"Ditt väntelisteerbjudande har upphört att gälla och vi kunde inte slutföra din beställning. Gå med i väntelistan igen för att meddelas när fler platser blir tillgängliga.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/se.po b/frontend/src/locales/se.po index d3a819a61e..fbdd4eabe2 100644 --- a/frontend/src/locales/se.po +++ b/frontend/src/locales/se.po @@ -60,7 +60,7 @@ msgstr "{0} <0>utcheckad lyckades" msgid "{0} Active Webhooks" msgstr "{0} aktiva webhooks" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} tillgängliga" @@ -78,7 +78,7 @@ msgstr "{0} kvar" msgid "{0} logo" msgstr "{0} logotyp" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{0} av {1} platser är upptagna." @@ -90,7 +90,7 @@ msgstr "{0} arrangörer" msgid "{0} spots left" msgstr "{0} platser kvar" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} biljetter" @@ -114,7 +114,7 @@ msgstr "{appName}-logotyp" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} deltagare är registrerade för detta tillfälle." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} av {totalCount} tillgängliga" @@ -122,7 +122,7 @@ msgstr "{availableCount} av {totalCount} tillgängliga" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} incheckade" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} evenemang" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} timmar, {minutes} minuter och {seconds} sekunder" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "{loadedAffectedAttendees} deltagare är registrerade över de berörda tillfällena." @@ -163,11 +163,11 @@ msgstr "{minutes} minuter och {seconds} sekunder" msgid "{organizerName}'s first event" msgstr "{organizerName}s första evenemang" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} biljettkategorier" @@ -230,7 +230,7 @@ msgstr "0 minuter och 0 sekunder" msgid "1 Active Webhook" msgstr "1 aktiv webhook" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "1 deltagare är registrerad över de berörda tillfällena." @@ -238,35 +238,35 @@ msgstr "1 deltagare är registrerad över de berörda tillfällena." msgid "1 attendee is registered for this session." msgstr "1 deltagare är registrerad för detta tillfälle." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 dag efter slutdatum" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 dag efter startdatum" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 dag före evenemanget" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 timme före evenemanget" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 biljett" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 biljettyp" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 vecka före evenemanget" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "Ett avbokningsmeddelande har skickats till" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "en ändring i varaktighet" @@ -321,7 +321,7 @@ msgstr "En rullgardinsmeny tillåter endast ett val" msgid "A fee, like a booking fee or a service fee" msgstr "En avgift, som en bokningsavgift eller serviceavgift" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "En kampanjkod utan rabatt kan användas för att visa dolda produkter." msgid "A Radio option has multiple options but only one can be selected." msgstr "Ett radioval har flera alternativ men endast ett kan väljas." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "en förskjutning av start-/sluttider" @@ -465,7 +465,7 @@ msgstr "Kontot uppdaterades" msgid "Accounts" msgstr "Konton" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Åtgärd krävs: Momsinformation krävs" @@ -493,10 +493,10 @@ msgstr "Aktiveringsdatum" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Aktiva betalningsmetoder" msgid "Activity" msgstr "Aktivitet" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Lägg till ett datum" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "Lägg till eventuella anteckningar om ordern..." msgid "Add at least one time" msgstr "Lägg till minst en tid" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Lägg till anslutningsuppgifter för onlineevenemanget." @@ -572,15 +576,19 @@ msgstr "Lägg till datum" msgid "Add Dates" msgstr "Lägg till datum" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Lägg till beskrivning" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "Lägg till fråga" msgid "Add Tax or Fee" msgstr "Lägg till skatt eller avgift" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Lägg till denna deltagare ändå (kringgå kapacitet)" @@ -634,8 +642,8 @@ msgstr "Lägg till denna deltagare ändå (kringgå kapacitet)" msgid "Add this event to your calendar" msgstr "Lägg till detta evenemang i din kalender" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Lägg till biljetter" @@ -649,7 +657,7 @@ msgstr "Lägg till prisnivå" msgid "Add to Calendar" msgstr "Lägg till i kalendern" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Lägg till spårningspixlar på dina offentliga evenemangssidor och arrangörens startsida. En cookie-medgivandebanner visas för besökare när spårning är aktiv." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Adressrad 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Adressrad 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Adressrad 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Adressrad 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Admin" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Administratörsåtkomst krävs" @@ -725,7 +733,7 @@ msgstr "Administratörsåtkomst krävs" msgid "Admin Dashboard" msgstr "Adminpanel" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Adminanvändare har full åtkomst till evenemang och kontoinställningar." @@ -776,7 +784,7 @@ msgstr "Partners exporterades" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Partners hjälper dig att spåra försäljning som genereras av partners och influencers. Skapa partnerkoder och dela dem för att övervaka resultat." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "alla" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "Alla arkiverade evenemang" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Alla deltagare" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "Alla deltagare för de valda tillfällena" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Alla deltagare för detta evenemang" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Alla deltagare för detta tillfälle" @@ -838,12 +846,12 @@ msgstr "Alla misslyckade jobb borttagna" msgid "All jobs queued for retry" msgstr "Alla jobb köade för nytt försök" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Alla matchande datum" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Alla tillfällen" @@ -897,7 +905,7 @@ msgstr "Har du redan ett konto? <0>{0}" msgid "Already in" msgstr "Redan inne" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Redan återbetald" @@ -905,11 +913,11 @@ msgstr "Redan återbetald" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Använder du redan Stripe på en annan arrangör? Återanvänd den anslutningen." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Avboka även denna order" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Återbetala även denna order" @@ -932,7 +940,7 @@ msgstr "Belopp" msgid "Amount Paid" msgstr "Betalt belopp" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Betalt belopp ({0})" @@ -952,7 +960,7 @@ msgstr "Ett fel uppstod vid inläsning av sidan" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Ett valfritt meddelande att visa på den markerade produkten, t.ex. \"Säljer snabbt 🔥\" eller \"Bästa värdet\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Ett oväntat fel uppstod." @@ -988,7 +996,7 @@ msgstr "Eventuella frågor från produktinnehavare kommer att skickas till denna msgid "Appearance" msgstr "Utseende" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "tillämpat" @@ -996,7 +1004,7 @@ msgstr "tillämpat" msgid "Applies to {0} products" msgstr "Gäller {0} produkter" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Gäller {0}, ej avbokade datum som för närvarande är inlästa på denna sida." @@ -1008,7 +1016,7 @@ msgstr "Gäller 1 produkt" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Gäller alla som öppnar länken utan att vara inloggade. Inloggade ser alltid allt." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Gäller varje {0}, ej avbokat datum i detta evenemang — inklusive datum som inte är inlästa." @@ -1016,11 +1024,11 @@ msgstr "Gäller varje {0}, ej avbokat datum i detta evenemang — inklusive datu msgid "Apply" msgstr "Använd" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Tillämpa ändringar" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Använd kampanjkod" @@ -1028,7 +1036,7 @@ msgstr "Använd kampanjkod" msgid "Apply this {type} to all new products" msgstr "Tillämpa denna {type} på alla nya produkter" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Tillämpa på" @@ -1044,36 +1052,35 @@ msgstr "Godkänn meddelande" msgid "April" msgstr "April" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Arkivera" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Arkivera evenemang" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Arkivera evenemang" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Arkivera arrangör" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Arkivera detta evenemang för att dölja det för allmänheten. Du kan återställa det senare." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Arkivera denna arrangör. Detta kommer också att arkivera alla evenemang som tillhör denna arrangör." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Arkiverad" @@ -1085,15 +1092,15 @@ msgstr "Arkiverade arrangörer" msgid "Are you sure you want to activate this attendee?" msgstr "Är du säker på att du vill aktivera denna deltagare?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Är du säker på att du vill arkivera detta evenemang?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Är du säker på att du vill arkivera detta evenemang? Det kommer inte längre att vara synligt för allmänheten." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Är du säker på att du vill arkivera denna arrangör? Detta kommer också att arkivera alla evenemang som tillhör denna arrangör." @@ -1123,7 +1130,7 @@ msgstr "Är du säker på att du vill ta bort alla misslyckade jobb?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Är du säker på att du vill ta bort denna partner? Denna åtgärd kan inte ångras." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Är du säker på att du vill ta bort denna konfiguration? Detta kan påverka konton som använder den." @@ -1137,11 +1144,11 @@ msgstr "Är du säker på att du vill ta bort detta datum? Denna åtgärd kan in msgid "Are you sure you want to delete this promo code?" msgstr "Är du säker på att du vill ta bort denna kampanjkod?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Är du säker på att du vill ta bort denna mall? Denna åtgärd kan inte ångras och e-post kommer att återgå till standardmallen." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Är du säker på att du vill ta bort denna mall? Denna åtgärd kan inte ångras och e-post kommer att återgå till arrangörens eller standardmallen." @@ -1150,17 +1157,17 @@ msgstr "Är du säker på att du vill ta bort denna mall? Denna åtgärd kan int msgid "Are you sure you want to delete this webhook?" msgstr "Är du säker på att du vill ta bort denna webhook?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Är du säker på att du vill lämna?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Är du säker på att du vill göra detta evenemang till ett utkast? Detta kommer att göra evenemanget osynligt för allmänheten" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Är du säker på att du vill publicera detta evenemang? Detta kommer att göra evenemanget synligt för allmänheten" @@ -1200,15 +1207,15 @@ msgstr "Vill du verkligen skicka om orderbekräftelsen till {0}?" msgid "Are you sure you want to resend the ticket to {0}?" msgstr "Vill du verkligen skicka om biljetten till {0}?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Är du säker på att du vill återställa detta evenemang?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Är du säker på att du vill återställa detta evenemang? Det kommer att återställas som ett utkast." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Är du säker på att du vill återställa denna arrangör?" @@ -1229,7 +1236,7 @@ msgstr "Är du säker på att du vill ta bort denna kapacitetstilldelning?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "Är du säker på att du vill ta bort denna incheckningslista?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "Är du momsregistrerad i EU?" @@ -1237,7 +1244,7 @@ msgstr "Är du momsregistrerad i EU?" msgid "Art" msgstr "Konst" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "Eftersom ditt företag är baserat i Irland tillämpas irländsk moms på 23% automatiskt på alla plattformsavgifter." @@ -1270,7 +1277,7 @@ msgstr "Tilldelad nivå" msgid "At least one event type must be selected" msgstr "Minst en evenemangstyp måste väljas" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Försök" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Närvaro och incheckningsfrekvens för alla evenemang" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "deltagare" @@ -1287,7 +1293,7 @@ msgstr "deltagare" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Deltagare" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Deltagarstatus" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Deltagarbiljett" @@ -1364,13 +1370,13 @@ msgstr "Deltagarens biljett ingår inte i denna lista" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "deltagare" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "deltagare" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Deltagare" @@ -1393,16 +1399,16 @@ msgstr "deltagare incheckade" msgid "Attendees Exported" msgstr "Deltagare exporterade" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Deltagare registrerade" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Registrerade deltagare" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Deltagare med en specifik biljett" @@ -1454,7 +1460,7 @@ msgstr "Anpassa widgetens höjd automatiskt baserat på innehållet. När funkti msgid "Available" msgstr "Tillgängligt" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Tillgängligt för återbetalning" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "Väntande" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "Väntar på offlinebetalning" @@ -1482,7 +1488,7 @@ msgstr "Väntar betalning" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "Väntar på betalning" @@ -1513,14 +1519,14 @@ msgstr "Tillbaka till konton" msgid "Back to calendar" msgstr "Tillbaka till kalender" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Tillbaka till evenemanget" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Tillbaka till evenemangssidan" @@ -1548,7 +1554,7 @@ msgstr "Bakgrundsfärg" msgid "Background Type" msgstr "Bakgrundstyp" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "Baserat på den globala försäljningsperioden ovan, inte per datum" msgid "Basic Information" msgstr "Grundläggande information" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Faktureringsadress" @@ -1599,11 +1605,11 @@ msgstr "Inbyggt bedrägeriskydd" msgid "Bulk Edit" msgstr "Massredigera" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Massredigera datum" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "Massuppdatering misslyckades." @@ -1635,11 +1641,11 @@ msgstr "Köparen betalar" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Köpare ser ett rent pris. Plattformavgiften dras från din utbetalning." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "Genom att lägga till spårningspixlar bekräftar du att du och denna plattform är gemensamt ansvariga för insamlade uppgifter. Du ansvarar för att säkerställa att du har en rättslig grund för denna behandling enligt tillämpliga integritetslagar (GDPR, CCPA, etc.)." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Genom att fortsätta godkänner du <0>{0} användarvillkor" @@ -1660,7 +1666,7 @@ msgstr "Genom att registrera dig godkänner du våra <0>användarvillkor och msgid "By ticket type" msgstr "Per biljettyp" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Kringgå applikationsavgifter" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "Kan inte checka in" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Avbryt" @@ -1729,7 +1735,7 @@ msgstr "Avbryt" msgid "Cancel {count} date(s)" msgstr "Avboka {count} datum" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Avbryt alla produkter och släpp tillbaka dem till poolen" @@ -1743,7 +1749,7 @@ msgstr "Avbryt alla produkter och släpp tillbaka dem till poolen" msgid "Cancel Date" msgstr "Avboka datum" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "Avbryt ändring av e-postadress" @@ -1751,7 +1757,7 @@ msgstr "Avbryt ändring av e-postadress" msgid "Cancel order" msgstr "Avbryt order" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Avbryt order" @@ -1759,7 +1765,7 @@ msgstr "Avbryt order" msgid "Cancel Order {0}" msgstr "Avbryt order {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "Avbrytande kommer att avbryta alla deltagare som är kopplade till denna order och släppa tillbaka biljetterna till den tillgängliga poolen." @@ -1781,7 +1787,7 @@ msgstr "Avbokning" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "Avbruten" msgid "Cancelled {0} date(s)" msgstr "Avbokade {0} datum" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "Det går inte att ta bort systemets standardkonfiguration" @@ -1825,7 +1831,7 @@ msgstr "Kapacitetshantering" msgid "Capacity must be 0 or greater" msgstr "Kapaciteten måste vara 0 eller större" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "kapacitetsuppdateringar" @@ -1833,7 +1839,7 @@ msgstr "kapacitetsuppdateringar" msgid "Capacity Used" msgstr "Använd kapacitet" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "Kategorier låter dig gruppera produkter. Till exempel kan du ha en kategori för \"Biljetter\" och en annan för \"Merchandise\"." @@ -1854,19 +1860,19 @@ msgstr "Kategori" msgid "Category Created Successfully" msgstr "Kategori skapades" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Ändra" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Ändra varaktighet" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Ändra lösenord" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Ändra deltagargränsen" @@ -1874,7 +1880,7 @@ msgstr "Ändra deltagargränsen" msgid "Change waitlist settings" msgstr "Ändra väntlistinställningar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "Ändrade varaktighet för {count} datum" @@ -1891,15 +1897,15 @@ msgstr "Välgörenhet" msgid "Check in" msgstr "Checka in" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Checka in {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Checka in och markera ordern som betald" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Endast checka in" @@ -1913,7 +1919,7 @@ msgstr "Checka ut" msgid "Check out this event: {0}" msgstr "Kolla in detta evenemang: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Kolla in detta evenemang!" @@ -1994,7 +2000,7 @@ msgstr "Incheckningslistor" msgid "Check-In Lists" msgstr "Incheckningslistor" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Incheckningsnavigering" @@ -2074,11 +2080,11 @@ msgstr "Välj en färg för din bakgrund" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Välj en annan åtgärd" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Välj en sparad plats att tillämpa." @@ -2108,12 +2114,12 @@ msgstr "Välj vem som betalar plattformsavgiften. Detta påverkar inte ytterliga #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Stad" @@ -2122,7 +2128,7 @@ msgstr "Stad" msgid "Clear" msgstr "Rensa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Rensa plats — återgå till evenemangets standard" @@ -2134,7 +2140,7 @@ msgstr "Rensa sökning" msgid "Clear Search Text" msgstr "Rensa söktext" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "Att rensa tar bort alla åsidosättningar per tillfälle. Berörda tillfällen återgår till evenemangets standardplats." @@ -2154,7 +2160,7 @@ msgstr "Klicka för att öppna igen för ny försäljning" msgid "Click to view notes" msgstr "Klicka för att visa anteckningar" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "stäng" @@ -2162,8 +2168,8 @@ msgstr "stäng" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Stäng" @@ -2259,7 +2265,7 @@ msgstr "Kommer snart" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Kommaseparerade nyckelord som beskriver evenemanget. Dessa används av sökmotorer för att kategorisera och indexera evenemanget." -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Kommunikationspreferens" @@ -2267,11 +2273,11 @@ msgstr "Kommunikationspreferens" msgid "complete" msgstr "klart" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Slutför order" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Slutför betalning" @@ -2280,11 +2286,11 @@ msgstr "Slutför betalning" msgid "Complete Stripe setup" msgstr "Slutför Stripe-installationen" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Slutför din beställning för att säkra dina biljetter. Detta erbjudande är tidsbegränsat, så vänta inte för länge." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Slutför din betalning för att säkra dina biljetter." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Slutför din profil för att gå med i laget." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Slutförd" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Slutförda ordrar" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Slutförda ordrar" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Skriv" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Konfiguration tilldelad" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Konfiguration skapad" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Konfiguration borttagen" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "Konfigurationsnamn är synliga för slutanvändare. Fasta avgifter kommer att konverteras till ordervalutan enligt aktuell växelkurs." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Konfiguration uppdaterad" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Konfigurationer" @@ -2377,10 +2383,10 @@ msgstr "Konfigurerad rabatt" msgid "Confirm" msgstr "Bekräfta" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "Bekräfta e-postadress" @@ -2393,7 +2399,7 @@ msgstr "Bekräfta ändring av e-postadress" msgid "Confirm new password" msgstr "Bekräfta nytt lösenord" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Bekräfta nytt lösenord" @@ -2428,16 +2434,16 @@ msgstr "Bekräftar e-postadress..." msgid "Congratulations! Your event is now visible to the public." msgstr "Grattis! Ditt evenemang är nu synligt för allmänheten." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Anslut Stripe" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Anslut Stripe för att aktivera redigering av e-postmallar" @@ -2445,7 +2451,7 @@ msgstr "Anslut Stripe för att aktivera redigering av e-postmallar" msgid "Connect Stripe to enable messaging" msgstr "Anslut Stripe för att aktivera meddelanden" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Anslut med Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "Kontakt-e-post för support" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Fortsätt" @@ -2508,7 +2514,7 @@ msgstr "Text på fortsätt-knapp" msgid "Continue Setup" msgstr "Fortsätt konfigurering" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Fortsätt till kassan" @@ -2520,7 +2526,7 @@ msgstr "Fortsätt till skapande av evenemang" msgid "Continue to next step" msgstr "Fortsätt till nästa steg" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Fortsätt till betalning" @@ -2545,7 +2551,7 @@ msgstr "Vem som kommer in, och när" msgid "Copied" msgstr "Kopierad" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Kopierad från ovan" @@ -2591,7 +2597,7 @@ msgstr "Kopiera kod" msgid "Copy customer link" msgstr "Kopiera kundlänk" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Kopiera uppgifter till första deltagaren" @@ -2609,7 +2615,7 @@ msgstr "Kopiera länk" msgid "Copy Link" msgstr "Kopiera länk" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Kopiera mina uppgifter till:" @@ -2630,7 +2636,7 @@ msgstr "Kopiera URL" msgid "Could not delete location" msgstr "Kunde inte ta bort plats" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Kunde inte förbereda massuppdateringen." @@ -2652,13 +2658,17 @@ msgstr "Kunde inte spara datum" msgid "Could not save location" msgstr "Kunde inte spara plats" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "Land" @@ -2671,6 +2681,10 @@ msgstr "Omslag" msgid "Cover Image" msgstr "Omslagsbild" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "Omslagsbilden visas högst upp på din evenemangssida" @@ -2743,7 +2757,7 @@ msgstr "skapa en organisatör" msgid "Create and configure tickets and merchandise for sale." msgstr "Skapa och konfigurera biljetter och produkter till försäljning." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Skapa deltagare" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Skapa kategori" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Skapa kategori" @@ -2771,17 +2785,17 @@ msgstr "Skapa kategori" msgid "Create Check-In List" msgstr "Skapa incheckningslista" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Skapa konfiguration" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Skapa anpassade e-postmallar för detta evenemang som åsidosätter organisatörens standardinställningar" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Skapa anpassad mall" @@ -2793,16 +2807,16 @@ msgstr "Skapa datum" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Skapa rabatter, åtkomstkoder för dolda biljetter och specialerbjudanden." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Skapa evenemang" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Skapa för detta datum" @@ -2849,7 +2863,7 @@ msgstr "Skapa skatt eller avgift" msgid "Create Ticket or Product" msgstr "Skapa biljett eller produkt" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "Skapa ditt evenemang" msgid "Create your first event" msgstr "Skapa ditt första evenemang" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "CTA-text är obligatorisk" msgid "Currency" msgstr "Valuta" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Nuvarande lösenord" @@ -2931,7 +2949,7 @@ msgstr "För närvarande tillgänglig för köp" msgid "Custom branding" msgstr "Anpassad varumärkesprofil" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Anpassat datum och tid" @@ -2957,7 +2975,7 @@ msgstr "Anpassade frågor" msgid "Custom Range" msgstr "Anpassat intervall" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Anpassad mall" @@ -2970,7 +2988,7 @@ msgstr "Kund" msgid "Customer link copied to clipboard" msgstr "Kundlänk kopierad till urklipp" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "Kunden kommer att få ett e-postmeddelande som bekräftar återbetalningen" @@ -2990,11 +3008,15 @@ msgstr "Kundens efternamn" msgid "Customers" msgstr "Kunder" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Anpassa e-post- och aviseringsinställningarna för detta evenemang" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Anpassa e-postmeddelanden som skickas till dina kunder med Liquid-mallar. Dessa mallar används som standard för alla evenemang i din organisation." @@ -3027,6 +3049,10 @@ msgstr "Anpassa texten som visas på fortsätt-knappen" msgid "Customize your email template using Liquid templating" msgstr "Anpassa din e-postmall med Liquid-mallar" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Anpassa utseendet på din organisatörssida" @@ -3079,7 +3105,7 @@ msgstr "Mörk" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Instrumentpanel" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Datum och tid" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Datumavbokning" @@ -3208,12 +3234,12 @@ msgstr "Standardkapacitet per datum" msgid "Default Fee Handling" msgstr "Standard avgiftshantering" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Standardmall kommer att användas" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "ta bort" @@ -3267,8 +3293,8 @@ msgstr "Ta bort kod" msgid "Delete Date" msgstr "Ta bort datum" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Ta bort evenemang" @@ -3285,8 +3311,8 @@ msgstr "Ta bort jobb" msgid "Delete location" msgstr "Ta bort plats" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Ta bort arrangör" @@ -3294,7 +3320,7 @@ msgstr "Ta bort arrangör" msgid "Delete Permanently" msgstr "Ta bort permanent" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Ta bort mall" @@ -3319,7 +3345,7 @@ msgstr "Tog bort {0} datum" msgid "Description" msgstr "Beskrivning" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "Rabatt i {0}" msgid "Discount Type" msgstr "Rabattyp" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Stäng" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Stäng detta meddelande" @@ -3441,7 +3467,7 @@ msgstr "Ladda ner CSV" msgid "Download invoice" msgstr "Ladda ner faktura" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Ladda ner faktura" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Ladda ner försäljnings-, deltagar- och finansiella rapporter för alla slutförda order." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "Laddar ner faktura" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Utkast" @@ -3469,7 +3494,7 @@ msgstr "Utkast" msgid "Dropdown selection" msgstr "Rullgardinsval" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "På grund av hög risk för spam måste du ansluta ett Stripe-konto innan du kan ändra e-postmallar. Detta säkerställer att alla evenemangsarrangörer är verifierade och ansvariga." @@ -3490,7 +3515,7 @@ msgstr "Duplicera" msgid "Duplicate Date" msgstr "Duplicera datum" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Duplicera evenemang" @@ -3508,7 +3533,7 @@ msgstr "Dupliceringsalternativ" msgid "Duplicate Product" msgstr "Duplicera produkt" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "Varaktigheten måste vara minst 1 minut." @@ -3520,7 +3545,7 @@ msgstr "Nederländska" msgid "e.g. 180 (3 hours)" msgstr "t.ex. 180 (3 timmar)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "t.ex. Morgonpass" msgid "e.g., Get Tickets, Register Now" msgstr "t.ex. Köp biljetter, Registrera dig nu" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "t.ex., viktiga uppdateringar gällande dina biljetter" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "t.ex. Standard, Premium, Enterprise" @@ -3542,7 +3567,7 @@ msgstr "t.ex. Standard, Premium, Enterprise" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Varje person kommer att få ett e-postmeddelande med en reserverad plats för att slutföra sitt köp." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Tidigare" @@ -3611,7 +3636,7 @@ msgstr "Redigera incheckningslista" msgid "Edit Code" msgstr "Redigera kod" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Redigera konfiguration" @@ -3659,8 +3684,8 @@ msgstr "Redigera fråga" msgid "Edit user" msgstr "Redigera användare" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Redigera användare" @@ -3708,7 +3733,7 @@ msgstr "Giltiga incheckningslistor" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Giltiga incheckningslistor" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "E-post" @@ -3743,10 +3768,10 @@ msgstr "E-post och mallar" msgid "Email address" msgstr "E-postadress" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "E-postadress" @@ -3755,8 +3780,8 @@ msgstr "E-postadress" msgid "Email address copied to clipboard" msgstr "E-postadress kopierad till urklipp" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "E-postadresserna matchar inte" @@ -3764,21 +3789,21 @@ msgstr "E-postadresserna matchar inte" msgid "Email Body" msgstr "E-postinnehåll" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "Ändring av e-postadress avbröts" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "Ändring av e-postadress väntar" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "E-postbekräftelse skickades igen" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "E-postbekräftelse skickades igen" @@ -3792,7 +3817,7 @@ msgstr "Meddelande i e-postsidfot" msgid "Email is required" msgstr "E-post krävs" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "E-post ej verifierad" @@ -3800,7 +3825,7 @@ msgstr "E-post ej verifierad" msgid "Email Preview" msgstr "Förhandsgranskning av e-post" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "E-postmallar" @@ -3809,6 +3834,10 @@ msgstr "E-postmallar" msgid "Email Verification Required" msgstr "E-postverifiering krävs" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "E-post verifierad" @@ -3897,12 +3926,11 @@ msgstr "Sluttid (valfritt)" msgid "End time of the occurrence" msgstr "Sluttid för tillfället" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Avslutad" @@ -3920,11 +3948,11 @@ msgstr "Slutar {0}" msgid "English" msgstr "Engelska" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Ange ett kapacitetsvärde eller välj obegränsat." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Ange en etikett eller välj att ta bort den." @@ -3932,7 +3960,7 @@ msgstr "Ange en etikett eller välj att ta bort den." msgid "Enter a subject and body to see the preview" msgstr "Ange ämne och innehåll för att se förhandsgranskningen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Ange en tid att förskjuta med." @@ -3949,11 +3977,11 @@ msgstr "Ange partnerns e-post (valfritt)" msgid "Enter affiliate name" msgstr "Ange partnernamn" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Ange ett belopp exklusive skatter och avgifter" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Ange kapacitet" @@ -3998,7 +4026,7 @@ msgstr "Ange din e-postadress så skickar vi instruktioner för att återställa msgid "Enter your name" msgstr "Ange ditt namn" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Ange ditt momsnummer inklusive landskod, utan mellanslag (t.ex. IE1234567A, DE123456789)" @@ -4012,7 +4040,7 @@ msgstr "Poster visas här när kunder ansluter sig till väntelistan för sluts #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Fel" @@ -4074,7 +4102,7 @@ msgstr "Evenemang" msgid "Event Archived" msgstr "Evenemang arkiverat" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Evenemanget har arkiverats" @@ -4086,7 +4114,7 @@ msgstr "Evenemangskategori" msgid "Event Cover Image" msgstr "Omslagsbild för evenemang" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4094,7 +4122,7 @@ msgstr "" msgid "Event Created" msgstr "Evenemang skapat" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Anpassad evenemangsmall" @@ -4113,7 +4141,7 @@ msgstr "Evenemangsdatum" msgid "Event Defaults" msgstr "Standardinställningar för evenemang" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Evenemanget har tagits bort" @@ -4145,10 +4173,14 @@ msgstr "Evenemang duplicerades" msgid "Event Full Address" msgstr "Evenemangets fullständiga adress" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Evenemangets startsida" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Evenemangsplats" @@ -4188,7 +4220,7 @@ msgstr "Evenemangsarrangörens namn" msgid "Event Page" msgstr "Evenemangssida" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Evenemanget har återställts" @@ -4197,17 +4229,17 @@ msgstr "Evenemanget har återställts" msgid "Event Settings" msgstr "Evenemangsinställningar" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Uppdatering av evenemangsstatus misslyckades. Försök igen senare." -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Evenemangsstatus uppdaterad" @@ -4240,7 +4272,7 @@ msgstr "Evenemangstitel" msgid "Event Too New" msgstr "Evenemang för nytt" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Evenemangstotaler" @@ -4405,7 +4437,7 @@ msgstr "Misslyckades vid" msgid "Failed Jobs" msgstr "Misslyckade jobb" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "Misslyckades med att avbryta ordern. Försök igen." @@ -4439,7 +4471,7 @@ msgstr "Misslyckades med att avbryta order" msgid "Failed to create affiliate" msgstr "Misslyckades med att skapa partner" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Misslyckades med att skapa konfiguration" @@ -4447,12 +4479,12 @@ msgstr "Misslyckades med att skapa konfiguration" msgid "Failed to create schedule" msgstr "Det gick inte att skapa schema" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Misslyckades med att skapa mall" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Misslyckades med att ta bort konfiguration" @@ -4470,7 +4502,7 @@ msgstr "Det gick inte att ta bort datum. Det kan ha befintliga beställningar." msgid "Failed to delete dates" msgstr "Det gick inte att ta bort datum" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Det gick inte att ta bort evenemanget" @@ -4482,7 +4514,7 @@ msgstr "Misslyckades med att ta bort jobb" msgid "Failed to delete jobs" msgstr "Misslyckades med att ta bort jobb" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Det gick inte att ta bort arrangören" @@ -4490,13 +4522,13 @@ msgstr "Det gick inte att ta bort arrangören" msgid "Failed to delete question" msgstr "Misslyckades med att ta bort frågan" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Misslyckades med att ta bort mall" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Misslyckades med att ladda ner faktura. Försök igen." @@ -4594,14 +4626,14 @@ msgstr "Det gick inte att spara prisåsidosättning" msgid "Failed to save product settings" msgstr "Det gick inte att spara produktinställningar" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Misslyckades med att spara mall" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Misslyckades med att spara momsinställningar. Försök igen." @@ -4639,11 +4671,11 @@ msgstr "Misslyckades med att uppdatera svar." msgid "Failed to update attendee" msgstr "Misslyckades med att uppdatera deltagare" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Misslyckades med att uppdatera konfiguration" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Det gick inte att uppdatera evenemangets status" @@ -4655,7 +4687,7 @@ msgstr "Misslyckades med att uppdatera meddelandenivå" msgid "Failed to update order" msgstr "Misslyckades med att uppdatera order" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Det gick inte att uppdatera arrangörens status" @@ -4701,7 +4733,7 @@ msgstr "Februari" msgid "Fee" msgstr "Avgift" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Avgiftsvaluta" @@ -4720,7 +4752,7 @@ msgstr "" msgid "Fees" msgstr "Avgifter" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Avgifter kringgås" @@ -4732,8 +4764,8 @@ msgstr "Festival" msgid "File is too large. Maximum size is 5MB." msgstr "Filen är för stor. Maximal storlek är 5 MB." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Fyll i dina uppgifter ovan först" @@ -4754,7 +4786,7 @@ msgstr "Filtrera deltagare" msgid "Filter by date" msgstr "Filtrera efter datum" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Filtrera efter evenemang" @@ -4775,19 +4807,27 @@ msgstr "Filter ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Slutför Stripe-konfigurationen" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "Första" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "Första deltagare" @@ -4798,22 +4838,22 @@ msgstr "Första fakturanummer" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Förnamn" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Förnamn" @@ -4843,16 +4883,16 @@ msgstr "Fast belopp" msgid "Fixed fee" msgstr "Fast avgift" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Fast avgift" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Fast avgift per transaktion" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "Fast avgift måste vara 0 eller högre" @@ -4923,7 +4963,11 @@ msgstr "Fredag" msgid "Full data ownership" msgstr "Fullt dataägande" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Full återbetalning" @@ -4931,11 +4975,11 @@ msgstr "Full återbetalning" msgid "Full resolved address" msgstr "Fullständig upplöst adress" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "framtida" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Endast framtida datum" @@ -4992,7 +5036,7 @@ msgstr "Sätt igång" msgid "Get Tickets" msgstr "Köp biljetter" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Gör ditt evenemang redo" @@ -5013,7 +5057,7 @@ msgstr "Gå tillbaka" msgid "Go back to profile" msgstr "Gå tillbaka till profilen" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Gå till evenemangssidan" @@ -5037,7 +5081,7 @@ msgstr "Google Kalender" msgid "Got it" msgstr "Uppfattat" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Bruttointäkter" @@ -5045,22 +5089,22 @@ msgstr "Bruttointäkter" msgid "Gross Revenue" msgstr "Bruttointäkter" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Bruttoförsäljning" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Bruttoförsäljning" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5077,7 +5121,7 @@ msgstr "Gäster" msgid "Happening now" msgstr "Pågår nu" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Har du en kampanjkod?" @@ -5106,7 +5150,7 @@ msgstr "Här är React-komponenten som du kan använda för att bädda in widget msgid "Here is your affiliate link" msgstr "Här är din partnerlänk" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Hej {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Dold från offentlig vy" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "Dolda frågor är endast synliga för arrangören och inte för kunden." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Dölj" @@ -5239,8 +5283,8 @@ msgstr "Förhandsvisning av startsida" msgid "Homer" msgstr "Homer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Timmar" @@ -5269,11 +5313,11 @@ msgstr "Hur ofta?" msgid "How to pay offline" msgstr "Hur man betalar offline" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "Hur moms tillämpas på de plattformsavgifter vi tar ut." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "HTML-teckengränsen har överskridits: {htmlLength}/{maxLength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Ungerska" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Jag bekräftar mitt ansvar som personuppgiftsansvarig" @@ -5305,11 +5349,11 @@ msgstr "Jag godkänner att ta emot e-postmeddelanden relaterade till detta evene msgid "I agree to the <0>terms and conditions" msgstr "Jag godkänner <0>villkoren" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Jag bekräftar att detta är ett transaktionsmeddelande relaterat till detta evenemang" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Om en ny flik inte öppnades automatiskt, klicka på knappen nedan för att fortsätta till kassan." @@ -5325,7 +5369,7 @@ msgstr "Om detta är aktiverat kan incheckningspersonal antingen markera deltaga msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Om detta är aktiverat får arrangören ett e-postmeddelande när en ny beställning görs" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Om du inte begärde denna ändring, ändra omedelbart ditt lösenord." @@ -5370,11 +5414,11 @@ msgstr "Impersonering startad" msgid "Impersonation stopped" msgstr "Impersonering stoppad" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Viktig information" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Viktigt: Om du ändrar din e-postadress uppdateras länken för att komma åt denna order. Du kommer att omdirigeras till den nya orderlänken efter att du har sparat." @@ -5390,7 +5434,7 @@ msgstr "Om {diffMinutes} minuter" msgid "in last {0} min" msgstr "senaste {0} min" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "På plats — ange en plats" @@ -5401,15 +5445,15 @@ msgstr "in_person, online, unset, eller mixed" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Inaktiv" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Inaktiva användare kan inte logga in." @@ -5483,12 +5527,12 @@ msgstr "Ogiltigt e-postformat" msgid "Invalid file type. Please upload an image." msgstr "Ogiltig filtyp. Ladda upp en bild." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Ogiltig Liquid-syntax. Korrigera och försök igen." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Ogiltigt format på momsregistreringsnummer" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Faktura" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Fakturan laddades ner" @@ -5545,7 +5589,7 @@ msgstr "Fakturainställningar" msgid "Italian" msgstr "Italienska" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Artikel" @@ -5628,7 +5672,7 @@ msgstr "just nu" msgid "Just wrapped" msgstr "Just avslutat" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Håll mig uppdaterad om nyheter och evenemang från {0}" @@ -5647,13 +5691,13 @@ msgstr "Etikett" msgid "Label for the occurrence" msgstr "Etikett för tillfället" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "etikettuppdateringar" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Språk" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "Senaste 24 timmarna" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "Senaste 30 dagarna" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "Senaste 6 månaderna" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "Senaste 7 dagarna" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "Senaste 90 dagarna" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Efternamn" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Efternamn" @@ -5753,7 +5797,7 @@ msgstr "Senast utlöst" msgid "Last Used" msgstr "Senast använd" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Senare" @@ -5786,7 +5830,7 @@ msgstr "Lämna på för att täcka varje biljett på evenemanget. Stäng av för msgid "Let them know about the change" msgstr "Meddela dem om ändringen" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Meddela dem om ändringarna" @@ -5830,12 +5874,11 @@ msgstr "Lista" msgid "List view" msgstr "Listvy" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "Live" @@ -5848,7 +5891,7 @@ msgstr "LIVE" msgid "Live Events" msgstr "Liveevenemang" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Inlästa datum" @@ -5872,8 +5915,8 @@ msgstr "Laddar webhooks" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Laddar..." @@ -5926,7 +5969,7 @@ msgstr "Plats sparad" msgid "Location updated" msgstr "Plats uppdaterad" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "platsuppdateringar" @@ -5990,7 +6033,7 @@ msgstr "Huvudkontor" msgid "Make billing address mandatory during checkout" msgstr "Gör faktureringsadress obligatorisk i kassan" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "Hantera deltagare" msgid "Manage dates and times for your recurring event" msgstr "Hantera datum och tider för ditt återkommande evenemang" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Hantera evenemang" @@ -6039,10 +6082,14 @@ msgstr "Hantera order" msgid "Manage payment and invoicing settings for this event." msgstr "Hantera betalnings- och fakturainställningar för detta evenemang." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Hantera profil" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Hantera schema" @@ -6124,7 +6171,7 @@ msgstr "Medium" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Meddelande" @@ -6141,7 +6188,7 @@ msgstr "Meddela deltagare" msgid "Message Attendees" msgstr "Meddela deltagare" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Meddela deltagare med specifika biljetter" @@ -6165,7 +6212,7 @@ msgstr "Meddelandeinnehåll" msgid "Message Details" msgstr "Meddelandedetaljer" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Meddela enskilda deltagare" @@ -6173,15 +6220,15 @@ msgstr "Meddela enskilda deltagare" msgid "Message is required" msgstr "Meddelande krävs" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Meddela orderägare med specifika produkter" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Meddelande schemalagt" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Meddelande skickat" @@ -6212,8 +6259,8 @@ msgstr "Minimipris" msgid "minutes" msgstr "minuter" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Minuter" @@ -6229,7 +6276,7 @@ msgstr "Övriga inställningar" msgid "Mo" msgstr "Må" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Läge" @@ -6282,7 +6329,7 @@ msgstr "Fler åtgärder" msgid "Most Viewed Events (Last 14 Days)" msgstr "Mest visade evenemang (Senaste 14 dagarna)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Flytta alla datum tidigare eller senare" @@ -6290,7 +6337,7 @@ msgstr "Flytta alla datum tidigare eller senare" msgid "Multi line text box" msgstr "Flerradigt textfält" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Namn" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "Namn krävs" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "Namnet måste vara kortare än 255 tecken" @@ -6384,21 +6431,21 @@ msgstr "Nettointäkter" msgid "Never" msgstr "Aldrig" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Ny kapacitet" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Ny etikett" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Ny plats" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "Nytt lösenord" @@ -6426,7 +6473,7 @@ msgstr "Nattliv" msgid "No" msgstr "Nej" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "Nej, jag är en privatperson eller ett företag som inte är momsregistrerat" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "Inga kapacitetstilldelningar" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "Inga incheckningslistor tillgängliga för detta evenemang." msgid "No check-ins yet" msgstr "Inga incheckningar än" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "Inga konfigurationer hittades" @@ -6537,7 +6584,7 @@ msgstr "Ingen datumspecifik incheckningslista" msgid "No dates available this month. Try navigating to another month." msgstr "Inga datum tillgängliga denna månad. Försök navigera till en annan månad." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "Inga datum matchar de aktuella filtren." @@ -6582,8 +6629,8 @@ msgstr "Inga evenemang startar inom de närmaste 24 timmarna" msgid "No events to show" msgstr "Inga evenemang att visa" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "Inga ordrar hittades" msgid "No orders to show" msgstr "Inga ordrar att visa" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "Inga beställningar ännu för detta datum." msgid "No organizer activity in the last 14 days" msgstr "Ingen arrangörsaktivitet de senaste 14 dagarna" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "Ingen arrangörskontext tillgänglig." @@ -6733,7 +6780,7 @@ msgstr "Inga svar ännu" msgid "No results" msgstr "Inga resultat" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Inga sparade platser ännu" @@ -6793,16 +6840,16 @@ msgstr "Inga webhook-händelser har registrerats för denna endpoint ännu. Hän msgid "No Webhooks" msgstr "Inga webhooks" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "Nej, stanna kvar här" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "ej redigerad" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Ingen" @@ -6870,7 +6917,7 @@ msgstr "Nummerprefix" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Tillfälle" @@ -7005,7 +7052,7 @@ msgstr "Information om offlinebetalningar" msgid "Offline Payments Settings" msgstr "Inställningar för offlinebetalningar" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "När du börjar samla in data visas det här." msgid "Ongoing" msgstr "Pågående" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "Pågående" msgid "Online" msgstr "Online" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "Online — ange anslutningsuppgifter" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Online och fysiskt" @@ -7070,15 +7117,15 @@ msgstr "Anslutningsuppgifter för onlineevenemang" msgid "Online Event Details" msgstr "Information om onlineevenemang" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Endast kontoadministratörer kan ta bort eller arkivera evenemang. Kontakta din kontoadministratör för hjälp." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Endast kontoadministratörer kan ta bort eller arkivera arrangörer. Kontakta din kontoadministratör för hjälp." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Skicka endast till ordrar med dessa statusar" @@ -7173,7 +7220,7 @@ msgstr "Order och biljett" msgid "Order #" msgstr "Order nr" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Order avbruten" @@ -7182,13 +7229,13 @@ msgstr "Order avbruten" msgid "Order Cancelled" msgstr "Order avbruten" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Order slutförd" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Orderbekräftelse" @@ -7273,7 +7320,7 @@ msgstr "Order markerad som betald" msgid "Order Marked as Paid" msgstr "Order markerad som betald" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Order hittades inte" @@ -7297,7 +7344,7 @@ msgstr "Ordernummer, köpdatum, köparens e-post" msgid "Order owner" msgstr "Orderägare" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Orderägare med en specifik produkt" @@ -7327,7 +7374,7 @@ msgstr "Order återbetalad" msgid "Order Status" msgstr "Orderstatus" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Orderstatusar" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Ordertidsgräns" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Ordersumma" @@ -7357,7 +7404,7 @@ msgstr "Order uppdaterades" msgid "Order URL" msgstr "Order-URL" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "Ordern avbröts" @@ -7374,8 +7421,8 @@ msgstr "beställningar" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Organisationsnamn" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Organisationsnamn" msgid "Organizer" msgstr "Arrangör" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Arrangören har arkiverats" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Arrangörens instrumentpanel" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Arrangören har tagits bort" @@ -7486,7 +7533,7 @@ msgstr "Arrangörsnamn" msgid "Organizer Not Found" msgstr "Arrangör hittades inte" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Arrangören har återställts" @@ -7504,7 +7551,7 @@ msgstr "Uppdatering av arrangörsstatus misslyckades. Försök igen senare" msgid "Organizer status updated" msgstr "Arrangörsstatus uppdaterad" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Arrangörens eller standardmall kommer att användas" @@ -7512,7 +7559,7 @@ msgstr "Arrangörens eller standardmall kommer att användas" msgid "Organizers" msgstr "Arrangörer" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Arrangörer kan endast hantera evenemang och produkter. De kan inte hantera användare, kontoinställningar eller faktureringsinformation." @@ -7563,7 +7610,7 @@ msgstr "Utfyllnad" msgid "Page" msgstr "Sida" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Sidan är inte längre tillgänglig" @@ -7575,7 +7622,7 @@ msgstr "Sidan hittades inte" msgid "Page URL" msgstr "Sidans URL" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Sidvisningar" @@ -7583,11 +7630,11 @@ msgstr "Sidvisningar" msgid "Page Views" msgstr "Sidvisningar" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "betald" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "Betalda konton" msgid "Paid Product" msgstr "Betald produkt" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Delvis återbetalning" @@ -7623,7 +7670,7 @@ msgstr "För över till köparen" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Lösenord" @@ -7694,7 +7741,7 @@ msgstr "Payload" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Betalning" @@ -7735,7 +7782,7 @@ msgstr "Betalningsmetoder" msgid "Payment provider" msgstr "Betalleverantör" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Betalning mottagen" @@ -7747,7 +7794,7 @@ msgstr "Betalning mottagen" msgid "Payment Status" msgstr "Betalningsstatus" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "Betalningen lyckades!" @@ -7761,11 +7808,11 @@ msgstr "Betalningar är inte tillgängliga" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Utbetalningar" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "Väntar" @@ -7801,8 +7848,8 @@ msgstr "Procent" msgid "Percentage Amount" msgstr "Procentbelopp" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Procentuell avgift" @@ -7810,11 +7857,11 @@ msgstr "Procentuell avgift" msgid "Percentage fee (%)" msgstr "Procentavgift (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "Procenttalet måste vara mellan 0 och 100" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Procent av transaktionsbeloppet" @@ -7822,11 +7869,11 @@ msgstr "Procent av transaktionsbeloppet" msgid "Performance" msgstr "Prestanda" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Ta bort detta evenemang och alla tillhörande data permanent." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Ta bort denna arrangör och alla dess evenemang permanent." @@ -7834,7 +7881,7 @@ msgstr "Ta bort denna arrangör och alla dess evenemang permanent." msgid "Permanently remove this date" msgstr "Ta bort detta datum permanent" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Personlig information" @@ -7842,7 +7889,7 @@ msgstr "Personlig information" msgid "Phone" msgstr "Telefon" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Välj en plats" @@ -7892,7 +7939,7 @@ msgstr "Plattformsavgift på {0} dras från din utbetalning" msgid "Platform Fees" msgstr "Plattformsavgifter" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Plattformsavgiftsrapport" @@ -7918,7 +7965,7 @@ msgstr "Kontrollera din e-postadress och ditt lösenord och försök igen" msgid "Please check your email is valid" msgstr "Kontrollera att din e-postadress är giltig" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Kontrollera din e-post för att bekräfta din e-postadress" @@ -7926,7 +7973,7 @@ msgstr "Kontrollera din e-post för att bekräfta din e-postadress" msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Kontrollera din biljett för den uppdaterade tiden. Dina biljetter är fortfarande giltiga — ingen åtgärd behövs om inte de nya tiderna inte fungerar för dig. Svara på detta e-postmeddelande om du har några frågor." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Fortsätt i den nya fliken" @@ -7955,7 +8002,7 @@ msgstr "Ange en giltig URL" msgid "Please enter the 5-digit code" msgstr "Ange den femsiffriga koden" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Ange ditt momsregistreringsnummer" @@ -7971,11 +8018,11 @@ msgstr "Vänligen tillhandahåll en bild." msgid "Please restart the checkout process." msgstr "Starta om kassaprocessen." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Gå tillbaka till evenemangssidan för att börja om." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Välj ett datum och en tid" @@ -7987,7 +8034,7 @@ msgstr "Välj ett datumintervall" msgid "Please select an image." msgstr "Välj en bild." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Välj minst en produkt" @@ -7998,7 +8045,7 @@ msgstr "Välj minst en produkt" msgid "Please try again." msgstr "Försök igen." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Verifiera din e-postadress för att få tillgång till alla funktioner" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Vänta medan vi förbereder dina deltagare för export..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Vänta medan vi förbereder din faktura..." @@ -8124,7 +8171,7 @@ msgstr "Utskriftsförhandsgranskning" msgid "Print Ticket" msgstr "Skriv ut biljett" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Skriv ut biljetter" @@ -8139,7 +8186,7 @@ msgstr "Skriv ut till PDF" msgid "Privacy Policy" msgstr "Integritetspolicy" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Genomför återbetalning" @@ -8180,7 +8227,7 @@ msgstr "Produkten togs bort" msgid "Product Price Type" msgstr "Produktens pristyp" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Produkt(er)" msgid "Products" msgstr "Produkter" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Sålda produkter" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Sålda produkter" msgid "Products sorted successfully" msgstr "Produkter sorterades korrekt" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Profil" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Profilen uppdaterades" @@ -8251,7 +8298,7 @@ msgstr "Profilen uppdaterades" msgid "Progress" msgstr "Förlopp" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Kampanjkoden {promo_code} har tillämpats" @@ -8298,7 +8345,7 @@ msgstr "Rapport för kampanjkoder" msgid "Promo Only" msgstr "Endast kampanj" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "Marknadsföringsmejl kan leda till att kontot stängs av" @@ -8310,11 +8357,11 @@ msgstr "" "Ge ytterligare sammanhang eller instruktioner för denna fråga. Använd detta fält för att lägga till villkor\n" "och bestämmelser, riktlinjer eller annan viktig information som deltagare behöver veta innan de svarar." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Ange minst ett adressfält för den nya platsen." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Tillhandahåll följande före Stripes nästa granskning för att hålla utbetalningarna igång." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Leverantör" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Publicera" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "Realtidsanalys" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Ta emot produktuppdateringar från {0}." @@ -8439,6 +8486,10 @@ msgstr "Ta emot produktuppdateringar från {0}." msgid "Recent Account Signups" msgstr "Senaste kontoregistreringar" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Senaste deltagare" @@ -8447,7 +8498,7 @@ msgstr "Senaste deltagare" msgid "Recent check-ins" msgstr "Senaste incheckningar" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "Senaste ordrar" msgid "recipient" msgstr "mottagare" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Mottagare" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "mottagare" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Mottagare" msgid "Recipients are available after the message is sent" msgstr "Mottagare är tillgängliga efter att meddelandet har skickats" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Återkommande" @@ -8517,7 +8569,7 @@ msgstr "Återbetala alla beställningar för dessa datum" msgid "Refund all orders for this date" msgstr "Återbetala alla beställningar för detta datum" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Återbetalningsbelopp" @@ -8537,7 +8589,7 @@ msgstr "Återbetalning utfärdad" msgid "Refund order" msgstr "Återbetala order" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Återbetala order {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "Återbetalningsstatus" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Återbetald" @@ -8571,7 +8623,7 @@ msgstr "Återbetald: {0}" msgid "Refunds" msgstr "Återbetalningar" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Regionala inställningar" @@ -8598,18 +8650,18 @@ msgstr "Återstående användningar" msgid "Reminder scheduled" msgstr "Påminnelse schemalagd" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "ta bort" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Ta bort" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Ta bort etikett från alla datum" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Skicka bekräftelsemail igen" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "Skicka e-post igen" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "Skicka e-postbekräftelse igen" @@ -8688,7 +8741,7 @@ msgstr "Skicka biljett igen" msgid "Resend ticket email" msgstr "Skicka biljettmail igen" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Skickar igen..." @@ -8729,30 +8782,30 @@ msgstr "Svar" msgid "Response Details" msgstr "Svarsdetaljer" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Återställ" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Återställ evenemang" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Återställ evenemang" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Återställ arrangör" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Återställ detta evenemang för att göra det synligt igen." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Återställ denna arrangör och gör den aktiv igen." @@ -8777,7 +8830,7 @@ msgstr "Försök jobb igen" msgid "Return to Event" msgstr "Tillbaka till evenemanget" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Tillbaka till evenemangssidan" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Återanvänd en Stripe-anslutning från en annan arrangör i detta konto." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Intäkter" @@ -8818,7 +8872,7 @@ msgstr "Återkalla inbjudan" msgid "Revoke Offer" msgstr "Återkalla erbjudande" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Försäljningen startar {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Försäljning" @@ -8930,7 +8984,7 @@ msgstr "Lördag" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Lördag" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Spara" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Spara biljettlayout" msgid "Save VAT settings" msgstr "Spara momsinställningar" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "Spara momsinställningar" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Sparad plats" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Sparade platser" @@ -9015,7 +9069,7 @@ msgstr "Sparade platser" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "Att spara en åsidosättning skapar en dedikerad konfiguration för denna arrangör om den för närvarande är på systemstandard." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Skanna" @@ -9035,6 +9089,10 @@ msgstr "Skannerläge" msgid "Schedule" msgstr "Schema" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Schema skapat" @@ -9043,11 +9101,11 @@ msgstr "Schema skapat" msgid "Schedule ends on" msgstr "Schemat slutar" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Schemalägg för senare" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Schemalägg meddelande" @@ -9061,11 +9119,11 @@ msgstr "Schemat börjar den" msgid "Scheduled" msgstr "Schemalagd" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Schemalagd tid" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Sök" @@ -9228,11 +9286,11 @@ msgstr "Välj alla" msgid "Select all on {0}" msgstr "Välj alla på {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Välj ett evenemang" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Välj deltagargrupp" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Välj produktnivå" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Välj produkter" @@ -9298,7 +9356,7 @@ msgstr "Välj startdatum och tid" msgid "Select start time" msgstr "Välj starttid" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Välj status" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Välj biljett" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Välj biljetter" @@ -9325,7 +9383,7 @@ msgstr "Välj tidsperiod" msgid "Select timezone" msgstr "Välj tidszon" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Välj vilka deltagare som ska få detta meddelande" @@ -9359,11 +9417,11 @@ msgstr "Säljer snabbt 🔥" msgid "Send" msgstr "Skicka" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Skicka ett meddelande" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Skicka som test" @@ -9371,20 +9429,20 @@ msgstr "Skicka som test" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "Skicka e-post till deltagare, biljettinnehavare eller orderägare. Meddelanden kan skickas omedelbart eller schemaläggas för senare." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Skicka en kopia till mig" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Skicka meddelande" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Skicka nu" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Skicka orderbekräftelse och biljettsmejl" @@ -9392,7 +9450,7 @@ msgstr "Skicka orderbekräftelse och biljettsmejl" msgid "Send real-time order and attendee data to your external systems." msgstr "Skicka order- och deltagardata i realtid till dina externa system." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Skicka e-postmeddelande om återbetalning" @@ -9400,11 +9458,11 @@ msgstr "Skicka e-postmeddelande om återbetalning" msgid "Send reset link" msgstr "Skicka återställningslänk" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Skicka test" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Skicka till alla tillfällen, eller välj ett specifikt" @@ -9429,15 +9487,15 @@ msgstr "Skickat" msgid "Sent By" msgstr "Skickat av" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Skickas till deltagare när ett schemalagt datum avbokas" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Skickas till kunder när de lägger en order" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Skickas till varje deltagare med deras biljettuppgifter" @@ -9490,7 +9548,7 @@ msgstr "Ange standardinställningar för plattformsavgifter för nya evenemang s msgid "Set default settings for new events created under this organizer." msgstr "Ange standardinställningar för nya evenemang som skapas under denna arrangör." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Ange hur länge varje datum varar" @@ -9498,11 +9556,11 @@ msgstr "Ange hur länge varje datum varar" msgid "Set number of dates" msgstr "Ange antal datum" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Ange eller rensa datumetiketten" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Ställ in sluttiden för varje datum så att den är så här lång efter starttiden." @@ -9510,7 +9568,7 @@ msgstr "Ställ in sluttiden för varje datum så att den är så här lång efte msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Ange startnummer för fakturanumrering. Detta kan inte ändras när fakturor väl har skapats." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Ställ in på obegränsat (ta bort gräns)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Skapa incheckningslistor för olika entréer, pass eller dagar." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Konfigurera utbetalningar" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Ställ in schema" msgid "Set up your organization" msgstr "Konfigurera din organisation" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Ställ in ditt schema" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Ange, ändra eller ta bort tillfällets plats eller onlineuppgifter" @@ -9599,11 +9665,11 @@ msgstr "Dela arrangörssida" msgid "Shared Capacity Management" msgstr "Delad kapacitetshantering" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Förskjut tider" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "Förskjöt tider för {count} datum" @@ -9635,8 +9701,8 @@ msgstr "Visa kryssruta för samtycke till marknadsföring" msgid "Show marketing opt-in checkbox by default" msgstr "Visa kryssruta för samtycke till marknadsföring som standard" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Visa mer" @@ -9673,7 +9739,7 @@ msgstr "Visar {0}–{1} av {2}" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "Visar {MAX_VISIBLE} av {totalAvailable} datum. Skriv för att söka." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "Visar de första {0} — de återstående {1} tillfällena kommer fortfarande att inkluderas när meddelandet skickas." @@ -9710,7 +9776,7 @@ msgstr "Enskilt evenemang" msgid "Single line text box" msgstr "Enradig textruta" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Hoppa över manuellt redigerade datum" @@ -9745,7 +9811,7 @@ msgstr "Sociala länkar och webbplats" msgid "Sold" msgstr "Sålda" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Vissa uppgifter är dolda för allmän åtkomst. Logga in för att se al #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Något gick fel" @@ -9784,7 +9850,7 @@ msgstr "Något gick fel, försök igen eller kontakta supporten om problemet kva msgid "Something went wrong! Please try again" msgstr "Något gick fel! Försök igen" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Något gick fel." @@ -9796,12 +9862,12 @@ msgstr "Något gick fel. Försök igen senare." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Något gick fel. Försök igen." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Tyvärr, den här kampanjkoden känns inte igen" @@ -9897,12 +9963,12 @@ msgstr "Börjar imorgon" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "Delstat eller region" @@ -9914,7 +9980,7 @@ msgstr "Statistik" msgid "Statistics are based on account creation date" msgstr "Statistiken baseras på kontots skapandedatum" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Statistik" @@ -9931,7 +9997,7 @@ msgstr "Statistik" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "Stripe betalnings-ID" msgid "Stripe payments are not enabled for this event." msgstr "Stripe-betalningar är inte aktiverade för detta evenemang." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Stripe kommer snart att behöva några fler uppgifter" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "Sö" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "Ämne är obligatoriskt" msgid "Subject will appear here" msgstr "Ämnet visas här" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Ämne:" @@ -10024,11 +10090,11 @@ msgstr "Delsumma" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Lyckades" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Klart! {0} kommer snart att få ett e-postmeddelande." @@ -10173,7 +10239,7 @@ msgstr "Inställningar uppdaterade" msgid "Successfully Updated Social Links" msgstr "Sociala länkar uppdaterades" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Spårningsinställningar uppdaterade" @@ -10226,7 +10292,7 @@ msgstr "Svenska" msgid "Switch Organizer" msgstr "Byt arrangör" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Systemstandard" @@ -10238,7 +10304,7 @@ msgstr "T-shirt" msgid "Tap this screen to resume scanning" msgstr "Tryck på skärmen för att fortsätta skanna" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "Riktar sig till deltagare över {0} valda tillfällen." @@ -10336,7 +10402,7 @@ msgstr "Berätta om din organisation. Denna information kommer att visas på din msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Berätta hur ofta ditt evenemang upprepas så skapar vi alla datum åt dig." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Berätta din momsregistreringsstatus så vi tillämpar rätt momsbehandling på plattformsavgifter." @@ -10344,15 +10410,15 @@ msgstr "Berätta din momsregistreringsstatus så vi tillämpar rätt momsbehandl msgid "Template Active" msgstr "Mall aktiv" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Mallen skapades" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Mallen togs bort" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Mallen sparades" @@ -10378,8 +10444,8 @@ msgstr "Tack för att du deltog!" msgid "Thanks," msgstr "Tack," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Den kampanjkoden är ogiltig" @@ -10399,7 +10465,7 @@ msgstr "Incheckningslistan du letar efter finns inte." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "Koden går ut om 10 minuter. Kontrollera skräpposten om du inte ser mejlet." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "Valutan i vilken den fasta avgiften definieras. Den kommer att konverteras till ordervalutan vid kassan." @@ -10417,7 +10483,7 @@ msgstr "Standardvaluta för dina evenemang." msgid "The default timezone for your events." msgstr "Standardtidszon för dina evenemang." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "E-postadressen har ändrats. Deltagaren kommer att få en ny biljett till den uppdaterade e-postadressen." @@ -10442,7 +10508,7 @@ msgstr "Det första datumet som detta schema kommer att genereras från." msgid "The full event address" msgstr "Evenemangets fullständiga adress" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "Hela orderbeloppet kommer att återbetalas till kundens ursprungliga betalningsmetod." @@ -10466,7 +10532,7 @@ msgstr "Kundens språk och region" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "Maxgränsen är {MAX_PREVIEW} tillfällen. Minska datumintervallet, frekvensen eller antalet tillfällen per dag." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "Maximalt antal produkter för {0} är {1}" @@ -10475,7 +10541,7 @@ msgstr "Maximalt antal produkter för {0} är {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "Arrangören du letar efter kunde inte hittas. Sidan kan ha flyttats, tagits bort eller så kan webbadressen vara felaktig." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "Åsidosättningen registreras i orderns granskningslogg." @@ -10499,11 +10565,11 @@ msgstr "Priset som visas för kunden inkluderar inte moms och avgifter. De visas msgid "The primary brand color used for buttons and highlights" msgstr "Den primära varumärkesfärgen som används för knappar och markeringar" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "Den schemalagda tiden är obligatorisk" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "Den schemalagda tiden måste vara i framtiden" @@ -10511,8 +10577,8 @@ msgstr "Den schemalagda tiden måste vara i framtiden" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "Tillfället för \"{title}\" som ursprungligen var planerat till {0} har flyttats." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "Mallens brödtext innehåller ogiltig Liquid-syntax. Rätta den och försök igen." @@ -10521,7 +10587,7 @@ msgstr "Mallens brödtext innehåller ogiltig Liquid-syntax. Rätta den och för msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "Titeln för evenemanget som visas i sökresultat och vid delning i sociala medier. Som standard används evenemangets titel" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "Momsnumret kunde inte valideras. Kontrollera numret och försök igen." @@ -10534,19 +10600,19 @@ msgstr "Teater" msgid "Theme & Colors" msgstr "Tema och färger" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "Det finns inga produkter tillgängliga för det här evenemanget" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "Det finns inga produkter tillgängliga i den här kategorin" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "Det finns inga kommande datum för detta evenemang" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "En återbetalning väntar. Vänta tills den är slutförd innan du begär en ny återbetalning." @@ -10578,7 +10644,7 @@ msgstr "Dessa uppgifter visas på deltagarens biljett och ordersammanfattning en msgid "These details will only be shown if the order is completed successfully." msgstr "Dessa uppgifter visas endast om beställningen slutförs framgångsrikt." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Dessa uppgifter ersätter alla befintliga platser för de berörda tillfällena och visas på deltagarnas biljetter." @@ -10586,11 +10652,11 @@ msgstr "Dessa uppgifter ersätter alla befintliga platser för de berörda tillf msgid "These settings apply only to copied embed code and won't be stored." msgstr "Dessa inställningar gäller bara för kopierad inbäddningskod och kommer inte att sparas." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Dessa mallar används som standard för alla evenemang i din organisation. Enskilda evenemang kan ersätta dem med egna anpassade versioner." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Dessa mallar ersätter arrangörens standardmallar endast för detta evenemang. Om ingen anpassad mall anges här används arrangörens mall i stället." @@ -10598,11 +10664,11 @@ msgstr "Dessa mallar ersätter arrangörens standardmallar endast för detta eve msgid "Third" msgstr "Tredje" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Detta gäller för varje matchande datum i evenemanget, inklusive datum som inte är synliga för tillfället. Deltagare registrerade på något av dessa datum kommer att kunna nås via meddelandekompositören när uppdateringen är klar." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Den här deltagaren har en obetald order." @@ -10660,11 +10726,11 @@ msgstr "Detta datum har avbokats. Du kan fortfarande ta bort det permanent." msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Detta datum är förflutet. Det kommer att skapas men kommer inte att synas för deltagare under kommande datum." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Detta datum är markerat som slutsålt." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Detta datum är inte längre tillgängligt. Välj ett annat datum." @@ -10713,19 +10779,19 @@ msgstr "Det här meddelandet inkluderas i sidfoten i alla mejl som skickas från msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Det här meddelandet visas endast om ordern slutförs. Ordrar som väntar på betalning visar inte detta meddelande" -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Det här namnet är synligt för slutanvändare" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Detta tillfälle har nått sin kapacitet" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "Den här ordern är redan betald." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "Den här ordern har redan återbetalats." @@ -10733,7 +10799,7 @@ msgstr "Den här ordern har redan återbetalats." msgid "This order has been cancelled." msgstr "Den här ordern har avbrutits." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "Den här ordern har löpt ut. Börja om." @@ -10745,15 +10811,15 @@ msgstr "Den här ordern behandlas." msgid "This order is complete." msgstr "Den här ordern är slutförd." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Den här ordersidan är inte längre tillgänglig." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "Den här ordern övergavs. Du kan starta en ny order när som helst." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "Den här ordern avbröts. Du kan starta en ny order när som helst." @@ -10785,7 +10851,7 @@ msgstr "Den här produkten är markerad på evenemangssidan" msgid "This product is sold out" msgstr "Den här produkten är slutsåld" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Denna rapport är endast för informationsändamål. Rådgör alltid med en skatteexpert innan du använder dessa uppgifter för redovisnings- eller skatteändamål. Vänligen dubbelkolla med din Stripe-instrumentpanel då Hi.Events kan sakna historiska data." @@ -10797,11 +10863,11 @@ msgstr "Den här länken för att återställa lösenordet är ogiltig eller har msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Den här biljetten skannades nyss. Vänta innan du skannar igen." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Den här användaren är inte aktiv eftersom hen inte har accepterat sin inbjudan." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Detta påverkar {loadedAffectedCount} datum." @@ -10913,6 +10979,10 @@ msgstr "Biljettpris" msgid "Ticket resent successfully" msgstr "Biljetten skickades igen" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "Biljettförsäljningen för detta evenemang har avslutats" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Tid" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Tid kvar:" @@ -10994,7 +11064,7 @@ msgstr "Antal gånger använd" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Tidszon" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "För att öka dina gränser, kontakta oss på" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "Topparrangörer (Senaste 14 dagarna)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Totalt" @@ -11075,11 +11146,11 @@ msgstr "Totalt antal poster" msgid "Total Fee" msgstr "Total avgift" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Total bruttoförsäljning" msgid "Total order amount" msgstr "Totalt orderbelopp" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "Totalt återbetalt" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Totalt återbetalt" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Spåra kontotillväxt och resultat efter attribueringskälla" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Typ" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Skriv \"ta bort\" för att bekräfta" @@ -11222,7 +11293,7 @@ msgstr "Det gick inte att checka ut deltagaren" msgid "Unable to create product. Please check the your details" msgstr "Det gick inte att skapa produkten. Kontrollera dina uppgifter" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Det gick inte att skapa produkten. Kontrollera dina uppgifter" @@ -11246,7 +11317,7 @@ msgstr "Det gick inte att gå med i väntelistan" msgid "Unable to load attendee details." msgstr "Det gick inte att läsa in deltagarinformation." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Det gick inte att läsa in produkter för detta datum. Försök igen." @@ -11284,7 +11355,7 @@ msgstr "USA" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Okänd" @@ -11304,7 +11375,7 @@ msgstr "Okänd deltagare" msgid "Unlimited" msgstr "Obegränsat" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Obegränsat antal tillgängliga" @@ -11316,12 +11387,12 @@ msgstr "Obegränsat antal användningar tillåts" msgid "Unnamed" msgstr "Namnlös" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Plats utan namn" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Obetald order" @@ -11337,7 +11408,7 @@ msgstr "Ej betrodd" msgid "Upcoming" msgstr "Kommande" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "Uppdatera {0}" msgid "Update Affiliate" msgstr "Uppdatera affiliate" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Uppdatera kapacitet" @@ -11365,15 +11436,15 @@ msgstr "Uppdatera evenemangsnamn och beskrivning" msgid "Update event name, description and dates" msgstr "Uppdatera evenemangets namn, beskrivning och datum" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Uppdatera etikett" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Uppdatera plats" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Uppdatera profil" @@ -11385,19 +11456,19 @@ msgstr "Uppdatering: {subjectTitle} — schemaändringar" msgid "Update: {subjectTitle} — session time changed" msgstr "Uppdatering: {subjectTitle} — tillfällets tid har ändrats" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "Uppdaterade {count} datum" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "Uppdaterade kapacitet för {count} datum" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "Uppdaterade etikett för {count} datum" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Uppdaterade plats för {count} tillfälle(n)" @@ -11507,14 +11578,14 @@ msgstr "Användarhantering" msgid "Users" msgstr "Användare" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Användare kan ändra sin e-postadress i <0>Profilinställningar" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11526,13 +11597,13 @@ msgstr "UTM-analys" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "Validerar ditt momsregistreringsnummer..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "Moms" @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "Momsnummer" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "Momsregistreringsnummer" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "Momsregistreringsnumret får inte innehålla mellanslag" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "Momsregistreringsnumret måste börja med en landskod med två bokstäver följt av 8–15 alfanumeriska tecken (t.ex. DE123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "Momsregistreringsnumret validerades" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "Validering av momsregistreringsnummer misslyckades" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "Validering av momsregistreringsnummer misslyckades. Kontrollera ditt momsregistreringsnummer." @@ -11581,12 +11652,12 @@ msgstr "Momssats" msgid "VAT registered" msgstr "Momsregistrerad" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "Momsinställningarna sparades" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "Momsinställningarna sparades. Vi validerar ditt momsregistreringsnummer i bakgrunden." @@ -11594,15 +11665,15 @@ msgstr "Momsinställningarna sparades. Vi validerar ditt momsregistreringsnummer msgid "VAT settings updated" msgstr "Momsinställningar uppdaterade" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "Momshantering för plattformsavgifter" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "Momshantering för plattformsavgifter: EU-momsregistrerade företag kan använda omvänd skattskyldighet (0 % – artikel 196 i momsdirektivet 2006/112/EG). Icke momsregistrerade företag debiteras irländsk moms på 23 %." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "Valideringstjänsten för moms är tillfälligt otillgänglig" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "Moms: ej registrerad" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "Platsnamn" msgid "Verification code" msgstr "Verifieringskod" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "Verifiera e-postadress" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Verifiera din e-postadress" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "Verifierar..." @@ -11655,8 +11735,7 @@ msgstr "Visa" msgid "View All" msgstr "Visa alla" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "Visa detaljer för {0} {1}" msgid "View Event" msgstr "Visa evenemang" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Visa evenemangssida" @@ -11729,8 +11808,8 @@ msgstr "Visa på Google Maps" msgid "View Order" msgstr "Visa order" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Visa orderdetaljer" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "Väntar" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "Väntar på betalning" @@ -11800,7 +11879,7 @@ msgstr "Väntelista" msgid "Waitlist Enabled" msgstr "Väntelista aktiverad" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "Väntelisteerbjudande utgånget" @@ -11808,7 +11887,7 @@ msgstr "Väntelisteerbjudande utgånget" msgid "Waitlist triggered" msgstr "Väntelista utlöst" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Varning: Detta är systemets standardkonfiguration. Ändringar påverkar alla konton som inte har en specifik konfiguration tilldelad." @@ -11844,7 +11923,7 @@ msgstr "Vi kunde inte hitta ordern du letar efter. Länken kan ha löpt ut eller msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "Vi kunde inte hitta biljetten du letar efter. Länken kan ha löpt ut eller så kan biljettuppgifterna ha ändrats." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "Vi kunde inte hitta den här ordern. Den kan ha tagits bort." @@ -11860,7 +11939,7 @@ msgstr "Vi kunde inte nå Stripe just nu. Försök igen om en stund." msgid "We couldn't reorder the categories. Please try again." msgstr "Vi kunde inte ändra ordningen på kategorierna. Försök igen." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Det uppstod ett problem när sidan skulle laddas. Försök igen." @@ -11881,6 +11960,10 @@ msgstr "Vi rekommenderar 1950×650 px, bildförhållande 3:1 och maximal filstor msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "Vi rekommenderar 400×400 px och maximal filstorlek 5 MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "Vi använder cookies för att hjälpa oss förstå hur webbplatsen används och för att förbättra din upplevelse." @@ -11889,7 +11972,7 @@ msgstr "Vi använder cookies för att hjälpa oss förstå hur webbplatsen anvä msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "Vi kunde inte bekräfta din betalning. Försök igen eller kontakta supporten." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "Vi kunde inte validera ditt momsregistreringsnummer efter flera försök. Vi fortsätter att försöka i bakgrunden. Kom tillbaka senare." @@ -11897,16 +11980,16 @@ msgstr "Vi kunde inte validera ditt momsregistreringsnummer efter flera försök msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "Vi meddelar dig via e-post om en plats blir tillgänglig för {productDisplayName}." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Vi öppnar en meddelandekompositör med en förifylld mall efter att du sparat. Du granskar och skickar den — ingenting skickas automatiskt." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "Vi skickar dina biljetter till den här e-postadressen" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "Vi validerar ditt momsregistreringsnummer i bakgrunden. Om det uppstår problem hör vi av oss." @@ -12003,7 +12086,7 @@ msgstr "Välkommen ombord! Logga in för att fortsätta." msgid "Welcome back" msgstr "Välkommen tillbaka" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Välkommen tillbaka{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Välbefinnande" msgid "What are Tiered Products?" msgstr "Vad är nivåindelade produkter?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "Vad är en kategori?" @@ -12143,6 +12226,10 @@ msgstr "När incheckningen stänger" msgid "When check-in opens" msgstr "När incheckningen öppnar" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "När detta är aktiverat skapas fakturor för biljettordrar. Fakturor skickas tillsammans med orderbekräftelsen via e-post. Deltagare kan även ladda ner sina fakturor från orderbekräftelsesidan." @@ -12155,7 +12242,7 @@ msgstr "När detta är aktiverat kan nya evenemang låta deltagare hantera sina msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "När detta är aktiverat visar nya evenemang en kryssruta för marknadsföringssamtycke i kassan. Detta kan åsidosättas per evenemang." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "När aktiverat kommer inga applikationsavgifter att debiteras på Stripe Connect-transaktioner. Använd detta för länder där applikationsavgifter inte stöds." @@ -12191,11 +12278,11 @@ msgstr "Förhandsgranskning av widget" msgid "Widget Settings" msgstr "Widgetinställningar" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "Arbetar" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "år" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Hittills i år" @@ -12247,11 +12334,11 @@ msgstr "år" msgid "Yes" msgstr "Ja" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Ja – jag har ett giltigt EU-momsregistreringsnummer" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Ja, avbryt min order" @@ -12267,7 +12354,7 @@ msgstr "Du ändrar din e-postadress till <0>{0}." msgid "You are impersonating <0>{0} ({1})" msgstr "Du utger dig för att vara <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Du gör en delåterbetalning. Kunden kommer att få {0} {1} återbetalat." @@ -12292,7 +12379,7 @@ msgstr "Du kan åsidosätta detta för enskilda datum senare." msgid "You can still manually offer tickets if needed." msgstr "Du kan fortfarande erbjuda biljetter manuellt vid behov." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "Du kan inte arkivera den sista aktiva arrangören på ditt konto." @@ -12313,11 +12400,11 @@ msgstr "Du kan inte ta bort den sista kategorin." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "Du kan inte ta bort den här prisnivån eftersom det redan finns sålda produkter för nivån. Du kan dölja den i stället." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "Du kan inte redigera kontoinnehavarens roll eller status." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "Du kan inte återbetala en manuellt skapad order." @@ -12333,11 +12420,11 @@ msgstr "Du har redan accepterat den här inbjudan. Logga in för att fortsätta. msgid "You have no pending email change." msgstr "Du har ingen väntande ändring av e-postadress." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "Du har nått din meddelandegräns." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "Tiden för att slutföra din order har gått ut." @@ -12345,11 +12432,11 @@ msgstr "Tiden för att slutföra din order har gått ut." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Du har lagt till skatter och avgifter på en gratis produkt. Vill du ta bort dem?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "Du måste bekräfta att det här e-postmeddelandet inte är reklam" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Du måste bekräfta ditt ansvar innan du sparar" @@ -12409,7 +12496,7 @@ msgstr "Du behöver en produkt innan du kan skapa en kapacitetstilldelning." msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Du behöver minst en produkt för att komma igång. Gratis, betald eller låt användaren bestämma vad de vill betala." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Du ändrar tillfällets tid" @@ -12421,7 +12508,7 @@ msgstr "Du ska till {0}!" msgid "You're on the waitlist!" msgstr "Du är på väntelistan!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "Du har erbjudits en plats!" @@ -12429,7 +12516,7 @@ msgstr "Du har erbjudits en plats!" msgid "You've changed the session time" msgstr "Du har ändrat tillfällets tid" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Ditt konto har meddelandebegränsningar. För att öka dina gränser, kontakta oss på" @@ -12457,11 +12544,11 @@ msgstr "Din grymma webbplats 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "Din incheckningslista har skapats. Dela länken nedan med din incheckningspersonal." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "Din nuvarande order kommer att försvinna." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Dina uppgifter" @@ -12469,7 +12556,7 @@ msgstr "Dina uppgifter" msgid "Your Email" msgstr "Din e-postadress" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "Din begäran om att ändra e-postadress till <0>{0} väntar. Kontrollera din e-post för att bekräfta." @@ -12497,7 +12584,7 @@ msgstr "Ditt namn" msgid "Your new password must be at least 8 characters long." msgstr "Ditt nya lösenord måste vara minst 8 tecken långt." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Din order" @@ -12509,7 +12596,7 @@ msgstr "Dina orderuppgifter har uppdaterats. Ett bekräftelsemejl har skickats t msgid "Your order has been cancelled" msgstr "Din order har avbokats" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "Din order har avbokats." @@ -12534,7 +12621,7 @@ msgstr "Din arrangörsadress" msgid "Your password" msgstr "Ditt lösenord" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Din betalning behandlas." @@ -12542,11 +12629,11 @@ msgstr "Din betalning behandlas." msgid "Your payment is protected with bank-level encryption" msgstr "Din betalning skyddas med banknivå-kryptering" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Din betalning lyckades inte, försök igen." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Din betalning misslyckades. Försök igen." @@ -12554,7 +12641,7 @@ msgstr "Din betalning misslyckades. Försök igen." msgid "Your Plan" msgstr "Din plan" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Din återbetalning behandlas." @@ -12570,19 +12657,19 @@ msgstr "Din biljett till" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "Din biljett är fortfarande giltig — ingen åtgärd behövs om inte den nya tiden inte fungerar för dig. Svara på detta e-postmeddelande om du har några frågor." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "Dina biljetter har bekräftats." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "Ditt momsregistreringsnummer är köat för validering" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "Ditt momsregistreringsnummer valideras när du sparar" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "Ditt väntelisteerbjudande har upphört att gälla och vi kunde inte slutföra din beställning. Gå med i väntelistan igen för att meddelas när fler platser blir tillgängliga." @@ -12590,19 +12677,19 @@ msgstr "Ditt väntelisteerbjudande har upphört att gälla och vi kunde inte slu msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "Postnummer" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "Postnummer" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "Postnummer" diff --git a/frontend/src/locales/tr.js b/frontend/src/locales/tr.js index 877e77aa70..91cede1df3 100644 --- a/frontend/src/locales/tr.js +++ b/frontend/src/locales/tr.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Henüz gösterilecek bir şey yok'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>başarıyla check-out yaptı\"],\"KMgp2+\":[[\"0\"],\" mevcut\"],\"Pmr5xp\":[[\"0\"],\" başarıyla oluşturuldu\"],\"FImCSc\":[[\"0\"],\" başarıyla güncellendi\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" gün, \",[\"hours\"],\" saat, \",[\"minutes\"],\" dakika ve \",[\"seconds\"],\" saniye\"],\"f3RdEk\":[[\"hours\"],\" saat, \",[\"minutes\"],\" dakika ve \",[\"seconds\"],\" saniye\"],\"fyE7Au\":[[\"minutes\"],\" dakika ve \",[\"seconds\"],\" saniye\"],\"NlQ0cx\":[[\"organizerName\"],\"'ın ilk etkinliği\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://siteniz.com\",\"qnSLLW\":\"<0>Lütfen vergiler ve ücretler hariç fiyatı girin.<1>Vergi ve ücretler aşağıdan eklenebilir.\",\"ZjMs6e\":\"<0>Bu ürün için mevcut ürün sayısı<1>Bu değer, bu ürünle ilişkili <2>Kapasite Sınırları varsa geçersiz kılınabilir.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 dakika ve 0 saniye\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Ana Cadde\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Tarih girişi. Doğum tarihi sormak gibi durumlar için mükemmel.\",\"6euFZ/\":[\"Varsayılan \",[\"type\"],\" otomatik olarak tüm yeni ürünlere uygulanır. Bunu ürün bazında geçersiz kılabilirsiniz.\"],\"SMUbbQ\":\"Açılır menü sadece tek seçime izin verir\",\"qv4bfj\":\"Rezervasyon ücreti veya hizmet ücreti gibi bir ücret\",\"POT0K/\":\"Ürün başına sabit miktar. Örn. ürün başına 0,50 $\",\"f4vJgj\":\"Çok satırlı metin girişi\",\"OIPtI5\":\"Ürün fiyatının yüzdesi. Örn. ürün fiyatının %3,5'i\",\"ZthcdI\":\"İndirim olmayan promosyon kodu gizli ürünleri göstermek için kullanılabilir.\",\"AG/qmQ\":\"Radyo seçeneği birden fazla seçenek sunar ancak sadece biri seçilebilir.\",\"h179TP\":\"Arama motoru sonuçlarında ve sosyal medyada paylaşılırken gösterilecek etkinliğin kısa açıklaması. Varsayılan olarak etkinlik açıklaması kullanılır\",\"WKMnh4\":\"Tek satırlı metin girişi\",\"BHZbFy\":\"Sipariş başına tek soru. Örn. Teslimat adresiniz nedir?\",\"Fuh+dI\":\"Ürün başına tek soru. Örn. Tişört bedeniniz nedir?\",\"RlJmQg\":\"KDV veya ÖTV gibi standart vergi\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Banka havalesi, çek veya diğer çevrimdışı ödeme yöntemlerini kabul et\",\"hrvLf4\":\"Stripe ile kredi kartı ödemelerini kabul et\",\"bfXQ+N\":\"Davetiyeyi Kabul Et\",\"AeXO77\":\"Hesap\",\"lkNdiH\":\"Hesap Adı\",\"Puv7+X\":\"Hesap Ayarları\",\"OmylXO\":\"Hesap başarıyla güncellendi\",\"7L01XJ\":\"İşlemler\",\"FQBaXG\":\"Etkinleştir\",\"5T2HxQ\":\"Etkinleştirme tarihi\",\"F6pfE9\":\"Etkin\",\"/PN1DA\":\"Bu check-in listesi için açıklama ekleyin\",\"0/vPdA\":\"Katılımcı hakkında not ekleyin. Bunlar katılımcı tarafından görülmeyecektir.\",\"Or1CPR\":\"Katılımcı hakkında not ekleyin...\",\"l3sZO1\":\"Sipariş hakkında not ekleyin. Bunlar müşteri tarafından görülmeyecektir.\",\"xMekgu\":\"Sipariş hakkında not ekleyin...\",\"PGPGsL\":\"Açıklama ekle\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Çevrimdışı ödemeler için talimatlar ekleyin (örn. banka havalesi detayları, çeklerin nereye gönderileceği, ödeme tarihleri)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Yeni Ekle\",\"TZxnm8\":\"Seçenek Ekle\",\"24l4x6\":\"Ürün Ekle\",\"8q0EdE\":\"Kategoriye Ürün Ekle\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Vergi veya Ücret Ekle\",\"goOKRY\":\"Kademe ekle\",\"oZW/gT\":\"Takvime Ekle\",\"pn5qSs\":\"Ek Bilgiler\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adres\",\"NY/x1b\":\"Adres satırı 1\",\"POdIrN\":\"Adres Satırı 1\",\"cormHa\":\"Adres satırı 2\",\"gwk5gg\":\"Adres Satırı 2\",\"U3pytU\":\"Yönetici\",\"HLDaLi\":\"Yönetici kullanıcılar etkinliklere ve hesap ayarlarına tam erişime sahiptir.\",\"W7AfhC\":\"Bu etkinliğin tüm katılımcıları\",\"cde2hc\":\"Tüm Ürünler\",\"5CQ+r0\":\"Ödenmemiş siparişlerle ilişkili katılımcıların check-in yapmasına izin ver\",\"ipYKgM\":\"Arama motoru indekslemesine izin ver\",\"LRbt6D\":\"Arama motorlarının bu etkinliği indekslemesine izin ver\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Harika, Etkinlik, Anahtar Kelimeler...\",\"hehnjM\":\"Miktar\",\"R2O9Rg\":[\"Ödenen miktar (\",[\"0\"],\")\"],\"V7MwOy\":\"Sayfa yüklenirken bir hata oluştu\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Beklenmeyen bir hata oluştu.\",\"byKna+\":\"Beklenmeyen bir hata oluştu. Lütfen tekrar deneyin.\",\"ubdMGz\":\"Ürün sahiplerinden gelen tüm sorular bu e-posta adresine gönderilecektir. Bu aynı zamanda bu etkinlikten gönderilen tüm e-postalar için \\\"yanıtla\\\" adresi olarak da kullanılacaktır\",\"aAIQg2\":\"Görünüm\",\"Ym1gnK\":\"uygulandı\",\"sy6fss\":[[\"0\"],\" ürüne uygulanır\"],\"kadJKg\":\"1 ürüne uygulanır\",\"DB8zMK\":\"Uygula\",\"GctSSm\":\"Promosyon Kodunu Uygula\",\"ARBThj\":[\"Bu \",[\"type\"],\"'ı tüm yeni ürünlere uygula\"],\"S0ctOE\":\"Etkinliği arşivle\",\"TdfEV7\":\"Arşivlendi\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Bu katılımcıyı etkinleştirmek istediğinizden emin misiniz?\",\"TvkW9+\":\"Bu etkinliği arşivlemek istediğinizden emin misiniz?\",\"/CV2x+\":\"Bu katılımcıyı iptal etmek istediğinizden emin misiniz? Bu işlem biletini geçersiz kılacaktır\",\"YgRSEE\":\"Bu promosyon kodunu silmek istediğinizden emin misiniz?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Bu etkinliği taslak yapmak istediğinizden emin misiniz? Bu işlem etkinliği halka görünmez yapacaktır\",\"mEHQ8I\":\"Bu etkinliği herkese açık yapmak istediğinizden emin misiniz? Bu işlem etkinliği halka görünür yapacaktır\",\"s4JozW\":\"Bu etkinliği geri yüklemek istediğinizden emin misiniz? Taslak etkinlik olarak geri yüklenecektir.\",\"vJuISq\":\"Bu Kapasite Atamasını silmek istediğinizden emin misiniz?\",\"baHeCz\":\"Bu Check-In Listesini silmek istediğinizden emin misiniz?\",\"LBLOqH\":\"Sipariş başına bir kez sor\",\"wu98dY\":\"Ürün başına bir kez sor\",\"ss9PbX\":\"Katılımcı\",\"m0CFV2\":\"Katılımcı Detayları\",\"QKim6l\":\"Katılımcı bulunamadı\",\"R5IT/I\":\"Katılımcı Notları\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Katılımcı Bileti\",\"9SZT4E\":\"Katılımcılar\",\"iPBfZP\":\"Kayıtlı Katılımcılar\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Otomatik Boyutlandır\",\"vZ5qKF\":\"Widget yüksekliğini içeriğe göre otomatik olarak boyutlandırır. Devre dışı bırakıldığında, widget kapsayıcının yüksekliğini dolduracaktır.\",\"4lVaWA\":\"Çevrimdışı ödeme bekleniyor\",\"2rHwhl\":\"Çevrimdışı Ödeme Bekleniyor\",\"3wF4Q/\":\"Ödeme bekleniyor\",\"ioG+xt\":\"Ödeme Bekleniyor\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Harika Organizatör Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Etkinlik sayfasına dön\",\"VCoEm+\":\"Girişe dön\",\"k1bLf+\":\"Arkaplan Rengi\",\"I7xjqg\":\"Arkaplan Türü\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Fatura Adresi\",\"/xC/im\":\"Fatura Ayarları\",\"rp/zaT\":\"Brezilya Portekizcesi\",\"whqocw\":\"Kayıt olarak <0>Hizmet Şartlarımızı ve <1>Gizlilik Politikasımızı kabul etmiş olursunuz.\",\"bcCn6r\":\"Hesaplama Türü\",\"+8bmSu\":\"Kaliforniya\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"İptal\",\"Gjt/py\":\"E-posta değişikliğini iptal et\",\"tVJk4q\":\"Siparişi iptal et\",\"Os6n2a\":\"Siparişi İptal Et\",\"Mz7Ygx\":[\"Sipariş \",[\"0\"],\"'ı İptal Et\"],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"İptal Edildi\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Kapasite\",\"V6Q5RZ\":\"Kapasite ataması başarıyla oluşturuldu\",\"k5p8dz\":\"Kapasite ataması başarıyla silindi\",\"nDBs04\":\"Kapasite yönetimi\",\"ddha3c\":\"Kategoriler ürünleri birlikte gruplandırmanızı sağlar. Örneğin, \\\"Biletler\\\" için bir kategori ve \\\"Ürünler\\\" için başka bir kategori oluşturabilirsiniz.\",\"iS0wAT\":\"Kategoriler ürünlerinizi düzenlemenize yardımcı olur. Bu başlık halka açık etkinlik sayfasında gösterilecektir.\",\"eorM7z\":\"Kategoriler başarıyla yeniden sıralandı.\",\"3EXqwa\":\"Kategori Başarıyla Oluşturuldu\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Şifre değiştir\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[[\"0\"],\" \",[\"1\"],\" check-in yap\"],\"D6+U20\":\"Check-in yap ve siparişi ödenmiş olarak işaretle\",\"QYLpB4\":\"Sadece check-in yap\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Bu etkinliğe göz atın!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Check-In Listesi başarıyla silindi\",\"+hBhWk\":\"Check-in listesinin süresi doldu\",\"mBsBHq\":\"Check-in listesi aktif değil\",\"vPqpQG\":\"Check-in listesi bulunamadı\",\"tejfAy\":\"Check-In Listeleri\",\"hD1ocH\":\"Check-In URL'si panoya kopyalandı\",\"CNafaC\":\"Onay kutusu seçenekleri çoklu seçime izin verir\",\"SpabVf\":\"Onay Kutuları\",\"CRu4lK\":\"Giriş Yapıldı\",\"znIg+z\":\"Ödeme\",\"1WnhCL\":\"Ödeme Ayarları\",\"6imsQS\":\"Çince (Basitleştirilmiş)\",\"JjkX4+\":\"Arkaplanınız için bir renk seçin\",\"/Jizh9\":\"Bir hesap seçin\",\"3wV73y\":\"Şehir\",\"FG98gC\":\"Arama Metnini Temizle\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Kopyalamak için tıklayın\",\"yz7wBu\":\"Kapat\",\"62Ciis\":\"Kenar çubuğunu kapat\",\"EWPtMO\":\"Kod\",\"ercTDX\":\"Kod 3 ile 50 karakter arasında olmalıdır\",\"oqr9HB\":\"Etkinlik sayfası ilk yüklendiğinde bu ürünü daralt\",\"jZlrte\":\"Renk\",\"Vd+LC3\":\"Renk geçerli bir hex renk kodu olmalıdır. Örnek: #ffffff\",\"1HfW/F\":\"Renkler\",\"VZeG/A\":\"Yakında\",\"yPI7n9\":\"Etkinliği tanımlayan virgülle ayrılmış anahtar kelimeler. Bunlar arama motorları tarafından etkinliği kategorize etmek ve indekslemek için kullanılacaktır\",\"NPZqBL\":\"Siparişi Tamamla\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Ödemeyi Tamamla\",\"qqWcBV\":\"Tamamlandı\",\"6HK5Ct\":\"Tamamlanan siparişler\",\"NWVRtl\":\"Tamamlanan Siparişler\",\"DwF9eH\":\"Bileşen Kodu\",\"Tf55h7\":\"Yapılandırılmış İndirim\",\"7VpPHA\":\"Onayla\",\"ZaEJZM\":\"E-posta Değişikliğini Onayla\",\"yjkELF\":\"Yeni Şifreyi Onayla\",\"xnWESi\":\"Şifreyi onayla\",\"p2/GCq\":\"Şifreyi Onayla\",\"wnDgGj\":\"E-posta adresi onaylanıyor...\",\"pbAk7a\":\"Stripe'ı Bağla\",\"UMGQOh\":\"Stripe ile Bağlan\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Bağlantı Detayları\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Devam Et\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Devam Butonu Metni\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Kopyalandı\",\"T5rdis\":\"panoya kopyalandı\",\"he3ygx\":\"Kopyala\",\"r2B2P8\":\"Check-In URL'sini Kopyala\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Linki Kopyala\",\"E6nRW7\":\"URL'yi Kopyala\",\"JNCzPW\":\"Ülke\",\"IF7RiR\":\"Kapak\",\"hYgDIe\":\"Oluştur\",\"b9XOHo\":[[\"0\"],\" Oluştur\"],\"k9RiLi\":\"Ürün Oluştur\",\"6kdXbW\":\"Promosyon Kodu Oluştur\",\"n5pRtF\":\"Bilet Oluştur\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"organizatör oluştur\",\"ipP6Ue\":\"Katılımcı Oluştur\",\"VwdqVy\":\"Kapasite Ataması Oluştur\",\"EwoMtl\":\"Kategori oluştur\",\"XletzW\":\"Kategori Oluştur\",\"WVbTwK\":\"Check-In Listesi Oluştur\",\"uN355O\":\"Etkinlik Oluştur\",\"BOqY23\":\"Yeni oluştur\",\"kpJAeS\":\"Organizatör Oluştur\",\"a0EjD+\":\"Ürün Oluştur\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Promosyon Kodu Oluştur\",\"B3Mkdt\":\"Soru Oluştur\",\"UKfi21\":\"Vergi veya Ücret Oluştur\",\"d+F6q9\":\"Oluşturuldu\",\"Q2lUR2\":\"Para Birimi\",\"DCKkhU\":\"Mevcut Şifre\",\"uIElGP\":\"Özel Harita URL'si\",\"UEqXyt\":\"Özel Aralık\",\"876pfE\":\"Müşteri\",\"QOg2Sf\":\"Bu etkinlik için e-posta ve bildirim ayarlarını özelleştirin\",\"Y9Z/vP\":\"Etkinlik ana sayfası ve ödeme mesajlarını özelleştirin\",\"2E2O5H\":\"Bu etkinlik için çeşitli ayarları özelleştirin\",\"iJhSxe\":\"Bu etkinlik için SEO ayarlarını özelleştirin\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Tehlike bölgesi\",\"ZQKLI1\":\"Tehlike Bölgesi\",\"7p5kLi\":\"Gösterge Paneli\",\"mYGY3B\":\"Tarih\",\"JvUngl\":\"Tarih ve Saat\",\"JJhRbH\":\"Birinci gün kapasitesi\",\"cnGeoo\":\"Sil\",\"jRJZxD\":\"Kapasiteyi Sil\",\"VskHIx\":\"Kategoriyi sil\",\"Qrc8RZ\":\"Check-In Listesini Sil\",\"WHf154\":\"Kodu sil\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Açıklama\",\"YC3oXa\":\"Check-in personeli için açıklama\",\"URmyfc\":\"Detaylar\",\"1lRT3t\":\"Bu kapasiteyi devre dışı bırakmak satışları takip edecek ancak limite ulaşıldığında onları durdurmayacaktır\",\"H6Ma8Z\":\"İndirim\",\"ypJ62C\":\"İndirim %\",\"3LtiBI\":[[\"0\"],\" cinsinden indirim\"],\"C8JLas\":\"İndirim Türü\",\"1QfxQT\":\"Kapat\",\"DZlSLn\":\"Belge Etiketi\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Bağış / İstediğiniz kadar öde ürünü\",\"OvNbls\":\".ics İndir\",\"kodV18\":\"CSV İndir\",\"CELKku\":\"Faturayı indir\",\"LQrXcu\":\"Faturayı İndir\",\"QIodqd\":\"QR Kodu İndir\",\"yhjU+j\":\"Fatura İndiriliyor\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Açılır seçim\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Etkinliği çoğalt\",\"3ogkAk\":\"Etkinliği Çoğalt\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Çoğaltma Seçenekleri\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Erken kuş\",\"ePK91l\":\"Düzenle\",\"N6j2JH\":[[\"0\"],\" Düzenle\"],\"kBkYSa\":\"Kapasiteyi Düzenle\",\"oHE9JT\":\"Kapasite Atamasını Düzenle\",\"j1Jl7s\":\"Kategoriyi düzenle\",\"FU1gvP\":\"Check-In Listesini Düzenle\",\"iFgaVN\":\"Kodu Düzenle\",\"jrBSO1\":\"Organizatörü Düzenle\",\"tdD/QN\":\"Ürünü Düzenle\",\"n143Tq\":\"Ürün Kategorisini Düzenle\",\"9BdS63\":\"Promosyon Kodunu Düzenle\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Soruyu Düzenle\",\"poTr35\":\"Kullanıcıyı düzenle\",\"GTOcxw\":\"Kullanıcıyı Düzenle\",\"pqFrv2\":\"örn. $2.50 için 2.50\",\"3yiej1\":\"örn. %23.5 için 23.5\",\"O3oNi5\":\"E-posta\",\"VxYKoK\":\"E-posta ve Bildirim Ayarları\",\"ATGYL1\":\"E-posta adresi\",\"hzKQCy\":\"E-posta Adresi\",\"HqP6Qf\":\"E-posta değişikliği başarıyla iptal edildi\",\"mISwW1\":\"E-posta değişikliği beklemede\",\"APuxIE\":\"E-posta onayı yeniden gönderildi\",\"YaCgdO\":\"E-posta onayı başarıyla yeniden gönderildi\",\"jyt+cx\":\"E-posta alt bilgi mesajı\",\"I6F3cp\":\"E-posta doğrulanmamış\",\"NTZ/NX\":\"Gömme Kodu\",\"4rnJq4\":\"Gömme Scripti\",\"8oPbg1\":\"Faturalamayı Etkinleştir\",\"j6w7d/\":\"Limite ulaşıldığında ürün satışlarını durdurmak için bu kapasiteyi etkinleştir\",\"VFv2ZC\":\"Bitiş Tarihi\",\"237hSL\":\"Sona Erdi\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"İngilizce\",\"MhVoma\":\"Vergiler ve ücretler hariç bir tutar girin.\",\"SlfejT\":\"Hata\",\"3Z223G\":\"E-posta adresini onaylama hatası\",\"a6gga1\":\"E-posta değişikliğini onaylama hatası\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Etkinlik\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Etkinlik Tarihi\",\"0Zptey\":\"Etkinlik Varsayılanları\",\"QcCPs8\":\"Etkinlik Detayları\",\"6fuA9p\":\"Etkinlik başarıyla çoğaltıldı\",\"AEuj2m\":\"Etkinlik Ana Sayfası\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Etkinlik konumu ve mekan detayları\",\"OopDbA\":\"Event page\",\"4/If97\":\"Etkinlik durumu güncellenemedi. Lütfen daha sonra tekrar deneyin\",\"btxLWj\":\"Etkinlik durumu güncellendi\",\"nMU2d3\":\"Etkinlik URL'si\",\"tst44n\":\"Etkinlikler\",\"sZg7s1\":\"Son kullanım tarihi\",\"KnN1Tu\":\"Süresi Doluyor\",\"uaSvqt\":\"Son Kullanım Tarihi\",\"GS+Mus\":\"Dışa Aktar\",\"9xAp/j\":\"Katılımcı iptal edilemedi\",\"ZpieFv\":\"Sipariş iptal edilemedi\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Fatura indirilemedi. Lütfen tekrar deneyin.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Giriş Listesi yüklenemedi\",\"ZQ15eN\":\"Bilet e-postası yeniden gönderilemedi\",\"ejXy+D\":\"Ürünler sıralanamadı\",\"PLUB/s\":\"Ücret\",\"/mfICu\":\"Ücretler\",\"LyFC7X\":\"Siparişleri Filtrele\",\"cSev+j\":\"Filtreler\",\"CVw2MU\":[\"Filtreler (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"İlk Fatura Numarası\",\"V1EGGU\":\"Ad\",\"kODvZJ\":\"Ad\",\"S+tm06\":\"Ad 1 ile 50 karakter arasında olmalıdır\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"İlk Kullanım\",\"TpqW74\":\"Sabit\",\"irpUxR\":\"Sabit tutar\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Şifrenizi mi unuttunuz?\",\"2POOFK\":\"Ücretsiz\",\"P/OAYJ\":\"Ücretsiz Ürün\",\"vAbVy9\":\"Ücretsiz ürün, ödeme bilgisi gerekli değil\",\"nLC6tu\":\"Fransızca\",\"Weq9zb\":\"Genel\",\"DDcvSo\":\"Almanca\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Profile geri dön\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Takvim\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Brüt satışlar\",\"yRg26W\":\"Brüt Satışlar\",\"R4r4XO\":\"Misafirler\",\"26pGvx\":\"Promosyon kodunuz var mı?\",\"V7yhws\":\"merhaba@harika-etkinlikler.com\",\"6K/IHl\":\"İşte bileşeni uygulamanızda nasıl kullanabileceğinize dair bir örnek.\",\"Y1SSqh\":\"İşte widget'ı uygulamanıza yerleştirmek için kullanabileceğiniz React bileşeni.\",\"QuhVpV\":[\"Merhaba \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Halk görünümünden gizli\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Gizli sorular yalnızca etkinlik organizatörü tarafından görülebilir, müşteri tarafından görülemez.\",\"vLyv1R\":\"Gizle\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Satış bitiş tarihinden sonra ürünü gizle\",\"06s3w3\":\"Satış başlama tarihinden önce ürünü gizle\",\"axVMjA\":\"Kullanıcının uygun promosyon kodu yoksa ürünü gizle\",\"ySQGHV\":\"Tükendiğinde ürünü gizle\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Bu ürünü müşterilerden gizle\",\"Da29Y6\":\"Bu soruyu gizle\",\"fvDQhr\":\"Bu katmanı kullanıcılardan gizle\",\"lNipG+\":\"Bir ürünü gizlemek, kullanıcıların onu etkinlik sayfasında görmesini engeller.\",\"ZOBwQn\":\"Ana Sayfa Tasarımı\",\"PRuBTd\":\"Ana Sayfa Tasarımcısı\",\"YjVNGZ\":\"Ana Sayfa Önizlemesi\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Müşterinin siparişini tamamlamak için kaç dakikası var. En az 15 dakika öneriyoruz\",\"ySxKZe\":\"Bu kod kaç kez kullanılabilir?\",\"dZsDbK\":[\"HTML karakter sınırı aşıldı: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://ornek-harita-servisi.com/...\",\"uOXLV3\":\"<0>Şartlar ve koşulları kabul ediyorum\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Etkinleştirilirse, check-in personeli katılımcıları check-in yaptı olarak işaretleyebilir veya siparişi ödenmiş olarak işaretleyip katılımcıları check-in yapabilir. Devre dışıysa, ödenmemiş siparişlerle ilişkili katılımcılar check-in yapamazlar.\",\"muXhGi\":\"Etkinleştirilirse, yeni bir sipariş verildiğinde organizatör e-posta bildirimi alacak\",\"6fLyj/\":\"Bu değişikliği talep etmediyseniz, lütfen hemen şifrenizi değiştirin.\",\"n/ZDCz\":\"Resim başarıyla silindi\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Resim başarıyla yüklendi\",\"VyUuZb\":\"Resim URL'si\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Pasif\",\"T0K0yl\":\"Pasif kullanıcılar giriş yapamazlar.\",\"kO44sp\":\"Çevrimiçi etkinliğiniz için bağlantı detaylarını ekleyin. Bu detaylar sipariş özeti sayfasında ve katılımcı bilet sayfasında gösterilecektir.\",\"FlQKnG\":\"Fiyata vergi ve ücretleri dahil et\",\"Vi+BiW\":[[\"0\"],\" ürün içerir\"],\"lpm0+y\":\"1 ürün içerir\",\"UiAk5P\":\"Resim Ekle\",\"OyLdaz\":\"Davet yeniden gönderildi!\",\"HE6KcK\":\"Davet iptal edildi!\",\"SQKPvQ\":\"Kullanıcı Davet Et\",\"bKOYkd\":\"Fatura başarıyla indirildi\",\"alD1+n\":\"Fatura Notları\",\"kOtCs2\":\"Fatura Numaralandırma\",\"UZ2GSZ\":\"Fatura Ayarları\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Öğe\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etiket\",\"vXIe7J\":\"Dil\",\"2LMsOq\":\"Son 12 ay\",\"vfe90m\":\"Son 14 gün\",\"aK4uBd\":\"Son 24 saat\",\"uq2BmQ\":\"Son 30 gün\",\"bB6Ram\":\"Son 48 saat\",\"VlnB7s\":\"Son 6 ay\",\"ct2SYD\":\"Son 7 gün\",\"XgOuA7\":\"Son 90 gün\",\"I3yitW\":\"Son giriş\",\"1ZaQUH\":\"Soyad\",\"UXBCwc\":\"Soyad\",\"tKCBU0\":\"Son Kullanım\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Varsayılan \\\"Fatura\\\" kelimesini kullanmak için boş bırakın\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Yükleniyor...\",\"wJijgU\":\"Konum\",\"sQia9P\":\"Giriş yap\",\"zUDyah\":\"Giriş yapılıyor\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Çıkış\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Ödeme sırasında fatura adresini zorunlu kıl\",\"MU3ijv\":\"Bu soruyu zorunlu kıl\",\"wckWOP\":\"Yönet\",\"onpJrA\":\"Katılımcıyı yönet\",\"n4SpU5\":\"Etkinliği yönet\",\"WVgSTy\":\"Siparişi yönet\",\"1MAvUY\":\"Bu etkinlik için ödeme ve faturalama ayarlarını yönet.\",\"cQrNR3\":\"Profili Yönet\",\"AtXtSw\":\"Ürünlerinize uygulanabilecek vergi ve ücretleri yönetin\",\"ophZVW\":\"Biletleri yönet\",\"DdHfeW\":\"Hesap bilgilerinizi ve varsayılan ayarlarını yönetin\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Kullanıcılarınızı ve izinlerini yönetin\",\"1m+YT2\":\"Zorunlu sorular müşteri ödeme yapmadan önce cevaplanmalıdır.\",\"Dim4LO\":\"Manuel olarak Katılımcı ekle\",\"e4KdjJ\":\"Manuel Katılımcı Ekle\",\"vFjEnF\":\"Ödendi olarak işaretle\",\"g9dPPQ\":\"Sipariş Başına Maksimum\",\"l5OcwO\":\"Katılımcıya mesaj gönder\",\"Gv5AMu\":\"Katılımcılara Mesaj\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Alıcıya mesaj gönder\",\"tNZzFb\":\"Mesaj içeriği\",\"lYDV/s\":\"Bireysel katılımcılara mesaj gönder\",\"V7DYWd\":\"Mesaj Gönderildi\",\"t7TeQU\":\"Mesajlar\",\"xFRMlO\":\"Sipariş Başına Minimum\",\"QYcUEf\":\"Minimum Fiyat\",\"RDie0n\":\"Çeşitli\",\"mYLhkl\":\"Çeşitli Ayarlar\",\"KYveV8\":\"Çok satırlı metin kutusu\",\"VD0iA7\":\"Çoklu fiyat seçenekleri. Erken kayıt ürünleri vb. için mükemmel.\",\"/bhMdO\":\"Harika etkinlik açıklamam...\",\"vX8/tc\":\"Harika etkinlik başlığım...\",\"hKtWk2\":\"Profilim\",\"fj5byd\":\"Yok\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Ad\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Katılımcıya Git\",\"qqeAJM\":\"Asla\",\"7vhWI8\":\"Yeni Şifre\",\"1UzENP\":\"Hayır\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Gösterilecek arşivlenmiş etkinlik yok.\",\"q2LEDV\":\"Bu sipariş için katılımcı bulunamadı.\",\"zlHa5R\":\"Bu siparişe katılımcı eklenmemiş.\",\"Wjz5KP\":\"Gösterilecek Katılımcı yok\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Kapasite Ataması Yok\",\"a/gMx2\":\"Check-In Listesi Yok\",\"tMFDem\":\"Veri mevcut değil\",\"6Z/F61\":\"Gösterilecek veri yok. Lütfen bir tarih aralığı seçin\",\"fFeCKc\":\"İndirim Yok\",\"HFucK5\":\"Gösterilecek sona ermiş etkinlik yok.\",\"yAlJXG\":\"Gösterilecek etkinlik yok\",\"GqvPcv\":\"Filtre mevcut değil\",\"KPWxKD\":\"Gösterilecek mesaj yok\",\"J2LkP8\":\"Gösterilecek sipariş yok\",\"RBXXtB\":\"Şu anda hiçbir ödeme yöntemi mevcut değil. Yardım için etkinlik organizatörüyle iletişime geçin.\",\"ZWEfBE\":\"Ödeme Gerekli Değil\",\"ZPoHOn\":\"Bu katılımcı ile ilişkili ürün yok.\",\"Ya1JhR\":\"Bu kategoride mevcut ürün yok.\",\"FTfObB\":\"Henüz Ürün Yok\",\"+Y976X\":\"Gösterilecek Promosyon Kodu yok\",\"MAavyl\":\"Bu katılımcı tarafından cevaplanan soru yok.\",\"SnlQeq\":\"Bu sipariş için hiçbir soru sorulmamış.\",\"Ev2r9A\":\"Sonuç yok\",\"gk5uwN\":\"Arama Sonucu Yok\",\"RHyZUL\":\"Arama sonucu yok.\",\"RY2eP1\":\"Hiçbir Vergi veya Ücret eklenmemiş.\",\"EdQY6l\":\"Hiçbiri\",\"OJx3wK\":\"Mevcut değil\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notlar\",\"jtrY3S\":\"Henüz gösterilecek bir şey yok\",\"hFwWnI\":\"Bildirim Ayarları\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Organizatörü yeni siparişler hakkında bilgilendir\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Ödeme için izin verilen gün sayısı (faturalardan ödeme koşullarını çıkarmak için boş bırakın)\",\"n86jmj\":\"Numara Öneki\",\"mwe+2z\":\"Çevrimdışı siparişler, sipariş ödendi olarak işaretlenene kadar etkinlik istatistiklerine yansıtılmaz.\",\"dWBrJX\":\"Çevrimdışı ödeme başarısız. Lütfen tekrar deneyin veya etkinlik organizatörüyle iletişime geçin.\",\"fcnqjw\":\"Çevrimdışı Ödeme Talimatları\",\"+eZ7dp\":\"Çevrimdışı Ödemeler\",\"ojDQlR\":\"Çevrimdışı Ödemeler Bilgisi\",\"u5oO/W\":\"Çevrimdışı Ödemeler Ayarları\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"Satışta\",\"Ug4SfW\":\"Bir etkinlik oluşturduğunuzda, burada göreceksiniz.\",\"ZxnK5C\":\"Veri toplamaya başladığınızda, burada göreceksiniz.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Devam Eden\",\"z+nuVJ\":\"Çevrimiçi etkinlik\",\"WKHW0N\":\"Online Etkinlik Detayları\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Check-In Sayfasını Aç\",\"OdnLE4\":\"Kenar çubuğunu aç\",\"ZZEYpT\":[\"Seçenek \",[\"i\"]],\"oPknTP\":\"Tüm faturalarda görünecek isteğe bağlı ek bilgiler (örn., ödeme koşulları, gecikme ücreti, iade politikası)\",\"OrXJBY\":\"Fatura numaraları için isteğe bağlı önek (örn., FAT-)\",\"0zpgxV\":\"Seçenekler\",\"BzEFor\":\"veya\",\"UYUgdb\":\"Sipariş\",\"mm+eaX\":\"Sipariş #\",\"B3gPuX\":\"Sipariş İptal Edildi\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Sipariş Tarihi\",\"Tol4BF\":\"Sipariş Detayları\",\"WbImlQ\":\"Sipariş iptal edildi ve sipariş sahibi bilgilendirildi.\",\"nAn4Oe\":\"Sipariş ödendi olarak işaretlendi\",\"uzEfRz\":\"Sipariş Notları\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Sipariş Referansı\",\"acIJ41\":\"Sipariş Durumu\",\"GX6dZv\":\"Sipariş Özeti\",\"tDTq0D\":\"Sipariş zaman aşımı\",\"1h+RBg\":\"Siparişler\",\"3y+V4p\":\"Organizasyon Adresi\",\"GVcaW6\":\"Organizasyon Detayları\",\"nfnm9D\":\"Organizasyon Adı\",\"G5RhpL\":\"Organizatör\",\"mYygCM\":\"Organizatör gereklidir\",\"Pa6G7v\":\"Organizatör Adı\",\"l894xP\":\"Organizatörler yalnızca etkinlikleri ve ürünleri yönetebilir. Kullanıcıları, hesap ayarlarını veya fatura bilgilerini yönetemezler.\",\"fdjq4c\":\"İç Boşluk\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Sayfa bulunamadı\",\"QbrUIo\":\"Sayfa görüntüleme\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"ödendi\",\"HVW65c\":\"Ücretli Ürün\",\"ZfxaB4\":\"Kısmen İade Edildi\",\"8ZsakT\":\"Şifre\",\"TUJAyx\":\"Şifre en az 8 karakter olmalıdır\",\"vwGkYB\":\"Şifre en az 8 karakter olmalıdır\",\"BLTZ42\":\"Şifre başarıyla sıfırlandı. Lütfen yeni şifrenizle giriş yapın.\",\"f7SUun\":\"Şifreler aynı değil\",\"aEDp5C\":\"Widget'ın görünmesini istediğiniz yere bunu yapıştırın.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Ödeme\",\"Lg+ewC\":\"Ödeme ve Faturalama\",\"DZjk8u\":\"Ödeme ve Faturalama Ayarları\",\"lflimf\":\"Ödeme Vade Süresi\",\"JhtZAK\":\"Ödeme Başarısız\",\"JEdsvQ\":\"Ödeme Talimatları\",\"bLB3MJ\":\"Ödeme Yöntemleri\",\"QzmQBG\":\"Ödeme sağlayıcısı\",\"lsxOPC\":\"Ödeme Alındı\",\"wJTzyi\":\"Ödeme Durumu\",\"xgav5v\":\"Ödeme başarılı!\",\"R29lO5\":\"Ödeme Koşulları\",\"/roQKz\":\"Yüzde\",\"vPJ1FI\":\"Yüzde Miktarı\",\"xdA9ud\":\"Bunu web sitenizin bölümüne yerleştirin.\",\"blK94r\":\"Lütfen en az bir seçenek ekleyin\",\"FJ9Yat\":\"Lütfen verilen bilgilerin doğru olduğunu kontrol edin\",\"TkQVup\":\"Lütfen e-posta ve şifrenizi kontrol edin ve tekrar deneyin\",\"sMiGXD\":\"Lütfen e-postanızın geçerli olduğunu kontrol edin\",\"Ajavq0\":\"E-posta adresinizi onaylamak için lütfen e-postanızı kontrol edin\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Lütfen yeni sekmede devam edin\",\"hcX103\":\"Lütfen bir ürün oluşturun\",\"cdR8d6\":\"Lütfen bir bilet oluşturun\",\"x2mjl4\":\"Lütfen bir resme işaret eden geçerli bir resim URL'si girin.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Lütfen Dikkat\",\"C63rRe\":\"Baştan başlamak için lütfen etkinlik sayfasına dönün.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Lütfen en az bir ürün seçin\",\"igBrCH\":\"Tüm özelliklere erişmek için lütfen e-posta adresinizi doğrulayın\",\"/IzmnP\":\"Faturanızı hazırlarken lütfen bekleyin...\",\"MOERNx\":\"Portekizce\",\"qCJyMx\":\"Ödeme sonrası mesaj\",\"g2UNkE\":\"Tarafından desteklenmektedir\",\"Rs7IQv\":\"Ödeme öncesi mesaj\",\"rdUucN\":\"Önizleme\",\"a7u1N9\":\"Fiyat\",\"CmoB9j\":\"Fiyat görünüm modu\",\"BI7D9d\":\"Fiyat belirlenmedi\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Fiyat Türü\",\"6RmHKN\":\"Ana Renk\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Ana Metin Rengi\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Tüm Biletleri Yazdır\",\"DKwDdj\":\"Biletleri Yazdır\",\"K47k8R\":\"Ürün\",\"1JwlHk\":\"Ürün Kategorisi\",\"U61sAj\":\"Ürün kategorisi başarıyla güncellendi.\",\"1USFWA\":\"Ürün başarıyla silindi\",\"4Y2FZT\":\"Ürün Fiyat Türü\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Ürün Satışları\",\"U/R4Ng\":\"Ürün Katmanı\",\"sJsr1h\":\"Ürün Türü\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Ürün(ler)\",\"N0qXpE\":\"Ürünler\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Satılan ürünler\",\"/u4DIx\":\"Satılan Ürünler\",\"DJQEZc\":\"Ürünler başarıyla sıralandı\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil başarıyla güncellendi\",\"cl5WYc\":[\"Promosyon \",[\"promo_code\"],\" kodu uygulandı\"],\"P5sgAk\":\"Promosyon Kodu\",\"yKWfjC\":\"Promosyon Kodu sayfası\",\"RVb8Fo\":\"Promosyon Kodları\",\"BZ9GWa\":\"Promosyon kodları indirim sunmak, ön satış erişimi veya etkinliğinize özel erişim sağlamak için kullanılabilir.\",\"OP094m\":\"Promosyon Kodları Raporu\",\"4kyDD5\":\"Bu soru için ek bağlam veya talimatlar sağlayın. Şartlar ve koşullar, kurallar veya katılımcıların yanıt vermeden önce bilmesi\\ngereken önemli bilgileri eklemek için bu alanı kullanın.\",\"toutGW\":\"QR Kod\",\"LkMOWF\":\"Mevcut Miktar\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Soru silindi\",\"avf0gk\":\"Soru Açıklaması\",\"oQvMPn\":\"Soru Başlığı\",\"enzGAL\":\"Sorular\",\"ROv2ZT\":\"Sorular ve Cevaplar\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radyo Seçeneği\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Alıcı\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"İade Başarısız\",\"n10yGu\":\"Siparişi iade et\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"İade Bekliyor\",\"xHpVRl\":\"İade Durumu\",\"/BI0y9\":\"İade Edildi\",\"fgLNSM\":\"Kayıt Ol\",\"9+8Vez\":\"Kalan Kullanım\",\"tasfos\":\"kaldır\",\"t/YqKh\":\"Kaldır\",\"t9yxlZ\":\"Raporlar\",\"prZGMe\":\"Fatura Adresi Gerekli\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"E-posta onayını tekrar gönder\",\"wIa8Qe\":\"Daveti tekrar gönder\",\"VeKsnD\":\"Sipariş e-postasını tekrar gönder\",\"dFuEhO\":\"Bilet e-postasını tekrar gönder\",\"o6+Y6d\":\"Tekrar gönderiliyor...\",\"OfhWJH\":\"Sıfırla\",\"RfwZxd\":\"Şifreyi sıfırla\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Etkinliği geri yükle\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Etkinlik Sayfasına Dön\",\"8YBH95\":\"Gelir\",\"PO/sOY\":\"Daveti iptal et\",\"GDvlUT\":\"Rol\",\"ELa4O9\":\"Satış Bitiş Tarihi\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Satış Başlangıç Tarihi\",\"hBsw5C\":\"Satış bitti\",\"kpAzPe\":\"Satış başlangıcı\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Kaydet\",\"IUwGEM\":\"Değişiklikleri Kaydet\",\"U65fiW\":\"Organizatörü Kaydet\",\"UGT5vp\":\"Ayarları Kaydet\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Katılımcı adı, e-posta veya sipariş #'a göre ara...\",\"+pr/FY\":\"Etkinlik adına göre ara...\",\"3zRbWw\":\"Ad, e-posta veya sipariş #'a göre ara...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Ada göre ara...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Kapasite atamalarını ara...\",\"r9M1hc\":\"Check-in listelerini ara...\",\"+0Yy2U\":\"Ürünleri ara\",\"YIix5Y\":\"Ara...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"İkincil Renk\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"İkincil Metin Rengi\",\"02ePaq\":[[\"0\"],\" seç\"],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Kategori seç...\",\"kWI/37\":\"Organizatör seç\",\"ixIx1f\":\"Ürün Seç\",\"3oSV95\":\"Ürün Katmanı Seç\",\"C4Y1hA\":\"Ürünleri seç\",\"hAjDQy\":\"Durum seç\",\"QYARw/\":\"Bilet Seç\",\"OMX4tH\":\"Biletleri seç\",\"DrwwNd\":\"Zaman aralığı seç\",\"O/7I0o\":\"Seç...\",\"JlFcis\":\"Gönder\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Mesaj gönder\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Mesaj Gönder\",\"D7ZemV\":\"Sipariş onayı ve bilet e-postası gönder\",\"v1rRtW\":\"Test Gönder\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO Açıklaması\",\"/SIY6o\":\"SEO Anahtar Kelimeleri\",\"GfWoKv\":\"SEO Ayarları\",\"rXngLf\":\"SEO Başlığı\",\"/jZOZa\":\"Hizmet Ücreti\",\"Bj/QGQ\":\"Minimum fiyat belirleyin ve kullanıcılar isterlerse daha fazla ödesin\",\"L0pJmz\":\"Fatura numaralandırması için başlangıç numarasını ayarlayın. Faturalar oluşturulduktan sonra bu değiştirilemez.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Ayarlar\",\"Z8lGw6\":\"Paylaş\",\"B2V3cA\":\"Etkinliği Paylaş\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Mevcut ürün miktarını göster\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Daha fazla göster\",\"izwOOD\":\"Vergi ve ücretleri ayrı göster\",\"1SbbH8\":\"Müşteriye ödeme yaptıktan sonra sipariş özeti sayfasında gösterilir.\",\"YfHZv0\":\"Müşteriye ödeme yapmadan önce gösterilir\",\"CBBcly\":\"Ülke dahil olmak üzere ortak adres alanlarını gösterir\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Tek satır metin kutusu\",\"+P0Cn2\":\"Bu adımı atla\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Tükendi\",\"Mi1rVn\":\"Tükendi\",\"nwtY4N\":\"Bir şeyler yanlış gitti\",\"GRChTw\":\"Vergi veya Ücret silinirken bir şeyler yanlış gitti\",\"YHFrbe\":\"Bir şeyler yanlış gitti! Lütfen tekrar deneyin\",\"kf83Ld\":\"Bir şeyler yanlış gitti.\",\"fWsBTs\":\"Bir şeyler yanlış gitti. Lütfen tekrar deneyin.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Üzgünüz, bu promosyon kodu tanınmıyor\",\"65A04M\":\"İspanyolca\",\"mFuBqb\":\"Sabit fiyatlı standart ürün\",\"D3iCkb\":\"Başlangıç Tarihi\",\"/2by1f\":\"Eyalet veya Bölge\",\"uAQUqI\":\"Durum\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Bu etkinlik için Stripe ödemeleri etkinleştirilmemiş.\",\"UJmAAK\":\"Konu\",\"X2rrlw\":\"Ara Toplam\",\"zzDlyQ\":\"Başarılı\",\"b0HJ45\":[\"Başarılı! \",[\"0\"],\" kısa süre içinde bir e-posta alacak.\"],\"BJIEiF\":[\"Katılımcı başarıyla \",[\"0\"]],\"OtgNFx\":\"E-posta adresi başarıyla onaylandı\",\"IKwyaF\":\"E-posta değişikliği başarıyla onaylandı\",\"zLmvhE\":\"Katılımcı başarıyla oluşturuldu\",\"gP22tw\":\"Ürün Başarıyla Oluşturuldu\",\"9mZEgt\":\"Promosyon Kodu Başarıyla Oluşturuldu\",\"aIA9C4\":\"Soru Başarıyla Oluşturuldu\",\"J3RJSZ\":\"Katılımcı başarıyla güncellendi\",\"3suLF0\":\"Kapasite Ataması başarıyla güncellendi\",\"Z+rnth\":\"Giriş Listesi başarıyla güncellendi\",\"vzJenu\":\"E-posta Ayarları Başarıyla Güncellendi\",\"7kOMfV\":\"Etkinlik Başarıyla Güncellendi\",\"G0KW+e\":\"Ana Sayfa Tasarımı Başarıyla Güncellendi\",\"k9m6/E\":\"Ana Sayfa Ayarları Başarıyla Güncellendi\",\"y/NR6s\":\"Konum Başarıyla Güncellendi\",\"73nxDO\":\"Çeşitli Ayarlar Başarıyla Güncellendi\",\"4H80qv\":\"Sipariş başarıyla güncellendi\",\"6xCBVN\":\"Ödeme ve Faturalama Ayarları Başarıyla Güncellendi\",\"1Ycaad\":\"Ürün başarıyla güncellendi\",\"70dYC8\":\"Promosyon Kodu Başarıyla Güncellendi\",\"F+pJnL\":\"SEO Ayarları Başarıyla Güncellendi\",\"DXZRk5\":\"Süit 100\",\"GNcfRk\":\"Destek E-postası\",\"uRfugr\":\"Tişört\",\"JpohL9\":\"Vergi\",\"geUFpZ\":\"Vergi ve Ücretler\",\"dFHcIn\":\"Vergi Detayları\",\"wQzCPX\":\"Tüm faturaların altında görünecek vergi bilgisi (örn., KDV numarası, vergi kaydı)\",\"0RXCDo\":\"Vergi veya Ücret başarıyla silindi\",\"ZowkxF\":\"Vergiler\",\"qu6/03\":\"Vergiler ve Ücretler\",\"gypigA\":\"Bu promosyon kodu geçersiz\",\"5ShqeM\":\"Aradığınız check-in listesi mevcut değil.\",\"QXlz+n\":\"Etkinlikleriniz için varsayılan para birimi.\",\"mnafgQ\":\"Etkinlikleriniz için varsayılan saat dilimi.\",\"o7s5FA\":\"Katılımcının e-postaları alacağı dil.\",\"NlfnUd\":\"Tıkladığınız bağlantı geçersiz.\",\"HsFnrk\":[[\"0\"],\" için maksimum ürün sayısı \",[\"1\"]],\"TSAiPM\":\"Aradığınız sayfa mevcut değil\",\"MSmKHn\":\"Müşteriye gösterilen fiyat vergi ve ücretleri içerecektir.\",\"6zQOg1\":\"Müşteriye gösterilen fiyat vergi ve ücretleri içermeyecektir. Bunlar ayrı olarak gösterilecektir\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Arama motoru sonuçlarında ve sosyal medyada paylaşırken görüntülenecek etkinlik başlığı. Varsayılan olarak etkinlik başlığı kullanılacaktır\",\"wDx3FF\":\"Bu etkinlik için mevcut ürün yok\",\"pNgdBv\":\"Bu kategoride mevcut ürün yok\",\"rMcHYt\":\"Bekleyen bir iade var. Başka bir iade talebinde bulunmadan önce lütfen tamamlanmasını bekleyin.\",\"F89D36\":\"Sipariş ödendi olarak işaretlenirken bir hata oluştu\",\"68Axnm\":\"İsteğiniz işlenirken bir hata oluştu. Lütfen tekrar deneyin.\",\"mVKOW6\":\"Mesajınız gönderilirken bir hata oluştu\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Bu katılımcının ödenmemiş siparişi var.\",\"mf3FrP\":\"Bu kategoride henüz hiç ürün yok.\",\"8QH2Il\":\"Bu kategori halktan gizli\",\"xxv3BZ\":\"Bu check-in listesi süresi doldu\",\"Sa7w7S\":\"Bu check-in listesinin süresi doldu ve artık check-in için kullanılamıyor.\",\"Uicx2U\":\"Bu check-in listesi aktif\",\"1k0Mp4\":\"Bu check-in listesi henüz aktif değil\",\"K6fmBI\":\"Bu check-in listesi henüz aktif değil ve check-in yapılabilir durumda değil.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Bu bilgiler ödeme sayfasında, sipariş özeti sayfasında ve sipariş onayı e-postasında gösterilecektir.\",\"XAHqAg\":\"Bu genel bir üründür, tişört veya kupa gibi. Hiçbir bilet düzenlenmeyecek\",\"CNk/ro\":\"Bu çevrimiçi bir etkinlik\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Bu mesaj bu etkinlikten gönderilen tüm e-postaların altbilgisinde yer alacak\",\"55i7Fa\":\"Bu mesaj sadece sipariş başarılı bir şekilde tamamlandığında gösterilecek. Ödeme bekleyen siparişlerde bu mesaj gösterilmeyecek\",\"RjwlZt\":\"Bu sipariş zaten ödenmiş.\",\"5K8REg\":\"Bu sipariş zaten iade edilmiş.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Bu sipariş iptal edilmiş.\",\"Q0zd4P\":\"Bu siparişin süresi dolmuş. Lütfen tekrar başlayın.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Bu sipariş tamamlandı.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Bu sipariş sayfası artık mevcut değil.\",\"i0TtkR\":\"Bu tüm görünürlük ayarlarını geçersiz kılar ve ürünü tüm müşterilerden gizler.\",\"cRRc+F\":\"Bu ürün bir siparişle ilişkili olduğu için silinemez. Bunun yerine gizleyebilirsiniz.\",\"3Kzsk7\":\"Bu ürün bir bilettir. Alıcılara satın alma sonrasında bilet verilecek\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Bu şifre sıfırlama bağlantısı geçersiz veya süresi dolmuş.\",\"IV9xTT\":\"Bu kullanıcı davetini kabul etmediği için aktif değil.\",\"5AnPaO\":\"bilet\",\"kjAL4v\":\"Bilet\",\"dtGC3q\":\"Bilet e-postası katılımcıya yeniden gönderildi\",\"54q0zp\":\"Biletler\",\"xN9AhL\":[\"Seviye \",[\"0\"]],\"jZj9y9\":\"Kademeli Ürün\",\"8wITQA\":\"Kademeli ürünler aynı ürün için birden fazla fiyat seçeneği sunmanıza olanak tanır. Bu erken rezervasyon ürünleri veya farklı insan grupları için farklı fiyat seçenekleri sunmak için mükemmeldir.\",\"nn3mSR\":\"Kalan süre:\",\"s/0RpH\":\"Kullanım sayısı\",\"y55eMd\":\"Kullanım Sayısı\",\"40Gx0U\":\"Saat Dilimi\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Araçlar\",\"72c5Qo\":\"Toplam\",\"YXx+fG\":\"İndirimlerden Önceki Toplam\",\"NRWNfv\":\"Toplam İndirim Tutarı\",\"BxsfMK\":\"Toplam Ücretler\",\"2bR+8v\":\"Toplam Brüt Satış\",\"mpB/d9\":\"Toplam sipariş tutarı\",\"m3FM1g\":\"Toplam iade edilen\",\"jEbkcB\":\"Toplam İade Edilen\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Toplam Vergi\",\"+zy2Nq\":\"Tür\",\"FMdMfZ\":\"Katılımcı girişi yapılamadı\",\"bPWBLL\":\"Katılımcı check-out'u yapılamadı\",\"9+P7zk\":\"Ürün oluşturulamadı. Lütfen bilgilerinizi kontrol edin\",\"WLxtFC\":\"Ürün oluşturulamadı. Lütfen bilgilerinizi kontrol edin\",\"/cSMqv\":\"Soru oluşturulamadı. Lütfen bilgilerinizi kontrol edin\",\"MH/lj8\":\"Soru güncellenemedi. Lütfen bilgilerinizi kontrol edin\",\"nnfSdK\":\"Benzersiz Müşteriler\",\"Mqy/Zy\":\"Amerika Birleşik Devletleri\",\"NIuIk1\":\"Sınırsız\",\"/p9Fhq\":\"Sınırsız mevcut\",\"E0q9qH\":\"Sınırsız kullanıma izin verildi\",\"h10Wm5\":\"Ödenmemiş Sipariş\",\"ia8YsC\":\"Yaklaşan\",\"TlEeFv\":\"Yaklaşan Etkinlikler\",\"L/gNNk\":[[\"0\"],\" Güncelle\"],\"+qqX74\":\"Etkinlik adı, açıklaması ve tarihlerini güncelle\",\"vXPSuB\":\"Profili güncelle\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL panoya kopyalandı\",\"e5lF64\":\"Kullanım Örneği\",\"fiV0xj\":\"Kullanım Sınırı\",\"sGEOe4\":\"Kapak resminin bulanıklaştırılmış halini arkaplan olarak kullan\",\"OadMRm\":\"Kapak resmini kullan\",\"7PzzBU\":\"Kullanıcı\",\"yDOdwQ\":\"Kullanıcı Yönetimi\",\"Sxm8rQ\":\"Kullanıcılar\",\"VEsDvU\":\"Kullanıcılar e-postalarını <0>Profil Ayarları'nda değiştirebilir\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"KDV\",\"E/9LUk\":\"Mekan Adı\",\"jpctdh\":\"Görüntüle\",\"Pte1Hv\":\"Katılımcı Detaylarını Görüntüle\",\"/5PEQz\":\"Etkinlik sayfasını görüntüle\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Google Haritalar'da görüntüle\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP check-in listesi\",\"tF+VVr\":\"VIP Bilet\",\"2q/Q7x\":\"Görünürlük\",\"vmOFL/\":\"Ödemenizi işleyemedik. Lütfen tekrar deneyin veya destek ile iletişime geçin.\",\"45Srzt\":\"Kategoriyi silemedik. Lütfen tekrar deneyin.\",\"/DNy62\":[[\"0\"],\" ile eşleşen herhangi bir bilet bulamadık\"],\"1E0vyy\":\"Verileri yükleyemedik. Lütfen tekrar deneyin.\",\"NmpGKr\":\"Kategorileri yeniden sıralayamadık. Lütfen tekrar deneyin.\",\"BJtMTd\":\"1950px x 650px boyutlarında, 3:1 oranında ve maksimum 5MB dosya boyutunda olmasını öneriyoruz\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Ödemenizi onaylayamadık. Lütfen tekrar deneyin veya destek ile iletişime geçin.\",\"Gspam9\":\"Siparişinizi işliyoruz. Lütfen bekleyin...\",\"LuY52w\":\"Hoş geldiniz! Devam etmek için lütfen giriş yapın.\",\"dVxpp5\":[\"Tekrar hoş geldin\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Kademeli Ürünler nedir?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Kategori nedir?\",\"gxeWAU\":\"Bu kod hangi ürünler için geçerli?\",\"hFHnxR\":\"Bu kod hangi ürünler için geçerli? (Varsayılan olarak tümü için geçerli)\",\"AeejQi\":\"Bu kapasite hangi ürünler için geçerli olmalı?\",\"Rb0XUE\":\"Hangi saatte geleceksiniz?\",\"5N4wLD\":\"Bu ne tür bir soru?\",\"gyLUYU\":\"Etkinleştirildiğinde, bilet siparişleri için faturalar oluşturulacak. Faturalar sipariş onayı e-postasıyla birlikte gönderilecek. Katılımcılar ayrıca faturalarını sipariş onayı sayfasından indirebilir.\",\"D3opg4\":\"Çevrimdışı ödemeler etkinleştirildiğinde, kullanıcılar siparişlerini tamamlayabilir ve biletlerini alabilir. Biletleri siparişin ödenmediğini açıkça belirtecek ve check-in aracı, bir sipariş ödeme gerektiriyorsa check-in personelini bilgilendirecek.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Bu check-in listesiyle hangi biletler ilişkilendirilmeli?\",\"S+OdxP\":\"Bu etkinliği kim organize ediyor?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Bu soru kime sorulmalı?\",\"VxFvXQ\":\"Widget Yerleştirme\",\"v1P7Gm\":\"Widget Ayarları\",\"b4itZn\":\"Çalışıyor\",\"hqmXmc\":\"Çalışıyor...\",\"+G/XiQ\":\"Yıl başından beri\",\"l75CjT\":\"Evet\",\"QcwyCh\":\"Evet, kaldır\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"E-postanızı <0>\",[\"0\"],\" olarak değiştiriyorsunuz.\"],\"gGhBmF\":\"Çevrimdışısınız\",\"sdB7+6\":\"Bu ürünü hedefleyen bir promosyon kodu oluşturabilirsiniz\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Bu ürünle ilişkili katılımcılar olduğu için ürün türünü değiştiremezsiniz.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Ödenmemiş siparişleri olan katılımcıları check-in yaptıramazsınız. Bu ayar etkinlik ayarlarından değiştirilebilir.\",\"c9Evkd\":\"Son kategoriyi silemezsiniz.\",\"6uwAvx\":\"Bu fiyat seviyesini silemezsiniz çünkü bu seviye için zaten satılmış ürünler var. Bunun yerine gizleyebilirsiniz.\",\"tFbRKJ\":\"Hesap sahibinin rolünü veya durumunu düzenleyemezsiniz.\",\"fHfiEo\":\"Elle oluşturulan bir siparişi iade edemezsiniz.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Birden fazla hesaba erişiminiz var. Devam etmek için birini seçin.\",\"Z6q0Vl\":\"Bu daveti zaten kabul ettiniz. Devam etmek için lütfen giriş yapın.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Bekleyen e-posta değişikliğiniz yok.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Siparişinizi tamamlamak için zamanınız doldu.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Bu e-postanın tanıtım amaçlı olmadığını kabul etmelisiniz\",\"3ZI8IL\":\"Şartlar ve koşulları kabul etmelisiniz\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Elle katılımcı ekleyebilmek için önce bir bilet oluşturmalısınız.\",\"jE4Z8R\":\"En az bir fiyat seviyeniz olmalı\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Bir siparişi elle ödenmiş olarak işaretlemeniz gerekecek. Bu, sipariş yönetimi sayfasından yapılabilir.\",\"L/+xOk\":\"Giriş listesi oluşturabilmek için önce bir bilete ihtiyacınız var.\",\"Djl45M\":\"Kapasite ataması oluşturabilmek için önce bir ürüne ihtiyacınız var.\",\"y3qNri\":\"Başlamak için en az bir ürüne ihtiyacınız var. Ücretsiz, ücretli veya kullanıcının ne kadar ödeyeceğine karar vermesine izin verin.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Hesap adınız etkinlik sayfalarında ve e-postalarda kullanılır.\",\"veessc\":\"Katılımcılarınız etkinliğinize kaydolduktan sonra burada görünecek. Ayrıca elle katılımcı ekleyebilirsiniz.\",\"Eh5Wrd\":\"Harika web siteniz 🎉\",\"lkMK2r\":\"Bilgileriniz\",\"3ENYTQ\":[\"<0>\",[\"0\"],\" adresine e-posta değişiklik talebiniz beklemede. Onaylamak için lütfen e-postanızı kontrol edin\"],\"yZfBoy\":\"Mesajınız gönderildi\",\"KSQ8An\":\"Siparişiniz\",\"Jwiilf\":\"Siparişiniz iptal edildi\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Siparişleriniz gelmeye başladığında burada görünecek.\",\"9TO8nT\":\"Şifreniz\",\"P8hBau\":\"Ödemeniz işleniyor.\",\"UdY1lL\":\"Ödemeniz başarısız oldu, lütfen tekrar deneyin.\",\"fzuM26\":\"Ödemeniz başarısız oldu. Lütfen tekrar deneyin.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"İadeniz işleniyor.\",\"IFHV2p\":\"Biletiniz\",\"x1PPdr\":\"Posta Kodu\",\"BM/KQm\":\"Posta Kodu\",\"+LtVBt\":\"Posta Kodu\",\"25QDJ1\":\"- Yayınlamak için Tıklayın\",\"WOyJmc\":\"- Yayından Kaldırmak için Tıklayın\",\"ncwQad\":\"(boş)\",\"B/gRsg\":\"(yok)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" zaten giriş yaptı\"],\"3beCx0\":[[\"0\"],\" <0>giriş yaptı\"],\"S4PqS9\":[[\"0\"],\" Aktif Webhook\"],\"6MIiOI\":[[\"0\"],\" kaldı\"],\"COnw8D\":[[\"0\"],\" logosu\"],\"xG9N0H\":[[\"1\"],\" koltuğun \",[\"0\"],\" tanesi dolu.\"],\"B7pZfX\":[[\"0\"],\" organizatör\"],\"rZTf6P\":[[\"0\"],\" yer kaldı\"],\"/HkCs4\":[[\"0\"],\" bilet\"],\"dtXkP9\":[[\"0\"],\" yaklaşan tarih\"],\"30bTiU\":[[\"activeCount\"],\" etkin\"],\"jTs4am\":[[\"appName\"],\" logosu\"],\"gbJOk9\":[\"Bu oturum için \",[\"attendeeCount\"],\" katılımcı kayıtlı.\"],\"TjbIUI\":[[\"totalCount\"],\" arasından \",[\"availableCount\"],\" mevcut\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" giriş yaptı\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" saat önce\"],\"NRSLBe\":[[\"diffMin\"],\" dk önce\"],\"iYfwJE\":[[\"diffSec\"],\" sn önce\"],\"OJnhhX\":[[\"eventCount\"],\" etkinlik\"],\"mhZbzw\":[\"Etkilenen oturumlar genelinde \",[\"loadedAffectedAttendees\"],\" katılımcı kayıtlı.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" bilet türü\"],\"0cLzoF\":[[\"totalOccurrences\"],\" tarih\"],\"AEGc4t\":[[\"0\"],\" tarih boyunca \",[\"totalOccurrences\"],\" oturum (günde \",[\"1\",\"plural\",{\"one\":[\"#\",\" oturum\"],\"other\":[\"#\",\" oturum\"]}],\")\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Vergi/Ücretler\",\"B1St2O\":\"<0>Giriş listeleri, etkinlik girişini güne, alana veya bilet türüne göre yönetmenize yardımcı olur. Biletleri VIP alanları veya 1. Gün geçişleri gibi belirli listelere bağlayabilir ve personelle güvenli bir giriş bağlantısı paylaşabilirsiniz. Hesap gerekmez. Giriş, cihaz kamerası veya HID USB tarayıcı kullanarak mobil, masaüstü veya tablette çalışır. \",\"v9VSIS\":\"<0>Birden fazla bilet türüne aynı anda uygulanan tek bir toplam katılımcı limiti belirleyin.<1>Örneğin, <2>Günlük Geçiş ve <3>Tam Hafta Sonu biletini bağlarsanız, her ikisi de aynı kontenjan havuzundan çekilecektir. Limit dolduğunda, bağlı tüm biletler otomatik olarak satıştan kaldırılır.\",\"vKXqag\":\"<0>Bu, tüm tarihler için varsayılan miktardır. Her tarihin kapasitesi, <1>Oturum Programı sayfasında mevcudiyeti daha da sınırlandırabilir.\",\"ZnVt5v\":\"<0>Webhook'lar, kayıt sırasında CRM'inize veya posta listenize yeni bir katılımcı eklemek gibi olaylar gerçekleştiğinde harici hizmetleri anında bilgilendirir ve kusursuz otomasyon sağlar.<1>Özel iş akışları oluşturmak ve görevleri otomatikleştirmek için <2>Zapier, <3>IFTTT veya <4>Make gibi üçüncü taraf hizmetleri kullanın.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" mevcut kurdan\"],\"M2DyLc\":\"1 Aktif Webhook\",\"6hIk/x\":\"Etkilenen oturumlar genelinde 1 katılımcı kayıtlı.\",\"qOyE2U\":\"Bu oturum için 1 katılımcı kayıtlı.\",\"943BwI\":\"Bitiş tarihinden 1 gün sonra\",\"yj3N+g\":\"Başlangıç tarihinden 1 gün sonra\",\"Z3etYG\":\"Etkinlikten 1 gün önce\",\"szSnlj\":\"Etkinlikten 1 saat önce\",\"yTsaLw\":\"1 bilet\",\"nz96Ue\":\"1 bilet türü\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"Etkinlikten 1 hafta önce\",\"09VFYl\":\"12 bilet sunuldu\",\"HR/cvw\":\"123 Örnek Sokak\",\"dgKxZ5\":\"135+ para birimi ve 40+ ödeme yöntemi\",\"kMU5aM\":\"İptal bildirimi gönderildi:\",\"o++0qa\":\"süre değişikliği\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"E-postanıza yeni bir doğrulama kodu gönderildi\",\"sr2Je0\":\"başlangıç/bitiş saatlerinde kayma\",\"/z/bH1\":\"Kullanıcılarınıza gösterilecek organizatörünüz hakkında kısa bir açıklama.\",\"aS0jtz\":\"Terk edildi\",\"uyJsf6\":\"Hakkında\",\"JvuLls\":\"Ücreti karşıla\",\"lk74+I\":\"Ücreti karşıla\",\"1uJlG9\":\"Vurgu Rengi\",\"g3UF2V\":\"Kabul et\",\"K5+3xg\":\"Daveti kabul et\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Hesap · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Hesap Bilgileri\",\"EHNORh\":\"Hesap bulunamadı\",\"bPwFdf\":\"Hesaplar\",\"AhwTa1\":\"Gerekli İşlem: KDV Bilgisi Gerekli\",\"APyAR/\":\"Aktif Etkinlikler\",\"kCl6ja\":\"Aktif ödeme yöntemleri\",\"XJOV1Y\":\"Etkinlik geçmişi\",\"0YEoxS\":\"Tarih ekle\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Tek Bir Tarih Ekle\",\"CjvTPJ\":\"Başka bir saat ekle\",\"0XCduh\":\"En az bir saat ekleyin\",\"/chGpa\":\"Çevrimiçi etkinlik için bağlantı bilgilerini ekleyin.\",\"UWWRyd\":\"Ödeme sırasında ek bilgi toplamak için özel sorular ekleyin\",\"Z/dcxc\":\"Tarih Ekle\",\"Q219NT\":\"Tarihler Ekle\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Konum ekle\",\"VX6WUv\":\"Konum Ekle\",\"GCQlV2\":\"Günde birden fazla oturum düzenliyorsanız birden fazla saat ekleyin.\",\"7JF9w9\":\"Soru Ekle\",\"NLbIb6\":\"Bu katılımcıyı yine de ekle (kapasiteyi geçersiz kıl)\",\"6PNlRV\":\"Bu etkinliği takviminize ekleyin\",\"BGD9Yt\":\"Bilet ekle\",\"uIv4Op\":\"Genel etkinlik sayfalarınıza ve organizatör ana sayfanıza takip pikselleri ekleyin. Takip etkin olduğunda ziyaretçilere bir çerez onay afişi gösterilecektir.\",\"QN2F+7\":\"Webhook Ekle\",\"NsWqSP\":\"Sosyal medya hesaplarınızı ve web sitesi URL'nizi ekleyin. Bunlar herkese açık organizatör sayfanızda görüntülenecektir.\",\"bVjDs9\":\"Ek ücretler\",\"MKqSg4\":\"Yönetici Erişimi Gerekli\",\"0Zypnp\":\"Yönetici Paneli\",\"YAV57v\":\"Bağlı Kuruluş\",\"I+utEq\":\"Bağlı kuruluş kodu değiştirilemez\",\"/jHBj5\":\"Bağlı kuruluş başarıyla oluşturuldu\",\"uCFbG2\":\"Bağlı kuruluş başarıyla silindi\",\"ld8I+f\":\"Bağlı kuruluş programı\",\"a41PKA\":\"Bağlı kuruluş satışları izlenecek\",\"mJJh2s\":\"Bağlı kuruluş satışları izlenmeyecek. Bu, bağlı kuruluşu devre dışı bırakacaktır.\",\"jabmnm\":\"Bağlı kuruluş başarıyla güncellendi\",\"CPXP5Z\":\"Bağlı Kuruluşlar\",\"9Wh+ug\":\"Bağlı Kuruluşlar Dışa Aktarıldı\",\"3cqmut\":\"Bağlı kuruluşlar, iş ortakları ve etkileyiciler tarafından oluşturulan satışları izlemenize yardımcı olur. Performansı izlemek için bağlı kuruluş kodları oluşturun ve paylaşın.\",\"z7GAMJ\":\"tümü\",\"N40H+G\":\"Tümü\",\"7rLTkE\":\"Tüm Arşivlenmiş Etkinlikler\",\"gKq1fa\":\"Tüm katılımcılar\",\"63gRoO\":\"Seçilen oturumların tüm katılımcıları\",\"uWxIoH\":\"Bu oturumun tüm katılımcıları\",\"pMLul+\":\"Tüm Para Birimleri\",\"sgUdRZ\":\"Tüm tarihler\",\"e4q4uO\":\"Tüm Tarihler\",\"ZS/D7f\":\"Tüm Sona Eren Etkinlikler\",\"QsYjci\":\"Tüm Etkinlikler\",\"31KB8w\":\"Tüm başarısız işler silindi\",\"D2g7C7\":\"Tüm işler yeniden deneme için sıraya alındı\",\"B4RFBk\":\"Eşleşen tüm tarihler\",\"F1/VgK\":\"Tüm oturumlar\",\"OpWjMq\":\"Tüm Oturumlar\",\"Sxm1lO\":\"Tüm Durumlar\",\"dr7CWq\":\"Tüm Yaklaşan Etkinlikler\",\"GpT6Uf\":\"Katılımcıların sipariş onayıyla gönderilen güvenli bir bağlantı üzerinden bilet bilgilerini (ad, e-posta) güncellemelerine izin verin.\",\"F3mW5G\":\"Bu ürün tükendiğinde müşterilerin bekleme listesine katılmasına izin ver\",\"c4uJfc\":\"Neredeyse bitti! Ödemenizin işlenmesini bekliyoruz. Bu sadece birkaç saniye sürmelidir.\",\"ocS8eq\":[\"Zaten hesabınız var mı? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Zaten içeride\",\"/H326L\":\"Zaten İade Edildi\",\"USEpOK\":\"Stripe'ı başka bir organizatörde mi kullanıyorsun? O bağlantıyı yeniden kullan.\",\"RtxQTF\":\"Bu siparişi de iptal et\",\"jkNgQR\":\"Bu siparişi de iade et\",\"xYqsHg\":\"Her zaman mevcut\",\"Wvrz79\":\"Ödenen Tutar\",\"Zkymb9\":\"Bu bağlı kuruluşla ilişkilendirilecek bir e-posta. Bağlı kuruluşa bildirim gitmeyecektir.\",\"vRznIT\":\"Dışa aktarma durumu kontrol edilirken bir hata oluştu.\",\"eusccx\":\"Vurgulanan üründe görüntülenecek isteğe bağlı bir mesaj, örn. \\\"Hızlı satılıyor 🔥\\\" veya \\\"En iyi değer\\\"\",\"5GJuNp\":[\"ve \",[\"0\"],\" tane daha...\"],\"QNrkms\":\"Cevap başarıyla güncellendi.\",\"+qygei\":\"Cevaplar\",\"GK7Lnt\":\"Ödeme sırasındaki cevaplar (ör. yemek seçimi)\",\"lE8PgT\":\"Manuel olarak özelleştirdiğiniz tüm tarihler korunacaktır.\",\"vP3Nzg\":[\"Bu sayfada şu anda yüklü olan \",[\"0\"],\", iptal edilmemiş tarihler için geçerlidir.\"],\"kkVyZZ\":\"Oturum açmadan bağlantıyı açan herkes için geçerlidir. Oturum açmış üyeler her zaman her şeyi görür.\",\"je4muG\":[\"Bu etkinlikteki şu anda yüklü olmayan tarihler dahil her \",[\"0\"],\", iptal edilmemiş tarih için geçerlidir.\"],\"YIIQtt\":\"Değişiklikleri Uygula\",\"NzWX1Y\":\"Şuna uygula\",\"Ps5oDT\":\"Tüm biletlere uygula\",\"261RBr\":\"Mesajı Onayla\",\"naCW6Z\":\"Nisan\",\"B495Gs\":\"Arşivle\",\"5sNliy\":\"Etkinliği Arşivle\",\"BrwnrJ\":\"Organizatörü Arşivle\",\"E5eghW\":\"Bu etkinliği halktan gizlemek için arşivleyin. Daha sonra geri yükleyebilirsiniz.\",\"eqFkeI\":\"Bu organizatörü arşivleyin. Bu, bu organizatöre ait tüm etkinlikleri de arşivleyecektir.\",\"BzcxWv\":\"Arşivlenen Organizatörler\",\"9cQBd6\":\"Bu etkinliği arşivlemek istediğinizden emin misiniz? Artık kamuya görünmeyecek.\",\"Trnl3E\":\"Bu organizatörü arşivlemek istediğinizden emin misiniz? Bu, bu organizatöre ait tüm etkinlikleri de arşivleyecektir.\",\"wOvn+e\":[[\"count\"],\" tarihi iptal etmek istediğinize emin misiniz? Etkilenen katılımcılar e-posta ile bilgilendirilecektir.\"],\"GTxE0U\":\"Bu tarihi iptal etmek istediğinize emin misiniz? Etkilenen katılımcılar e-posta ile bilgilendirilecektir.\",\"VkSk/i\":\"Bu zamanlanmış mesajı iptal etmek istediğinizden emin misiniz?\",\"0aVEBY\":\"Tüm başarısız işleri silmek istediğinizden emin misiniz?\",\"LchiNd\":\"Bu bağlı kuruluşu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.\",\"vPeW/6\":\"Bu yapılandırmayı silmek istediğinizden emin misiniz? Bu işlem, onu kullanan hesapları etkileyebilir.\",\"h42Hc/\":\"Bu tarihi silmek istediğinize emin misiniz? Bu işlem geri alınamaz.\",\"JmVITJ\":\"Bu şablonu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz ve e-postalar varsayılan şablona geri dönecektir.\",\"aLS+A6\":\"Bu şablonu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz ve e-postalar organizatör veya varsayılan şablona geri dönecektir.\",\"5H3Z78\":\"Bu webhook'u silmek istediğinizden emin misiniz?\",\"147G4h\":\"Ayrılmak istediğinizden emin misiniz?\",\"VDWChT\":\"Bu organizatörü taslak yapmak istediğinizden emin misiniz? Bu, organizatör sayfasını kamuya görünmez yapacaktır\",\"pWtQJM\":\"Bu organizatörü herkese açık yapmak istediğinizden emin misiniz? Bu, organizatör sayfasını kamuya görünür yapacaktır\",\"EOqL/A\":\"Bu kişiye bir yer teklif etmek istediğinizden emin misiniz? E-posta bildirimi alacaklardır.\",\"yAXqWW\":\"Bu tarihi kalıcı olarak silmek istediğinize emin misiniz? Bu işlem geri alınamaz.\",\"WFHOlF\":\"Bu etkinliği yayınlamak istediğinizden emin misiniz? Yayınlandığında herkese görünür olacaktır.\",\"4TNVdy\":\"Bu organizatör profilini yayınlamak istediğinizden emin misiniz? Yayınlandığında herkese görünür olacaktır.\",\"8x0pUg\":\"Bu kaydı bekleme listesinden kaldırmak istediğinizden emin misiniz?\",\"cDtoWq\":[[\"0\"],\" adresine sipariş onayını tekrar göndermek istediğinizden emin misiniz?\"],\"xeIaKw\":[[\"0\"],\" adresine bileti tekrar göndermek istediğinizden emin misiniz?\"],\"BjbocR\":\"Bu etkinliği geri yüklemek istediğinizden emin misiniz?\",\"7MjfcR\":\"Bu organizatörü geri yüklemek istediğinizden emin misiniz?\",\"ExDt3P\":\"Bu etkinliği yayından kaldırmak istediğinizden emin misiniz? Artık herkese görünür olmayacaktır.\",\"5Qmxo/\":\"Bu organizatör profilini yayından kaldırmak istediğinizden emin misiniz? Artık herkese görünür olmayacaktır.\",\"Uqefyd\":\"AB'de KDV kaydınız var mı?\",\"+QARA4\":\"Sanat\",\"tLf3yJ\":\"İşletmeniz İrlanda merkezli olduğundan, tüm platform ücretlerine otomatik olarak %23 İrlanda KDV'si uygulanır.\",\"tMeVa/\":\"Satın alınan her bilet için ad ve e-posta isteyin\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Plan ata\",\"xdiER7\":\"Atanan Seviye\",\"F2rX0R\":\"En az bir etkinlik türü seçilmelidir\",\"BCmibk\":\"Denemeler\",\"6PecK3\":\"Tüm etkinliklerdeki katılım ve giriş oranları\",\"K2tp3v\":\"katılımcı\",\"AJ4rvK\":\"Katılımcı İptal Edildi\",\"qvylEK\":\"Katılımcı Oluşturuldu\",\"Aspq3b\":\"Katılımcı bilgilerini toplama\",\"fpb0rX\":\"Katılımcı bilgileri siparişten kopyalandı\",\"0R3Y+9\":\"Katılımcı E-postası\",\"94aQMU\":\"Katılımcı Bilgileri\",\"KkrBiR\":\"Katılımcı bilgi toplama\",\"av+gjP\":\"Katılımcı Adı\",\"sjPjOg\":\"Katılımcı notları\",\"cosfD8\":\"Katılımcı Durumu\",\"D2qlBU\":\"Katılımcı Güncellendi\",\"22BOve\":\"Katılımcı başarıyla güncellendi\",\"x8Vnvf\":\"Katılımcının bileti bu listede yok\",\"/Ywywr\":\"katılımcı\",\"zLRobu\":\"katılımcı giriş yaptı\",\"k3Tngl\":\"Katılımcılar Dışa Aktarıldı\",\"UoIRW8\":\"Kayıtlı katılımcılar\",\"5UbY+B\":\"Belirli bir bilete sahip katılımcılar\",\"4HVzhV\":\"Katılımcılar:\",\"HVkhy2\":\"Atıf Analitiği\",\"dMMjeD\":\"Atıf Dağılımı\",\"1oPDuj\":\"Atıf Değeri\",\"DBHTm/\":\"Ağustos\",\"JgREph\":\"Otomatik teklif etkinleştirildi\",\"V7Tejz\":\"Bekleme listesini otomatik işle\",\"PZ7FTW\":\"Arka plan rengine göre otomatik olarak algılanır, ancak geçersiz kılınabilir\",\"zlnTuI\":\"Kapasite uygun olduğunda bir sonraki kişiye otomatik olarak bilet sun. Devre dışı bırakılırsa, bekleme listesini Bekleme Listesi sayfasından manuel olarak işleyebilirsiniz.\",\"csDS2L\":\"Mevcut\",\"clF06r\":\"İade Edilebilir\",\"NB5+UG\":\"Mevcut Token'lar\",\"L+wGOG\":\"Bekliyor\",\"qcw2OD\":\"Ödeme bekliyor\",\"kNmmvE\":\"Harika Etkinlikler Ltd.\",\"iH8pgl\":\"Geri\",\"TeSaQO\":\"Hesaplara Dön\",\"X7Q/iM\":\"Takvime geri dön\",\"kYqM1A\":\"Etkinliğe Dön\",\"s5QRF3\":\"Mesajlara geri dön\",\"td/bh+\":\"Raporlara Dön\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Temel Fiyat\",\"hviJef\":\"Tarih başına değil, yukarıdaki genel satış dönemine göre\",\"jIPNJG\":\"Temel Bilgiler\",\"UabgBd\":\"Gövde gerekli\",\"HWXuQK\":\"Siparişinizi istediğiniz zaman yönetmek için bu sayfayı yer imlerinize ekleyin.\",\"CUKVDt\":\"Biletlerinizi özel logo, renkler ve altbilgi mesajı ile markalayın.\",\"4BZj5p\":\"Yerleşik dolandırıcılık koruması\",\"cr7kGH\":\"Toplu Düzenle\",\"1Fbd6n\":\"Tarihleri Toplu Düzenle\",\"Eq6Tu9\":\"Toplu güncelleme başarısız oldu.\",\"9N+p+g\":\"İş\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"İşletme adı\",\"bv6RXK\":\"Düğme Etiketi\",\"ChDLlO\":\"Düğme Metni\",\"BUe8Wj\":\"Alıcı öder\",\"qF1qbA\":\"Alıcılar net bir fiyat görür. Platform ücreti ödemenizden düşülür.\",\"dg05rc\":\"Takip pikselleri ekleyerek, siz ve bu platformun toplanan verilerin ortak veri sorumluları olduğunuzu kabul edersiniz. Geçerli gizlilik yasaları (GDPR, CCPA vb.) kapsamında bu işleme için yasal bir dayanağınız olduğundan emin olmaktan siz sorumlusunuz.\",\"DFqasq\":[\"Devam ederek, <0>\",[\"0\"],\" Hizmet Koşullarını kabul etmiş olursunuz\"],\"wVSa+U\":\"Ayın gününe göre\",\"0MnNgi\":\"Haftanın gününe göre\",\"CetOZE\":\"Bilet türüne göre\",\"lFdbRS\":\"Uygulama Ücretlerini Atla\",\"AjVXBS\":\"Takvim\",\"alkXJ5\":\"Takvim görünümü\",\"2VLZwd\":\"Harekete Geçirici Düğme\",\"rT2cV+\":\"Kamera\",\"7hYa9y\":\"Kamera izni reddedildi. <0>Tekrar izin iste veya tarayıcı ayarlarından bu sayfaya kamera erişimi ver.\",\"D02dD9\":\"Kampanya\",\"RRPA79\":\"Giriş yapılamıyor\",\"OcVwAd\":[[\"count\"],\" tarihi iptal et\"],\"H4nE+E\":\"Tüm ürünleri iptal et ve havuza geri bırak\",\"Py78q9\":\"Tarihi İptal Et\",\"tOXAdc\":\"İptal etmek, bu siparişle ilişkili tüm katılımcıları iptal edecek ve biletleri mevcut havuza geri bırakacaktır.\",\"vev1Jl\":\"İptal\",\"Ha17hq\":[[\"0\"],\" tarih iptal edildi\"],\"01sEfm\":\"Sistem varsayılan yapılandırması silinemez\",\"VsM1HH\":\"Kapasite Atamaları\",\"9bIMVF\":\"Kapasite yönetimi\",\"H7K8og\":\"Kapasite 0 veya daha büyük olmalıdır\",\"nzao08\":\"kapasite güncellemeleri\",\"4cp9NP\":\"Kullanılan Kapasite\",\"K7tIrx\":\"Kategori\",\"o+XJ9D\":\"Değiştir\",\"kJkjoB\":\"Süreyi değiştir\",\"J0KExZ\":\"Katılımcı limitini değiştir\",\"CIHJJf\":\"Bekleme listesi ayarlarını değiştir\",\"B5icLR\":[[\"count\"],\" tarih için süre değiştirildi\"],\"Kb+0BT\":\"Tahsilatlar\",\"2tbLdK\":\"Hayır Kurumu\",\"BPWGKn\":\"Giriş yap\",\"6uFFoY\":\"Çıkış yap\",\"FjAlwK\":[\"Bu etkinliğe göz atın: \",[\"0\"]],\"v4fiSg\":\"E-postanızı kontrol edin\",\"51AsAN\":\"Gelen kutunuzu kontrol edin! Bu e-postayla ilişkili biletler varsa, bunları görüntülemek için bir bağlantı alacaksınız.\",\"Y3FYXy\":\"Giriş\",\"udRwQs\":\"Giriş Oluşturuldu\",\"F4SRy3\":\"Giriş Silindi\",\"as6XfO\":[[\"0\"],\" giriş işlemi geri alındı\"],\"9s/wrQ\":\"Check-in geçmişi\",\"Wwztk4\":\"Giriş Listesi\",\"9gPPUY\":\"Giriş Listesi Oluşturuldu\",\"dwjiJt\":\"Liste bilgisi\",\"7od0PV\":\"giriş listeleri\",\"f2vU9t\":\"Giriş Listeleri\",\"XprdTn\":\"Check-in gezinmesi\",\"5tV1in\":\"Check-in ilerlemesi\",\"SHJwyq\":\"Giriş Oranı\",\"qCqdg6\":\"Giriş Durumu\",\"cKj6OE\":\"Giriş Özeti\",\"7B5M35\":\"Girişler\",\"VrmydS\":\"Giriş yapıldı\",\"DM4gBB\":\"Çince (Geleneksel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Farklı bir işlem seçin\",\"fkb+y3\":\"Uygulamak için kayıtlı bir konum seçin.\",\"Zok1Gx\":\"Bir organizatör seçin\",\"pkk46Q\":\"Bir Organizatör Seçin\",\"Crr3pG\":\"Takvim seçin\",\"LAW8Vb\":\"Yeni etkinlikler için varsayılan ayarı seçin. Bu, bireysel etkinlikler için geçersiz kılınabilir.\",\"pjp2n5\":\"Platform ücretini kimin ödeyeceğini seçin. Bu, hesap ayarlarınızda yapılandırdığınız ek ücretleri etkilemez.\",\"xCJdfg\":\"Temizle\",\"QyOWu9\":\"Konumu temizle — etkinliğin varsayılanına geri dön\",\"V8yTm6\":\"Aramayı temizle\",\"kmnKnX\":\"Temizleme, oturuma özgü her türlü üzerine yazmayı kaldırır. Etkilenen oturumlar etkinliğin varsayılan konumuna geri döner.\",\"/o+aQX\":\"İptal etmek için tıklayın\",\"gD7WGV\":\"Yeni satışlara açmak için tıklayın\",\"CySr+W\":\"Notları görüntülemek için tıklayın\",\"RG3szS\":\"kapat\",\"RWw9Lg\":\"Pencereyi kapat\",\"XwdMMg\":\"Kod yalnızca harf, rakam, tire ve alt çizgi içerebilir\",\"+yMJb7\":\"Kod gerekli\",\"m9SD3V\":\"Kod en az 3 karakter olmalıdır\",\"V1krgP\":\"Kod en fazla 20 karakter olmalıdır\",\"psqIm5\":\"Birlikte harika etkinlikler oluşturmak için ekibinizle işbirliği yapın.\",\"4bUH9i\":\"Satın alınan her bilet için katılımcı bilgilerini toplayın.\",\"TkfG8v\":\"Sipariş başına bilgi toplayın\",\"96ryID\":\"Bilet başına bilgi toplayın\",\"FpsvqB\":\"Renk Modu\",\"jEu4bB\":\"Sütunlar\",\"CWk59I\":\"Komedi\",\"rPA+Gc\":\"İletişim Tercihleri\",\"zFT5rr\":\"tamamlandı\",\"bUQMpb\":\"Stripe kurulumunu tamamla\",\"744BMm\":\"Biletlerinizi güvence altına almak için siparişinizi tamamlayın. Bu teklif süre sınırlıdır, çok beklemeyin.\",\"5YrKW7\":\"Biletlerinizi güvence altına almak için ödemenizi tamamlayın.\",\"xGU92i\":\"Ekibe katılmak için profilinizi tamamlayın.\",\"QOhkyl\":\"Oluştur\",\"ih35UP\":\"Konferans Merkezi\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Yapılandırma atandı\",\"X1zdE7\":\"Yapılandırma başarıyla oluşturuldu\",\"mLBUMQ\":\"Yapılandırma başarıyla silindi\",\"UIENhw\":\"Yapılandırma adları son kullanıcılar tarafından görülebilir. Sabit ücretler mevcut döviz kuru üzerinden sipariş para birimine dönüştürülecektir.\",\"eeZdaB\":\"Yapılandırma başarıyla güncellendi\",\"3cKoxx\":\"Yapılandırmalar\",\"8v2LRU\":\"Etkinlik ayrıntılarını, konumu, ödeme seçeneklerini ve e-posta bildirimlerini yapılandırın.\",\"raw09+\":\"Ödeme sırasında katılımcı bilgilerinin nasıl toplanacağını yapılandırın\",\"FI60XC\":\"Vergi ve ücretleri yapılandır\",\"av6ukY\":\"Bu oturum için hangi ürünlerin mevcut olduğunu yapılandırın ve isteğe bağlı olarak fiyatlandırmayı ayarlayın.\",\"NGXKG/\":\"E-posta Adresini Onayla\",\"JRQitQ\":\"Yeni şifreyi onayla\",\"Auz0Mz\":\"Tüm özelliklere erişmek için e-postanızı onaylayın.\",\"7+grte\":\"Onay e-postası gönderildi! Lütfen gelen kutunuzu kontrol edin.\",\"n/7+7Q\":\"Onay gönderildi:\",\"x3wVFc\":\"Tebrikler! Etkinliğiniz artık herkese açık.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"E-posta şablon düzenlemesini etkinleştirmek için Stripe'ı bağlayın\",\"LmvZ+E\":\"Mesajlaşmayı etkinleştirmek için Stripe'ı bağlayın\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"İletişim\",\"LOFgda\":[[\"0\"],\" ile İletişime Geç\"],\"41BQ3k\":\"İletişim E-postası\",\"KcXRN+\":\"Destek için iletişim e-postası\",\"m8WD6t\":\"Kuruluma Devam Et\",\"0GwUT4\":\"Ödemeye Devam Et\",\"sBV87H\":\"Etkinlik oluşturmaya devam et\",\"nKtyYu\":\"Sonraki adıma devam et\",\"F3/nus\":\"Ödemeye Devam Et\",\"p2FRHj\":\"Bu etkinlik için platform ücretlerinin nasıl ele alınacağını kontrol edin\",\"NqfabH\":\"Bu tarih için kimin gireceğini kontrol edin\",\"fmYxZx\":\"Kim ne zaman girer\",\"1JnTgU\":\"Yukarıdan kopyalandı\",\"FxVG/l\":\"Panoya kopyalandı\",\"PiH3UR\":\"Kopyalandı!\",\"4i7smN\":\"Hesap kimliğini kopyala\",\"uUPbPg\":\"Bağlı Kuruluş Bağlantısını Kopyala\",\"iVm46+\":\"Kodu Kopyala\",\"cF2ICc\":\"Müşteri bağlantısını kopyala\",\"+2ZJ7N\":\"Bilgileri ilk katılımcıya kopyala\",\"ZN1WLO\":\"E-postayı Kopyala\",\"y1eoq1\":\"Bağlantıyı kopyala\",\"tUGbi8\":\"Bilgilerimi kopyala:\",\"y22tv0\":\"Her yerde paylaşmak için bu bağlantıyı kopyalayın\",\"/4gGIX\":\"Panoya kopyala\",\"e0f4yB\":\"Konum silinemedi\",\"vkiDx2\":\"Toplu güncelleme hazırlanamadı.\",\"KOavaU\":\"Adres bilgileri alınamadı\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Tarih kaydedilemedi\",\"eeLExK\":\"Konum kaydedilemedi\",\"P0rbCt\":\"Kapak Görseli\",\"60u+dQ\":\"Kapak görseli etkinlik sayfanızın üstünde gösterilecektir\",\"2NLjA6\":\"Kapak görseli organizatör sayfanızın üstünde gösterilecektir\",\"GkrqoY\":\"Tüm biletleri kapsar\",\"zg4oSu\":[[\"0\"],\" Şablonu Oluştur\"],\"RKKhnW\":\"Sitenizde bilet satmak için özel bir widget oluşturun.\",\"6sk7PP\":\"Sabit sayı oluştur\",\"PhioFp\":\"Aktif bir oturum için yeni bir giriş listesi oluşturun veya bunun bir hata olduğunu düşünüyorsanız organizatörle iletişime geçin.\",\"yIRev4\":\"Bir şifre oluşturun\",\"j7xZ7J\":\"Tek bir hesap altında ayrı markalar, departmanlar veya etkinlik serileri yönetmek için ek organizatörler oluşturun. Her organizatörün kendi etkinlikleri, ayarları ve herkese açık sayfası vardır.\",\"xfKgwv\":\"Bağlı Kuruluş Oluştur\",\"tudG8q\":\"Satış için bilet ve ürünler oluşturup yapılandırın.\",\"YAl9Hg\":\"Yapılandırma Oluştur\",\"BTne9e\":\"Organizatör varsayılanlarını geçersiz kılan bu etkinlik için özel e-posta şablonları oluşturun\",\"YIDzi/\":\"Özel Şablon Oluştur\",\"tsGqx5\":\"Tarih Oluştur\",\"Nc3l/D\":\"İndirimler, gizli biletler için erişim kodları ve özel teklifler oluşturun.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Bu tarih için oluştur\",\"eWEV9G\":\"Yeni şifre oluştur\",\"wl2iai\":\"Program Oluştur\",\"8AiKIu\":\"Bilet veya Ürün Oluştur\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Etkinliğinizi tanıtan ortakları ödüllendirmek için izlenebilir bağlantılar oluşturun.\",\"dkAPxi\":\"Webhook Oluştur\",\"5slqwZ\":\"Etkinliğinizi Oluşturun\",\"JQNMrj\":\"İlk etkinliğinizi oluşturun\",\"ZCSSd+\":\"Kendi etkinliğinizi oluşturun\",\"67NsZP\":\"Etkinlik Oluşturuluyor...\",\"H34qcM\":\"Organizatör Oluşturuluyor...\",\"1YMS+X\":\"Etkinliğiniz oluşturuluyor, lütfen bekleyin\",\"yiy8Jt\":\"Organizatör profiliniz oluşturuluyor, lütfen bekleyin\",\"lfLHNz\":\"Harekete geçirici düğme etiketi gerekli\",\"0xLR6W\":\"Şu anda atanmış\",\"iTvh6I\":\"Şu anda satın alınabilir\",\"A42Dqn\":\"Özel markalama\",\"Guo0lU\":\"Özel tarih ve saat\",\"mimF6c\":\"Ödeme sonrası özel mesaj\",\"WDMdn8\":\"Özel sorular\",\"O6mra8\":\"Özel Sorular\",\"axv/Mi\":\"Özel şablon\",\"2YeVGY\":\"Müşteri bağlantısı panoya kopyalandı\",\"QMHSMS\":\"Müşteri iade onayını içeren bir e-posta alacaktır\",\"L/Qc+w\":\"Müşterinin e-posta adresi\",\"wpfWhJ\":\"Müşterinin adı\",\"GIoqtA\":\"Müşterinin soyadı\",\"NihQNk\":\"Müşteriler\",\"7gsjkI\":\"Liquid şablonu kullanarak müşterilerinize gönderilen e-postaları özelleştirin. Bu şablonlar kuruluşunuzdaki tüm etkinlikler için varsayılan olarak kullanılacaktır.\",\"xJaTUK\":\"Etkinlik ana sayfanızın düzenini, renklerini ve markalamasını özelleştirin.\",\"MXZfGN\":\"Katılımcılarınızdan önemli bilgiler toplamak için ödeme sırasında sorulan soruları özelleştirin.\",\"iX6SLo\":\"Devam düğmesinde gösterilen metni özelleştirin\",\"pxNIxa\":\"Liquid şablonu kullanarak e-posta şablonunuzu özelleştirin\",\"3trPKm\":\"Organizatör sayfanızın görünümünü özelleştirin\",\"U0sC6H\":\"Günlük\",\"/gWrVZ\":\"Tüm etkinliklerdeki günlük gelir, vergiler, ücretler ve iadeler\",\"zgCHnE\":\"Günlük Satış Raporu\",\"nHm0AI\":\"Günlük satış, vergi ve ücret dökümü\",\"1aPnDT\":\"Dans\",\"pvnfJD\":\"Koyu\",\"MaB9wW\":\"Tarih İptali\",\"e6cAxJ\":\"Tarih iptal edildi\",\"81jBnC\":\"Tarih başarıyla iptal edildi\",\"a/C/6R\":\"Tarih başarıyla oluşturuldu\",\"IW7Q+u\":\"Tarih silindi\",\"rngCAz\":\"Tarih başarıyla silindi\",\"lnYE59\":\"Etkinlik tarihi\",\"gnBreG\":\"Siparişin verildiği tarih\",\"vHbfoQ\":\"Tarih yeniden etkinleştirildi\",\"hvah+S\":\"Tarih yeni satışlara yeniden açıldı\",\"Ez0YsD\":\"Tarih başarıyla güncellendi\",\"VTsZuy\":\"Tarihler ve saatler şurada yönetilir:\",\"/ITcnz\":\"gün\",\"H7OUPr\":\"Gün\",\"JtHrX9\":\"Ayın Günü\",\"J/Upwb\":\"gün\",\"vDVA2I\":\"Ayın Günleri\",\"rDLvlL\":\"Haftanın Günleri\",\"r6zgGo\":\"Aralık\",\"jbq7j2\":\"Reddet\",\"ovBPCi\":\"Varsayılan\",\"JtI4vj\":\"Varsayılan katılımcı bilgi toplama\",\"ULjv90\":\"Tarih başına varsayılan kapasite\",\"3R/Tu2\":\"Varsayılan ücret işleme\",\"1bZAZA\":\"Varsayılan şablon kullanılacak\",\"HNlEFZ\":\"sil\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Seçili \",[\"count\"],\" tarih silinsin mi? Siparişi olan tarihler atlanacaktır. Bu işlem geri alınamaz.\"],\"vu7gDm\":\"Bağlı Kuruluşu Sil\",\"KZN4Lc\":\"Tümünü sil\",\"6EkaOO\":\"Tarihi Sil\",\"io0G93\":\"Etkinliği Sil\",\"+jw/c1\":\"Görseli sil\",\"hdyeZ0\":\"İşi sil\",\"xxjZeP\":\"Konumu sil\",\"sY3tIw\":\"Organizatörü Sil\",\"UBv8UK\":\"Kalıcı Olarak Sil\",\"dPyJ15\":\"Şablonu Sil\",\"mxsm1o\":\"Bu soruyu sil? Bu işlem geri alınamaz.\",\"snMaH4\":\"Webhook'u sil\",\"LIZZLY\":[[\"0\"],\" tarih silindi\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Tümünün Seçimini Kaldır\",\"NvuEhl\":\"Tasarım Öğeleri\",\"H8kMHT\":\"Kodu almadınız mı?\",\"G8KNgd\":\"Farklı konum\",\"E/QGRL\":\"Devre dışı\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Bu mesajı kapat\",\"BREO0S\":\"Müşterilerin bu etkinlik organizatöründen pazarlama iletişimi almayı kabul etmelerini sağlayan bir onay kutusu göster.\",\"pfa8F0\":\"Görünen ad\",\"Kdpf90\":\"Unutmayın!\",\"352VU2\":\"Hesabınız yok mu? <0>Kaydolun\",\"AXXqG+\":\"Bağış\",\"DPfwMq\":\"Tamam\",\"JoPiZ2\":\"Kapı personeli talimatları\",\"2+O9st\":\"Tamamlanan tüm siparişler için satış, katılımcı ve mali raporları indirin.\",\"eneWvv\":\"Taslak\",\"Ts8hhq\":\"Yüksek spam riski nedeniyle, e-posta şablonlarını değiştirmeden önce bir Stripe hesabı bağlamanız gerekir. Bu, tüm etkinlik organizatörlerinin doğrulanmış ve sorumlu olmasını sağlamak içindir.\",\"TnzbL+\":\"Yüksek spam riski nedeniyle, katılımcılara mesaj gönderebilmeniz için bir Stripe hesabı bağlamanız gerekir.\\nBu, tüm etkinlik organizatörlerinin doğrulanmış ve sorumlu olmasını sağlamak içindir.\",\"euc6Ns\":\"Çoğalt\",\"YueC+F\":\"Tarihi Çoğalt\",\"KRmTkx\":\"Ürünü Çoğalt\",\"Jd3ymG\":\"Süre en az 1 dakika olmalıdır.\",\"KIjvtr\":\"Felemenkçe\",\"22xieU\":\"ör. 180 (3 saat)\",\"/zajIE\":\"örn. Sabah Oturumu\",\"SPKbfM\":\"örn., Bilet Al, Şimdi Kaydol\",\"fc7wGW\":\"örn., Biletleriniz hakkında önemli güncelleme\",\"54MPqC\":\"örn., Standart, Premium, Kurumsal\",\"3RQ81z\":\"Her kişi, satın alma işlemini tamamlamak için ayrılmış bir yer içeren bir e-posta alacaktır.\",\"5oD9f/\":\"Daha önce\",\"LTzmgK\":[[\"0\"],\" Şablonunu Düzenle\"],\"v4+lcZ\":\"Bağlı Kuruluşu Düzenle\",\"2iZEz7\":\"Cevabı Düzenle\",\"t2bbp8\":\"Katılımcıyı düzenle\",\"etaWtB\":\"Katılımcı Detaylarını Düzenle\",\"+guao5\":\"Yapılandırmayı Düzenle\",\"1Mp/A4\":\"Tarihi Düzenle\",\"m0ZqOT\":\"Konumu düzenle\",\"8oivFT\":\"Konumu Düzenle\",\"vRWOrM\":\"Sipariş Detaylarını Düzenle\",\"fW5sSv\":\"Webhook'u düzenle\",\"nP7CdQ\":\"Webhook'u Düzenle\",\"MRZxAn\":\"Düzenlendi\",\"uBAxNB\":\"Düzenleyici\",\"aqxYLv\":\"Eğitim\",\"iiWXDL\":\"Uygunluk Hataları\",\"zPiC+q\":\"Uygun Giriş Listeleri\",\"SiVstt\":\"E-posta ve zamanlanmış mesajlar\",\"V2sk3H\":\"E-posta ve Şablonlar\",\"hbwCKE\":\"E-posta adresi panoya kopyalandı\",\"dSyJj6\":\"E-posta adresleri eşleşmiyor\",\"elW7Tn\":\"E-posta Gövdesi\",\"ZsZeV2\":\"E-posta gerekli\",\"Be4gD+\":\"E-posta Önizlemesi\",\"6IwNUc\":\"E-posta Şablonları\",\"H/UMUG\":\"E-posta Doğrulaması Gerekli\",\"L86zy2\":\"E-posta başarıyla doğrulandı!\",\"FSN4TS\":\"Widget yerleştir\",\"z9NkYY\":\"Yerleştirilebilir widget\",\"Qj0GKe\":\"Katılımcı self-servisini etkinleştir\",\"hEtQsg\":\"Katılımcı self-servisini varsayılan olarak etkinleştir\",\"Upeg/u\":\"E-posta göndermek için bu şablonu etkinleştirin\",\"7dSOhU\":\"Bekleme listesini etkinleştir\",\"RxzN1M\":\"Etkin\",\"xDr/ct\":\"Bitiş\",\"sGjBEq\":\"Bitiş Tarihi ve Saati (isteğe bağlı)\",\"PKXt9R\":\"Bitiş tarihi başlangıç tarihinden sonra olmalıdır\",\"UmzbPa\":\"Oturumun bitiş tarihi\",\"ZayGC7\":\"Bir tarihte bitir\",\"48Y16Q\":\"Bitiş saati (isteğe bağlı)\",\"jpNdOC\":\"Oturumun bitiş saati\",\"TbaYrr\":[[\"0\"],\" sona erdi\"],\"CFgwiw\":[[\"0\"],\" bitiyor\"],\"SqOIQU\":\"Bir kapasite değeri girin veya sınırsızı seçin.\",\"h37gRz\":\"Bir etiket girin veya kaldırmayı seçin.\",\"7YZofi\":\"Önizlemeyi görmek için bir konu ve gövde girin\",\"khyScF\":\"Kaydırılacak süreyi girin.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Bağlı kuruluş e-postasını girin (isteğe bağlı)\",\"ARkzso\":\"Bağlı kuruluş adını girin\",\"ej4L8b\":\"Kapasite girin\",\"6KnyG0\":\"E-posta girin\",\"INDKM9\":\"E-posta konusunu girin...\",\"xUgUTh\":\"Ad girin\",\"9/1YKL\":\"Soyad girin\",\"VpwcSk\":\"Yeni şifreyi girin\",\"kWg31j\":\"Benzersiz bağlı kuruluş kodunu girin\",\"C3nD/1\":\"E-postanızı girin\",\"VmXiz4\":\"E-postanızı girin, şifrenizi sıfırlamak için size talimatlar gönderelim.\",\"n9V+ps\":\"Adınızı girin\",\"IdULhL\":\"Ülke kodu dahil KDV numaranızı boşluksuz girin (örn., TR1234567890, DE123456789)\",\"o21Y+P\":\"kayıt\",\"X88/6w\":\"Müşteriler tükenmiş ürünler için bekleme listesine katıldığında kayıtlar burada görünecektir.\",\"LslKhj\":\"Günlükler yüklenirken hata oluştu\",\"VCNHvW\":\"Etkinlik Arşivlendi\",\"ZD0XSb\":\"Etkinlik başarıyla arşivlendi\",\"WgD6rb\":\"Etkinlik Kategorisi\",\"b46pt5\":\"Etkinlik Kapak Görseli\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Etkinlik Oluşturuldu\",\"1Hzev4\":\"Etkinlik özel şablonu\",\"7u9/DO\":\"Etkinlik başarıyla silindi\",\"imgKgl\":\"Etkinlik Açıklaması\",\"kJDmsI\":\"Etkinlik detayları\",\"m/N7Zq\":\"Etkinlik Tam Adresi\",\"Nl1ZtM\":\"Etkinlik Konumu\",\"PYs3rP\":\"Etkinlik adı\",\"HhwcTQ\":\"Etkinlik Adı\",\"WZZzB6\":\"Etkinlik adı gerekli\",\"Wd5CDM\":\"Etkinlik adı 150 karakterden az olmalıdır\",\"4JzCvP\":\"Etkinlik Mevcut Değil\",\"Gh9Oqb\":\"Etkinlik organizatör adı\",\"mImacG\":\"Etkinlik Sayfası\",\"Hk9Ki/\":\"Etkinlik başarıyla geri yüklendi\",\"JyD0LH\":\"Etkinlik ayarları\",\"cOePZk\":\"Etkinlik Saati\",\"e8WNln\":\"Etkinlik saat dilimi\",\"GeqWgj\":\"Etkinlik Saat Dilimi\",\"XVLu2v\":\"Etkinlik Başlığı\",\"OfmsI9\":\"Etkinlik Çok Yeni\",\"4SILkp\":\"Etkinlik toplamları\",\"YDVUVl\":\"Etkinlik Türleri\",\"+HeiVx\":\"Etkinlik Güncellendi\",\"4K2OjV\":\"Etkinlik Mekanı\",\"19j6uh\":\"Etkinlik Performansı\",\"PC3/fk\":\"Önümüzdeki 24 Saat İçinde Başlayan Etkinlikler\",\"nwiZdc\":[\"Her \",[\"0\"]],\"2LJU4o\":[\"Her \",[\"0\"],\" günde bir\"],\"yLiYx+\":[\"Her \",[\"0\"],\" ayda bir\"],\"nn9ice\":[\"Her \",[\"0\"],\" haftada bir\"],\"Cdr8f9\":[\"Her \",[\"0\"],\" haftada bir \",[\"1\"],\" günü\"],\"GVEHRk\":[\"Her \",[\"0\"],\" yılda bir\"],\"fTFfOK\":\"Her e-posta şablonu uygun sayfaya bağlanan bir harekete geçirici düğme içermelidir\",\"BVinvJ\":\"Örnekler: \\\"Bizi nasıl duydunuz?\\\", \\\"Fatura için şirket adı\\\"\",\"2hGPQG\":\"Örnekler: \\\"Tişört bedeni\\\", \\\"Yemek tercihi\\\", \\\"Meslek unvanı\\\"\",\"qNuTh3\":\"İstisna\",\"M1RnFv\":\"Süresi dolmuş\",\"kF8HQ7\":\"Cevapları Dışa Aktar\",\"2KAI4N\":\"CSV Dışa Aktar\",\"JKfSAv\":\"Dışa aktarma başarısız oldu. Lütfen tekrar deneyin.\",\"SVOEsu\":\"Dışa aktarma başladı. Dosya hazırlanıyor...\",\"wuyaZh\":\"Dışa aktarma başarılı\",\"9bpUSo\":\"Bağlı Kuruluşlar Dışa Aktarılıyor\",\"jtrqH9\":\"Katılımcılar Dışa Aktarılıyor\",\"R4Oqr8\":\"Dışa aktarma tamamlandı. Dosya indiriliyor...\",\"UlAK8E\":\"Siparişler Dışa Aktarılıyor\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Başarısız\",\"8uOlgz\":\"Başarısız oldu\",\"tKcbYd\":\"Başarısız işler\",\"SsI9v/\":\"Sipariş terk edilemedi. Lütfen tekrar deneyin.\",\"LdPKPR\":\"Yapılandırma atanamadı\",\"PO0cfn\":\"Tarih iptal edilemedi\",\"YUX+f+\":\"Tarihler iptal edilemedi\",\"SIHgVQ\":\"Mesaj iptal edilemedi\",\"cEFg3R\":\"Bağlı kuruluş oluşturulamadı\",\"dVgNF1\":\"Yapılandırma oluşturulamadı\",\"fAoRRJ\":\"Program oluşturulamadı\",\"U66oUa\":\"Şablon oluşturulamadı\",\"aFk48v\":\"Yapılandırma silinemedi\",\"n1CYMH\":\"Tarih silinemedi\",\"KXv+Qn\":\"Tarih silinemedi. Mevcut siparişleri olabilir.\",\"JJ0uRo\":\"Tarihler silinemedi\",\"rgoBnv\":\"Etkinlik silinemedi\",\"Zw6LWb\":\"İş silinemedi\",\"tq0abZ\":\"İşler silinemedi\",\"2mkc3c\":\"Organizatör silinemedi\",\"vKMKnu\":\"Soru silinemedi\",\"xFj7Yj\":\"Şablon silinemedi\",\"jo3Gm6\":\"Bağlı kuruluşlar dışa aktarılamadı\",\"Jjw03p\":\"Katılımcılar dışa aktarılamadı\",\"ZPwFnN\":\"Siparişler dışa aktarılamadı\",\"zGE3CH\":\"Rapor dışa aktarılamadı. Lütfen tekrar deneyin.\",\"lS9/aZ\":\"Alıcılar yüklenemedi\",\"X4o0MX\":\"Webhook yüklenemedi\",\"ETcU7q\":\"Yer teklif edilemedi\",\"5670b9\":\"Bilet teklifi başarısız oldu\",\"e5KIbI\":\"Tarih yeniden etkinleştirilemedi\",\"7zyx8a\":\"Bekleme listesinden kaldırılamadı\",\"A/P7PX\":\"Geçersiz kılma kaldırılamadı\",\"ogWc1z\":\"Tarih yeniden açılamadı\",\"0+iwE5\":\"Sorular yeniden sıralanamadı\",\"EJPAcd\":\"Sipariş onayı yeniden gönderilemedi\",\"DjSbj3\":\"Bilet yeniden gönderilemedi\",\"YQ3QSS\":\"Doğrulama kodu yeniden gönderilemedi\",\"wDioLj\":\"İş yeniden denenemedi\",\"DKYTWG\":\"İşler yeniden denenemedi\",\"WRREqF\":\"Geçersiz kılma kaydedilemedi\",\"sj/eZA\":\"Fiyat geçersiz kılması kaydedilemedi\",\"780n8A\":\"Ürün ayarları kaydedilemedi\",\"zTkTF3\":\"Şablon kaydedilemedi\",\"l6acRV\":\"KDV ayarları kaydedilemedi. Lütfen tekrar deneyin.\",\"T6B2gk\":\"Mesaj gönderilemedi. Lütfen tekrar deneyin.\",\"lKh069\":\"Dışa aktarma işi başlatılamadı\",\"t/KVOk\":\"Taklit başlatılamadı. Lütfen tekrar deneyin.\",\"QXgjH0\":\"Taklit durdurulamadı. Lütfen tekrar deneyin.\",\"i0QKrm\":\"Bağlı kuruluş güncellenemedi\",\"NNc33d\":\"Cevap güncellenemedi.\",\"E9jY+o\":\"Katılımcı güncellenemedi\",\"uQynyf\":\"Yapılandırma güncellenemedi\",\"i2PFQJ\":\"Etkinlik durumu güncellenemedi\",\"EhlbcI\":\"Mesajlaşma seviyesi güncellenemedi\",\"rpGMzC\":\"Sipariş güncellenemedi\",\"T2aCOV\":\"Organizatör durumu güncellenemedi\",\"Eeo/Gy\":\"Ayar güncellenemedi\",\"kqA9lY\":\"KDV ayarları güncellenemedi\",\"7/9RFs\":\"Görsel yüklenemedi.\",\"nkNfWu\":\"Görsel yüklenemedi. Lütfen tekrar deneyin.\",\"rxy0tG\":\"E-posta doğrulanamadı\",\"QRUpCk\":\"Aile\",\"5LO38w\":\"Bankana hızlı ödemeler\",\"4lgLew\":\"Şubat\",\"9bHCo2\":\"Ücret Para Birimi\",\"/sV91a\":\"Ücret işleme\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Ücretler Atlandı\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Dosya çok büyük. Maksimum boyut 5MB'dir.\",\"VejKUM\":\"Önce yukarıdaki bilgilerinizi doldurun\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Katılımcıları filtrele\",\"8OvVZZ\":\"Katılımcıları Filtrele\",\"N/H3++\":\"Tarihe göre filtrele\",\"mvrlBO\":\"Etkinliğe göre filtrele\",\"g+xRXP\":\"Stripe kurulumunu bitir\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"İlk\",\"1vBhpG\":\"İlk katılımcı\",\"4pwejF\":\"Ad gereklidir\",\"3lkYdQ\":\"Sabit ücret\",\"6bBh3/\":\"Sabit Ücret\",\"zWqUyJ\":\"İşlem başına sabit ücret\",\"LWL3Bs\":\"Sabit ücret 0 veya daha büyük olmalıdır\",\"0RI8m4\":\"Flaş kapalı\",\"q0923e\":\"Flaş açık\",\"lWxAUo\":\"Yiyecek ve İçecek\",\"nFm+5u\":\"Alt Bilgi Metni\",\"a8nooQ\":\"Dördüncü\",\"mob/am\":\"Cu\",\"wtuVU4\":\"Sıklık\",\"xVhQZV\":\"Cum\",\"39y5bn\":\"Cuma\",\"f5UbZ0\":\"Tam veri sahipliği\",\"MY2SVM\":\"Tam iade\",\"UsIfa8\":\"Tam çözümlenmiş adres\",\"PGQLdy\":\"gelecek\",\"8N/j1s\":\"Yalnızca gelecek tarihler\",\"yRx/6K\":\"Gelecek tarihler, kapasite sıfırlanmış olarak kopyalanacak\",\"T02gNN\":\"Genel Giriş\",\"3ep0Gx\":\"Organizatörünüz hakkında genel bilgiler\",\"ziAjHi\":\"Oluştur\",\"exy8uo\":\"Kod oluştur\",\"4CETZY\":\"Yol Tarifi Al\",\"pjkEcB\":\"Ödeme Al\",\"lGYzP6\":\"Stripe ile ödeme al\",\"ZDIydz\":\"Başlayın\",\"u6FPxT\":\"Bilet Al\",\"8KDgYV\":\"Etkinliğinizi hazırlayın\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Geri Dön\",\"oNL5vN\":\"Etkinlik Sayfasına Git\",\"gHSuV/\":\"Ana sayfaya git\",\"8+Cj55\":\"Programa Git\",\"6nDzTl\":\"İyi okunabilirlik\",\"76gPWk\":\"Anladım\",\"aGWZUr\":\"Brüt gelir\",\"n8IUs7\":\"Brüt Gelir\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Misafir yönetimi\",\"NUsTc4\":\"Şu anda gerçekleşiyor\",\"kTSQej\":[\"Merhaba \",[\"0\"],\", platformunuzu buradan yönetin.\"],\"dORAcs\":\"E-posta adresinizle ilişkili tüm biletler burada.\",\"g+2103\":\"Bağlı kuruluş bağlantınız burada\",\"bVsnqU\":\"Merhaba,\",\"/iE8xx\":\"Hi.Events Ücreti\",\"zppscQ\":\"Hi.Events platform ücretleri ve işlem bazında KDV dökümü\",\"D+zLDD\":\"Gizli\",\"DRErHC\":\"Katılımcılardan gizli - sadece organizatörler tarafından görülebilir\",\"NNnsM0\":\"Gelişmiş seçenekleri gizle\",\"P+5Pbo\":\"Cevapları Gizle\",\"VMlRqi\":\"Ayrıntıları gizle\",\"FmogyU\":\"Seçenekleri Gizle\",\"gtEbeW\":\"Vurgula\",\"NF8sdv\":\"Vurgu Mesajı\",\"MXSqmS\":\"Bu ürünü vurgula\",\"7ER2sc\":\"Vurgulandı\",\"sq7vjE\":\"Vurgulanan ürünler, etkinlik sayfasında öne çıkmaları için farklı bir arka plan rengine sahip olacaktır.\",\"1+WSY1\":\"Hobiler\",\"yY8wAv\":\"Saat\",\"sy9anN\":\"Bir müşterinin teklif aldıktan sonra satın almayı tamamlaması gereken süre. Zaman aşımı olmaması için boş bırakın.\",\"n2ilNh\":\"Program ne kadar sürüyor?\",\"DMr2XN\":\"Ne sıklıkta?\",\"AVpmAa\":\"Çevrimdışı nasıl ödeme yapılır\",\"cceMns\":\"Size uyguladığımız platform ücretlerine KDV nasıl uygulanır.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Macarca\",\"8Wgd41\":\"Veri sorumlusu olarak sorumluluklarımı kabul ediyorum\",\"O8m7VA\":\"Bu etkinlikle ilgili e-posta bildirimleri almayı kabul ediyorum\",\"YLgdk5\":\"Bunun bu etkinlikle ilgili işlemsel bir mesaj olduğunu onaylıyorum\",\"4/kP5a\":\"Yeni bir sekme otomatik olarak açılmadıysa, ödemeye devam etmek için lütfen aşağıdaki düğmeyi tıklayın.\",\"W/eN+G\":\"Boş bırakılırsa, adres bir Google Haritalar bağlantısı oluşturmak için kullanılacaktır\",\"iIEaNB\":\"Bizimle bir hesabınız varsa, şifrenizi nasıl sıfırlayacağınıza dair talimatlar içeren bir e-posta alacaksınız.\",\"an5hVd\":\"Görseller\",\"tSVr6t\":\"Taklit Et\",\"TWXU0c\":\"Kullanıcıyı Taklit Et\",\"5LAZwq\":\"Taklit başlatıldı\",\"IMwcdR\":\"Taklit durduruldu\",\"0I0Hac\":\"Önemli Uyarı\",\"yD3avI\":\"Önemli: E-posta adresinizi değiştirmek, bu siparişe erişim bağlantısını güncelleyecektir. Kaydettikten sonra yeni sipariş bağlantısına yönlendirileceksiniz.\",\"jT142F\":[[\"diffHours\"],\" saat içinde\"],\"OoSyqO\":[[\"diffMinutes\"],\" dakika içinde\"],\"PdMhEx\":[\"son \",[\"0\"],\" dakikada\"],\"u7r0G5\":\"Yüz yüze — bir mekân belirleyin\",\"Ip0hl5\":\"yüz yüze, çevrimiçi, ayarlanmamış veya karma\",\"F1Xp97\":\"Bireysel katılımcılar\",\"85e6zs\":\"Liquid Token Ekle\",\"38KFY0\":\"Değişken Ekle\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Anında Stripe ödemeleri\",\"nbfdhU\":\"Entegrasyonlar\",\"I8eJ6/\":\"Katılımcı biletindeki dahili notlar\",\"B2Tpo0\":\"Geçersiz e-posta\",\"5tT0+u\":\"Geçersiz e-posta formatı\",\"f9WRpE\":\"Geçersiz dosya türü. Lütfen bir resim yükleyin.\",\"tnL+GP\":\"Geçersiz Liquid sözdizimi. Lütfen düzeltin ve tekrar deneyin.\",\"N9JsFT\":\"Geçersiz KDV numarası formatı\",\"g+lLS9\":\"Bir ekip üyesi davet et\",\"1z26sk\":\"Ekip Üyesi Davet Et\",\"KR0679\":\"Ekip Üyelerini Davet Et\",\"aH6ZIb\":\"Ekibinizi Davet Edin\",\"IuMGvq\":\"Fatura\",\"Lj7sBL\":\"İtalyanca\",\"F5/CBH\":\"ürün\",\"BzfzPK\":\"Ürünler\",\"rjyWPb\":\"Ocak\",\"KmWyx0\":\"İş\",\"o5r6b2\":\"İş silindi\",\"cd0jIM\":\"İş detayları\",\"ruJO57\":\"İş adı\",\"YZi+Hu\":\"İş yeniden deneme için sıraya alındı\",\"nCywLA\":\"Her yerden katılın\",\"SNzppu\":\"Bekleme listesine katıl\",\"dLouFI\":[[\"productDisplayName\"],\" için Bekleme Listesine Katıl\"],\"2gMuHR\":\"Katıldı\",\"u4ex5r\":\"Temmuz\",\"zeEQd/\":\"Haziran\",\"MxjCqk\":\"Sadece biletlerinizi mi arıyorsunuz?\",\"xOTzt5\":\"az önce\",\"0RihU9\":\"Az önce sona erdi\",\"lB2hSG\":[[\"0\"],\" adresinden haberler ve etkinlikler hakkında beni bilgilendirin\"],\"ioFA9i\":\"Kârı koruyun.\",\"4Sffp7\":\"Oturum için etiket\",\"o66QSP\":\"etiket güncellemeleri\",\"RtKKbA\":\"Son\",\"DruLRc\":\"Son 14 Gün\",\"ve9JTU\":\"Soyad gereklidir\",\"h0Q9Iw\":\"Son Yanıt\",\"gw3Ur5\":\"Son Tetiklenme\",\"FIq1Ba\":\"Daha sonra\",\"xvnLMP\":\"Son check-in'ler\",\"pzAivY\":\"Çözümlenmiş konumun enlemi\",\"N5TErv\":\"Sınırsız için boş bırakın\",\"L/hDDD\":\"Bu giriş listesini tüm oturumlara uygulamak için boş bırakın\",\"9Pf3wk\":\"Etkinlikteki tüm biletleri kapsayacak şekilde açık bırakın. Belirli biletleri seçmek için kapatın.\",\"Hq2BzX\":\"Onlara değişikliği bildirin\",\"+uexiy\":\"Onlara değişiklikleri bildirin\",\"exYcTF\":\"Kütüphane\",\"1njn7W\":\"Açık\",\"1qY5Ue\":\"Bağlantı Süresi Doldu veya Geçersiz\",\"+zSD/o\":\"Etkinlik ana sayfasına bağlantı\",\"psosdY\":\"Sipariş detaylarına bağlantı\",\"6JzK4N\":\"Bilete bağlantı\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Bağlantılara İzin Verildi\",\"2BBAbc\":\"Liste\",\"5NZpX8\":\"Liste görünümü\",\"dF6vP6\":\"Canlı\",\"fpMs2Z\":\"CANLI\",\"D9zTjx\":\"Canlı Etkinlikler\",\"C33p4q\":\"Yüklenmiş tarihler\",\"WdmJIX\":\"Önizleme yükleniyor...\",\"IoDI2o\":\"Token'lar yükleniyor...\",\"G3Ge9Z\":\"Webhook günlükleri yükleniyor...\",\"NFxlHW\":\"Webhook'lar Yükleniyor\",\"E0DoRM\":\"Konum silindi\",\"NtLHT3\":\"Konum Biçimlendirilmiş Adres\",\"h4vxDc\":\"Konum Enlemi\",\"f2TMhR\":\"Konum Boylamı\",\"lnCo2f\":\"Konum Modu\",\"8pmGFk\":\"Konum Adı\",\"7w8lJU\":\"Konum kaydedildi\",\"YsRXDD\":\"Konum güncellendi\",\"A/kIva\":\"konum güncellemeleri\",\"VppBoU\":\"Konumlar\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo ve Kapak\",\"gddQe0\":\"Organizatörünüz için logo ve kapak görseli\",\"TBEnp1\":\"Logo başlıkta görüntülenecektir\",\"Jzu30R\":\"Logo bilette görüntülenecektir\",\"zKTMTg\":\"Çözümlenmiş konumun boylamı\",\"PSRm6/\":\"Biletlerimi ara\",\"yJFu/X\":\"Ana Ofis\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[[\"0\"],\" Yönet\"],\"wZJfA8\":\"Yinelenen etkinliğiniz için tarihleri ve saatleri yönetin\",\"RlzPUE\":\"Stripe'da yönet\",\"6NXJRK\":\"Programı Yönet\",\"zXuaxY\":\"Etkinliğinizin bekleme listesini yönetin, istatistikleri görüntüleyin ve katılımcılara bilet sunun.\",\"BWTzAb\":\"Manuel\",\"g2npA5\":\"Manuel teklif\",\"hg6l4j\":\"Mart\",\"pqRBOz\":\"Doğrulanmış olarak işaretle (yönetici geçersiz kılması)\",\"2L3vle\":\"Maks Mesaj / 24s\",\"Qp4HWD\":\"Maks Alıcı / Mesaj\",\"3JzsDb\":\"Mayıs\",\"agPptk\":\"Ortam\",\"xDAtGP\":\"Mesaj\",\"bECJqy\":\"Mesaj başarıyla onaylandı\",\"1jRD0v\":\"Belirli biletlere sahip katılımcılara mesaj gönderin\",\"uQLXbS\":\"Mesaj iptal edildi\",\"48rf3i\":\"Mesaj 5000 karakteri geçemez\",\"ZPj0Q8\":\"Mesaj detayları\",\"Vjat/X\":\"Mesaj gerekli\",\"0/yJtP\":\"Belirli ürünlere sahip sipariş sahiplerine mesaj gönderin\",\"saG4At\":\"Mesaj zamanlandı\",\"mFdA+i\":\"Mesajlaşma Seviyesi\",\"v7xKtM\":\"Mesajlaşma seviyesi başarıyla güncellendi\",\"H9HlDe\":\"dakika\",\"agRWc1\":\"Dakika\",\"YYzBv9\":\"Pt\",\"zz/Wd/\":\"Mod\",\"fpMgHS\":\"Pzt\",\"hty0d5\":\"Pazartesi\",\"JbIgPz\":\"Para değerleri tüm para birimlerindeki yaklaşık toplamlardır\",\"qvF+MT\":\"Başarısız arka plan işlerini izleyin ve yönetin\",\"kY2ll9\":\"ay\",\"HajiZl\":\"Ay\",\"+8Nek/\":\"Aylık\",\"1LkxnU\":\"Aylık Düzen\",\"6jefe3\":\"ay\",\"f8jrkd\":\"daha\",\"JcD7qf\":\"Daha fazla işlem\",\"w36OkR\":\"En Çok Görüntülenen Etkinlikler (Son 14 Gün)\",\"+Y/na7\":\"Tüm tarihleri öne veya sona kaydır\",\"3DIpY0\":\"Birden fazla konum\",\"g9cQCP\":\"Birden fazla bilet türü\",\"GfaxEk\":\"Müzik\",\"oVGCGh\":\"Biletlerim\",\"8/brI5\":\"Ad gerekli\",\"sFFArG\":\"İsim 255 karakterden az olmalıdır\",\"sCV5Yc\":\"Etkinlik adı\",\"xxU3NX\":\"Net Gelir\",\"7I8LlL\":\"Yeni kapasite\",\"n1GRql\":\"Yeni etiket\",\"y0Fcpd\":\"Yeni konum\",\"ArHT/C\":\"Yeni Kayıtlar\",\"uK7xWf\":\"Yeni saat:\",\"veT5Br\":\"Bir sonraki oturum\",\"WXtl5X\":[\"Sıradaki: \",[\"nextFormatted\"]],\"eWRECP\":\"Gece Hayatı\",\"HSw5l3\":\"Hayır - Bireyim veya KDV kayıtlı olmayan bir işletmeyim\",\"VHfLAW\":\"Hesap yok\",\"+jIeoh\":\"Hesap bulunamadı\",\"074+X8\":\"Aktif Webhook Yok\",\"zxnup4\":\"Gösterilecek bağlı kuruluş yok\",\"Dwf4dR\":\"Henüz katılımcı sorusu yok\",\"th7rdT\":\"Gösterilecek katılımcı yok\",\"PKySlW\":\"Bu tarih için henüz katılımcı yok.\",\"/UC6qk\":\"Atıf verisi bulunamadı\",\"E2vYsO\":\"Stripe henüz bir yetenek bildirmedi.\",\"amMkpL\":\"Kapasite yok\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Bu etkinlik için kullanılabilir giriş listesi yok.\",\"wG+knX\":\"Henüz check-in yok\",\"+dAKxg\":\"Yapılandırma bulunamadı\",\"LiLk8u\":\"Kullanılabilir bağlantı yok\",\"eb47T5\":\"Seçilen filtreler için veri bulunamadı. Tarih aralığını veya para birimini ayarlamayı deneyin.\",\"lFVUyx\":\"Tarihe özel giriş listesi yok\",\"I8mtzP\":\"Bu ay için uygun tarih yok. Başka bir aya geçmeyi deneyin.\",\"yDukIL\":\"Mevcut filtrelerle eşleşen tarih yok.\",\"B7phdj\":\"Filtrelerinizle eşleşen tarih yok\",\"/ZB4Um\":\"Aramanızla eşleşen tarih yok\",\"gEdNe8\":\"Henüz programlanmış tarih yok\",\"27GYXJ\":\"Programlanmış tarih yok.\",\"pZNOT9\":\"Bitiş tarihi yok\",\"dW40Uz\":\"Etkinlik bulunamadı\",\"8pQ3NJ\":\"Önümüzdeki 24 saat içinde başlayan etkinlik yok\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Başarısız iş yok\",\"EpvBAp\":\"Fatura yok\",\"XZkeaI\":\"Günlük bulunamadı\",\"nrSs2u\":\"Mesaj bulunamadı\",\"Rj99yx\":\"Uygun oturum yok\",\"IFU1IG\":\"Bu tarihte oturum yok\",\"OVFwlg\":\"Henüz sipariş sorusu yok\",\"EJ7bVz\":\"Sipariş bulunamadı\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Bu tarih için henüz sipariş yok.\",\"wUv5xQ\":\"Son 14 günde organizatör aktivitesi yok\",\"vLd1tV\":\"Kullanılabilir organizatör bağlamı yok.\",\"B7w4KY\":\"Başka organizatör mevcut değil\",\"PChXMe\":\"Ücretli Sipariş Yok\",\"6jYQGG\":\"Geçmiş etkinlik yok\",\"CHzaTD\":\"Son 14 günde popüler etkinlik yok\",\"zK/+ef\":\"Seçim için ürün mevcut değil\",\"M1/lXs\":\"Bu etkinlik için yapılandırılmış ürün yok.\",\"kY7XDn\":\"Hiçbir ürünün bekleme listesi kaydı yok\",\"wYiAtV\":\"Yakın zamanda hesap kaydı yok\",\"UW90md\":\"Alıcı bulunamadı\",\"QoAi8D\":\"Yanıt yok\",\"JeO7SI\":\"Yanıt Yok\",\"EK/G11\":\"Henüz yanıt yok\",\"7J5OKy\":\"Henüz kayıtlı konum yok\",\"wpCjcf\":\"Henüz kayıtlı konum yok. Adresli etkinlikler oluşturdukça burada görüneceklerdir.\",\"mPdY6W\":\"Öneri yok\",\"3sRuiW\":\"Bilet Bulunamadı\",\"k2C0ZR\":\"Yaklaşan tarih yok\",\"yM5c0q\":\"Yaklaşan etkinlik yok\",\"qpC74J\":\"Kullanıcı bulunamadı\",\"8wgkoi\":\"Son 14 günde görüntülenen etkinlik yok\",\"Arzxc1\":\"Bekleme listesi kaydı yok\",\"n5vdm2\":\"Bu uç nokta için henüz webhook olayı kaydedilmedi. Olaylar tetiklendiklerinde burada görünecektir.\",\"4GhX3c\":\"Webhook Yok\",\"4+am6b\":\"Hayır, beni burada tut\",\"4JVMUi\":\"düzenlenmemiş\",\"Itw24Q\":\"Giriş yapılmadı\",\"x5+Lcz\":\"Giriş Yapılmadı\",\"8n10sz\":\"Uygun Değil\",\"kLvU3F\":\"Katılımcıları bilgilendir ve satışları durdur\",\"t9QlBd\":\"Kasım\",\"kAREMN\":\"Oluşturulacak tarih sayısı\",\"6u1B3O\":\"Oturum\",\"mmoE62\":\"Oturum İptal Edildi\",\"UYWXdN\":\"Oturum Bitiş Tarihi\",\"k7dZT5\":\"Oturum Bitiş Saati\",\"Opinaj\":\"Oturum Etiketi\",\"V9flmL\":\"Oturum Programı\",\"NUTUUs\":\"Oturum Programı sayfası\",\"AT8UKD\":\"Oturum Başlangıç Tarihi\",\"Um8bvD\":\"Oturum Başlangıç Saati\",\"Kh3WO8\":\"Oturum Özeti\",\"byXCTu\":\"Oturumlar\",\"KATw3p\":\"Oturumlar (yalnızca gelecek)\",\"85rTR2\":\"Oturumlar oluşturulduktan sonra yapılandırılabilir\",\"dzQfDY\":\"Ekim\",\"BwJKBw\":\"/\",\"9h7RDh\":\"Teklif Et\",\"EfK2O6\":\"Yer Teklif Et\",\"3sVRey\":\"Bilet teklif et\",\"2O7Ybb\":\"Teklif zaman aşımı\",\"1jUg5D\":\"Teklif edildi\",\"l+/HS6\":[\"Teklifler \",[\"timeoutHours\"],\" saat sonra sona erer.\"],\"lQgMLn\":\"Ofis veya mekan adı\",\"6Aih4U\":\"Çevrimdışı\",\"Z6gBGW\":\"Çevrimdışı Ödeme\",\"nO3VbP\":[[\"0\"],\" satışta\"],\"oXOSPE\":\"Çevrimiçi\",\"aqmy5k\":\"Çevrimiçi — bağlantı bilgilerini girin\",\"LuZBbx\":\"Çevrimiçi ve yüz yüze\",\"IXuOqt\":\"Çevrimiçi ve yüz yüze — programa bakın\",\"w3DG44\":\"Çevrimiçi Bağlantı Detayları\",\"WjSpu5\":\"Çevrimiçi Etkinlik\",\"TP6jss\":\"Çevrimiçi etkinlik bağlantı detayları\",\"NdOxqr\":\"Yalnızca hesap yöneticileri etkinlikleri silebilir veya arşivleyebilir. Yardım için hesap yöneticinizle iletişime geçin.\",\"rnoDMF\":\"Yalnızca hesap yöneticileri organizatörleri silebilir veya arşivleyebilir. Yardım için hesap yöneticinizle iletişime geçin.\",\"bU7oUm\":\"Yalnızca bu durumlara sahip siparişlere gönder\",\"M2w1ni\":\"Yalnızca promosyon koduyla görünür\",\"y8Bm7C\":\"Girişi aç\",\"RLz7P+\":\"Oturumu aç\",\"cDSdPb\":\"Seçicilerde gösterilen isteğe bağlı takma ad, örn. \\\"Genel Merkez Toplantı Odası\\\"\",\"HXMJxH\":\"Feragatnameler, iletişim bilgileri veya teşekkür notları için isteğe bağlı metin (yalnızca tek satır)\",\"L565X2\":\"seçenekler\",\"8m9emP\":\"veya tek bir tarih ekleyin\",\"dSeVIm\":\"sipariş\",\"c/TIyD\":\"Sipariş ve Bilet\",\"H5qWhm\":\"Sipariş iptal edildi\",\"b6+Y+n\":\"Sipariş tamamlandı\",\"x4MLWE\":\"Sipariş Onayı\",\"CsTTH0\":\"Sipariş onayı başarıyla yeniden gönderildi\",\"ppuQR4\":\"Sipariş Oluşturuldu\",\"0UZTSq\":\"Sipariş Para Birimi\",\"xtQzag\":\"Sipariş ayrıntıları\",\"HdmwrI\":\"Sipariş E-postası\",\"bwBlJv\":\"Sipariş Adı\",\"vrSW9M\":\"Sipariş iptal edildi ve iade edildi. Sipariş sahibi bilgilendirildi.\",\"rzw+wS\":\"Sipariş sahipleri\",\"oI/hGR\":\"Sipariş Kimliği\",\"Pc729f\":\"Sipariş Çevrimdışı Ödeme Bekliyor\",\"F4NXOl\":\"Sipariş Soyadı\",\"RQCXz6\":\"Sipariş Limitleri\",\"SO9AEF\":\"Sipariş limitleri ayarlandı\",\"5RDEEn\":\"Sipariş Dili\",\"vu6Arl\":\"Sipariş Ödendi Olarak İşaretlendi\",\"sLbJQz\":\"Sipariş bulunamadı\",\"kvYpYu\":\"Sipariş Bulunamadı\",\"i8VBuv\":\"Sipariş Numarası\",\"eJ8SvM\":\"Sipariş numarası, satın alma tarihi, alıcı e-postası\",\"FaPYw+\":\"Sipariş sahibi\",\"eB5vce\":\"Belirli bir ürüne sahip sipariş sahipleri\",\"CxLoxM\":\"Ürünlere sahip sipariş sahipleri\",\"DoH3fD\":\"Sipariş Ödemesi Beklemede\",\"UkHo4c\":\"Sipariş Ref.\",\"EZy55F\":\"Sipariş İade Edildi\",\"6eSHqs\":\"Sipariş durumları\",\"oW5877\":\"Sipariş Toplamı\",\"e7eZuA\":\"Sipariş Güncellendi\",\"1SQRYo\":\"Sipariş başarıyla güncellendi\",\"KndP6g\":\"Sipariş URL'si\",\"3NT0Ck\":\"Sipariş iptal edildi\",\"V5khLm\":\"sipariş\",\"sd5IMt\":\"Tamamlanan Siparişler\",\"5It1cQ\":\"Siparişler Dışa Aktarıldı\",\"tlKX/S\":\"Birden fazla tarihi kapsayan siparişler manuel inceleme için işaretlenecektir.\",\"UQ0ACV\":\"Sipariş Toplamı\",\"B/EBQv\":\"Siparişler:\",\"qtGTNu\":\"Organik Hesaplar\",\"ucgZ0o\":\"Organizasyon\",\"P/JHA4\":\"Organizatör başarıyla arşivlendi\",\"S3CZ5M\":\"Organizatör Paneli\",\"GzjTd0\":\"Organizatör başarıyla silindi\",\"Uu0hZq\":\"Organizatör E-postası\",\"Gy7BA3\":\"Organizatör e-posta adresi\",\"SQqJd8\":\"Organizatör Bulunamadı\",\"HF8Bxa\":\"Organizatör başarıyla geri yüklendi\",\"wpj63n\":\"Organizatör Ayarları\",\"o1my93\":\"Organizatör durum güncellemesi başarısız oldu. Lütfen daha sonra tekrar deneyin\",\"rLHma1\":\"Organizatör durumu güncellendi\",\"LqBITi\":\"Organizatör/varsayılan şablon kullanılacak\",\"q4zH+l\":\"Organizatörler\",\"/IX/7x\":\"Diğer\",\"RsiDDQ\":\"Diğer Listeler (Bilet Dahil Değil)\",\"aDfajK\":\"Açık hava\",\"qMASRF\":\"Giden mesajlar\",\"iCOVQO\":\"Geçersiz Kıl\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Fiyatı geçersiz kıl\",\"cnVIpl\":\"Geçersiz kılma kaldırıldı\",\"6/dCYd\":\"Genel Bakış\",\"6WdDG7\":\"Sayfa\",\"8uqsE5\":\"Sayfa artık mevcut değil\",\"QkLf4H\":\"Sayfa URL'si\",\"sF+Xp9\":\"Sayfa Görüntülemeleri\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Ücretli Hesaplar\",\"5F7SYw\":\"Kısmi iade\",\"fFYotW\":[\"Kısmen iade edildi: \",[\"0\"]],\"i8day5\":\"Ücreti alıcıya aktar\",\"k4FLBQ\":\"Alıcıya aktar\",\"Ff0Dor\":\"Geçmiş\",\"BFjW8X\":\"Gecikmiş\",\"xTPjSy\":\"Geçmiş Etkinlikler\",\"/l/ckQ\":\"URL Yapıştır\",\"URAE3q\":\"Duraklatıldı\",\"4fL/V7\":\"Öde\",\"OZK07J\":\"Kilidi açmak için öde\",\"c2/9VE\":\"Yük\",\"5cxUwd\":\"Ödeme Tarihi\",\"ENEPLY\":\"Ödeme yöntemi\",\"8Lx2X7\":\"Ödeme alındı\",\"fx8BTd\":\"Ödemeler mevcut değil\",\"C+ylwF\":\"Ödemeler\",\"UbRKMZ\":\"Beklemede\",\"UkM20g\":\"İnceleme Bekliyor\",\"dPYu1F\":\"Katılımcı Başına\",\"mQV/nJ\":\"dakikada\",\"VlXNyK\":\"Sipariş başına\",\"hauDFf\":\"Bilet başına\",\"mnF83a\":\"Yüzde Ücreti\",\"TNLuRD\":\"Yüzde ücreti (%)\",\"MixU2P\":\"Yüzde 0 ile 100 arasında olmalıdır\",\"MkuVAZ\":\"İşlem tutarının yüzdesi\",\"/Bh+7r\":\"Performans\",\"fIp56F\":\"Bu etkinliği ve tüm ilgili verileri kalıcı olarak silin.\",\"nJeeX7\":\"Bu organizatörü ve tüm etkinliklerini kalıcı olarak silin.\",\"wfCTgK\":\"Bu tarihi kalıcı olarak kaldır\",\"6kPk3+\":\"Kişisel Bilgiler\",\"zmwvG2\":\"Telefon\",\"SdM+Q1\":\"Bir konum seçin\",\"tSR/oe\":\"Bir bitiş tarihi seçin\",\"e8kzpp\":\"Ayın en az bir gününü seçin\",\"35C8QZ\":\"Haftanın en az bir gününü seçin\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Verildi\",\"wBJR8i\":\"Bir etkinlik mi planlıyorsunuz?\",\"J3lhKT\":\"Platform ücreti\",\"RD51+P\":[\"Ödemenizden \",[\"0\"],\" platform ücreti düşülür\"],\"br3Y/y\":\"Platform Ücretleri\",\"3buiaw\":\"Platform Ücretleri Raporu\",\"kv9dM4\":\"Platform Geliri\",\"PJ3Ykr\":\"Güncellenmiş saat için lütfen biletinizi kontrol edin. Biletleriniz hâlâ geçerli — yeni saatler size uymadıkça herhangi bir işlem yapmanıza gerek yok. Sorularınız varsa bu e-postayı yanıtlayın.\",\"OtjenF\":\"Lütfen geçerli bir e-posta adresi girin\",\"jEw0Mr\":\"Lütfen geçerli bir URL girin\",\"n8+Ng/\":\"Lütfen 5 haneli kodu girin\",\"r+lQXT\":\"Lütfen KDV numaranızı girin\",\"Dvq0wf\":\"Lütfen bir görsel sağlayın.\",\"2cUopP\":\"Lütfen ödeme işlemini yeniden başlatın.\",\"GoXxOA\":\"Lütfen bir tarih ve saat seçin\",\"8KmsFa\":\"Lütfen bir tarih aralığı seçin\",\"EFq6EG\":\"Lütfen bir görsel seçin.\",\"fuwKpE\":\"Lütfen tekrar deneyin.\",\"klWBeI\":\"Başka bir kod istemeden önce lütfen bekleyin\",\"hfHhaa\":\"Bağlı kuruluşlarınızı dışa aktarma için hazırlarken lütfen bekleyin...\",\"o+tJN/\":\"Katılımcılarınızı dışa aktarma için hazırlarken lütfen bekleyin...\",\"+5Mlle\":\"Siparişlerinizi dışa aktarma için hazırlarken lütfen bekleyin...\",\"trnWaw\":\"Lehçe\",\"luHAJY\":\"Popüler Etkinlikler (Son 14 Gün)\",\"p/78dY\":\"Konum\",\"TjX7xL\":\"Ödeme Sonrası Mesajı\",\"OESu7I\":\"Birden fazla bilet türünde stok paylaşarak aşırı satışı önleyin.\",\"NgVUL2\":\"Ödeme formunu önizle\",\"cs5muu\":\"Etkinlik sayfasını önizle\",\"+4yRWM\":\"Bilet fiyatı\",\"Jm2AC3\":\"Fiyat Kademesi\",\"a5jvSX\":\"Fiyat Kademeleri\",\"ReihZ7\":\"Yazdırma Önizlemesi\",\"JnuPvH\":\"Bileti Yazdır\",\"tYF4Zq\":\"PDF'ye Yazdır\",\"LcET2C\":\"Gizlilik Politikası\",\"8z6Y5D\":\"İade İşle\",\"JcejNJ\":\"Sipariş işleniyor\",\"EWCLpZ\":\"Ürün Oluşturuldu\",\"XkFYVB\":\"Ürün Silindi\",\"YMwcbR\":\"Ürün satışları, gelir ve vergi dökümü\",\"ls0mTC\":\"İptal edilen tarihler için ürün ayarları düzenlenemez.\",\"2339ej\":\"Ürün ayarları başarıyla kaydedildi\",\"ldVIlB\":\"Ürün Güncellendi\",\"CP3D8G\":\"İlerleme\",\"JoKGiJ\":\"Promosyon kodu\",\"k3wH7i\":\"Promosyon kodu kullanımı ve indirim dökümü\",\"tZqL0q\":\"promosyon kodları\",\"oCHiz3\":\"Promosyon kodları\",\"uEhdRh\":\"Yalnızca Promosyon\",\"dLm8V5\":\"Promosyon e-postaları hesap askıya alınmasına neden olabilir\",\"XoEWtl\":\"Yeni konum için en az bir adres alanı girin.\",\"2W/7Gz\":\"Ödemelerin sürmesi için Stripe'ın bir sonraki incelemesinden önce aşağıdakileri sağla.\",\"aemBRq\":\"Sağlayıcı\",\"EEYbdt\":\"Yayınla\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Satın Alındı\",\"JunetL\":\"Satın alan\",\"phmeUH\":\"Satın alan e-postası\",\"ywR4ZL\":\"QR kod ile giriş\",\"oWXNE5\":\"Adet\",\"biEyJ4\":\"Cevaplar\",\"k/bJj0\":\"Sorular yeniden sıralandı\",\"b24kPi\":\"Kuyruk\",\"lTPqpM\":\"Hızlı İpucu\",\"fqDzSu\":\"Oran\",\"mnUGVC\":\"Hız sınırı aşıldı. Lütfen daha sonra tekrar deneyin.\",\"t41hVI\":\"Yeri Yeniden Teklif Et\",\"TNclgc\":\"Bu tarih yeniden etkinleştirilsin mi? Gelecek satışlara yeniden açılacaktır.\",\"uqoRbb\":\"Gerçek zamanlı analitik\",\"xzRvs4\":[[\"0\"],\"'ten ürün güncellemeleri alın.\"],\"pLXbi8\":\"Son Hesap Kayıtları\",\"3kJ0gv\":\"Son Katılımcılar\",\"qhfiwV\":\"Son check-in'ler\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Son Siparişler\",\"7hPBBn\":\"alıcı\",\"jp5bq8\":\"alıcı\",\"yPrbsy\":\"Alıcılar\",\"E1F5Ji\":\"Alıcılar mesaj gönderildikten sonra görüntülenebilir\",\"wuhHPE\":\"Yinelenen\",\"asLqwt\":\"Yinelenen Etkinlik\",\"D0tAMe\":\"Yinelenen etkinlikler\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Stripe'a yönlendiriliyor...\",\"pnoTN5\":\"Yönlendirme Hesapları\",\"ACKu03\":\"Önizlemeyi Yenile\",\"vuFYA6\":\"Bu tarihler için tüm siparişleri iade et\",\"4cRUK3\":\"Bu tarih için tüm siparişleri iade et\",\"fKn/k6\":\"İade tutarı\",\"qY4rpA\":\"İade başarısız oldu\",\"TspTcZ\":\"İade Yapıldı\",\"FaK/8G\":[\"Siparişi İade Et \",[\"0\"]],\"MGbi9P\":\"İade beklemede\",\"BDSRuX\":[\"İade edildi: \",[\"0\"]],\"bU4bS1\":\"İadeler\",\"rYXfOA\":\"Bölgesel Ayarlar\",\"5tl0Bp\":\"Kayıt soruları\",\"ZNo5k1\":\"Kalan\",\"EMnuA4\":\"Hatırlatıcı zamanlandı\",\"Bjh87R\":\"Tüm tarihlerden etiketi kaldır\",\"KkJtVK\":\"Yeni satışlara yeniden aç\",\"XJwWJp\":\"Bu tarih yeni satışlara yeniden açılsın mı? Daha önce iptal edilen biletler geri yüklenmeyecek — etkilenen katılımcılar iptal edilmiş olarak kalacak ve daha önce yapılan iadeler geri alınmayacak.\",\"bAwDQs\":\"Şu kadarda bir tekrarla\",\"CQeZT8\":\"Rapor bulunamadı\",\"JEPMXN\":\"Yeni bir bağlantı isteyin\",\"TMLAx2\":\"Gerekli\",\"mdeIOH\":\"Kodu yeniden gönder\",\"sQxe68\":\"Onayı yeniden gönder\",\"bxoWpz\":\"Onay E-postasını Yeniden Gönder\",\"G42SNI\":\"E-postayı yeniden gönder\",\"TTpXL3\":[[\"resendCooldown\"],\"s içinde yeniden gönder\"],\"5CiNPm\":\"Bileti Yeniden Gönder\",\"Uwsg2F\":\"Rezerve edildi\",\"8wUjGl\":\"Rezerve edilme süresi:\",\"a5z8mb\":\"Temel fiyata sıfırla\",\"kCn6wb\":\"Sıfırlanıyor...\",\"404zLK\":\"Çözümlenmiş konum veya mekân adı\",\"ZlCDf+\":\"Yanıt\",\"bsydMp\":\"Yanıt Detayları\",\"yKu/3Y\":\"Geri Yükle\",\"RokrZf\":\"Etkinliği Geri Yükle\",\"/JyMGh\":\"Organizatörü Geri Yükle\",\"HFvFRb\":\"Bu etkinliği yeniden görünür hale getirmek için geri yükleyin.\",\"DDIcqy\":\"Bu organizatörü geri yükleyin ve yeniden aktif hale getirin.\",\"mO8KLE\":\"sonuç\",\"6gRgw8\":\"Yeniden dene\",\"1BG8ga\":\"Tümünü yeniden dene\",\"rDC+T6\":\"İşi yeniden dene\",\"CbnrWb\":\"Etkinliğe Dön\",\"mdQ0zb\":\"Etkinlikleriniz için yeniden kullanılabilir mekânlar. Otomatik tamamlama ile oluşturulan konumlar burada otomatik olarak kaydedilir.\",\"XFOPle\":\"Yeniden kullan\",\"1Zehp4\":\"Bu hesaptaki başka bir organizatörün Stripe bağlantısını yeniden kullan.\",\"Oo/PLb\":\"Gelir Özeti\",\"O/8Ceg\":\"Bugünkü gelir\",\"CfuueU\":\"Teklifi Geri Çek\",\"RIgKv+\":\"Belirli bir tarihe kadar çalıştır\",\"JYRqp5\":\"Ct\",\"dFFW9L\":[\"Satış sona erdi \",[\"0\"]],\"loCKGB\":[\"Satış bitiyor \",[\"0\"]],\"wlfBad\":\"Satış Dönemi\",\"qi81Jg\":\"Satış dönemi tarihleri, programınızdaki tüm tarihler için geçerlidir. Tek tek tarihler için fiyatlandırma ve mevcudiyeti kontrol etmek için <0>Oturum Programı sayfasındaki geçersiz kılmaları kullanın.\",\"5CDM6r\":\"Satış dönemi ayarlandı\",\"ftzaMf\":\"Satış dönemi, sipariş limitleri, görünürlük\",\"zpekWp\":[\"Satış başlıyor \",[\"0\"]],\"mUv9U4\":\"Satışlar\",\"9KnRdL\":\"Satışlar duraklatıldı\",\"JC3J0k\":\"Oturum başına satış, katılım ve giriş dökümü\",\"3VnlS9\":\"Tüm etkinlikler için satışlar, siparişler ve performans metrikleri\",\"3Q1AWe\":\"Satışlar:\",\"LeuERW\":\"Etkinlikle aynı\",\"B4nE3N\":\"Örnek bilet fiyatı\",\"8BRPoH\":\"Örnek Mekan\",\"PiK6Ld\":\"Cmt\",\"+5kO8P\":\"Cumartesi\",\"zJiuDn\":\"Ücret geçersiz kılmasını kaydet\",\"NB8Uxt\":\"Programı Kaydet\",\"KZrfYJ\":\"Sosyal Bağlantıları Kaydet\",\"9Y3hAT\":\"Şablonu Kaydet\",\"C8ne4X\":\"Bilet Tasarımını Kaydet\",\"cTI8IK\":\"KDV ayarlarını kaydet\",\"6/TNCd\":\"KDV Ayarlarını Kaydet\",\"4RvD9q\":\"Kayıtlı konum\",\"cgw0cL\":\"Kayıtlı konumlar\",\"lvSrsT\":\"Kayıtlı Konumlar\",\"Fbqm/I\":\"Geçersiz kılma kaydetmek, şu anda sistem varsayılanında olan bu organizatör için özel bir yapılandırma oluşturur.\",\"I+FvbD\":\"Tara\",\"0zd6Nm\":\"Bir katılımcıyı check-in yapmak için bilet tara\",\"bQG7Qk\":\"Taranan biletler burada görünecek\",\"WDYSLJ\":\"Tarayıcı modu\",\"gmB6oO\":\"Program\",\"j6NnBq\":\"Program başarıyla oluşturuldu\",\"YP7frt\":\"Program şu tarihte biter\",\"QS1Nla\":\"Daha sonra gönder\",\"NAzVVw\":\"Mesajı zamanla\",\"Fz09JP\":\"Program başlangıç tarihi\",\"4ba0NE\":\"Planlandı\",\"qcP/8K\":\"Zamanlanmış saat\",\"A1taO8\":\"Ara\",\"ftNXma\":\"Bağlı kuruluşları ara...\",\"VMU+zM\":\"Katılımcı ara\",\"VY+Bdn\":\"Hesap adı veya e-posta ile ara...\",\"VX+B3I\":\"Etkinlik başlığı veya organizatöre göre ara...\",\"R0wEyA\":\"İş adı veya istisnaya göre ara...\",\"VT+urE\":\"İsim veya e-posta ile ara...\",\"GHdjuo\":\"Ad, e-posta veya hesaba göre ara...\",\"4mBFO7\":\"Ad, sipariş, bilet veya email ile ara\",\"20ce0U\":\"Sipariş kimliği, müşteri adı veya e-posta ile arayın...\",\"4DSz7Z\":\"Konu, etkinlik veya hesaba göre ara...\",\"nQC7Z9\":\"Tarihlerde ara...\",\"iRtEpV\":\"Tarihlerde ara…\",\"JRM7ao\":\"Adres ara\",\"BWF1kC\":\"Mesajlarda ara...\",\"3aD3GF\":\"Mevsimsel\",\"ku//5b\":\"İkinci\",\"Mck5ht\":\"Güvenli Ödeme\",\"s7tXqF\":\"Programa bak\",\"JFap6u\":\"Stripe'ın hâlâ neye ihtiyacı olduğunu gör\",\"p7xUrt\":\"Bir kategori seçin\",\"hTKQwS\":\"Tarih ve Saat Seçin\",\"e4L7bF\":\"İçeriğini görüntülemek için bir mesaj seçin\",\"zPRPMf\":\"Bir seviye seçin\",\"uqpVri\":\"Bir saat seçin\",\"BFRSTT\":\"Hesap Seç\",\"wgNoIs\":\"Tümünü seç\",\"mCB6Je\":\"Tümünü Seç\",\"aCEysm\":[[\"0\"],\" tarihindeki tümünü seç\"],\"a6+167\":\"Bir etkinlik seçin\",\"CFbaPk\":\"Katılımcı grubu seçin\",\"88a49s\":\"Kamera seç\",\"tVW/yo\":\"Para birimi seçin\",\"SJQM1I\":\"Tarih seç\",\"n9ZhRa\":\"Bitiş tarih ve saatini seçin\",\"gTN6Ws\":\"Bitiş saatini seçin\",\"0U6E9W\":\"Etkinlik kategorisi seçin\",\"j9cPeF\":\"Etkinlik türlerini seçin\",\"ypTjHL\":\"Oturum seç\",\"KizCK7\":\"Başlangıç tarih ve saatini seçin\",\"dJZTv2\":\"Başlangıç saatini seçin\",\"x8XMsJ\":\"Bu hesap için mesajlaşma seviyesini seçin. Bu, mesaj limitlerini ve bağlantı izinlerini kontrol eder.\",\"aT3jZX\":\"Saat dilimi seçin\",\"TxfvH2\":\"Bu mesajı hangi katılımcıların alacağını seçin\",\"Ropvj0\":\"Bu webhook'u tetikleyecek etkinlikleri seçin\",\"+6YAwo\":\"seçildi\",\"ylXj1N\":\"Seçildi\",\"uq3CXQ\":\"Etkinliğinizin biletlerini tüketin.\",\"j9b/iy\":\"Hızlı satılıyor 🔥\",\"73qYgo\":\"Test olarak gönder\",\"HMAqFK\":\"Katılımcılara, bilet sahiplerine veya sipariş sahiplerine e-posta gönderin. Mesajlar hemen gönderilebilir veya daha sonra için planlanabilir.\",\"22Itl6\":\"Bana bir kopya gönder\",\"NpEm3p\":\"Şimdi gönder\",\"nOBvex\":\"Gerçek zamanlı sipariş ve katılımcı verilerini harici sistemlerinize gönderin.\",\"1lNPhX\":\"İade bildirim e-postası gönder\",\"eaUTwS\":\"Sıfırlama bağlantısı gönder\",\"5cV4PY\":\"Tüm oturumlara gönderin veya belirli bir tane seçin\",\"QEQlnV\":\"İlk mesajınızı gönderin\",\"3nMAVT\":\"2g 4s içinde gönderiliyor\",\"IoAuJG\":\"Gönderiliyor...\",\"h69WC6\":\"Gönderildi\",\"BVu2Hz\":\"Gönderen\",\"ZFa8wv\":\"Programlanmış bir tarih iptal edildiğinde katılımcılara gönderilir\",\"SPdzrs\":\"Müşterilere sipariş verdiklerinde gönderilir\",\"LxSN5F\":\"Her katılımcıya bilet detaylarıyla birlikte gönderilir\",\"hgvbYY\":\"Eylül\",\"5sN96e\":\"Oturum iptal edildi\",\"89xaFU\":\"Bu organizatör altında oluşturulan yeni etkinlikler için varsayılan platform ücreti ayarlarını belirleyin.\",\"eXssj5\":\"Bu organizatör altında oluşturulan yeni etkinlikler için varsayılan ayarları belirleyin.\",\"uPe5p8\":\"Her tarihin ne kadar süreceğini ayarlayın\",\"xNsRxU\":\"Tarih sayısını ayarla\",\"ODuUEi\":\"Tarih etiketini ayarla veya temizle\",\"buHACR\":\"Her tarihin bitiş saatini, başlangıç saatinden bu kadar sonraya ayarlayın.\",\"TaeFgl\":\"Sınırsıza ayarla (sınırı kaldır)\",\"pd6SSe\":\"Otomatik olarak tarih oluşturmak için yinelenen bir program oluşturun veya tarihleri tek tek ekleyin.\",\"s0FkEx\":\"Farklı girişler, oturumlar veya günler için giriş listeleri oluşturun.\",\"TaWVGe\":\"Ödemeleri kur\",\"gzXY7l\":\"Program Oluştur\",\"xMO+Ao\":\"Organizasyonunuzu kurun\",\"h/9JiC\":\"Programınızı Oluşturun\",\"ETC76A\":\"Oturumun konumunu veya çevrimiçi bilgilerini belirleyin, değiştirin veya kaldırın\",\"C3htzi\":\"Ayar güncellendi\",\"Ohn74G\":\"Kurulum ve Tasarım\",\"1W5XyZ\":\"Kurulum sadece birkaç dakika sürer — mevcut bir Stripe hesabına ihtiyacın yok. Stripe; kartları, cüzdanları, bölgesel ödeme yöntemlerini ve dolandırıcılık korumasını üstlenir, sen etkinliğine odaklan.\",\"GG7qDw\":\"Bağlı Kuruluş Bağlantısını Paylaş\",\"hL7sDJ\":\"Organizatör Sayfasını Paylaş\",\"jy6QDF\":\"Paylaşımlı Kapasite Yönetimi\",\"jDNHW4\":\"Saatleri kaydır\",\"tPfIaW\":[[\"count\"],\" tarih için saatler kaydırıldı\"],\"WwlM8F\":\"Gelişmiş seçenekleri göster\",\"cMW+gm\":[\"Tüm platformları göster (\",[\"0\"],\" değerli daha fazla)\"],\"wXi9pZ\":\"Oturum açmamış personele notları göster\",\"UVPI5D\":\"Daha az platform göster\",\"Eu/N/d\":\"Pazarlama onay kutusunu göster\",\"SXzpzO\":\"Varsayılan olarak pazarlama onay kutusunu göster\",\"57tTk5\":\"Daha fazla tarih göster\",\"b33PL9\":\"Daha fazla platform göster\",\"Eut7p9\":\"Oturum açmamış personele sipariş ayrıntılarını göster\",\"+RoWKN\":\"Oturum açmamış personele cevapları göster\",\"t1LIQW\":[[\"totalRows\"],\" kayıttan \",[\"0\"],\" tanesi gösteriliyor\"],\"E717U9\":[[\"2\"],\" kaydın \",[\"0\"],\"–\",[\"1\"],\" arası gösteriliyor\"],\"5rzhBQ\":[[\"totalAvailable\"],\" tarihin \",[\"MAX_VISIBLE\"],\" tanesi gösteriliyor. Aramak için yazın.\"],\"WSt3op\":[\"İlk \",[\"0\"],\" gösteriliyor — mesaj gönderildiğinde kalan \",[\"1\"],\" oturum da yine hedeflenecek.\"],\"OJLTEL\":\"Personele sayfa ilk açıldığında gösterilir.\",\"jVRHeq\":\"Kayıt Tarihi\",\"5C7J+P\":\"Tek Etkinlik\",\"E//btK\":\"Manuel düzenlenmiş tarihleri atla\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sosyal\",\"d0rUsW\":\"Sosyal Bağlantılar\",\"j/TOB3\":\"Sosyal Bağlantılar ve Web Sitesi\",\"s9KGXU\":\"Satıldı\",\"iACSrw\":\"Bazı ayrıntılar herkese açık erişime kapalı. Tümünü görmek için giriş yapın.\",\"KTxc6k\":\"Bir şeyler ters gitti, lütfen tekrar deneyin veya sorun devam ederse destek ile iletişime geçin\",\"lkE00/\":\"Bir şeyler ters gitti. Lütfen daha sonra tekrar deneyin.\",\"wdxz7K\":\"Kaynak\",\"fDG2by\":\"Maneviyat\",\"oPaRES\":\"Check-in'i gün, alan veya bilet türüne göre ayırın. Bağlantıyı personelle paylaşın — hesap gerekmez.\",\"7JFNej\":\"Spor\",\"/bfV1Y\":\"Personel talimatları\",\"tXkhj/\":\"Başlangıç\",\"JcQp9p\":\"Başlangıç tarihi ve saati\",\"0m/ekX\":\"Başlangıç Tarihi ve Saati\",\"izRfYP\":\"Başlangıç tarihi gerekli\",\"tuO4fV\":\"Oturumun başlangıç tarihi\",\"2R1+Rv\":\"Etkinliğin başlangıç saati\",\"2Olov3\":\"Oturumun başlangıç saati\",\"n9ZrDo\":\"Bir mekân veya adres yazmaya başlayın...\",\"qeFVhN\":[[\"diffDays\"],\" gün içinde başlıyor\"],\"AOqtxN\":[[\"diffMinutes\"],\" dk içinde başlıyor\"],\"Otg8Oh\":[[\"h\"],\"sa \",[\"m\"],\"dk içinde başlıyor\"],\"Lo49in\":[[\"seconds\"],\"sn içinde başlıyor\"],\"NqChgF\":\"Yarın başlıyor\",\"2NbyY/\":\"İstatistikler\",\"GVUxAX\":\"İstatistikler hesap oluşturma tarihine göre hesaplanır\",\"29Hx9U\":\"İstatistikler\",\"5ia+r6\":\"Hâlâ gerekli\",\"wuV0bK\":\"Taklidi Durdur\",\"s/KaDb\":\"Stripe bağlandı\",\"Bk06QI\":\"Stripe Bağlı\",\"akZMv8\":[\"Stripe bağlantısı \",[\"0\"],\" kaynağından kopyalandı.\"],\"v0aRY1\":\"Stripe bir kurulum bağlantısı döndürmedi. Lütfen tekrar dene.\",\"aKtF0O\":\"Stripe Bağlı Değil\",\"9i0++A\":\"Stripe Ödeme ID\",\"R1lIMV\":\"Stripe yakında birkaç bilgi daha isteyecek\",\"FzcCHA\":\"Stripe, kurulumu tamamlamak için sana birkaç kısa soru yöneltecek.\",\"eYbd7b\":\"Pz\",\"ii0qn/\":\"Konu gerekli\",\"M7Uapz\":\"Konu burada görünecek\",\"6aXq+t\":\"Konu:\",\"JwTmB6\":\"Ürün Başarıyla Çoğaltıldı\",\"WUOCgI\":\"Yer başarıyla teklif edildi\",\"IvxA4G\":[[\"count\"],\" kişiye başarıyla bilet teklif edildi\"],\"kKpkzy\":\"1 kişiye başarıyla bilet teklif edildi\",\"Zi3Sbw\":\"Bekleme listesinden başarıyla kaldırıldı\",\"RuaKfn\":\"Adres Başarıyla Güncellendi\",\"kzx0uD\":\"Etkinlik Varsayılanları Başarıyla Güncellendi\",\"5n+Wwp\":\"Organizatör Başarıyla Güncellendi\",\"DMCX/I\":\"Platform ücreti varsayılanları başarıyla güncellendi\",\"URUYHc\":\"Platform ücreti ayarları başarıyla güncellendi\",\"0Dk/l8\":\"SEO Ayarları Başarıyla Güncellendi\",\"S8Tua9\":\"Ayarlar başarıyla güncellendi\",\"MhOoLQ\":\"Sosyal Bağlantılar Başarıyla Güncellendi\",\"CNSSfp\":\"Takip Ayarları Başarıyla Güncellendi\",\"kj7zYe\":\"Webhook Başarıyla Güncellendi\",\"dXoieq\":\"Özet\",\"/RfJXt\":[\"Yaz Müzik Festivali \",[\"0\"]],\"CWOPIK\":\"Yaz Müzik Festivali 2025\",\"D89zck\":\"Paz\",\"DBC3t5\":\"Pazar\",\"UaISq3\":\"İsveççe\",\"JZTQI0\":\"Organizatör Değiştir\",\"9YHrNC\":\"Sistem Varsayılanı\",\"lruQkA\":\"Devam etmek için ekrana dokun\",\"TJUrME\":[[\"0\"],\" seçili oturumdaki katılımcılar hedefleniyor.\"],\"yT6dQ8\":\"Vergi türü ve etkinliğe göre gruplandırılmış toplanan vergi\",\"Ye321X\":\"Vergi Adı\",\"WyCBRt\":\"Vergi Özeti\",\"GkH0Pq\":\"Uygulanan vergiler ve ücretler\",\"Rwiyt2\":\"Vergiler yapılandırıldı\",\"iQZff7\":\"Vergiler, Ücretler, Görünürlük, Satış Dönemi, Ürün Vurgulama ve Sipariş Limitleri\",\"SXvRWU\":\"Takım işbirliği\",\"vlf/In\":\"Teknoloji\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"İnsanlara etkinliğinizde neleri bekleyeceklerini anlatın\",\"NiIUyb\":\"Bize etkinliğinizden bahsedin\",\"DovcfC\":\"Organizasyonunuz hakkında bize bilgi verin. Bu bilgiler etkinlik sayfalarınızda görüntülenecektir.\",\"69GWRq\":\"Etkinliğinizin ne sıklıkta tekrarlandığını bize söyleyin, tüm tarihleri sizin için oluşturalım.\",\"mXPbwY\":\"Platform ücretlerine doğru KDV uygulamamız için KDV kayıt durumunu bize bildir.\",\"7wtpH5\":\"Şablon Aktif\",\"QHhZeE\":\"Şablon başarıyla oluşturuldu\",\"xrWdPR\":\"Şablon başarıyla silindi\",\"G04Zjt\":\"Şablon başarıyla kaydedildi\",\"xowcRf\":\"Hizmet Koşulları\",\"6K0GjX\":\"Metin okunması zor olabilir\",\"u0F1Ey\":\"Pe\",\"nm3Iz/\":\"Katıldığınız için teşekkürler!\",\"pYwj0k\":\"Teşekkürler,\",\"k3IitN\":\"Tamamlandı\",\"KfmPRW\":\"Sayfanın arka plan rengi. Kapak resmi kullanıldığında, bu bir kaplama olarak uygulanır.\",\"MDNyJz\":\"Kod 10 dakika içinde sona erecek. E-postayı görmüyorsanız spam klasörünüzü kontrol edin.\",\"AIF7J2\":\"Sabit ücretin tanımlandığı para birimi. Ödeme sırasında sipariş para birimine dönüştürülecektir.\",\"MJm4Tq\":\"Siparişin para birimi\",\"cDHM1d\":\"E-posta adresi değiştirildi. Katılımcı güncellenmiş e-posta adresinde yeni bir bilet alacaktır.\",\"I/NNtI\":\"Etkinlik mekanı\",\"tXadb0\":\"Aradığınız etkinlik şu anda mevcut değil. Kaldırılmış, süresi dolmuş veya URL yanlış olabilir.\",\"5fPdZe\":\"Bu programın oluşturulmaya başlanacağı ilk tarih.\",\"EBzPwC\":\"Tam etkinlik adresi\",\"sxKqBm\":\"Tam sipariş tutarı müşterinin orijinal ödeme yöntemine iade edilecektir.\",\"KgDp6G\":\"Erişmeye çalıştığınız bağlantının süresi doldu veya artık geçerli değil. Siparişinizi yönetmek için güncellenmiş bir bağlantı için lütfen e-postanızı kontrol edin.\",\"5OmEal\":\"Müşterinin dili\",\"Np4eLs\":[\"Maksimum \",[\"MAX_PREVIEW\"],\" oturumdur. Lütfen tarih aralığını, sıklığı veya günlük oturum sayısını azaltın.\"],\"sYLeDq\":\"Aradığınız organizatör bulunamadı. Sayfa taşınmış, silinmiş veya URL yanlış olabilir.\",\"PCr4zw\":\"Geçersiz kılma, sipariş denetim günlüğüne kaydedilir.\",\"C4nQe5\":\"Platform ücreti bilet fiyatına eklenir. Alıcılar daha fazla öder, ancak tam bilet fiyatını alırsınız.\",\"HxxXZO\":\"Düğmeler ve vurgular için kullanılan birincil marka rengi\",\"z0KrIG\":\"Zamanlanmış saat gereklidir\",\"EWErQh\":\"Zamanlanmış saat gelecekte olmalıdır\",\"UNd0OU\":[\"Başlangıçta \",[\"0\"],\" için planlanan \\\"\",[\"title\"],\"\\\" oturumu yeniden planlandı.\"],\"DEcpfp\":\"Şablon gövdesi geçersiz Liquid sözdizimi içeriyor. Lütfen düzeltin ve tekrar deneyin.\",\"injXD7\":\"KDV numarası doğrulanamadı. Lütfen numarayı kontrol edin ve tekrar deneyin.\",\"A4UmDy\":\"Tiyatro\",\"tDwYhx\":\"Tema ve Renkler\",\"O7g4eR\":\"Bu etkinlik için yaklaşan tarih yok\",\"HrIl0p\":[\"Bu tarihe özel bir giriş listesi yok. \\\"\",[\"0\"],\"\\\" listesi tüm tarihlerdeki katılımcıların girişini yapar — farklı bir tarihe ait bir bileti tarayan personel yine başarılı olacaktır.\"],\"dt3TwA\":\"Bunlar, tüm tarihlerdeki varsayılan fiyatlar ve miktarlardır. Kademelerdeki satış tarihleri genel olarak uygulanır. <0>Oturum Programı sayfasında tek tek tarihler için fiyatları ve miktarları geçersiz kılabilirsiniz.\",\"062KsE\":\"Bu detaylar yalnızca bu tarih için katılımcının biletinde ve sipariş özetinde gösterilir.\",\"5Eu+tn\":\"Bu detaylar yalnızca sipariş başarıyla tamamlandığında gösterilir.\",\"jQjwR+\":\"Bu bilgiler, etkilenen oturumlardaki mevcut konumların yerine geçecek ve katılımcı biletlerinde görünecektir.\",\"QP3gP+\":\"Bu ayarlar yalnızca kopyalanan yerleştirme kodu için geçerlidir ve saklanmayacaktır.\",\"HirZe8\":\"Bu şablonlar organizasyonunuzdaki tüm etkinlikler için varsayılan olarak kullanılacaktır. Bireysel etkinlikler bu şablonları kendi özel sürümleriyle geçersiz kılabilir.\",\"lzAaG5\":\"Bu şablonlar yalnızca bu etkinlik için organizatör varsayılanlarını geçersiz kılacaktır. Burada özel bir şablon ayarlanmazsa, organizatör şablonu kullanılacaktır.\",\"UlykKR\":\"Üçüncü\",\"wkP5FM\":\"Bu, şu anda görünmeyen tarihler dahil etkinlikteki eşleşen her tarih için geçerlidir. Bu tarihlerden herhangi birine kayıtlı katılımcılara, güncelleme tamamlandıktan sonra mesaj oluşturucu üzerinden ulaşılabilir.\",\"SOmGDa\":\"Bu giriş listesi iptal edilmiş bir oturuma atanmış olduğundan artık girişler için kullanılamaz.\",\"XBNC3E\":\"Bu kod satışları izlemek için kullanılacaktır. Yalnızca harfler, sayılar, tireler ve alt çizgiler kullanılabilir.\",\"AaP0M+\":\"Bu renk kombinasyonu bazı kullanıcılar için okunması zor olabilir\",\"o1phK/\":[\"Bu tarihin etkilenecek \",[\"orderCount\"],\" siparişi var.\"],\"F/UtGt\":\"Bu tarih iptal edildi. Kalıcı olarak kaldırmak için yine de silebilirsiniz.\",\"BLZ7pX\":\"Bu tarih geçmişte. Oluşturulacak ancak yaklaşan tarihler altında katılımcılara görünmeyecek.\",\"7IIY0z\":\"Bu tarih tükendi olarak işaretlendi.\",\"bddWMP\":\"Bu tarih artık mevcut değil. Lütfen başka bir tarih seçin.\",\"RzEvf5\":\"Bu etkinlik sona erdi\",\"YClrdK\":\"Bu etkinlik henüz yayınlanmadı\",\"dFJnia\":\"Bu, kullanıcılarınıza görüntülenecek organizatörünüzün adıdır.\",\"vt7jiq\":\"İmzalama anahtarı yalnızca bu kez gösterilecektir. Lütfen şimdi kopyalayın ve güvenli bir şekilde saklayın.\",\"L7dIM7\":\"Bu bağlantı geçersiz veya süresi dolmuş.\",\"MR5ygV\":\"Bu bağlantı artık geçerli değil\",\"9LEqK0\":\"Bu isim son kullanıcılara görünür\",\"QdUMM9\":\"Bu oturum kapasitesine ulaştı\",\"j5FdeA\":\"Bu sipariş işleniyor.\",\"sjNPMw\":\"Bu sipariş terk edildi. İstediğiniz zaman yeni bir sipariş başlatabilirsiniz.\",\"OhCesD\":\"Bu sipariş iptal edildi. İstediğiniz zaman yeni bir sipariş başlatabilirsiniz.\",\"lyD7rQ\":\"Bu organizatör profili henüz yayınlanmadı\",\"9b5956\":\"Bu önizleme, e-postanızın örnek verilerle nasıl görüneceğini gösterir. Gerçek e-postalar gerçek değerleri kullanacaktır.\",\"uM9Alj\":\"Bu ürün etkinlik sayfasında vurgulanmıştır\",\"RqSKdX\":\"Bu ürün tükendi\",\"W12OdJ\":\"Bu rapor yalnızca bilgilendirme amaçlıdır. Bu verileri muhasebe veya vergi amaçları için kullanmadan önce her zaman bir vergi uzmanına danışın. Hi.Events geçmiş verileri eksik olabileceğinden lütfen Stripe kontrol panelinizle çapraz kontrol yapın.\",\"0Ew0uk\":\"Bu bilet az önce tarandı. Tekrar taramadan önce lütfen bekleyin.\",\"FYXq7k\":[\"Bu, \",[\"loadedAffectedCount\"],\" tarihi etkileyecek.\"],\"kvpxIU\":\"Bu, kullanıcılarınızla bildirimler ve iletişim için kullanılacaktır.\",\"rhsath\":\"Bu müşterilere görünmeyecektir, ancak iş ortağını tanımlamanıza yardımcı olur.\",\"hV6FeJ\":\"Hız\",\"+FjWgX\":\"Per\",\"kkDQ8m\":\"Perşembe\",\"0GSPnc\":\"Bilet Tasarımı\",\"EZC/Cu\":\"Bilet tasarımı başarıyla kaydedildi\",\"bbslmb\":\"Bilet Tasarımcısı\",\"1BPctx\":\"Bilet:\",\"bgqf+K\":\"Bilet sahibinin e-postası\",\"oR7zL3\":\"Bilet sahibinin adı\",\"HGuXjF\":\"Bilet sahipleri\",\"CMUt3Y\":\"Bilet sahipleri\",\"awHmAT\":\"Bilet ID\",\"6czJik\":\"Bilet Logosu\",\"OkRZ4Z\":\"Bilet Adı\",\"t79rDv\":\"Bilet Bulunamadı\",\"6tmWch\":\"Bilet veya Ürün\",\"1tfWrD\":\"Bilet Önizlemesi:\",\"KnjoUA\":\"Bilet fiyatı\",\"tGCY6d\":\"Bilet Fiyatı\",\"pGZOcL\":\"Bilet başarıyla yeniden gönderildi\",\"8jLPgH\":\"Bilet Türü\",\"X26cQf\":\"Bilet URL'si\",\"8qsbZ5\":\"Biletleme ve Satış\",\"zNECqg\":\"bilet\",\"6GQNLE\":\"Biletler\",\"NRhrIB\":\"Biletler ve Ürünler\",\"OrWHoZ\":\"Kapasite uygun olduğunda biletler bekleme listesindeki müşterilere otomatik olarak sunulur.\",\"EUnesn\":\"Mevcut Biletler\",\"AGRilS\":\"Satılan Biletler\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Saat\",\"dMtLDE\":\"ile\",\"/jQctM\":\"Kime\",\"tiI71C\":\"Limitinizi artırmak için bizimle iletişime geçin\",\"ecUA8p\":\"Bugün\",\"W428WC\":\"Sütunları değiştir\",\"BRMXj0\":\"Yarın\",\"UBSG1X\":\"En İyi Organizatörler (Son 14 Gün)\",\"3sZ0xx\":\"Toplam Hesaplar\",\"EaAPbv\":\"Ödenen toplam tutar\",\"SMDzqJ\":\"Toplam Katılımcılar\",\"orBECM\":\"Toplam Toplanan\",\"k5CU8c\":\"Toplam kayıt\",\"4B7oCp\":\"Toplam Ücret\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Toplam Kullanıcılar\",\"oJjplO\":\"Toplam Görüntüleme\",\"rBZ9pz\":\"Turlar\",\"orluER\":\"Atıf kaynağına göre hesap büyümesini ve performansını takip edin\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Çevrimdışı ödeme ise doğru\",\"9GsDR2\":\"Ödeme beklemedeyse doğru\",\"GUA0Jy\":\"Farklı bir arama veya filtre dene\",\"2P/OWN\":\"Daha fazla tarih görmek için filtrelerinizi ayarlamayı deneyin.\",\"ouM5IM\":\"Başka bir e-posta deneyin\",\"3DZvE7\":\"Hi.Events'i Ücretsiz Deneyin\",\"7P/9OY\":\"Sa\",\"vq2WxD\":\"Sal\",\"G3myU+\":\"Salı\",\"Kz91g/\":\"Türkçe\",\"GdOhw6\":\"Sesi kapat\",\"KUOhTy\":\"Sesi aç\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Onaylamak için \\\"sil\\\" yazın\",\"XxecLm\":\"Bilet türü\",\"IrVSu+\":\"Ürün çoğaltılamıyor. Lütfen bilgilerinizi kontrol edin\",\"Vx2J6x\":\"Katılımcı getirilemedi\",\"h0dx5e\":\"Bekleme listesine katılınamadı\",\"DaE0Hg\":\"Katılımcı ayrıntıları yüklenemedi.\",\"GlnD5Y\":\"Bu tarih için ürünler yüklenemedi. Lütfen tekrar deneyin.\",\"17VbmV\":\"Check-in geri alınamadı\",\"n57zCW\":\"Atıfsız Hesaplar\",\"9uI/rE\":\"Geri al\",\"b9SN9q\":\"Benzersiz sipariş referansı\",\"Ef7StM\":\"Bilinmeyen\",\"ZBAScj\":\"Bilinmeyen Katılımcı\",\"MEIAzV\":\"Adsız\",\"K6L5Mx\":\"İsimsiz konum\",\"X13xGn\":\"Güvenilmez\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Bağlı Kuruluşu Güncelle\",\"59qHrb\":\"Kapasiteyi güncelle\",\"Gaem9v\":\"Etkinlik adını ve açıklamasını güncelle\",\"7EhE4k\":\"Etiketi güncelle\",\"NPQWj8\":\"Konumu güncelle\",\"75+lpR\":[\"Güncelleme: \",[\"subjectTitle\"],\" — program değişiklikleri\"],\"UOGHdA\":[\"Güncelleme: \",[\"subjectTitle\"],\" — oturum saati değişti\"],\"ogoTrw\":[[\"count\"],\" tarih güncellendi\"],\"dDuona\":[[\"count\"],\" tarih için kapasite güncellendi\"],\"FT3LSc\":[[\"count\"],\" tarih için etiket güncellendi\"],\"8EcY1g\":[[\"count\"],\" oturumun konumu güncellendi\"],\"gJQsLv\":\"Organizatörünüz için bir kapak görseli yükleyin\",\"4kEGqW\":\"Organizatörünüz için bir logo yükleyin\",\"lnCMdg\":\"Görsel Yükle\",\"29w7p6\":\"Görsel yükleniyor...\",\"HtrFfw\":\"URL gerekli\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB tarayıcı aktif\",\"dyTklH\":\"USB tarayıcı duraklatıldı\",\"OHJXlK\":\"E-postalarınızı kişiselleştirmek için <0>Liquid şablonunu kullanın\",\"g0WJMu\":\"Tüm tarihler listesini kullan\",\"0k4cdb\":\"Tüm katılımcılar için sipariş bilgilerini kullanın. Katılımcı isimleri ve e-postaları alıcının bilgileriyle eşleşecektir.\",\"MKK5oI\":\"Tüm tarihler listesini mi kullanın, yoksa bu tarih için bir liste mi oluşturun?\",\"bA31T4\":\"Tüm katılımcılar için alıcının bilgilerini kullanın\",\"rnoQsz\":\"Kenarlıklar, vurgular ve QR kod stillemesi için kullanılır\",\"BV4L/Q\":\"UTM Analitiği\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"KDV numaranız doğrulanıyor...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"KDV numarası\",\"pnVh83\":\"KDV Numarası\",\"CabI04\":\"KDV numarası boşluk içermemelidir\",\"PMhxAR\":\"KDV numarası, 2 harfli ülke kodu ile başlamalı ve ardından 8-15 alfanümerik karakter gelmelidir (örn., TR1234567890)\",\"gPgdNV\":\"KDV numarası başarıyla doğrulandı\",\"RUMiLy\":\"KDV numarası doğrulaması başarısız oldu\",\"vqji3Y\":\"KDV numarası doğrulaması başarısız oldu. Lütfen KDV numaranızı kontrol edin.\",\"8dENF9\":\"Ücret Üzerinden KDV\",\"ZutOKU\":\"KDV Oranı\",\"+KJZt3\":\"KDV mükellefi\",\"Nfbg76\":\"KDV ayarları başarıyla kaydedildi\",\"UvYql/\":\"KDV ayarları kaydedildi. KDV numaranızı arka planda doğruluyoruz.\",\"bXn1Jz\":\"KDV ayarları güncellendi\",\"tJylUv\":\"Platform Ücretleri için KDV Uygulaması\",\"FlGprQ\":\"Platform ücretleri için KDV uygulaması: AB KDV'ye kayıtlı işletmeler ters ibraz mekanizmasını kullanabilir (%0 - KDV Direktifi 2006/112/EC Madde 196). KDV'ye kayıtlı olmayan işletmelerden %23 İrlanda KDV'si alınır.\",\"516oLj\":\"KDV doğrulama hizmeti geçici olarak kullanılamıyor\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"KDV: kayıtlı değil\",\"AdWhjZ\":\"Doğrulama kodu\",\"QDEWii\":\"Doğrulandı\",\"wCKkSr\":\"E-postayı Doğrula\",\"/IBv6X\":\"E-postanızı doğrulayın\",\"e/cvV1\":\"Doğrulanıyor...\",\"fROFIL\":\"Vietnamca\",\"p5nYkr\":\"Tümünü Görüntüle\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Tüm yetenekleri görüntüle\",\"RnvnDc\":\"Platformda gönderilen tüm mesajları görüntüle\",\"+WFMis\":\"Tüm etkinliklerinizde raporları görüntüleyin ve indirin. Yalnızca tamamlanan siparişler dahildir.\",\"c7VN/A\":\"Cevapları Görüntüle\",\"SZw9tS\":\"Detayları Görüntüle\",\"9+84uW\":[[\"0\"],\" \",[\"1\"],\" ayrıntılarını görüntüle\"],\"FCVmuU\":\"Etkinliği Görüntüle\",\"c6SXHN\":\"Etkinlik sayfasını görüntüle\",\"n6EaWL\":\"Günlükleri görüntüle\",\"OaKTzt\":\"Haritayı Görüntüle\",\"zNZNMs\":\"Mesajı görüntüle\",\"67OJ7t\":\"Siparişi Görüntüle\",\"tKKZn0\":\"Sipariş Detaylarını Görüntüle\",\"KeCXJu\":\"Sipariş detaylarını görüntüleyin, iade yapın ve onayları yeniden gönderin.\",\"9jnAcN\":\"Organizatör Ana Sayfasını Görüntüle\",\"1J/AWD\":\"Bileti Görüntüle\",\"N9FyyW\":\"Kayıtlı katılımcılarınızı görüntüleyin, düzenleyin ve dışa aktarın.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Bekliyor\",\"quR8Qp\":\"Ödeme bekleniyor\",\"KrurBH\":\"Tarama bekleniyor…\",\"u0n+wz\":\"Bekleme listesi\",\"3RXFtE\":\"Bekleme Listesi Etkin\",\"TwnTPy\":\"Bekleme listesi teklifinin süresi doldu\",\"NzIvKm\":\"Bekleme listesi tetiklendi\",\"aUi/Dz\":\"Uyarı: Bu sistem varsayılan yapılandırmasıdır. Değişiklikler, belirli bir yapılandırması atanmamış tüm hesapları etkileyecektir.\",\"qeygIa\":\"Ça\",\"aT/44s\":\"Bu Stripe bağlantısını kopyalayamadık. Lütfen tekrar dene.\",\"RRZDED\":\"Bu e-posta adresiyle ilişkili herhangi bir sipariş bulamadık.\",\"2RZK9x\":\"Aradığınız siparişi bulamadık. Bağlantının süresi dolmuş veya sipariş detayları değişmiş olabilir.\",\"nefMIK\":\"Aradığınız bileti bulamadık. Bağlantının süresi dolmuş veya bilet detayları değişmiş olabilir.\",\"miysJh\":\"Bu siparişi bulamadık. Kaldırılmış olabilir.\",\"ADsQ23\":\"Stripe'a şu anda ulaşamadık. Lütfen birazdan tekrar dene.\",\"HJKdzP\":\"Bu sayfayı yüklerken bir sorunla karşılaştık. Lütfen tekrar deneyin.\",\"jegrvW\":\"Ödemeleri doğrudan banka hesabına göndermek için Stripe ile çalışıyoruz.\",\"IfN2Qo\":\"Minimum 200x200px boyutunda kare bir logo öneriyoruz\",\"wJzo/w\":\"400px x 400px boyutlarını ve maksimum 5MB dosya boyutunu öneriyoruz\",\"KRCDqH\":\"Sitenin nasıl kullanıldığını anlamamıza ve deneyiminizi iyileştirmemize yardımcı olmak için çerezleri kullanıyoruz.\",\"x8rEDQ\":\"Birden fazla denemeden sonra KDV numaranızı doğrulayamadık. Arka planda denemeye devam edeceğiz. Lütfen daha sonra tekrar kontrol edin.\",\"iy+M+c\":[[\"productDisplayName\"],\" için bir yer açılırsa size e-posta ile haber vereceğiz.\"],\"McuGND\":\"Kaydettikten sonra önceden doldurulmuş bir şablonla bir mesaj oluşturucu açacağız. Siz inceleyip gönderin — hiçbir şey otomatik olarak gönderilmez.\",\"q1BizZ\":\"Biletlerinizi bu e-postaya göndereceğiz\",\"ZOmUYW\":\"KDV numaranızı arka planda doğrulayacağız. Herhangi bir sorun olursa sizi bilgilendireceğiz.\",\"LKjHr4\":[\"\\\"\",[\"title\"],\"\\\" programında değişiklikler yaptık — \",[\"description\"],\", \",[\"affectedCount\"],\" oturumu etkiliyor.\"],\"Fq/Nx7\":\"5 haneli doğrulama kodunu şuraya gönderdik:\",\"GdWB+V\":\"Webhook başarıyla oluşturuldu\",\"2X4ecw\":\"Webhook başarıyla silindi\",\"ndBv0v\":\"Webhook entegrasyonları\",\"CThMKa\":\"Webhook Günlükleri\",\"I0adYQ\":\"Webhook İmzalama Anahtarı\",\"nuh/Wq\":\"Webhook URL'si\",\"8BMPMe\":\"Webhook bildirim göndermeyecek\",\"FSaY52\":\"Webhook bildirim gönderecek\",\"v1kQyJ\":\"Webhook'lar\",\"On0aF2\":\"Web Sitesi\",\"0f7U0k\":\"Çar\",\"VAcXNz\":\"Çarşamba\",\"64X6l4\":\"hafta\",\"4XSc4l\":\"Haftalık\",\"IAUiSh\":\"hafta\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Tekrar hoş geldiniz\",\"QDWsl9\":[[\"0\"],\"'e Hoş Geldiniz, \",[\"1\"],\" 👋\"],\"LETnBR\":[[\"0\"],\"'e hoş geldiniz, işte tüm etkinliklerinizin listesi\"],\"DDbx7K\":\"Sağlık\",\"ywRaYa\":\"Saat kaçta?\",\"FaSXqR\":\"Ne tür bir etkinlik?\",\"0WyYF4\":\"Kimliği doğrulanmamış personel neyi görebilir\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Bir giriş silindiğinde\",\"RPe6bE\":\"Yinelenen bir etkinlikte bir tarih iptal edildiğinde\",\"Gmd0hv\":\"Yeni bir katılımcı oluşturulduğunda\",\"zyIyPe\":\"Yeni bir etkinlik oluşturulduğunda\",\"Lc18qn\":\"Yeni bir sipariş oluşturulduğunda\",\"dfkQIO\":\"Yeni bir ürün oluşturulduğunda\",\"8OhzyY\":\"Bir ürün silindiğinde\",\"tRXdQ9\":\"Bir ürün güncellendiğinde\",\"9L9/28\":\"Bir ürün tükendiğinde, müşteriler yerler açıldığında bilgilendirilmek üzere bekleme listesine katılabilir.\",\"Q7CWxp\":\"Bir katılımcı iptal edildiğinde\",\"IuUoyV\":\"Bir katılımcı giriş yaptığında\",\"nBVOd7\":\"Bir katılımcı güncellendiğinde\",\"t7cuMp\":\"Bir etkinlik arşivlendiğinde\",\"gtoSzE\":\"Bir etkinlik güncellendiğinde\",\"ny2r8d\":\"Bir sipariş iptal edildiğinde\",\"c9RYbv\":\"Bir sipariş ödendi olarak işaretlendiğinde\",\"ejMDw1\":\"Bir sipariş iade edildiğinde\",\"fVPt0F\":\"Bir sipariş güncellendiğinde\",\"bcYlvb\":\"Giriş kapandığında\",\"XIG669\":\"Giriş açıldığında\",\"403wpZ\":\"Etkinleştirildiğinde, yeni etkinlikler katılımcıların güvenli bir bağlantı üzerinden kendi bilet bilgilerini yönetmelerine izin verecektir. Bu etkinlik başına geçersiz kılınabilir.\",\"blXLKj\":\"Etkinleştirildiğinde, yeni etkinlikler ödeme sırasında pazarlama onay kutusu gösterecektir. Bu, etkinlik bazında geçersiz kılınabilir.\",\"Kj0Txn\":\"Etkinleştirildiğinde, Stripe Connect işlemlerinde uygulama ücreti alınmaz. Uygulama ücretlerinin desteklenmediği ülkeler için kullanın.\",\"tMqezN\":\"İadelerin işlenip işlenmediği\",\"uchB0M\":\"Widget Önizleme\",\"uvIqcj\":\"Atölye\",\"EpknJA\":\"Mesajınızı buraya yazın...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"yıl\",\"zkWmBh\":\"Yıllık\",\"+BGee5\":\"yıl\",\"X/azM1\":\"Evet - Geçerli bir AB KDV kayıt numaram var\",\"Tz5oXG\":\"Evet, siparişimi iptal et\",\"QlSZU0\":[\"<0>\",[\"0\"],\" (\",[\"1\"],\") rolünü üstleniyorsunuz\"],\"s14PLh\":[\"Kısmi iade yapıyorsunuz. Müşteriye \",[\"0\"],\" \",[\"1\"],\" iade edilecek.\"],\"o7LgX6\":\"Hesap ayarlarınızda ek hizmet ücretleri ve vergileri yapılandırabilirsiniz.\",\"rj3A7+\":\"Bunu daha sonra tek tek tarihler için geçersiz kılabilirsiniz.\",\"paWwQ0\":\"Gerekirse biletleri manuel olarak da sunabilirsiniz.\",\"jTDzpA\":\"Hesabınızdaki son aktif organizatörü arşivleyemezsiniz.\",\"5VGIlq\":\"Mesajlaşma limitinize ulaştınız.\",\"casL1O\":\"Ücretsiz Bir Ürüne eklenen vergiler ve ücretleriniz var. Bunları kaldırmak ister misiniz?\",\"9jJNZY\":\"Kaydetmeden önce sorumluluklarınızı kabul etmelisiniz\",\"pCLes8\":\"Mesaj almayı kabul etmelisiniz\",\"FVTVBy\":\"Organizatör durumunu güncelleyebilmek için e-posta adresinizi doğrulamanız gerekir.\",\"ze4bi/\":\"Bu yinelenen etkinliğe katılımcı eklemeden önce en az bir oturum oluşturmanız gerekir.\",\"w65ZgF\":\"E-posta şablonlarını değiştirebilmek için hesap e-postanızı doğrulamanız gerekir.\",\"FRl8Jv\":\"Mesaj göndermeden önce hesap e-postanızı doğrulamanız gerekir.\",\"88cUW+\":\"Aldığınız\",\"O6/3cu\":\"Bir sonraki adımda tarihleri, programları ve yineleme kurallarını ayarlayabileceksiniz.\",\"zKAheG\":\"Oturum saatlerini değiştiriyorsunuz\",\"MNFIxz\":[[\"0\"],\"'e gidiyorsunuz!\"],\"qGZz0m\":\"Bekleme listesine eklendi!\",\"/5HL6k\":\"Size bir yer teklif edildi!\",\"gbjFFH\":\"Oturum saatini değiştirdiniz\",\"p/Sa0j\":\"Hesabınızın mesajlaşma limitleri var. Limitinizi artırmak için bizimle iletişime geçin\",\"x/xjzn\":\"Bağlı kuruluşlarınız başarıyla dışa aktarıldı.\",\"TF37u6\":\"Katılımcılarınız başarıyla dışa aktarıldı.\",\"79lXGw\":\"Giriş listeniz başarıyla oluşturuldu. Aşağıdaki bağlantıyı giriş personelinizle paylaşın.\",\"BnlG9U\":\"Mevcut siparişiniz kaybolacak.\",\"nBqgQb\":\"E-postanız\",\"GG1fRP\":\"Etkinliğiniz yayında!\",\"ifRqmm\":\"Mesajınız başarıyla gönderildi!\",\"0/+Nn9\":\"Mesajlarınız burada görünecek\",\"/Rj5P4\":\"Adınız\",\"PFjJxY\":\"Yeni şifreniz en az 8 karakter uzunluğunda olmalıdır.\",\"gzrCuN\":\"Sipariş bilgileriniz güncellendi. Yeni e-posta adresine bir onay e-postası gönderildi.\",\"naQW82\":\"Siparişiniz iptal edildi.\",\"bhlHm/\":\"Siparişiniz ödeme bekliyor\",\"XeNum6\":\"Siparişleriniz başarıyla dışa aktarıldı.\",\"Xd1R1a\":\"Organizatör adresiniz\",\"WWYHKD\":\"Ödemeniz banka düzeyinde şifreleme ile korunmaktadır\",\"5b3QLi\":\"Planınız\",\"N4Zkqc\":\"Kaydettiğiniz tarih filtresi artık mevcut değil — tüm tarihler gösteriliyor.\",\"FNO5uZ\":\"Biletiniz hâlâ geçerli — yeni saat size uymadıkça herhangi bir işlem yapmanıza gerek yok. Sorularınız varsa lütfen bu e-postayı yanıtlayın.\",\"CnZ3Ou\":\"Biletleriniz onaylandı.\",\"EmFsMZ\":\"KDV numaranız doğrulama için sıraya alındı\",\"QBlhh4\":\"KDV numaranız kaydettiğinizde doğrulanacak\",\"fT9VLt\":\"Bekleme listesi teklifinizin süresi doldu ve siparişinizi tamamlayamadık. Daha fazla yer açıldığında bilgilendirilmek için lütfen bekleme listesine yeniden katılın.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Henüz gösterilecek bir şey yok'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>başarıyla check-out yaptı\"],\"KMgp2+\":[[\"0\"],\" mevcut\"],\"Pmr5xp\":[[\"0\"],\" başarıyla oluşturuldu\"],\"FImCSc\":[[\"0\"],\" başarıyla güncellendi\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" gün, \",[\"hours\"],\" saat, \",[\"minutes\"],\" dakika ve \",[\"seconds\"],\" saniye\"],\"f3RdEk\":[[\"hours\"],\" saat, \",[\"minutes\"],\" dakika ve \",[\"seconds\"],\" saniye\"],\"fyE7Au\":[[\"minutes\"],\" dakika ve \",[\"seconds\"],\" saniye\"],\"NlQ0cx\":[[\"organizerName\"],\"'ın ilk etkinliği\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://siteniz.com\",\"qnSLLW\":\"<0>Lütfen vergiler ve ücretler hariç fiyatı girin.<1>Vergi ve ücretler aşağıdan eklenebilir.\",\"ZjMs6e\":\"<0>Bu ürün için mevcut ürün sayısı<1>Bu değer, bu ürünle ilişkili <2>Kapasite Sınırları varsa geçersiz kılınabilir.\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 dakika ve 0 saniye\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Ana Cadde\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Tarih girişi. Doğum tarihi sormak gibi durumlar için mükemmel.\",\"6euFZ/\":[\"Varsayılan \",[\"type\"],\" otomatik olarak tüm yeni ürünlere uygulanır. Bunu ürün bazında geçersiz kılabilirsiniz.\"],\"SMUbbQ\":\"Açılır menü sadece tek seçime izin verir\",\"qv4bfj\":\"Rezervasyon ücreti veya hizmet ücreti gibi bir ücret\",\"POT0K/\":\"Ürün başına sabit miktar. Örn. ürün başına 0,50 $\",\"f4vJgj\":\"Çok satırlı metin girişi\",\"OIPtI5\":\"Ürün fiyatının yüzdesi. Örn. ürün fiyatının %3,5'i\",\"ZthcdI\":\"İndirim olmayan promosyon kodu gizli ürünleri göstermek için kullanılabilir.\",\"AG/qmQ\":\"Radyo seçeneği birden fazla seçenek sunar ancak sadece biri seçilebilir.\",\"h179TP\":\"Arama motoru sonuçlarında ve sosyal medyada paylaşılırken gösterilecek etkinliğin kısa açıklaması. Varsayılan olarak etkinlik açıklaması kullanılır\",\"WKMnh4\":\"Tek satırlı metin girişi\",\"BHZbFy\":\"Sipariş başına tek soru. Örn. Teslimat adresiniz nedir?\",\"Fuh+dI\":\"Ürün başına tek soru. Örn. Tişört bedeniniz nedir?\",\"RlJmQg\":\"KDV veya ÖTV gibi standart vergi\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Banka havalesi, çek veya diğer çevrimdışı ödeme yöntemlerini kabul et\",\"hrvLf4\":\"Stripe ile kredi kartı ödemelerini kabul et\",\"bfXQ+N\":\"Davetiyeyi Kabul Et\",\"AeXO77\":\"Hesap\",\"lkNdiH\":\"Hesap Adı\",\"Puv7+X\":\"Hesap Ayarları\",\"OmylXO\":\"Hesap başarıyla güncellendi\",\"7L01XJ\":\"İşlemler\",\"FQBaXG\":\"Etkinleştir\",\"5T2HxQ\":\"Etkinleştirme tarihi\",\"F6pfE9\":\"Etkin\",\"/PN1DA\":\"Bu check-in listesi için açıklama ekleyin\",\"0/vPdA\":\"Katılımcı hakkında not ekleyin. Bunlar katılımcı tarafından görülmeyecektir.\",\"Or1CPR\":\"Katılımcı hakkında not ekleyin...\",\"l3sZO1\":\"Sipariş hakkında not ekleyin. Bunlar müşteri tarafından görülmeyecektir.\",\"xMekgu\":\"Sipariş hakkında not ekleyin...\",\"PGPGsL\":\"Açıklama ekle\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Çevrimdışı ödemeler için talimatlar ekleyin (örn. banka havalesi detayları, çeklerin nereye gönderileceği, ödeme tarihleri)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Yeni Ekle\",\"TZxnm8\":\"Seçenek Ekle\",\"24l4x6\":\"Ürün Ekle\",\"8q0EdE\":\"Kategoriye Ürün Ekle\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Vergi veya Ücret Ekle\",\"goOKRY\":\"Kademe ekle\",\"oZW/gT\":\"Takvime Ekle\",\"pn5qSs\":\"Ek Bilgiler\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adres\",\"NY/x1b\":\"Adres satırı 1\",\"POdIrN\":\"Adres Satırı 1\",\"cormHa\":\"Adres satırı 2\",\"gwk5gg\":\"Adres Satırı 2\",\"U3pytU\":\"Yönetici\",\"HLDaLi\":\"Yönetici kullanıcılar etkinliklere ve hesap ayarlarına tam erişime sahiptir.\",\"W7AfhC\":\"Bu etkinliğin tüm katılımcıları\",\"cde2hc\":\"Tüm Ürünler\",\"5CQ+r0\":\"Ödenmemiş siparişlerle ilişkili katılımcıların check-in yapmasına izin ver\",\"ipYKgM\":\"Arama motoru indekslemesine izin ver\",\"LRbt6D\":\"Arama motorlarının bu etkinliği indekslemesine izin ver\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Harika, Etkinlik, Anahtar Kelimeler...\",\"hehnjM\":\"Miktar\",\"R2O9Rg\":[\"Ödenen miktar (\",[\"0\"],\")\"],\"V7MwOy\":\"Sayfa yüklenirken bir hata oluştu\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Beklenmeyen bir hata oluştu.\",\"byKna+\":\"Beklenmeyen bir hata oluştu. Lütfen tekrar deneyin.\",\"ubdMGz\":\"Ürün sahiplerinden gelen tüm sorular bu e-posta adresine gönderilecektir. Bu aynı zamanda bu etkinlikten gönderilen tüm e-postalar için \\\"yanıtla\\\" adresi olarak da kullanılacaktır\",\"aAIQg2\":\"Görünüm\",\"Ym1gnK\":\"uygulandı\",\"sy6fss\":[[\"0\"],\" ürüne uygulanır\"],\"kadJKg\":\"1 ürüne uygulanır\",\"DB8zMK\":\"Uygula\",\"GctSSm\":\"Promosyon Kodunu Uygula\",\"ARBThj\":[\"Bu \",[\"type\"],\"'ı tüm yeni ürünlere uygula\"],\"S0ctOE\":\"Etkinliği arşivle\",\"TdfEV7\":\"Arşivlendi\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Bu katılımcıyı etkinleştirmek istediğinizden emin misiniz?\",\"TvkW9+\":\"Bu etkinliği arşivlemek istediğinizden emin misiniz?\",\"/CV2x+\":\"Bu katılımcıyı iptal etmek istediğinizden emin misiniz? Bu işlem biletini geçersiz kılacaktır\",\"YgRSEE\":\"Bu promosyon kodunu silmek istediğinizden emin misiniz?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Bu etkinliği taslak yapmak istediğinizden emin misiniz? Bu işlem etkinliği halka görünmez yapacaktır\",\"mEHQ8I\":\"Bu etkinliği herkese açık yapmak istediğinizden emin misiniz? Bu işlem etkinliği halka görünür yapacaktır\",\"s4JozW\":\"Bu etkinliği geri yüklemek istediğinizden emin misiniz? Taslak etkinlik olarak geri yüklenecektir.\",\"vJuISq\":\"Bu Kapasite Atamasını silmek istediğinizden emin misiniz?\",\"baHeCz\":\"Bu Check-In Listesini silmek istediğinizden emin misiniz?\",\"LBLOqH\":\"Sipariş başına bir kez sor\",\"wu98dY\":\"Ürün başına bir kez sor\",\"ss9PbX\":\"Katılımcı\",\"m0CFV2\":\"Katılımcı Detayları\",\"QKim6l\":\"Katılımcı bulunamadı\",\"R5IT/I\":\"Katılımcı Notları\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Katılımcı Bileti\",\"9SZT4E\":\"Katılımcılar\",\"iPBfZP\":\"Kayıtlı Katılımcılar\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Otomatik Boyutlandır\",\"vZ5qKF\":\"Widget yüksekliğini içeriğe göre otomatik olarak boyutlandırır. Devre dışı bırakıldığında, widget kapsayıcının yüksekliğini dolduracaktır.\",\"4lVaWA\":\"Çevrimdışı ödeme bekleniyor\",\"2rHwhl\":\"Çevrimdışı Ödeme Bekleniyor\",\"3wF4Q/\":\"Ödeme bekleniyor\",\"ioG+xt\":\"Ödeme Bekleniyor\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Harika Organizatör Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Etkinlik sayfasına dön\",\"VCoEm+\":\"Girişe dön\",\"k1bLf+\":\"Arkaplan Rengi\",\"I7xjqg\":\"Arkaplan Türü\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Fatura Adresi\",\"/xC/im\":\"Fatura Ayarları\",\"rp/zaT\":\"Brezilya Portekizcesi\",\"whqocw\":\"Kayıt olarak <0>Hizmet Şartlarımızı ve <1>Gizlilik Politikasımızı kabul etmiş olursunuz.\",\"bcCn6r\":\"Hesaplama Türü\",\"+8bmSu\":\"Kaliforniya\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"İptal\",\"Gjt/py\":\"E-posta değişikliğini iptal et\",\"tVJk4q\":\"Siparişi iptal et\",\"Os6n2a\":\"Siparişi İptal Et\",\"Mz7Ygx\":[\"Sipariş \",[\"0\"],\"'ı İptal Et\"],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"İptal Edildi\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Kapasite\",\"V6Q5RZ\":\"Kapasite ataması başarıyla oluşturuldu\",\"k5p8dz\":\"Kapasite ataması başarıyla silindi\",\"nDBs04\":\"Kapasite yönetimi\",\"ddha3c\":\"Kategoriler ürünleri birlikte gruplandırmanızı sağlar. Örneğin, \\\"Biletler\\\" için bir kategori ve \\\"Ürünler\\\" için başka bir kategori oluşturabilirsiniz.\",\"iS0wAT\":\"Kategoriler ürünlerinizi düzenlemenize yardımcı olur. Bu başlık halka açık etkinlik sayfasında gösterilecektir.\",\"eorM7z\":\"Kategoriler başarıyla yeniden sıralandı.\",\"3EXqwa\":\"Kategori Başarıyla Oluşturuldu\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Şifre değiştir\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[[\"0\"],\" \",[\"1\"],\" check-in yap\"],\"D6+U20\":\"Check-in yap ve siparişi ödenmiş olarak işaretle\",\"QYLpB4\":\"Sadece check-in yap\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Bu etkinliğe göz atın!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Check-In Listesi başarıyla silindi\",\"+hBhWk\":\"Check-in listesinin süresi doldu\",\"mBsBHq\":\"Check-in listesi aktif değil\",\"vPqpQG\":\"Check-in listesi bulunamadı\",\"tejfAy\":\"Check-In Listeleri\",\"hD1ocH\":\"Check-In URL'si panoya kopyalandı\",\"CNafaC\":\"Onay kutusu seçenekleri çoklu seçime izin verir\",\"SpabVf\":\"Onay Kutuları\",\"CRu4lK\":\"Giriş Yapıldı\",\"znIg+z\":\"Ödeme\",\"1WnhCL\":\"Ödeme Ayarları\",\"6imsQS\":\"Çince (Basitleştirilmiş)\",\"JjkX4+\":\"Arkaplanınız için bir renk seçin\",\"/Jizh9\":\"Bir hesap seçin\",\"3wV73y\":\"Şehir\",\"FG98gC\":\"Arama Metnini Temizle\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Kopyalamak için tıklayın\",\"yz7wBu\":\"Kapat\",\"62Ciis\":\"Kenar çubuğunu kapat\",\"EWPtMO\":\"Kod\",\"ercTDX\":\"Kod 3 ile 50 karakter arasında olmalıdır\",\"oqr9HB\":\"Etkinlik sayfası ilk yüklendiğinde bu ürünü daralt\",\"jZlrte\":\"Renk\",\"Vd+LC3\":\"Renk geçerli bir hex renk kodu olmalıdır. Örnek: #ffffff\",\"1HfW/F\":\"Renkler\",\"VZeG/A\":\"Yakında\",\"yPI7n9\":\"Etkinliği tanımlayan virgülle ayrılmış anahtar kelimeler. Bunlar arama motorları tarafından etkinliği kategorize etmek ve indekslemek için kullanılacaktır\",\"NPZqBL\":\"Siparişi Tamamla\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Ödemeyi Tamamla\",\"qqWcBV\":\"Tamamlandı\",\"6HK5Ct\":\"Tamamlanan siparişler\",\"NWVRtl\":\"Tamamlanan Siparişler\",\"DwF9eH\":\"Bileşen Kodu\",\"Tf55h7\":\"Yapılandırılmış İndirim\",\"7VpPHA\":\"Onayla\",\"ZaEJZM\":\"E-posta Değişikliğini Onayla\",\"yjkELF\":\"Yeni Şifreyi Onayla\",\"xnWESi\":\"Şifreyi onayla\",\"p2/GCq\":\"Şifreyi Onayla\",\"wnDgGj\":\"E-posta adresi onaylanıyor...\",\"pbAk7a\":\"Stripe'ı Bağla\",\"UMGQOh\":\"Stripe ile Bağlan\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Bağlantı Detayları\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Devam Et\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Devam Butonu Metni\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Kopyalandı\",\"T5rdis\":\"panoya kopyalandı\",\"he3ygx\":\"Kopyala\",\"r2B2P8\":\"Check-In URL'sini Kopyala\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Linki Kopyala\",\"E6nRW7\":\"URL'yi Kopyala\",\"JNCzPW\":\"Ülke\",\"IF7RiR\":\"Kapak\",\"hYgDIe\":\"Oluştur\",\"b9XOHo\":[[\"0\"],\" Oluştur\"],\"k9RiLi\":\"Ürün Oluştur\",\"6kdXbW\":\"Promosyon Kodu Oluştur\",\"n5pRtF\":\"Bilet Oluştur\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"organizatör oluştur\",\"ipP6Ue\":\"Katılımcı Oluştur\",\"VwdqVy\":\"Kapasite Ataması Oluştur\",\"EwoMtl\":\"Kategori oluştur\",\"XletzW\":\"Kategori Oluştur\",\"WVbTwK\":\"Check-In Listesi Oluştur\",\"uN355O\":\"Etkinlik Oluştur\",\"BOqY23\":\"Yeni oluştur\",\"kpJAeS\":\"Organizatör Oluştur\",\"a0EjD+\":\"Ürün Oluştur\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Promosyon Kodu Oluştur\",\"B3Mkdt\":\"Soru Oluştur\",\"UKfi21\":\"Vergi veya Ücret Oluştur\",\"d+F6q9\":\"Oluşturuldu\",\"Q2lUR2\":\"Para Birimi\",\"DCKkhU\":\"Mevcut Şifre\",\"uIElGP\":\"Özel Harita URL'si\",\"UEqXyt\":\"Özel Aralık\",\"876pfE\":\"Müşteri\",\"QOg2Sf\":\"Bu etkinlik için e-posta ve bildirim ayarlarını özelleştirin\",\"Y9Z/vP\":\"Etkinlik ana sayfası ve ödeme mesajlarını özelleştirin\",\"2E2O5H\":\"Bu etkinlik için çeşitli ayarları özelleştirin\",\"iJhSxe\":\"Bu etkinlik için SEO ayarlarını özelleştirin\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Tehlike bölgesi\",\"ZQKLI1\":\"Tehlike Bölgesi\",\"7p5kLi\":\"Gösterge Paneli\",\"mYGY3B\":\"Tarih\",\"JvUngl\":\"Tarih ve Saat\",\"JJhRbH\":\"Birinci gün kapasitesi\",\"cnGeoo\":\"Sil\",\"jRJZxD\":\"Kapasiteyi Sil\",\"VskHIx\":\"Kategoriyi sil\",\"Qrc8RZ\":\"Check-In Listesini Sil\",\"WHf154\":\"Kodu sil\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Açıklama\",\"YC3oXa\":\"Check-in personeli için açıklama\",\"URmyfc\":\"Detaylar\",\"1lRT3t\":\"Bu kapasiteyi devre dışı bırakmak satışları takip edecek ancak limite ulaşıldığında onları durdurmayacaktır\",\"H6Ma8Z\":\"İndirim\",\"ypJ62C\":\"İndirim %\",\"3LtiBI\":[[\"0\"],\" cinsinden indirim\"],\"C8JLas\":\"İndirim Türü\",\"1QfxQT\":\"Kapat\",\"DZlSLn\":\"Belge Etiketi\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Bağış / İstediğiniz kadar öde ürünü\",\"OvNbls\":\".ics İndir\",\"kodV18\":\"CSV İndir\",\"CELKku\":\"Faturayı indir\",\"LQrXcu\":\"Faturayı İndir\",\"QIodqd\":\"QR Kodu İndir\",\"yhjU+j\":\"Fatura İndiriliyor\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Açılır seçim\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Etkinliği çoğalt\",\"3ogkAk\":\"Etkinliği Çoğalt\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Çoğaltma Seçenekleri\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Erken kuş\",\"ePK91l\":\"Düzenle\",\"N6j2JH\":[[\"0\"],\" Düzenle\"],\"kBkYSa\":\"Kapasiteyi Düzenle\",\"oHE9JT\":\"Kapasite Atamasını Düzenle\",\"j1Jl7s\":\"Kategoriyi düzenle\",\"FU1gvP\":\"Check-In Listesini Düzenle\",\"iFgaVN\":\"Kodu Düzenle\",\"jrBSO1\":\"Organizatörü Düzenle\",\"tdD/QN\":\"Ürünü Düzenle\",\"n143Tq\":\"Ürün Kategorisini Düzenle\",\"9BdS63\":\"Promosyon Kodunu Düzenle\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Soruyu Düzenle\",\"poTr35\":\"Kullanıcıyı düzenle\",\"GTOcxw\":\"Kullanıcıyı Düzenle\",\"pqFrv2\":\"örn. $2.50 için 2.50\",\"3yiej1\":\"örn. %23.5 için 23.5\",\"O3oNi5\":\"E-posta\",\"VxYKoK\":\"E-posta ve Bildirim Ayarları\",\"ATGYL1\":\"E-posta adresi\",\"hzKQCy\":\"E-posta Adresi\",\"HqP6Qf\":\"E-posta değişikliği başarıyla iptal edildi\",\"mISwW1\":\"E-posta değişikliği beklemede\",\"APuxIE\":\"E-posta onayı yeniden gönderildi\",\"YaCgdO\":\"E-posta onayı başarıyla yeniden gönderildi\",\"jyt+cx\":\"E-posta alt bilgi mesajı\",\"I6F3cp\":\"E-posta doğrulanmamış\",\"NTZ/NX\":\"Gömme Kodu\",\"4rnJq4\":\"Gömme Scripti\",\"8oPbg1\":\"Faturalamayı Etkinleştir\",\"j6w7d/\":\"Limite ulaşıldığında ürün satışlarını durdurmak için bu kapasiteyi etkinleştir\",\"VFv2ZC\":\"Bitiş Tarihi\",\"237hSL\":\"Sona Erdi\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"İngilizce\",\"MhVoma\":\"Vergiler ve ücretler hariç bir tutar girin.\",\"SlfejT\":\"Hata\",\"3Z223G\":\"E-posta adresini onaylama hatası\",\"a6gga1\":\"E-posta değişikliğini onaylama hatası\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Etkinlik\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Etkinlik Tarihi\",\"0Zptey\":\"Etkinlik Varsayılanları\",\"QcCPs8\":\"Etkinlik Detayları\",\"6fuA9p\":\"Etkinlik başarıyla çoğaltıldı\",\"AEuj2m\":\"Etkinlik Ana Sayfası\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Etkinlik konumu ve mekan detayları\",\"OopDbA\":\"Event page\",\"4/If97\":\"Etkinlik durumu güncellenemedi. Lütfen daha sonra tekrar deneyin\",\"btxLWj\":\"Etkinlik durumu güncellendi\",\"nMU2d3\":\"Etkinlik URL'si\",\"tst44n\":\"Etkinlikler\",\"sZg7s1\":\"Son kullanım tarihi\",\"KnN1Tu\":\"Süresi Doluyor\",\"uaSvqt\":\"Son Kullanım Tarihi\",\"GS+Mus\":\"Dışa Aktar\",\"9xAp/j\":\"Katılımcı iptal edilemedi\",\"ZpieFv\":\"Sipariş iptal edilemedi\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Fatura indirilemedi. Lütfen tekrar deneyin.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Giriş Listesi yüklenemedi\",\"ZQ15eN\":\"Bilet e-postası yeniden gönderilemedi\",\"ejXy+D\":\"Ürünler sıralanamadı\",\"PLUB/s\":\"Ücret\",\"/mfICu\":\"Ücretler\",\"LyFC7X\":\"Siparişleri Filtrele\",\"cSev+j\":\"Filtreler\",\"CVw2MU\":[\"Filtreler (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"İlk Fatura Numarası\",\"V1EGGU\":\"Ad\",\"kODvZJ\":\"Ad\",\"S+tm06\":\"Ad 1 ile 50 karakter arasında olmalıdır\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"İlk Kullanım\",\"TpqW74\":\"Sabit\",\"irpUxR\":\"Sabit tutar\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Şifrenizi mi unuttunuz?\",\"2POOFK\":\"Ücretsiz\",\"P/OAYJ\":\"Ücretsiz Ürün\",\"vAbVy9\":\"Ücretsiz ürün, ödeme bilgisi gerekli değil\",\"nLC6tu\":\"Fransızca\",\"Weq9zb\":\"Genel\",\"DDcvSo\":\"Almanca\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Profile geri dön\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Takvim\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Brüt satışlar\",\"yRg26W\":\"Brüt Satışlar\",\"R4r4XO\":\"Misafirler\",\"26pGvx\":\"Promosyon kodunuz var mı?\",\"V7yhws\":\"merhaba@harika-etkinlikler.com\",\"6K/IHl\":\"İşte bileşeni uygulamanızda nasıl kullanabileceğinize dair bir örnek.\",\"Y1SSqh\":\"İşte widget'ı uygulamanıza yerleştirmek için kullanabileceğiniz React bileşeni.\",\"QuhVpV\":[\"Merhaba \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Halk görünümünden gizli\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Gizli sorular yalnızca etkinlik organizatörü tarafından görülebilir, müşteri tarafından görülemez.\",\"vLyv1R\":\"Gizle\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Satış bitiş tarihinden sonra ürünü gizle\",\"06s3w3\":\"Satış başlama tarihinden önce ürünü gizle\",\"axVMjA\":\"Kullanıcının uygun promosyon kodu yoksa ürünü gizle\",\"ySQGHV\":\"Tükendiğinde ürünü gizle\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Bu ürünü müşterilerden gizle\",\"Da29Y6\":\"Bu soruyu gizle\",\"fvDQhr\":\"Bu katmanı kullanıcılardan gizle\",\"lNipG+\":\"Bir ürünü gizlemek, kullanıcıların onu etkinlik sayfasında görmesini engeller.\",\"ZOBwQn\":\"Ana Sayfa Tasarımı\",\"PRuBTd\":\"Ana Sayfa Tasarımcısı\",\"YjVNGZ\":\"Ana Sayfa Önizlemesi\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Müşterinin siparişini tamamlamak için kaç dakikası var. En az 15 dakika öneriyoruz\",\"ySxKZe\":\"Bu kod kaç kez kullanılabilir?\",\"dZsDbK\":[\"HTML karakter sınırı aşıldı: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://ornek-harita-servisi.com/...\",\"uOXLV3\":\"<0>Şartlar ve koşulları kabul ediyorum\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Etkinleştirilirse, check-in personeli katılımcıları check-in yaptı olarak işaretleyebilir veya siparişi ödenmiş olarak işaretleyip katılımcıları check-in yapabilir. Devre dışıysa, ödenmemiş siparişlerle ilişkili katılımcılar check-in yapamazlar.\",\"muXhGi\":\"Etkinleştirilirse, yeni bir sipariş verildiğinde organizatör e-posta bildirimi alacak\",\"6fLyj/\":\"Bu değişikliği talep etmediyseniz, lütfen hemen şifrenizi değiştirin.\",\"n/ZDCz\":\"Resim başarıyla silindi\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Resim başarıyla yüklendi\",\"VyUuZb\":\"Resim URL'si\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Pasif\",\"T0K0yl\":\"Pasif kullanıcılar giriş yapamazlar.\",\"kO44sp\":\"Çevrimiçi etkinliğiniz için bağlantı detaylarını ekleyin. Bu detaylar sipariş özeti sayfasında ve katılımcı bilet sayfasında gösterilecektir.\",\"FlQKnG\":\"Fiyata vergi ve ücretleri dahil et\",\"Vi+BiW\":[[\"0\"],\" ürün içerir\"],\"lpm0+y\":\"1 ürün içerir\",\"UiAk5P\":\"Resim Ekle\",\"OyLdaz\":\"Davet yeniden gönderildi!\",\"HE6KcK\":\"Davet iptal edildi!\",\"SQKPvQ\":\"Kullanıcı Davet Et\",\"bKOYkd\":\"Fatura başarıyla indirildi\",\"alD1+n\":\"Fatura Notları\",\"kOtCs2\":\"Fatura Numaralandırma\",\"UZ2GSZ\":\"Fatura Ayarları\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Öğe\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etiket\",\"vXIe7J\":\"Dil\",\"2LMsOq\":\"Son 12 ay\",\"vfe90m\":\"Son 14 gün\",\"aK4uBd\":\"Son 24 saat\",\"uq2BmQ\":\"Son 30 gün\",\"bB6Ram\":\"Son 48 saat\",\"VlnB7s\":\"Son 6 ay\",\"ct2SYD\":\"Son 7 gün\",\"XgOuA7\":\"Son 90 gün\",\"I3yitW\":\"Son giriş\",\"1ZaQUH\":\"Soyad\",\"UXBCwc\":\"Soyad\",\"tKCBU0\":\"Son Kullanım\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Varsayılan \\\"Fatura\\\" kelimesini kullanmak için boş bırakın\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Yükleniyor...\",\"wJijgU\":\"Konum\",\"sQia9P\":\"Giriş yap\",\"zUDyah\":\"Giriş yapılıyor\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Çıkış\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Ödeme sırasında fatura adresini zorunlu kıl\",\"MU3ijv\":\"Bu soruyu zorunlu kıl\",\"wckWOP\":\"Yönet\",\"onpJrA\":\"Katılımcıyı yönet\",\"n4SpU5\":\"Etkinliği yönet\",\"WVgSTy\":\"Siparişi yönet\",\"1MAvUY\":\"Bu etkinlik için ödeme ve faturalama ayarlarını yönet.\",\"cQrNR3\":\"Profili Yönet\",\"AtXtSw\":\"Ürünlerinize uygulanabilecek vergi ve ücretleri yönetin\",\"ophZVW\":\"Biletleri yönet\",\"DdHfeW\":\"Hesap bilgilerinizi ve varsayılan ayarlarını yönetin\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Kullanıcılarınızı ve izinlerini yönetin\",\"1m+YT2\":\"Zorunlu sorular müşteri ödeme yapmadan önce cevaplanmalıdır.\",\"Dim4LO\":\"Manuel olarak Katılımcı ekle\",\"e4KdjJ\":\"Manuel Katılımcı Ekle\",\"vFjEnF\":\"Ödendi olarak işaretle\",\"g9dPPQ\":\"Sipariş Başına Maksimum\",\"l5OcwO\":\"Katılımcıya mesaj gönder\",\"Gv5AMu\":\"Katılımcılara Mesaj\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Alıcıya mesaj gönder\",\"tNZzFb\":\"Mesaj içeriği\",\"lYDV/s\":\"Bireysel katılımcılara mesaj gönder\",\"V7DYWd\":\"Mesaj Gönderildi\",\"t7TeQU\":\"Mesajlar\",\"xFRMlO\":\"Sipariş Başına Minimum\",\"QYcUEf\":\"Minimum Fiyat\",\"RDie0n\":\"Çeşitli\",\"mYLhkl\":\"Çeşitli Ayarlar\",\"KYveV8\":\"Çok satırlı metin kutusu\",\"VD0iA7\":\"Çoklu fiyat seçenekleri. Erken kayıt ürünleri vb. için mükemmel.\",\"/bhMdO\":\"Harika etkinlik açıklamam...\",\"vX8/tc\":\"Harika etkinlik başlığım...\",\"hKtWk2\":\"Profilim\",\"fj5byd\":\"Yok\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Ad\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Katılımcıya Git\",\"qqeAJM\":\"Asla\",\"7vhWI8\":\"Yeni Şifre\",\"1UzENP\":\"Hayır\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Gösterilecek arşivlenmiş etkinlik yok.\",\"q2LEDV\":\"Bu sipariş için katılımcı bulunamadı.\",\"zlHa5R\":\"Bu siparişe katılımcı eklenmemiş.\",\"Wjz5KP\":\"Gösterilecek Katılımcı yok\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Kapasite Ataması Yok\",\"a/gMx2\":\"Check-In Listesi Yok\",\"tMFDem\":\"Veri mevcut değil\",\"6Z/F61\":\"Gösterilecek veri yok. Lütfen bir tarih aralığı seçin\",\"fFeCKc\":\"İndirim Yok\",\"HFucK5\":\"Gösterilecek sona ermiş etkinlik yok.\",\"yAlJXG\":\"Gösterilecek etkinlik yok\",\"GqvPcv\":\"Filtre mevcut değil\",\"KPWxKD\":\"Gösterilecek mesaj yok\",\"J2LkP8\":\"Gösterilecek sipariş yok\",\"RBXXtB\":\"Şu anda hiçbir ödeme yöntemi mevcut değil. Yardım için etkinlik organizatörüyle iletişime geçin.\",\"ZWEfBE\":\"Ödeme Gerekli Değil\",\"ZPoHOn\":\"Bu katılımcı ile ilişkili ürün yok.\",\"Ya1JhR\":\"Bu kategoride mevcut ürün yok.\",\"FTfObB\":\"Henüz Ürün Yok\",\"+Y976X\":\"Gösterilecek Promosyon Kodu yok\",\"MAavyl\":\"Bu katılımcı tarafından cevaplanan soru yok.\",\"SnlQeq\":\"Bu sipariş için hiçbir soru sorulmamış.\",\"Ev2r9A\":\"Sonuç yok\",\"gk5uwN\":\"Arama Sonucu Yok\",\"RHyZUL\":\"Arama sonucu yok.\",\"RY2eP1\":\"Hiçbir Vergi veya Ücret eklenmemiş.\",\"EdQY6l\":\"Hiçbiri\",\"OJx3wK\":\"Mevcut değil\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Notlar\",\"jtrY3S\":\"Henüz gösterilecek bir şey yok\",\"hFwWnI\":\"Bildirim Ayarları\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Organizatörü yeni siparişler hakkında bilgilendir\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Ödeme için izin verilen gün sayısı (faturalardan ödeme koşullarını çıkarmak için boş bırakın)\",\"n86jmj\":\"Numara Öneki\",\"mwe+2z\":\"Çevrimdışı siparişler, sipariş ödendi olarak işaretlenene kadar etkinlik istatistiklerine yansıtılmaz.\",\"dWBrJX\":\"Çevrimdışı ödeme başarısız. Lütfen tekrar deneyin veya etkinlik organizatörüyle iletişime geçin.\",\"fcnqjw\":\"Çevrimdışı Ödeme Talimatları\",\"+eZ7dp\":\"Çevrimdışı Ödemeler\",\"ojDQlR\":\"Çevrimdışı Ödemeler Bilgisi\",\"u5oO/W\":\"Çevrimdışı Ödemeler Ayarları\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"Satışta\",\"Ug4SfW\":\"Bir etkinlik oluşturduğunuzda, burada göreceksiniz.\",\"ZxnK5C\":\"Veri toplamaya başladığınızda, burada göreceksiniz.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Devam Eden\",\"z+nuVJ\":\"Çevrimiçi etkinlik\",\"WKHW0N\":\"Online Etkinlik Detayları\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Check-In Sayfasını Aç\",\"OdnLE4\":\"Kenar çubuğunu aç\",\"ZZEYpT\":[\"Seçenek \",[\"i\"]],\"oPknTP\":\"Tüm faturalarda görünecek isteğe bağlı ek bilgiler (örn., ödeme koşulları, gecikme ücreti, iade politikası)\",\"OrXJBY\":\"Fatura numaraları için isteğe bağlı önek (örn., FAT-)\",\"0zpgxV\":\"Seçenekler\",\"BzEFor\":\"veya\",\"UYUgdb\":\"Sipariş\",\"mm+eaX\":\"Sipariş #\",\"B3gPuX\":\"Sipariş İptal Edildi\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Sipariş Tarihi\",\"Tol4BF\":\"Sipariş Detayları\",\"WbImlQ\":\"Sipariş iptal edildi ve sipariş sahibi bilgilendirildi.\",\"nAn4Oe\":\"Sipariş ödendi olarak işaretlendi\",\"uzEfRz\":\"Sipariş Notları\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Sipariş Referansı\",\"acIJ41\":\"Sipariş Durumu\",\"GX6dZv\":\"Sipariş Özeti\",\"tDTq0D\":\"Sipariş zaman aşımı\",\"1h+RBg\":\"Siparişler\",\"3y+V4p\":\"Organizasyon Adresi\",\"GVcaW6\":\"Organizasyon Detayları\",\"nfnm9D\":\"Organizasyon Adı\",\"G5RhpL\":\"Organizatör\",\"mYygCM\":\"Organizatör gereklidir\",\"Pa6G7v\":\"Organizatör Adı\",\"l894xP\":\"Organizatörler yalnızca etkinlikleri ve ürünleri yönetebilir. Kullanıcıları, hesap ayarlarını veya fatura bilgilerini yönetemezler.\",\"fdjq4c\":\"İç Boşluk\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Sayfa bulunamadı\",\"QbrUIo\":\"Sayfa görüntüleme\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"ödendi\",\"HVW65c\":\"Ücretli Ürün\",\"ZfxaB4\":\"Kısmen İade Edildi\",\"8ZsakT\":\"Şifre\",\"TUJAyx\":\"Şifre en az 8 karakter olmalıdır\",\"vwGkYB\":\"Şifre en az 8 karakter olmalıdır\",\"BLTZ42\":\"Şifre başarıyla sıfırlandı. Lütfen yeni şifrenizle giriş yapın.\",\"f7SUun\":\"Şifreler aynı değil\",\"aEDp5C\":\"Widget'ın görünmesini istediğiniz yere bunu yapıştırın.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Ödeme\",\"Lg+ewC\":\"Ödeme ve Faturalama\",\"DZjk8u\":\"Ödeme ve Faturalama Ayarları\",\"lflimf\":\"Ödeme Vade Süresi\",\"JhtZAK\":\"Ödeme Başarısız\",\"JEdsvQ\":\"Ödeme Talimatları\",\"bLB3MJ\":\"Ödeme Yöntemleri\",\"QzmQBG\":\"Ödeme sağlayıcısı\",\"lsxOPC\":\"Ödeme Alındı\",\"wJTzyi\":\"Ödeme Durumu\",\"xgav5v\":\"Ödeme başarılı!\",\"R29lO5\":\"Ödeme Koşulları\",\"/roQKz\":\"Yüzde\",\"vPJ1FI\":\"Yüzde Miktarı\",\"xdA9ud\":\"Bunu web sitenizin bölümüne yerleştirin.\",\"blK94r\":\"Lütfen en az bir seçenek ekleyin\",\"FJ9Yat\":\"Lütfen verilen bilgilerin doğru olduğunu kontrol edin\",\"TkQVup\":\"Lütfen e-posta ve şifrenizi kontrol edin ve tekrar deneyin\",\"sMiGXD\":\"Lütfen e-postanızın geçerli olduğunu kontrol edin\",\"Ajavq0\":\"E-posta adresinizi onaylamak için lütfen e-postanızı kontrol edin\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Lütfen yeni sekmede devam edin\",\"hcX103\":\"Lütfen bir ürün oluşturun\",\"cdR8d6\":\"Lütfen bir bilet oluşturun\",\"x2mjl4\":\"Lütfen bir resme işaret eden geçerli bir resim URL'si girin.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Lütfen Dikkat\",\"C63rRe\":\"Baştan başlamak için lütfen etkinlik sayfasına dönün.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Lütfen en az bir ürün seçin\",\"igBrCH\":\"Tüm özelliklere erişmek için lütfen e-posta adresinizi doğrulayın\",\"/IzmnP\":\"Faturanızı hazırlarken lütfen bekleyin...\",\"MOERNx\":\"Portekizce\",\"qCJyMx\":\"Ödeme sonrası mesaj\",\"g2UNkE\":\"Tarafından desteklenmektedir\",\"Rs7IQv\":\"Ödeme öncesi mesaj\",\"rdUucN\":\"Önizleme\",\"a7u1N9\":\"Fiyat\",\"CmoB9j\":\"Fiyat görünüm modu\",\"BI7D9d\":\"Fiyat belirlenmedi\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Fiyat Türü\",\"6RmHKN\":\"Ana Renk\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Ana Metin Rengi\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Tüm Biletleri Yazdır\",\"DKwDdj\":\"Biletleri Yazdır\",\"K47k8R\":\"Ürün\",\"1JwlHk\":\"Ürün Kategorisi\",\"U61sAj\":\"Ürün kategorisi başarıyla güncellendi.\",\"1USFWA\":\"Ürün başarıyla silindi\",\"4Y2FZT\":\"Ürün Fiyat Türü\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Ürün Satışları\",\"U/R4Ng\":\"Ürün Katmanı\",\"sJsr1h\":\"Ürün Türü\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Ürün(ler)\",\"N0qXpE\":\"Ürünler\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Satılan ürünler\",\"/u4DIx\":\"Satılan Ürünler\",\"DJQEZc\":\"Ürünler başarıyla sıralandı\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil başarıyla güncellendi\",\"cl5WYc\":[\"Promosyon \",[\"promo_code\"],\" kodu uygulandı\"],\"P5sgAk\":\"Promosyon Kodu\",\"yKWfjC\":\"Promosyon Kodu sayfası\",\"RVb8Fo\":\"Promosyon Kodları\",\"BZ9GWa\":\"Promosyon kodları indirim sunmak, ön satış erişimi veya etkinliğinize özel erişim sağlamak için kullanılabilir.\",\"OP094m\":\"Promosyon Kodları Raporu\",\"4kyDD5\":\"Bu soru için ek bağlam veya talimatlar sağlayın. Şartlar ve koşullar, kurallar veya katılımcıların yanıt vermeden önce bilmesi\\ngereken önemli bilgileri eklemek için bu alanı kullanın.\",\"toutGW\":\"QR Kod\",\"LkMOWF\":\"Mevcut Miktar\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Soru silindi\",\"avf0gk\":\"Soru Açıklaması\",\"oQvMPn\":\"Soru Başlığı\",\"enzGAL\":\"Sorular\",\"ROv2ZT\":\"Sorular ve Cevaplar\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radyo Seçeneği\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Alıcı\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"İade Başarısız\",\"n10yGu\":\"Siparişi iade et\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"İade Bekliyor\",\"xHpVRl\":\"İade Durumu\",\"/BI0y9\":\"İade Edildi\",\"fgLNSM\":\"Kayıt Ol\",\"9+8Vez\":\"Kalan Kullanım\",\"tasfos\":\"kaldır\",\"t/YqKh\":\"Kaldır\",\"t9yxlZ\":\"Raporlar\",\"prZGMe\":\"Fatura Adresi Gerekli\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"E-posta onayını tekrar gönder\",\"wIa8Qe\":\"Daveti tekrar gönder\",\"VeKsnD\":\"Sipariş e-postasını tekrar gönder\",\"dFuEhO\":\"Bilet e-postasını tekrar gönder\",\"o6+Y6d\":\"Tekrar gönderiliyor...\",\"OfhWJH\":\"Sıfırla\",\"RfwZxd\":\"Şifreyi sıfırla\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Etkinliği geri yükle\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Etkinlik Sayfasına Dön\",\"8YBH95\":\"Gelir\",\"PO/sOY\":\"Daveti iptal et\",\"GDvlUT\":\"Rol\",\"ELa4O9\":\"Satış Bitiş Tarihi\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Satış Başlangıç Tarihi\",\"hBsw5C\":\"Satış bitti\",\"kpAzPe\":\"Satış başlangıcı\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Kaydet\",\"IUwGEM\":\"Değişiklikleri Kaydet\",\"U65fiW\":\"Organizatörü Kaydet\",\"UGT5vp\":\"Ayarları Kaydet\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Katılımcı adı, e-posta veya sipariş #'a göre ara...\",\"+pr/FY\":\"Etkinlik adına göre ara...\",\"3zRbWw\":\"Ad, e-posta veya sipariş #'a göre ara...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Ada göre ara...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Kapasite atamalarını ara...\",\"r9M1hc\":\"Check-in listelerini ara...\",\"+0Yy2U\":\"Ürünleri ara\",\"YIix5Y\":\"Ara...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"İkincil Renk\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"İkincil Metin Rengi\",\"02ePaq\":[[\"0\"],\" seç\"],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Kategori seç...\",\"kWI/37\":\"Organizatör seç\",\"ixIx1f\":\"Ürün Seç\",\"3oSV95\":\"Ürün Katmanı Seç\",\"C4Y1hA\":\"Ürünleri seç\",\"hAjDQy\":\"Durum seç\",\"QYARw/\":\"Bilet Seç\",\"OMX4tH\":\"Biletleri seç\",\"DrwwNd\":\"Zaman aralığı seç\",\"O/7I0o\":\"Seç...\",\"JlFcis\":\"Gönder\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Mesaj gönder\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Mesaj Gönder\",\"D7ZemV\":\"Sipariş onayı ve bilet e-postası gönder\",\"v1rRtW\":\"Test Gönder\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO Açıklaması\",\"/SIY6o\":\"SEO Anahtar Kelimeleri\",\"GfWoKv\":\"SEO Ayarları\",\"rXngLf\":\"SEO Başlığı\",\"/jZOZa\":\"Hizmet Ücreti\",\"Bj/QGQ\":\"Minimum fiyat belirleyin ve kullanıcılar isterlerse daha fazla ödesin\",\"L0pJmz\":\"Fatura numaralandırması için başlangıç numarasını ayarlayın. Faturalar oluşturulduktan sonra bu değiştirilemez.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Ayarlar\",\"Z8lGw6\":\"Paylaş\",\"B2V3cA\":\"Etkinliği Paylaş\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Mevcut ürün miktarını göster\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Daha fazla göster\",\"izwOOD\":\"Vergi ve ücretleri ayrı göster\",\"1SbbH8\":\"Müşteriye ödeme yaptıktan sonra sipariş özeti sayfasında gösterilir.\",\"YfHZv0\":\"Müşteriye ödeme yapmadan önce gösterilir\",\"CBBcly\":\"Ülke dahil olmak üzere ortak adres alanlarını gösterir\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Tek satır metin kutusu\",\"+P0Cn2\":\"Bu adımı atla\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Tükendi\",\"Mi1rVn\":\"Tükendi\",\"nwtY4N\":\"Bir şeyler yanlış gitti\",\"GRChTw\":\"Vergi veya Ücret silinirken bir şeyler yanlış gitti\",\"YHFrbe\":\"Bir şeyler yanlış gitti! Lütfen tekrar deneyin\",\"kf83Ld\":\"Bir şeyler yanlış gitti.\",\"fWsBTs\":\"Bir şeyler yanlış gitti. Lütfen tekrar deneyin.\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Üzgünüz, bu promosyon kodu tanınmıyor\",\"65A04M\":\"İspanyolca\",\"mFuBqb\":\"Sabit fiyatlı standart ürün\",\"D3iCkb\":\"Başlangıç Tarihi\",\"/2by1f\":\"Eyalet veya Bölge\",\"uAQUqI\":\"Durum\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Bu etkinlik için Stripe ödemeleri etkinleştirilmemiş.\",\"UJmAAK\":\"Konu\",\"X2rrlw\":\"Ara Toplam\",\"zzDlyQ\":\"Başarılı\",\"b0HJ45\":[\"Başarılı! \",[\"0\"],\" kısa süre içinde bir e-posta alacak.\"],\"BJIEiF\":[\"Katılımcı başarıyla \",[\"0\"]],\"OtgNFx\":\"E-posta adresi başarıyla onaylandı\",\"IKwyaF\":\"E-posta değişikliği başarıyla onaylandı\",\"zLmvhE\":\"Katılımcı başarıyla oluşturuldu\",\"gP22tw\":\"Ürün Başarıyla Oluşturuldu\",\"9mZEgt\":\"Promosyon Kodu Başarıyla Oluşturuldu\",\"aIA9C4\":\"Soru Başarıyla Oluşturuldu\",\"J3RJSZ\":\"Katılımcı başarıyla güncellendi\",\"3suLF0\":\"Kapasite Ataması başarıyla güncellendi\",\"Z+rnth\":\"Giriş Listesi başarıyla güncellendi\",\"vzJenu\":\"E-posta Ayarları Başarıyla Güncellendi\",\"7kOMfV\":\"Etkinlik Başarıyla Güncellendi\",\"G0KW+e\":\"Ana Sayfa Tasarımı Başarıyla Güncellendi\",\"k9m6/E\":\"Ana Sayfa Ayarları Başarıyla Güncellendi\",\"y/NR6s\":\"Konum Başarıyla Güncellendi\",\"73nxDO\":\"Çeşitli Ayarlar Başarıyla Güncellendi\",\"4H80qv\":\"Sipariş başarıyla güncellendi\",\"6xCBVN\":\"Ödeme ve Faturalama Ayarları Başarıyla Güncellendi\",\"1Ycaad\":\"Ürün başarıyla güncellendi\",\"70dYC8\":\"Promosyon Kodu Başarıyla Güncellendi\",\"F+pJnL\":\"SEO Ayarları Başarıyla Güncellendi\",\"DXZRk5\":\"Süit 100\",\"GNcfRk\":\"Destek E-postası\",\"uRfugr\":\"Tişört\",\"JpohL9\":\"Vergi\",\"geUFpZ\":\"Vergi ve Ücretler\",\"dFHcIn\":\"Vergi Detayları\",\"wQzCPX\":\"Tüm faturaların altında görünecek vergi bilgisi (örn., KDV numarası, vergi kaydı)\",\"0RXCDo\":\"Vergi veya Ücret başarıyla silindi\",\"ZowkxF\":\"Vergiler\",\"qu6/03\":\"Vergiler ve Ücretler\",\"gypigA\":\"Bu promosyon kodu geçersiz\",\"5ShqeM\":\"Aradığınız check-in listesi mevcut değil.\",\"QXlz+n\":\"Etkinlikleriniz için varsayılan para birimi.\",\"mnafgQ\":\"Etkinlikleriniz için varsayılan saat dilimi.\",\"o7s5FA\":\"Katılımcının e-postaları alacağı dil.\",\"NlfnUd\":\"Tıkladığınız bağlantı geçersiz.\",\"HsFnrk\":[[\"0\"],\" için maksimum ürün sayısı \",[\"1\"]],\"TSAiPM\":\"Aradığınız sayfa mevcut değil\",\"MSmKHn\":\"Müşteriye gösterilen fiyat vergi ve ücretleri içerecektir.\",\"6zQOg1\":\"Müşteriye gösterilen fiyat vergi ve ücretleri içermeyecektir. Bunlar ayrı olarak gösterilecektir\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Arama motoru sonuçlarında ve sosyal medyada paylaşırken görüntülenecek etkinlik başlığı. Varsayılan olarak etkinlik başlığı kullanılacaktır\",\"wDx3FF\":\"Bu etkinlik için mevcut ürün yok\",\"pNgdBv\":\"Bu kategoride mevcut ürün yok\",\"rMcHYt\":\"Bekleyen bir iade var. Başka bir iade talebinde bulunmadan önce lütfen tamamlanmasını bekleyin.\",\"F89D36\":\"Sipariş ödendi olarak işaretlenirken bir hata oluştu\",\"68Axnm\":\"İsteğiniz işlenirken bir hata oluştu. Lütfen tekrar deneyin.\",\"mVKOW6\":\"Mesajınız gönderilirken bir hata oluştu\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Bu katılımcının ödenmemiş siparişi var.\",\"mf3FrP\":\"Bu kategoride henüz hiç ürün yok.\",\"8QH2Il\":\"Bu kategori halktan gizli\",\"xxv3BZ\":\"Bu check-in listesi süresi doldu\",\"Sa7w7S\":\"Bu check-in listesinin süresi doldu ve artık check-in için kullanılamıyor.\",\"Uicx2U\":\"Bu check-in listesi aktif\",\"1k0Mp4\":\"Bu check-in listesi henüz aktif değil\",\"K6fmBI\":\"Bu check-in listesi henüz aktif değil ve check-in yapılabilir durumda değil.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Bu bilgiler ödeme sayfasında, sipariş özeti sayfasında ve sipariş onayı e-postasında gösterilecektir.\",\"XAHqAg\":\"Bu genel bir üründür, tişört veya kupa gibi. Hiçbir bilet düzenlenmeyecek\",\"CNk/ro\":\"Bu çevrimiçi bir etkinlik\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Bu mesaj bu etkinlikten gönderilen tüm e-postaların altbilgisinde yer alacak\",\"55i7Fa\":\"Bu mesaj sadece sipariş başarılı bir şekilde tamamlandığında gösterilecek. Ödeme bekleyen siparişlerde bu mesaj gösterilmeyecek\",\"RjwlZt\":\"Bu sipariş zaten ödenmiş.\",\"5K8REg\":\"Bu sipariş zaten iade edilmiş.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Bu sipariş iptal edilmiş.\",\"Q0zd4P\":\"Bu siparişin süresi dolmuş. Lütfen tekrar başlayın.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Bu sipariş tamamlandı.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Bu sipariş sayfası artık mevcut değil.\",\"i0TtkR\":\"Bu tüm görünürlük ayarlarını geçersiz kılar ve ürünü tüm müşterilerden gizler.\",\"cRRc+F\":\"Bu ürün bir siparişle ilişkili olduğu için silinemez. Bunun yerine gizleyebilirsiniz.\",\"3Kzsk7\":\"Bu ürün bir bilettir. Alıcılara satın alma sonrasında bilet verilecek\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Bu şifre sıfırlama bağlantısı geçersiz veya süresi dolmuş.\",\"IV9xTT\":\"Bu kullanıcı davetini kabul etmediği için aktif değil.\",\"5AnPaO\":\"bilet\",\"kjAL4v\":\"Bilet\",\"dtGC3q\":\"Bilet e-postası katılımcıya yeniden gönderildi\",\"54q0zp\":\"Biletler\",\"xN9AhL\":[\"Seviye \",[\"0\"]],\"jZj9y9\":\"Kademeli Ürün\",\"8wITQA\":\"Kademeli ürünler aynı ürün için birden fazla fiyat seçeneği sunmanıza olanak tanır. Bu erken rezervasyon ürünleri veya farklı insan grupları için farklı fiyat seçenekleri sunmak için mükemmeldir.\",\"nn3mSR\":\"Kalan süre:\",\"s/0RpH\":\"Kullanım sayısı\",\"y55eMd\":\"Kullanım Sayısı\",\"40Gx0U\":\"Saat Dilimi\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Araçlar\",\"72c5Qo\":\"Toplam\",\"YXx+fG\":\"İndirimlerden Önceki Toplam\",\"NRWNfv\":\"Toplam İndirim Tutarı\",\"BxsfMK\":\"Toplam Ücretler\",\"2bR+8v\":\"Toplam Brüt Satış\",\"mpB/d9\":\"Toplam sipariş tutarı\",\"m3FM1g\":\"Toplam iade edilen\",\"jEbkcB\":\"Toplam İade Edilen\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Toplam Vergi\",\"+zy2Nq\":\"Tür\",\"FMdMfZ\":\"Katılımcı girişi yapılamadı\",\"bPWBLL\":\"Katılımcı check-out'u yapılamadı\",\"9+P7zk\":\"Ürün oluşturulamadı. Lütfen bilgilerinizi kontrol edin\",\"WLxtFC\":\"Ürün oluşturulamadı. Lütfen bilgilerinizi kontrol edin\",\"/cSMqv\":\"Soru oluşturulamadı. Lütfen bilgilerinizi kontrol edin\",\"MH/lj8\":\"Soru güncellenemedi. Lütfen bilgilerinizi kontrol edin\",\"nnfSdK\":\"Benzersiz Müşteriler\",\"Mqy/Zy\":\"Amerika Birleşik Devletleri\",\"NIuIk1\":\"Sınırsız\",\"/p9Fhq\":\"Sınırsız mevcut\",\"E0q9qH\":\"Sınırsız kullanıma izin verildi\",\"h10Wm5\":\"Ödenmemiş Sipariş\",\"ia8YsC\":\"Yaklaşan\",\"TlEeFv\":\"Yaklaşan Etkinlikler\",\"L/gNNk\":[[\"0\"],\" Güncelle\"],\"+qqX74\":\"Etkinlik adı, açıklaması ve tarihlerini güncelle\",\"vXPSuB\":\"Profili güncelle\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL panoya kopyalandı\",\"e5lF64\":\"Kullanım Örneği\",\"fiV0xj\":\"Kullanım Sınırı\",\"sGEOe4\":\"Kapak resminin bulanıklaştırılmış halini arkaplan olarak kullan\",\"OadMRm\":\"Kapak resmini kullan\",\"7PzzBU\":\"Kullanıcı\",\"yDOdwQ\":\"Kullanıcı Yönetimi\",\"Sxm8rQ\":\"Kullanıcılar\",\"VEsDvU\":\"Kullanıcılar e-postalarını <0>Profil Ayarları'nda değiştirebilir\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"KDV\",\"E/9LUk\":\"Mekan Adı\",\"jpctdh\":\"Görüntüle\",\"Pte1Hv\":\"Katılımcı Detaylarını Görüntüle\",\"/5PEQz\":\"Etkinlik sayfasını görüntüle\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Google Haritalar'da görüntüle\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP check-in listesi\",\"tF+VVr\":\"VIP Bilet\",\"2q/Q7x\":\"Görünürlük\",\"vmOFL/\":\"Ödemenizi işleyemedik. Lütfen tekrar deneyin veya destek ile iletişime geçin.\",\"45Srzt\":\"Kategoriyi silemedik. Lütfen tekrar deneyin.\",\"/DNy62\":[[\"0\"],\" ile eşleşen herhangi bir bilet bulamadık\"],\"1E0vyy\":\"Verileri yükleyemedik. Lütfen tekrar deneyin.\",\"NmpGKr\":\"Kategorileri yeniden sıralayamadık. Lütfen tekrar deneyin.\",\"BJtMTd\":\"1950px x 650px boyutlarında, 3:1 oranında ve maksimum 5MB dosya boyutunda olmasını öneriyoruz\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Ödemenizi onaylayamadık. Lütfen tekrar deneyin veya destek ile iletişime geçin.\",\"Gspam9\":\"Siparişinizi işliyoruz. Lütfen bekleyin...\",\"LuY52w\":\"Hoş geldiniz! Devam etmek için lütfen giriş yapın.\",\"dVxpp5\":[\"Tekrar hoş geldin\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Kademeli Ürünler nedir?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Kategori nedir?\",\"gxeWAU\":\"Bu kod hangi ürünler için geçerli?\",\"hFHnxR\":\"Bu kod hangi ürünler için geçerli? (Varsayılan olarak tümü için geçerli)\",\"AeejQi\":\"Bu kapasite hangi ürünler için geçerli olmalı?\",\"Rb0XUE\":\"Hangi saatte geleceksiniz?\",\"5N4wLD\":\"Bu ne tür bir soru?\",\"gyLUYU\":\"Etkinleştirildiğinde, bilet siparişleri için faturalar oluşturulacak. Faturalar sipariş onayı e-postasıyla birlikte gönderilecek. Katılımcılar ayrıca faturalarını sipariş onayı sayfasından indirebilir.\",\"D3opg4\":\"Çevrimdışı ödemeler etkinleştirildiğinde, kullanıcılar siparişlerini tamamlayabilir ve biletlerini alabilir. Biletleri siparişin ödenmediğini açıkça belirtecek ve check-in aracı, bir sipariş ödeme gerektiriyorsa check-in personelini bilgilendirecek.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Bu check-in listesiyle hangi biletler ilişkilendirilmeli?\",\"S+OdxP\":\"Bu etkinliği kim organize ediyor?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Bu soru kime sorulmalı?\",\"VxFvXQ\":\"Widget Yerleştirme\",\"v1P7Gm\":\"Widget Ayarları\",\"b4itZn\":\"Çalışıyor\",\"hqmXmc\":\"Çalışıyor...\",\"+G/XiQ\":\"Yıl başından beri\",\"l75CjT\":\"Evet\",\"QcwyCh\":\"Evet, kaldır\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"E-postanızı <0>\",[\"0\"],\" olarak değiştiriyorsunuz.\"],\"gGhBmF\":\"Çevrimdışısınız\",\"sdB7+6\":\"Bu ürünü hedefleyen bir promosyon kodu oluşturabilirsiniz\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Bu ürünle ilişkili katılımcılar olduğu için ürün türünü değiştiremezsiniz.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Ödenmemiş siparişleri olan katılımcıları check-in yaptıramazsınız. Bu ayar etkinlik ayarlarından değiştirilebilir.\",\"c9Evkd\":\"Son kategoriyi silemezsiniz.\",\"6uwAvx\":\"Bu fiyat seviyesini silemezsiniz çünkü bu seviye için zaten satılmış ürünler var. Bunun yerine gizleyebilirsiniz.\",\"tFbRKJ\":\"Hesap sahibinin rolünü veya durumunu düzenleyemezsiniz.\",\"fHfiEo\":\"Elle oluşturulan bir siparişi iade edemezsiniz.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Birden fazla hesaba erişiminiz var. Devam etmek için birini seçin.\",\"Z6q0Vl\":\"Bu daveti zaten kabul ettiniz. Devam etmek için lütfen giriş yapın.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Bekleyen e-posta değişikliğiniz yok.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Siparişinizi tamamlamak için zamanınız doldu.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Bu e-postanın tanıtım amaçlı olmadığını kabul etmelisiniz\",\"3ZI8IL\":\"Şartlar ve koşulları kabul etmelisiniz\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Elle katılımcı ekleyebilmek için önce bir bilet oluşturmalısınız.\",\"jE4Z8R\":\"En az bir fiyat seviyeniz olmalı\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Bir siparişi elle ödenmiş olarak işaretlemeniz gerekecek. Bu, sipariş yönetimi sayfasından yapılabilir.\",\"L/+xOk\":\"Giriş listesi oluşturabilmek için önce bir bilete ihtiyacınız var.\",\"Djl45M\":\"Kapasite ataması oluşturabilmek için önce bir ürüne ihtiyacınız var.\",\"y3qNri\":\"Başlamak için en az bir ürüne ihtiyacınız var. Ücretsiz, ücretli veya kullanıcının ne kadar ödeyeceğine karar vermesine izin verin.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Hesap adınız etkinlik sayfalarında ve e-postalarda kullanılır.\",\"veessc\":\"Katılımcılarınız etkinliğinize kaydolduktan sonra burada görünecek. Ayrıca elle katılımcı ekleyebilirsiniz.\",\"Eh5Wrd\":\"Harika web siteniz 🎉\",\"lkMK2r\":\"Bilgileriniz\",\"3ENYTQ\":[\"<0>\",[\"0\"],\" adresine e-posta değişiklik talebiniz beklemede. Onaylamak için lütfen e-postanızı kontrol edin\"],\"yZfBoy\":\"Mesajınız gönderildi\",\"KSQ8An\":\"Siparişiniz\",\"Jwiilf\":\"Siparişiniz iptal edildi\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Siparişleriniz gelmeye başladığında burada görünecek.\",\"9TO8nT\":\"Şifreniz\",\"P8hBau\":\"Ödemeniz işleniyor.\",\"UdY1lL\":\"Ödemeniz başarısız oldu, lütfen tekrar deneyin.\",\"fzuM26\":\"Ödemeniz başarısız oldu. Lütfen tekrar deneyin.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"İadeniz işleniyor.\",\"IFHV2p\":\"Biletiniz\",\"x1PPdr\":\"Posta Kodu\",\"BM/KQm\":\"Posta Kodu\",\"+LtVBt\":\"Posta Kodu\",\"25QDJ1\":\"- Yayınlamak için Tıklayın\",\"WOyJmc\":\"- Yayından Kaldırmak için Tıklayın\",\"ncwQad\":\"(boş)\",\"B/gRsg\":\"(yok)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" zaten giriş yaptı\"],\"3beCx0\":[[\"0\"],\" <0>giriş yaptı\"],\"S4PqS9\":[[\"0\"],\" Aktif Webhook\"],\"6MIiOI\":[[\"0\"],\" kaldı\"],\"COnw8D\":[[\"0\"],\" logosu\"],\"xG9N0H\":[[\"1\"],\" koltuğun \",[\"0\"],\" tanesi dolu.\"],\"B7pZfX\":[[\"0\"],\" organizatör\"],\"rZTf6P\":[[\"0\"],\" yer kaldı\"],\"/HkCs4\":[[\"0\"],\" bilet\"],\"dtXkP9\":[[\"0\"],\" yaklaşan tarih\"],\"30bTiU\":[[\"activeCount\"],\" etkin\"],\"jTs4am\":[[\"appName\"],\" logosu\"],\"gbJOk9\":[\"Bu oturum için \",[\"attendeeCount\"],\" katılımcı kayıtlı.\"],\"TjbIUI\":[[\"totalCount\"],\" arasından \",[\"availableCount\"],\" mevcut\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" giriş yaptı\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" saat önce\"],\"NRSLBe\":[[\"diffMin\"],\" dk önce\"],\"iYfwJE\":[[\"diffSec\"],\" sn önce\"],\"OJnhhX\":[[\"eventCount\"],\" etkinlik\"],\"mhZbzw\":[\"Etkilenen oturumlar genelinde \",[\"loadedAffectedAttendees\"],\" katılımcı kayıtlı.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" bilet türü\"],\"0cLzoF\":[[\"totalOccurrences\"],\" tarih\"],\"AEGc4t\":[[\"0\"],\" tarih boyunca \",[\"totalOccurrences\"],\" oturum (günde \",[\"1\",\"plural\",{\"one\":[\"#\",\" oturum\"],\"other\":[\"#\",\" oturum\"]}],\")\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Vergi/Ücretler\",\"B1St2O\":\"<0>Giriş listeleri, etkinlik girişini güne, alana veya bilet türüne göre yönetmenize yardımcı olur. Biletleri VIP alanları veya 1. Gün geçişleri gibi belirli listelere bağlayabilir ve personelle güvenli bir giriş bağlantısı paylaşabilirsiniz. Hesap gerekmez. Giriş, cihaz kamerası veya HID USB tarayıcı kullanarak mobil, masaüstü veya tablette çalışır. \",\"v9VSIS\":\"<0>Birden fazla bilet türüne aynı anda uygulanan tek bir toplam katılımcı limiti belirleyin.<1>Örneğin, <2>Günlük Geçiş ve <3>Tam Hafta Sonu biletini bağlarsanız, her ikisi de aynı kontenjan havuzundan çekilecektir. Limit dolduğunda, bağlı tüm biletler otomatik olarak satıştan kaldırılır.\",\"vKXqag\":\"<0>Bu, tüm tarihler için varsayılan miktardır. Her tarihin kapasitesi, <1>Oturum Programı sayfasında mevcudiyeti daha da sınırlandırabilir.\",\"ZnVt5v\":\"<0>Webhook'lar, kayıt sırasında CRM'inize veya posta listenize yeni bir katılımcı eklemek gibi olaylar gerçekleştiğinde harici hizmetleri anında bilgilendirir ve kusursuz otomasyon sağlar.<1>Özel iş akışları oluşturmak ve görevleri otomatikleştirmek için <2>Zapier, <3>IFTTT veya <4>Make gibi üçüncü taraf hizmetleri kullanın.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" mevcut kurdan\"],\"M2DyLc\":\"1 Aktif Webhook\",\"6hIk/x\":\"Etkilenen oturumlar genelinde 1 katılımcı kayıtlı.\",\"qOyE2U\":\"Bu oturum için 1 katılımcı kayıtlı.\",\"943BwI\":\"Bitiş tarihinden 1 gün sonra\",\"yj3N+g\":\"Başlangıç tarihinden 1 gün sonra\",\"Z3etYG\":\"Etkinlikten 1 gün önce\",\"szSnlj\":\"Etkinlikten 1 saat önce\",\"yTsaLw\":\"1 bilet\",\"nz96Ue\":\"1 bilet türü\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"Etkinlikten 1 hafta önce\",\"09VFYl\":\"12 bilet sunuldu\",\"HR/cvw\":\"123 Örnek Sokak\",\"dgKxZ5\":\"135+ para birimi ve 40+ ödeme yöntemi\",\"kMU5aM\":\"İptal bildirimi gönderildi:\",\"o++0qa\":\"süre değişikliği\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"E-postanıza yeni bir doğrulama kodu gönderildi\",\"sr2Je0\":\"başlangıç/bitiş saatlerinde kayma\",\"/z/bH1\":\"Kullanıcılarınıza gösterilecek organizatörünüz hakkında kısa bir açıklama.\",\"aS0jtz\":\"Terk edildi\",\"uyJsf6\":\"Hakkında\",\"JvuLls\":\"Ücreti karşıla\",\"lk74+I\":\"Ücreti karşıla\",\"1uJlG9\":\"Vurgu Rengi\",\"g3UF2V\":\"Kabul et\",\"K5+3xg\":\"Daveti kabul et\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Hesap · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Hesap Bilgileri\",\"EHNORh\":\"Hesap bulunamadı\",\"bPwFdf\":\"Hesaplar\",\"AhwTa1\":\"Gerekli İşlem: KDV Bilgisi Gerekli\",\"APyAR/\":\"Aktif Etkinlikler\",\"kCl6ja\":\"Aktif ödeme yöntemleri\",\"XJOV1Y\":\"Etkinlik geçmişi\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Tarih ekle\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Tek Bir Tarih Ekle\",\"CjvTPJ\":\"Başka bir saat ekle\",\"0XCduh\":\"En az bir saat ekleyin\",\"/chGpa\":\"Çevrimiçi etkinlik için bağlantı bilgilerini ekleyin.\",\"UWWRyd\":\"Ödeme sırasında ek bilgi toplamak için özel sorular ekleyin\",\"Z/dcxc\":\"Tarih Ekle\",\"Q219NT\":\"Tarihler Ekle\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Konum ekle\",\"VX6WUv\":\"Konum Ekle\",\"GCQlV2\":\"Günde birden fazla oturum düzenliyorsanız birden fazla saat ekleyin.\",\"7JF9w9\":\"Soru Ekle\",\"NLbIb6\":\"Bu katılımcıyı yine de ekle (kapasiteyi geçersiz kıl)\",\"6PNlRV\":\"Bu etkinliği takviminize ekleyin\",\"BGD9Yt\":\"Bilet ekle\",\"uIv4Op\":\"Genel etkinlik sayfalarınıza ve organizatör ana sayfanıza takip pikselleri ekleyin. Takip etkin olduğunda ziyaretçilere bir çerez onay afişi gösterilecektir.\",\"QN2F+7\":\"Webhook Ekle\",\"NsWqSP\":\"Sosyal medya hesaplarınızı ve web sitesi URL'nizi ekleyin. Bunlar herkese açık organizatör sayfanızda görüntülenecektir.\",\"bVjDs9\":\"Ek ücretler\",\"MKqSg4\":\"Yönetici Erişimi Gerekli\",\"0Zypnp\":\"Yönetici Paneli\",\"YAV57v\":\"Bağlı Kuruluş\",\"I+utEq\":\"Bağlı kuruluş kodu değiştirilemez\",\"/jHBj5\":\"Bağlı kuruluş başarıyla oluşturuldu\",\"uCFbG2\":\"Bağlı kuruluş başarıyla silindi\",\"ld8I+f\":\"Bağlı kuruluş programı\",\"a41PKA\":\"Bağlı kuruluş satışları izlenecek\",\"mJJh2s\":\"Bağlı kuruluş satışları izlenmeyecek. Bu, bağlı kuruluşu devre dışı bırakacaktır.\",\"jabmnm\":\"Bağlı kuruluş başarıyla güncellendi\",\"CPXP5Z\":\"Bağlı Kuruluşlar\",\"9Wh+ug\":\"Bağlı Kuruluşlar Dışa Aktarıldı\",\"3cqmut\":\"Bağlı kuruluşlar, iş ortakları ve etkileyiciler tarafından oluşturulan satışları izlemenize yardımcı olur. Performansı izlemek için bağlı kuruluş kodları oluşturun ve paylaşın.\",\"z7GAMJ\":\"tümü\",\"N40H+G\":\"Tümü\",\"7rLTkE\":\"Tüm Arşivlenmiş Etkinlikler\",\"gKq1fa\":\"Tüm katılımcılar\",\"63gRoO\":\"Seçilen oturumların tüm katılımcıları\",\"uWxIoH\":\"Bu oturumun tüm katılımcıları\",\"pMLul+\":\"Tüm Para Birimleri\",\"sgUdRZ\":\"Tüm tarihler\",\"e4q4uO\":\"Tüm Tarihler\",\"ZS/D7f\":\"Tüm Sona Eren Etkinlikler\",\"QsYjci\":\"Tüm Etkinlikler\",\"31KB8w\":\"Tüm başarısız işler silindi\",\"D2g7C7\":\"Tüm işler yeniden deneme için sıraya alındı\",\"B4RFBk\":\"Eşleşen tüm tarihler\",\"F1/VgK\":\"Tüm oturumlar\",\"OpWjMq\":\"Tüm Oturumlar\",\"Sxm1lO\":\"Tüm Durumlar\",\"dr7CWq\":\"Tüm Yaklaşan Etkinlikler\",\"GpT6Uf\":\"Katılımcıların sipariş onayıyla gönderilen güvenli bir bağlantı üzerinden bilet bilgilerini (ad, e-posta) güncellemelerine izin verin.\",\"F3mW5G\":\"Bu ürün tükendiğinde müşterilerin bekleme listesine katılmasına izin ver\",\"c4uJfc\":\"Neredeyse bitti! Ödemenizin işlenmesini bekliyoruz. Bu sadece birkaç saniye sürmelidir.\",\"ocS8eq\":[\"Zaten hesabınız var mı? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Zaten içeride\",\"/H326L\":\"Zaten İade Edildi\",\"USEpOK\":\"Stripe'ı başka bir organizatörde mi kullanıyorsun? O bağlantıyı yeniden kullan.\",\"RtxQTF\":\"Bu siparişi de iptal et\",\"jkNgQR\":\"Bu siparişi de iade et\",\"xYqsHg\":\"Her zaman mevcut\",\"Wvrz79\":\"Ödenen Tutar\",\"Zkymb9\":\"Bu bağlı kuruluşla ilişkilendirilecek bir e-posta. Bağlı kuruluşa bildirim gitmeyecektir.\",\"vRznIT\":\"Dışa aktarma durumu kontrol edilirken bir hata oluştu.\",\"eusccx\":\"Vurgulanan üründe görüntülenecek isteğe bağlı bir mesaj, örn. \\\"Hızlı satılıyor 🔥\\\" veya \\\"En iyi değer\\\"\",\"5GJuNp\":[\"ve \",[\"0\"],\" tane daha...\"],\"QNrkms\":\"Cevap başarıyla güncellendi.\",\"+qygei\":\"Cevaplar\",\"GK7Lnt\":\"Ödeme sırasındaki cevaplar (ör. yemek seçimi)\",\"lE8PgT\":\"Manuel olarak özelleştirdiğiniz tüm tarihler korunacaktır.\",\"vP3Nzg\":[\"Bu sayfada şu anda yüklü olan \",[\"0\"],\", iptal edilmemiş tarihler için geçerlidir.\"],\"kkVyZZ\":\"Oturum açmadan bağlantıyı açan herkes için geçerlidir. Oturum açmış üyeler her zaman her şeyi görür.\",\"je4muG\":[\"Bu etkinlikteki şu anda yüklü olmayan tarihler dahil her \",[\"0\"],\", iptal edilmemiş tarih için geçerlidir.\"],\"YIIQtt\":\"Değişiklikleri Uygula\",\"NzWX1Y\":\"Şuna uygula\",\"Ps5oDT\":\"Tüm biletlere uygula\",\"261RBr\":\"Mesajı Onayla\",\"naCW6Z\":\"Nisan\",\"B495Gs\":\"Arşivle\",\"5sNliy\":\"Etkinliği Arşivle\",\"BrwnrJ\":\"Organizatörü Arşivle\",\"E5eghW\":\"Bu etkinliği halktan gizlemek için arşivleyin. Daha sonra geri yükleyebilirsiniz.\",\"eqFkeI\":\"Bu organizatörü arşivleyin. Bu, bu organizatöre ait tüm etkinlikleri de arşivleyecektir.\",\"BzcxWv\":\"Arşivlenen Organizatörler\",\"9cQBd6\":\"Bu etkinliği arşivlemek istediğinizden emin misiniz? Artık kamuya görünmeyecek.\",\"Trnl3E\":\"Bu organizatörü arşivlemek istediğinizden emin misiniz? Bu, bu organizatöre ait tüm etkinlikleri de arşivleyecektir.\",\"wOvn+e\":[[\"count\"],\" tarihi iptal etmek istediğinize emin misiniz? Etkilenen katılımcılar e-posta ile bilgilendirilecektir.\"],\"GTxE0U\":\"Bu tarihi iptal etmek istediğinize emin misiniz? Etkilenen katılımcılar e-posta ile bilgilendirilecektir.\",\"VkSk/i\":\"Bu zamanlanmış mesajı iptal etmek istediğinizden emin misiniz?\",\"0aVEBY\":\"Tüm başarısız işleri silmek istediğinizden emin misiniz?\",\"LchiNd\":\"Bu bağlı kuruluşu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.\",\"vPeW/6\":\"Bu yapılandırmayı silmek istediğinizden emin misiniz? Bu işlem, onu kullanan hesapları etkileyebilir.\",\"h42Hc/\":\"Bu tarihi silmek istediğinize emin misiniz? Bu işlem geri alınamaz.\",\"JmVITJ\":\"Bu şablonu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz ve e-postalar varsayılan şablona geri dönecektir.\",\"aLS+A6\":\"Bu şablonu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz ve e-postalar organizatör veya varsayılan şablona geri dönecektir.\",\"5H3Z78\":\"Bu webhook'u silmek istediğinizden emin misiniz?\",\"147G4h\":\"Ayrılmak istediğinizden emin misiniz?\",\"VDWChT\":\"Bu organizatörü taslak yapmak istediğinizden emin misiniz? Bu, organizatör sayfasını kamuya görünmez yapacaktır\",\"pWtQJM\":\"Bu organizatörü herkese açık yapmak istediğinizden emin misiniz? Bu, organizatör sayfasını kamuya görünür yapacaktır\",\"EOqL/A\":\"Bu kişiye bir yer teklif etmek istediğinizden emin misiniz? E-posta bildirimi alacaklardır.\",\"yAXqWW\":\"Bu tarihi kalıcı olarak silmek istediğinize emin misiniz? Bu işlem geri alınamaz.\",\"WFHOlF\":\"Bu etkinliği yayınlamak istediğinizden emin misiniz? Yayınlandığında herkese görünür olacaktır.\",\"4TNVdy\":\"Bu organizatör profilini yayınlamak istediğinizden emin misiniz? Yayınlandığında herkese görünür olacaktır.\",\"8x0pUg\":\"Bu kaydı bekleme listesinden kaldırmak istediğinizden emin misiniz?\",\"cDtoWq\":[[\"0\"],\" adresine sipariş onayını tekrar göndermek istediğinizden emin misiniz?\"],\"xeIaKw\":[[\"0\"],\" adresine bileti tekrar göndermek istediğinizden emin misiniz?\"],\"BjbocR\":\"Bu etkinliği geri yüklemek istediğinizden emin misiniz?\",\"7MjfcR\":\"Bu organizatörü geri yüklemek istediğinizden emin misiniz?\",\"ExDt3P\":\"Bu etkinliği yayından kaldırmak istediğinizden emin misiniz? Artık herkese görünür olmayacaktır.\",\"5Qmxo/\":\"Bu organizatör profilini yayından kaldırmak istediğinizden emin misiniz? Artık herkese görünür olmayacaktır.\",\"Uqefyd\":\"AB'de KDV kaydınız var mı?\",\"+QARA4\":\"Sanat\",\"tLf3yJ\":\"İşletmeniz İrlanda merkezli olduğundan, tüm platform ücretlerine otomatik olarak %23 İrlanda KDV'si uygulanır.\",\"tMeVa/\":\"Satın alınan her bilet için ad ve e-posta isteyin\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Plan ata\",\"xdiER7\":\"Atanan Seviye\",\"F2rX0R\":\"En az bir etkinlik türü seçilmelidir\",\"BCmibk\":\"Denemeler\",\"6PecK3\":\"Tüm etkinliklerdeki katılım ve giriş oranları\",\"K2tp3v\":\"katılımcı\",\"AJ4rvK\":\"Katılımcı İptal Edildi\",\"qvylEK\":\"Katılımcı Oluşturuldu\",\"Aspq3b\":\"Katılımcı bilgilerini toplama\",\"fpb0rX\":\"Katılımcı bilgileri siparişten kopyalandı\",\"0R3Y+9\":\"Katılımcı E-postası\",\"94aQMU\":\"Katılımcı Bilgileri\",\"KkrBiR\":\"Katılımcı bilgi toplama\",\"av+gjP\":\"Katılımcı Adı\",\"sjPjOg\":\"Katılımcı notları\",\"cosfD8\":\"Katılımcı Durumu\",\"D2qlBU\":\"Katılımcı Güncellendi\",\"22BOve\":\"Katılımcı başarıyla güncellendi\",\"x8Vnvf\":\"Katılımcının bileti bu listede yok\",\"/Ywywr\":\"katılımcı\",\"zLRobu\":\"katılımcı giriş yaptı\",\"k3Tngl\":\"Katılımcılar Dışa Aktarıldı\",\"UoIRW8\":\"Kayıtlı katılımcılar\",\"5UbY+B\":\"Belirli bir bilete sahip katılımcılar\",\"4HVzhV\":\"Katılımcılar:\",\"HVkhy2\":\"Atıf Analitiği\",\"dMMjeD\":\"Atıf Dağılımı\",\"1oPDuj\":\"Atıf Değeri\",\"DBHTm/\":\"Ağustos\",\"JgREph\":\"Otomatik teklif etkinleştirildi\",\"V7Tejz\":\"Bekleme listesini otomatik işle\",\"PZ7FTW\":\"Arka plan rengine göre otomatik olarak algılanır, ancak geçersiz kılınabilir\",\"zlnTuI\":\"Kapasite uygun olduğunda bir sonraki kişiye otomatik olarak bilet sun. Devre dışı bırakılırsa, bekleme listesini Bekleme Listesi sayfasından manuel olarak işleyebilirsiniz.\",\"csDS2L\":\"Mevcut\",\"clF06r\":\"İade Edilebilir\",\"NB5+UG\":\"Mevcut Token'lar\",\"L+wGOG\":\"Bekliyor\",\"qcw2OD\":\"Ödeme bekliyor\",\"kNmmvE\":\"Harika Etkinlikler Ltd.\",\"iH8pgl\":\"Geri\",\"TeSaQO\":\"Hesaplara Dön\",\"X7Q/iM\":\"Takvime geri dön\",\"kYqM1A\":\"Etkinliğe Dön\",\"s5QRF3\":\"Mesajlara geri dön\",\"td/bh+\":\"Raporlara Dön\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Temel Fiyat\",\"hviJef\":\"Tarih başına değil, yukarıdaki genel satış dönemine göre\",\"jIPNJG\":\"Temel Bilgiler\",\"UabgBd\":\"Gövde gerekli\",\"HWXuQK\":\"Siparişinizi istediğiniz zaman yönetmek için bu sayfayı yer imlerinize ekleyin.\",\"CUKVDt\":\"Biletlerinizi özel logo, renkler ve altbilgi mesajı ile markalayın.\",\"4BZj5p\":\"Yerleşik dolandırıcılık koruması\",\"cr7kGH\":\"Toplu Düzenle\",\"1Fbd6n\":\"Tarihleri Toplu Düzenle\",\"Eq6Tu9\":\"Toplu güncelleme başarısız oldu.\",\"9N+p+g\":\"İş\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"İşletme adı\",\"bv6RXK\":\"Düğme Etiketi\",\"ChDLlO\":\"Düğme Metni\",\"BUe8Wj\":\"Alıcı öder\",\"qF1qbA\":\"Alıcılar net bir fiyat görür. Platform ücreti ödemenizden düşülür.\",\"dg05rc\":\"Takip pikselleri ekleyerek, siz ve bu platformun toplanan verilerin ortak veri sorumluları olduğunuzu kabul edersiniz. Geçerli gizlilik yasaları (GDPR, CCPA vb.) kapsamında bu işleme için yasal bir dayanağınız olduğundan emin olmaktan siz sorumlusunuz.\",\"DFqasq\":[\"Devam ederek, <0>\",[\"0\"],\" Hizmet Koşullarını kabul etmiş olursunuz\"],\"wVSa+U\":\"Ayın gününe göre\",\"0MnNgi\":\"Haftanın gününe göre\",\"CetOZE\":\"Bilet türüne göre\",\"lFdbRS\":\"Uygulama Ücretlerini Atla\",\"AjVXBS\":\"Takvim\",\"alkXJ5\":\"Takvim görünümü\",\"2VLZwd\":\"Harekete Geçirici Düğme\",\"rT2cV+\":\"Kamera\",\"7hYa9y\":\"Kamera izni reddedildi. <0>Tekrar izin iste veya tarayıcı ayarlarından bu sayfaya kamera erişimi ver.\",\"D02dD9\":\"Kampanya\",\"RRPA79\":\"Giriş yapılamıyor\",\"OcVwAd\":[[\"count\"],\" tarihi iptal et\"],\"H4nE+E\":\"Tüm ürünleri iptal et ve havuza geri bırak\",\"Py78q9\":\"Tarihi İptal Et\",\"tOXAdc\":\"İptal etmek, bu siparişle ilişkili tüm katılımcıları iptal edecek ve biletleri mevcut havuza geri bırakacaktır.\",\"vev1Jl\":\"İptal\",\"Ha17hq\":[[\"0\"],\" tarih iptal edildi\"],\"01sEfm\":\"Sistem varsayılan yapılandırması silinemez\",\"VsM1HH\":\"Kapasite Atamaları\",\"9bIMVF\":\"Kapasite yönetimi\",\"H7K8og\":\"Kapasite 0 veya daha büyük olmalıdır\",\"nzao08\":\"kapasite güncellemeleri\",\"4cp9NP\":\"Kullanılan Kapasite\",\"K7tIrx\":\"Kategori\",\"o+XJ9D\":\"Değiştir\",\"kJkjoB\":\"Süreyi değiştir\",\"J0KExZ\":\"Katılımcı limitini değiştir\",\"CIHJJf\":\"Bekleme listesi ayarlarını değiştir\",\"B5icLR\":[[\"count\"],\" tarih için süre değiştirildi\"],\"Kb+0BT\":\"Tahsilatlar\",\"2tbLdK\":\"Hayır Kurumu\",\"BPWGKn\":\"Giriş yap\",\"6uFFoY\":\"Çıkış yap\",\"FjAlwK\":[\"Bu etkinliğe göz atın: \",[\"0\"]],\"v4fiSg\":\"E-postanızı kontrol edin\",\"51AsAN\":\"Gelen kutunuzu kontrol edin! Bu e-postayla ilişkili biletler varsa, bunları görüntülemek için bir bağlantı alacaksınız.\",\"Y3FYXy\":\"Giriş\",\"udRwQs\":\"Giriş Oluşturuldu\",\"F4SRy3\":\"Giriş Silindi\",\"as6XfO\":[[\"0\"],\" giriş işlemi geri alındı\"],\"9s/wrQ\":\"Check-in geçmişi\",\"Wwztk4\":\"Giriş Listesi\",\"9gPPUY\":\"Giriş Listesi Oluşturuldu\",\"dwjiJt\":\"Liste bilgisi\",\"7od0PV\":\"giriş listeleri\",\"f2vU9t\":\"Giriş Listeleri\",\"XprdTn\":\"Check-in gezinmesi\",\"5tV1in\":\"Check-in ilerlemesi\",\"SHJwyq\":\"Giriş Oranı\",\"qCqdg6\":\"Giriş Durumu\",\"cKj6OE\":\"Giriş Özeti\",\"7B5M35\":\"Girişler\",\"VrmydS\":\"Giriş yapıldı\",\"DM4gBB\":\"Çince (Geleneksel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Farklı bir işlem seçin\",\"fkb+y3\":\"Uygulamak için kayıtlı bir konum seçin.\",\"Zok1Gx\":\"Bir organizatör seçin\",\"pkk46Q\":\"Bir Organizatör Seçin\",\"Crr3pG\":\"Takvim seçin\",\"LAW8Vb\":\"Yeni etkinlikler için varsayılan ayarı seçin. Bu, bireysel etkinlikler için geçersiz kılınabilir.\",\"pjp2n5\":\"Platform ücretini kimin ödeyeceğini seçin. Bu, hesap ayarlarınızda yapılandırdığınız ek ücretleri etkilemez.\",\"xCJdfg\":\"Temizle\",\"QyOWu9\":\"Konumu temizle — etkinliğin varsayılanına geri dön\",\"V8yTm6\":\"Aramayı temizle\",\"kmnKnX\":\"Temizleme, oturuma özgü her türlü üzerine yazmayı kaldırır. Etkilenen oturumlar etkinliğin varsayılan konumuna geri döner.\",\"/o+aQX\":\"İptal etmek için tıklayın\",\"gD7WGV\":\"Yeni satışlara açmak için tıklayın\",\"CySr+W\":\"Notları görüntülemek için tıklayın\",\"RG3szS\":\"kapat\",\"RWw9Lg\":\"Pencereyi kapat\",\"XwdMMg\":\"Kod yalnızca harf, rakam, tire ve alt çizgi içerebilir\",\"+yMJb7\":\"Kod gerekli\",\"m9SD3V\":\"Kod en az 3 karakter olmalıdır\",\"V1krgP\":\"Kod en fazla 20 karakter olmalıdır\",\"psqIm5\":\"Birlikte harika etkinlikler oluşturmak için ekibinizle işbirliği yapın.\",\"4bUH9i\":\"Satın alınan her bilet için katılımcı bilgilerini toplayın.\",\"TkfG8v\":\"Sipariş başına bilgi toplayın\",\"96ryID\":\"Bilet başına bilgi toplayın\",\"FpsvqB\":\"Renk Modu\",\"jEu4bB\":\"Sütunlar\",\"CWk59I\":\"Komedi\",\"rPA+Gc\":\"İletişim Tercihleri\",\"zFT5rr\":\"tamamlandı\",\"bUQMpb\":\"Stripe kurulumunu tamamla\",\"744BMm\":\"Biletlerinizi güvence altına almak için siparişinizi tamamlayın. Bu teklif süre sınırlıdır, çok beklemeyin.\",\"5YrKW7\":\"Biletlerinizi güvence altına almak için ödemenizi tamamlayın.\",\"xGU92i\":\"Ekibe katılmak için profilinizi tamamlayın.\",\"QOhkyl\":\"Oluştur\",\"ih35UP\":\"Konferans Merkezi\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Yapılandırma atandı\",\"X1zdE7\":\"Yapılandırma başarıyla oluşturuldu\",\"mLBUMQ\":\"Yapılandırma başarıyla silindi\",\"UIENhw\":\"Yapılandırma adları son kullanıcılar tarafından görülebilir. Sabit ücretler mevcut döviz kuru üzerinden sipariş para birimine dönüştürülecektir.\",\"eeZdaB\":\"Yapılandırma başarıyla güncellendi\",\"3cKoxx\":\"Yapılandırmalar\",\"8v2LRU\":\"Etkinlik ayrıntılarını, konumu, ödeme seçeneklerini ve e-posta bildirimlerini yapılandırın.\",\"raw09+\":\"Ödeme sırasında katılımcı bilgilerinin nasıl toplanacağını yapılandırın\",\"FI60XC\":\"Vergi ve ücretleri yapılandır\",\"av6ukY\":\"Bu oturum için hangi ürünlerin mevcut olduğunu yapılandırın ve isteğe bağlı olarak fiyatlandırmayı ayarlayın.\",\"NGXKG/\":\"E-posta Adresini Onayla\",\"JRQitQ\":\"Yeni şifreyi onayla\",\"Auz0Mz\":\"Tüm özelliklere erişmek için e-postanızı onaylayın.\",\"7+grte\":\"Onay e-postası gönderildi! Lütfen gelen kutunuzu kontrol edin.\",\"n/7+7Q\":\"Onay gönderildi:\",\"x3wVFc\":\"Tebrikler! Etkinliğiniz artık herkese açık.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"E-posta şablon düzenlemesini etkinleştirmek için Stripe'ı bağlayın\",\"LmvZ+E\":\"Mesajlaşmayı etkinleştirmek için Stripe'ı bağlayın\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"İletişim\",\"LOFgda\":[[\"0\"],\" ile İletişime Geç\"],\"41BQ3k\":\"İletişim E-postası\",\"KcXRN+\":\"Destek için iletişim e-postası\",\"m8WD6t\":\"Kuruluma Devam Et\",\"0GwUT4\":\"Ödemeye Devam Et\",\"sBV87H\":\"Etkinlik oluşturmaya devam et\",\"nKtyYu\":\"Sonraki adıma devam et\",\"F3/nus\":\"Ödemeye Devam Et\",\"p2FRHj\":\"Bu etkinlik için platform ücretlerinin nasıl ele alınacağını kontrol edin\",\"NqfabH\":\"Bu tarih için kimin gireceğini kontrol edin\",\"fmYxZx\":\"Kim ne zaman girer\",\"1JnTgU\":\"Yukarıdan kopyalandı\",\"FxVG/l\":\"Panoya kopyalandı\",\"PiH3UR\":\"Kopyalandı!\",\"4i7smN\":\"Hesap kimliğini kopyala\",\"uUPbPg\":\"Bağlı Kuruluş Bağlantısını Kopyala\",\"iVm46+\":\"Kodu Kopyala\",\"cF2ICc\":\"Müşteri bağlantısını kopyala\",\"+2ZJ7N\":\"Bilgileri ilk katılımcıya kopyala\",\"ZN1WLO\":\"E-postayı Kopyala\",\"y1eoq1\":\"Bağlantıyı kopyala\",\"tUGbi8\":\"Bilgilerimi kopyala:\",\"y22tv0\":\"Her yerde paylaşmak için bu bağlantıyı kopyalayın\",\"/4gGIX\":\"Panoya kopyala\",\"e0f4yB\":\"Konum silinemedi\",\"vkiDx2\":\"Toplu güncelleme hazırlanamadı.\",\"KOavaU\":\"Adres bilgileri alınamadı\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Tarih kaydedilemedi\",\"eeLExK\":\"Konum kaydedilemedi\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Kapak Görseli\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Kapak görseli etkinlik sayfanızın üstünde gösterilecektir\",\"2NLjA6\":\"Kapak görseli organizatör sayfanızın üstünde gösterilecektir\",\"GkrqoY\":\"Tüm biletleri kapsar\",\"zg4oSu\":[[\"0\"],\" Şablonu Oluştur\"],\"RKKhnW\":\"Sitenizde bilet satmak için özel bir widget oluşturun.\",\"6sk7PP\":\"Sabit sayı oluştur\",\"PhioFp\":\"Aktif bir oturum için yeni bir giriş listesi oluşturun veya bunun bir hata olduğunu düşünüyorsanız organizatörle iletişime geçin.\",\"yIRev4\":\"Bir şifre oluşturun\",\"j7xZ7J\":\"Tek bir hesap altında ayrı markalar, departmanlar veya etkinlik serileri yönetmek için ek organizatörler oluşturun. Her organizatörün kendi etkinlikleri, ayarları ve herkese açık sayfası vardır.\",\"xfKgwv\":\"Bağlı Kuruluş Oluştur\",\"tudG8q\":\"Satış için bilet ve ürünler oluşturup yapılandırın.\",\"YAl9Hg\":\"Yapılandırma Oluştur\",\"BTne9e\":\"Organizatör varsayılanlarını geçersiz kılan bu etkinlik için özel e-posta şablonları oluşturun\",\"YIDzi/\":\"Özel Şablon Oluştur\",\"tsGqx5\":\"Tarih Oluştur\",\"Nc3l/D\":\"İndirimler, gizli biletler için erişim kodları ve özel teklifler oluşturun.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Bu tarih için oluştur\",\"eWEV9G\":\"Yeni şifre oluştur\",\"wl2iai\":\"Program Oluştur\",\"8AiKIu\":\"Bilet veya Ürün Oluştur\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Etkinliğinizi tanıtan ortakları ödüllendirmek için izlenebilir bağlantılar oluşturun.\",\"dkAPxi\":\"Webhook Oluştur\",\"5slqwZ\":\"Etkinliğinizi Oluşturun\",\"JQNMrj\":\"İlk etkinliğinizi oluşturun\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Kendi etkinliğinizi oluşturun\",\"67NsZP\":\"Etkinlik Oluşturuluyor...\",\"H34qcM\":\"Organizatör Oluşturuluyor...\",\"1YMS+X\":\"Etkinliğiniz oluşturuluyor, lütfen bekleyin\",\"yiy8Jt\":\"Organizatör profiliniz oluşturuluyor, lütfen bekleyin\",\"lfLHNz\":\"Harekete geçirici düğme etiketi gerekli\",\"0xLR6W\":\"Şu anda atanmış\",\"iTvh6I\":\"Şu anda satın alınabilir\",\"A42Dqn\":\"Özel markalama\",\"Guo0lU\":\"Özel tarih ve saat\",\"mimF6c\":\"Ödeme sonrası özel mesaj\",\"WDMdn8\":\"Özel sorular\",\"O6mra8\":\"Özel Sorular\",\"axv/Mi\":\"Özel şablon\",\"2YeVGY\":\"Müşteri bağlantısı panoya kopyalandı\",\"QMHSMS\":\"Müşteri iade onayını içeren bir e-posta alacaktır\",\"L/Qc+w\":\"Müşterinin e-posta adresi\",\"wpfWhJ\":\"Müşterinin adı\",\"GIoqtA\":\"Müşterinin soyadı\",\"NihQNk\":\"Müşteriler\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Liquid şablonu kullanarak müşterilerinize gönderilen e-postaları özelleştirin. Bu şablonlar kuruluşunuzdaki tüm etkinlikler için varsayılan olarak kullanılacaktır.\",\"xJaTUK\":\"Etkinlik ana sayfanızın düzenini, renklerini ve markalamasını özelleştirin.\",\"MXZfGN\":\"Katılımcılarınızdan önemli bilgiler toplamak için ödeme sırasında sorulan soruları özelleştirin.\",\"iX6SLo\":\"Devam düğmesinde gösterilen metni özelleştirin\",\"pxNIxa\":\"Liquid şablonu kullanarak e-posta şablonunuzu özelleştirin\",\"3trPKm\":\"Organizatör sayfanızın görünümünü özelleştirin\",\"U0sC6H\":\"Günlük\",\"/gWrVZ\":\"Tüm etkinliklerdeki günlük gelir, vergiler, ücretler ve iadeler\",\"zgCHnE\":\"Günlük Satış Raporu\",\"nHm0AI\":\"Günlük satış, vergi ve ücret dökümü\",\"1aPnDT\":\"Dans\",\"pvnfJD\":\"Koyu\",\"MaB9wW\":\"Tarih İptali\",\"e6cAxJ\":\"Tarih iptal edildi\",\"81jBnC\":\"Tarih başarıyla iptal edildi\",\"a/C/6R\":\"Tarih başarıyla oluşturuldu\",\"IW7Q+u\":\"Tarih silindi\",\"rngCAz\":\"Tarih başarıyla silindi\",\"lnYE59\":\"Etkinlik tarihi\",\"gnBreG\":\"Siparişin verildiği tarih\",\"vHbfoQ\":\"Tarih yeniden etkinleştirildi\",\"hvah+S\":\"Tarih yeni satışlara yeniden açıldı\",\"Ez0YsD\":\"Tarih başarıyla güncellendi\",\"VTsZuy\":\"Tarihler ve saatler şurada yönetilir:\",\"/ITcnz\":\"gün\",\"H7OUPr\":\"Gün\",\"JtHrX9\":\"Ayın Günü\",\"J/Upwb\":\"gün\",\"vDVA2I\":\"Ayın Günleri\",\"rDLvlL\":\"Haftanın Günleri\",\"r6zgGo\":\"Aralık\",\"jbq7j2\":\"Reddet\",\"ovBPCi\":\"Varsayılan\",\"JtI4vj\":\"Varsayılan katılımcı bilgi toplama\",\"ULjv90\":\"Tarih başına varsayılan kapasite\",\"3R/Tu2\":\"Varsayılan ücret işleme\",\"1bZAZA\":\"Varsayılan şablon kullanılacak\",\"HNlEFZ\":\"sil\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Seçili \",[\"count\"],\" tarih silinsin mi? Siparişi olan tarihler atlanacaktır. Bu işlem geri alınamaz.\"],\"vu7gDm\":\"Bağlı Kuruluşu Sil\",\"KZN4Lc\":\"Tümünü sil\",\"6EkaOO\":\"Tarihi Sil\",\"io0G93\":\"Etkinliği Sil\",\"+jw/c1\":\"Görseli sil\",\"hdyeZ0\":\"İşi sil\",\"xxjZeP\":\"Konumu sil\",\"sY3tIw\":\"Organizatörü Sil\",\"UBv8UK\":\"Kalıcı Olarak Sil\",\"dPyJ15\":\"Şablonu Sil\",\"mxsm1o\":\"Bu soruyu sil? Bu işlem geri alınamaz.\",\"snMaH4\":\"Webhook'u sil\",\"LIZZLY\":[[\"0\"],\" tarih silindi\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Tümünün Seçimini Kaldır\",\"NvuEhl\":\"Tasarım Öğeleri\",\"H8kMHT\":\"Kodu almadınız mı?\",\"G8KNgd\":\"Farklı konum\",\"E/QGRL\":\"Devre dışı\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Bu mesajı kapat\",\"BREO0S\":\"Müşterilerin bu etkinlik organizatöründen pazarlama iletişimi almayı kabul etmelerini sağlayan bir onay kutusu göster.\",\"pfa8F0\":\"Görünen ad\",\"Kdpf90\":\"Unutmayın!\",\"352VU2\":\"Hesabınız yok mu? <0>Kaydolun\",\"AXXqG+\":\"Bağış\",\"DPfwMq\":\"Tamam\",\"JoPiZ2\":\"Kapı personeli talimatları\",\"2+O9st\":\"Tamamlanan tüm siparişler için satış, katılımcı ve mali raporları indirin.\",\"eneWvv\":\"Taslak\",\"Ts8hhq\":\"Yüksek spam riski nedeniyle, e-posta şablonlarını değiştirmeden önce bir Stripe hesabı bağlamanız gerekir. Bu, tüm etkinlik organizatörlerinin doğrulanmış ve sorumlu olmasını sağlamak içindir.\",\"TnzbL+\":\"Yüksek spam riski nedeniyle, katılımcılara mesaj gönderebilmeniz için bir Stripe hesabı bağlamanız gerekir.\\nBu, tüm etkinlik organizatörlerinin doğrulanmış ve sorumlu olmasını sağlamak içindir.\",\"euc6Ns\":\"Çoğalt\",\"YueC+F\":\"Tarihi Çoğalt\",\"KRmTkx\":\"Ürünü Çoğalt\",\"Jd3ymG\":\"Süre en az 1 dakika olmalıdır.\",\"KIjvtr\":\"Felemenkçe\",\"22xieU\":\"ör. 180 (3 saat)\",\"/zajIE\":\"örn. Sabah Oturumu\",\"SPKbfM\":\"örn., Bilet Al, Şimdi Kaydol\",\"fc7wGW\":\"örn., Biletleriniz hakkında önemli güncelleme\",\"54MPqC\":\"örn., Standart, Premium, Kurumsal\",\"3RQ81z\":\"Her kişi, satın alma işlemini tamamlamak için ayrılmış bir yer içeren bir e-posta alacaktır.\",\"5oD9f/\":\"Daha önce\",\"LTzmgK\":[[\"0\"],\" Şablonunu Düzenle\"],\"v4+lcZ\":\"Bağlı Kuruluşu Düzenle\",\"2iZEz7\":\"Cevabı Düzenle\",\"t2bbp8\":\"Katılımcıyı düzenle\",\"etaWtB\":\"Katılımcı Detaylarını Düzenle\",\"+guao5\":\"Yapılandırmayı Düzenle\",\"1Mp/A4\":\"Tarihi Düzenle\",\"m0ZqOT\":\"Konumu düzenle\",\"8oivFT\":\"Konumu Düzenle\",\"vRWOrM\":\"Sipariş Detaylarını Düzenle\",\"fW5sSv\":\"Webhook'u düzenle\",\"nP7CdQ\":\"Webhook'u Düzenle\",\"MRZxAn\":\"Düzenlendi\",\"uBAxNB\":\"Düzenleyici\",\"aqxYLv\":\"Eğitim\",\"iiWXDL\":\"Uygunluk Hataları\",\"zPiC+q\":\"Uygun Giriş Listeleri\",\"SiVstt\":\"E-posta ve zamanlanmış mesajlar\",\"V2sk3H\":\"E-posta ve Şablonlar\",\"hbwCKE\":\"E-posta adresi panoya kopyalandı\",\"dSyJj6\":\"E-posta adresleri eşleşmiyor\",\"elW7Tn\":\"E-posta Gövdesi\",\"ZsZeV2\":\"E-posta gerekli\",\"Be4gD+\":\"E-posta Önizlemesi\",\"6IwNUc\":\"E-posta Şablonları\",\"H/UMUG\":\"E-posta Doğrulaması Gerekli\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"E-posta başarıyla doğrulandı!\",\"FSN4TS\":\"Widget yerleştir\",\"z9NkYY\":\"Yerleştirilebilir widget\",\"Qj0GKe\":\"Katılımcı self-servisini etkinleştir\",\"hEtQsg\":\"Katılımcı self-servisini varsayılan olarak etkinleştir\",\"Upeg/u\":\"E-posta göndermek için bu şablonu etkinleştirin\",\"7dSOhU\":\"Bekleme listesini etkinleştir\",\"RxzN1M\":\"Etkin\",\"xDr/ct\":\"Bitiş\",\"sGjBEq\":\"Bitiş Tarihi ve Saati (isteğe bağlı)\",\"PKXt9R\":\"Bitiş tarihi başlangıç tarihinden sonra olmalıdır\",\"UmzbPa\":\"Oturumun bitiş tarihi\",\"ZayGC7\":\"Bir tarihte bitir\",\"48Y16Q\":\"Bitiş saati (isteğe bağlı)\",\"jpNdOC\":\"Oturumun bitiş saati\",\"TbaYrr\":[[\"0\"],\" sona erdi\"],\"CFgwiw\":[[\"0\"],\" bitiyor\"],\"SqOIQU\":\"Bir kapasite değeri girin veya sınırsızı seçin.\",\"h37gRz\":\"Bir etiket girin veya kaldırmayı seçin.\",\"7YZofi\":\"Önizlemeyi görmek için bir konu ve gövde girin\",\"khyScF\":\"Kaydırılacak süreyi girin.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Bağlı kuruluş e-postasını girin (isteğe bağlı)\",\"ARkzso\":\"Bağlı kuruluş adını girin\",\"ej4L8b\":\"Kapasite girin\",\"6KnyG0\":\"E-posta girin\",\"INDKM9\":\"E-posta konusunu girin...\",\"xUgUTh\":\"Ad girin\",\"9/1YKL\":\"Soyad girin\",\"VpwcSk\":\"Yeni şifreyi girin\",\"kWg31j\":\"Benzersiz bağlı kuruluş kodunu girin\",\"C3nD/1\":\"E-postanızı girin\",\"VmXiz4\":\"E-postanızı girin, şifrenizi sıfırlamak için size talimatlar gönderelim.\",\"n9V+ps\":\"Adınızı girin\",\"IdULhL\":\"Ülke kodu dahil KDV numaranızı boşluksuz girin (örn., TR1234567890, DE123456789)\",\"o21Y+P\":\"kayıt\",\"X88/6w\":\"Müşteriler tükenmiş ürünler için bekleme listesine katıldığında kayıtlar burada görünecektir.\",\"LslKhj\":\"Günlükler yüklenirken hata oluştu\",\"VCNHvW\":\"Etkinlik Arşivlendi\",\"ZD0XSb\":\"Etkinlik başarıyla arşivlendi\",\"WgD6rb\":\"Etkinlik Kategorisi\",\"b46pt5\":\"Etkinlik Kapak Görseli\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Etkinlik Oluşturuldu\",\"1Hzev4\":\"Etkinlik özel şablonu\",\"7u9/DO\":\"Etkinlik başarıyla silindi\",\"imgKgl\":\"Etkinlik Açıklaması\",\"kJDmsI\":\"Etkinlik detayları\",\"m/N7Zq\":\"Etkinlik Tam Adresi\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Etkinlik Konumu\",\"PYs3rP\":\"Etkinlik adı\",\"HhwcTQ\":\"Etkinlik Adı\",\"WZZzB6\":\"Etkinlik adı gerekli\",\"Wd5CDM\":\"Etkinlik adı 150 karakterden az olmalıdır\",\"4JzCvP\":\"Etkinlik Mevcut Değil\",\"Gh9Oqb\":\"Etkinlik organizatör adı\",\"mImacG\":\"Etkinlik Sayfası\",\"Hk9Ki/\":\"Etkinlik başarıyla geri yüklendi\",\"JyD0LH\":\"Etkinlik ayarları\",\"cOePZk\":\"Etkinlik Saati\",\"e8WNln\":\"Etkinlik saat dilimi\",\"GeqWgj\":\"Etkinlik Saat Dilimi\",\"XVLu2v\":\"Etkinlik Başlığı\",\"OfmsI9\":\"Etkinlik Çok Yeni\",\"4SILkp\":\"Etkinlik toplamları\",\"YDVUVl\":\"Etkinlik Türleri\",\"+HeiVx\":\"Etkinlik Güncellendi\",\"4K2OjV\":\"Etkinlik Mekanı\",\"19j6uh\":\"Etkinlik Performansı\",\"PC3/fk\":\"Önümüzdeki 24 Saat İçinde Başlayan Etkinlikler\",\"nwiZdc\":[\"Her \",[\"0\"]],\"2LJU4o\":[\"Her \",[\"0\"],\" günde bir\"],\"yLiYx+\":[\"Her \",[\"0\"],\" ayda bir\"],\"nn9ice\":[\"Her \",[\"0\"],\" haftada bir\"],\"Cdr8f9\":[\"Her \",[\"0\"],\" haftada bir \",[\"1\"],\" günü\"],\"GVEHRk\":[\"Her \",[\"0\"],\" yılda bir\"],\"fTFfOK\":\"Her e-posta şablonu uygun sayfaya bağlanan bir harekete geçirici düğme içermelidir\",\"BVinvJ\":\"Örnekler: \\\"Bizi nasıl duydunuz?\\\", \\\"Fatura için şirket adı\\\"\",\"2hGPQG\":\"Örnekler: \\\"Tişört bedeni\\\", \\\"Yemek tercihi\\\", \\\"Meslek unvanı\\\"\",\"qNuTh3\":\"İstisna\",\"M1RnFv\":\"Süresi dolmuş\",\"kF8HQ7\":\"Cevapları Dışa Aktar\",\"2KAI4N\":\"CSV Dışa Aktar\",\"JKfSAv\":\"Dışa aktarma başarısız oldu. Lütfen tekrar deneyin.\",\"SVOEsu\":\"Dışa aktarma başladı. Dosya hazırlanıyor...\",\"wuyaZh\":\"Dışa aktarma başarılı\",\"9bpUSo\":\"Bağlı Kuruluşlar Dışa Aktarılıyor\",\"jtrqH9\":\"Katılımcılar Dışa Aktarılıyor\",\"R4Oqr8\":\"Dışa aktarma tamamlandı. Dosya indiriliyor...\",\"UlAK8E\":\"Siparişler Dışa Aktarılıyor\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Başarısız\",\"8uOlgz\":\"Başarısız oldu\",\"tKcbYd\":\"Başarısız işler\",\"SsI9v/\":\"Sipariş terk edilemedi. Lütfen tekrar deneyin.\",\"LdPKPR\":\"Yapılandırma atanamadı\",\"PO0cfn\":\"Tarih iptal edilemedi\",\"YUX+f+\":\"Tarihler iptal edilemedi\",\"SIHgVQ\":\"Mesaj iptal edilemedi\",\"cEFg3R\":\"Bağlı kuruluş oluşturulamadı\",\"dVgNF1\":\"Yapılandırma oluşturulamadı\",\"fAoRRJ\":\"Program oluşturulamadı\",\"U66oUa\":\"Şablon oluşturulamadı\",\"aFk48v\":\"Yapılandırma silinemedi\",\"n1CYMH\":\"Tarih silinemedi\",\"KXv+Qn\":\"Tarih silinemedi. Mevcut siparişleri olabilir.\",\"JJ0uRo\":\"Tarihler silinemedi\",\"rgoBnv\":\"Etkinlik silinemedi\",\"Zw6LWb\":\"İş silinemedi\",\"tq0abZ\":\"İşler silinemedi\",\"2mkc3c\":\"Organizatör silinemedi\",\"vKMKnu\":\"Soru silinemedi\",\"xFj7Yj\":\"Şablon silinemedi\",\"jo3Gm6\":\"Bağlı kuruluşlar dışa aktarılamadı\",\"Jjw03p\":\"Katılımcılar dışa aktarılamadı\",\"ZPwFnN\":\"Siparişler dışa aktarılamadı\",\"zGE3CH\":\"Rapor dışa aktarılamadı. Lütfen tekrar deneyin.\",\"lS9/aZ\":\"Alıcılar yüklenemedi\",\"X4o0MX\":\"Webhook yüklenemedi\",\"ETcU7q\":\"Yer teklif edilemedi\",\"5670b9\":\"Bilet teklifi başarısız oldu\",\"e5KIbI\":\"Tarih yeniden etkinleştirilemedi\",\"7zyx8a\":\"Bekleme listesinden kaldırılamadı\",\"A/P7PX\":\"Geçersiz kılma kaldırılamadı\",\"ogWc1z\":\"Tarih yeniden açılamadı\",\"0+iwE5\":\"Sorular yeniden sıralanamadı\",\"EJPAcd\":\"Sipariş onayı yeniden gönderilemedi\",\"DjSbj3\":\"Bilet yeniden gönderilemedi\",\"YQ3QSS\":\"Doğrulama kodu yeniden gönderilemedi\",\"wDioLj\":\"İş yeniden denenemedi\",\"DKYTWG\":\"İşler yeniden denenemedi\",\"WRREqF\":\"Geçersiz kılma kaydedilemedi\",\"sj/eZA\":\"Fiyat geçersiz kılması kaydedilemedi\",\"780n8A\":\"Ürün ayarları kaydedilemedi\",\"zTkTF3\":\"Şablon kaydedilemedi\",\"l6acRV\":\"KDV ayarları kaydedilemedi. Lütfen tekrar deneyin.\",\"T6B2gk\":\"Mesaj gönderilemedi. Lütfen tekrar deneyin.\",\"lKh069\":\"Dışa aktarma işi başlatılamadı\",\"t/KVOk\":\"Taklit başlatılamadı. Lütfen tekrar deneyin.\",\"QXgjH0\":\"Taklit durdurulamadı. Lütfen tekrar deneyin.\",\"i0QKrm\":\"Bağlı kuruluş güncellenemedi\",\"NNc33d\":\"Cevap güncellenemedi.\",\"E9jY+o\":\"Katılımcı güncellenemedi\",\"uQynyf\":\"Yapılandırma güncellenemedi\",\"i2PFQJ\":\"Etkinlik durumu güncellenemedi\",\"EhlbcI\":\"Mesajlaşma seviyesi güncellenemedi\",\"rpGMzC\":\"Sipariş güncellenemedi\",\"T2aCOV\":\"Organizatör durumu güncellenemedi\",\"Eeo/Gy\":\"Ayar güncellenemedi\",\"kqA9lY\":\"KDV ayarları güncellenemedi\",\"7/9RFs\":\"Görsel yüklenemedi.\",\"nkNfWu\":\"Görsel yüklenemedi. Lütfen tekrar deneyin.\",\"rxy0tG\":\"E-posta doğrulanamadı\",\"QRUpCk\":\"Aile\",\"5LO38w\":\"Bankana hızlı ödemeler\",\"4lgLew\":\"Şubat\",\"9bHCo2\":\"Ücret Para Birimi\",\"/sV91a\":\"Ücret işleme\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Ücretler Atlandı\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Dosya çok büyük. Maksimum boyut 5MB'dir.\",\"VejKUM\":\"Önce yukarıdaki bilgilerinizi doldurun\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Katılımcıları filtrele\",\"8OvVZZ\":\"Katılımcıları Filtrele\",\"N/H3++\":\"Tarihe göre filtrele\",\"mvrlBO\":\"Etkinliğe göre filtrele\",\"g+xRXP\":\"Stripe kurulumunu bitir\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"İlk\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"İlk katılımcı\",\"4pwejF\":\"Ad gereklidir\",\"3lkYdQ\":\"Sabit ücret\",\"6bBh3/\":\"Sabit Ücret\",\"zWqUyJ\":\"İşlem başına sabit ücret\",\"LWL3Bs\":\"Sabit ücret 0 veya daha büyük olmalıdır\",\"0RI8m4\":\"Flaş kapalı\",\"q0923e\":\"Flaş açık\",\"lWxAUo\":\"Yiyecek ve İçecek\",\"nFm+5u\":\"Alt Bilgi Metni\",\"a8nooQ\":\"Dördüncü\",\"mob/am\":\"Cu\",\"wtuVU4\":\"Sıklık\",\"xVhQZV\":\"Cum\",\"39y5bn\":\"Cuma\",\"f5UbZ0\":\"Tam veri sahipliği\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Tam iade\",\"UsIfa8\":\"Tam çözümlenmiş adres\",\"PGQLdy\":\"gelecek\",\"8N/j1s\":\"Yalnızca gelecek tarihler\",\"yRx/6K\":\"Gelecek tarihler, kapasite sıfırlanmış olarak kopyalanacak\",\"T02gNN\":\"Genel Giriş\",\"3ep0Gx\":\"Organizatörünüz hakkında genel bilgiler\",\"ziAjHi\":\"Oluştur\",\"exy8uo\":\"Kod oluştur\",\"4CETZY\":\"Yol Tarifi Al\",\"pjkEcB\":\"Ödeme Al\",\"lGYzP6\":\"Stripe ile ödeme al\",\"ZDIydz\":\"Başlayın\",\"u6FPxT\":\"Bilet Al\",\"8KDgYV\":\"Etkinliğinizi hazırlayın\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Geri Dön\",\"oNL5vN\":\"Etkinlik Sayfasına Git\",\"gHSuV/\":\"Ana sayfaya git\",\"8+Cj55\":\"Programa Git\",\"6nDzTl\":\"İyi okunabilirlik\",\"76gPWk\":\"Anladım\",\"aGWZUr\":\"Brüt gelir\",\"n8IUs7\":\"Brüt Gelir\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Misafir yönetimi\",\"NUsTc4\":\"Şu anda gerçekleşiyor\",\"kTSQej\":[\"Merhaba \",[\"0\"],\", platformunuzu buradan yönetin.\"],\"dORAcs\":\"E-posta adresinizle ilişkili tüm biletler burada.\",\"g+2103\":\"Bağlı kuruluş bağlantınız burada\",\"bVsnqU\":\"Merhaba,\",\"/iE8xx\":\"Hi.Events Ücreti\",\"zppscQ\":\"Hi.Events platform ücretleri ve işlem bazında KDV dökümü\",\"D+zLDD\":\"Gizli\",\"DRErHC\":\"Katılımcılardan gizli - sadece organizatörler tarafından görülebilir\",\"NNnsM0\":\"Gelişmiş seçenekleri gizle\",\"P+5Pbo\":\"Cevapları Gizle\",\"VMlRqi\":\"Ayrıntıları gizle\",\"FmogyU\":\"Seçenekleri Gizle\",\"gtEbeW\":\"Vurgula\",\"NF8sdv\":\"Vurgu Mesajı\",\"MXSqmS\":\"Bu ürünü vurgula\",\"7ER2sc\":\"Vurgulandı\",\"sq7vjE\":\"Vurgulanan ürünler, etkinlik sayfasında öne çıkmaları için farklı bir arka plan rengine sahip olacaktır.\",\"1+WSY1\":\"Hobiler\",\"yY8wAv\":\"Saat\",\"sy9anN\":\"Bir müşterinin teklif aldıktan sonra satın almayı tamamlaması gereken süre. Zaman aşımı olmaması için boş bırakın.\",\"n2ilNh\":\"Program ne kadar sürüyor?\",\"DMr2XN\":\"Ne sıklıkta?\",\"AVpmAa\":\"Çevrimdışı nasıl ödeme yapılır\",\"cceMns\":\"Size uyguladığımız platform ücretlerine KDV nasıl uygulanır.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Macarca\",\"8Wgd41\":\"Veri sorumlusu olarak sorumluluklarımı kabul ediyorum\",\"O8m7VA\":\"Bu etkinlikle ilgili e-posta bildirimleri almayı kabul ediyorum\",\"YLgdk5\":\"Bunun bu etkinlikle ilgili işlemsel bir mesaj olduğunu onaylıyorum\",\"4/kP5a\":\"Yeni bir sekme otomatik olarak açılmadıysa, ödemeye devam etmek için lütfen aşağıdaki düğmeyi tıklayın.\",\"W/eN+G\":\"Boş bırakılırsa, adres bir Google Haritalar bağlantısı oluşturmak için kullanılacaktır\",\"iIEaNB\":\"Bizimle bir hesabınız varsa, şifrenizi nasıl sıfırlayacağınıza dair talimatlar içeren bir e-posta alacaksınız.\",\"an5hVd\":\"Görseller\",\"tSVr6t\":\"Taklit Et\",\"TWXU0c\":\"Kullanıcıyı Taklit Et\",\"5LAZwq\":\"Taklit başlatıldı\",\"IMwcdR\":\"Taklit durduruldu\",\"0I0Hac\":\"Önemli Uyarı\",\"yD3avI\":\"Önemli: E-posta adresinizi değiştirmek, bu siparişe erişim bağlantısını güncelleyecektir. Kaydettikten sonra yeni sipariş bağlantısına yönlendirileceksiniz.\",\"jT142F\":[[\"diffHours\"],\" saat içinde\"],\"OoSyqO\":[[\"diffMinutes\"],\" dakika içinde\"],\"PdMhEx\":[\"son \",[\"0\"],\" dakikada\"],\"u7r0G5\":\"Yüz yüze — bir mekân belirleyin\",\"Ip0hl5\":\"yüz yüze, çevrimiçi, ayarlanmamış veya karma\",\"F1Xp97\":\"Bireysel katılımcılar\",\"85e6zs\":\"Liquid Token Ekle\",\"38KFY0\":\"Değişken Ekle\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Anında Stripe ödemeleri\",\"nbfdhU\":\"Entegrasyonlar\",\"I8eJ6/\":\"Katılımcı biletindeki dahili notlar\",\"B2Tpo0\":\"Geçersiz e-posta\",\"5tT0+u\":\"Geçersiz e-posta formatı\",\"f9WRpE\":\"Geçersiz dosya türü. Lütfen bir resim yükleyin.\",\"tnL+GP\":\"Geçersiz Liquid sözdizimi. Lütfen düzeltin ve tekrar deneyin.\",\"N9JsFT\":\"Geçersiz KDV numarası formatı\",\"g+lLS9\":\"Bir ekip üyesi davet et\",\"1z26sk\":\"Ekip Üyesi Davet Et\",\"KR0679\":\"Ekip Üyelerini Davet Et\",\"aH6ZIb\":\"Ekibinizi Davet Edin\",\"IuMGvq\":\"Fatura\",\"Lj7sBL\":\"İtalyanca\",\"F5/CBH\":\"ürün\",\"BzfzPK\":\"Ürünler\",\"rjyWPb\":\"Ocak\",\"KmWyx0\":\"İş\",\"o5r6b2\":\"İş silindi\",\"cd0jIM\":\"İş detayları\",\"ruJO57\":\"İş adı\",\"YZi+Hu\":\"İş yeniden deneme için sıraya alındı\",\"nCywLA\":\"Her yerden katılın\",\"SNzppu\":\"Bekleme listesine katıl\",\"dLouFI\":[[\"productDisplayName\"],\" için Bekleme Listesine Katıl\"],\"2gMuHR\":\"Katıldı\",\"u4ex5r\":\"Temmuz\",\"zeEQd/\":\"Haziran\",\"MxjCqk\":\"Sadece biletlerinizi mi arıyorsunuz?\",\"xOTzt5\":\"az önce\",\"0RihU9\":\"Az önce sona erdi\",\"lB2hSG\":[[\"0\"],\" adresinden haberler ve etkinlikler hakkında beni bilgilendirin\"],\"ioFA9i\":\"Kârı koruyun.\",\"4Sffp7\":\"Oturum için etiket\",\"o66QSP\":\"etiket güncellemeleri\",\"RtKKbA\":\"Son\",\"DruLRc\":\"Son 14 Gün\",\"ve9JTU\":\"Soyad gereklidir\",\"h0Q9Iw\":\"Son Yanıt\",\"gw3Ur5\":\"Son Tetiklenme\",\"FIq1Ba\":\"Daha sonra\",\"xvnLMP\":\"Son check-in'ler\",\"pzAivY\":\"Çözümlenmiş konumun enlemi\",\"N5TErv\":\"Sınırsız için boş bırakın\",\"L/hDDD\":\"Bu giriş listesini tüm oturumlara uygulamak için boş bırakın\",\"9Pf3wk\":\"Etkinlikteki tüm biletleri kapsayacak şekilde açık bırakın. Belirli biletleri seçmek için kapatın.\",\"Hq2BzX\":\"Onlara değişikliği bildirin\",\"+uexiy\":\"Onlara değişiklikleri bildirin\",\"exYcTF\":\"Kütüphane\",\"1njn7W\":\"Açık\",\"1qY5Ue\":\"Bağlantı Süresi Doldu veya Geçersiz\",\"+zSD/o\":\"Etkinlik ana sayfasına bağlantı\",\"psosdY\":\"Sipariş detaylarına bağlantı\",\"6JzK4N\":\"Bilete bağlantı\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Bağlantılara İzin Verildi\",\"2BBAbc\":\"Liste\",\"5NZpX8\":\"Liste görünümü\",\"dF6vP6\":\"Canlı\",\"fpMs2Z\":\"CANLI\",\"D9zTjx\":\"Canlı Etkinlikler\",\"C33p4q\":\"Yüklenmiş tarihler\",\"WdmJIX\":\"Önizleme yükleniyor...\",\"IoDI2o\":\"Token'lar yükleniyor...\",\"G3Ge9Z\":\"Webhook günlükleri yükleniyor...\",\"NFxlHW\":\"Webhook'lar Yükleniyor\",\"E0DoRM\":\"Konum silindi\",\"NtLHT3\":\"Konum Biçimlendirilmiş Adres\",\"h4vxDc\":\"Konum Enlemi\",\"f2TMhR\":\"Konum Boylamı\",\"lnCo2f\":\"Konum Modu\",\"8pmGFk\":\"Konum Adı\",\"7w8lJU\":\"Konum kaydedildi\",\"YsRXDD\":\"Konum güncellendi\",\"A/kIva\":\"konum güncellemeleri\",\"VppBoU\":\"Konumlar\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo ve Kapak\",\"gddQe0\":\"Organizatörünüz için logo ve kapak görseli\",\"TBEnp1\":\"Logo başlıkta görüntülenecektir\",\"Jzu30R\":\"Logo bilette görüntülenecektir\",\"zKTMTg\":\"Çözümlenmiş konumun boylamı\",\"PSRm6/\":\"Biletlerimi ara\",\"yJFu/X\":\"Ana Ofis\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[[\"0\"],\" Yönet\"],\"wZJfA8\":\"Yinelenen etkinliğiniz için tarihleri ve saatleri yönetin\",\"RlzPUE\":\"Stripe'da yönet\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Programı Yönet\",\"zXuaxY\":\"Etkinliğinizin bekleme listesini yönetin, istatistikleri görüntüleyin ve katılımcılara bilet sunun.\",\"BWTzAb\":\"Manuel\",\"g2npA5\":\"Manuel teklif\",\"hg6l4j\":\"Mart\",\"pqRBOz\":\"Doğrulanmış olarak işaretle (yönetici geçersiz kılması)\",\"2L3vle\":\"Maks Mesaj / 24s\",\"Qp4HWD\":\"Maks Alıcı / Mesaj\",\"3JzsDb\":\"Mayıs\",\"agPptk\":\"Ortam\",\"xDAtGP\":\"Mesaj\",\"bECJqy\":\"Mesaj başarıyla onaylandı\",\"1jRD0v\":\"Belirli biletlere sahip katılımcılara mesaj gönderin\",\"uQLXbS\":\"Mesaj iptal edildi\",\"48rf3i\":\"Mesaj 5000 karakteri geçemez\",\"ZPj0Q8\":\"Mesaj detayları\",\"Vjat/X\":\"Mesaj gerekli\",\"0/yJtP\":\"Belirli ürünlere sahip sipariş sahiplerine mesaj gönderin\",\"saG4At\":\"Mesaj zamanlandı\",\"mFdA+i\":\"Mesajlaşma Seviyesi\",\"v7xKtM\":\"Mesajlaşma seviyesi başarıyla güncellendi\",\"H9HlDe\":\"dakika\",\"agRWc1\":\"Dakika\",\"YYzBv9\":\"Pt\",\"zz/Wd/\":\"Mod\",\"fpMgHS\":\"Pzt\",\"hty0d5\":\"Pazartesi\",\"JbIgPz\":\"Para değerleri tüm para birimlerindeki yaklaşık toplamlardır\",\"qvF+MT\":\"Başarısız arka plan işlerini izleyin ve yönetin\",\"kY2ll9\":\"ay\",\"HajiZl\":\"Ay\",\"+8Nek/\":\"Aylık\",\"1LkxnU\":\"Aylık Düzen\",\"6jefe3\":\"ay\",\"f8jrkd\":\"daha\",\"JcD7qf\":\"Daha fazla işlem\",\"w36OkR\":\"En Çok Görüntülenen Etkinlikler (Son 14 Gün)\",\"+Y/na7\":\"Tüm tarihleri öne veya sona kaydır\",\"3DIpY0\":\"Birden fazla konum\",\"g9cQCP\":\"Birden fazla bilet türü\",\"GfaxEk\":\"Müzik\",\"oVGCGh\":\"Biletlerim\",\"8/brI5\":\"Ad gerekli\",\"sFFArG\":\"İsim 255 karakterden az olmalıdır\",\"sCV5Yc\":\"Etkinlik adı\",\"xxU3NX\":\"Net Gelir\",\"7I8LlL\":\"Yeni kapasite\",\"n1GRql\":\"Yeni etiket\",\"y0Fcpd\":\"Yeni konum\",\"ArHT/C\":\"Yeni Kayıtlar\",\"uK7xWf\":\"Yeni saat:\",\"veT5Br\":\"Bir sonraki oturum\",\"WXtl5X\":[\"Sıradaki: \",[\"nextFormatted\"]],\"eWRECP\":\"Gece Hayatı\",\"HSw5l3\":\"Hayır - Bireyim veya KDV kayıtlı olmayan bir işletmeyim\",\"VHfLAW\":\"Hesap yok\",\"+jIeoh\":\"Hesap bulunamadı\",\"074+X8\":\"Aktif Webhook Yok\",\"zxnup4\":\"Gösterilecek bağlı kuruluş yok\",\"Dwf4dR\":\"Henüz katılımcı sorusu yok\",\"th7rdT\":\"Gösterilecek katılımcı yok\",\"PKySlW\":\"Bu tarih için henüz katılımcı yok.\",\"/UC6qk\":\"Atıf verisi bulunamadı\",\"E2vYsO\":\"Stripe henüz bir yetenek bildirmedi.\",\"amMkpL\":\"Kapasite yok\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Bu etkinlik için kullanılabilir giriş listesi yok.\",\"wG+knX\":\"Henüz check-in yok\",\"+dAKxg\":\"Yapılandırma bulunamadı\",\"LiLk8u\":\"Kullanılabilir bağlantı yok\",\"eb47T5\":\"Seçilen filtreler için veri bulunamadı. Tarih aralığını veya para birimini ayarlamayı deneyin.\",\"lFVUyx\":\"Tarihe özel giriş listesi yok\",\"I8mtzP\":\"Bu ay için uygun tarih yok. Başka bir aya geçmeyi deneyin.\",\"yDukIL\":\"Mevcut filtrelerle eşleşen tarih yok.\",\"B7phdj\":\"Filtrelerinizle eşleşen tarih yok\",\"/ZB4Um\":\"Aramanızla eşleşen tarih yok\",\"gEdNe8\":\"Henüz programlanmış tarih yok\",\"27GYXJ\":\"Programlanmış tarih yok.\",\"pZNOT9\":\"Bitiş tarihi yok\",\"dW40Uz\":\"Etkinlik bulunamadı\",\"8pQ3NJ\":\"Önümüzdeki 24 saat içinde başlayan etkinlik yok\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Başarısız iş yok\",\"EpvBAp\":\"Fatura yok\",\"XZkeaI\":\"Günlük bulunamadı\",\"nrSs2u\":\"Mesaj bulunamadı\",\"Rj99yx\":\"Uygun oturum yok\",\"IFU1IG\":\"Bu tarihte oturum yok\",\"OVFwlg\":\"Henüz sipariş sorusu yok\",\"EJ7bVz\":\"Sipariş bulunamadı\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Bu tarih için henüz sipariş yok.\",\"wUv5xQ\":\"Son 14 günde organizatör aktivitesi yok\",\"vLd1tV\":\"Kullanılabilir organizatör bağlamı yok.\",\"B7w4KY\":\"Başka organizatör mevcut değil\",\"PChXMe\":\"Ücretli Sipariş Yok\",\"6jYQGG\":\"Geçmiş etkinlik yok\",\"CHzaTD\":\"Son 14 günde popüler etkinlik yok\",\"zK/+ef\":\"Seçim için ürün mevcut değil\",\"M1/lXs\":\"Bu etkinlik için yapılandırılmış ürün yok.\",\"kY7XDn\":\"Hiçbir ürünün bekleme listesi kaydı yok\",\"wYiAtV\":\"Yakın zamanda hesap kaydı yok\",\"UW90md\":\"Alıcı bulunamadı\",\"QoAi8D\":\"Yanıt yok\",\"JeO7SI\":\"Yanıt Yok\",\"EK/G11\":\"Henüz yanıt yok\",\"7J5OKy\":\"Henüz kayıtlı konum yok\",\"wpCjcf\":\"Henüz kayıtlı konum yok. Adresli etkinlikler oluşturdukça burada görüneceklerdir.\",\"mPdY6W\":\"Öneri yok\",\"3sRuiW\":\"Bilet Bulunamadı\",\"k2C0ZR\":\"Yaklaşan tarih yok\",\"yM5c0q\":\"Yaklaşan etkinlik yok\",\"qpC74J\":\"Kullanıcı bulunamadı\",\"8wgkoi\":\"Son 14 günde görüntülenen etkinlik yok\",\"Arzxc1\":\"Bekleme listesi kaydı yok\",\"n5vdm2\":\"Bu uç nokta için henüz webhook olayı kaydedilmedi. Olaylar tetiklendiklerinde burada görünecektir.\",\"4GhX3c\":\"Webhook Yok\",\"4+am6b\":\"Hayır, beni burada tut\",\"4JVMUi\":\"düzenlenmemiş\",\"Itw24Q\":\"Giriş yapılmadı\",\"x5+Lcz\":\"Giriş Yapılmadı\",\"8n10sz\":\"Uygun Değil\",\"kLvU3F\":\"Katılımcıları bilgilendir ve satışları durdur\",\"t9QlBd\":\"Kasım\",\"kAREMN\":\"Oluşturulacak tarih sayısı\",\"6u1B3O\":\"Oturum\",\"mmoE62\":\"Oturum İptal Edildi\",\"UYWXdN\":\"Oturum Bitiş Tarihi\",\"k7dZT5\":\"Oturum Bitiş Saati\",\"Opinaj\":\"Oturum Etiketi\",\"V9flmL\":\"Oturum Programı\",\"NUTUUs\":\"Oturum Programı sayfası\",\"AT8UKD\":\"Oturum Başlangıç Tarihi\",\"Um8bvD\":\"Oturum Başlangıç Saati\",\"Kh3WO8\":\"Oturum Özeti\",\"byXCTu\":\"Oturumlar\",\"KATw3p\":\"Oturumlar (yalnızca gelecek)\",\"85rTR2\":\"Oturumlar oluşturulduktan sonra yapılandırılabilir\",\"dzQfDY\":\"Ekim\",\"BwJKBw\":\"/\",\"9h7RDh\":\"Teklif Et\",\"EfK2O6\":\"Yer Teklif Et\",\"3sVRey\":\"Bilet teklif et\",\"2O7Ybb\":\"Teklif zaman aşımı\",\"1jUg5D\":\"Teklif edildi\",\"l+/HS6\":[\"Teklifler \",[\"timeoutHours\"],\" saat sonra sona erer.\"],\"lQgMLn\":\"Ofis veya mekan adı\",\"6Aih4U\":\"Çevrimdışı\",\"Z6gBGW\":\"Çevrimdışı Ödeme\",\"nO3VbP\":[[\"0\"],\" satışta\"],\"oXOSPE\":\"Çevrimiçi\",\"aqmy5k\":\"Çevrimiçi — bağlantı bilgilerini girin\",\"LuZBbx\":\"Çevrimiçi ve yüz yüze\",\"IXuOqt\":\"Çevrimiçi ve yüz yüze — programa bakın\",\"w3DG44\":\"Çevrimiçi Bağlantı Detayları\",\"WjSpu5\":\"Çevrimiçi Etkinlik\",\"TP6jss\":\"Çevrimiçi etkinlik bağlantı detayları\",\"NdOxqr\":\"Yalnızca hesap yöneticileri etkinlikleri silebilir veya arşivleyebilir. Yardım için hesap yöneticinizle iletişime geçin.\",\"rnoDMF\":\"Yalnızca hesap yöneticileri organizatörleri silebilir veya arşivleyebilir. Yardım için hesap yöneticinizle iletişime geçin.\",\"bU7oUm\":\"Yalnızca bu durumlara sahip siparişlere gönder\",\"M2w1ni\":\"Yalnızca promosyon koduyla görünür\",\"y8Bm7C\":\"Girişi aç\",\"RLz7P+\":\"Oturumu aç\",\"cDSdPb\":\"Seçicilerde gösterilen isteğe bağlı takma ad, örn. \\\"Genel Merkez Toplantı Odası\\\"\",\"HXMJxH\":\"Feragatnameler, iletişim bilgileri veya teşekkür notları için isteğe bağlı metin (yalnızca tek satır)\",\"L565X2\":\"seçenekler\",\"8m9emP\":\"veya tek bir tarih ekleyin\",\"dSeVIm\":\"sipariş\",\"c/TIyD\":\"Sipariş ve Bilet\",\"H5qWhm\":\"Sipariş iptal edildi\",\"b6+Y+n\":\"Sipariş tamamlandı\",\"x4MLWE\":\"Sipariş Onayı\",\"CsTTH0\":\"Sipariş onayı başarıyla yeniden gönderildi\",\"ppuQR4\":\"Sipariş Oluşturuldu\",\"0UZTSq\":\"Sipariş Para Birimi\",\"xtQzag\":\"Sipariş ayrıntıları\",\"HdmwrI\":\"Sipariş E-postası\",\"bwBlJv\":\"Sipariş Adı\",\"vrSW9M\":\"Sipariş iptal edildi ve iade edildi. Sipariş sahibi bilgilendirildi.\",\"rzw+wS\":\"Sipariş sahipleri\",\"oI/hGR\":\"Sipariş Kimliği\",\"Pc729f\":\"Sipariş Çevrimdışı Ödeme Bekliyor\",\"F4NXOl\":\"Sipariş Soyadı\",\"RQCXz6\":\"Sipariş Limitleri\",\"SO9AEF\":\"Sipariş limitleri ayarlandı\",\"5RDEEn\":\"Sipariş Dili\",\"vu6Arl\":\"Sipariş Ödendi Olarak İşaretlendi\",\"sLbJQz\":\"Sipariş bulunamadı\",\"kvYpYu\":\"Sipariş Bulunamadı\",\"i8VBuv\":\"Sipariş Numarası\",\"eJ8SvM\":\"Sipariş numarası, satın alma tarihi, alıcı e-postası\",\"FaPYw+\":\"Sipariş sahibi\",\"eB5vce\":\"Belirli bir ürüne sahip sipariş sahipleri\",\"CxLoxM\":\"Ürünlere sahip sipariş sahipleri\",\"DoH3fD\":\"Sipariş Ödemesi Beklemede\",\"UkHo4c\":\"Sipariş Ref.\",\"EZy55F\":\"Sipariş İade Edildi\",\"6eSHqs\":\"Sipariş durumları\",\"oW5877\":\"Sipariş Toplamı\",\"e7eZuA\":\"Sipariş Güncellendi\",\"1SQRYo\":\"Sipariş başarıyla güncellendi\",\"KndP6g\":\"Sipariş URL'si\",\"3NT0Ck\":\"Sipariş iptal edildi\",\"V5khLm\":\"sipariş\",\"sd5IMt\":\"Tamamlanan Siparişler\",\"5It1cQ\":\"Siparişler Dışa Aktarıldı\",\"tlKX/S\":\"Birden fazla tarihi kapsayan siparişler manuel inceleme için işaretlenecektir.\",\"UQ0ACV\":\"Sipariş Toplamı\",\"B/EBQv\":\"Siparişler:\",\"qtGTNu\":\"Organik Hesaplar\",\"ucgZ0o\":\"Organizasyon\",\"P/JHA4\":\"Organizatör başarıyla arşivlendi\",\"S3CZ5M\":\"Organizatör Paneli\",\"GzjTd0\":\"Organizatör başarıyla silindi\",\"Uu0hZq\":\"Organizatör E-postası\",\"Gy7BA3\":\"Organizatör e-posta adresi\",\"SQqJd8\":\"Organizatör Bulunamadı\",\"HF8Bxa\":\"Organizatör başarıyla geri yüklendi\",\"wpj63n\":\"Organizatör Ayarları\",\"o1my93\":\"Organizatör durum güncellemesi başarısız oldu. Lütfen daha sonra tekrar deneyin\",\"rLHma1\":\"Organizatör durumu güncellendi\",\"LqBITi\":\"Organizatör/varsayılan şablon kullanılacak\",\"q4zH+l\":\"Organizatörler\",\"/IX/7x\":\"Diğer\",\"RsiDDQ\":\"Diğer Listeler (Bilet Dahil Değil)\",\"aDfajK\":\"Açık hava\",\"qMASRF\":\"Giden mesajlar\",\"iCOVQO\":\"Geçersiz Kıl\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Fiyatı geçersiz kıl\",\"cnVIpl\":\"Geçersiz kılma kaldırıldı\",\"6/dCYd\":\"Genel Bakış\",\"6WdDG7\":\"Sayfa\",\"8uqsE5\":\"Sayfa artık mevcut değil\",\"QkLf4H\":\"Sayfa URL'si\",\"sF+Xp9\":\"Sayfa Görüntülemeleri\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Ücretli Hesaplar\",\"5F7SYw\":\"Kısmi iade\",\"fFYotW\":[\"Kısmen iade edildi: \",[\"0\"]],\"i8day5\":\"Ücreti alıcıya aktar\",\"k4FLBQ\":\"Alıcıya aktar\",\"Ff0Dor\":\"Geçmiş\",\"BFjW8X\":\"Gecikmiş\",\"xTPjSy\":\"Geçmiş Etkinlikler\",\"/l/ckQ\":\"URL Yapıştır\",\"URAE3q\":\"Duraklatıldı\",\"4fL/V7\":\"Öde\",\"OZK07J\":\"Kilidi açmak için öde\",\"c2/9VE\":\"Yük\",\"5cxUwd\":\"Ödeme Tarihi\",\"ENEPLY\":\"Ödeme yöntemi\",\"8Lx2X7\":\"Ödeme alındı\",\"fx8BTd\":\"Ödemeler mevcut değil\",\"C+ylwF\":\"Ödemeler\",\"UbRKMZ\":\"Beklemede\",\"UkM20g\":\"İnceleme Bekliyor\",\"dPYu1F\":\"Katılımcı Başına\",\"mQV/nJ\":\"dakikada\",\"VlXNyK\":\"Sipariş başına\",\"hauDFf\":\"Bilet başına\",\"mnF83a\":\"Yüzde Ücreti\",\"TNLuRD\":\"Yüzde ücreti (%)\",\"MixU2P\":\"Yüzde 0 ile 100 arasında olmalıdır\",\"MkuVAZ\":\"İşlem tutarının yüzdesi\",\"/Bh+7r\":\"Performans\",\"fIp56F\":\"Bu etkinliği ve tüm ilgili verileri kalıcı olarak silin.\",\"nJeeX7\":\"Bu organizatörü ve tüm etkinliklerini kalıcı olarak silin.\",\"wfCTgK\":\"Bu tarihi kalıcı olarak kaldır\",\"6kPk3+\":\"Kişisel Bilgiler\",\"zmwvG2\":\"Telefon\",\"SdM+Q1\":\"Bir konum seçin\",\"tSR/oe\":\"Bir bitiş tarihi seçin\",\"e8kzpp\":\"Ayın en az bir gününü seçin\",\"35C8QZ\":\"Haftanın en az bir gününü seçin\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Verildi\",\"wBJR8i\":\"Bir etkinlik mi planlıyorsunuz?\",\"J3lhKT\":\"Platform ücreti\",\"RD51+P\":[\"Ödemenizden \",[\"0\"],\" platform ücreti düşülür\"],\"br3Y/y\":\"Platform Ücretleri\",\"3buiaw\":\"Platform Ücretleri Raporu\",\"kv9dM4\":\"Platform Geliri\",\"PJ3Ykr\":\"Güncellenmiş saat için lütfen biletinizi kontrol edin. Biletleriniz hâlâ geçerli — yeni saatler size uymadıkça herhangi bir işlem yapmanıza gerek yok. Sorularınız varsa bu e-postayı yanıtlayın.\",\"OtjenF\":\"Lütfen geçerli bir e-posta adresi girin\",\"jEw0Mr\":\"Lütfen geçerli bir URL girin\",\"n8+Ng/\":\"Lütfen 5 haneli kodu girin\",\"r+lQXT\":\"Lütfen KDV numaranızı girin\",\"Dvq0wf\":\"Lütfen bir görsel sağlayın.\",\"2cUopP\":\"Lütfen ödeme işlemini yeniden başlatın.\",\"GoXxOA\":\"Lütfen bir tarih ve saat seçin\",\"8KmsFa\":\"Lütfen bir tarih aralığı seçin\",\"EFq6EG\":\"Lütfen bir görsel seçin.\",\"fuwKpE\":\"Lütfen tekrar deneyin.\",\"klWBeI\":\"Başka bir kod istemeden önce lütfen bekleyin\",\"hfHhaa\":\"Bağlı kuruluşlarınızı dışa aktarma için hazırlarken lütfen bekleyin...\",\"o+tJN/\":\"Katılımcılarınızı dışa aktarma için hazırlarken lütfen bekleyin...\",\"+5Mlle\":\"Siparişlerinizi dışa aktarma için hazırlarken lütfen bekleyin...\",\"trnWaw\":\"Lehçe\",\"luHAJY\":\"Popüler Etkinlikler (Son 14 Gün)\",\"p/78dY\":\"Konum\",\"TjX7xL\":\"Ödeme Sonrası Mesajı\",\"OESu7I\":\"Birden fazla bilet türünde stok paylaşarak aşırı satışı önleyin.\",\"NgVUL2\":\"Ödeme formunu önizle\",\"cs5muu\":\"Etkinlik sayfasını önizle\",\"+4yRWM\":\"Bilet fiyatı\",\"Jm2AC3\":\"Fiyat Kademesi\",\"a5jvSX\":\"Fiyat Kademeleri\",\"ReihZ7\":\"Yazdırma Önizlemesi\",\"JnuPvH\":\"Bileti Yazdır\",\"tYF4Zq\":\"PDF'ye Yazdır\",\"LcET2C\":\"Gizlilik Politikası\",\"8z6Y5D\":\"İade İşle\",\"JcejNJ\":\"Sipariş işleniyor\",\"EWCLpZ\":\"Ürün Oluşturuldu\",\"XkFYVB\":\"Ürün Silindi\",\"YMwcbR\":\"Ürün satışları, gelir ve vergi dökümü\",\"ls0mTC\":\"İptal edilen tarihler için ürün ayarları düzenlenemez.\",\"2339ej\":\"Ürün ayarları başarıyla kaydedildi\",\"ldVIlB\":\"Ürün Güncellendi\",\"CP3D8G\":\"İlerleme\",\"JoKGiJ\":\"Promosyon kodu\",\"k3wH7i\":\"Promosyon kodu kullanımı ve indirim dökümü\",\"tZqL0q\":\"promosyon kodları\",\"oCHiz3\":\"Promosyon kodları\",\"uEhdRh\":\"Yalnızca Promosyon\",\"dLm8V5\":\"Promosyon e-postaları hesap askıya alınmasına neden olabilir\",\"XoEWtl\":\"Yeni konum için en az bir adres alanı girin.\",\"2W/7Gz\":\"Ödemelerin sürmesi için Stripe'ın bir sonraki incelemesinden önce aşağıdakileri sağla.\",\"aemBRq\":\"Sağlayıcı\",\"EEYbdt\":\"Yayınla\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Satın Alındı\",\"JunetL\":\"Satın alan\",\"phmeUH\":\"Satın alan e-postası\",\"ywR4ZL\":\"QR kod ile giriş\",\"oWXNE5\":\"Adet\",\"biEyJ4\":\"Cevaplar\",\"k/bJj0\":\"Sorular yeniden sıralandı\",\"b24kPi\":\"Kuyruk\",\"lTPqpM\":\"Hızlı İpucu\",\"fqDzSu\":\"Oran\",\"mnUGVC\":\"Hız sınırı aşıldı. Lütfen daha sonra tekrar deneyin.\",\"t41hVI\":\"Yeri Yeniden Teklif Et\",\"TNclgc\":\"Bu tarih yeniden etkinleştirilsin mi? Gelecek satışlara yeniden açılacaktır.\",\"uqoRbb\":\"Gerçek zamanlı analitik\",\"xzRvs4\":[[\"0\"],\"'ten ürün güncellemeleri alın.\"],\"pLXbi8\":\"Son Hesap Kayıtları\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Son Katılımcılar\",\"qhfiwV\":\"Son check-in'ler\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Son Siparişler\",\"7hPBBn\":\"alıcı\",\"jp5bq8\":\"alıcı\",\"yPrbsy\":\"Alıcılar\",\"E1F5Ji\":\"Alıcılar mesaj gönderildikten sonra görüntülenebilir\",\"wuhHPE\":\"Yinelenen\",\"asLqwt\":\"Yinelenen Etkinlik\",\"D0tAMe\":\"Yinelenen etkinlikler\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Stripe'a yönlendiriliyor...\",\"pnoTN5\":\"Yönlendirme Hesapları\",\"ACKu03\":\"Önizlemeyi Yenile\",\"vuFYA6\":\"Bu tarihler için tüm siparişleri iade et\",\"4cRUK3\":\"Bu tarih için tüm siparişleri iade et\",\"fKn/k6\":\"İade tutarı\",\"qY4rpA\":\"İade başarısız oldu\",\"TspTcZ\":\"İade Yapıldı\",\"FaK/8G\":[\"Siparişi İade Et \",[\"0\"]],\"MGbi9P\":\"İade beklemede\",\"BDSRuX\":[\"İade edildi: \",[\"0\"]],\"bU4bS1\":\"İadeler\",\"rYXfOA\":\"Bölgesel Ayarlar\",\"5tl0Bp\":\"Kayıt soruları\",\"ZNo5k1\":\"Kalan\",\"EMnuA4\":\"Hatırlatıcı zamanlandı\",\"Bjh87R\":\"Tüm tarihlerden etiketi kaldır\",\"KkJtVK\":\"Yeni satışlara yeniden aç\",\"XJwWJp\":\"Bu tarih yeni satışlara yeniden açılsın mı? Daha önce iptal edilen biletler geri yüklenmeyecek — etkilenen katılımcılar iptal edilmiş olarak kalacak ve daha önce yapılan iadeler geri alınmayacak.\",\"bAwDQs\":\"Şu kadarda bir tekrarla\",\"CQeZT8\":\"Rapor bulunamadı\",\"JEPMXN\":\"Yeni bir bağlantı isteyin\",\"TMLAx2\":\"Gerekli\",\"mdeIOH\":\"Kodu yeniden gönder\",\"sQxe68\":\"Onayı yeniden gönder\",\"bxoWpz\":\"Onay E-postasını Yeniden Gönder\",\"G42SNI\":\"E-postayı yeniden gönder\",\"TTpXL3\":[[\"resendCooldown\"],\"s içinde yeniden gönder\"],\"5CiNPm\":\"Bileti Yeniden Gönder\",\"Uwsg2F\":\"Rezerve edildi\",\"8wUjGl\":\"Rezerve edilme süresi:\",\"a5z8mb\":\"Temel fiyata sıfırla\",\"kCn6wb\":\"Sıfırlanıyor...\",\"404zLK\":\"Çözümlenmiş konum veya mekân adı\",\"ZlCDf+\":\"Yanıt\",\"bsydMp\":\"Yanıt Detayları\",\"yKu/3Y\":\"Geri Yükle\",\"RokrZf\":\"Etkinliği Geri Yükle\",\"/JyMGh\":\"Organizatörü Geri Yükle\",\"HFvFRb\":\"Bu etkinliği yeniden görünür hale getirmek için geri yükleyin.\",\"DDIcqy\":\"Bu organizatörü geri yükleyin ve yeniden aktif hale getirin.\",\"mO8KLE\":\"sonuç\",\"6gRgw8\":\"Yeniden dene\",\"1BG8ga\":\"Tümünü yeniden dene\",\"rDC+T6\":\"İşi yeniden dene\",\"CbnrWb\":\"Etkinliğe Dön\",\"mdQ0zb\":\"Etkinlikleriniz için yeniden kullanılabilir mekânlar. Otomatik tamamlama ile oluşturulan konumlar burada otomatik olarak kaydedilir.\",\"XFOPle\":\"Yeniden kullan\",\"1Zehp4\":\"Bu hesaptaki başka bir organizatörün Stripe bağlantısını yeniden kullan.\",\"Oo/PLb\":\"Gelir Özeti\",\"O/8Ceg\":\"Bugünkü gelir\",\"CfuueU\":\"Teklifi Geri Çek\",\"RIgKv+\":\"Belirli bir tarihe kadar çalıştır\",\"JYRqp5\":\"Ct\",\"dFFW9L\":[\"Satış sona erdi \",[\"0\"]],\"loCKGB\":[\"Satış bitiyor \",[\"0\"]],\"wlfBad\":\"Satış Dönemi\",\"qi81Jg\":\"Satış dönemi tarihleri, programınızdaki tüm tarihler için geçerlidir. Tek tek tarihler için fiyatlandırma ve mevcudiyeti kontrol etmek için <0>Oturum Programı sayfasındaki geçersiz kılmaları kullanın.\",\"5CDM6r\":\"Satış dönemi ayarlandı\",\"ftzaMf\":\"Satış dönemi, sipariş limitleri, görünürlük\",\"zpekWp\":[\"Satış başlıyor \",[\"0\"]],\"mUv9U4\":\"Satışlar\",\"9KnRdL\":\"Satışlar duraklatıldı\",\"JC3J0k\":\"Oturum başına satış, katılım ve giriş dökümü\",\"3VnlS9\":\"Tüm etkinlikler için satışlar, siparişler ve performans metrikleri\",\"3Q1AWe\":\"Satışlar:\",\"LeuERW\":\"Etkinlikle aynı\",\"B4nE3N\":\"Örnek bilet fiyatı\",\"8BRPoH\":\"Örnek Mekan\",\"PiK6Ld\":\"Cmt\",\"+5kO8P\":\"Cumartesi\",\"zJiuDn\":\"Ücret geçersiz kılmasını kaydet\",\"NB8Uxt\":\"Programı Kaydet\",\"KZrfYJ\":\"Sosyal Bağlantıları Kaydet\",\"9Y3hAT\":\"Şablonu Kaydet\",\"C8ne4X\":\"Bilet Tasarımını Kaydet\",\"cTI8IK\":\"KDV ayarlarını kaydet\",\"6/TNCd\":\"KDV Ayarlarını Kaydet\",\"4RvD9q\":\"Kayıtlı konum\",\"cgw0cL\":\"Kayıtlı konumlar\",\"lvSrsT\":\"Kayıtlı Konumlar\",\"Fbqm/I\":\"Geçersiz kılma kaydetmek, şu anda sistem varsayılanında olan bu organizatör için özel bir yapılandırma oluşturur.\",\"I+FvbD\":\"Tara\",\"0zd6Nm\":\"Bir katılımcıyı check-in yapmak için bilet tara\",\"bQG7Qk\":\"Taranan biletler burada görünecek\",\"WDYSLJ\":\"Tarayıcı modu\",\"gmB6oO\":\"Program\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Program başarıyla oluşturuldu\",\"YP7frt\":\"Program şu tarihte biter\",\"QS1Nla\":\"Daha sonra gönder\",\"NAzVVw\":\"Mesajı zamanla\",\"Fz09JP\":\"Program başlangıç tarihi\",\"4ba0NE\":\"Planlandı\",\"qcP/8K\":\"Zamanlanmış saat\",\"A1taO8\":\"Ara\",\"ftNXma\":\"Bağlı kuruluşları ara...\",\"VMU+zM\":\"Katılımcı ara\",\"VY+Bdn\":\"Hesap adı veya e-posta ile ara...\",\"VX+B3I\":\"Etkinlik başlığı veya organizatöre göre ara...\",\"R0wEyA\":\"İş adı veya istisnaya göre ara...\",\"VT+urE\":\"İsim veya e-posta ile ara...\",\"GHdjuo\":\"Ad, e-posta veya hesaba göre ara...\",\"4mBFO7\":\"Ad, sipariş, bilet veya email ile ara\",\"20ce0U\":\"Sipariş kimliği, müşteri adı veya e-posta ile arayın...\",\"4DSz7Z\":\"Konu, etkinlik veya hesaba göre ara...\",\"nQC7Z9\":\"Tarihlerde ara...\",\"iRtEpV\":\"Tarihlerde ara…\",\"JRM7ao\":\"Adres ara\",\"BWF1kC\":\"Mesajlarda ara...\",\"3aD3GF\":\"Mevsimsel\",\"ku//5b\":\"İkinci\",\"Mck5ht\":\"Güvenli Ödeme\",\"s7tXqF\":\"Programa bak\",\"JFap6u\":\"Stripe'ın hâlâ neye ihtiyacı olduğunu gör\",\"p7xUrt\":\"Bir kategori seçin\",\"hTKQwS\":\"Tarih ve Saat Seçin\",\"e4L7bF\":\"İçeriğini görüntülemek için bir mesaj seçin\",\"zPRPMf\":\"Bir seviye seçin\",\"uqpVri\":\"Bir saat seçin\",\"BFRSTT\":\"Hesap Seç\",\"wgNoIs\":\"Tümünü seç\",\"mCB6Je\":\"Tümünü Seç\",\"aCEysm\":[[\"0\"],\" tarihindeki tümünü seç\"],\"a6+167\":\"Bir etkinlik seçin\",\"CFbaPk\":\"Katılımcı grubu seçin\",\"88a49s\":\"Kamera seç\",\"tVW/yo\":\"Para birimi seçin\",\"SJQM1I\":\"Tarih seç\",\"n9ZhRa\":\"Bitiş tarih ve saatini seçin\",\"gTN6Ws\":\"Bitiş saatini seçin\",\"0U6E9W\":\"Etkinlik kategorisi seçin\",\"j9cPeF\":\"Etkinlik türlerini seçin\",\"ypTjHL\":\"Oturum seç\",\"KizCK7\":\"Başlangıç tarih ve saatini seçin\",\"dJZTv2\":\"Başlangıç saatini seçin\",\"x8XMsJ\":\"Bu hesap için mesajlaşma seviyesini seçin. Bu, mesaj limitlerini ve bağlantı izinlerini kontrol eder.\",\"aT3jZX\":\"Saat dilimi seçin\",\"TxfvH2\":\"Bu mesajı hangi katılımcıların alacağını seçin\",\"Ropvj0\":\"Bu webhook'u tetikleyecek etkinlikleri seçin\",\"+6YAwo\":\"seçildi\",\"ylXj1N\":\"Seçildi\",\"uq3CXQ\":\"Etkinliğinizin biletlerini tüketin.\",\"j9b/iy\":\"Hızlı satılıyor 🔥\",\"73qYgo\":\"Test olarak gönder\",\"HMAqFK\":\"Katılımcılara, bilet sahiplerine veya sipariş sahiplerine e-posta gönderin. Mesajlar hemen gönderilebilir veya daha sonra için planlanabilir.\",\"22Itl6\":\"Bana bir kopya gönder\",\"NpEm3p\":\"Şimdi gönder\",\"nOBvex\":\"Gerçek zamanlı sipariş ve katılımcı verilerini harici sistemlerinize gönderin.\",\"1lNPhX\":\"İade bildirim e-postası gönder\",\"eaUTwS\":\"Sıfırlama bağlantısı gönder\",\"5cV4PY\":\"Tüm oturumlara gönderin veya belirli bir tane seçin\",\"QEQlnV\":\"İlk mesajınızı gönderin\",\"3nMAVT\":\"2g 4s içinde gönderiliyor\",\"IoAuJG\":\"Gönderiliyor...\",\"h69WC6\":\"Gönderildi\",\"BVu2Hz\":\"Gönderen\",\"ZFa8wv\":\"Programlanmış bir tarih iptal edildiğinde katılımcılara gönderilir\",\"SPdzrs\":\"Müşterilere sipariş verdiklerinde gönderilir\",\"LxSN5F\":\"Her katılımcıya bilet detaylarıyla birlikte gönderilir\",\"hgvbYY\":\"Eylül\",\"5sN96e\":\"Oturum iptal edildi\",\"89xaFU\":\"Bu organizatör altında oluşturulan yeni etkinlikler için varsayılan platform ücreti ayarlarını belirleyin.\",\"eXssj5\":\"Bu organizatör altında oluşturulan yeni etkinlikler için varsayılan ayarları belirleyin.\",\"uPe5p8\":\"Her tarihin ne kadar süreceğini ayarlayın\",\"xNsRxU\":\"Tarih sayısını ayarla\",\"ODuUEi\":\"Tarih etiketini ayarla veya temizle\",\"buHACR\":\"Her tarihin bitiş saatini, başlangıç saatinden bu kadar sonraya ayarlayın.\",\"TaeFgl\":\"Sınırsıza ayarla (sınırı kaldır)\",\"pd6SSe\":\"Otomatik olarak tarih oluşturmak için yinelenen bir program oluşturun veya tarihleri tek tek ekleyin.\",\"s0FkEx\":\"Farklı girişler, oturumlar veya günler için giriş listeleri oluşturun.\",\"TaWVGe\":\"Ödemeleri kur\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Program Oluştur\",\"xMO+Ao\":\"Organizasyonunuzu kurun\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Programınızı Oluşturun\",\"ETC76A\":\"Oturumun konumunu veya çevrimiçi bilgilerini belirleyin, değiştirin veya kaldırın\",\"C3htzi\":\"Ayar güncellendi\",\"Ohn74G\":\"Kurulum ve Tasarım\",\"1W5XyZ\":\"Kurulum sadece birkaç dakika sürer — mevcut bir Stripe hesabına ihtiyacın yok. Stripe; kartları, cüzdanları, bölgesel ödeme yöntemlerini ve dolandırıcılık korumasını üstlenir, sen etkinliğine odaklan.\",\"GG7qDw\":\"Bağlı Kuruluş Bağlantısını Paylaş\",\"hL7sDJ\":\"Organizatör Sayfasını Paylaş\",\"jy6QDF\":\"Paylaşımlı Kapasite Yönetimi\",\"jDNHW4\":\"Saatleri kaydır\",\"tPfIaW\":[[\"count\"],\" tarih için saatler kaydırıldı\"],\"WwlM8F\":\"Gelişmiş seçenekleri göster\",\"cMW+gm\":[\"Tüm platformları göster (\",[\"0\"],\" değerli daha fazla)\"],\"wXi9pZ\":\"Oturum açmamış personele notları göster\",\"UVPI5D\":\"Daha az platform göster\",\"Eu/N/d\":\"Pazarlama onay kutusunu göster\",\"SXzpzO\":\"Varsayılan olarak pazarlama onay kutusunu göster\",\"57tTk5\":\"Daha fazla tarih göster\",\"b33PL9\":\"Daha fazla platform göster\",\"Eut7p9\":\"Oturum açmamış personele sipariş ayrıntılarını göster\",\"+RoWKN\":\"Oturum açmamış personele cevapları göster\",\"t1LIQW\":[[\"totalRows\"],\" kayıttan \",[\"0\"],\" tanesi gösteriliyor\"],\"E717U9\":[[\"2\"],\" kaydın \",[\"0\"],\"–\",[\"1\"],\" arası gösteriliyor\"],\"5rzhBQ\":[[\"totalAvailable\"],\" tarihin \",[\"MAX_VISIBLE\"],\" tanesi gösteriliyor. Aramak için yazın.\"],\"WSt3op\":[\"İlk \",[\"0\"],\" gösteriliyor — mesaj gönderildiğinde kalan \",[\"1\"],\" oturum da yine hedeflenecek.\"],\"OJLTEL\":\"Personele sayfa ilk açıldığında gösterilir.\",\"jVRHeq\":\"Kayıt Tarihi\",\"5C7J+P\":\"Tek Etkinlik\",\"E//btK\":\"Manuel düzenlenmiş tarihleri atla\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sosyal\",\"d0rUsW\":\"Sosyal Bağlantılar\",\"j/TOB3\":\"Sosyal Bağlantılar ve Web Sitesi\",\"s9KGXU\":\"Satıldı\",\"iACSrw\":\"Bazı ayrıntılar herkese açık erişime kapalı. Tümünü görmek için giriş yapın.\",\"KTxc6k\":\"Bir şeyler ters gitti, lütfen tekrar deneyin veya sorun devam ederse destek ile iletişime geçin\",\"lkE00/\":\"Bir şeyler ters gitti. Lütfen daha sonra tekrar deneyin.\",\"wdxz7K\":\"Kaynak\",\"fDG2by\":\"Maneviyat\",\"oPaRES\":\"Check-in'i gün, alan veya bilet türüne göre ayırın. Bağlantıyı personelle paylaşın — hesap gerekmez.\",\"7JFNej\":\"Spor\",\"/bfV1Y\":\"Personel talimatları\",\"tXkhj/\":\"Başlangıç\",\"JcQp9p\":\"Başlangıç tarihi ve saati\",\"0m/ekX\":\"Başlangıç Tarihi ve Saati\",\"izRfYP\":\"Başlangıç tarihi gerekli\",\"tuO4fV\":\"Oturumun başlangıç tarihi\",\"2R1+Rv\":\"Etkinliğin başlangıç saati\",\"2Olov3\":\"Oturumun başlangıç saati\",\"n9ZrDo\":\"Bir mekân veya adres yazmaya başlayın...\",\"qeFVhN\":[[\"diffDays\"],\" gün içinde başlıyor\"],\"AOqtxN\":[[\"diffMinutes\"],\" dk içinde başlıyor\"],\"Otg8Oh\":[[\"h\"],\"sa \",[\"m\"],\"dk içinde başlıyor\"],\"Lo49in\":[[\"seconds\"],\"sn içinde başlıyor\"],\"NqChgF\":\"Yarın başlıyor\",\"2NbyY/\":\"İstatistikler\",\"GVUxAX\":\"İstatistikler hesap oluşturma tarihine göre hesaplanır\",\"29Hx9U\":\"İstatistikler\",\"5ia+r6\":\"Hâlâ gerekli\",\"wuV0bK\":\"Taklidi Durdur\",\"s/KaDb\":\"Stripe bağlandı\",\"Bk06QI\":\"Stripe Bağlı\",\"akZMv8\":[\"Stripe bağlantısı \",[\"0\"],\" kaynağından kopyalandı.\"],\"v0aRY1\":\"Stripe bir kurulum bağlantısı döndürmedi. Lütfen tekrar dene.\",\"aKtF0O\":\"Stripe Bağlı Değil\",\"9i0++A\":\"Stripe Ödeme ID\",\"R1lIMV\":\"Stripe yakında birkaç bilgi daha isteyecek\",\"FzcCHA\":\"Stripe, kurulumu tamamlamak için sana birkaç kısa soru yöneltecek.\",\"eYbd7b\":\"Pz\",\"ii0qn/\":\"Konu gerekli\",\"M7Uapz\":\"Konu burada görünecek\",\"6aXq+t\":\"Konu:\",\"JwTmB6\":\"Ürün Başarıyla Çoğaltıldı\",\"WUOCgI\":\"Yer başarıyla teklif edildi\",\"IvxA4G\":[[\"count\"],\" kişiye başarıyla bilet teklif edildi\"],\"kKpkzy\":\"1 kişiye başarıyla bilet teklif edildi\",\"Zi3Sbw\":\"Bekleme listesinden başarıyla kaldırıldı\",\"RuaKfn\":\"Adres Başarıyla Güncellendi\",\"kzx0uD\":\"Etkinlik Varsayılanları Başarıyla Güncellendi\",\"5n+Wwp\":\"Organizatör Başarıyla Güncellendi\",\"DMCX/I\":\"Platform ücreti varsayılanları başarıyla güncellendi\",\"URUYHc\":\"Platform ücreti ayarları başarıyla güncellendi\",\"0Dk/l8\":\"SEO Ayarları Başarıyla Güncellendi\",\"S8Tua9\":\"Ayarlar başarıyla güncellendi\",\"MhOoLQ\":\"Sosyal Bağlantılar Başarıyla Güncellendi\",\"CNSSfp\":\"Takip Ayarları Başarıyla Güncellendi\",\"kj7zYe\":\"Webhook Başarıyla Güncellendi\",\"dXoieq\":\"Özet\",\"/RfJXt\":[\"Yaz Müzik Festivali \",[\"0\"]],\"CWOPIK\":\"Yaz Müzik Festivali 2025\",\"D89zck\":\"Paz\",\"DBC3t5\":\"Pazar\",\"UaISq3\":\"İsveççe\",\"JZTQI0\":\"Organizatör Değiştir\",\"9YHrNC\":\"Sistem Varsayılanı\",\"lruQkA\":\"Devam etmek için ekrana dokun\",\"TJUrME\":[[\"0\"],\" seçili oturumdaki katılımcılar hedefleniyor.\"],\"yT6dQ8\":\"Vergi türü ve etkinliğe göre gruplandırılmış toplanan vergi\",\"Ye321X\":\"Vergi Adı\",\"WyCBRt\":\"Vergi Özeti\",\"GkH0Pq\":\"Uygulanan vergiler ve ücretler\",\"Rwiyt2\":\"Vergiler yapılandırıldı\",\"iQZff7\":\"Vergiler, Ücretler, Görünürlük, Satış Dönemi, Ürün Vurgulama ve Sipariş Limitleri\",\"SXvRWU\":\"Takım işbirliği\",\"vlf/In\":\"Teknoloji\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"İnsanlara etkinliğinizde neleri bekleyeceklerini anlatın\",\"NiIUyb\":\"Bize etkinliğinizden bahsedin\",\"DovcfC\":\"Organizasyonunuz hakkında bize bilgi verin. Bu bilgiler etkinlik sayfalarınızda görüntülenecektir.\",\"69GWRq\":\"Etkinliğinizin ne sıklıkta tekrarlandığını bize söyleyin, tüm tarihleri sizin için oluşturalım.\",\"mXPbwY\":\"Platform ücretlerine doğru KDV uygulamamız için KDV kayıt durumunu bize bildir.\",\"7wtpH5\":\"Şablon Aktif\",\"QHhZeE\":\"Şablon başarıyla oluşturuldu\",\"xrWdPR\":\"Şablon başarıyla silindi\",\"G04Zjt\":\"Şablon başarıyla kaydedildi\",\"xowcRf\":\"Hizmet Koşulları\",\"6K0GjX\":\"Metin okunması zor olabilir\",\"u0F1Ey\":\"Pe\",\"nm3Iz/\":\"Katıldığınız için teşekkürler!\",\"pYwj0k\":\"Teşekkürler,\",\"k3IitN\":\"Tamamlandı\",\"KfmPRW\":\"Sayfanın arka plan rengi. Kapak resmi kullanıldığında, bu bir kaplama olarak uygulanır.\",\"MDNyJz\":\"Kod 10 dakika içinde sona erecek. E-postayı görmüyorsanız spam klasörünüzü kontrol edin.\",\"AIF7J2\":\"Sabit ücretin tanımlandığı para birimi. Ödeme sırasında sipariş para birimine dönüştürülecektir.\",\"MJm4Tq\":\"Siparişin para birimi\",\"cDHM1d\":\"E-posta adresi değiştirildi. Katılımcı güncellenmiş e-posta adresinde yeni bir bilet alacaktır.\",\"I/NNtI\":\"Etkinlik mekanı\",\"tXadb0\":\"Aradığınız etkinlik şu anda mevcut değil. Kaldırılmış, süresi dolmuş veya URL yanlış olabilir.\",\"5fPdZe\":\"Bu programın oluşturulmaya başlanacağı ilk tarih.\",\"EBzPwC\":\"Tam etkinlik adresi\",\"sxKqBm\":\"Tam sipariş tutarı müşterinin orijinal ödeme yöntemine iade edilecektir.\",\"KgDp6G\":\"Erişmeye çalıştığınız bağlantının süresi doldu veya artık geçerli değil. Siparişinizi yönetmek için güncellenmiş bir bağlantı için lütfen e-postanızı kontrol edin.\",\"5OmEal\":\"Müşterinin dili\",\"Np4eLs\":[\"Maksimum \",[\"MAX_PREVIEW\"],\" oturumdur. Lütfen tarih aralığını, sıklığı veya günlük oturum sayısını azaltın.\"],\"sYLeDq\":\"Aradığınız organizatör bulunamadı. Sayfa taşınmış, silinmiş veya URL yanlış olabilir.\",\"PCr4zw\":\"Geçersiz kılma, sipariş denetim günlüğüne kaydedilir.\",\"C4nQe5\":\"Platform ücreti bilet fiyatına eklenir. Alıcılar daha fazla öder, ancak tam bilet fiyatını alırsınız.\",\"HxxXZO\":\"Düğmeler ve vurgular için kullanılan birincil marka rengi\",\"z0KrIG\":\"Zamanlanmış saat gereklidir\",\"EWErQh\":\"Zamanlanmış saat gelecekte olmalıdır\",\"UNd0OU\":[\"Başlangıçta \",[\"0\"],\" için planlanan \\\"\",[\"title\"],\"\\\" oturumu yeniden planlandı.\"],\"DEcpfp\":\"Şablon gövdesi geçersiz Liquid sözdizimi içeriyor. Lütfen düzeltin ve tekrar deneyin.\",\"injXD7\":\"KDV numarası doğrulanamadı. Lütfen numarayı kontrol edin ve tekrar deneyin.\",\"A4UmDy\":\"Tiyatro\",\"tDwYhx\":\"Tema ve Renkler\",\"O7g4eR\":\"Bu etkinlik için yaklaşan tarih yok\",\"HrIl0p\":[\"Bu tarihe özel bir giriş listesi yok. \\\"\",[\"0\"],\"\\\" listesi tüm tarihlerdeki katılımcıların girişini yapar — farklı bir tarihe ait bir bileti tarayan personel yine başarılı olacaktır.\"],\"dt3TwA\":\"Bunlar, tüm tarihlerdeki varsayılan fiyatlar ve miktarlardır. Kademelerdeki satış tarihleri genel olarak uygulanır. <0>Oturum Programı sayfasında tek tek tarihler için fiyatları ve miktarları geçersiz kılabilirsiniz.\",\"062KsE\":\"Bu detaylar yalnızca bu tarih için katılımcının biletinde ve sipariş özetinde gösterilir.\",\"5Eu+tn\":\"Bu detaylar yalnızca sipariş başarıyla tamamlandığında gösterilir.\",\"jQjwR+\":\"Bu bilgiler, etkilenen oturumlardaki mevcut konumların yerine geçecek ve katılımcı biletlerinde görünecektir.\",\"QP3gP+\":\"Bu ayarlar yalnızca kopyalanan yerleştirme kodu için geçerlidir ve saklanmayacaktır.\",\"HirZe8\":\"Bu şablonlar organizasyonunuzdaki tüm etkinlikler için varsayılan olarak kullanılacaktır. Bireysel etkinlikler bu şablonları kendi özel sürümleriyle geçersiz kılabilir.\",\"lzAaG5\":\"Bu şablonlar yalnızca bu etkinlik için organizatör varsayılanlarını geçersiz kılacaktır. Burada özel bir şablon ayarlanmazsa, organizatör şablonu kullanılacaktır.\",\"UlykKR\":\"Üçüncü\",\"wkP5FM\":\"Bu, şu anda görünmeyen tarihler dahil etkinlikteki eşleşen her tarih için geçerlidir. Bu tarihlerden herhangi birine kayıtlı katılımcılara, güncelleme tamamlandıktan sonra mesaj oluşturucu üzerinden ulaşılabilir.\",\"SOmGDa\":\"Bu giriş listesi iptal edilmiş bir oturuma atanmış olduğundan artık girişler için kullanılamaz.\",\"XBNC3E\":\"Bu kod satışları izlemek için kullanılacaktır. Yalnızca harfler, sayılar, tireler ve alt çizgiler kullanılabilir.\",\"AaP0M+\":\"Bu renk kombinasyonu bazı kullanıcılar için okunması zor olabilir\",\"o1phK/\":[\"Bu tarihin etkilenecek \",[\"orderCount\"],\" siparişi var.\"],\"F/UtGt\":\"Bu tarih iptal edildi. Kalıcı olarak kaldırmak için yine de silebilirsiniz.\",\"BLZ7pX\":\"Bu tarih geçmişte. Oluşturulacak ancak yaklaşan tarihler altında katılımcılara görünmeyecek.\",\"7IIY0z\":\"Bu tarih tükendi olarak işaretlendi.\",\"bddWMP\":\"Bu tarih artık mevcut değil. Lütfen başka bir tarih seçin.\",\"RzEvf5\":\"Bu etkinlik sona erdi\",\"YClrdK\":\"Bu etkinlik henüz yayınlanmadı\",\"dFJnia\":\"Bu, kullanıcılarınıza görüntülenecek organizatörünüzün adıdır.\",\"vt7jiq\":\"İmzalama anahtarı yalnızca bu kez gösterilecektir. Lütfen şimdi kopyalayın ve güvenli bir şekilde saklayın.\",\"L7dIM7\":\"Bu bağlantı geçersiz veya süresi dolmuş.\",\"MR5ygV\":\"Bu bağlantı artık geçerli değil\",\"9LEqK0\":\"Bu isim son kullanıcılara görünür\",\"QdUMM9\":\"Bu oturum kapasitesine ulaştı\",\"j5FdeA\":\"Bu sipariş işleniyor.\",\"sjNPMw\":\"Bu sipariş terk edildi. İstediğiniz zaman yeni bir sipariş başlatabilirsiniz.\",\"OhCesD\":\"Bu sipariş iptal edildi. İstediğiniz zaman yeni bir sipariş başlatabilirsiniz.\",\"lyD7rQ\":\"Bu organizatör profili henüz yayınlanmadı\",\"9b5956\":\"Bu önizleme, e-postanızın örnek verilerle nasıl görüneceğini gösterir. Gerçek e-postalar gerçek değerleri kullanacaktır.\",\"uM9Alj\":\"Bu ürün etkinlik sayfasında vurgulanmıştır\",\"RqSKdX\":\"Bu ürün tükendi\",\"W12OdJ\":\"Bu rapor yalnızca bilgilendirme amaçlıdır. Bu verileri muhasebe veya vergi amaçları için kullanmadan önce her zaman bir vergi uzmanına danışın. Hi.Events geçmiş verileri eksik olabileceğinden lütfen Stripe kontrol panelinizle çapraz kontrol yapın.\",\"0Ew0uk\":\"Bu bilet az önce tarandı. Tekrar taramadan önce lütfen bekleyin.\",\"FYXq7k\":[\"Bu, \",[\"loadedAffectedCount\"],\" tarihi etkileyecek.\"],\"kvpxIU\":\"Bu, kullanıcılarınızla bildirimler ve iletişim için kullanılacaktır.\",\"rhsath\":\"Bu müşterilere görünmeyecektir, ancak iş ortağını tanımlamanıza yardımcı olur.\",\"hV6FeJ\":\"Hız\",\"+FjWgX\":\"Per\",\"kkDQ8m\":\"Perşembe\",\"0GSPnc\":\"Bilet Tasarımı\",\"EZC/Cu\":\"Bilet tasarımı başarıyla kaydedildi\",\"bbslmb\":\"Bilet Tasarımcısı\",\"1BPctx\":\"Bilet:\",\"bgqf+K\":\"Bilet sahibinin e-postası\",\"oR7zL3\":\"Bilet sahibinin adı\",\"HGuXjF\":\"Bilet sahipleri\",\"CMUt3Y\":\"Bilet sahipleri\",\"awHmAT\":\"Bilet ID\",\"6czJik\":\"Bilet Logosu\",\"OkRZ4Z\":\"Bilet Adı\",\"t79rDv\":\"Bilet Bulunamadı\",\"6tmWch\":\"Bilet veya Ürün\",\"1tfWrD\":\"Bilet Önizlemesi:\",\"KnjoUA\":\"Bilet fiyatı\",\"tGCY6d\":\"Bilet Fiyatı\",\"pGZOcL\":\"Bilet başarıyla yeniden gönderildi\",\"o02GZM\":\"Bu etkinlik için bilet satışı sona erdi\",\"8jLPgH\":\"Bilet Türü\",\"X26cQf\":\"Bilet URL'si\",\"8qsbZ5\":\"Biletleme ve Satış\",\"zNECqg\":\"bilet\",\"6GQNLE\":\"Biletler\",\"NRhrIB\":\"Biletler ve Ürünler\",\"OrWHoZ\":\"Kapasite uygun olduğunda biletler bekleme listesindeki müşterilere otomatik olarak sunulur.\",\"EUnesn\":\"Mevcut Biletler\",\"AGRilS\":\"Satılan Biletler\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Saat\",\"dMtLDE\":\"ile\",\"/jQctM\":\"Kime\",\"tiI71C\":\"Limitinizi artırmak için bizimle iletişime geçin\",\"ecUA8p\":\"Bugün\",\"W428WC\":\"Sütunları değiştir\",\"BRMXj0\":\"Yarın\",\"UBSG1X\":\"En İyi Organizatörler (Son 14 Gün)\",\"3sZ0xx\":\"Toplam Hesaplar\",\"EaAPbv\":\"Ödenen toplam tutar\",\"SMDzqJ\":\"Toplam Katılımcılar\",\"orBECM\":\"Toplam Toplanan\",\"k5CU8c\":\"Toplam kayıt\",\"4B7oCp\":\"Toplam Ücret\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Toplam Kullanıcılar\",\"oJjplO\":\"Toplam Görüntüleme\",\"rBZ9pz\":\"Turlar\",\"orluER\":\"Atıf kaynağına göre hesap büyümesini ve performansını takip edin\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Çevrimdışı ödeme ise doğru\",\"9GsDR2\":\"Ödeme beklemedeyse doğru\",\"GUA0Jy\":\"Farklı bir arama veya filtre dene\",\"2P/OWN\":\"Daha fazla tarih görmek için filtrelerinizi ayarlamayı deneyin.\",\"ouM5IM\":\"Başka bir e-posta deneyin\",\"3DZvE7\":\"Hi.Events'i Ücretsiz Deneyin\",\"7P/9OY\":\"Sa\",\"vq2WxD\":\"Sal\",\"G3myU+\":\"Salı\",\"Kz91g/\":\"Türkçe\",\"GdOhw6\":\"Sesi kapat\",\"KUOhTy\":\"Sesi aç\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Onaylamak için \\\"sil\\\" yazın\",\"XxecLm\":\"Bilet türü\",\"IrVSu+\":\"Ürün çoğaltılamıyor. Lütfen bilgilerinizi kontrol edin\",\"Vx2J6x\":\"Katılımcı getirilemedi\",\"h0dx5e\":\"Bekleme listesine katılınamadı\",\"DaE0Hg\":\"Katılımcı ayrıntıları yüklenemedi.\",\"GlnD5Y\":\"Bu tarih için ürünler yüklenemedi. Lütfen tekrar deneyin.\",\"17VbmV\":\"Check-in geri alınamadı\",\"n57zCW\":\"Atıfsız Hesaplar\",\"9uI/rE\":\"Geri al\",\"b9SN9q\":\"Benzersiz sipariş referansı\",\"Ef7StM\":\"Bilinmeyen\",\"ZBAScj\":\"Bilinmeyen Katılımcı\",\"MEIAzV\":\"Adsız\",\"K6L5Mx\":\"İsimsiz konum\",\"X13xGn\":\"Güvenilmez\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Bağlı Kuruluşu Güncelle\",\"59qHrb\":\"Kapasiteyi güncelle\",\"Gaem9v\":\"Etkinlik adını ve açıklamasını güncelle\",\"7EhE4k\":\"Etiketi güncelle\",\"NPQWj8\":\"Konumu güncelle\",\"75+lpR\":[\"Güncelleme: \",[\"subjectTitle\"],\" — program değişiklikleri\"],\"UOGHdA\":[\"Güncelleme: \",[\"subjectTitle\"],\" — oturum saati değişti\"],\"ogoTrw\":[[\"count\"],\" tarih güncellendi\"],\"dDuona\":[[\"count\"],\" tarih için kapasite güncellendi\"],\"FT3LSc\":[[\"count\"],\" tarih için etiket güncellendi\"],\"8EcY1g\":[[\"count\"],\" oturumun konumu güncellendi\"],\"gJQsLv\":\"Organizatörünüz için bir kapak görseli yükleyin\",\"4kEGqW\":\"Organizatörünüz için bir logo yükleyin\",\"lnCMdg\":\"Görsel Yükle\",\"29w7p6\":\"Görsel yükleniyor...\",\"HtrFfw\":\"URL gerekli\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB tarayıcı aktif\",\"dyTklH\":\"USB tarayıcı duraklatıldı\",\"OHJXlK\":\"E-postalarınızı kişiselleştirmek için <0>Liquid şablonunu kullanın\",\"g0WJMu\":\"Tüm tarihler listesini kullan\",\"0k4cdb\":\"Tüm katılımcılar için sipariş bilgilerini kullanın. Katılımcı isimleri ve e-postaları alıcının bilgileriyle eşleşecektir.\",\"MKK5oI\":\"Tüm tarihler listesini mi kullanın, yoksa bu tarih için bir liste mi oluşturun?\",\"bA31T4\":\"Tüm katılımcılar için alıcının bilgilerini kullanın\",\"rnoQsz\":\"Kenarlıklar, vurgular ve QR kod stillemesi için kullanılır\",\"BV4L/Q\":\"UTM Analitiği\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"KDV numaranız doğrulanıyor...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"KDV numarası\",\"pnVh83\":\"KDV Numarası\",\"CabI04\":\"KDV numarası boşluk içermemelidir\",\"PMhxAR\":\"KDV numarası, 2 harfli ülke kodu ile başlamalı ve ardından 8-15 alfanümerik karakter gelmelidir (örn., TR1234567890)\",\"gPgdNV\":\"KDV numarası başarıyla doğrulandı\",\"RUMiLy\":\"KDV numarası doğrulaması başarısız oldu\",\"vqji3Y\":\"KDV numarası doğrulaması başarısız oldu. Lütfen KDV numaranızı kontrol edin.\",\"8dENF9\":\"Ücret Üzerinden KDV\",\"ZutOKU\":\"KDV Oranı\",\"+KJZt3\":\"KDV mükellefi\",\"Nfbg76\":\"KDV ayarları başarıyla kaydedildi\",\"UvYql/\":\"KDV ayarları kaydedildi. KDV numaranızı arka planda doğruluyoruz.\",\"bXn1Jz\":\"KDV ayarları güncellendi\",\"tJylUv\":\"Platform Ücretleri için KDV Uygulaması\",\"FlGprQ\":\"Platform ücretleri için KDV uygulaması: AB KDV'ye kayıtlı işletmeler ters ibraz mekanizmasını kullanabilir (%0 - KDV Direktifi 2006/112/EC Madde 196). KDV'ye kayıtlı olmayan işletmelerden %23 İrlanda KDV'si alınır.\",\"516oLj\":\"KDV doğrulama hizmeti geçici olarak kullanılamıyor\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"KDV: kayıtlı değil\",\"AdWhjZ\":\"Doğrulama kodu\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Doğrulandı\",\"wCKkSr\":\"E-postayı Doğrula\",\"/IBv6X\":\"E-postanızı doğrulayın\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Doğrulanıyor...\",\"fROFIL\":\"Vietnamca\",\"p5nYkr\":\"Tümünü Görüntüle\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Tüm yetenekleri görüntüle\",\"RnvnDc\":\"Platformda gönderilen tüm mesajları görüntüle\",\"+WFMis\":\"Tüm etkinliklerinizde raporları görüntüleyin ve indirin. Yalnızca tamamlanan siparişler dahildir.\",\"c7VN/A\":\"Cevapları Görüntüle\",\"SZw9tS\":\"Detayları Görüntüle\",\"9+84uW\":[[\"0\"],\" \",[\"1\"],\" ayrıntılarını görüntüle\"],\"FCVmuU\":\"Etkinliği Görüntüle\",\"c6SXHN\":\"Etkinlik sayfasını görüntüle\",\"n6EaWL\":\"Günlükleri görüntüle\",\"OaKTzt\":\"Haritayı Görüntüle\",\"zNZNMs\":\"Mesajı görüntüle\",\"67OJ7t\":\"Siparişi Görüntüle\",\"tKKZn0\":\"Sipariş Detaylarını Görüntüle\",\"KeCXJu\":\"Sipariş detaylarını görüntüleyin, iade yapın ve onayları yeniden gönderin.\",\"9jnAcN\":\"Organizatör Ana Sayfasını Görüntüle\",\"1J/AWD\":\"Bileti Görüntüle\",\"N9FyyW\":\"Kayıtlı katılımcılarınızı görüntüleyin, düzenleyin ve dışa aktarın.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Bekliyor\",\"quR8Qp\":\"Ödeme bekleniyor\",\"KrurBH\":\"Tarama bekleniyor…\",\"u0n+wz\":\"Bekleme listesi\",\"3RXFtE\":\"Bekleme Listesi Etkin\",\"TwnTPy\":\"Bekleme listesi teklifinin süresi doldu\",\"NzIvKm\":\"Bekleme listesi tetiklendi\",\"aUi/Dz\":\"Uyarı: Bu sistem varsayılan yapılandırmasıdır. Değişiklikler, belirli bir yapılandırması atanmamış tüm hesapları etkileyecektir.\",\"qeygIa\":\"Ça\",\"aT/44s\":\"Bu Stripe bağlantısını kopyalayamadık. Lütfen tekrar dene.\",\"RRZDED\":\"Bu e-posta adresiyle ilişkili herhangi bir sipariş bulamadık.\",\"2RZK9x\":\"Aradığınız siparişi bulamadık. Bağlantının süresi dolmuş veya sipariş detayları değişmiş olabilir.\",\"nefMIK\":\"Aradığınız bileti bulamadık. Bağlantının süresi dolmuş veya bilet detayları değişmiş olabilir.\",\"miysJh\":\"Bu siparişi bulamadık. Kaldırılmış olabilir.\",\"ADsQ23\":\"Stripe'a şu anda ulaşamadık. Lütfen birazdan tekrar dene.\",\"HJKdzP\":\"Bu sayfayı yüklerken bir sorunla karşılaştık. Lütfen tekrar deneyin.\",\"jegrvW\":\"Ödemeleri doğrudan banka hesabına göndermek için Stripe ile çalışıyoruz.\",\"IfN2Qo\":\"Minimum 200x200px boyutunda kare bir logo öneriyoruz\",\"wJzo/w\":\"400px x 400px boyutlarını ve maksimum 5MB dosya boyutunu öneriyoruz\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Sitenin nasıl kullanıldığını anlamamıza ve deneyiminizi iyileştirmemize yardımcı olmak için çerezleri kullanıyoruz.\",\"x8rEDQ\":\"Birden fazla denemeden sonra KDV numaranızı doğrulayamadık. Arka planda denemeye devam edeceğiz. Lütfen daha sonra tekrar kontrol edin.\",\"iy+M+c\":[[\"productDisplayName\"],\" için bir yer açılırsa size e-posta ile haber vereceğiz.\"],\"McuGND\":\"Kaydettikten sonra önceden doldurulmuş bir şablonla bir mesaj oluşturucu açacağız. Siz inceleyip gönderin — hiçbir şey otomatik olarak gönderilmez.\",\"q1BizZ\":\"Biletlerinizi bu e-postaya göndereceğiz\",\"ZOmUYW\":\"KDV numaranızı arka planda doğrulayacağız. Herhangi bir sorun olursa sizi bilgilendireceğiz.\",\"LKjHr4\":[\"\\\"\",[\"title\"],\"\\\" programında değişiklikler yaptık — \",[\"description\"],\", \",[\"affectedCount\"],\" oturumu etkiliyor.\"],\"Fq/Nx7\":\"5 haneli doğrulama kodunu şuraya gönderdik:\",\"GdWB+V\":\"Webhook başarıyla oluşturuldu\",\"2X4ecw\":\"Webhook başarıyla silindi\",\"ndBv0v\":\"Webhook entegrasyonları\",\"CThMKa\":\"Webhook Günlükleri\",\"I0adYQ\":\"Webhook İmzalama Anahtarı\",\"nuh/Wq\":\"Webhook URL'si\",\"8BMPMe\":\"Webhook bildirim göndermeyecek\",\"FSaY52\":\"Webhook bildirim gönderecek\",\"v1kQyJ\":\"Webhook'lar\",\"On0aF2\":\"Web Sitesi\",\"0f7U0k\":\"Çar\",\"VAcXNz\":\"Çarşamba\",\"64X6l4\":\"hafta\",\"4XSc4l\":\"Haftalık\",\"IAUiSh\":\"hafta\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Tekrar hoş geldiniz\",\"QDWsl9\":[[\"0\"],\"'e Hoş Geldiniz, \",[\"1\"],\" 👋\"],\"LETnBR\":[[\"0\"],\"'e hoş geldiniz, işte tüm etkinliklerinizin listesi\"],\"DDbx7K\":\"Sağlık\",\"ywRaYa\":\"Saat kaçta?\",\"FaSXqR\":\"Ne tür bir etkinlik?\",\"0WyYF4\":\"Kimliği doğrulanmamış personel neyi görebilir\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Bir giriş silindiğinde\",\"RPe6bE\":\"Yinelenen bir etkinlikte bir tarih iptal edildiğinde\",\"Gmd0hv\":\"Yeni bir katılımcı oluşturulduğunda\",\"zyIyPe\":\"Yeni bir etkinlik oluşturulduğunda\",\"Lc18qn\":\"Yeni bir sipariş oluşturulduğunda\",\"dfkQIO\":\"Yeni bir ürün oluşturulduğunda\",\"8OhzyY\":\"Bir ürün silindiğinde\",\"tRXdQ9\":\"Bir ürün güncellendiğinde\",\"9L9/28\":\"Bir ürün tükendiğinde, müşteriler yerler açıldığında bilgilendirilmek üzere bekleme listesine katılabilir.\",\"Q7CWxp\":\"Bir katılımcı iptal edildiğinde\",\"IuUoyV\":\"Bir katılımcı giriş yaptığında\",\"nBVOd7\":\"Bir katılımcı güncellendiğinde\",\"t7cuMp\":\"Bir etkinlik arşivlendiğinde\",\"gtoSzE\":\"Bir etkinlik güncellendiğinde\",\"ny2r8d\":\"Bir sipariş iptal edildiğinde\",\"c9RYbv\":\"Bir sipariş ödendi olarak işaretlendiğinde\",\"ejMDw1\":\"Bir sipariş iade edildiğinde\",\"fVPt0F\":\"Bir sipariş güncellendiğinde\",\"bcYlvb\":\"Giriş kapandığında\",\"XIG669\":\"Giriş açıldığında\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"Etkinleştirildiğinde, yeni etkinlikler katılımcıların güvenli bir bağlantı üzerinden kendi bilet bilgilerini yönetmelerine izin verecektir. Bu etkinlik başına geçersiz kılınabilir.\",\"blXLKj\":\"Etkinleştirildiğinde, yeni etkinlikler ödeme sırasında pazarlama onay kutusu gösterecektir. Bu, etkinlik bazında geçersiz kılınabilir.\",\"Kj0Txn\":\"Etkinleştirildiğinde, Stripe Connect işlemlerinde uygulama ücreti alınmaz. Uygulama ücretlerinin desteklenmediği ülkeler için kullanın.\",\"tMqezN\":\"İadelerin işlenip işlenmediği\",\"uchB0M\":\"Widget Önizleme\",\"uvIqcj\":\"Atölye\",\"EpknJA\":\"Mesajınızı buraya yazın...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"yıl\",\"zkWmBh\":\"Yıllık\",\"+BGee5\":\"yıl\",\"X/azM1\":\"Evet - Geçerli bir AB KDV kayıt numaram var\",\"Tz5oXG\":\"Evet, siparişimi iptal et\",\"QlSZU0\":[\"<0>\",[\"0\"],\" (\",[\"1\"],\") rolünü üstleniyorsunuz\"],\"s14PLh\":[\"Kısmi iade yapıyorsunuz. Müşteriye \",[\"0\"],\" \",[\"1\"],\" iade edilecek.\"],\"o7LgX6\":\"Hesap ayarlarınızda ek hizmet ücretleri ve vergileri yapılandırabilirsiniz.\",\"rj3A7+\":\"Bunu daha sonra tek tek tarihler için geçersiz kılabilirsiniz.\",\"paWwQ0\":\"Gerekirse biletleri manuel olarak da sunabilirsiniz.\",\"jTDzpA\":\"Hesabınızdaki son aktif organizatörü arşivleyemezsiniz.\",\"5VGIlq\":\"Mesajlaşma limitinize ulaştınız.\",\"casL1O\":\"Ücretsiz Bir Ürüne eklenen vergiler ve ücretleriniz var. Bunları kaldırmak ister misiniz?\",\"9jJNZY\":\"Kaydetmeden önce sorumluluklarınızı kabul etmelisiniz\",\"pCLes8\":\"Mesaj almayı kabul etmelisiniz\",\"FVTVBy\":\"Organizatör durumunu güncelleyebilmek için e-posta adresinizi doğrulamanız gerekir.\",\"ze4bi/\":\"Bu yinelenen etkinliğe katılımcı eklemeden önce en az bir oturum oluşturmanız gerekir.\",\"w65ZgF\":\"E-posta şablonlarını değiştirebilmek için hesap e-postanızı doğrulamanız gerekir.\",\"FRl8Jv\":\"Mesaj göndermeden önce hesap e-postanızı doğrulamanız gerekir.\",\"88cUW+\":\"Aldığınız\",\"O6/3cu\":\"Bir sonraki adımda tarihleri, programları ve yineleme kurallarını ayarlayabileceksiniz.\",\"zKAheG\":\"Oturum saatlerini değiştiriyorsunuz\",\"MNFIxz\":[[\"0\"],\"'e gidiyorsunuz!\"],\"qGZz0m\":\"Bekleme listesine eklendi!\",\"/5HL6k\":\"Size bir yer teklif edildi!\",\"gbjFFH\":\"Oturum saatini değiştirdiniz\",\"p/Sa0j\":\"Hesabınızın mesajlaşma limitleri var. Limitinizi artırmak için bizimle iletişime geçin\",\"x/xjzn\":\"Bağlı kuruluşlarınız başarıyla dışa aktarıldı.\",\"TF37u6\":\"Katılımcılarınız başarıyla dışa aktarıldı.\",\"79lXGw\":\"Giriş listeniz başarıyla oluşturuldu. Aşağıdaki bağlantıyı giriş personelinizle paylaşın.\",\"BnlG9U\":\"Mevcut siparişiniz kaybolacak.\",\"nBqgQb\":\"E-postanız\",\"GG1fRP\":\"Etkinliğiniz yayında!\",\"ifRqmm\":\"Mesajınız başarıyla gönderildi!\",\"0/+Nn9\":\"Mesajlarınız burada görünecek\",\"/Rj5P4\":\"Adınız\",\"PFjJxY\":\"Yeni şifreniz en az 8 karakter uzunluğunda olmalıdır.\",\"gzrCuN\":\"Sipariş bilgileriniz güncellendi. Yeni e-posta adresine bir onay e-postası gönderildi.\",\"naQW82\":\"Siparişiniz iptal edildi.\",\"bhlHm/\":\"Siparişiniz ödeme bekliyor\",\"XeNum6\":\"Siparişleriniz başarıyla dışa aktarıldı.\",\"Xd1R1a\":\"Organizatör adresiniz\",\"WWYHKD\":\"Ödemeniz banka düzeyinde şifreleme ile korunmaktadır\",\"5b3QLi\":\"Planınız\",\"N4Zkqc\":\"Kaydettiğiniz tarih filtresi artık mevcut değil — tüm tarihler gösteriliyor.\",\"FNO5uZ\":\"Biletiniz hâlâ geçerli — yeni saat size uymadıkça herhangi bir işlem yapmanıza gerek yok. Sorularınız varsa lütfen bu e-postayı yanıtlayın.\",\"CnZ3Ou\":\"Biletleriniz onaylandı.\",\"EmFsMZ\":\"KDV numaranız doğrulama için sıraya alındı\",\"QBlhh4\":\"KDV numaranız kaydettiğinizde doğrulanacak\",\"fT9VLt\":\"Bekleme listesi teklifinizin süresi doldu ve siparişinizi tamamlayamadık. Daha fazla yer açıldığında bilgilendirilmek için lütfen bekleme listesine yeniden katılın.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/tr.po b/frontend/src/locales/tr.po index 4b155c3d15..847747623e 100644 --- a/frontend/src/locales/tr.po +++ b/frontend/src/locales/tr.po @@ -60,7 +60,7 @@ msgstr "{0} <0>başarıyla check-out yaptı" msgid "{0} Active Webhooks" msgstr "{0} Aktif Webhook" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} mevcut" @@ -78,7 +78,7 @@ msgstr "{0} kaldı" msgid "{0} logo" msgstr "{0} logosu" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{1} koltuğun {0} tanesi dolu." @@ -90,7 +90,7 @@ msgstr "{0} organizatör" msgid "{0} spots left" msgstr "{0} yer kaldı" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} bilet" @@ -114,7 +114,7 @@ msgstr "{appName} logosu" msgid "{attendeeCount} attendees are registered for this session." msgstr "Bu oturum için {attendeeCount} katılımcı kayıtlı." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{totalCount} arasından {availableCount} mevcut" @@ -122,7 +122,7 @@ msgstr "{totalCount} arasından {availableCount} mevcut" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} giriş yaptı" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} etkinlik" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} saat, {minutes} dakika ve {seconds} saniye" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "Etkilenen oturumlar genelinde {loadedAffectedAttendees} katılımcı kayıtlı." @@ -163,11 +163,11 @@ msgstr "{minutes} dakika ve {seconds} saniye" msgid "{organizerName}'s first event" msgstr "{organizerName}'ın ilk etkinliği" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} bilet türü" @@ -230,7 +230,7 @@ msgstr "0 dakika ve 0 saniye" msgid "1 Active Webhook" msgstr "1 Aktif Webhook" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "Etkilenen oturumlar genelinde 1 katılımcı kayıtlı." @@ -238,35 +238,35 @@ msgstr "Etkilenen oturumlar genelinde 1 katılımcı kayıtlı." msgid "1 attendee is registered for this session." msgstr "Bu oturum için 1 katılımcı kayıtlı." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "Bitiş tarihinden 1 gün sonra" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "Başlangıç tarihinden 1 gün sonra" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "Etkinlikten 1 gün önce" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "Etkinlikten 1 saat önce" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 bilet" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 bilet türü" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "Etkinlikten 1 hafta önce" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "İptal bildirimi gönderildi:" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "süre değişikliği" @@ -321,7 +321,7 @@ msgstr "Açılır menü sadece tek seçime izin verir" msgid "A fee, like a booking fee or a service fee" msgstr "Rezervasyon ücreti veya hizmet ücreti gibi bir ücret" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "İndirim olmayan promosyon kodu gizli ürünleri göstermek için kullan msgid "A Radio option has multiple options but only one can be selected." msgstr "Radyo seçeneği birden fazla seçenek sunar ancak sadece biri seçilebilir." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "başlangıç/bitiş saatlerinde kayma" @@ -465,7 +465,7 @@ msgstr "Hesap başarıyla güncellendi" msgid "Accounts" msgstr "Hesaplar" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Gerekli İşlem: KDV Bilgisi Gerekli" @@ -493,10 +493,10 @@ msgstr "Etkinleştirme tarihi" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Aktif ödeme yöntemleri" msgid "Activity" msgstr "Etkinlik geçmişi" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Tarih ekle" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "Sipariş hakkında not ekleyin..." msgid "Add at least one time" msgstr "En az bir saat ekleyin" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Çevrimiçi etkinlik için bağlantı bilgilerini ekleyin." @@ -572,15 +576,19 @@ msgstr "Tarih Ekle" msgid "Add Dates" msgstr "Tarihler Ekle" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Açıklama ekle" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "Soru Ekle" msgid "Add Tax or Fee" msgstr "Vergi veya Ücret Ekle" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Bu katılımcıyı yine de ekle (kapasiteyi geçersiz kıl)" @@ -634,8 +642,8 @@ msgstr "Bu katılımcıyı yine de ekle (kapasiteyi geçersiz kıl)" msgid "Add this event to your calendar" msgstr "Bu etkinliği takviminize ekleyin" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Bilet ekle" @@ -649,7 +657,7 @@ msgstr "Kademe ekle" msgid "Add to Calendar" msgstr "Takvime Ekle" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Genel etkinlik sayfalarınıza ve organizatör ana sayfanıza takip pikselleri ekleyin. Takip etkin olduğunda ziyaretçilere bir çerez onay afişi gösterilecektir." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Adres satırı 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Adres Satırı 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Adres satırı 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Adres Satırı 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Yönetici" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Yönetici Erişimi Gerekli" @@ -725,7 +733,7 @@ msgstr "Yönetici Erişimi Gerekli" msgid "Admin Dashboard" msgstr "Yönetici Paneli" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Yönetici kullanıcılar etkinliklere ve hesap ayarlarına tam erişime sahiptir." @@ -776,7 +784,7 @@ msgstr "Bağlı Kuruluşlar Dışa Aktarıldı" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Bağlı kuruluşlar, iş ortakları ve etkileyiciler tarafından oluşturulan satışları izlemenize yardımcı olur. Performansı izlemek için bağlı kuruluş kodları oluşturun ve paylaşın." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "tümü" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "Tüm Arşivlenmiş Etkinlikler" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Tüm katılımcılar" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "Seçilen oturumların tüm katılımcıları" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Bu etkinliğin tüm katılımcıları" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Bu oturumun tüm katılımcıları" @@ -838,12 +846,12 @@ msgstr "Tüm başarısız işler silindi" msgid "All jobs queued for retry" msgstr "Tüm işler yeniden deneme için sıraya alındı" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Eşleşen tüm tarihler" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Tüm oturumlar" @@ -897,7 +905,7 @@ msgstr "Zaten hesabınız var mı? <0>{0}" msgid "Already in" msgstr "Zaten içeride" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Zaten İade Edildi" @@ -905,11 +913,11 @@ msgstr "Zaten İade Edildi" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Stripe'ı başka bir organizatörde mi kullanıyorsun? O bağlantıyı yeniden kullan." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Bu siparişi de iptal et" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Bu siparişi de iade et" @@ -932,7 +940,7 @@ msgstr "Miktar" msgid "Amount Paid" msgstr "Ödenen Tutar" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Ödenen miktar ({0})" @@ -952,7 +960,7 @@ msgstr "Sayfa yüklenirken bir hata oluştu" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Vurgulanan üründe görüntülenecek isteğe bağlı bir mesaj, örn. \"Hızlı satılıyor 🔥\" veya \"En iyi değer\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Beklenmeyen bir hata oluştu." @@ -988,7 +996,7 @@ msgstr "Ürün sahiplerinden gelen tüm sorular bu e-posta adresine gönderilece msgid "Appearance" msgstr "Görünüm" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "uygulandı" @@ -996,7 +1004,7 @@ msgstr "uygulandı" msgid "Applies to {0} products" msgstr "{0} ürüne uygulanır" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Bu sayfada şu anda yüklü olan {0}, iptal edilmemiş tarihler için geçerlidir." @@ -1008,7 +1016,7 @@ msgstr "1 ürüne uygulanır" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Oturum açmadan bağlantıyı açan herkes için geçerlidir. Oturum açmış üyeler her zaman her şeyi görür." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Bu etkinlikteki şu anda yüklü olmayan tarihler dahil her {0}, iptal edilmemiş tarih için geçerlidir." @@ -1016,11 +1024,11 @@ msgstr "Bu etkinlikteki şu anda yüklü olmayan tarihler dahil her {0}, iptal e msgid "Apply" msgstr "Uygula" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Değişiklikleri Uygula" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Promosyon Kodunu Uygula" @@ -1028,7 +1036,7 @@ msgstr "Promosyon Kodunu Uygula" msgid "Apply this {type} to all new products" msgstr "Bu {type}'ı tüm yeni ürünlere uygula" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Şuna uygula" @@ -1044,36 +1052,35 @@ msgstr "Mesajı Onayla" msgid "April" msgstr "Nisan" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Arşivle" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Etkinliği arşivle" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Etkinliği Arşivle" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Organizatörü Arşivle" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Bu etkinliği halktan gizlemek için arşivleyin. Daha sonra geri yükleyebilirsiniz." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Bu organizatörü arşivleyin. Bu, bu organizatöre ait tüm etkinlikleri de arşivleyecektir." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Arşivlendi" @@ -1085,15 +1092,15 @@ msgstr "Arşivlenen Organizatörler" msgid "Are you sure you want to activate this attendee?" msgstr "Bu katılımcıyı etkinleştirmek istediğinizden emin misiniz?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Bu etkinliği arşivlemek istediğinizden emin misiniz?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Bu etkinliği arşivlemek istediğinizden emin misiniz? Artık kamuya görünmeyecek." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Bu organizatörü arşivlemek istediğinizden emin misiniz? Bu, bu organizatöre ait tüm etkinlikleri de arşivleyecektir." @@ -1123,7 +1130,7 @@ msgstr "Tüm başarısız işleri silmek istediğinizden emin misiniz?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Bu bağlı kuruluşu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Bu yapılandırmayı silmek istediğinizden emin misiniz? Bu işlem, onu kullanan hesapları etkileyebilir." @@ -1137,11 +1144,11 @@ msgstr "Bu tarihi silmek istediğinize emin misiniz? Bu işlem geri alınamaz." msgid "Are you sure you want to delete this promo code?" msgstr "Bu promosyon kodunu silmek istediğinizden emin misiniz?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Bu şablonu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz ve e-postalar varsayılan şablona geri dönecektir." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Bu şablonu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz ve e-postalar organizatör veya varsayılan şablona geri dönecektir." @@ -1150,17 +1157,17 @@ msgstr "Bu şablonu silmek istediğinizden emin misiniz? Bu işlem geri alınama msgid "Are you sure you want to delete this webhook?" msgstr "Bu webhook'u silmek istediğinizden emin misiniz?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Ayrılmak istediğinizden emin misiniz?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Bu etkinliği taslak yapmak istediğinizden emin misiniz? Bu işlem etkinliği halka görünmez yapacaktır" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Bu etkinliği herkese açık yapmak istediğinizden emin misiniz? Bu işlem etkinliği halka görünür yapacaktır" @@ -1200,15 +1207,15 @@ msgstr "{0} adresine sipariş onayını tekrar göndermek istediğinizden emin m msgid "Are you sure you want to resend the ticket to {0}?" msgstr "{0} adresine bileti tekrar göndermek istediğinizden emin misiniz?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Bu etkinliği geri yüklemek istediğinizden emin misiniz?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Bu etkinliği geri yüklemek istediğinizden emin misiniz? Taslak etkinlik olarak geri yüklenecektir." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Bu organizatörü geri yüklemek istediğinizden emin misiniz?" @@ -1229,7 +1236,7 @@ msgstr "Bu Kapasite Atamasını silmek istediğinizden emin misiniz?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "Bu Check-In Listesini silmek istediğinizden emin misiniz?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "AB'de KDV kaydınız var mı?" @@ -1237,7 +1244,7 @@ msgstr "AB'de KDV kaydınız var mı?" msgid "Art" msgstr "Sanat" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "İşletmeniz İrlanda merkezli olduğundan, tüm platform ücretlerine otomatik olarak %23 İrlanda KDV'si uygulanır." @@ -1270,7 +1277,7 @@ msgstr "Atanan Seviye" msgid "At least one event type must be selected" msgstr "En az bir etkinlik türü seçilmelidir" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Denemeler" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Tüm etkinliklerdeki katılım ve giriş oranları" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "katılımcı" @@ -1287,7 +1293,7 @@ msgstr "katılımcı" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Katılımcı" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Katılımcı Durumu" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Katılımcı Bileti" @@ -1364,13 +1370,13 @@ msgstr "Katılımcının bileti bu listede yok" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "katılımcı" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "katılımcı" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Katılımcılar" @@ -1393,16 +1399,16 @@ msgstr "katılımcı giriş yaptı" msgid "Attendees Exported" msgstr "Katılımcılar Dışa Aktarıldı" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Kayıtlı katılımcılar" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Kayıtlı Katılımcılar" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Belirli bir bilete sahip katılımcılar" @@ -1454,7 +1460,7 @@ msgstr "Widget yüksekliğini içeriğe göre otomatik olarak boyutlandırır. D msgid "Available" msgstr "Mevcut" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "İade Edilebilir" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "Bekliyor" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "Çevrimdışı ödeme bekleniyor" @@ -1482,7 +1488,7 @@ msgstr "Ödeme bekliyor" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "Ödeme bekleniyor" @@ -1513,14 +1519,14 @@ msgstr "Hesaplara Dön" msgid "Back to calendar" msgstr "Takvime geri dön" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Etkinliğe Dön" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Etkinlik sayfasına dön" @@ -1548,7 +1554,7 @@ msgstr "Arkaplan Rengi" msgid "Background Type" msgstr "Arkaplan Türü" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "Tarih başına değil, yukarıdaki genel satış dönemine göre" msgid "Basic Information" msgstr "Temel Bilgiler" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Fatura Adresi" @@ -1599,11 +1605,11 @@ msgstr "Yerleşik dolandırıcılık koruması" msgid "Bulk Edit" msgstr "Toplu Düzenle" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Tarihleri Toplu Düzenle" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "Toplu güncelleme başarısız oldu." @@ -1635,11 +1641,11 @@ msgstr "Alıcı öder" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Alıcılar net bir fiyat görür. Platform ücreti ödemenizden düşülür." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "Takip pikselleri ekleyerek, siz ve bu platformun toplanan verilerin ortak veri sorumluları olduğunuzu kabul edersiniz. Geçerli gizlilik yasaları (GDPR, CCPA vb.) kapsamında bu işleme için yasal bir dayanağınız olduğundan emin olmaktan siz sorumlusunuz." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Devam ederek, <0>{0} Hizmet Koşullarını kabul etmiş olursunuz" @@ -1660,7 +1666,7 @@ msgstr "Kayıt olarak <0>Hizmet Şartlarımızı ve <1>Gizlilik Politikası< msgid "By ticket type" msgstr "Bilet türüne göre" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Uygulama Ücretlerini Atla" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "Giriş yapılamıyor" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "İptal" @@ -1729,7 +1735,7 @@ msgstr "İptal" msgid "Cancel {count} date(s)" msgstr "{count} tarihi iptal et" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Tüm ürünleri iptal et ve havuza geri bırak" @@ -1743,7 +1749,7 @@ msgstr "Tüm ürünleri iptal et ve havuza geri bırak" msgid "Cancel Date" msgstr "Tarihi İptal Et" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "E-posta değişikliğini iptal et" @@ -1751,7 +1757,7 @@ msgstr "E-posta değişikliğini iptal et" msgid "Cancel order" msgstr "Siparişi iptal et" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Siparişi İptal Et" @@ -1759,7 +1765,7 @@ msgstr "Siparişi İptal Et" msgid "Cancel Order {0}" msgstr "Sipariş {0}'ı İptal Et" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "İptal etmek, bu siparişle ilişkili tüm katılımcıları iptal edecek ve biletleri mevcut havuza geri bırakacaktır." @@ -1781,7 +1787,7 @@ msgstr "İptal" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "İptal Edildi" msgid "Cancelled {0} date(s)" msgstr "{0} tarih iptal edildi" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "Sistem varsayılan yapılandırması silinemez" @@ -1825,7 +1831,7 @@ msgstr "Kapasite yönetimi" msgid "Capacity must be 0 or greater" msgstr "Kapasite 0 veya daha büyük olmalıdır" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "kapasite güncellemeleri" @@ -1833,7 +1839,7 @@ msgstr "kapasite güncellemeleri" msgid "Capacity Used" msgstr "Kullanılan Kapasite" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "Kategoriler ürünleri birlikte gruplandırmanızı sağlar. Örneğin, \"Biletler\" için bir kategori ve \"Ürünler\" için başka bir kategori oluşturabilirsiniz." @@ -1854,19 +1860,19 @@ msgstr "Kategori" msgid "Category Created Successfully" msgstr "Kategori Başarıyla Oluşturuldu" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Değiştir" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Süreyi değiştir" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Şifre değiştir" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Katılımcı limitini değiştir" @@ -1874,7 +1880,7 @@ msgstr "Katılımcı limitini değiştir" msgid "Change waitlist settings" msgstr "Bekleme listesi ayarlarını değiştir" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "{count} tarih için süre değiştirildi" @@ -1891,15 +1897,15 @@ msgstr "Hayır Kurumu" msgid "Check in" msgstr "Giriş yap" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "{0} {1} check-in yap" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Check-in yap ve siparişi ödenmiş olarak işaretle" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Sadece check-in yap" @@ -1913,7 +1919,7 @@ msgstr "Çıkış yap" msgid "Check out this event: {0}" msgstr "Bu etkinliğe göz atın: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Bu etkinliğe göz atın!" @@ -1994,7 +2000,7 @@ msgstr "Giriş Listeleri" msgid "Check-In Lists" msgstr "Check-In Listeleri" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Check-in gezinmesi" @@ -2074,11 +2080,11 @@ msgstr "Arkaplanınız için bir renk seçin" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Farklı bir işlem seçin" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Uygulamak için kayıtlı bir konum seçin." @@ -2108,12 +2114,12 @@ msgstr "Platform ücretini kimin ödeyeceğini seçin. Bu, hesap ayarlarınızda #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Şehir" @@ -2122,7 +2128,7 @@ msgstr "Şehir" msgid "Clear" msgstr "Temizle" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Konumu temizle — etkinliğin varsayılanına geri dön" @@ -2134,7 +2140,7 @@ msgstr "Aramayı temizle" msgid "Clear Search Text" msgstr "Arama Metnini Temizle" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "Temizleme, oturuma özgü her türlü üzerine yazmayı kaldırır. Etkilenen oturumlar etkinliğin varsayılan konumuna geri döner." @@ -2154,7 +2160,7 @@ msgstr "Yeni satışlara açmak için tıklayın" msgid "Click to view notes" msgstr "Notları görüntülemek için tıklayın" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "kapat" @@ -2162,8 +2168,8 @@ msgstr "kapat" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Kapat" @@ -2259,7 +2265,7 @@ msgstr "Yakında" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Etkinliği tanımlayan virgülle ayrılmış anahtar kelimeler. Bunlar arama motorları tarafından etkinliği kategorize etmek ve indekslemek için kullanılacaktır" -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "İletişim Tercihleri" @@ -2267,11 +2273,11 @@ msgstr "İletişim Tercihleri" msgid "complete" msgstr "tamamlandı" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Siparişi Tamamla" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Ödemeyi Tamamla" @@ -2280,11 +2286,11 @@ msgstr "Ödemeyi Tamamla" msgid "Complete Stripe setup" msgstr "Stripe kurulumunu tamamla" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Biletlerinizi güvence altına almak için siparişinizi tamamlayın. Bu teklif süre sınırlıdır, çok beklemeyin." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Biletlerinizi güvence altına almak için ödemenizi tamamlayın." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Ekibe katılmak için profilinizi tamamlayın." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Tamamlandı" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Tamamlanan siparişler" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Tamamlanan Siparişler" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Oluştur" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Yapılandırma atandı" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Yapılandırma başarıyla oluşturuldu" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Yapılandırma başarıyla silindi" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "Yapılandırma adları son kullanıcılar tarafından görülebilir. Sabit ücretler mevcut döviz kuru üzerinden sipariş para birimine dönüştürülecektir." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Yapılandırma başarıyla güncellendi" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Yapılandırmalar" @@ -2377,10 +2383,10 @@ msgstr "Yapılandırılmış İndirim" msgid "Confirm" msgstr "Onayla" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "E-posta Adresini Onayla" @@ -2393,7 +2399,7 @@ msgstr "E-posta Değişikliğini Onayla" msgid "Confirm new password" msgstr "Yeni şifreyi onayla" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Yeni Şifreyi Onayla" @@ -2428,16 +2434,16 @@ msgstr "E-posta adresi onaylanıyor..." msgid "Congratulations! Your event is now visible to the public." msgstr "Tebrikler! Etkinliğiniz artık herkese açık." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Stripe'ı Bağla" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "E-posta şablon düzenlemesini etkinleştirmek için Stripe'ı bağlayın" @@ -2445,7 +2451,7 @@ msgstr "E-posta şablon düzenlemesini etkinleştirmek için Stripe'ı bağlayı msgid "Connect Stripe to enable messaging" msgstr "Mesajlaşmayı etkinleştirmek için Stripe'ı bağlayın" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Stripe ile Bağlan" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "Destek için iletişim e-postası" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Devam Et" @@ -2508,7 +2514,7 @@ msgstr "Devam Butonu Metni" msgid "Continue Setup" msgstr "Kuruluma Devam Et" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Ödemeye Devam Et" @@ -2520,7 +2526,7 @@ msgstr "Etkinlik oluşturmaya devam et" msgid "Continue to next step" msgstr "Sonraki adıma devam et" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Ödemeye Devam Et" @@ -2545,7 +2551,7 @@ msgstr "Kim ne zaman girer" msgid "Copied" msgstr "Kopyalandı" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Yukarıdan kopyalandı" @@ -2591,7 +2597,7 @@ msgstr "Kodu Kopyala" msgid "Copy customer link" msgstr "Müşteri bağlantısını kopyala" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Bilgileri ilk katılımcıya kopyala" @@ -2609,7 +2615,7 @@ msgstr "Bağlantıyı kopyala" msgid "Copy Link" msgstr "Linki Kopyala" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Bilgilerimi kopyala:" @@ -2630,7 +2636,7 @@ msgstr "URL'yi Kopyala" msgid "Could not delete location" msgstr "Konum silinemedi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Toplu güncelleme hazırlanamadı." @@ -2652,13 +2658,17 @@ msgstr "Tarih kaydedilemedi" msgid "Could not save location" msgstr "Konum kaydedilemedi" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "Ülke" @@ -2671,6 +2681,10 @@ msgstr "Kapak" msgid "Cover Image" msgstr "Kapak Görseli" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "Kapak görseli etkinlik sayfanızın üstünde gösterilecektir" @@ -2743,7 +2757,7 @@ msgstr "organizatör oluştur" msgid "Create and configure tickets and merchandise for sale." msgstr "Satış için bilet ve ürünler oluşturup yapılandırın." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Katılımcı Oluştur" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Kategori oluştur" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Kategori Oluştur" @@ -2771,17 +2785,17 @@ msgstr "Kategori Oluştur" msgid "Create Check-In List" msgstr "Check-In Listesi Oluştur" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Yapılandırma Oluştur" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Organizatör varsayılanlarını geçersiz kılan bu etkinlik için özel e-posta şablonları oluşturun" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Özel Şablon Oluştur" @@ -2793,16 +2807,16 @@ msgstr "Tarih Oluştur" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "İndirimler, gizli biletler için erişim kodları ve özel teklifler oluşturun." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Etkinlik Oluştur" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Bu tarih için oluştur" @@ -2849,7 +2863,7 @@ msgstr "Vergi veya Ücret Oluştur" msgid "Create Ticket or Product" msgstr "Bilet veya Ürün Oluştur" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "Etkinliğinizi Oluşturun" msgid "Create your first event" msgstr "İlk etkinliğinizi oluşturun" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "Harekete geçirici düğme etiketi gerekli" msgid "Currency" msgstr "Para Birimi" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Mevcut Şifre" @@ -2931,7 +2949,7 @@ msgstr "Şu anda satın alınabilir" msgid "Custom branding" msgstr "Özel markalama" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Özel tarih ve saat" @@ -2957,7 +2975,7 @@ msgstr "Özel Sorular" msgid "Custom Range" msgstr "Özel Aralık" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Özel şablon" @@ -2970,7 +2988,7 @@ msgstr "Müşteri" msgid "Customer link copied to clipboard" msgstr "Müşteri bağlantısı panoya kopyalandı" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "Müşteri iade onayını içeren bir e-posta alacaktır" @@ -2990,11 +3008,15 @@ msgstr "Müşterinin soyadı" msgid "Customers" msgstr "Müşteriler" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Bu etkinlik için e-posta ve bildirim ayarlarını özelleştirin" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Liquid şablonu kullanarak müşterilerinize gönderilen e-postaları özelleştirin. Bu şablonlar kuruluşunuzdaki tüm etkinlikler için varsayılan olarak kullanılacaktır." @@ -3027,6 +3049,10 @@ msgstr "Devam düğmesinde gösterilen metni özelleştirin" msgid "Customize your email template using Liquid templating" msgstr "Liquid şablonu kullanarak e-posta şablonunuzu özelleştirin" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Organizatör sayfanızın görünümünü özelleştirin" @@ -3079,7 +3105,7 @@ msgstr "Koyu" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Gösterge Paneli" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Tarih ve Saat" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Tarih İptali" @@ -3208,12 +3234,12 @@ msgstr "Tarih başına varsayılan kapasite" msgid "Default Fee Handling" msgstr "Varsayılan ücret işleme" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Varsayılan şablon kullanılacak" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "sil" @@ -3267,8 +3293,8 @@ msgstr "Kodu sil" msgid "Delete Date" msgstr "Tarihi Sil" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Etkinliği Sil" @@ -3285,8 +3311,8 @@ msgstr "İşi sil" msgid "Delete location" msgstr "Konumu sil" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Organizatörü Sil" @@ -3294,7 +3320,7 @@ msgstr "Organizatörü Sil" msgid "Delete Permanently" msgstr "Kalıcı Olarak Sil" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Şablonu Sil" @@ -3319,7 +3345,7 @@ msgstr "{0} tarih silindi" msgid "Description" msgstr "Açıklama" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "{0} cinsinden indirim" msgid "Discount Type" msgstr "İndirim Türü" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Kapat" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Bu mesajı kapat" @@ -3441,7 +3467,7 @@ msgstr "CSV İndir" msgid "Download invoice" msgstr "Faturayı indir" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Faturayı İndir" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Tamamlanan tüm siparişler için satış, katılımcı ve mali raporları indirin." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "Fatura İndiriliyor" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Taslak" @@ -3469,7 +3494,7 @@ msgstr "Taslak" msgid "Dropdown selection" msgstr "Açılır seçim" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "Yüksek spam riski nedeniyle, e-posta şablonlarını değiştirmeden önce bir Stripe hesabı bağlamanız gerekir. Bu, tüm etkinlik organizatörlerinin doğrulanmış ve sorumlu olmasını sağlamak içindir." @@ -3490,7 +3515,7 @@ msgstr "Çoğalt" msgid "Duplicate Date" msgstr "Tarihi Çoğalt" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Etkinliği çoğalt" @@ -3508,7 +3533,7 @@ msgstr "Çoğaltma Seçenekleri" msgid "Duplicate Product" msgstr "Ürünü Çoğalt" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "Süre en az 1 dakika olmalıdır." @@ -3520,7 +3545,7 @@ msgstr "Felemenkçe" msgid "e.g. 180 (3 hours)" msgstr "ör. 180 (3 saat)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "örn. Sabah Oturumu" msgid "e.g., Get Tickets, Register Now" msgstr "örn., Bilet Al, Şimdi Kaydol" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "örn., Biletleriniz hakkında önemli güncelleme" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "örn., Standart, Premium, Kurumsal" @@ -3542,7 +3567,7 @@ msgstr "örn., Standart, Premium, Kurumsal" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Her kişi, satın alma işlemini tamamlamak için ayrılmış bir yer içeren bir e-posta alacaktır." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Daha önce" @@ -3611,7 +3636,7 @@ msgstr "Check-In Listesini Düzenle" msgid "Edit Code" msgstr "Kodu Düzenle" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Yapılandırmayı Düzenle" @@ -3659,8 +3684,8 @@ msgstr "Soruyu Düzenle" msgid "Edit user" msgstr "Kullanıcıyı düzenle" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Kullanıcıyı Düzenle" @@ -3708,7 +3733,7 @@ msgstr "Uygun Giriş Listeleri" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Uygun Giriş Listeleri" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "E-posta" @@ -3743,10 +3768,10 @@ msgstr "E-posta ve Şablonlar" msgid "Email address" msgstr "E-posta adresi" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "E-posta Adresi" @@ -3755,8 +3780,8 @@ msgstr "E-posta Adresi" msgid "Email address copied to clipboard" msgstr "E-posta adresi panoya kopyalandı" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "E-posta adresleri eşleşmiyor" @@ -3764,21 +3789,21 @@ msgstr "E-posta adresleri eşleşmiyor" msgid "Email Body" msgstr "E-posta Gövdesi" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "E-posta değişikliği başarıyla iptal edildi" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "E-posta değişikliği beklemede" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "E-posta onayı yeniden gönderildi" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "E-posta onayı başarıyla yeniden gönderildi" @@ -3792,7 +3817,7 @@ msgstr "E-posta alt bilgi mesajı" msgid "Email is required" msgstr "E-posta gerekli" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "E-posta doğrulanmamış" @@ -3800,7 +3825,7 @@ msgstr "E-posta doğrulanmamış" msgid "Email Preview" msgstr "E-posta Önizlemesi" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "E-posta Şablonları" @@ -3809,6 +3834,10 @@ msgstr "E-posta Şablonları" msgid "Email Verification Required" msgstr "E-posta Doğrulaması Gerekli" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "E-posta başarıyla doğrulandı!" @@ -3897,12 +3926,11 @@ msgstr "Bitiş saati (isteğe bağlı)" msgid "End time of the occurrence" msgstr "Oturumun bitiş saati" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Sona Erdi" @@ -3920,11 +3948,11 @@ msgstr "{0} bitiyor" msgid "English" msgstr "İngilizce" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Bir kapasite değeri girin veya sınırsızı seçin." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Bir etiket girin veya kaldırmayı seçin." @@ -3932,7 +3960,7 @@ msgstr "Bir etiket girin veya kaldırmayı seçin." msgid "Enter a subject and body to see the preview" msgstr "Önizlemeyi görmek için bir konu ve gövde girin" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Kaydırılacak süreyi girin." @@ -3949,11 +3977,11 @@ msgstr "Bağlı kuruluş e-postasını girin (isteğe bağlı)" msgid "Enter affiliate name" msgstr "Bağlı kuruluş adını girin" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Vergiler ve ücretler hariç bir tutar girin." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Kapasite girin" @@ -3998,7 +4026,7 @@ msgstr "E-postanızı girin, şifrenizi sıfırlamak için size talimatlar gönd msgid "Enter your name" msgstr "Adınızı girin" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Ülke kodu dahil KDV numaranızı boşluksuz girin (örn., TR1234567890, DE123456789)" @@ -4012,7 +4040,7 @@ msgstr "Müşteriler tükenmiş ürünler için bekleme listesine katıldığın #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Hata" @@ -4074,7 +4102,7 @@ msgstr "Etkinlik" msgid "Event Archived" msgstr "Etkinlik Arşivlendi" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Etkinlik başarıyla arşivlendi" @@ -4086,7 +4114,7 @@ msgstr "Etkinlik Kategorisi" msgid "Event Cover Image" msgstr "Etkinlik Kapak Görseli" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4094,7 +4122,7 @@ msgstr "" msgid "Event Created" msgstr "Etkinlik Oluşturuldu" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Etkinlik özel şablonu" @@ -4113,7 +4141,7 @@ msgstr "Etkinlik Tarihi" msgid "Event Defaults" msgstr "Etkinlik Varsayılanları" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Etkinlik başarıyla silindi" @@ -4145,10 +4173,14 @@ msgstr "Etkinlik başarıyla çoğaltıldı" msgid "Event Full Address" msgstr "Etkinlik Tam Adresi" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Etkinlik Ana Sayfası" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Etkinlik Konumu" @@ -4188,7 +4220,7 @@ msgstr "Etkinlik organizatör adı" msgid "Event Page" msgstr "Etkinlik Sayfası" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Etkinlik başarıyla geri yüklendi" @@ -4197,17 +4229,17 @@ msgstr "Etkinlik başarıyla geri yüklendi" msgid "Event Settings" msgstr "Etkinlik ayarları" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Etkinlik durumu güncellenemedi. Lütfen daha sonra tekrar deneyin" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Etkinlik durumu güncellendi" @@ -4240,7 +4272,7 @@ msgstr "Etkinlik Başlığı" msgid "Event Too New" msgstr "Etkinlik Çok Yeni" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Etkinlik toplamları" @@ -4405,7 +4437,7 @@ msgstr "Başarısız oldu" msgid "Failed Jobs" msgstr "Başarısız işler" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "Sipariş terk edilemedi. Lütfen tekrar deneyin." @@ -4439,7 +4471,7 @@ msgstr "Sipariş iptal edilemedi" msgid "Failed to create affiliate" msgstr "Bağlı kuruluş oluşturulamadı" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Yapılandırma oluşturulamadı" @@ -4447,12 +4479,12 @@ msgstr "Yapılandırma oluşturulamadı" msgid "Failed to create schedule" msgstr "Program oluşturulamadı" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Şablon oluşturulamadı" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Yapılandırma silinemedi" @@ -4470,7 +4502,7 @@ msgstr "Tarih silinemedi. Mevcut siparişleri olabilir." msgid "Failed to delete dates" msgstr "Tarihler silinemedi" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Etkinlik silinemedi" @@ -4482,7 +4514,7 @@ msgstr "İş silinemedi" msgid "Failed to delete jobs" msgstr "İşler silinemedi" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Organizatör silinemedi" @@ -4490,13 +4522,13 @@ msgstr "Organizatör silinemedi" msgid "Failed to delete question" msgstr "Soru silinemedi" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Şablon silinemedi" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Fatura indirilemedi. Lütfen tekrar deneyin." @@ -4594,14 +4626,14 @@ msgstr "Fiyat geçersiz kılması kaydedilemedi" msgid "Failed to save product settings" msgstr "Ürün ayarları kaydedilemedi" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Şablon kaydedilemedi" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "KDV ayarları kaydedilemedi. Lütfen tekrar deneyin." @@ -4639,11 +4671,11 @@ msgstr "Cevap güncellenemedi." msgid "Failed to update attendee" msgstr "Katılımcı güncellenemedi" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Yapılandırma güncellenemedi" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Etkinlik durumu güncellenemedi" @@ -4655,7 +4687,7 @@ msgstr "Mesajlaşma seviyesi güncellenemedi" msgid "Failed to update order" msgstr "Sipariş güncellenemedi" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Organizatör durumu güncellenemedi" @@ -4701,7 +4733,7 @@ msgstr "Şubat" msgid "Fee" msgstr "Ücret" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Ücret Para Birimi" @@ -4720,7 +4752,7 @@ msgstr "" msgid "Fees" msgstr "Ücretler" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Ücretler Atlandı" @@ -4732,8 +4764,8 @@ msgstr "Festival" msgid "File is too large. Maximum size is 5MB." msgstr "Dosya çok büyük. Maksimum boyut 5MB'dir." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Önce yukarıdaki bilgilerinizi doldurun" @@ -4754,7 +4786,7 @@ msgstr "Katılımcıları Filtrele" msgid "Filter by date" msgstr "Tarihe göre filtrele" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Etkinliğe göre filtrele" @@ -4775,19 +4807,27 @@ msgstr "Filtreler ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Stripe kurulumunu bitir" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "İlk" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "İlk katılımcı" @@ -4798,22 +4838,22 @@ msgstr "İlk Fatura Numarası" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Ad" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Ad" @@ -4843,16 +4883,16 @@ msgstr "Sabit tutar" msgid "Fixed fee" msgstr "Sabit ücret" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Sabit Ücret" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "İşlem başına sabit ücret" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "Sabit ücret 0 veya daha büyük olmalıdır" @@ -4923,7 +4963,11 @@ msgstr "Cuma" msgid "Full data ownership" msgstr "Tam veri sahipliği" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Tam iade" @@ -4931,11 +4975,11 @@ msgstr "Tam iade" msgid "Full resolved address" msgstr "Tam çözümlenmiş adres" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "gelecek" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Yalnızca gelecek tarihler" @@ -4992,7 +5036,7 @@ msgstr "Başlayın" msgid "Get Tickets" msgstr "Bilet Al" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Etkinliğinizi hazırlayın" @@ -5013,7 +5057,7 @@ msgstr "Geri Dön" msgid "Go back to profile" msgstr "Profile geri dön" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Etkinlik Sayfasına Git" @@ -5037,7 +5081,7 @@ msgstr "Google Takvim" msgid "Got it" msgstr "Anladım" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Brüt gelir" @@ -5045,22 +5089,22 @@ msgstr "Brüt gelir" msgid "Gross Revenue" msgstr "Brüt Gelir" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Brüt satışlar" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Brüt Satışlar" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5077,7 +5121,7 @@ msgstr "Misafirler" msgid "Happening now" msgstr "Şu anda gerçekleşiyor" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Promosyon kodunuz var mı?" @@ -5106,7 +5150,7 @@ msgstr "İşte widget'ı uygulamanıza yerleştirmek için kullanabileceğiniz R msgid "Here is your affiliate link" msgstr "Bağlı kuruluş bağlantınız burada" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Merhaba {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Halk görünümünden gizli" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "Gizli sorular yalnızca etkinlik organizatörü tarafından görülebilir, müşteri tarafından görülemez." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Gizle" @@ -5239,8 +5283,8 @@ msgstr "Ana Sayfa Önizlemesi" msgid "Homer" msgstr "Homer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Saat" @@ -5269,11 +5313,11 @@ msgstr "Ne sıklıkta?" msgid "How to pay offline" msgstr "Çevrimdışı nasıl ödeme yapılır" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "Size uyguladığımız platform ücretlerine KDV nasıl uygulanır." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "HTML karakter sınırı aşıldı: {htmlLength}/{maxLength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Macarca" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Veri sorumlusu olarak sorumluluklarımı kabul ediyorum" @@ -5305,11 +5349,11 @@ msgstr "Bu etkinlikle ilgili e-posta bildirimleri almayı kabul ediyorum" msgid "I agree to the <0>terms and conditions" msgstr "<0>Şartlar ve koşulları kabul ediyorum" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Bunun bu etkinlikle ilgili işlemsel bir mesaj olduğunu onaylıyorum" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Yeni bir sekme otomatik olarak açılmadıysa, ödemeye devam etmek için lütfen aşağıdaki düğmeyi tıklayın." @@ -5325,7 +5369,7 @@ msgstr "Etkinleştirilirse, check-in personeli katılımcıları check-in yaptı msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Etkinleştirilirse, yeni bir sipariş verildiğinde organizatör e-posta bildirimi alacak" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Bu değişikliği talep etmediyseniz, lütfen hemen şifrenizi değiştirin." @@ -5370,11 +5414,11 @@ msgstr "Taklit başlatıldı" msgid "Impersonation stopped" msgstr "Taklit durduruldu" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Önemli Uyarı" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Önemli: E-posta adresinizi değiştirmek, bu siparişe erişim bağlantısını güncelleyecektir. Kaydettikten sonra yeni sipariş bağlantısına yönlendirileceksiniz." @@ -5390,7 +5434,7 @@ msgstr "{diffMinutes} dakika içinde" msgid "in last {0} min" msgstr "son {0} dakikada" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "Yüz yüze — bir mekân belirleyin" @@ -5401,15 +5445,15 @@ msgstr "yüz yüze, çevrimiçi, ayarlanmamış veya karma" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Pasif" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Pasif kullanıcılar giriş yapamazlar." @@ -5483,12 +5527,12 @@ msgstr "Geçersiz e-posta formatı" msgid "Invalid file type. Please upload an image." msgstr "Geçersiz dosya türü. Lütfen bir resim yükleyin." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Geçersiz Liquid sözdizimi. Lütfen düzeltin ve tekrar deneyin." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Geçersiz KDV numarası formatı" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Fatura" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Fatura başarıyla indirildi" @@ -5545,7 +5589,7 @@ msgstr "Fatura Ayarları" msgid "Italian" msgstr "İtalyanca" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Öğe" @@ -5628,7 +5672,7 @@ msgstr "az önce" msgid "Just wrapped" msgstr "Az önce sona erdi" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "{0} adresinden haberler ve etkinlikler hakkında beni bilgilendirin" @@ -5647,13 +5691,13 @@ msgstr "Etiket" msgid "Label for the occurrence" msgstr "Oturum için etiket" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "etiket güncellemeleri" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Dil" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "Son 24 saat" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "Son 30 gün" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "Son 6 ay" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "Son 7 gün" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "Son 90 gün" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Soyad" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Soyad" @@ -5753,7 +5797,7 @@ msgstr "Son Tetiklenme" msgid "Last Used" msgstr "Son Kullanım" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Daha sonra" @@ -5786,7 +5830,7 @@ msgstr "Etkinlikteki tüm biletleri kapsayacak şekilde açık bırakın. Belirl msgid "Let them know about the change" msgstr "Onlara değişikliği bildirin" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Onlara değişiklikleri bildirin" @@ -5830,12 +5874,11 @@ msgstr "Liste" msgid "List view" msgstr "Liste görünümü" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "Canlı" @@ -5848,7 +5891,7 @@ msgstr "CANLI" msgid "Live Events" msgstr "Canlı Etkinlikler" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Yüklenmiş tarihler" @@ -5872,8 +5915,8 @@ msgstr "Webhook'lar Yükleniyor" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Yükleniyor..." @@ -5926,7 +5969,7 @@ msgstr "Konum kaydedildi" msgid "Location updated" msgstr "Konum güncellendi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "konum güncellemeleri" @@ -5990,7 +6033,7 @@ msgstr "Ana Ofis" msgid "Make billing address mandatory during checkout" msgstr "Ödeme sırasında fatura adresini zorunlu kıl" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "Katılımcıyı yönet" msgid "Manage dates and times for your recurring event" msgstr "Yinelenen etkinliğiniz için tarihleri ve saatleri yönetin" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Etkinliği yönet" @@ -6039,10 +6082,14 @@ msgstr "Siparişi yönet" msgid "Manage payment and invoicing settings for this event." msgstr "Bu etkinlik için ödeme ve faturalama ayarlarını yönet." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Profili Yönet" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Programı Yönet" @@ -6124,7 +6171,7 @@ msgstr "Ortam" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Mesaj" @@ -6141,7 +6188,7 @@ msgstr "Katılımcıya mesaj gönder" msgid "Message Attendees" msgstr "Katılımcılara Mesaj" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Belirli biletlere sahip katılımcılara mesaj gönderin" @@ -6165,7 +6212,7 @@ msgstr "Mesaj içeriği" msgid "Message Details" msgstr "Mesaj detayları" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Bireysel katılımcılara mesaj gönder" @@ -6173,15 +6220,15 @@ msgstr "Bireysel katılımcılara mesaj gönder" msgid "Message is required" msgstr "Mesaj gerekli" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Belirli ürünlere sahip sipariş sahiplerine mesaj gönderin" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Mesaj zamanlandı" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Mesaj Gönderildi" @@ -6212,8 +6259,8 @@ msgstr "Minimum Fiyat" msgid "minutes" msgstr "dakika" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Dakika" @@ -6229,7 +6276,7 @@ msgstr "Çeşitli Ayarlar" msgid "Mo" msgstr "Pt" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Mod" @@ -6282,7 +6329,7 @@ msgstr "Daha fazla işlem" msgid "Most Viewed Events (Last 14 Days)" msgstr "En Çok Görüntülenen Etkinlikler (Son 14 Gün)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Tüm tarihleri öne veya sona kaydır" @@ -6290,7 +6337,7 @@ msgstr "Tüm tarihleri öne veya sona kaydır" msgid "Multi line text box" msgstr "Çok satırlı metin kutusu" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Ad" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "Ad gerekli" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "İsim 255 karakterden az olmalıdır" @@ -6384,21 +6431,21 @@ msgstr "Net Gelir" msgid "Never" msgstr "Asla" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Yeni kapasite" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Yeni etiket" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Yeni konum" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "Yeni Şifre" @@ -6426,7 +6473,7 @@ msgstr "Gece Hayatı" msgid "No" msgstr "Hayır" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "Hayır - Bireyim veya KDV kayıtlı olmayan bir işletmeyim" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "Kapasite Ataması Yok" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "Bu etkinlik için kullanılabilir giriş listesi yok." msgid "No check-ins yet" msgstr "Henüz check-in yok" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "Yapılandırma bulunamadı" @@ -6537,7 +6584,7 @@ msgstr "Tarihe özel giriş listesi yok" msgid "No dates available this month. Try navigating to another month." msgstr "Bu ay için uygun tarih yok. Başka bir aya geçmeyi deneyin." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "Mevcut filtrelerle eşleşen tarih yok." @@ -6582,8 +6629,8 @@ msgstr "Önümüzdeki 24 saat içinde başlayan etkinlik yok" msgid "No events to show" msgstr "Gösterilecek etkinlik yok" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "Sipariş bulunamadı" msgid "No orders to show" msgstr "Gösterilecek sipariş yok" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "Bu tarih için henüz sipariş yok." msgid "No organizer activity in the last 14 days" msgstr "Son 14 günde organizatör aktivitesi yok" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "Kullanılabilir organizatör bağlamı yok." @@ -6733,7 +6780,7 @@ msgstr "Henüz yanıt yok" msgid "No results" msgstr "Sonuç yok" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Henüz kayıtlı konum yok" @@ -6793,16 +6840,16 @@ msgstr "Bu uç nokta için henüz webhook olayı kaydedilmedi. Olaylar tetiklend msgid "No Webhooks" msgstr "Webhook Yok" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "Hayır, beni burada tut" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "düzenlenmemiş" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Hiçbiri" @@ -6870,7 +6917,7 @@ msgstr "Numara Öneki" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Oturum" @@ -7005,7 +7052,7 @@ msgstr "Çevrimdışı Ödemeler Bilgisi" msgid "Offline Payments Settings" msgstr "Çevrimdışı Ödemeler Ayarları" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "Veri toplamaya başladığınızda, burada göreceksiniz." msgid "Ongoing" msgstr "Devam Eden" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "Devam Eden" msgid "Online" msgstr "Çevrimiçi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "Çevrimiçi — bağlantı bilgilerini girin" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Çevrimiçi ve yüz yüze" @@ -7070,15 +7117,15 @@ msgstr "Çevrimiçi etkinlik bağlantı detayları" msgid "Online Event Details" msgstr "Online Etkinlik Detayları" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Yalnızca hesap yöneticileri etkinlikleri silebilir veya arşivleyebilir. Yardım için hesap yöneticinizle iletişime geçin." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Yalnızca hesap yöneticileri organizatörleri silebilir veya arşivleyebilir. Yardım için hesap yöneticinizle iletişime geçin." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Yalnızca bu durumlara sahip siparişlere gönder" @@ -7173,7 +7220,7 @@ msgstr "Sipariş ve Bilet" msgid "Order #" msgstr "Sipariş #" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Sipariş iptal edildi" @@ -7182,13 +7229,13 @@ msgstr "Sipariş iptal edildi" msgid "Order Cancelled" msgstr "Sipariş İptal Edildi" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Sipariş tamamlandı" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Sipariş Onayı" @@ -7273,7 +7320,7 @@ msgstr "Sipariş ödendi olarak işaretlendi" msgid "Order Marked as Paid" msgstr "Sipariş Ödendi Olarak İşaretlendi" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Sipariş bulunamadı" @@ -7297,7 +7344,7 @@ msgstr "Sipariş numarası, satın alma tarihi, alıcı e-postası" msgid "Order owner" msgstr "Sipariş sahibi" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Belirli bir ürüne sahip sipariş sahipleri" @@ -7327,7 +7374,7 @@ msgstr "Sipariş İade Edildi" msgid "Order Status" msgstr "Sipariş Durumu" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Sipariş durumları" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Sipariş zaman aşımı" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Sipariş Toplamı" @@ -7357,7 +7404,7 @@ msgstr "Sipariş başarıyla güncellendi" msgid "Order URL" msgstr "Sipariş URL'si" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "Sipariş iptal edildi" @@ -7374,8 +7421,8 @@ msgstr "sipariş" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Organizasyon Adı" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Organizasyon Adı" msgid "Organizer" msgstr "Organizatör" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Organizatör başarıyla arşivlendi" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Organizatör Paneli" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Organizatör başarıyla silindi" @@ -7486,7 +7533,7 @@ msgstr "Organizatör Adı" msgid "Organizer Not Found" msgstr "Organizatör Bulunamadı" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Organizatör başarıyla geri yüklendi" @@ -7504,7 +7551,7 @@ msgstr "Organizatör durum güncellemesi başarısız oldu. Lütfen daha sonra t msgid "Organizer status updated" msgstr "Organizatör durumu güncellendi" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Organizatör/varsayılan şablon kullanılacak" @@ -7512,7 +7559,7 @@ msgstr "Organizatör/varsayılan şablon kullanılacak" msgid "Organizers" msgstr "Organizatörler" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Organizatörler yalnızca etkinlikleri ve ürünleri yönetebilir. Kullanıcıları, hesap ayarlarını veya fatura bilgilerini yönetemezler." @@ -7563,7 +7610,7 @@ msgstr "İç Boşluk" msgid "Page" msgstr "Sayfa" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Sayfa artık mevcut değil" @@ -7575,7 +7622,7 @@ msgstr "Sayfa bulunamadı" msgid "Page URL" msgstr "Sayfa URL'si" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Sayfa görüntüleme" @@ -7583,11 +7630,11 @@ msgstr "Sayfa görüntüleme" msgid "Page Views" msgstr "Sayfa Görüntülemeleri" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "ödendi" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "Ücretli Hesaplar" msgid "Paid Product" msgstr "Ücretli Ürün" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Kısmi iade" @@ -7623,7 +7670,7 @@ msgstr "Alıcıya aktar" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Şifre" @@ -7694,7 +7741,7 @@ msgstr "Yük" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Ödeme" @@ -7735,7 +7782,7 @@ msgstr "Ödeme Yöntemleri" msgid "Payment provider" msgstr "Ödeme sağlayıcısı" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Ödeme alındı" @@ -7747,7 +7794,7 @@ msgstr "Ödeme Alındı" msgid "Payment Status" msgstr "Ödeme Durumu" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "Ödeme başarılı!" @@ -7761,11 +7808,11 @@ msgstr "Ödemeler mevcut değil" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Ödemeler" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "Beklemede" @@ -7801,8 +7848,8 @@ msgstr "Yüzde" msgid "Percentage Amount" msgstr "Yüzde Miktarı" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Yüzde Ücreti" @@ -7810,11 +7857,11 @@ msgstr "Yüzde Ücreti" msgid "Percentage fee (%)" msgstr "Yüzde ücreti (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "Yüzde 0 ile 100 arasında olmalıdır" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "İşlem tutarının yüzdesi" @@ -7822,11 +7869,11 @@ msgstr "İşlem tutarının yüzdesi" msgid "Performance" msgstr "Performans" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Bu etkinliği ve tüm ilgili verileri kalıcı olarak silin." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Bu organizatörü ve tüm etkinliklerini kalıcı olarak silin." @@ -7834,7 +7881,7 @@ msgstr "Bu organizatörü ve tüm etkinliklerini kalıcı olarak silin." msgid "Permanently remove this date" msgstr "Bu tarihi kalıcı olarak kaldır" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Kişisel Bilgiler" @@ -7842,7 +7889,7 @@ msgstr "Kişisel Bilgiler" msgid "Phone" msgstr "Telefon" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Bir konum seçin" @@ -7892,7 +7939,7 @@ msgstr "Ödemenizden {0} platform ücreti düşülür" msgid "Platform Fees" msgstr "Platform Ücretleri" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Platform Ücretleri Raporu" @@ -7918,7 +7965,7 @@ msgstr "Lütfen e-posta ve şifrenizi kontrol edin ve tekrar deneyin" msgid "Please check your email is valid" msgstr "Lütfen e-postanızın geçerli olduğunu kontrol edin" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "E-posta adresinizi onaylamak için lütfen e-postanızı kontrol edin" @@ -7926,7 +7973,7 @@ msgstr "E-posta adresinizi onaylamak için lütfen e-postanızı kontrol edin" msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Güncellenmiş saat için lütfen biletinizi kontrol edin. Biletleriniz hâlâ geçerli — yeni saatler size uymadıkça herhangi bir işlem yapmanıza gerek yok. Sorularınız varsa bu e-postayı yanıtlayın." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Lütfen yeni sekmede devam edin" @@ -7955,7 +8002,7 @@ msgstr "Lütfen geçerli bir URL girin" msgid "Please enter the 5-digit code" msgstr "Lütfen 5 haneli kodu girin" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Lütfen KDV numaranızı girin" @@ -7971,11 +8018,11 @@ msgstr "Lütfen bir görsel sağlayın." msgid "Please restart the checkout process." msgstr "Lütfen ödeme işlemini yeniden başlatın." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Baştan başlamak için lütfen etkinlik sayfasına dönün." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Lütfen bir tarih ve saat seçin" @@ -7987,7 +8034,7 @@ msgstr "Lütfen bir tarih aralığı seçin" msgid "Please select an image." msgstr "Lütfen bir görsel seçin." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Lütfen en az bir ürün seçin" @@ -7998,7 +8045,7 @@ msgstr "Lütfen en az bir ürün seçin" msgid "Please try again." msgstr "Lütfen tekrar deneyin." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Tüm özelliklere erişmek için lütfen e-posta adresinizi doğrulayın" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Katılımcılarınızı dışa aktarma için hazırlarken lütfen bekleyin..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Faturanızı hazırlarken lütfen bekleyin..." @@ -8124,7 +8171,7 @@ msgstr "Yazdırma Önizlemesi" msgid "Print Ticket" msgstr "Bileti Yazdır" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "Biletleri Yazdır" @@ -8139,7 +8186,7 @@ msgstr "PDF'ye Yazdır" msgid "Privacy Policy" msgstr "Gizlilik Politikası" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "İade İşle" @@ -8180,7 +8227,7 @@ msgstr "Ürün başarıyla silindi" msgid "Product Price Type" msgstr "Ürün Fiyat Türü" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Ürün(ler)" msgid "Products" msgstr "Ürünler" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Satılan ürünler" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Satılan Ürünler" msgid "Products sorted successfully" msgstr "Ürünler başarıyla sıralandı" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Profil" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Profil başarıyla güncellendi" @@ -8251,7 +8298,7 @@ msgstr "Profil başarıyla güncellendi" msgid "Progress" msgstr "İlerleme" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Promosyon {promo_code} kodu uygulandı" @@ -8298,7 +8345,7 @@ msgstr "Promosyon Kodları Raporu" msgid "Promo Only" msgstr "Yalnızca Promosyon" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "Promosyon e-postaları hesap askıya alınmasına neden olabilir" @@ -8310,11 +8357,11 @@ msgstr "" "Bu soru için ek bağlam veya talimatlar sağlayın. Şartlar ve koşullar, kurallar veya katılımcıların yanıt vermeden önce bilmesi\n" "gereken önemli bilgileri eklemek için bu alanı kullanın." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Yeni konum için en az bir adres alanı girin." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Ödemelerin sürmesi için Stripe'ın bir sonraki incelemesinden önce aşağıdakileri sağla." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Sağlayıcı" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Yayınla" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "Gerçek zamanlı analitik" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "{0}'ten ürün güncellemeleri alın." @@ -8439,6 +8486,10 @@ msgstr "{0}'ten ürün güncellemeleri alın." msgid "Recent Account Signups" msgstr "Son Hesap Kayıtları" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Son Katılımcılar" @@ -8447,7 +8498,7 @@ msgstr "Son Katılımcılar" msgid "Recent check-ins" msgstr "Son check-in'ler" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "Son Siparişler" msgid "recipient" msgstr "alıcı" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Alıcı" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "alıcı" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Alıcılar" msgid "Recipients are available after the message is sent" msgstr "Alıcılar mesaj gönderildikten sonra görüntülenebilir" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Yinelenen" @@ -8517,7 +8569,7 @@ msgstr "Bu tarihler için tüm siparişleri iade et" msgid "Refund all orders for this date" msgstr "Bu tarih için tüm siparişleri iade et" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "İade tutarı" @@ -8537,7 +8589,7 @@ msgstr "İade Yapıldı" msgid "Refund order" msgstr "Siparişi iade et" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Siparişi İade Et {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "İade Durumu" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "İade Edildi" @@ -8571,7 +8623,7 @@ msgstr "İade edildi: {0}" msgid "Refunds" msgstr "İadeler" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Bölgesel Ayarlar" @@ -8598,18 +8650,18 @@ msgstr "Kalan Kullanım" msgid "Reminder scheduled" msgstr "Hatırlatıcı zamanlandı" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "kaldır" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Kaldır" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Tüm tarihlerden etiketi kaldır" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Onay E-postasını Yeniden Gönder" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "E-postayı yeniden gönder" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "E-posta onayını tekrar gönder" @@ -8688,7 +8741,7 @@ msgstr "Bileti Yeniden Gönder" msgid "Resend ticket email" msgstr "Bilet e-postasını tekrar gönder" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Tekrar gönderiliyor..." @@ -8729,30 +8782,30 @@ msgstr "Yanıt" msgid "Response Details" msgstr "Yanıt Detayları" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Geri Yükle" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Etkinliği geri yükle" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Etkinliği Geri Yükle" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Organizatörü Geri Yükle" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Bu etkinliği yeniden görünür hale getirmek için geri yükleyin." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Bu organizatörü geri yükleyin ve yeniden aktif hale getirin." @@ -8777,7 +8830,7 @@ msgstr "İşi yeniden dene" msgid "Return to Event" msgstr "Etkinliğe Dön" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Etkinlik Sayfasına Dön" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Bu hesaptaki başka bir organizatörün Stripe bağlantısını yeniden kullan." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Gelir" @@ -8818,7 +8872,7 @@ msgstr "Daveti iptal et" msgid "Revoke Offer" msgstr "Teklifi Geri Çek" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Satış başlıyor {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Satışlar" @@ -8930,7 +8984,7 @@ msgstr "Cumartesi" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Cumartesi" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Kaydet" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Bilet Tasarımını Kaydet" msgid "Save VAT settings" msgstr "KDV ayarlarını kaydet" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "KDV Ayarlarını Kaydet" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Kayıtlı konum" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Kayıtlı konumlar" @@ -9015,7 +9069,7 @@ msgstr "Kayıtlı Konumlar" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "Geçersiz kılma kaydetmek, şu anda sistem varsayılanında olan bu organizatör için özel bir yapılandırma oluşturur." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Tara" @@ -9035,6 +9089,10 @@ msgstr "Tarayıcı modu" msgid "Schedule" msgstr "Program" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Program başarıyla oluşturuldu" @@ -9043,11 +9101,11 @@ msgstr "Program başarıyla oluşturuldu" msgid "Schedule ends on" msgstr "Program şu tarihte biter" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Daha sonra gönder" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Mesajı zamanla" @@ -9061,11 +9119,11 @@ msgstr "Program başlangıç tarihi" msgid "Scheduled" msgstr "Planlandı" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Zamanlanmış saat" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Ara" @@ -9228,11 +9286,11 @@ msgstr "Tümünü Seç" msgid "Select all on {0}" msgstr "{0} tarihindeki tümünü seç" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Bir etkinlik seçin" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Katılımcı grubu seçin" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Ürün Katmanı Seç" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Ürünleri seç" @@ -9298,7 +9356,7 @@ msgstr "Başlangıç tarih ve saatini seçin" msgid "Select start time" msgstr "Başlangıç saatini seçin" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Durum seç" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Bilet Seç" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Biletleri seç" @@ -9325,7 +9383,7 @@ msgstr "Zaman aralığı seç" msgid "Select timezone" msgstr "Saat dilimi seçin" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Bu mesajı hangi katılımcıların alacağını seçin" @@ -9359,11 +9417,11 @@ msgstr "Hızlı satılıyor 🔥" msgid "Send" msgstr "Gönder" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Mesaj gönder" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Test olarak gönder" @@ -9371,20 +9429,20 @@ msgstr "Test olarak gönder" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "Katılımcılara, bilet sahiplerine veya sipariş sahiplerine e-posta gönderin. Mesajlar hemen gönderilebilir veya daha sonra için planlanabilir." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Bana bir kopya gönder" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Mesaj Gönder" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Şimdi gönder" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Sipariş onayı ve bilet e-postası gönder" @@ -9392,7 +9450,7 @@ msgstr "Sipariş onayı ve bilet e-postası gönder" msgid "Send real-time order and attendee data to your external systems." msgstr "Gerçek zamanlı sipariş ve katılımcı verilerini harici sistemlerinize gönderin." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "İade bildirim e-postası gönder" @@ -9400,11 +9458,11 @@ msgstr "İade bildirim e-postası gönder" msgid "Send reset link" msgstr "Sıfırlama bağlantısı gönder" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Test Gönder" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Tüm oturumlara gönderin veya belirli bir tane seçin" @@ -9429,15 +9487,15 @@ msgstr "Gönderildi" msgid "Sent By" msgstr "Gönderen" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Programlanmış bir tarih iptal edildiğinde katılımcılara gönderilir" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Müşterilere sipariş verdiklerinde gönderilir" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Her katılımcıya bilet detaylarıyla birlikte gönderilir" @@ -9490,7 +9548,7 @@ msgstr "Bu organizatör altında oluşturulan yeni etkinlikler için varsayılan msgid "Set default settings for new events created under this organizer." msgstr "Bu organizatör altında oluşturulan yeni etkinlikler için varsayılan ayarları belirleyin." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Her tarihin ne kadar süreceğini ayarlayın" @@ -9498,11 +9556,11 @@ msgstr "Her tarihin ne kadar süreceğini ayarlayın" msgid "Set number of dates" msgstr "Tarih sayısını ayarla" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Tarih etiketini ayarla veya temizle" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Her tarihin bitiş saatini, başlangıç saatinden bu kadar sonraya ayarlayın." @@ -9510,7 +9568,7 @@ msgstr "Her tarihin bitiş saatini, başlangıç saatinden bu kadar sonraya ayar msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Fatura numaralandırması için başlangıç numarasını ayarlayın. Faturalar oluşturulduktan sonra bu değiştirilemez." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Sınırsıza ayarla (sınırı kaldır)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Farklı girişler, oturumlar veya günler için giriş listeleri oluşturun." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Ödemeleri kur" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Program Oluştur" msgid "Set up your organization" msgstr "Organizasyonunuzu kurun" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Programınızı Oluşturun" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Oturumun konumunu veya çevrimiçi bilgilerini belirleyin, değiştirin veya kaldırın" @@ -9599,11 +9665,11 @@ msgstr "Organizatör Sayfasını Paylaş" msgid "Shared Capacity Management" msgstr "Paylaşımlı Kapasite Yönetimi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Saatleri kaydır" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "{count} tarih için saatler kaydırıldı" @@ -9635,8 +9701,8 @@ msgstr "Pazarlama onay kutusunu göster" msgid "Show marketing opt-in checkbox by default" msgstr "Varsayılan olarak pazarlama onay kutusunu göster" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Daha fazla göster" @@ -9673,7 +9739,7 @@ msgstr "{2} kaydın {0}–{1} arası gösteriliyor" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "{totalAvailable} tarihin {MAX_VISIBLE} tanesi gösteriliyor. Aramak için yazın." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "İlk {0} gösteriliyor — mesaj gönderildiğinde kalan {1} oturum da yine hedeflenecek." @@ -9710,7 +9776,7 @@ msgstr "Tek Etkinlik" msgid "Single line text box" msgstr "Tek satır metin kutusu" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Manuel düzenlenmiş tarihleri atla" @@ -9745,7 +9811,7 @@ msgstr "Sosyal Bağlantılar ve Web Sitesi" msgid "Sold" msgstr "Satıldı" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Bazı ayrıntılar herkese açık erişime kapalı. Tümünü görmek i #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Bir şeyler yanlış gitti" @@ -9784,7 +9850,7 @@ msgstr "Bir şeyler ters gitti, lütfen tekrar deneyin veya sorun devam ederse d msgid "Something went wrong! Please try again" msgstr "Bir şeyler yanlış gitti! Lütfen tekrar deneyin" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Bir şeyler yanlış gitti." @@ -9796,12 +9862,12 @@ msgstr "Bir şeyler ters gitti. Lütfen daha sonra tekrar deneyin." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Bir şeyler yanlış gitti. Lütfen tekrar deneyin." -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Üzgünüz, bu promosyon kodu tanınmıyor" @@ -9897,12 +9963,12 @@ msgstr "Yarın başlıyor" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "Eyalet veya Bölge" @@ -9914,7 +9980,7 @@ msgstr "İstatistikler" msgid "Statistics are based on account creation date" msgstr "İstatistikler hesap oluşturma tarihine göre hesaplanır" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "İstatistikler" @@ -9931,7 +9997,7 @@ msgstr "İstatistikler" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "Stripe Ödeme ID" msgid "Stripe payments are not enabled for this event." msgstr "Bu etkinlik için Stripe ödemeleri etkinleştirilmemiş." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Stripe yakında birkaç bilgi daha isteyecek" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "Pz" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "Konu gerekli" msgid "Subject will appear here" msgstr "Konu burada görünecek" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Konu:" @@ -10024,11 +10090,11 @@ msgstr "Ara Toplam" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Başarılı" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Başarılı! {0} kısa süre içinde bir e-posta alacak." @@ -10173,7 +10239,7 @@ msgstr "Ayarlar başarıyla güncellendi" msgid "Successfully Updated Social Links" msgstr "Sosyal Bağlantılar Başarıyla Güncellendi" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Takip Ayarları Başarıyla Güncellendi" @@ -10226,7 +10292,7 @@ msgstr "İsveççe" msgid "Switch Organizer" msgstr "Organizatör Değiştir" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Sistem Varsayılanı" @@ -10238,7 +10304,7 @@ msgstr "Tişört" msgid "Tap this screen to resume scanning" msgstr "Devam etmek için ekrana dokun" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "{0} seçili oturumdaki katılımcılar hedefleniyor." @@ -10336,7 +10402,7 @@ msgstr "Organizasyonunuz hakkında bize bilgi verin. Bu bilgiler etkinlik sayfal msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Etkinliğinizin ne sıklıkta tekrarlandığını bize söyleyin, tüm tarihleri sizin için oluşturalım." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Platform ücretlerine doğru KDV uygulamamız için KDV kayıt durumunu bize bildir." @@ -10344,15 +10410,15 @@ msgstr "Platform ücretlerine doğru KDV uygulamamız için KDV kayıt durumunu msgid "Template Active" msgstr "Şablon Aktif" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Şablon başarıyla oluşturuldu" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Şablon başarıyla silindi" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Şablon başarıyla kaydedildi" @@ -10378,8 +10444,8 @@ msgstr "Katıldığınız için teşekkürler!" msgid "Thanks," msgstr "Teşekkürler," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Bu promosyon kodu geçersiz" @@ -10399,7 +10465,7 @@ msgstr "Aradığınız check-in listesi mevcut değil." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "Kod 10 dakika içinde sona erecek. E-postayı görmüyorsanız spam klasörünüzü kontrol edin." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "Sabit ücretin tanımlandığı para birimi. Ödeme sırasında sipariş para birimine dönüştürülecektir." @@ -10417,7 +10483,7 @@ msgstr "Etkinlikleriniz için varsayılan para birimi." msgid "The default timezone for your events." msgstr "Etkinlikleriniz için varsayılan saat dilimi." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "E-posta adresi değiştirildi. Katılımcı güncellenmiş e-posta adresinde yeni bir bilet alacaktır." @@ -10442,7 +10508,7 @@ msgstr "Bu programın oluşturulmaya başlanacağı ilk tarih." msgid "The full event address" msgstr "Tam etkinlik adresi" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "Tam sipariş tutarı müşterinin orijinal ödeme yöntemine iade edilecektir." @@ -10466,7 +10532,7 @@ msgstr "Müşterinin dili" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "Maksimum {MAX_PREVIEW} oturumdur. Lütfen tarih aralığını, sıklığı veya günlük oturum sayısını azaltın." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "{0} için maksimum ürün sayısı {1}" @@ -10475,7 +10541,7 @@ msgstr "{0} için maksimum ürün sayısı {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "Aradığınız organizatör bulunamadı. Sayfa taşınmış, silinmiş veya URL yanlış olabilir." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "Geçersiz kılma, sipariş denetim günlüğüne kaydedilir." @@ -10499,11 +10565,11 @@ msgstr "Müşteriye gösterilen fiyat vergi ve ücretleri içermeyecektir. Bunla msgid "The primary brand color used for buttons and highlights" msgstr "Düğmeler ve vurgular için kullanılan birincil marka rengi" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "Zamanlanmış saat gereklidir" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "Zamanlanmış saat gelecekte olmalıdır" @@ -10511,8 +10577,8 @@ msgstr "Zamanlanmış saat gelecekte olmalıdır" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "Başlangıçta {0} için planlanan \"{title}\" oturumu yeniden planlandı." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "Şablon gövdesi geçersiz Liquid sözdizimi içeriyor. Lütfen düzeltin ve tekrar deneyin." @@ -10521,7 +10587,7 @@ msgstr "Şablon gövdesi geçersiz Liquid sözdizimi içeriyor. Lütfen düzelti msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "Arama motoru sonuçlarında ve sosyal medyada paylaşırken görüntülenecek etkinlik başlığı. Varsayılan olarak etkinlik başlığı kullanılacaktır" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "KDV numarası doğrulanamadı. Lütfen numarayı kontrol edin ve tekrar deneyin." @@ -10534,19 +10600,19 @@ msgstr "Tiyatro" msgid "Theme & Colors" msgstr "Tema ve Renkler" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "Bu etkinlik için mevcut ürün yok" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "Bu kategoride mevcut ürün yok" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "Bu etkinlik için yaklaşan tarih yok" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "Bekleyen bir iade var. Başka bir iade talebinde bulunmadan önce lütfen tamamlanmasını bekleyin." @@ -10578,7 +10644,7 @@ msgstr "Bu detaylar yalnızca bu tarih için katılımcının biletinde ve sipar msgid "These details will only be shown if the order is completed successfully." msgstr "Bu detaylar yalnızca sipariş başarıyla tamamlandığında gösterilir." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Bu bilgiler, etkilenen oturumlardaki mevcut konumların yerine geçecek ve katılımcı biletlerinde görünecektir." @@ -10586,11 +10652,11 @@ msgstr "Bu bilgiler, etkilenen oturumlardaki mevcut konumların yerine geçecek msgid "These settings apply only to copied embed code and won't be stored." msgstr "Bu ayarlar yalnızca kopyalanan yerleştirme kodu için geçerlidir ve saklanmayacaktır." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Bu şablonlar organizasyonunuzdaki tüm etkinlikler için varsayılan olarak kullanılacaktır. Bireysel etkinlikler bu şablonları kendi özel sürümleriyle geçersiz kılabilir." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Bu şablonlar yalnızca bu etkinlik için organizatör varsayılanlarını geçersiz kılacaktır. Burada özel bir şablon ayarlanmazsa, organizatör şablonu kullanılacaktır." @@ -10598,11 +10664,11 @@ msgstr "Bu şablonlar yalnızca bu etkinlik için organizatör varsayılanların msgid "Third" msgstr "Üçüncü" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Bu, şu anda görünmeyen tarihler dahil etkinlikteki eşleşen her tarih için geçerlidir. Bu tarihlerden herhangi birine kayıtlı katılımcılara, güncelleme tamamlandıktan sonra mesaj oluşturucu üzerinden ulaşılabilir." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Bu katılımcının ödenmemiş siparişi var." @@ -10660,11 +10726,11 @@ msgstr "Bu tarih iptal edildi. Kalıcı olarak kaldırmak için yine de silebili msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Bu tarih geçmişte. Oluşturulacak ancak yaklaşan tarihler altında katılımcılara görünmeyecek." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Bu tarih tükendi olarak işaretlendi." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Bu tarih artık mevcut değil. Lütfen başka bir tarih seçin." @@ -10713,19 +10779,19 @@ msgstr "Bu mesaj bu etkinlikten gönderilen tüm e-postaların altbilgisinde yer msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Bu mesaj sadece sipariş başarılı bir şekilde tamamlandığında gösterilecek. Ödeme bekleyen siparişlerde bu mesaj gösterilmeyecek" -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Bu isim son kullanıcılara görünür" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Bu oturum kapasitesine ulaştı" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "Bu sipariş zaten ödenmiş." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "Bu sipariş zaten iade edilmiş." @@ -10733,7 +10799,7 @@ msgstr "Bu sipariş zaten iade edilmiş." msgid "This order has been cancelled." msgstr "Bu sipariş iptal edilmiş." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "Bu siparişin süresi dolmuş. Lütfen tekrar başlayın." @@ -10745,15 +10811,15 @@ msgstr "Bu sipariş işleniyor." msgid "This order is complete." msgstr "Bu sipariş tamamlandı." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Bu sipariş sayfası artık mevcut değil." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "Bu sipariş terk edildi. İstediğiniz zaman yeni bir sipariş başlatabilirsiniz." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "Bu sipariş iptal edildi. İstediğiniz zaman yeni bir sipariş başlatabilirsiniz." @@ -10785,7 +10851,7 @@ msgstr "Bu ürün etkinlik sayfasında vurgulanmıştır" msgid "This product is sold out" msgstr "Bu ürün tükendi" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Bu rapor yalnızca bilgilendirme amaçlıdır. Bu verileri muhasebe veya vergi amaçları için kullanmadan önce her zaman bir vergi uzmanına danışın. Hi.Events geçmiş verileri eksik olabileceğinden lütfen Stripe kontrol panelinizle çapraz kontrol yapın." @@ -10797,11 +10863,11 @@ msgstr "Bu şifre sıfırlama bağlantısı geçersiz veya süresi dolmuş." msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Bu bilet az önce tarandı. Tekrar taramadan önce lütfen bekleyin." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Bu kullanıcı davetini kabul etmediği için aktif değil." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Bu, {loadedAffectedCount} tarihi etkileyecek." @@ -10913,6 +10979,10 @@ msgstr "Bilet Fiyatı" msgid "Ticket resent successfully" msgstr "Bilet başarıyla yeniden gönderildi" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "Bu etkinlik için bilet satışı sona erdi" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Saat" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Kalan süre:" @@ -10994,7 +11064,7 @@ msgstr "Kullanım Sayısı" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Saat Dilimi" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "Limitinizi artırmak için bizimle iletişime geçin" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "En İyi Organizatörler (Son 14 Gün)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Toplam" @@ -11075,11 +11146,11 @@ msgstr "Toplam kayıt" msgid "Total Fee" msgstr "Toplam Ücret" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Toplam Brüt Satış" msgid "Total order amount" msgstr "Toplam sipariş tutarı" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "Toplam iade edilen" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Toplam İade Edilen" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Atıf kaynağına göre hesap büyümesini ve performansını takip edin" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Tür" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Onaylamak için \"sil\" yazın" @@ -11222,7 +11293,7 @@ msgstr "Katılımcı check-out'u yapılamadı" msgid "Unable to create product. Please check the your details" msgstr "Ürün oluşturulamadı. Lütfen bilgilerinizi kontrol edin" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Ürün oluşturulamadı. Lütfen bilgilerinizi kontrol edin" @@ -11246,7 +11317,7 @@ msgstr "Bekleme listesine katılınamadı" msgid "Unable to load attendee details." msgstr "Katılımcı ayrıntıları yüklenemedi." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Bu tarih için ürünler yüklenemedi. Lütfen tekrar deneyin." @@ -11284,7 +11355,7 @@ msgstr "Amerika Birleşik Devletleri" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Bilinmeyen" @@ -11304,7 +11375,7 @@ msgstr "Bilinmeyen Katılımcı" msgid "Unlimited" msgstr "Sınırsız" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Sınırsız mevcut" @@ -11316,12 +11387,12 @@ msgstr "Sınırsız kullanıma izin verildi" msgid "Unnamed" msgstr "Adsız" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "İsimsiz konum" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Ödenmemiş Sipariş" @@ -11337,7 +11408,7 @@ msgstr "Güvenilmez" msgid "Upcoming" msgstr "Yaklaşan" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "{0} Güncelle" msgid "Update Affiliate" msgstr "Bağlı Kuruluşu Güncelle" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Kapasiteyi güncelle" @@ -11365,15 +11436,15 @@ msgstr "Etkinlik adını ve açıklamasını güncelle" msgid "Update event name, description and dates" msgstr "Etkinlik adı, açıklaması ve tarihlerini güncelle" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Etiketi güncelle" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Konumu güncelle" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Profili güncelle" @@ -11385,19 +11456,19 @@ msgstr "Güncelleme: {subjectTitle} — program değişiklikleri" msgid "Update: {subjectTitle} — session time changed" msgstr "Güncelleme: {subjectTitle} — oturum saati değişti" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "{count} tarih güncellendi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "{count} tarih için kapasite güncellendi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "{count} tarih için etiket güncellendi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "{count} oturumun konumu güncellendi" @@ -11507,14 +11578,14 @@ msgstr "Kullanıcı Yönetimi" msgid "Users" msgstr "Kullanıcılar" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Kullanıcılar e-postalarını <0>Profil Ayarları'nda değiştirebilir" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11526,13 +11597,13 @@ msgstr "UTM Analitiği" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "KDV numaranız doğrulanıyor..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "KDV" @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "KDV numarası" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "KDV Numarası" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "KDV numarası boşluk içermemelidir" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "KDV numarası, 2 harfli ülke kodu ile başlamalı ve ardından 8-15 alfanümerik karakter gelmelidir (örn., TR1234567890)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "KDV numarası başarıyla doğrulandı" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "KDV numarası doğrulaması başarısız oldu" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "KDV numarası doğrulaması başarısız oldu. Lütfen KDV numaranızı kontrol edin." @@ -11581,12 +11652,12 @@ msgstr "KDV Oranı" msgid "VAT registered" msgstr "KDV mükellefi" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "KDV ayarları başarıyla kaydedildi" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "KDV ayarları kaydedildi. KDV numaranızı arka planda doğruluyoruz." @@ -11594,15 +11665,15 @@ msgstr "KDV ayarları kaydedildi. KDV numaranızı arka planda doğruluyoruz." msgid "VAT settings updated" msgstr "KDV ayarları güncellendi" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "Platform Ücretleri için KDV Uygulaması" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "Platform ücretleri için KDV uygulaması: AB KDV'ye kayıtlı işletmeler ters ibraz mekanizmasını kullanabilir (%0 - KDV Direktifi 2006/112/EC Madde 196). KDV'ye kayıtlı olmayan işletmelerden %23 İrlanda KDV'si alınır." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "KDV doğrulama hizmeti geçici olarak kullanılamıyor" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "KDV: kayıtlı değil" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "Mekan Adı" msgid "Verification code" msgstr "Doğrulama kodu" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "E-postayı Doğrula" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "E-postanızı doğrulayın" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "Doğrulanıyor..." @@ -11655,8 +11735,7 @@ msgstr "Görüntüle" msgid "View All" msgstr "Tümünü Görüntüle" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "{0} {1} ayrıntılarını görüntüle" msgid "View Event" msgstr "Etkinliği Görüntüle" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Etkinlik sayfasını görüntüle" @@ -11729,8 +11808,8 @@ msgstr "Google Haritalar'da görüntüle" msgid "View Order" msgstr "Siparişi Görüntüle" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Sipariş Detaylarını Görüntüle" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "Bekliyor" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "Ödeme bekleniyor" @@ -11800,7 +11879,7 @@ msgstr "Bekleme listesi" msgid "Waitlist Enabled" msgstr "Bekleme Listesi Etkin" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "Bekleme listesi teklifinin süresi doldu" @@ -11808,7 +11887,7 @@ msgstr "Bekleme listesi teklifinin süresi doldu" msgid "Waitlist triggered" msgstr "Bekleme listesi tetiklendi" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Uyarı: Bu sistem varsayılan yapılandırmasıdır. Değişiklikler, belirli bir yapılandırması atanmamış tüm hesapları etkileyecektir." @@ -11844,7 +11923,7 @@ msgstr "Aradığınız siparişi bulamadık. Bağlantının süresi dolmuş veya msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "Aradığınız bileti bulamadık. Bağlantının süresi dolmuş veya bilet detayları değişmiş olabilir." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "Bu siparişi bulamadık. Kaldırılmış olabilir." @@ -11860,7 +11939,7 @@ msgstr "Stripe'a şu anda ulaşamadık. Lütfen birazdan tekrar dene." msgid "We couldn't reorder the categories. Please try again." msgstr "Kategorileri yeniden sıralayamadık. Lütfen tekrar deneyin." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Bu sayfayı yüklerken bir sorunla karşılaştık. Lütfen tekrar deneyin." @@ -11881,6 +11960,10 @@ msgstr "1950px x 650px boyutlarında, 3:1 oranında ve maksimum 5MB dosya boyutu msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "400px x 400px boyutlarını ve maksimum 5MB dosya boyutunu öneriyoruz" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "Sitenin nasıl kullanıldığını anlamamıza ve deneyiminizi iyileştirmemize yardımcı olmak için çerezleri kullanıyoruz." @@ -11889,7 +11972,7 @@ msgstr "Sitenin nasıl kullanıldığını anlamamıza ve deneyiminizi iyileşti msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "Ödemenizi onaylayamadık. Lütfen tekrar deneyin veya destek ile iletişime geçin." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "Birden fazla denemeden sonra KDV numaranızı doğrulayamadık. Arka planda denemeye devam edeceğiz. Lütfen daha sonra tekrar kontrol edin." @@ -11897,16 +11980,16 @@ msgstr "Birden fazla denemeden sonra KDV numaranızı doğrulayamadık. Arka pla msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "{productDisplayName} için bir yer açılırsa size e-posta ile haber vereceğiz." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Kaydettikten sonra önceden doldurulmuş bir şablonla bir mesaj oluşturucu açacağız. Siz inceleyip gönderin — hiçbir şey otomatik olarak gönderilmez." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "Biletlerinizi bu e-postaya göndereceğiz" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "KDV numaranızı arka planda doğrulayacağız. Herhangi bir sorun olursa sizi bilgilendireceğiz." @@ -12003,7 +12086,7 @@ msgstr "Hoş geldiniz! Devam etmek için lütfen giriş yapın." msgid "Welcome back" msgstr "Tekrar hoş geldiniz" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Tekrar hoş geldin{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Sağlık" msgid "What are Tiered Products?" msgstr "Kademeli Ürünler nedir?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "Kategori nedir?" @@ -12143,6 +12226,10 @@ msgstr "Giriş kapandığında" msgid "When check-in opens" msgstr "Giriş açıldığında" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "Etkinleştirildiğinde, bilet siparişleri için faturalar oluşturulacak. Faturalar sipariş onayı e-postasıyla birlikte gönderilecek. Katılımcılar ayrıca faturalarını sipariş onayı sayfasından indirebilir." @@ -12155,7 +12242,7 @@ msgstr "Etkinleştirildiğinde, yeni etkinlikler katılımcıların güvenli bir msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "Etkinleştirildiğinde, yeni etkinlikler ödeme sırasında pazarlama onay kutusu gösterecektir. Bu, etkinlik bazında geçersiz kılınabilir." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "Etkinleştirildiğinde, Stripe Connect işlemlerinde uygulama ücreti alınmaz. Uygulama ücretlerinin desteklenmediği ülkeler için kullanın." @@ -12191,11 +12278,11 @@ msgstr "Widget Önizleme" msgid "Widget Settings" msgstr "Widget Ayarları" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "Çalışıyor" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "yıl" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Yıl başından beri" @@ -12247,11 +12334,11 @@ msgstr "yıl" msgid "Yes" msgstr "Evet" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Evet - Geçerli bir AB KDV kayıt numaram var" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Evet, siparişimi iptal et" @@ -12267,7 +12354,7 @@ msgstr "E-postanızı <0>{0} olarak değiştiriyorsunuz." msgid "You are impersonating <0>{0} ({1})" msgstr "<0>{0} ({1}) rolünü üstleniyorsunuz" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Kısmi iade yapıyorsunuz. Müşteriye {0} {1} iade edilecek." @@ -12292,7 +12379,7 @@ msgstr "Bunu daha sonra tek tek tarihler için geçersiz kılabilirsiniz." msgid "You can still manually offer tickets if needed." msgstr "Gerekirse biletleri manuel olarak da sunabilirsiniz." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "Hesabınızdaki son aktif organizatörü arşivleyemezsiniz." @@ -12313,11 +12400,11 @@ msgstr "Son kategoriyi silemezsiniz." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "Bu fiyat seviyesini silemezsiniz çünkü bu seviye için zaten satılmış ürünler var. Bunun yerine gizleyebilirsiniz." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "Hesap sahibinin rolünü veya durumunu düzenleyemezsiniz." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "Elle oluşturulan bir siparişi iade edemezsiniz." @@ -12333,11 +12420,11 @@ msgstr "Bu daveti zaten kabul ettiniz. Devam etmek için lütfen giriş yapın." msgid "You have no pending email change." msgstr "Bekleyen e-posta değişikliğiniz yok." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "Mesajlaşma limitinize ulaştınız." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "Siparişinizi tamamlamak için zamanınız doldu." @@ -12345,11 +12432,11 @@ msgstr "Siparişinizi tamamlamak için zamanınız doldu." msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Ücretsiz Bir Ürüne eklenen vergiler ve ücretleriniz var. Bunları kaldırmak ister misiniz?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "Bu e-postanın tanıtım amaçlı olmadığını kabul etmelisiniz" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Kaydetmeden önce sorumluluklarınızı kabul etmelisiniz" @@ -12409,7 +12496,7 @@ msgstr "Kapasite ataması oluşturabilmek için önce bir ürüne ihtiyacınız msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Başlamak için en az bir ürüne ihtiyacınız var. Ücretsiz, ücretli veya kullanıcının ne kadar ödeyeceğine karar vermesine izin verin." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Oturum saatlerini değiştiriyorsunuz" @@ -12421,7 +12508,7 @@ msgstr "{0}'e gidiyorsunuz!" msgid "You're on the waitlist!" msgstr "Bekleme listesine eklendi!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "Size bir yer teklif edildi!" @@ -12429,7 +12516,7 @@ msgstr "Size bir yer teklif edildi!" msgid "You've changed the session time" msgstr "Oturum saatini değiştirdiniz" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Hesabınızın mesajlaşma limitleri var. Limitinizi artırmak için bizimle iletişime geçin" @@ -12457,11 +12544,11 @@ msgstr "Harika web siteniz 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "Giriş listeniz başarıyla oluşturuldu. Aşağıdaki bağlantıyı giriş personelinizle paylaşın." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "Mevcut siparişiniz kaybolacak." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Bilgileriniz" @@ -12469,7 +12556,7 @@ msgstr "Bilgileriniz" msgid "Your Email" msgstr "E-postanız" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "<0>{0} adresine e-posta değişiklik talebiniz beklemede. Onaylamak için lütfen e-postanızı kontrol edin" @@ -12497,7 +12584,7 @@ msgstr "Adınız" msgid "Your new password must be at least 8 characters long." msgstr "Yeni şifreniz en az 8 karakter uzunluğunda olmalıdır." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Siparişiniz" @@ -12509,7 +12596,7 @@ msgstr "Sipariş bilgileriniz güncellendi. Yeni e-posta adresine bir onay e-pos msgid "Your order has been cancelled" msgstr "Siparişiniz iptal edildi" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "Siparişiniz iptal edildi." @@ -12534,7 +12621,7 @@ msgstr "Organizatör adresiniz" msgid "Your password" msgstr "Şifreniz" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Ödemeniz işleniyor." @@ -12542,11 +12629,11 @@ msgstr "Ödemeniz işleniyor." msgid "Your payment is protected with bank-level encryption" msgstr "Ödemeniz banka düzeyinde şifreleme ile korunmaktadır" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Ödemeniz başarısız oldu, lütfen tekrar deneyin." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Ödemeniz başarısız oldu. Lütfen tekrar deneyin." @@ -12554,7 +12641,7 @@ msgstr "Ödemeniz başarısız oldu. Lütfen tekrar deneyin." msgid "Your Plan" msgstr "Planınız" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "İadeniz işleniyor." @@ -12570,19 +12657,19 @@ msgstr "Biletiniz" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "Biletiniz hâlâ geçerli — yeni saat size uymadıkça herhangi bir işlem yapmanıza gerek yok. Sorularınız varsa lütfen bu e-postayı yanıtlayın." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "Biletleriniz onaylandı." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "KDV numaranız doğrulama için sıraya alındı" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "KDV numaranız kaydettiğinizde doğrulanacak" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "Bekleme listesi teklifinizin süresi doldu ve siparişinizi tamamlayamadık. Daha fazla yer açıldığında bilgilendirilmek için lütfen bekleme listesine yeniden katılın." @@ -12590,19 +12677,19 @@ msgstr "Bekleme listesi teklifinizin süresi doldu ve siparişinizi tamamlayamad msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "Posta Kodu" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "Posta Kodu" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "Posta Kodu" diff --git a/frontend/src/locales/vi.js b/frontend/src/locales/vi.js index 329fccc0f3..c46aa15332 100644 --- a/frontend/src/locales/vi.js +++ b/frontend/src/locales/vi.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Chưa có gì để hiển thị'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>checked out thành công\"],\"KMgp2+\":[[\"0\"],\" Có sẵn\"],\"Pmr5xp\":[[\"0\"],\" đã tạo thành công\"],\"FImCSc\":[[\"0\"],\" cập nhật thành công\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"ngày\"],\" ngày, \",[\"giờ\"],\" giờ, \",[\"phút\"],\" phút và \",[\"giây\"],\" giây\"],\"f3RdEk\":[[\"giờ\"],\" giờ, \",[\"phút\"],\" phút và \",[\"giây\"],\" giây\"],\"fyE7Au\":[[\"phút\"],\" phút và \",[\"giây\"],\" giây\"],\"NlQ0cx\":[\"Sự kiện đầu tiên của \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0> Vui lòng nhập giá không bao gồm thuế và phí. <1> Thuế và phí có thể được thêm vào bên dưới. \",\"ZjMs6e\":\"<0> Số lượng sản phẩm có sẵn cho sản phẩm này <1> Giá trị này có thể được ghi đè nếu có giới hạn công suất <2>\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 phút và 0 giây\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Phố chính\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Trường nhập ngày. Hoàn hảo để hỏi ngày sinh, v.v.\",\"6euFZ/\":[\"Một mặc định \",[\"type\"],\" là tự động được áp dụng cho tất cả các sản phẩm mới. \"],\"SMUbbQ\":\"Đầu vào thả xuống chỉ cho phép một lựa chọn\",\"qv4bfj\":\"Một khoản phí, như phí đặt phòng hoặc phí dịch vụ\",\"POT0K/\":\"Một lượng cố định cho mỗi sản phẩm. Vd, $0.5 cho mỗi sản phẩm \",\"f4vJgj\":\"Đầu vào văn bản nhiều dòng\",\"OIPtI5\":\"Một tỷ lệ phần trăm của giá sản phẩm. \",\"ZthcdI\":\"Mã khuyến mãi không có giảm giá có thể được sử dụng để tiết lộ các sản phẩm ẩn.\",\"AG/qmQ\":\"Tùy chọn radio có nhiều tùy chọn nhưng chỉ có thể chọn một tùy chọn.\",\"h179TP\":\"Mô tả ngắn về sự kiện sẽ được hiển thị trong kết quả tìm kiếm và khi chia sẻ trên mạng xã hội. Theo mặc định, mô tả sự kiện sẽ được sử dụng.\",\"WKMnh4\":\"Một đầu vào văn bản dòng duy nhất\",\"BHZbFy\":\"Một câu hỏi duy nhất cho mỗi đơn hàng. Ví dụ: Địa chỉ giao hàng của bạn là gì?\",\"Fuh+dI\":\"Một câu hỏi duy nhất cho mỗi sản phẩm. Ví dụ: Kích thước áo thun của bạn là gì?\",\"RlJmQg\":\"Thuế tiêu chuẩn, như VAT hoặc GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Chấp nhận chuyển khoản ngân hàng, séc hoặc các phương thức thanh toán offline khác\",\"hrvLf4\":\"Chấp nhận thanh toán thẻ tín dụng với Stripe\",\"bfXQ+N\":\"Chấp nhận lời mời\",\"AeXO77\":\"Tài khoản\",\"lkNdiH\":\"Tên tài khoản\",\"Puv7+X\":\"Cài đặt tài khoản\",\"OmylXO\":\"Tài khoản được cập nhật thành công\",\"7L01XJ\":\"Hành động\",\"FQBaXG\":\"Kích hoạt\",\"5T2HxQ\":\"Ngày kích hoạt\",\"F6pfE9\":\"Hoạt động\",\"/PN1DA\":\"Thêm mô tả cho danh sách check-in này\",\"0/vPdA\":\"Thêm bất kỳ ghi chú nào về người tham dự. Những ghi chú này sẽ không hiển thị cho người tham dự.\",\"Or1CPR\":\"Thêm bất kỳ ghi chú nào về người tham dự ...\",\"l3sZO1\":\"Thêm bất kỳ ghi chú nào về đơn hàng. Những ghi chú này sẽ không hiển thị cho khách hàng.\",\"xMekgu\":\"Thêm bất kỳ ghi chú nào về đơn hàng ...\",\"PGPGsL\":\"Thêm mô tả\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Thêm hướng dẫn thanh toán offline (ví dụ: chi tiết chuyển khoản ngân hàng, nơi gửi séc, thời hạn thanh toán)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Thêm mới\",\"TZxnm8\":\"Thêm tùy chọn\",\"24l4x6\":\"Thêm sản phẩm\",\"8q0EdE\":\"Thêm sản phẩm vào danh mục\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Thêm thuế hoặc phí\",\"goOKRY\":\"Thêm tầng\",\"oZW/gT\":\"Thêm vào lịch\",\"pn5qSs\":\"Thông tin bổ sung\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Địa chỉ\",\"NY/x1b\":\"Dòng địa chỉ 1\",\"POdIrN\":\"Dòng địa chỉ 1\",\"cormHa\":\"Dòng địa chỉ 2\",\"gwk5gg\":\"Dòng địa chỉ 2\",\"U3pytU\":\"Quản trị viên\",\"HLDaLi\":\"Người dùng quản trị có quyền truy cập đầy đủ vào các sự kiện và cài đặt tài khoản.\",\"W7AfhC\":\"Tất cả những người tham dự sự kiện này\",\"cde2hc\":\"Tất cả các sản phẩm\",\"5CQ+r0\":\"Cho phép người tham dự liên kết với đơn hàng chưa thanh toán được check-in\",\"ipYKgM\":\"Cho phép công cụ tìm kiếm lập chỉ mục\",\"LRbt6D\":\"Cho phép các công cụ tìm kiếm lập chỉ mục cho sự kiện này\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Tuyệt vời, sự kiện, từ khóa ...\",\"hehnjM\":\"Số tiền\",\"R2O9Rg\":[\"Số tiền đã trả (\",[\"0\"],\")\"],\"V7MwOy\":\"Đã xảy ra lỗi trong khi tải trang\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Đã xảy ra lỗi không mong muốn.\",\"byKna+\":\"Đã xảy ra lỗi không mong muốn. Vui lòng thử lại.\",\"ubdMGz\":\"Mọi thắc mắc từ chủ sở hữu sản phẩm sẽ được gửi đến địa chỉ email này. Địa chỉ này cũng sẽ được sử dụng làm địa chỉ \\\"trả lời\\\" cho tất cả email gửi từ sự kiện này.\",\"aAIQg2\":\"Giao diện\",\"Ym1gnK\":\"đã được áp dụng\",\"sy6fss\":[\"Áp dụng cho các sản phẩm \",[\"0\"]],\"kadJKg\":\"Áp dụng cho 1 sản phẩm\",\"DB8zMK\":\"Áp dụng\",\"GctSSm\":\"Áp dụng mã khuyến mãi\",\"ARBThj\":[\"Áp dụng \",[\"type\"],\" này cho tất cả các sản phẩm mới\"],\"S0ctOE\":\"Lưu trữ sự kiện\",\"TdfEV7\":\"Lưu trữ\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Bạn có chắc mình muốn kích hoạt người tham dự này không?\",\"TvkW9+\":\"Bạn có chắc mình muốn lưu trữ sự kiện này không?\",\"/CV2x+\":\"Bạn có chắc mình muốn hủy người tham dự này không? Điều này sẽ làm mất hiệu lực vé của họ\",\"YgRSEE\":\"Bạn có chắc là bạn muốn xóa mã khuyến mãi này không?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Bạn có chắc chắn muốn chuyển sự kiện này thành bản nháp không? Điều này sẽ làm cho sự kiện không hiển thị với công chúng.\",\"mEHQ8I\":\"Bạn có chắc mình muốn công khai sự kiện này không? \",\"s4JozW\":\"Bạn có chắc chắn muốn khôi phục sự kiện này không? Sự kiện sẽ được khôi phục dưới dạng bản nháp.\",\"vJuISq\":\"Bạn có chắc chắn muốn xóa phân bổ sức chứa này không?\",\"baHeCz\":\"Bạn có chắc là bạn muốn xóa danh sách tham dự này không?\",\"LBLOqH\":\"Hỏi một lần cho mỗi đơn hàng\",\"wu98dY\":\"Hỏi một lần cho mỗi sản phẩm\",\"ss9PbX\":\"Người tham dự\",\"m0CFV2\":\"Chi tiết người tham dự\",\"QKim6l\":\"Không tìm thấy người tham dự\",\"R5IT/I\":\"Ghi chú của người tham dự\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Vé tham dự\",\"9SZT4E\":\"Người tham dự\",\"iPBfZP\":\"Người tham dự đã đăng ký\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Tự động thay đổi kích thước\",\"vZ5qKF\":\"Tự động thay đổi chiều cao widget dựa trên nội dung. Khi tắt, widget sẽ lấp đầy chiều cao của container.\",\"4lVaWA\":\"Đang chờ thanh toán offline\",\"2rHwhl\":\"Đang chờ thanh toán offline\",\"3wF4Q/\":\"Đang chờ thanh toán\",\"ioG+xt\":\"Đang chờ thanh toán\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Nhà tổ chức tuyệt vời Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Trở lại trang sự kiện\",\"VCoEm+\":\"Quay lại đăng nhập\",\"k1bLf+\":\"Màu nền\",\"I7xjqg\":\"Loại nền\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Địa chỉ thanh toán\",\"/xC/im\":\"Cài đặt thanh toán\",\"rp/zaT\":\"Tiếng Bồ Đào Nha Brazil\",\"whqocw\":\"Bằng cách đăng ký, bạn đồng ý với các <0>Điều khoản dịch vụ của chúng tôi và <1>Chính sách bảo mật.\",\"bcCn6r\":\"Loại tính toán\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Hủy\",\"Gjt/py\":\"Hủy thay đổi email\",\"tVJk4q\":\"Hủy đơn hàng\",\"Os6n2a\":\"Hủy đơn hàng\",\"Mz7Ygx\":[\"Hủy đơn hàng \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Hủy bỏ\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Công suất\",\"V6Q5RZ\":\"Phân bổ sức chứa được tạo thành công\",\"k5p8dz\":\"Phân bổ sức chứa đã được xóa thành công\",\"nDBs04\":\"Quản lý sức chứa\",\"ddha3c\":\"Danh mục giúp bạn nhóm các sản phẩm lại với nhau. Ví dụ, bạn có thể có một danh mục cho \\\"Vé\\\" và một danh mục khác cho \\\"Hàng hóa\\\".\",\"iS0wAT\":\"Danh mục giúp bạn sắp xếp sản phẩm của mình. Tiêu đề này sẽ được hiển thị trên trang sự kiện công khai.\",\"eorM7z\":\"Danh mục đã được sắp xếp lại thành công.\",\"3EXqwa\":\"Danh mục được tạo thành công\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Thay đổi mật khẩu\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Check-in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Check-in và đánh dấu đơn hàng đã thanh toán\",\"QYLpB4\":\"Chỉ check-in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Xác nhận rời khỏi sự kiện này!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Danh sách check-in đã bị xóa thành công\",\"+hBhWk\":\"Danh sách check-in đã hết hạn\",\"mBsBHq\":\"Danh sách check-in không hoạt động\",\"vPqpQG\":\"Danh sách Check-In không tồn tại\",\"tejfAy\":\"Danh sách Check-In\",\"hD1ocH\":\"URL check-in đã được sao chép vào clipboard\",\"CNafaC\":\"Tùy chọn checkbox cho phép chọn nhiều mục\",\"SpabVf\":\"Checkbox\",\"CRu4lK\":\"Đã check-in\",\"znIg+z\":\"Thanh toán\",\"1WnhCL\":\"Cài đặt thanh toán\",\"6imsQS\":\"Trung Quốc (đơn giản hóa)\",\"JjkX4+\":\"Chọn một màu cho nền của bạn\",\"/Jizh9\":\"Chọn một tài khoản\",\"3wV73y\":\"Thành phố\",\"FG98gC\":\"Xoá văn bản tìm kiếm\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Bấm để sao chép\",\"yz7wBu\":\"Đóng\",\"62Ciis\":\"Đóng thanh bên\",\"EWPtMO\":\"Mã\",\"ercTDX\":\"Mã phải dài từ 3 đến 50 ký tự\",\"oqr9HB\":\"Thu gọn sản phẩm này khi trang sự kiện ban đầu được tải\",\"jZlrte\":\"Màu sắc\",\"Vd+LC3\":\"Màu sắc phải là mã màu hex hợp lệ. Ví dụ: #ffffff\",\"1HfW/F\":\"Màu sắc\",\"VZeG/A\":\"Sắp ra mắt\",\"yPI7n9\":\"Các từ khóa mô tả sự kiện, được phân tách bằng dấu phẩy. Chúng sẽ được công cụ tìm kiếm sử dụng để phân loại và lập chỉ mục sự kiện.\",\"NPZqBL\":\"Hoàn tất đơn hàng\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Hoàn tất thanh toán\",\"qqWcBV\":\"Hoàn thành\",\"6HK5Ct\":\"Đơn hàng đã hoàn thành\",\"NWVRtl\":\"Đơn hàng đã hoàn thành\",\"DwF9eH\":\"Mã component\",\"Tf55h7\":\"Giảm giá đã cấu hình\",\"7VpPHA\":\"Xác nhận\",\"ZaEJZM\":\"Xác nhận thay đổi email\",\"yjkELF\":\"Xác nhận mật khẩu mới\",\"xnWESi\":\"Xác nhận mật khẩu\",\"p2/GCq\":\"Xác nhận mật khẩu\",\"wnDgGj\":\"Đang xác nhận địa chỉ email...\",\"pbAk7a\":\"Kết nối Stripe\",\"UMGQOh\":\"Kết nối với Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Chi tiết kết nối\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Tiếp tục\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Văn bản nút Tiếp tục\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Đã Sao chép\",\"T5rdis\":\"Sao chép vào bộ nhớ tạm\",\"he3ygx\":\"Sao chép\",\"r2B2P8\":\"Sao chép URL check-in\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Sao chép Link\",\"E6nRW7\":\"Sao chép URL\",\"JNCzPW\":\"Quốc gia\",\"IF7RiR\":\"Bìa\",\"hYgDIe\":\"Tạo\",\"b9XOHo\":[\"Tạo \",[\"0\"]],\"k9RiLi\":\"Tạo một sản phẩm\",\"6kdXbW\":\"Tạo mã khuyến mãi\",\"n5pRtF\":\"Tạo một vé\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"Tạo một tổ chức\",\"ipP6Ue\":\"Tạo người tham dự\",\"VwdqVy\":\"Tạo phân bổ sức chứa\",\"EwoMtl\":\"Tạo thể loại\",\"XletzW\":\"Tạo thể loại\",\"WVbTwK\":\"Tạo danh sách check-in\",\"uN355O\":\"Tạo sự kiện\",\"BOqY23\":\"Tạo mới\",\"kpJAeS\":\"Tạo tổ chức\",\"a0EjD+\":\"Tạo sản phẩm\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Tạo mã khuyến mãi\",\"B3Mkdt\":\"Tạo câu hỏi\",\"UKfi21\":\"Tạo thuế hoặc phí\",\"d+F6q9\":\"Đã tạo\",\"Q2lUR2\":\"Tiền tệ\",\"DCKkhU\":\"Mật khẩu hiện tại\",\"uIElGP\":\"URL bản đồ tùy chỉnh\",\"UEqXyt\":\"Phạm vi tùy chỉnh\",\"876pfE\":\"Khách hàng\",\"QOg2Sf\":\"Tùy chỉnh cài đặt email và thông báo cho sự kiện này\",\"Y9Z/vP\":\"Tùy chỉnh trang chủ sự kiện và tin nhắn thanh toán\",\"2E2O5H\":\"Tùy chỉnh các cài đặt linh tinh cho sự kiện này\",\"iJhSxe\":\"Tùy chỉnh cài đặt SEO cho sự kiện này\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Vùng nguy hiểm\",\"ZQKLI1\":\"Vùng nguy hiểm\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Ngày\",\"JvUngl\":\"Ngày và giờ\",\"JJhRbH\":\"Sức chứa ngày đầu tiên\",\"cnGeoo\":\"Xóa\",\"jRJZxD\":\"Xóa sức chứa\",\"VskHIx\":\"Xóa danh mục\",\"Qrc8RZ\":\"Xóa danh sách check-in\",\"WHf154\":\"Xóa mã\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Mô tả\",\"YC3oXa\":\"Mô tả cho nhân viên làm thủ tục check-in\",\"URmyfc\":\"Chi tiết\",\"1lRT3t\":\"Vô hiệu hóa sức chứa này sẽ theo dõi doanh số nhưng không dừng bán khi đạt giới hạn\",\"H6Ma8Z\":\"Giảm giá\",\"ypJ62C\":\"Giảm giá %\",\"3LtiBI\":[\"Giảm giá trong \",[\"0\"]],\"C8JLas\":\"Loại giảm giá\",\"1QfxQT\":\"Đóng\",\"DZlSLn\":\"Nhãn tài liệu\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Sản phẩm quyên góp / Trả số tiền bạn muốn\",\"OvNbls\":\"Tải xuống .ics\",\"kodV18\":\"Tải xuống CSV\",\"CELKku\":\"Tải xuống hóa đơn\",\"LQrXcu\":\"Tải xuống hóa đơn\",\"QIodqd\":\"Tải về mã QR\",\"yhjU+j\":\"Tải xuống hóa đơn\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Lựa chọn thả xuống\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Nhân bản sự kiện\",\"3ogkAk\":\"Nhân bản sự kiện\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Tùy chọn nhân bản\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Ưu đãi sớm\",\"ePK91l\":\"Chỉnh sửa\",\"N6j2JH\":[\"chỉnh sửa \",[\"0\"]],\"kBkYSa\":\"Chỉnh sửa công suất\",\"oHE9JT\":\"Chỉnh sửa phân bổ sức chứa\",\"j1Jl7s\":\"Chỉnh sửa danh mục\",\"FU1gvP\":\"Chỉnh sửa danh sách check-in\",\"iFgaVN\":\"Chỉnh sửa mã\",\"jrBSO1\":\"Chỉnh sửa tổ chức\",\"tdD/QN\":\"Chỉnh sửa sản phẩm\",\"n143Tq\":\"Chỉnh sửa danh mục sản phẩm\",\"9BdS63\":\"Chỉnh sửa mã khuyến mãi\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Chỉnh sửa câu hỏi\",\"poTr35\":\"Chỉnh sửa người dùng\",\"GTOcxw\":\"Chỉnh sửa người dùng\",\"pqFrv2\":\"ví dụ: 2.50 cho $2.50\",\"3yiej1\":\"ví dụ: 23.5 cho 23.5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Cài đặt email & thông báo\",\"ATGYL1\":\"Địa chỉ email\",\"hzKQCy\":\"Địa chỉ Email\",\"HqP6Qf\":\"Hủy thay đổi email thành công\",\"mISwW1\":\"Thay đổi email đang chờ xử lý\",\"APuxIE\":\"Xác nhận email đã được gửi lại\",\"YaCgdO\":\"Xác nhận email đã được gửi lại thành công\",\"jyt+cx\":\"Thông điệp chân trang email\",\"I6F3cp\":\"Email không được xác minh\",\"NTZ/NX\":\"Mã nhúng\",\"4rnJq4\":\"Script nhúng\",\"8oPbg1\":\"Bật hóa đơn\",\"j6w7d/\":\"Cho phép khả năng này dừng bán sản phẩm khi đạt đến giới hạn\",\"VFv2ZC\":\"Ngày kết thúc\",\"237hSL\":\"Kết thúc\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Tiếng Anh\",\"MhVoma\":\"Nhập một số tiền không bao gồm thuế và phí.\",\"SlfejT\":\"Lỗi\",\"3Z223G\":\"Lỗi xác nhận địa chỉ email\",\"a6gga1\":\"Lỗi xác nhận thay đổi email\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Sự kiện\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Ngày sự kiện\",\"0Zptey\":\"Mặc định sự kiện\",\"QcCPs8\":\"Chi tiết sự kiện\",\"6fuA9p\":\"Sự kiện nhân đôi thành công\",\"AEuj2m\":\"Trang chủ sự kiện\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Vị trí sự kiện & địa điểm tổ chức\",\"OopDbA\":\"Event page\",\"4/If97\":\"Cập nhật trạng thái sự kiện thất bại. Vui lòng thử lại sau\",\"btxLWj\":\"Trạng thái sự kiện đã được cập nhật\",\"nMU2d3\":\"URL sự kiện\",\"tst44n\":\"Sự kiện\",\"sZg7s1\":\"Ngày hết hạn\",\"KnN1Tu\":\"Hết hạn\",\"uaSvqt\":\"Ngày hết hạn\",\"GS+Mus\":\"Xuất\",\"9xAp/j\":\"Không thể hủy người tham dự\",\"ZpieFv\":\"Không thể hủy đơn hàng\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Không thể tải hóa đơn. Vui lòng thử lại.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Không thể tải danh sách check-in\",\"ZQ15eN\":\"Không thể gửi lại email vé\",\"ejXy+D\":\"Không thể sắp xếp sản phẩm\",\"PLUB/s\":\"Phí\",\"/mfICu\":\"Các khoản phí\",\"LyFC7X\":\"Lọc đơn hàng\",\"cSev+j\":\"Bộ lọc\",\"CVw2MU\":[\"Bộ lọc (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Số hóa đơn đầu tiên\",\"V1EGGU\":\"Tên\",\"kODvZJ\":\"Tên\",\"S+tm06\":\"Tên của bạn phải nằm trong khoảng từ 1 đến 50 ký tự\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Được sử dụng lần đầu tiên\",\"TpqW74\":\"Đã sửa\",\"irpUxR\":\"Số tiền cố định\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Quên mật khẩu?\",\"2POOFK\":\"Miễn phí\",\"P/OAYJ\":\"Sản phẩm miễn phí\",\"vAbVy9\":\"Sản phẩm miễn phí, không cần thông tin thanh toán\",\"nLC6tu\":\"Tiếng Pháp\",\"Weq9zb\":\"Chung\",\"DDcvSo\":\"Tiếng Đức\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Quay trở lại hồ sơ\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Lịch Google\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Tổng doanh số\",\"yRg26W\":\"Doanh thu gộp\",\"R4r4XO\":\"Người được mời\",\"26pGvx\":\"Nhập mã khuyến mãi?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Đây là ví dụ về cách bạn có thể sử dụng component trong ứng dụng của bạn.\",\"Y1SSqh\":\"Đây là component React bạn có thể sử dụng để nhúng widget vào ứng dụng của bạn.\",\"QuhVpV\":[\"Chào \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Ẩn khỏi chế độ xem công khai\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Các câu hỏi ẩn chỉ hiển thị cho người tổ chức sự kiện chứ không phải cho khách hàng.\",\"vLyv1R\":\"Ẩn\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"ẩn sản phẩm sau ngày kết thúc bán\",\"06s3w3\":\"ẩn sản phẩm trước ngày bắt đầu bán\",\"axVMjA\":\"ẩn sản phẩm trừ khi người dùng có mã khuyến mãi áp dụng\",\"ySQGHV\":\"Ẩn sản phẩm khi bán hết\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Ẩn sản phẩm này khỏi khách hàng\",\"Da29Y6\":\"Ẩn câu hỏi này\",\"fvDQhr\":\"Ẩn tầng này khỏi người dùng\",\"lNipG+\":\"Việc ẩn một sản phẩm sẽ ngăn người dùng xem nó trên trang sự kiện.\",\"ZOBwQn\":\"Thiết kế trang sự kiện\",\"PRuBTd\":\"Thiết kế trang chủ\",\"YjVNGZ\":\"Xem trước trang chủ\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Khách hàng phải hoàn thành đơn đơn hàng bao nhiêu phút. \",\"ySxKZe\":\"Mã này có thể được sử dụng bao nhiêu lần?\",\"dZsDbK\":[\"Vượt quá giới hạn ký tự HTML: \",[\"htmllesth\"],\"/\",[\"maxlength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Tôi đồng ý với <0>các điều khoản và điều kiện\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Nếu được bật, nhân viên check-in có thể đánh dấu người tham dự đã check-in hoặc đánh dấu đơn hàng đã thanh toán và check-in người tham dự. Nếu tắt, những người tham dự liên kết với đơn hàng chưa thanh toán sẽ không thể check-in.\",\"muXhGi\":\"Nếu được bật, người tổ chức sẽ nhận được thông báo email khi có đơn hàng mới\",\"6fLyj/\":\"Nếu bạn không yêu cầu thay đổi này, vui lòng thay đổi ngay mật khẩu của bạn.\",\"n/ZDCz\":\"Hình ảnh đã xóa thành công\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Hình ảnh được tải lên thành công\",\"VyUuZb\":\"URL hình ảnh\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Không hoạt động\",\"T0K0yl\":\"Người dùng không hoạt động không thể đăng nhập.\",\"kO44sp\":\"Bao gồm thông tin kết nối cho sự kiện trực tuyến của bạn. Những chi tiết này sẽ được hiển thị trên trang tóm tắt đơn hàng và trang vé của người tham dự.\",\"FlQKnG\":\"Bao gồm thuế và phí trong giá\",\"Vi+BiW\":[\"Bao gồm các sản phẩm \",[\"0\"]],\"lpm0+y\":\"Bao gồm 1 sản phẩm\",\"UiAk5P\":\"Chèn hình ảnh\",\"OyLdaz\":\"Lời mời đã được gửi lại!\",\"HE6KcK\":\"Lời mời bị thu hồi!\",\"SQKPvQ\":\"Mời người dùng\",\"bKOYkd\":\"Hóa đơn được tải xuống thành công\",\"alD1+n\":\"Ghi chú hóa đơn\",\"kOtCs2\":\"Đánh số hóa đơn\",\"UZ2GSZ\":\"Cài đặt hóa đơn\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Mục\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Nhãn\",\"vXIe7J\":\"Ngôn ngữ\",\"2LMsOq\":\"12 tháng qua\",\"vfe90m\":\"14 ngày qua\",\"aK4uBd\":\"24 giờ qua\",\"uq2BmQ\":\"30 ngày qua\",\"bB6Ram\":\"48 giờ qua\",\"VlnB7s\":\"6 tháng qua\",\"ct2SYD\":\"7 ngày qua\",\"XgOuA7\":\"90 ngày qua\",\"I3yitW\":\"Đăng nhập cuối cùng\",\"1ZaQUH\":\"Họ\",\"UXBCwc\":\"Họ\",\"tKCBU0\":\"Được sử dụng lần cuối\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Để trống để sử dụng từ mặc định \\\"Hóa đơn\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Đang tải ...\",\"wJijgU\":\"Vị trí\",\"sQia9P\":\"Đăng nhập\",\"zUDyah\":\"Đăng nhập\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Đăng xuất\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Bắt buộc nhập địa chỉ thanh toán, trong khi thanh toán\",\"MU3ijv\":\"Làm cho câu hỏi này bắt buộc\",\"wckWOP\":\"Quản lý\",\"onpJrA\":\"Quản lý người tham dự\",\"n4SpU5\":\"Quản lý sự kiện\",\"WVgSTy\":\"Quản lý đơn hàng\",\"1MAvUY\":\"Quản lý cài đặt thanh toán và lập hóa đơn cho sự kiện này.\",\"cQrNR3\":\"Quản lý hồ sơ\",\"AtXtSw\":\"Quản lý thuế và phí có thể được áp dụng cho sản phẩm của bạn\",\"ophZVW\":\"Quản lý Vé\",\"DdHfeW\":\"Quản lý chi tiết tài khoản của bạn và cài đặt mặc định\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Quản lý người dùng của bạn và quyền của họ\",\"1m+YT2\":\"Các câu hỏi bắt buộc phải được trả lời trước khi khách hàng có thể thanh toán.\",\"Dim4LO\":\"Thêm một người tham dự theo cách thủ công\",\"e4KdjJ\":\"Thêm người tham dự\",\"vFjEnF\":\"Đánh dấu đã trả tiền\",\"g9dPPQ\":\"Tối đa mỗi đơn hàng\",\"l5OcwO\":\"Tin nhắn cho người tham dự\",\"Gv5AMu\":\"Tin nhắn cho người tham dự\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Tin nhắn cho người mua\",\"tNZzFb\":\"Nội dung tin nhắn\",\"lYDV/s\":\"Tin nhắn cho những người tham dự cá nhân\",\"V7DYWd\":\"Tin nhắn được gửi\",\"t7TeQU\":\"Tin nhắn\",\"xFRMlO\":\"Tối thiểu cho mỗi đơn hàng\",\"QYcUEf\":\"Giá tối thiểu\",\"RDie0n\":\"Linh tinh\",\"mYLhkl\":\"Cài đặt linh tinh\",\"KYveV8\":\"Hộp văn bản đa dòng\",\"VD0iA7\":\"Nhiều tùy chọn giá. Hoàn hảo cho sản phẩm giảm giá sớm, v.v.\",\"/bhMdO\":\"Mô tả sự kiện tuyệt vời của tôi ...\",\"vX8/tc\":\"Tiêu đề sự kiện tuyệt vời của tôi ...\",\"hKtWk2\":\"Hồ sơ của tôi\",\"fj5byd\":\"Không áp dụng\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Tên\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Đi tới người tham dự\",\"qqeAJM\":\"Không bao giờ\",\"7vhWI8\":\"Mật khẩu mới\",\"1UzENP\":\"Không\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Không có sự kiện lưu trữ để hiển thị.\",\"q2LEDV\":\"Không có người tham dự tìm thấy cho đơn hàng này.\",\"zlHa5R\":\"Không có người tham dự đã được thêm vào đơn hàng này.\",\"Wjz5KP\":\"Không có người tham dự để hiển thị\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Không có phân bổ sức chứa\",\"a/gMx2\":\"Không có danh sách check-in\",\"tMFDem\":\"Không có dữ liệu có sẵn\",\"6Z/F61\":\"Không có dữ liệu để hiển thị. Vui lòng chọn khoảng thời gian\",\"fFeCKc\":\"Không giảm giá\",\"HFucK5\":\"Không có sự kiện đã kết thúc để hiển thị.\",\"yAlJXG\":\"Không có sự kiện nào hiển thị\",\"GqvPcv\":\"Không có bộ lọc có sẵn\",\"KPWxKD\":\"Không có tin nhắn nào hiển thị\",\"J2LkP8\":\"Không có đơn hàng nào để hiển thị\",\"RBXXtB\":\"Hiện không có phương thức thanh toán. Vui lòng liên hệ ban tổ chức sự kiện để được hỗ trợ.\",\"ZWEfBE\":\"Không cần thanh toán\",\"ZPoHOn\":\"Không có sản phẩm liên quan đến người tham dự này.\",\"Ya1JhR\":\"Không có sản phẩm có sẵn trong danh mục này.\",\"FTfObB\":\"Chưa có sản phẩm\",\"+Y976X\":\"Không có mã khuyến mãi để hiển thị\",\"MAavyl\":\"Không có câu hỏi nào được trả lời bởi người tham dự này.\",\"SnlQeq\":\"Không có câu hỏi nào được hỏi cho đơn hàng này.\",\"Ev2r9A\":\"Không có kết quả\",\"gk5uwN\":\"Không có kết quả tìm kiếm\",\"RHyZUL\":\"Không có kết quả tìm kiếm.\",\"RY2eP1\":\"Không có thuế hoặc phí đã được thêm vào.\",\"EdQY6l\":\"Không\",\"OJx3wK\":\"Không có sẵn\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Ghi chú\",\"jtrY3S\":\"Chưa có gì để hiển thị\",\"hFwWnI\":\"Cài đặt thông báo\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Thông báo cho ban tổ chức các đơn hàng mới\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Số ngày quá hạn thanh toán (để trống để bỏ qua các điều khoản thanh toán từ hóa đơn)\",\"n86jmj\":\"Tiền tố số\",\"mwe+2z\":\"Các đơn hàng ngoại tuyến không được phản ánh trong thống kê sự kiện cho đến khi đơn hàng được đánh dấu là được thanh toán.\",\"dWBrJX\":\"Thanh toán offline không thành công. Vui lòng thử loại hoặc liên hệ với ban tổ chức sự kiện.\",\"fcnqjw\":\"Hướng Dẫn Thanh Toán Offline\",\"+eZ7dp\":\"Thanh toán offline\",\"ojDQlR\":\"Thông tin thanh toán offline\",\"u5oO/W\":\"Cài đặt thanh toán offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"Đang Bán\",\"Ug4SfW\":\"Khi bạn tạo một sự kiện, bạn sẽ thấy nó ở đây.\",\"ZxnK5C\":\"Khi bạn bắt đầu thu thập dữ liệu, bạn sẽ thấy nó ở đây.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Đang diễn ra\",\"z+nuVJ\":\"Sự kiện trực tuyến\",\"WKHW0N\":\"Chi tiết sự kiện trực tuyến\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Mở Trang Check-In\",\"OdnLE4\":\"Mở thanh bên\",\"ZZEYpT\":[\"Tùy chọn \",[\"i\"]],\"oPknTP\":\"Thông tin bổ sung tùy chọn xuất hiện trên tất cả các hóa đơn (ví dụ: điều khoản thanh toán, phí thanh toán trễ, chính sách trả lại)\",\"OrXJBY\":\"Tiền tố tùy chọn cho số hóa đơn (ví dụ: Inv-)\",\"0zpgxV\":\"Tùy chọn\",\"BzEFor\":\"Hoặc\",\"UYUgdb\":\"Đơn hàng\",\"mm+eaX\":\"Đơn hàng #\",\"B3gPuX\":\"Đơn hàng bị hủy\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Ngày đơn hàng\",\"Tol4BF\":\"Chi tiết đơn hàng\",\"WbImlQ\":\"Đơn hàng đã bị hủy và chủ sở hữu đơn hàng đã được thông báo.\",\"nAn4Oe\":\"Đơn hàng được đánh dấu là đã thanh toán\",\"uzEfRz\":\"Ghi chú đơn hàng\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Mã đơn hàng\",\"acIJ41\":\"Trạng thái đơn hàng\",\"GX6dZv\":\"Tóm tắt đơn hàng\",\"tDTq0D\":\"Thời gian chờ đơn hàng\",\"1h+RBg\":\"Đơn hàng\",\"3y+V4p\":\"Địa chỉ tổ chức\",\"GVcaW6\":\"Chi tiết tổ chức\",\"nfnm9D\":\"Tên tổ chức\",\"G5RhpL\":\"Người tổ chức\",\"mYygCM\":\"Người tổ chức là bắt buộc\",\"Pa6G7v\":\"Tên ban tổ chức\",\"l894xP\":\"Ban tổ chức chỉ có thể quản lý các sự kiện và sản phẩm. Họ không thể quản lý người dùng, tài khoản hoặc thông tin thanh toán.\",\"fdjq4c\":\"Khoảng cách\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Không tìm thấy trang\",\"QbrUIo\":\"Lượt xem trang\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"đã trả tiền\",\"HVW65c\":\"Sản phẩm trả phí\",\"ZfxaB4\":\"Hoàn lại tiền một phần\",\"8ZsakT\":\"Mật khẩu\",\"TUJAyx\":\"Mật khẩu phải tối thiểu 8 ký tự\",\"vwGkYB\":\"Mật khẩu phải có ít nhất 8 ký tự\",\"BLTZ42\":\"Đặt lại mật khẩu thành công. Vui lòng sử dụng mật khẩu mới để đăng nhập.\",\"f7SUun\":\"Mật khẩu không giống nhau\",\"aEDp5C\":\"Dán mã này vào nơi bạn muốn widget xuất hiện.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Thanh toán\",\"Lg+ewC\":\"Thanh toán & Hoá đơn\",\"DZjk8u\":\"Cài đặt Thanh toán & Hoá đơn\",\"lflimf\":\"Thời hạn thanh toán\",\"JhtZAK\":\"Thanh toán thất bại\",\"JEdsvQ\":\"Hướng dẫn thanh toán\",\"bLB3MJ\":\"Phương thức thanh toán\",\"QzmQBG\":\"Nhà cung cấp Thanh toán\",\"lsxOPC\":\"Thanh toán đã nhận\",\"wJTzyi\":\"Tình trạng thanh toán\",\"xgav5v\":\"Thanh toán thành công!\",\"R29lO5\":\"Điều khoản thanh toán\",\"/roQKz\":\"Tỷ lệ phần trăm\",\"vPJ1FI\":\"Tỷ lệ phần trăm\",\"xdA9ud\":\"Đặt mã này vào của trang web của bạn.\",\"blK94r\":\"Vui lòng thêm ít nhất một tùy chọn\",\"FJ9Yat\":\"Vui lòng kiểm tra thông tin được cung cấp là chính xác\",\"TkQVup\":\"Vui lòng kiểm tra email và mật khẩu của bạn và thử lại\",\"sMiGXD\":\"Vui lòng kiểm tra email của bạn là hợp lệ\",\"Ajavq0\":\"Vui lòng kiểm tra email của bạn để xác nhận địa chỉ email của bạn\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Vui lòng tiếp tục trong tab mới\",\"hcX103\":\"Vui lòng tạo một sản phẩm\",\"cdR8d6\":\"Vui lòng tạo vé\",\"x2mjl4\":\"Vui lòng nhập URL hình ảnh hợp lệ trỏ đến một hình ảnh.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Xin lưu ý\",\"C63rRe\":\"Vui lòng quay lại trang sự kiện để bắt đầu lại.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Vui lòng chọn ít nhất một sản phẩm\",\"igBrCH\":\"Vui lòng xác minh địa chỉ email của bạn để truy cập tất cả các tính năng\",\"/IzmnP\":\"Vui lòng đợi trong khi chúng tôi chuẩn bị hóa đơn của bạn ...\",\"MOERNx\":\"Tiếng Bồ Đào Nha\",\"qCJyMx\":\"Tin nhắn sau phần thanh toán\",\"g2UNkE\":\"Được cung cấp bởi\",\"Rs7IQv\":\"Thông báo trước khi thanh toán\",\"rdUucN\":\"Xem trước\",\"a7u1N9\":\"Giá\",\"CmoB9j\":\"Chế độ hiển thị giá\",\"BI7D9d\":\"Giá không được đặt\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Loại giá\",\"6RmHKN\":\"Màu chính\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Màu chữ chính\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"In tất cả vé\",\"DKwDdj\":\"In vé\",\"K47k8R\":\"Sản phẩm\",\"1JwlHk\":\"Danh mục sản phẩm\",\"U61sAj\":\"Danh mục sản phẩm được cập nhật thành công.\",\"1USFWA\":\"Sản phẩm đã xóa thành công\",\"4Y2FZT\":\"Loại giá sản phẩm\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Bán Hàng\",\"U/R4Ng\":\"Cấp sản phẩm\",\"sJsr1h\":\"Loại sản phẩm\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Sản phẩm(s)\",\"N0qXpE\":\"Sản phẩm\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Sản phẩm đã bán\",\"/u4DIx\":\"Sản phẩm đã bán\",\"DJQEZc\":\"Sản phẩm được sắp xếp thành công\",\"vERlcd\":\"Hồ sơ\",\"kUlL8W\":\"Hồ sơ cập nhật thành công\",\"cl5WYc\":[\"Mã \",[\"Promo_code\"],\" đã được áp dụng\"],\"P5sgAk\":\"Mã khuyến mãi\",\"yKWfjC\":\"Trang mã khuyến mãi\",\"RVb8Fo\":\"Mã khuyến mãi\",\"BZ9GWa\":\"Mã khuyến mãi có thể được sử dụng để giảm giá, truy cập bán trước hoặc cung cấp quyền truy cập đặc biệt vào sự kiện của bạn.\",\"OP094m\":\"Báo cáo mã khuyến mãi\",\"4kyDD5\":\"Cung cấp ngữ cảnh hoặc hướng dẫn bổ sung cho câu hỏi này. Sử dụng trường này để thêm điều khoản\\nvà điều kiện, hướng dẫn, hoặc bất kỳ thông tin quan trọng nào mà người tham dự cần biết trước khi trả lời.\",\"toutGW\":\"Mã QR\",\"LkMOWF\":\"Số lượng có sẵn\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Đã xóa câu hỏi\",\"avf0gk\":\"Mô tả câu hỏi\",\"oQvMPn\":\"Tiêu đề câu hỏi\",\"enzGAL\":\"Câu hỏi\",\"ROv2ZT\":\"Câu hỏi\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Tùy chọn radio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Người nhận\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Hoàn tiền không thành công\",\"n10yGu\":\"Lệnh hoàn trả\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Hoàn tiền chờ xử lý\",\"xHpVRl\":\"Trạng thái hoàn trả\",\"/BI0y9\":\"Đã hoàn lại\",\"fgLNSM\":\"Đăng ký\",\"9+8Vez\":\"Sử dụng còn lại\",\"tasfos\":\"Loại bỏ\",\"t/YqKh\":\"Hủy bỏ\",\"t9yxlZ\":\"Báo cáo\",\"prZGMe\":\"Yêu cầu địa chỉ thanh toán\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Gửi lại xác nhận email\",\"wIa8Qe\":\"Gửi lại lời mời\",\"VeKsnD\":\"Gửi lại email đơn hàng\",\"dFuEhO\":\"Gửi lại email vé\",\"o6+Y6d\":\"Đang gửi lại ...\",\"OfhWJH\":\"Đặt lại\",\"RfwZxd\":\"Đặt lại mật khẩu\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Khôi phục sự kiện\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Trở lại trang sự kiện\",\"8YBH95\":\"Doanh thu\",\"PO/sOY\":\"Thu hồi lời mời\",\"GDvlUT\":\"Vai trò\",\"ELa4O9\":\"Ngày bán kết thúc\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Ngày bắt đầu bán hàng\",\"hBsw5C\":\"Bán hàng kết thúc\",\"kpAzPe\":\"Bán hàng bắt đầu\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Lưu\",\"IUwGEM\":\"Lưu thay đổi\",\"U65fiW\":\"Lưu tổ chức\",\"UGT5vp\":\"Lưu cài đặt\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Tìm kiếm theo tên người tham dự, email hoặc đơn hàng\",\"+pr/FY\":\"Tìm kiếm theo tên sự kiện\",\"3zRbWw\":\"Tìm kiếm theo tên, email, hoặc mã đơn hàng #\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Tìm kiếm theo tên...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Tìm kiếm phân bổ sức chứa...\",\"r9M1hc\":\"Tìm kiếm danh sách check-in...\",\"+0Yy2U\":\"Tìm kiếm sản phẩm\",\"YIix5Y\":\"Tìm kiếm\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Màu phụ\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Màu chữ phụ\",\"02ePaq\":[\"Chọn \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Chọn danh mục...\",\"kWI/37\":\"Chọn nhà tổ chức\",\"ixIx1f\":\"Chọn sản phẩm\",\"3oSV95\":\"Chọn bậc sản phẩm\",\"C4Y1hA\":\"Chọn sản phẩm\",\"hAjDQy\":\"Chọn trạng thái\",\"QYARw/\":\"Chọn Vé\",\"OMX4tH\":\"Chọn Vé\",\"DrwwNd\":\"Chọn khoảng thời gian\",\"O/7I0o\":\"Chọn ...\",\"JlFcis\":\"Gửi\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Gửi tin nhắn\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Gửi tin nhắn\",\"D7ZemV\":\"Gửi email xác nhận và vé\",\"v1rRtW\":\"Gửi Test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Mô tả SEO\",\"/SIY6o\":\"Từ khóa SEO\",\"GfWoKv\":\"Cài đặt SEO\",\"rXngLf\":\"Tiêu đề SEO\",\"/jZOZa\":\"Phí dịch vụ\",\"Bj/QGQ\":\"Đặt giá tối thiểu và cho phép người dùng thanh toán nhiều hơn nếu họ chọn\",\"L0pJmz\":\"Đặt số bắt đầu cho hóa đơn. Sau khi hóa đơn được tạo, số này không thể thay đổi.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Cài đặt\",\"Z8lGw6\":\"Chia sẻ\",\"B2V3cA\":\"Chia sẻ sự kiện\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Hiển thị số lượng sản phẩm có sẵn\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Hiển thị thêm\",\"izwOOD\":\"Hiển thị thuế và phí riêng biệt\",\"1SbbH8\":\"Hiển thị cho khách hàng sau khi họ thanh toán, trên trang Tóm tắt đơn hàng.\",\"YfHZv0\":\"Hiển thị cho khách hàng trước khi họ thanh toán\",\"CBBcly\":\"Hiển thị các trường địa chỉ chung, bao gồm quốc gia\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Hộp văn bản dòng đơn\",\"+P0Cn2\":\"Bỏ qua bước này\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Đã bán hết\",\"Mi1rVn\":\"Đã bán hết\",\"nwtY4N\":\"Đã xảy ra lỗi\",\"GRChTw\":\"Có gì đó không ổn trong khi xóa thuế hoặc phí\",\"YHFrbe\":\"Có gì đó không ổn! Vui lòng thử lại\",\"kf83Ld\":\"Có gì đó không ổn.\",\"fWsBTs\":\"Có gì đó không ổn. Vui lòng thử lại\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Xin lỗi, mã khuyến mãi này không được công nhận\",\"65A04M\":\"Tiếng Tây Ban Nha\",\"mFuBqb\":\"Sản phẩm tiêu chuẩn với giá cố định\",\"D3iCkb\":\"Ngày bắt đầu\",\"/2by1f\":\"Nhà nước hoặc khu vực\",\"uAQUqI\":\"Trạng thái\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Thanh toán Stripe không được kích hoạt cho sự kiện này.\",\"UJmAAK\":\"Chủ đề\",\"X2rrlw\":\"Tổng phụ\",\"zzDlyQ\":\"Thành công\",\"b0HJ45\":[\"Thành công! \",[\"0\"],\" sẽ nhận một email trong chốc lát.\"],\"BJIEiF\":[[\"0\"],\" Người tham dự thành công\"],\"OtgNFx\":\"Địa chỉ email được xác nhận thành công\",\"IKwyaF\":\"Thay đổi email được xác nhận thành công\",\"zLmvhE\":\"Người tham dự được tạo thành công\",\"gP22tw\":\"Sản phẩm được tạo thành công\",\"9mZEgt\":\"Mã khuyến mãi được tạo thành công\",\"aIA9C4\":\"Câu hỏi được tạo thành công\",\"J3RJSZ\":\"Người tham dự cập nhật thành công\",\"3suLF0\":\"Phân công công suất được cập nhật thành công\",\"Z+rnth\":\"Danh sách soát vé được cập nhật thành công\",\"vzJenu\":\"Cài đặt email được cập nhật thành công\",\"7kOMfV\":\"Sự kiện cập nhật thành công\",\"G0KW+e\":\"Thiết kế trang sự kiện được cập nhật thành công\",\"k9m6/E\":\"Cài đặt trang chủ được cập nhật thành công\",\"y/NR6s\":\"Vị trí cập nhật thành công\",\"73nxDO\":\"Cài đặt linh tinh được cập nhật thành công\",\"4H80qv\":\"Đơn hàng cập nhật thành công\",\"6xCBVN\":\"Cập nhật cài đặt thanh toán & lập hóa đơn thành công\",\"1Ycaad\":\"Đã cập nhật sản phẩm thành công\",\"70dYC8\":\"Cập nhật mã khuyến mãi thành công\",\"F+pJnL\":\"Cập nhật cài đặt SEO thành công\",\"DXZRk5\":\"Phòng 100\",\"GNcfRk\":\"Email hỗ trợ\",\"uRfugr\":\"Áo thun\",\"JpohL9\":\"Thuế\",\"geUFpZ\":\"Thuế & Phí\",\"dFHcIn\":\"Chi tiết thuế\",\"wQzCPX\":\"Thông tin thuế sẽ xuất hiện ở cuối tất cả các hóa đơn (ví dụ: mã số thuế VAT, đăng ký thuế)\",\"0RXCDo\":\"Xóa thuế hoặc phí thành công\",\"ZowkxF\":\"Thuế\",\"qu6/03\":\"Thuế và phí\",\"gypigA\":\"Mã khuyến mãi không hợp lệ\",\"5ShqeM\":\"Danh sách check-in bạn đang tìm kiếm không tồn tại.\",\"QXlz+n\":\"Tiền tệ mặc định cho các sự kiện của bạn.\",\"mnafgQ\":\"Múi giờ mặc định cho các sự kiện của bạn.\",\"o7s5FA\":\"Ngôn ngữ mà người tham dự sẽ nhận email.\",\"NlfnUd\":\"Liên kết bạn đã nhấp vào không hợp lệ.\",\"HsFnrk\":[\"Số lượng sản phẩm tối đa cho \",[\"0\"],\"là \",[\"1\"]],\"TSAiPM\":\"Trang bạn đang tìm kiếm không tồn tại\",\"MSmKHn\":\"Giá hiển thị cho khách hàng sẽ bao gồm thuế và phí.\",\"6zQOg1\":\"Giá hiển thị cho khách hàng sẽ không bao gồm thuế và phí. Chúng sẽ được hiển thị riêng biệt.\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Tiêu đề của sự kiện sẽ được hiển thị trong kết quả của công cụ tìm kiếm và khi chia sẻ trên phương tiện truyền thông xã hội. \",\"wDx3FF\":\"Không có sản phẩm nào cho sự kiện này\",\"pNgdBv\":\"Không có sản phẩm nào trong danh mục này\",\"rMcHYt\":\"Có một khoản hoàn tiền đang chờ xử lý. Vui lòng đợi hoàn tất trước khi yêu cầu hoàn tiền khác.\",\"F89D36\":\"Đã xảy ra lỗi khi đánh dấu đơn hàng là đã thanh toán\",\"68Axnm\":\"Đã xảy ra lỗi khi xử lý yêu cầu của bạn. Vui lòng thử lại.\",\"mVKOW6\":\"Có một lỗi khi gửi tin nhắn của bạn\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Người tham dự này có đơn hàng chưa thanh toán.\",\"mf3FrP\":\"Danh mục này chưa có bất kỳ sản phẩm nào.\",\"8QH2Il\":\"Danh mục này bị ẩn khỏi chế độ xem công khai\",\"xxv3BZ\":\"Danh sách người tham dự này đã hết hạn\",\"Sa7w7S\":\"Danh sách người tham dự này đã hết hạn và không còn có sẵn để kiểm tra.\",\"Uicx2U\":\"Danh sách người tham dự này đang hoạt động\",\"1k0Mp4\":\"Danh sách người tham dự này chưa hoạt động\",\"K6fmBI\":\"Danh sách người tham dự này chưa hoạt động và không có sẵn để kiểm tra.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Thông tin này sẽ được hiển thị trên trang thanh toán, trang tóm tắt đơn hàng và email xác nhận đơn hàng.\",\"XAHqAg\":\"Đây là một sản phẩm chung, như áo phông hoặc cốc. Không có vé nào được phát hành\",\"CNk/ro\":\"Đây là một sự kiện trực tuyến\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Thông báo này sẽ được bao gồm trong phần chân trang của tất cả các email được gửi từ sự kiện này\",\"55i7Fa\":\"Thông báo này sẽ chỉ được hiển thị nếu đơn hàng được hoàn thành thành công. Đơn chờ thanh toán sẽ không hiển thị thông báo này.\",\"RjwlZt\":\"Đơn hàng này đã được thanh toán.\",\"5K8REg\":\"Đơn hàng này đã được hoàn trả.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Đơn hàng này đã bị hủy bỏ.\",\"Q0zd4P\":\"Đơn hàng này đã hết hạn. Vui lòng bắt đầu lại.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Đơn hàng này đã hoàn tất.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Trang Đơn hàng này không còn có sẵn.\",\"i0TtkR\":\"Điều này ghi đè tất cả các cài đặt khả năng hiển thị và sẽ ẩn sản phẩm khỏi tất cả các khách hàng.\",\"cRRc+F\":\"Sản phẩm này không thể bị xóa vì nó được liên kết với một đơn hàng. \",\"3Kzsk7\":\"Sản phẩm này là vé. Người mua sẽ nhận được vé sau khi mua\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Liên kết mật khẩu đặt lại này không hợp lệ hoặc hết hạn.\",\"IV9xTT\":\"Người dùng này không hoạt động, vì họ chưa chấp nhận lời mời của họ.\",\"5AnPaO\":\"vé\",\"kjAL4v\":\"Vé\",\"dtGC3q\":\"Email vé đã được gửi lại với người tham dự\",\"54q0zp\":\"Vé cho\",\"xN9AhL\":[\"Cấp \",[\"0\"]],\"jZj9y9\":\"Sản phẩm cấp bậc\",\"8wITQA\":\"Sản phẩm theo bậc cho phép bạn cung cấp nhiều tùy chọn giá cho cùng một sản phẩm. Điều này hoàn hảo cho các sản phẩm ưu đãi sớm hoặc các nhóm giá khác nhau cho từng đối tượng.\",\"nn3mSR\":\"Thời gian còn lại:\",\"s/0RpH\":\"Thời gian được sử dụng\",\"y55eMd\":\"Thời gian được sử dụng\",\"40Gx0U\":\"Múi giờ\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Công cụ\",\"72c5Qo\":\"Tổng\",\"YXx+fG\":\"Tổng trước khi giảm giá\",\"NRWNfv\":\"Tổng tiền chiết khấu\",\"BxsfMK\":\"Tổng phí\",\"2bR+8v\":\"Tổng doanh thu\",\"mpB/d9\":\"Tổng tiền đơn hàng\",\"m3FM1g\":\"Tổng đã hoàn lại\",\"jEbkcB\":\"Tổng đã hoàn lại\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Tổng thuế\",\"+zy2Nq\":\"Loại\",\"FMdMfZ\":\"Không thể kiểm tra người tham dự\",\"bPWBLL\":\"Không thể kiểm tra người tham dự\",\"9+P7zk\":\"Không thể tạo sản phẩm. Vui lòng kiểm tra thông tin của bạn\",\"WLxtFC\":\"Không thể tạo sản phẩm. Vui lòng kiểm tra thông tin của bạn\",\"/cSMqv\":\"Không thể tạo câu hỏi. Vui lòng kiểm tra thông tin của bạn\",\"MH/lj8\":\"Không thể cập nhật câu hỏi. Vui lòng kiểm tra thông tin của bạn\",\"nnfSdK\":\"Khách hàng duy nhất\",\"Mqy/Zy\":\"Hoa Kỳ\",\"NIuIk1\":\"Không giới hạn\",\"/p9Fhq\":\"Không giới hạn có sẵn\",\"E0q9qH\":\"Sử dụng không giới hạn\",\"h10Wm5\":\"Đơn hàng chưa thanh toán\",\"ia8YsC\":\"Sắp tới\",\"TlEeFv\":\"Các sự kiện sắp tới\",\"L/gNNk\":[\"Cập nhật \",[\"0\"]],\"+qqX74\":\"Cập nhật tên sự kiện, mô tả và ngày\",\"vXPSuB\":\"Cập nhật hồ sơ\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL được sao chép vào bảng tạm\",\"e5lF64\":\"Ví dụ sử dụng\",\"fiV0xj\":\"Giới hạn sử dụng\",\"sGEOe4\":\"Sử dụng phiên bản làm mờ của ảnh bìa làm nền\",\"OadMRm\":\"Sử dụng hình ảnh bìa\",\"7PzzBU\":\"Người dùng\",\"yDOdwQ\":\"Quản lý người dùng\",\"Sxm8rQ\":\"Người dùng\",\"VEsDvU\":\"Người dùng có thể thay đổi email của họ trong <0>Cài đặt hồ sơ\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"Thuế VAT\",\"E/9LUk\":\"Tên địa điểm\",\"jpctdh\":\"Xem\",\"Pte1Hv\":\"Xem chi tiết người tham dự\",\"/5PEQz\":\"Xem trang sự kiện\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Xem trên Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Danh sách người tham dự VIP\",\"tF+VVr\":\"Vé VIP\",\"2q/Q7x\":\"Tầm nhìn\",\"vmOFL/\":\"Chúng tôi không thể xử lý thanh toán của bạn. Vui lòng thử lại hoặc liên hệ với ban tổ chức.\",\"45Srzt\":\"Chúng tôi không thể xóa danh mục. Vui lòng thử lại.\",\"/DNy62\":[\"Chúng tôi không thể tìm thấy bất kỳ vé nào khớp với \",[\"0\"]],\"1E0vyy\":\"Chúng tôi không thể tải dữ liệu. Vui lòng thử lại.\",\"NmpGKr\":\"Chúng tôi không thể sắp xếp lại các danh mục. Vui lòng thử lại.\",\"BJtMTd\":\"Chúng tôi đề xuất kích thước 2160px bằng 1080px và kích thước tệp tối đa là 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Chúng tôi không thể xác nhận thanh toán của bạn. Vui lòng thử lại hoặc liên hệ với ban tổ chức.\",\"Gspam9\":\"Chúng tôi đang xử lý đơn hàng của bạn. Đợi một chút...\",\"LuY52w\":\"Chào mừng bạn! Vui lòng đăng nhập để tiếp tục.\",\"dVxpp5\":[\"Chào mừng trở lại\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Sản phẩm cấp bậc là gì?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Thể loại là gì?\",\"gxeWAU\":\"Mã này áp dụng cho sản phẩm nào?\",\"hFHnxR\":\"Mã này áp dụng cho sản phẩm nào? (Mặc định áp dụng cho tất cả)\",\"AeejQi\":\"Sản phẩm nào nên áp dụng công suất này?\",\"Rb0XUE\":\"Bạn sẽ đến lúc mấy giờ?\",\"5N4wLD\":\"Đây là loại câu hỏi nào?\",\"gyLUYU\":\"Khi được bật, hóa đơn sẽ được tạo cho các đơn hàng vé. Hóa đơn sẽ được gửi kèm với email xác nhận đơn hàng. Người tham dự cũng có thể tải hóa đơn của họ từ trang xác nhận đơn hàng.\",\"D3opg4\":\"Khi thanh toán ngoại tuyến được bật, người dùng có thể hoàn tất đơn hàng và nhận vé của họ. Vé của họ sẽ hiển thị rõ ràng rằng đơn hàng chưa được thanh toán, và công cụ check-in sẽ thông báo cho nhân viên check-in nếu đơn hàng cần thanh toán.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Những vé nào nên được liên kết với danh sách người tham dự này?\",\"S+OdxP\":\"Ai đang tổ chức sự kiện này?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Ai nên được hỏi câu hỏi này?\",\"VxFvXQ\":\"Nhúng Widget\",\"v1P7Gm\":\"Cài đặt widget\",\"b4itZn\":\"Làm việc\",\"hqmXmc\":\"Làm việc ...\",\"+G/XiQ\":\"Từ đầu năm đến nay\",\"l75CjT\":\"Có\",\"QcwyCh\":\"Có, loại bỏ chúng\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Bạn đang thay đổi email của mình thành <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Bạn đang ngoại tuyến\",\"sdB7+6\":\"Bạn có thể tạo mã khuyến mãi nhắm mục tiêu sản phẩm này trên\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Bạn không thể thay đổi loại sản phẩm vì có những người tham dự liên quan đến sản phẩm này.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Bạn không thể xác nhận người tham dự với các đơn hàng không được thanh toán. Cài đặt này có thể được thay đổi ở phần cài đặt sự kiện.\",\"c9Evkd\":\"Bạn không thể xóa danh mục cuối cùng.\",\"6uwAvx\":\"Bạn không thể xóa cấp giá này vì đã có sản phẩm được bán cho cấp này. Thay vào đó, bạn có thể ẩn nó.\",\"tFbRKJ\":\"Bạn không thể chỉnh sửa vai trò hoặc trạng thái của chủ sở hữu tài khoản.\",\"fHfiEo\":\"Bạn không thể hoàn trả một Đơn hàng được tạo thủ công.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Bạn có quyền truy cập vào nhiều tài khoản. Vui lòng chọn một tài khoản để tiếp tục.\",\"Z6q0Vl\":\"Bạn đã chấp nhận lời mời này. Vui lòng đăng nhập để tiếp tục.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Bạn không có thay đổi email đang chờ xử lý.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Bạn đã hết thời gian để hoàn thành đơn hàng của mình.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Bạn phải hiểu rằng email này không phải là email quảng cáo\",\"3ZI8IL\":\"Bạn phải đồng ý với các điều khoản và điều kiện\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Bạn phải tạo một vé trước khi bạn có thể thêm một người tham dự.\",\"jE4Z8R\":\"Bạn phải có ít nhất một cấp giá\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Bạn sẽ phải đánh dấu một đơn hàng theo cách thủ công. Được thực hiện trong trang quản lý đơn hàng.\",\"L/+xOk\":\"Bạn sẽ cần một vé trước khi bạn có thể tạo một danh sách người tham dự.\",\"Djl45M\":\"Bạn sẽ cần tại một sản phẩm trước khi bạn có thể tạo một sự phân công công suất.\",\"y3qNri\":\"Bạn cần ít nhất một sản phẩm để bắt đầu. Miễn phí, trả phí hoặc để người dùng quyết định số tiền thanh toán.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Tên tài khoản của bạn được sử dụng trên các trang sự kiện và trong email.\",\"veessc\":\"Người tham dự của bạn sẽ xuất hiện ở đây sau khi họ đăng ký tham gia sự kiện. Bạn cũng có thể thêm người tham dự theo cách thủ công.\",\"Eh5Wrd\":\"Trang web tuyệt vời của bạn 🎉\",\"lkMK2r\":\"Thông tin của bạn\",\"3ENYTQ\":[\"Yêu cầu email của bạn thay đổi thành <0>\",[\"0\"],\" đang chờ xử lý. \"],\"yZfBoy\":\"Tin nhắn của bạn đã được gửi\",\"KSQ8An\":\"Đơn hàng của bạn\",\"Jwiilf\":\"Đơn hàng của bạn đã bị hủy\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Đơn hàng của bạn sẽ xuất hiện ở đây sau khi chúng bắt đầu tham gia.\",\"9TO8nT\":\"Mật khẩu của bạn\",\"P8hBau\":\"Thanh toán của bạn đang xử lý.\",\"UdY1lL\":\"Thanh toán của bạn không thành công, vui lòng thử lại.\",\"fzuM26\":\"Thanh toán của bạn không thành công. Vui lòng thử lại.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Hoàn lại tiền của bạn đang xử lý.\",\"IFHV2p\":\"Vé của bạn cho\",\"x1PPdr\":\"mã zip / bưu điện\",\"BM/KQm\":\"mã zip hoặc bưu điện\",\"+LtVBt\":\"mã zip hoặc bưu điện\",\"25QDJ1\":\"- Nhấp để xuất bản\",\"WOyJmc\":\"- Nhấp để gỡ bỏ\",\"ncwQad\":\"(trống)\",\"B/gRsg\":\"(không có)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" đã check-in\"],\"3beCx0\":[[\"0\"],\" <0>đã check-in\"],\"S4PqS9\":[[\"0\"],\" Webhook đang hoạt động\"],\"6MIiOI\":[\"Còn \",[\"0\"]],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[\"Đã có \",[\"0\"],\" trong số \",[\"1\"],\" chỗ được đặt.\"],\"B7pZfX\":[[\"0\"],\" nhà tổ chức\"],\"rZTf6P\":[\"Còn \",[\"0\"],\" chỗ\"],\"/HkCs4\":[[\"0\"],\" vé\"],\"dtXkP9\":[[\"0\"],\" ngày sắp tới\"],\"30bTiU\":[\"Đã bật \",[\"activeCount\"]],\"jTs4am\":[\"Logo \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" người tham dự đã đăng ký cho buổi này.\"],\"TjbIUI\":[[\"availableCount\"],\" trong số \",[\"totalCount\"],\" có sẵn\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" đã check-in\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" giờ trước\"],\"NRSLBe\":[[\"diffMin\"],\" phút trước\"],\"iYfwJE\":[[\"diffSec\"],\" giây trước\"],\"OJnhhX\":[[\"EventCount\"],\" Sự kiện\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" người tham dự đã đăng ký trên các buổi bị ảnh hưởng.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" loại vé\"],\"0cLzoF\":[[\"totalOccurrences\"],\" ngày\"],\"AEGc4t\":[[\"totalOccurrences\"],\" buổi trên \",[\"0\"],\" ngày (\",[\"1\",\"plural\",{\"one\":[\"#\",\" buổi\"],\"other\":[\"#\",\" buổi\"]}],\" mỗi ngày)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Thuế/Phí\",\"B1St2O\":\"<0>Danh sách check-in giúp bạn quản lý lối vào sự kiện theo ngày, khu vực hoặc loại vé. Bạn có thể liên kết vé với các danh sách cụ thể như khu vực VIP hoặc vé Ngày 1 và chia sẻ liên kết check-in an toàn với nhân viên. Không cần tài khoản. Check-in hoạt động trên điện thoại di động, máy tính để bàn hoặc máy tính bảng, sử dụng camera thiết bị hoặc máy quét USB HID. \",\"v9VSIS\":\"<0>Đặt giới hạn tổng số người tham dự áp dụng cho nhiều loại vé cùng lúc.<1>Ví dụ: nếu bạn liên kết vé <2>Day Pass và <3>Full Weekend, cả hai sẽ sử dụng chung một số lượng chỗ. Khi đạt giới hạn, tất cả các vé được liên kết sẽ tự động ngừng bán.\",\"vKXqag\":\"<0>Đây là số lượng mặc định cho tất cả các ngày. Sức chứa của từng ngày có thể giới hạn thêm khả năng cung cấp trên <1>trang Lịch buổi.\",\"ZnVt5v\":\"<0>Webhooks thông báo ngay lập tức cho các dịch vụ bên ngoài khi sự kiện diễn ra, chẳng hạn như thêm người tham dự mới vào CRM hoặc danh sách email khi đăng ký, đảm bảo tự động hóa mượt mà.<1>Sử dụng các dịch vụ bên thứ ba như <2>Zapier, <3>IFTTT hoặc <4>Make để tạo quy trình làm việc tùy chỉnh và tự động hóa công việc.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" theo tỷ giá hiện tại\"],\"M2DyLc\":\"1 Webhook đang hoạt động\",\"6hIk/x\":\"1 người tham dự đã đăng ký trên các buổi bị ảnh hưởng.\",\"qOyE2U\":\"1 người tham dự đã đăng ký cho buổi này.\",\"943BwI\":\"1 ngày sau ngày kết thúc\",\"yj3N+g\":\"1 ngày sau ngày bắt đầu\",\"Z3etYG\":\"1 ngày trước sự kiện\",\"szSnlj\":\"1 giờ trước sự kiện\",\"yTsaLw\":\"1 vé\",\"nz96Ue\":\"1 loại vé\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 tuần trước sự kiện\",\"09VFYl\":\"12 vé được cung cấp\",\"HR/cvw\":\"123 Đường Mẫu\",\"dgKxZ5\":\"Hỗ trợ 135+ loại tiền tệ và 40+ phương thức thanh toán\",\"kMU5aM\":\"Thông báo hủy đã được gửi đến\",\"o++0qa\":\"thay đổi thời lượng\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Mã xác thực mới đã được gửi đến email của bạn\",\"sr2Je0\":\"dịch chuyển thời gian bắt đầu/kết thúc\",\"/z/bH1\":\"Mô tả ngắn gọn về nhà tổ chức của bạn sẽ được hiển thị cho người dùng.\",\"aS0jtz\":\"Đã bỏ\",\"uyJsf6\":\"Thông tin sự kiện\",\"JvuLls\":\"Hấp thụ phí\",\"lk74+I\":\"Hấp thụ phí\",\"1uJlG9\":\"Màu nhấn\",\"g3UF2V\":\"Chấp nhận\",\"K5+3xg\":\"Chấp nhận lời mời\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Tài khoản · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Thông tin tài khoản\",\"EHNORh\":\"Không tìm thấy tài khoản\",\"bPwFdf\":\"Tài Khoản\",\"AhwTa1\":\"Cần hành động: Cần thông tin VAT\",\"APyAR/\":\"Sự kiện hoạt động\",\"kCl6ja\":\"Phương thức thanh toán đang hoạt động\",\"XJOV1Y\":\"Hoạt động\",\"0YEoxS\":\"Thêm một ngày\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Thêm một ngày đơn\",\"CjvTPJ\":\"Thêm thời gian khác\",\"0XCduh\":\"Thêm ít nhất một thời gian\",\"/chGpa\":\"Thêm thông tin kết nối cho sự kiện trực tuyến.\",\"UWWRyd\":\"Thêm câu hỏi tùy chỉnh để thu thập thông tin bổ sung trong quá trình thanh toán\",\"Z/dcxc\":\"Thêm ngày\",\"Q219NT\":\"Thêm các ngày\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Thêm địa điểm\",\"VX6WUv\":\"Thêm địa điểm\",\"GCQlV2\":\"Thêm nhiều thời gian nếu bạn tổ chức nhiều buổi mỗi ngày.\",\"7JF9w9\":\"Thêm câu hỏi\",\"NLbIb6\":\"Vẫn thêm người tham dự này (ghi đè sức chứa)\",\"6PNlRV\":\"Thêm sự kiện này vào lịch của bạn\",\"BGD9Yt\":\"Thêm vé\",\"uIv4Op\":\"Thêm pixel theo dõi vào các trang sự kiện công khai và trang chủ nhà tổ chức của bạn. Một thanh đồng ý cookie sẽ được hiển thị cho khách truy cập khi tính năng theo dõi đang hoạt động.\",\"QN2F+7\":\"Thêm Webhook\",\"NsWqSP\":\"Thêm tài khoản mạng xã hội và URL trang web của bạn. Chúng sẽ được hiển thị trên trang công khai của nhà tổ chức.\",\"bVjDs9\":\"Phí bổ sung\",\"MKqSg4\":\"Yêu cầu quyền truy cập quản trị viên\",\"0Zypnp\":\"Bảng Điều Khiển Quản Trị\",\"YAV57v\":\"Đối tác liên kết\",\"I+utEq\":\"Mã đối tác liên kết không thể thay đổi\",\"/jHBj5\":\"Tạo đối tác liên kết thành công\",\"uCFbG2\":\"Xóa đối tác liên kết thành công\",\"ld8I+f\":\"Chương trình đối tác liên kết\",\"a41PKA\":\"Doanh số đối tác liên kết sẽ được theo dõi\",\"mJJh2s\":\"Doanh số đối tác liên kết sẽ không được theo dõi. Điều này sẽ vô hiệu hóa đối tác.\",\"jabmnm\":\"Cập nhật đối tác liên kết thành công\",\"CPXP5Z\":\"Chi nhánh\",\"9Wh+ug\":\"Đã xuất danh sách đối tác\",\"3cqmut\":\"Đối tác liên kết giúp bạn theo dõi doanh số từ các đối tác và người ảnh hưởng. Tạo mã đối tác và chia sẻ để theo dõi hiệu suất.\",\"z7GAMJ\":\"tất cả\",\"N40H+G\":\"Tất cả\",\"7rLTkE\":\"Tất cả sự kiện đã lưu trữ\",\"gKq1fa\":\"Tất cả người tham dự\",\"63gRoO\":\"Tất cả người tham dự của các buổi đã chọn\",\"uWxIoH\":\"Tất cả người tham dự của buổi này\",\"pMLul+\":\"Tất cả tiền tệ\",\"sgUdRZ\":\"Tất cả ngày\",\"e4q4uO\":\"Tất cả ngày\",\"ZS/D7f\":\"Tất cả sự kiện đã kết thúc\",\"QsYjci\":\"Tất cả sự kiện\",\"31KB8w\":\"Đã xóa tất cả công việc thất bại\",\"D2g7C7\":\"Tất cả công việc đã được xếp hàng để thử lại\",\"B4RFBk\":\"Tất cả ngày phù hợp\",\"F1/VgK\":\"Tất cả các buổi\",\"OpWjMq\":\"Tất cả các buổi\",\"Sxm1lO\":\"Tất cả trạng thái\",\"dr7CWq\":\"Tất cả sự kiện sắp diễn ra\",\"GpT6Uf\":\"Cho phép người tham dự cập nhật thông tin vé của họ (tên, email) qua liên kết bảo mật được gửi cùng với xác nhận đơn hàng.\",\"F3mW5G\":\"Cho phép khách hàng tham gia danh sách chờ khi sản phẩm này đã hết\",\"c4uJfc\":\"Sắp xong rồi! Chúng tôi đang chờ thanh toán của bạn được xử lý. Quá trình này chỉ mất vài giây.\",\"ocS8eq\":[\"Đã có tài khoản? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Đã vào\",\"/H326L\":\"Đã hoàn tiền\",\"USEpOK\":\"Đã dùng Stripe trên một nhà tổ chức khác? Tái sử dụng kết nối đó.\",\"RtxQTF\":\"Cũng hủy đơn hàng này\",\"jkNgQR\":\"Cũng hoàn tiền đơn hàng này\",\"xYqsHg\":\"Luôn có sẵn\",\"Wvrz79\":\"Số tiền đã thanh toán\",\"Zkymb9\":\"Email để liên kết với đối tác này. Đối tác sẽ không nhận được thông báo.\",\"vRznIT\":\"Đã xảy ra lỗi khi kiểm tra trạng thái xuất.\",\"eusccx\":\"Thông báo tùy chọn để hiển thị trên sản phẩm nổi bật, ví dụ: \\\"Bán nhanh 🔥\\\" hoặc \\\"Giá trị tốt nhất\\\"\",\"5GJuNp\":[\"và \",[\"0\"],\" nữa...\"],\"QNrkms\":\"Câu trả lời đã được cập nhật thành công.\",\"+qygei\":\"Câu trả lời\",\"GK7Lnt\":\"Câu trả lời khi thanh toán (ví dụ chọn bữa ăn)\",\"lE8PgT\":\"Mọi ngày bạn đã tùy chỉnh thủ công sẽ được giữ lại.\",\"vP3Nzg\":[\"Áp dụng cho \",[\"0\"],\" ngày chưa hủy hiện đang được tải trên trang này.\"],\"kkVyZZ\":\"Áp dụng cho người mở liên kết khi chưa đăng nhập. Thành viên đã đăng nhập luôn thấy mọi thứ.\",\"je4muG\":[\"Áp dụng cho mỗi ngày chưa hủy trong sự kiện này \",[\"0\"],\" — bao gồm cả những ngày chưa được tải.\"],\"YIIQtt\":\"Áp dụng thay đổi\",\"NzWX1Y\":\"Áp dụng cho\",\"Ps5oDT\":\"Áp dụng cho tất cả các vé\",\"261RBr\":\"Phê duyệt tin nhắn\",\"naCW6Z\":\"Tháng 4\",\"B495Gs\":\"Lưu trữ\",\"5sNliy\":\"Lưu trữ sự kiện\",\"BrwnrJ\":\"Lưu trữ ban tổ chức\",\"E5eghW\":\"Lưu trữ sự kiện này để ẩn khỏi công chúng. Bạn có thể khôi phục nó sau.\",\"eqFkeI\":\"Lưu trữ ban tổ chức này. Điều này cũng sẽ lưu trữ tất cả các sự kiện thuộc ban tổ chức này.\",\"BzcxWv\":\"Ban tổ chức đã lưu trữ\",\"9cQBd6\":\"Bạn có chắc chắn muốn lưu trữ sự kiện này không? Nó sẽ không còn hiển thị với công chúng nữa.\",\"Trnl3E\":\"Bạn có chắc chắn muốn lưu trữ ban tổ chức này không? Điều này cũng sẽ lưu trữ tất cả các sự kiện thuộc ban tổ chức này.\",\"wOvn+e\":[\"Bạn có chắc chắn muốn hủy \",[\"count\"],\" ngày không? Người tham dự bị ảnh hưởng sẽ được thông báo qua email.\"],\"GTxE0U\":\"Bạn có chắc chắn muốn hủy ngày này không? Người tham dự bị ảnh hưởng sẽ được thông báo qua email.\",\"VkSk/i\":\"Bạn có chắc chắn muốn hủy tin nhắn đã lên lịch này không?\",\"0aVEBY\":\"Bạn có chắc chắn muốn xóa tất cả các công việc thất bại không?\",\"LchiNd\":\"Bạn có chắc chắn muốn xóa đối tác này? Hành động này không thể hoàn tác.\",\"vPeW/6\":\"Bạn có chắc chắn muốn xóa cấu hình này không? Điều này có thể ảnh hưởng đến các tài khoản đang sử dụng nó.\",\"h42Hc/\":\"Bạn có chắc chắn muốn xóa ngày này không? Hành động này không thể hoàn tác.\",\"JmVITJ\":\"Bạn có chắc chắn muốn xóa mẫu này không? Hành động này không thể hoàn tác và email sẽ quay về mẫu mặc định.\",\"aLS+A6\":\"Bạn có chắc chắn muốn xóa mẫu này không? Hành động này không thể hoàn tác và email sẽ quay về mẫu của tổ chức hoặc mẫu mặc định.\",\"5H3Z78\":\"Bạn có chắc là bạn muốn xóa webhook này không?\",\"147G4h\":\"Bạn có chắc chắn muốn rời đi?\",\"VDWChT\":\"Bạn có chắc muốn chuyển nhà tổ chức này sang bản nháp không? Trang của nhà tổ chức sẽ không hiển thị công khai.\",\"pWtQJM\":\"Bạn có chắc muốn công khai nhà tổ chức này không? Trang của nhà tổ chức sẽ hiển thị công khai.\",\"EOqL/A\":\"Bạn có chắc chắn muốn cung cấp một suất cho người này không? Họ sẽ nhận được thông báo qua email.\",\"yAXqWW\":\"Bạn có chắc chắn muốn xóa vĩnh viễn ngày này không? Hành động này không thể hoàn tác.\",\"WFHOlF\":\"Bạn có chắc chắn muốn xuất bản sự kiện này? Sau khi xuất bản, sự kiện sẽ hiển thị công khai.\",\"4TNVdy\":\"Bạn có chắc chắn muốn xuất bản hồ sơ nhà tổ chức này? Sau khi xuất bản, hồ sơ sẽ hiển thị công khai.\",\"8x0pUg\":\"Bạn có chắc chắn muốn xóa mục này khỏi danh sách chờ?\",\"cDtoWq\":[\"Bạn có chắc chắn muốn gửi lại xác nhận đơn hàng đến \",[\"0\"],\"?\"],\"xeIaKw\":[\"Bạn có chắc chắn muốn gửi lại vé đến \",[\"0\"],\"?\"],\"BjbocR\":\"Bạn có chắc chắn muốn khôi phục sự kiện này không?\",\"7MjfcR\":\"Bạn có chắc chắn muốn khôi phục ban tổ chức này không?\",\"ExDt3P\":\"Bạn có chắc chắn muốn hủy xuất bản sự kiện này? Sự kiện sẽ không còn hiển thị công khai.\",\"5Qmxo/\":\"Bạn có chắc chắn muốn hủy xuất bản hồ sơ nhà tổ chức này? Hồ sơ sẽ không còn hiển thị công khai.\",\"Uqefyd\":\"Bạn có đăng ký VAT tại EU không?\",\"+QARA4\":\"Nghệ thuật\",\"tLf3yJ\":\"Vì doanh nghiệp của bạn có trụ sở tại Ireland, VAT Ireland 23% sẽ được áp dụng tự động cho tất cả phí nền tảng.\",\"tMeVa/\":\"Yêu cầu tên và email cho mỗi vé được mua\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Gán gói\",\"xdiER7\":\"Cấp độ được gán\",\"F2rX0R\":\"Ít nhất một loại sự kiện phải được chọn\",\"BCmibk\":\"Lần thử\",\"6PecK3\":\"Tỷ lệ tham dự và check-in cho tất cả sự kiện\",\"K2tp3v\":\"người tham dự\",\"AJ4rvK\":\"Người tham dự đã hủy bỏ\",\"qvylEK\":\"Người tham dự đã tạo ra\",\"Aspq3b\":\"Thu thập thông tin người tham dự\",\"fpb0rX\":\"Thông tin người tham dự được sao chép từ đơn hàng\",\"0R3Y+9\":\"Email người tham dự\",\"94aQMU\":\"Thông tin người tham dự\",\"KkrBiR\":\"Thu thập thông tin người tham dự\",\"av+gjP\":\"Tên người tham dự\",\"sjPjOg\":\"Ghi chú khách\",\"cosfD8\":\"Trạng Thái Người Tham Dự\",\"D2qlBU\":\"Người tham dự cập nhật\",\"22BOve\":\"Người tham dự đã được cập nhật thành công\",\"x8Vnvf\":\"Vé của người tham dự không có trong danh sách này\",\"/Ywywr\":\"người tham dự\",\"zLRobu\":\"khách đã check-in\",\"k3Tngl\":\"Danh sách người tham dự đã được xuất\",\"UoIRW8\":\"Người tham dự đã đăng ký\",\"5UbY+B\":\"Người tham dự có vé cụ thể\",\"4HVzhV\":\"Người tham dự:\",\"HVkhy2\":\"Phân tích phân bổ\",\"dMMjeD\":\"Chi tiết phân bổ\",\"1oPDuj\":\"Giá trị phân bổ\",\"DBHTm/\":\"Tháng 8\",\"JgREph\":\"Ưu đãi tự động đã được bật\",\"V7Tejz\":\"Tự động xử lý danh sách chờ\",\"PZ7FTW\":\"Tự động phát hiện dựa trên màu nền, nhưng có thể ghi đè\",\"zlnTuI\":\"Tự động cung cấp vé cho người kế tiếp khi có chỗ trống. Nếu tắt, bạn có thể xử lý danh sách chờ thủ công từ trang Danh sách chờ.\",\"csDS2L\":\"Còn chỗ\",\"clF06r\":\"Có thể hoàn tiền\",\"NB5+UG\":\"Token có sẵn\",\"L+wGOG\":\"Chờ\",\"qcw2OD\":\"Chờ thanh toán\",\"kNmmvE\":\"Công ty TNHH Awesome Events\",\"iH8pgl\":\"Quay lại\",\"TeSaQO\":\"Quay lại tài khoản\",\"X7Q/iM\":\"Quay lại lịch\",\"kYqM1A\":\"Quay lại sự kiện\",\"s5QRF3\":\"Quay lại tin nhắn\",\"td/bh+\":\"Quay lại Báo cáo\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Giá cơ bản\",\"hviJef\":\"Dựa trên thời gian bán hàng chung ở trên, không theo từng ngày\",\"jIPNJG\":\"Thông tin cơ bản\",\"UabgBd\":\"Nội dung là bắt buộc\",\"HWXuQK\":\"Đánh dấu trang này để quản lý đơn hàng của bạn bất cứ lúc nào.\",\"CUKVDt\":\"Xây dựng thương hiệu vé của bạn với logo, màu sắc và thông điệp chân trang tùy chỉnh.\",\"4BZj5p\":\"Tích hợp bảo vệ chống gian lận\",\"cr7kGH\":\"Chỉnh sửa hàng loạt\",\"1Fbd6n\":\"Chỉnh sửa hàng loạt các ngày\",\"Eq6Tu9\":\"Cập nhật hàng loạt thất bại.\",\"9N+p+g\":\"Kinh doanh\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Tên doanh nghiệp\",\"bv6RXK\":\"Nhãn nút\",\"ChDLlO\":\"Văn bản nút\",\"BUe8Wj\":\"Người mua trả\",\"qF1qbA\":\"Người mua thấy giá rõ ràng. Phí nền tảng được khấu trừ từ khoản thanh toán của bạn.\",\"dg05rc\":\"Bằng cách thêm pixel theo dõi, bạn xác nhận rằng bạn và nền tảng này là đồng kiểm soát dữ liệu được thu thập. Bạn chịu trách nhiệm đảm bảo có cơ sở pháp lý để xử lý dữ liệu theo các luật về quyền riêng tư hiện hành (GDPR, CCPA, v.v.).\",\"DFqasq\":[\"Bằng cách tiếp tục, bạn đồng ý với <0>Điều khoản dịch vụ của \",[\"0\"],\"\"],\"wVSa+U\":\"Theo ngày trong tháng\",\"0MnNgi\":\"Theo thứ trong tuần\",\"CetOZE\":\"Theo loại vé\",\"lFdbRS\":\"Bỏ qua phí ứng dụng\",\"AjVXBS\":\"Lịch\",\"alkXJ5\":\"Xem lịch\",\"2VLZwd\":\"Nút hành động\",\"rT2cV+\":\"Máy ảnh\",\"7hYa9y\":\"Quyền truy cập máy ảnh bị từ chối. <0>Yêu cầu lại quyền, hoặc cấp quyền truy cập máy ảnh trong cài đặt trình duyệt.\",\"D02dD9\":\"Chiến dịch\",\"RRPA79\":\"Không thể check-in\",\"OcVwAd\":[\"Hủy \",[\"count\"],\" ngày\"],\"H4nE+E\":\"Hủy tất cả sản phẩm và trả lại pool có sẵn\",\"Py78q9\":\"Hủy ngày\",\"tOXAdc\":\"Hủy sẽ hủy tất cả người tham dự liên quan đến đơn hàng này và trả vé về pool có sẵn.\",\"vev1Jl\":\"Hủy bỏ\",\"Ha17hq\":[\"Đã hủy \",[\"0\"],\" ngày\"],\"01sEfm\":\"Không thể xóa cấu hình mặc định của hệ thống\",\"VsM1HH\":\"Phân bổ sức chứa\",\"9bIMVF\":\"Quản lý sức chứa\",\"H7K8og\":\"Sức chứa phải bằng 0 hoặc lớn hơn\",\"nzao08\":\"cập nhật sức chứa\",\"4cp9NP\":\"Sức chứa đã dùng\",\"K7tIrx\":\"Danh mục\",\"o+XJ9D\":\"Thay đổi\",\"kJkjoB\":\"Thay đổi thời lượng\",\"J0KExZ\":\"Thay đổi giới hạn người tham dự\",\"CIHJJf\":\"Thay đổi cài đặt danh sách chờ\",\"B5icLR\":[\"Đã thay đổi thời lượng cho \",[\"count\"],\" ngày\"],\"Kb+0BT\":\"Thanh toán\",\"2tbLdK\":\"Từ thiện\",\"BPWGKn\":\"Check-in\",\"6uFFoY\":\"Huỷ check-in\",\"FjAlwK\":[\"Xem sự kiện này: \",[\"0\"]],\"v4fiSg\":\"Kiểm tra email của bạn\",\"51AsAN\":\"Kiểm tra hộp thư của bạn! Nếu có vé liên kết với email này, bạn sẽ nhận được liên kết để xem.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Check-in đã được tạo\",\"F4SRy3\":\"Check-in đã bị xóa\",\"as6XfO\":[\"Đã hoàn tác check-in của \",[\"0\"]],\"9s/wrQ\":\"Lịch sử check-in\",\"Wwztk4\":\"Danh sách check-in\",\"9gPPUY\":\"Danh sách Check-In Đã Tạo!\",\"dwjiJt\":\"Thông tin danh sách\",\"7od0PV\":\"danh sách check-in\",\"f2vU9t\":\"Danh sách check-in\",\"XprdTn\":\"Điều hướng check-in\",\"5tV1in\":\"Tiến độ check-in\",\"SHJwyq\":\"Tỷ lệ check-in\",\"qCqdg6\":\"Trạng thái đăng ký\",\"cKj6OE\":\"Tóm tắt Check-in\",\"7B5M35\":\"Check-In\",\"VrmydS\":\"Đã check-in\",\"DM4gBB\":\"Tiếng Trung (Phồn thể)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Chọn một hành động khác\",\"fkb+y3\":\"Chọn một địa điểm đã lưu để áp dụng.\",\"Zok1Gx\":\"Chọn nhà tổ chức\",\"pkk46Q\":\"Chọn một nhà tổ chức\",\"Crr3pG\":\"Chọn lịch\",\"LAW8Vb\":\"Chọn cài đặt mặc định cho các sự kiện mới. Điều này có thể được ghi đè cho từng sự kiện riêng lẻ.\",\"pjp2n5\":\"Chọn ai trả phí nền tảng. Điều này không ảnh hưởng đến các khoản phí bổ sung mà bạn đã cấu hình trong cài đặt tài khoản.\",\"xCJdfg\":\"Xóa\",\"QyOWu9\":\"Xóa địa điểm — quay về mặc định của sự kiện\",\"V8yTm6\":\"Xoá tìm kiếm\",\"kmnKnX\":\"Xóa sẽ loại bỏ mọi tùy chỉnh riêng cho từng buổi. Các buổi bị ảnh hưởng sẽ quay về địa điểm mặc định của sự kiện.\",\"/o+aQX\":\"Nhấp để hủy\",\"gD7WGV\":\"Nhấn để mở lại cho việc bán vé mới\",\"CySr+W\":\"Nhấp để xem ghi chú\",\"RG3szS\":\"đóng\",\"RWw9Lg\":\"Đóng hộp thoại\",\"XwdMMg\":\"Mã chỉ được chứa chữ cái, số, dấu gạch ngang và dấu gạch dưới\",\"+yMJb7\":\"Mã là bắt buộc\",\"m9SD3V\":\"Mã phải có ít nhất 3 ký tự\",\"V1krgP\":\"Mã không được quá 20 ký tự\",\"psqIm5\":\"Hợp tác với nhóm của bạn để tạo nên những sự kiện tuyệt vời.\",\"4bUH9i\":\"Thu thập thông tin chi tiết người tham dự cho mỗi vé đã mua.\",\"TkfG8v\":\"Thu thập thông tin theo đơn hàng\",\"96ryID\":\"Thu thập thông tin theo vé\",\"FpsvqB\":\"Chế độ màu\",\"jEu4bB\":\"Cột\",\"CWk59I\":\"Hài kịch\",\"rPA+Gc\":\"Tùy chọn liên lạc\",\"zFT5rr\":\"hoàn tất\",\"bUQMpb\":\"Hoàn tất thiết lập Stripe\",\"744BMm\":\"Hoàn tất đơn hàng để đảm bảo vé của bạn. Ưu đãi này có thời hạn, vì vậy đừng chờ đợi quá lâu.\",\"5YrKW7\":\"Hoàn tất thanh toán để đảm bảo vé của bạn.\",\"xGU92i\":\"Hoàn thành hồ sơ của bạn để tham gia nhóm.\",\"QOhkyl\":\"Soạn\",\"ih35UP\":\"Trung tâm hội nghị\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Đã gán cấu hình\",\"X1zdE7\":\"Cấu hình đã được tạo thành công\",\"mLBUMQ\":\"Cấu hình đã được xóa thành công\",\"UIENhw\":\"Tên cấu hình hiển thị với người dùng cuối. Phí cố định sẽ được chuyển đổi sang đơn vị tiền tệ của đơn hàng theo tỷ giá hối đoái hiện tại.\",\"eeZdaB\":\"Cấu hình đã được cập nhật thành công\",\"3cKoxx\":\"Cấu hình\",\"8v2LRU\":\"Cấu hình chi tiết sự kiện, địa điểm, tùy chọn thanh toán và thông báo email.\",\"raw09+\":\"Cấu hình cách thu thập thông tin người tham dự trong quá trình thanh toán\",\"FI60XC\":\"Cấu hình thuế và phí\",\"av6ukY\":\"Cấu hình các sản phẩm có sẵn cho buổi này và tùy chọn điều chỉnh giá.\",\"NGXKG/\":\"Xác nhận địa chỉ email\",\"JRQitQ\":\"Xác nhận mật khẩu mới\",\"Auz0Mz\":\"Xác nhận email của bạn để sử dụng đầy đủ tính năng.\",\"7+grte\":\"Email xác nhận đã được gửi! Vui lòng kiểm tra hộp thư đến của bạn.\",\"n/7+7Q\":\"Xác nhận đã gửi đến\",\"x3wVFc\":\"Chúc mừng! Sự kiện của bạn hiện đã hiển thị công khai.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Kết nối Stripe để bật chỉnh sửa mẫu email\",\"LmvZ+E\":\"Kết nối Stripe để bật tính năng nhắn tin\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Liên hệ\",\"LOFgda\":[\"Liên hệ \",[\"0\"]],\"41BQ3k\":\"Email liên hệ\",\"KcXRN+\":\"Email liên hệ hỗ trợ\",\"m8WD6t\":\"Tiếp tục thiết lập\",\"0GwUT4\":\"Tiếp tục đến thanh toán\",\"sBV87H\":\"Tiếp tục tạo sự kiện\",\"nKtyYu\":\"Tiếp tục bước tiếp theo\",\"F3/nus\":\"Tiếp tục thanh toán\",\"p2FRHj\":\"Kiểm soát cách xử lý phí nền tảng cho sự kiện này\",\"NqfabH\":\"Kiểm soát ai được vào cho ngày này\",\"fmYxZx\":\"Kiểm soát ai vào và khi nào\",\"1JnTgU\":\"Đã sao chép từ trên\",\"FxVG/l\":\"Đã sao chép vào clipboard\",\"PiH3UR\":\"Đã sao chép!\",\"4i7smN\":\"Sao chép ID tài khoản\",\"uUPbPg\":\"Sao chép liên kết đối tác\",\"iVm46+\":\"Sao chép mã\",\"cF2ICc\":\"Sao chép liên kết khách hàng\",\"+2ZJ7N\":\"Sao chép chi tiết cho người tham dự đầu tiên\",\"ZN1WLO\":\"Sao chép Email\",\"y1eoq1\":\"Sao chép liên kết\",\"tUGbi8\":\"Sao chép thông tin của tôi cho:\",\"y22tv0\":\"Sao chép liên kết này để chia sẻ ở bất kỳ đâu\",\"/4gGIX\":\"Sao chép vào bộ nhớ tạm\",\"e0f4yB\":\"Không thể xóa địa điểm\",\"vkiDx2\":\"Không thể chuẩn bị cập nhật hàng loạt.\",\"KOavaU\":\"Không thể truy xuất chi tiết địa chỉ\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Không thể lưu ngày\",\"eeLExK\":\"Không thể lưu địa điểm\",\"P0rbCt\":\"Ảnh bìa\",\"60u+dQ\":\"Ảnh bìa sẽ được hiển thị ở đầu trang sự kiện của bạn\",\"2NLjA6\":\"Ảnh bìa sẽ hiển thị ở đầu trang của nhà tổ chức\",\"GkrqoY\":\"Bao gồm mọi vé\",\"zg4oSu\":[\"Tạo mẫu \",[\"0\"]],\"RKKhnW\":\"Tạo widget tùy chỉnh để bán vé trên trang web của bạn.\",\"6sk7PP\":\"Tạo một số cố định\",\"PhioFp\":\"Tạo một danh sách check-in mới cho buổi đang hoạt động, hoặc liên hệ nhà tổ chức nếu bạn nghĩ đây là nhầm lẫn.\",\"yIRev4\":\"Tạo mật khẩu\",\"j7xZ7J\":\"Tạo các ban tổ chức bổ sung để quản lý các thương hiệu, bộ phận hoặc chuỗi sự kiện riêng biệt dưới một tài khoản. Mỗi ban tổ chức có sự kiện, cài đặt và trang công khai riêng.\",\"xfKgwv\":\"Tạo đối tác\",\"tudG8q\":\"Tạo và cấu hình vé và hàng hóa để bán.\",\"YAl9Hg\":\"Tạo cấu hình\",\"BTne9e\":\"Tạo mẫu email tùy chỉnh cho sự kiện này ghi đè mặc định của tổ chức\",\"YIDzi/\":\"Tạo mẫu tùy chỉnh\",\"tsGqx5\":\"Tạo ngày\",\"Nc3l/D\":\"Tạo giảm giá, mã truy cập cho vé ẩn và ưu đãi đặc biệt.\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"Tạo cho ngày này\",\"eWEV9G\":\"Tạo mật khẩu mới\",\"wl2iai\":\"Tạo lịch trình\",\"8AiKIu\":\"Tạo vé hoặc sản phẩm\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Tạo liên kết có thể theo dõi để thưởng cho các đối tác quảng bá sự kiện của bạn.\",\"dkAPxi\":\"Tạo webhook\",\"5slqwZ\":\"Tạo sự kiện của bạn\",\"JQNMrj\":\"Tạo sự kiện đầu tiên của bạn\",\"ZCSSd+\":\"Tạo sự kiện của riêng bạn\",\"67NsZP\":\"Đang tạo sự kiện...\",\"H34qcM\":\"Đang tạo nhà tổ chức...\",\"1YMS+X\":\"Đang tạo sự kiện của bạn, vui lòng đợi\",\"yiy8Jt\":\"Đang tạo hồ sơ nhà tổ chức của bạn, vui lòng đợi\",\"lfLHNz\":\"Nhãn CTA là bắt buộc\",\"0xLR6W\":\"Hiện đang được gán\",\"iTvh6I\":\"Hiện có sẵn để mua\",\"A42Dqn\":\"Thương hiệu tùy chỉnh\",\"Guo0lU\":\"Ngày và giờ tùy chỉnh\",\"mimF6c\":\"Tin nhắn tùy chỉnh sau thanh toán\",\"WDMdn8\":\"Câu hỏi tùy chỉnh\",\"O6mra8\":\"Câu hỏi tùy chỉnh\",\"axv/Mi\":\"Mẫu tùy chỉnh\",\"2YeVGY\":\"Đã sao chép liên kết khách hàng vào bộ nhớ tạm\",\"QMHSMS\":\"Khách hàng sẽ nhận email xác nhận hoàn tiền\",\"L/Qc+w\":\"Địa chỉ email khách hàng\",\"wpfWhJ\":\"Tên khách hàng\",\"GIoqtA\":\"Họ khách hàng\",\"NihQNk\":\"Khách hàng\",\"7gsjkI\":\"Tùy chỉnh email gửi cho khách hàng bằng mẫu Liquid. Các mẫu này sẽ được dùng làm mặc định cho tất cả sự kiện trong tổ chức của bạn.\",\"xJaTUK\":\"Tùy chỉnh bố cục, màu sắc và thương hiệu của trang chủ sự kiện.\",\"MXZfGN\":\"Tùy chỉnh các câu hỏi được hỏi trong quá trình thanh toán để thu thập thông tin quan trọng từ người tham dự.\",\"iX6SLo\":\"Tùy chỉnh văn bản trên nút tiếp tục\",\"pxNIxa\":\"Tùy chỉnh mẫu email của bạn bằng mẫu Liquid\",\"3trPKm\":\"Tùy chỉnh giao diện trang tổ chức của bạn\",\"U0sC6H\":\"Hàng ngày\",\"/gWrVZ\":\"Doanh thu hàng ngày, thuế, phí và hoàn tiền cho tất cả sự kiện\",\"zgCHnE\":\"Báo cáo doanh số hàng ngày\",\"nHm0AI\":\"Chi tiết doanh số hàng ngày, thuế và phí\",\"1aPnDT\":\"Khiêu vũ\",\"pvnfJD\":\"Tối\",\"MaB9wW\":\"Hủy ngày\",\"e6cAxJ\":\"Đã hủy ngày\",\"81jBnC\":\"Hủy ngày thành công\",\"a/C/6R\":\"Tạo ngày thành công\",\"IW7Q+u\":\"Đã xóa ngày\",\"rngCAz\":\"Xóa ngày thành công\",\"lnYE59\":\"Ngày của sự kiện\",\"gnBreG\":\"Ngày đặt đơn hàng\",\"vHbfoQ\":\"Đã kích hoạt lại ngày\",\"hvah+S\":\"Đã mở lại ngày để bán vé mới\",\"Ez0YsD\":\"Cập nhật ngày thành công\",\"VTsZuy\":\"Ngày và giờ được quản lý trên\",\"/ITcnz\":\"ngày\",\"H7OUPr\":\"Ngày\",\"JtHrX9\":\"Ngày trong tháng\",\"J/Upwb\":\"ngày\",\"vDVA2I\":\"Các ngày trong tháng\",\"rDLvlL\":\"Các ngày trong tuần\",\"r6zgGo\":\"Tháng 12\",\"jbq7j2\":\"Từ chối\",\"ovBPCi\":\"Mặc định\",\"JtI4vj\":\"Thu thập thông tin người tham dự mặc định\",\"ULjv90\":\"Sức chứa mặc định cho mỗi ngày\",\"3R/Tu2\":\"Xử lý phí mặc định\",\"1bZAZA\":\"Mẫu mặc định sẽ được sử dụng\",\"HNlEFZ\":\"xóa\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Xóa \",[\"count\"],\" ngày đã chọn? Các ngày có đơn hàng sẽ bị bỏ qua. Không thể hoàn tác.\"],\"vu7gDm\":\"Xóa đối tác\",\"KZN4Lc\":\"Xóa tất cả\",\"6EkaOO\":\"Xóa ngày\",\"io0G93\":\"Xóa sự kiện\",\"+jw/c1\":\"Xóa ảnh\",\"hdyeZ0\":\"Xóa công việc\",\"xxjZeP\":\"Xóa địa điểm\",\"sY3tIw\":\"Xóa ban tổ chức\",\"UBv8UK\":\"Xóa vĩnh viễn\",\"dPyJ15\":\"Xóa mẫu\",\"mxsm1o\":\"Xóa câu hỏi này? Hành động này không thể hoàn tác.\",\"snMaH4\":\"Xóa webhook\",\"LIZZLY\":[\"Đã xóa \",[\"0\"],\" ngày\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Bỏ chọn tất cả\",\"NvuEhl\":\"Các yếu tố thiết kế\",\"H8kMHT\":\"Không nhận được mã?\",\"G8KNgd\":\"Địa điểm khác\",\"E/QGRL\":\"Đã tắt\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Bỏ qua thông báo này\",\"BREO0S\":\"Hiển thị hộp kiểm cho phép khách hàng đăng ký nhận thông tin tiếp thị từ ban tổ chức sự kiện này.\",\"pfa8F0\":\"Tên hiển thị\",\"Kdpf90\":\"Đừng quên!\",\"352VU2\":\"Chưa có tài khoản? <0>Đăng ký\",\"AXXqG+\":\"Quyên góp\",\"DPfwMq\":\"Xong\",\"JoPiZ2\":\"Hướng dẫn cho nhân viên cửa\",\"2+O9st\":\"Tải xuống báo cáo bán hàng, người tham dự và tài chính cho tất cả đơn hàng đã hoàn thành.\",\"eneWvv\":\"Bản nháp\",\"Ts8hhq\":\"Do nguy cơ spam cao, bạn phải kết nối tài khoản Stripe trước khi có thể chỉnh sửa mẫu email. Điều này để đảm bảo tất cả các nhà tổ chức sự kiện được xác minh và có trách nhiệm.\",\"TnzbL+\":\"Do nguy cơ spam cao, bạn phải kết nối tài khoản Stripe trước khi có thể gửi tin nhắn cho người tham dự.\\nĐiều này để đảm bảo tất cả nhà tổ chức sự kiện được xác minh và có trách nhiệm.\",\"euc6Ns\":\"Nhân đôi\",\"YueC+F\":\"Nhân đôi ngày\",\"KRmTkx\":\"Nhân bản sản phẩm\",\"Jd3ymG\":\"Thời lượng phải ít nhất 1 phút.\",\"KIjvtr\":\"Tiếng Hà Lan\",\"22xieU\":\"ví dụ 180 (3 giờ)\",\"/zajIE\":\"ví dụ: Buổi sáng\",\"SPKbfM\":\"ví dụ: Mua vé, Đăng ký ngay\",\"fc7wGW\":\"ví dụ: Cập nhật quan trọng về vé của bạn\",\"54MPqC\":\"ví dụ: Tiêu chuẩn, Cao cấp, Doanh nghiệp\",\"3RQ81z\":\"Mỗi người sẽ nhận được email với một suất đã được giữ chỗ để hoàn tất việc mua hàng.\",\"5oD9f/\":\"Sớm hơn\",\"LTzmgK\":[\"Chỉnh sửa mẫu \",[\"0\"]],\"v4+lcZ\":\"Chỉnh sửa đối tác\",\"2iZEz7\":\"Chỉnh sửa câu trả lời\",\"t2bbp8\":\"Chỉnh sửa người tham dự\",\"etaWtB\":\"Chỉnh sửa thông tin người tham dự\",\"+guao5\":\"Chỉnh sửa cấu hình\",\"1Mp/A4\":\"Chỉnh sửa ngày\",\"m0ZqOT\":\"Chỉnh sửa địa điểm\",\"8oivFT\":\"Chỉnh sửa địa điểm\",\"vRWOrM\":\"Chỉnh sửa thông tin đơn hàng\",\"fW5sSv\":\"Chỉnh sửa webhook\",\"nP7CdQ\":\"Chỉnh sửa webhook\",\"MRZxAn\":\"Đã chỉnh sửa\",\"uBAxNB\":\"Trình chỉnh sửa\",\"aqxYLv\":\"Giáo dục\",\"iiWXDL\":\"Lỗi đủ điều kiện\",\"zPiC+q\":\"Danh Sách Đăng Ký Đủ Điều Kiện\",\"SiVstt\":\"Email và tin nhắn theo lịch\",\"V2sk3H\":\"Email & Mẫu\",\"hbwCKE\":\"Đã sao chép địa chỉ email vào clipboard\",\"dSyJj6\":\"Địa chỉ email không khớp\",\"elW7Tn\":\"Nội dung email\",\"ZsZeV2\":\"Email là bắt buộc\",\"Be4gD+\":\"Xem trước email\",\"6IwNUc\":\"Mẫu email\",\"H/UMUG\":\"Yêu cầu xác minh email\",\"L86zy2\":\"Xác thực email thành công!\",\"FSN4TS\":\"Nhúng widget\",\"z9NkYY\":\"Tiện ích có thể nhúng\",\"Qj0GKe\":\"Bật tự phục vụ cho người tham dự\",\"hEtQsg\":\"Bật tự phục vụ cho người tham dự theo mặc định\",\"Upeg/u\":\"Kích hoạt mẫu này để gửi email\",\"7dSOhU\":\"Bật danh sách chờ\",\"RxzN1M\":\"Đã bật\",\"xDr/ct\":\"Kết thúc\",\"sGjBEq\":\"Ngày và giờ kết thúc (tùy chọn)\",\"PKXt9R\":\"Ngày kết thúc phải sau ngày bắt đầu\",\"UmzbPa\":\"Ngày kết thúc của buổi\",\"ZayGC7\":\"Kết thúc vào một ngày\",\"48Y16Q\":\"Thời gian kết thúc (tùy chọn)\",\"jpNdOC\":\"Giờ kết thúc của buổi\",\"TbaYrr\":[\"Đã kết thúc \",[\"0\"]],\"CFgwiw\":[\"Kết thúc \",[\"0\"]],\"SqOIQU\":\"Nhập giá trị sức chứa hoặc chọn không giới hạn.\",\"h37gRz\":\"Nhập nhãn hoặc chọn xóa nó.\",\"7YZofi\":\"Nhập tiêu đề và nội dung để xem trước\",\"khyScF\":\"Nhập thời gian để dịch chuyển.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Nhập email đối tác (tùy chọn)\",\"ARkzso\":\"Nhập tên đối tác\",\"ej4L8b\":\"Nhập sức chứa\",\"6KnyG0\":\"Nhập email\",\"INDKM9\":\"Nhập tiêu đề email...\",\"xUgUTh\":\"Nhập tên\",\"9/1YKL\":\"Nhập họ\",\"VpwcSk\":\"Nhập mật khẩu mới\",\"kWg31j\":\"Nhập mã đối tác duy nhất\",\"C3nD/1\":\"Nhập email của bạn\",\"VmXiz4\":\"Nhập email của bạn và chúng tôi sẽ gửi cho bạn hướng dẫn để đặt lại mật khẩu.\",\"n9V+ps\":\"Nhập tên của bạn\",\"IdULhL\":\"Nhập số VAT của bạn bao gồm mã quốc gia, không có khoảng trắng (ví dụ: IE1234567A, DE123456789)\",\"o21Y+P\":\"mục\",\"X88/6w\":\"Các mục sẽ xuất hiện ở đây khi khách hàng tham gia danh sách chờ cho các sản phẩm đã bán hết.\",\"LslKhj\":\"Lỗi khi tải nhật ký\",\"VCNHvW\":\"Sự kiện đã lưu trữ\",\"ZD0XSb\":\"Sự kiện đã được lưu trữ thành công\",\"WgD6rb\":\"Danh mục sự kiện\",\"b46pt5\":\"Ảnh bìa sự kiện\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Sự kiện đã tạo\",\"1Hzev4\":\"Mẫu tùy chỉnh sự kiện\",\"7u9/DO\":\"Sự kiện đã được xóa thành công\",\"imgKgl\":\"Mô tả sự kiện\",\"kJDmsI\":\"Chi tiết sự kiện\",\"m/N7Zq\":\"Địa Chỉ Đầy Đủ Sự Kiện\",\"Nl1ZtM\":\"Địa điểm sự kiện\",\"PYs3rP\":\"Tên sự kiện\",\"HhwcTQ\":\"Tên sự kiện\",\"WZZzB6\":\"Tên sự kiện là bắt buộc\",\"Wd5CDM\":\"Tên sự kiện nên ít hơn 150 ký tự\",\"4JzCvP\":\"Sự kiện không có sẵn\",\"Gh9Oqb\":\"Tên ban tổ chức sự kiện\",\"mImacG\":\"Trang sự kiện\",\"Hk9Ki/\":\"Sự kiện đã được khôi phục thành công\",\"JyD0LH\":\"Cài đặt sự kiện\",\"cOePZk\":\"Thời gian sự kiện\",\"e8WNln\":\"Múi giờ sự kiện\",\"GeqWgj\":\"Múi Giờ Sự Kiện\",\"XVLu2v\":\"Tiêu đề sự kiện\",\"OfmsI9\":\"Sự kiện quá mới\",\"4SILkp\":\"Tổng cộng sự kiện\",\"YDVUVl\":\"Loại sự kiện\",\"+HeiVx\":\"Sự kiện đã cập nhật\",\"4K2OjV\":\"Địa Điểm Sự Kiện\",\"19j6uh\":\"Hiệu suất sự kiện\",\"PC3/fk\":\"Sự kiện bắt đầu trong 24 giờ tới\",\"nwiZdc\":[\"Mỗi \",[\"0\"]],\"2LJU4o\":[\"Mỗi \",[\"0\"],\" ngày\"],\"yLiYx+\":[\"Mỗi \",[\"0\"],\" tháng\"],\"nn9ice\":[\"Mỗi \",[\"0\"],\" tuần\"],\"Cdr8f9\":[\"Mỗi \",[\"0\"],\" tuần vào \",[\"1\"]],\"GVEHRk\":[\"Mỗi \",[\"0\"],\" năm\"],\"fTFfOK\":\"Mọi mẫu email phải bao gồm nút hành động liên kết đến trang thích hợp\",\"BVinvJ\":\"Ví dụ: \\\"Bạn biết đến chúng tôi như thế nào?\\\", \\\"Tên công ty cho hóa đơn\\\"\",\"2hGPQG\":\"Ví dụ: \\\"Cỡ áo\\\", \\\"Sở thích ăn uống\\\", \\\"Chức danh\\\"\",\"qNuTh3\":\"Ngoại lệ\",\"M1RnFv\":\"Đã hết hạn\",\"kF8HQ7\":\"Xuất câu trả lời\",\"2KAI4N\":\"Xuất CSV\",\"JKfSAv\":\"Xuất thất bại. Vui lòng thử lại.\",\"SVOEsu\":\"Đã bắt đầu xuất. Đang chuẩn bị tệp...\",\"wuyaZh\":\"Xuất thành công\",\"9bpUSo\":\"Đang xuất danh sách đối tác\",\"jtrqH9\":\"Đang xuất danh sách người tham dự\",\"R4Oqr8\":\"Xuất hoàn tất. Đang tải xuống tệp...\",\"UlAK8E\":\"Đang xuất đơn hàng\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Thất bại\",\"8uOlgz\":\"Thất bại lúc\",\"tKcbYd\":\"Công việc thất bại\",\"SsI9v/\":\"Không thể hủy đơn hàng. Vui lòng thử lại.\",\"LdPKPR\":\"Không thể gán cấu hình\",\"PO0cfn\":\"Không thể hủy ngày\",\"YUX+f+\":\"Không thể hủy các ngày\",\"SIHgVQ\":\"Không thể hủy tin nhắn\",\"cEFg3R\":\"Không thể tạo đối tác\",\"dVgNF1\":\"Không thể tạo cấu hình\",\"fAoRRJ\":\"Không thể tạo lịch trình\",\"U66oUa\":\"Không thể tạo mẫu\",\"aFk48v\":\"Không thể xóa cấu hình\",\"n1CYMH\":\"Không thể xóa ngày\",\"KXv+Qn\":\"Không thể xóa ngày. Có thể đã có đơn hàng.\",\"JJ0uRo\":\"Không thể xóa các ngày\",\"rgoBnv\":\"Không thể xóa sự kiện\",\"Zw6LWb\":\"Không thể xóa công việc\",\"tq0abZ\":\"Không thể xóa các công việc\",\"2mkc3c\":\"Không thể xóa ban tổ chức\",\"vKMKnu\":\"Không thể xóa câu hỏi\",\"xFj7Yj\":\"Không thể xóa mẫu\",\"jo3Gm6\":\"Không thể xuất danh sách đối tác\",\"Jjw03p\":\"Không thể xuất danh sách người tham dự\",\"ZPwFnN\":\"Không thể xuất đơn hàng\",\"zGE3CH\":\"Xuất báo cáo thất bại. Vui lòng thử lại.\",\"lS9/aZ\":\"Không thể tải người nhận\",\"X4o0MX\":\"Không thể tải Webhook\",\"ETcU7q\":\"Không thể cung cấp chỗ\",\"5670b9\":\"Không thể cung cấp vé\",\"e5KIbI\":\"Không thể kích hoạt lại ngày\",\"7zyx8a\":\"Không thể xóa khỏi danh sách chờ\",\"A/P7PX\":\"Không thể xóa ghi đè\",\"ogWc1z\":\"Mở lại ngày không thành công\",\"0+iwE5\":\"Không thể sắp xếp lại câu hỏi\",\"EJPAcd\":\"Không thể gửi lại xác nhận đơn hàng\",\"DjSbj3\":\"Không thể gửi lại vé\",\"YQ3QSS\":\"Không thể gửi lại mã xác thực\",\"wDioLj\":\"Không thể thử lại công việc\",\"DKYTWG\":\"Không thể thử lại các công việc\",\"WRREqF\":\"Không thể lưu ghi đè\",\"sj/eZA\":\"Không thể lưu ghi đè giá\",\"780n8A\":\"Không thể lưu cài đặt sản phẩm\",\"zTkTF3\":\"Không thể lưu mẫu\",\"l6acRV\":\"Không thể lưu cài đặt VAT. Vui lòng thử lại.\",\"T6B2gk\":\"Không thể gửi tin nhắn. Vui lòng thử lại.\",\"lKh069\":\"Không thể bắt đầu quá trình xuất\",\"t/KVOk\":\"Không thể bắt đầu mạo danh. Vui lòng thử lại.\",\"QXgjH0\":\"Không thể dừng mạo danh. Vui lòng thử lại.\",\"i0QKrm\":\"Không thể cập nhật đối tác\",\"NNc33d\":\"Không thể cập nhật câu trả lời.\",\"E9jY+o\":\"Không thể cập nhật người tham dự\",\"uQynyf\":\"Không thể cập nhật cấu hình\",\"i2PFQJ\":\"Không thể cập nhật trạng thái sự kiện\",\"EhlbcI\":\"Cập nhật cấp độ nhắn tin thất bại\",\"rpGMzC\":\"Không thể cập nhật đơn hàng\",\"T2aCOV\":\"Không thể cập nhật trạng thái ban tổ chức\",\"Eeo/Gy\":\"Không thể cập nhật cài đặt\",\"kqA9lY\":\"Không thể cập nhật cài đặt VAT\",\"7/9RFs\":\"Không thể tải ảnh lên.\",\"nkNfWu\":\"Tải ảnh lên không thành công. Vui lòng thử lại.\",\"rxy0tG\":\"Không thể xác thực email\",\"QRUpCk\":\"Gia đình\",\"5LO38w\":\"Thanh toán nhanh đến ngân hàng của bạn\",\"4lgLew\":\"Tháng 2\",\"9bHCo2\":\"Đơn vị tiền tệ phí\",\"/sV91a\":\"Xử lý phí\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Phí đã bỏ qua\",\"cf35MA\":\"Lễ hội\",\"pAey+4\":\"Tệp quá lớn. Kích thước tối đa là 5MB.\",\"VejKUM\":\"Vui lòng điền thông tin của bạn ở trên trước\",\"/n6q8B\":\"Phim\",\"L1qbUx\":\"Lọc khách\",\"8OvVZZ\":\"Lọc Người Tham Dự\",\"N/H3++\":\"Lọc theo ngày\",\"mvrlBO\":\"Lọc theo sự kiện\",\"g+xRXP\":\"Hoàn tất thiết lập Stripe\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"Đầu tiên\",\"1vBhpG\":\"Người tham dự đầu tiên\",\"4pwejF\":\"Tên là bắt buộc\",\"3lkYdQ\":\"Phí cố định\",\"6bBh3/\":\"Phí cố định\",\"zWqUyJ\":\"Phí cố định được tính cho mỗi giao dịch\",\"LWL3Bs\":\"Phí cố định phải bằng 0 hoặc lớn hơn\",\"0RI8m4\":\"Tắt đèn flash\",\"q0923e\":\"Bật đèn flash\",\"lWxAUo\":\"Ẩm thực\",\"nFm+5u\":\"Văn bản chân trang\",\"a8nooQ\":\"Thứ tư\",\"mob/am\":\"T6\",\"wtuVU4\":\"Tần suất\",\"xVhQZV\":\"Thứ 6\",\"39y5bn\":\"Thứ Sáu\",\"f5UbZ0\":\"Toàn quyền sở hữu dữ liệu\",\"MY2SVM\":\"Hoàn tiền toàn bộ\",\"UsIfa8\":\"Địa chỉ đầy đủ đã xác định\",\"PGQLdy\":\"tương lai\",\"8N/j1s\":\"Chỉ các ngày trong tương lai\",\"yRx/6K\":\"Các ngày trong tương lai sẽ được sao chép với sức chứa đặt lại về không\",\"T02gNN\":\"Vé phổ thông\",\"3ep0Gx\":\"Thông tin chung về nhà tổ chức của bạn\",\"ziAjHi\":\"Tạo\",\"exy8uo\":\"Tạo mã\",\"4CETZY\":\"Chỉ đường\",\"pjkEcB\":\"Nhận thanh toán\",\"lGYzP6\":\"Nhận thanh toán qua Stripe\",\"ZDIydz\":\"Bắt đầu\",\"u6FPxT\":\"Lấy vé\",\"8KDgYV\":\"Chuẩn bị sự kiện của bạn\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Quay lại\",\"oNL5vN\":\"Đến trang sự kiện\",\"gHSuV/\":\"Đi đến trang chủ\",\"8+Cj55\":\"Đi tới Lịch trình\",\"6nDzTl\":\"Dễ đọc\",\"76gPWk\":\"Đã hiểu\",\"aGWZUr\":\"Doanh thu gộp\",\"n8IUs7\":\"Doanh thu gộp\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Quản lý khách\",\"NUsTc4\":\"Đang diễn ra\",\"kTSQej\":[\"Xin chào \",[\"0\"],\", quản lý nền tảng của bạn từ đây.\"],\"dORAcs\":\"Đây là tất cả các vé liên kết với địa chỉ email của bạn.\",\"g+2103\":\"Đây là liên kết đối tác của bạn\",\"bVsnqU\":\"Xin chào,\",\"/iE8xx\":\"Phí Hi.Events\",\"zppscQ\":\"Phí nền tảng Hi.Events và phân tích VAT theo giao dịch\",\"D+zLDD\":\"Ẩn\",\"DRErHC\":\"Ẩn với người tham dự - chỉ hiển thị với người tổ chức\",\"NNnsM0\":\"Ẩn tùy chọn nâng cao\",\"P+5Pbo\":\"Ẩn câu trả lời\",\"VMlRqi\":\"Ẩn chi tiết\",\"FmogyU\":\"Ẩn tùy chọn\",\"gtEbeW\":\"Nổi bật\",\"NF8sdv\":\"Tin nhắn nổi bật\",\"MXSqmS\":\"Làm nổi bật sản phẩm này\",\"7ER2sc\":\"Nổi bật\",\"sq7vjE\":\"Sản phẩm nổi bật sẽ có màu nền khác để nổi bật trên trang sự kiện.\",\"1+WSY1\":\"Sở thích\",\"yY8wAv\":\"Giờ\",\"sy9anN\":\"Thời gian khách hàng phải hoàn tất mua hàng sau khi nhận được đề nghị. Để trống nếu không giới hạn thời gian.\",\"n2ilNh\":\"Lịch trình kéo dài bao lâu?\",\"DMr2XN\":\"Bao lâu một lần?\",\"AVpmAa\":\"Cách thanh toán offline\",\"cceMns\":\"Cách VAT được áp dụng cho phí nền tảng chúng tôi tính cho bạn.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Tiếng Hungary\",\"8Wgd41\":\"Tôi xác nhận trách nhiệm của mình với tư cách là người kiểm soát dữ liệu\",\"O8m7VA\":\"Tôi đồng ý nhận thông báo qua email liên quan đến sự kiện này\",\"YLgdk5\":\"Tôi xác nhận đây là tin nhắn giao dịch liên quan đến sự kiện này\",\"4/kP5a\":\"Nếu tab mới không tự động mở, vui lòng nhấn nút bên dưới để tiếp tục thanh toán.\",\"W/eN+G\":\"Nếu để trống, địa chỉ sẽ được sử dụng để tạo liên kết Google Maps\",\"iIEaNB\":\"Nếu bạn có tài khoản với chúng tôi, bạn sẽ nhận được email với hướng dẫn về cách đặt lại mật khẩu.\",\"an5hVd\":\"Hình ảnh\",\"tSVr6t\":\"Mạo danh\",\"TWXU0c\":\"Mạo danh người dùng\",\"5LAZwq\":\"Đã bắt đầu mạo danh\",\"IMwcdR\":\"Đã dừng mạo danh\",\"0I0Hac\":\"Thông báo quan trọng\",\"yD3avI\":\"Quan trọng: Việc thay đổi địa chỉ email sẽ cập nhật liên kết để truy cập đơn hàng này. Bạn sẽ được chuyển hướng đến liên kết đơn hàng mới sau khi lưu.\",\"jT142F\":[\"Trong \",[\"diffHours\"],\" giờ\"],\"OoSyqO\":[\"Trong \",[\"diffMinutes\"],\" phút\"],\"PdMhEx\":[\"trong \",[\"0\"],\" phút qua\"],\"u7r0G5\":\"Trực tiếp — thiết lập địa điểm\",\"Ip0hl5\":\"in_person, online, unset, hoặc mixed\",\"F1Xp97\":\"Người tham dự riêng lẻ\",\"85e6zs\":\"Chèn token Liquid\",\"38KFY0\":\"Chèn biến\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Thanh toán Stripe ngay lập tức\",\"nbfdhU\":\"Tích hợp\",\"I8eJ6/\":\"Ghi chú nội bộ trên vé\",\"B2Tpo0\":\"Email không hợp lệ\",\"5tT0+u\":\"Định dạng email không hợp lệ\",\"f9WRpE\":\"Loại tệp không hợp lệ. Vui lòng tải lên hình ảnh.\",\"tnL+GP\":\"Cú pháp Liquid không hợp lệ. Vui lòng sửa và thử lại.\",\"N9JsFT\":\"Định dạng số VAT không hợp lệ\",\"g+lLS9\":\"Mời thành viên nhóm\",\"1z26sk\":\"Mời thành viên nhóm\",\"KR0679\":\"Mời các thành viên nhóm\",\"aH6ZIb\":\"Mời nhóm của bạn\",\"IuMGvq\":\"Hóa đơn\",\"Lj7sBL\":\"Tiếng Ý\",\"F5/CBH\":\"mục\",\"BzfzPK\":\"Mục\",\"rjyWPb\":\"Tháng 1\",\"KmWyx0\":\"Công việc\",\"o5r6b2\":\"Đã xóa công việc\",\"cd0jIM\":\"Chi tiết công việc\",\"ruJO57\":\"Tên công việc\",\"YZi+Hu\":\"Công việc đã được xếp hàng để thử lại\",\"nCywLA\":\"Tham gia từ bất cứ đâu\",\"SNzppu\":\"Tham gia danh sách chờ\",\"dLouFI\":[\"Tham gia danh sách chờ cho \",[\"productDisplayName\"]],\"2gMuHR\":\"Đã tham gia\",\"u4ex5r\":\"Tháng 7\",\"zeEQd/\":\"Tháng 6\",\"MxjCqk\":\"Chỉ đang tìm vé của bạn?\",\"xOTzt5\":\"vừa xong\",\"0RihU9\":\"Vừa kết thúc\",\"lB2hSG\":[\"Giữ cho tôi cập nhật tin tức và sự kiện từ \",[\"0\"]],\"ioFA9i\":\"Giữ lại lợi nhuận.\",\"4Sffp7\":\"Nhãn cho buổi\",\"o66QSP\":\"cập nhật nhãn\",\"RtKKbA\":\"Cuối cùng\",\"DruLRc\":\"14 ngày qua\",\"ve9JTU\":\"Họ là bắt buộc\",\"h0Q9Iw\":\"Phản hồi cuối cùng\",\"gw3Ur5\":\"Trình kích hoạt cuối cùng\",\"FIq1Ba\":\"Trễ hơn\",\"xvnLMP\":\"Check-in gần nhất\",\"pzAivY\":\"Vĩ độ của địa điểm đã xác định\",\"N5TErv\":\"Để trống cho không giới hạn\",\"L/hDDD\":\"Để trống để áp dụng danh sách check-in này cho tất cả các buổi\",\"9Pf3wk\":\"Để bật để bao gồm mọi vé của sự kiện. Tắt để chọn vé cụ thể.\",\"Hq2BzX\":\"Cho họ biết về sự thay đổi\",\"+uexiy\":\"Cho họ biết về các thay đổi\",\"exYcTF\":\"Thư viện\",\"1njn7W\":\"Sáng\",\"1qY5Ue\":\"Liên kết hết hạn hoặc không hợp lệ\",\"+zSD/o\":\"Liên kết đến trang chủ sự kiện\",\"psosdY\":\"Liên kết đến chi tiết đơn hàng\",\"6JzK4N\":\"Liên kết đến vé\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Liên kết được phép\",\"2BBAbc\":\"Danh sách\",\"5NZpX8\":\"Xem dạng danh sách\",\"dF6vP6\":\"Trực tiếp\",\"fpMs2Z\":\"TRỰC TIẾP\",\"D9zTjx\":\"Sự Kiện Trực Tiếp\",\"C33p4q\":\"Các ngày đã tải\",\"WdmJIX\":\"Đang tải xem trước...\",\"IoDI2o\":\"Đang tải token...\",\"G3Ge9Z\":\"Đang tải nhật ký webhook...\",\"NFxlHW\":\"Đang tải Webhooks\",\"E0DoRM\":\"Đã xóa địa điểm\",\"NtLHT3\":\"Địa chỉ đã định dạng của địa điểm\",\"h4vxDc\":\"Vĩ độ địa điểm\",\"f2TMhR\":\"Kinh độ địa điểm\",\"lnCo2f\":\"Chế độ địa điểm\",\"8pmGFk\":\"Tên địa điểm\",\"7w8lJU\":\"Đã lưu địa điểm\",\"YsRXDD\":\"Đã cập nhật địa điểm\",\"A/kIva\":\"cập nhật địa điểm\",\"VppBoU\":\"Địa điểm\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Ảnh bìa\",\"gddQe0\":\"Logo và ảnh bìa cho nhà tổ chức của bạn\",\"TBEnp1\":\"Logo sẽ được hiển thị trong phần đầu trang\",\"Jzu30R\":\"Logo sẽ được hiển thị trên vé\",\"zKTMTg\":\"Kinh độ của địa điểm đã xác định\",\"PSRm6/\":\"Tra cứu vé của tôi\",\"yJFu/X\":\"Văn phòng chính\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Quản lý \",[\"0\"]],\"wZJfA8\":\"Quản lý ngày và giờ cho sự kiện định kỳ của bạn\",\"RlzPUE\":\"Quản lý trên Stripe\",\"6NXJRK\":\"Quản lý lịch trình\",\"zXuaxY\":\"Quản lý danh sách chờ của sự kiện, xem thống kê và cung cấp vé cho người tham dự.\",\"BWTzAb\":\"Thủ công\",\"g2npA5\":\"Ưu đãi thủ công\",\"hg6l4j\":\"Tháng 3\",\"pqRBOz\":\"Đánh dấu là đã xác thực (quản trị viên ghi đè)\",\"2L3vle\":\"Tin nhắn tối đa / 24h\",\"Qp4HWD\":\"Người nhận tối đa / tin nhắn\",\"3JzsDb\":\"Tháng 5\",\"agPptk\":\"Phương tiện\",\"xDAtGP\":\"Tin nhắn\",\"bECJqy\":\"Tin nhắn được phê duyệt thành công\",\"1jRD0v\":\"Nhắn tin cho người tham dự có vé cụ thể\",\"uQLXbS\":\"Tin nhắn đã bị hủy\",\"48rf3i\":\"Tin nhắn không được quá 5000 ký tự\",\"ZPj0Q8\":\"Chi tiết tin nhắn\",\"Vjat/X\":\"Tin nhắn là bắt buộc\",\"0/yJtP\":\"Nhắn tin cho chủ đơn hàng có sản phẩm cụ thể\",\"saG4At\":\"Tin nhắn đã được lên lịch\",\"mFdA+i\":\"Cấp độ nhắn tin\",\"v7xKtM\":\"Cấp độ nhắn tin cập nhật thành công\",\"H9HlDe\":\"phút\",\"agRWc1\":\"Phút\",\"YYzBv9\":\"T2\",\"zz/Wd/\":\"Chế độ\",\"fpMgHS\":\"Thứ 2\",\"hty0d5\":\"Thứ Hai\",\"JbIgPz\":\"Giá trị tiền tệ là tổng gần đúng của tất cả các loại tiền tệ\",\"qvF+MT\":\"Giám sát và quản lý các công việc nền thất bại\",\"kY2ll9\":\"tháng\",\"HajiZl\":\"Tháng\",\"+8Nek/\":\"Hàng tháng\",\"1LkxnU\":\"Mẫu hàng tháng\",\"6jefe3\":\"tháng\",\"f8jrkd\":\"thêm\",\"JcD7qf\":\"Hành động khác\",\"w36OkR\":\"Sự kiện được xem nhiều nhất (14 ngày qua)\",\"+Y/na7\":\"Di chuyển tất cả các ngày sớm hơn hoặc trễ hơn\",\"3DIpY0\":\"Nhiều địa điểm\",\"g9cQCP\":\"Nhiều loại vé\",\"GfaxEk\":\"Âm nhạc\",\"oVGCGh\":\"Vé Của Tôi\",\"8/brI5\":\"Tên là bắt buộc\",\"sFFArG\":\"Tên phải ít hơn 255 ký tự\",\"sCV5Yc\":\"Tên sự kiện\",\"xxU3NX\":\"Doanh thu ròng\",\"7I8LlL\":\"Sức chứa mới\",\"n1GRql\":\"Nhãn mới\",\"y0Fcpd\":\"Địa điểm mới\",\"ArHT/C\":\"Đăng ký mới\",\"uK7xWf\":\"Thời gian mới:\",\"veT5Br\":\"Buổi tiếp theo\",\"WXtl5X\":[\"Tiếp: \",[\"nextFormatted\"]],\"eWRECP\":\"Cuộc sống về đêm\",\"HSw5l3\":\"Không - Tôi là cá nhân hoặc doanh nghiệp không đăng ký VAT\",\"VHfLAW\":\"Không có tài khoản\",\"+jIeoh\":\"Không tìm thấy tài khoản\",\"074+X8\":\"Không có Webhook hoạt động\",\"zxnup4\":\"Không có đối tác nào\",\"Dwf4dR\":\"Chưa có câu hỏi cho người tham dự\",\"th7rdT\":\"Không có khách\",\"PKySlW\":\"Chưa có người tham dự cho ngày này.\",\"/UC6qk\":\"Không tìm thấy dữ liệu phân bổ\",\"E2vYsO\":\"Stripe chưa báo cáo khả năng nào.\",\"amMkpL\":\"Hết chỗ\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Không có danh sách đăng ký nào cho sự kiện này.\",\"wG+knX\":\"Chưa có check-in\",\"+dAKxg\":\"Không tìm thấy cấu hình\",\"LiLk8u\":\"Không có kết nối khả dụng\",\"eb47T5\":\"Không tìm thấy dữ liệu cho bộ lọc đã chọn. Hãy thử điều chỉnh khoảng thời gian hoặc tiền tệ.\",\"lFVUyx\":\"Không có danh sách check-in dành riêng cho ngày\",\"I8mtzP\":\"Không có ngày nào khả dụng trong tháng này. Hãy thử chuyển sang tháng khác.\",\"yDukIL\":\"Không có ngày nào khớp với các bộ lọc hiện tại.\",\"B7phdj\":\"Không có ngày nào khớp với bộ lọc của bạn\",\"/ZB4Um\":\"Không có ngày nào khớp với tìm kiếm của bạn\",\"gEdNe8\":\"Chưa có ngày nào được lên lịch\",\"27GYXJ\":\"Chưa có ngày nào được lên lịch.\",\"pZNOT9\":\"Không có ngày kết thúc\",\"dW40Uz\":\"Không tìm thấy sự kiện\",\"8pQ3NJ\":\"Không có sự kiện nào bắt đầu trong 24 giờ tới\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"Không có công việc thất bại\",\"EpvBAp\":\"Không có hóa đơn\",\"XZkeaI\":\"Không tìm thấy nhật ký\",\"nrSs2u\":\"Không tìm thấy tin nhắn\",\"Rj99yx\":\"Không có buổi nào khả dụng\",\"IFU1IG\":\"Không có buổi nào vào ngày này\",\"OVFwlg\":\"Chưa có câu hỏi đơn hàng\",\"EJ7bVz\":\"Không tìm thấy đơn hàng\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"Chưa có đơn hàng nào cho ngày này.\",\"wUv5xQ\":\"Không có hoạt động của nhà tổ chức trong 14 ngày qua\",\"vLd1tV\":\"Không có ngữ cảnh nhà tổ chức khả dụng.\",\"B7w4KY\":\"Không có nhà tổ chức nào khác\",\"PChXMe\":\"Không có đơn hàng đã thanh toán\",\"6jYQGG\":\"Không có sự kiện trước đó\",\"CHzaTD\":\"Không có sự kiện phổ biến trong 14 ngày qua\",\"zK/+ef\":\"Không có sản phẩm nào có sẵn để lựa chọn\",\"M1/lXs\":\"Chưa có sản phẩm nào được cấu hình cho sự kiện này.\",\"kY7XDn\":\"Không có sản phẩm nào có người trong danh sách chờ\",\"wYiAtV\":\"Không có đăng ký tài khoản gần đây\",\"UW90md\":\"Không tìm thấy người nhận\",\"QoAi8D\":\"Không có phản hồi\",\"JeO7SI\":\"Không phản hồi\",\"EK/G11\":\"Chưa có phản hồi\",\"7J5OKy\":\"Chưa có địa điểm nào được lưu\",\"wpCjcf\":\"Chưa có địa điểm nào được lưu. Chúng sẽ xuất hiện ở đây khi bạn tạo sự kiện kèm địa chỉ.\",\"mPdY6W\":\"Không có gợi ý\",\"3sRuiW\":\"Không tìm thấy vé\",\"k2C0ZR\":\"Không có ngày sắp tới\",\"yM5c0q\":\"Không có sự kiện sắp tới\",\"qpC74J\":\"Không tìm thấy người dùng\",\"8wgkoi\":\"Không có sự kiện được xem trong 14 ngày qua\",\"Arzxc1\":\"Không có mục trong danh sách chờ\",\"n5vdm2\":\"Chưa có sự kiện webhook nào được ghi nhận cho điểm cuối này. Sự kiện sẽ xuất hiện ở đây khi chúng được kích hoạt.\",\"4GhX3c\":\"Không có webhooks\",\"4+am6b\":\"Không, giữ tôi ở đây\",\"4JVMUi\":\"chưa chỉnh sửa\",\"Itw24Q\":\"Chưa check-in\",\"x5+Lcz\":\"Chưa Đăng Ký\",\"8n10sz\":\"Không Đủ Điều Kiện\",\"kLvU3F\":\"Thông báo cho người tham dự và dừng bán\",\"t9QlBd\":\"Tháng 11\",\"kAREMN\":\"Số ngày cần tạo\",\"6u1B3O\":\"Buổi\",\"mmoE62\":\"Buổi đã hủy\",\"UYWXdN\":\"Ngày kết thúc buổi\",\"k7dZT5\":\"Giờ kết thúc buổi\",\"Opinaj\":\"Nhãn buổi\",\"V9flmL\":\"Lịch buổi\",\"NUTUUs\":\"trang Lịch buổi\",\"AT8UKD\":\"Ngày bắt đầu buổi\",\"Um8bvD\":\"Giờ bắt đầu buổi\",\"Kh3WO8\":\"Tóm tắt buổi\",\"byXCTu\":\"Buổi\",\"KATw3p\":\"Buổi (chỉ tương lai)\",\"85rTR2\":\"Các buổi có thể được cấu hình sau khi tạo\",\"dzQfDY\":\"Tháng 10\",\"BwJKBw\":\"của\",\"9h7RDh\":\"Cung cấp\",\"EfK2O6\":\"Cung cấp suất\",\"3sVRey\":\"Cung cấp vé\",\"2O7Ybb\":\"Thời hạn đề nghị\",\"1jUg5D\":\"Đã đề nghị\",\"l+/HS6\":[\"Đề nghị hết hạn sau \",[\"timeoutHours\"],\" giờ.\"],\"lQgMLn\":\"Tên văn phòng hoặc địa điểm\",\"6Aih4U\":\"Ngoại tuyến\",\"Z6gBGW\":\"Thanh toán ngoại tuyến\",\"nO3VbP\":[\"Đang giảm giá \",[\"0\"]],\"oXOSPE\":\"Trực tuyến\",\"aqmy5k\":\"Trực tuyến — cung cấp thông tin kết nối\",\"LuZBbx\":\"Trực tuyến và trực tiếp\",\"IXuOqt\":\"Trực tuyến và trực tiếp — xem lịch trình\",\"w3DG44\":\"Chi tiết kết nối trực tuyến\",\"WjSpu5\":\"Sự kiện trực tuyến\",\"TP6jss\":\"Chi tiết kết nối sự kiện trực tuyến\",\"NdOxqr\":\"Chỉ quản trị viên tài khoản mới có thể xóa hoặc lưu trữ sự kiện. Liên hệ quản trị viên tài khoản của bạn để được hỗ trợ.\",\"rnoDMF\":\"Chỉ quản trị viên tài khoản mới có thể xóa hoặc lưu trữ ban tổ chức. Liên hệ quản trị viên tài khoản của bạn để được hỗ trợ.\",\"bU7oUm\":\"Chỉ gửi đến các đơn hàng có trạng thái này\",\"M2w1ni\":\"Chỉ hiển thị với mã khuyến mãi\",\"y8Bm7C\":\"Mở check-in\",\"RLz7P+\":\"Mở buổi\",\"cDSdPb\":\"Biệt danh tùy chọn hiển thị trong bộ chọn, ví dụ \\\"Phòng họp trụ sở\\\"\",\"HXMJxH\":\"Văn bản tùy chọn cho tuyên bố từ chối, thông tin liên hệ hoặc ghi chú cảm ơn (chỉ một dòng)\",\"L565X2\":\"tùy chọn\",\"8m9emP\":\"hoặc thêm một ngày đơn\",\"dSeVIm\":\"đơn hàng\",\"c/TIyD\":\"Đơn hàng & Vé\",\"H5qWhm\":\"Đơn hàng đã hủy\",\"b6+Y+n\":\"Đơn hàng hoàn tất\",\"x4MLWE\":\"Xác nhận đơn hàng\",\"CsTTH0\":\"Xác nhận đơn hàng đã được gửi lại thành công\",\"ppuQR4\":\"Đơn hàng được tạo\",\"0UZTSq\":\"Đơn Vị Tiền Tệ Đơn Hàng\",\"xtQzag\":\"Chi tiết đơn\",\"HdmwrI\":\"Email đơn hàng\",\"bwBlJv\":\"Tên trong đơn hàng\",\"vrSW9M\":\"Đơn hàng đã được hủy và hoàn tiền. Chủ đơn hàng đã được thông báo.\",\"rzw+wS\":\"Người đặt hàng\",\"oI/hGR\":\"Mã đơn hàng\",\"Pc729f\":\"Đơn Hàng Đang Chờ Thanh Toán Ngoại Tuyến\",\"F4NXOl\":\"Họ trong đơn hàng\",\"RQCXz6\":\"Giới hạn đơn hàng\",\"SO9AEF\":\"Giới hạn đơn hàng đã đặt\",\"5RDEEn\":\"Ngôn Ngữ Đơn Hàng\",\"vu6Arl\":\"Đơn hàng được đánh dấu là đã trả\",\"sLbJQz\":\"Không tìm thấy đơn hàng\",\"kvYpYu\":\"Không tìm thấy đơn hàng\",\"i8VBuv\":\"Số đơn hàng\",\"eJ8SvM\":\"Mã đơn, ngày mua, email người mua\",\"FaPYw+\":\"Chủ sở hữu đơn hàng\",\"eB5vce\":\"Chủ đơn hàng có sản phẩm cụ thể\",\"CxLoxM\":\"Chủ đơn hàng có sản phẩm\",\"DoH3fD\":\"Thanh Toán Đơn Hàng Đang Chờ\",\"UkHo4c\":\"Mã đơn hàng\",\"EZy55F\":\"Đơn hàng đã hoàn lại\",\"6eSHqs\":\"Trạng thái đơn hàng\",\"oW5877\":\"Tổng đơn hàng\",\"e7eZuA\":\"Đơn hàng cập nhật\",\"1SQRYo\":\"Đơn hàng đã được cập nhật thành công\",\"KndP6g\":\"URL đơn hàng\",\"3NT0Ck\":\"Đơn hàng đã bị hủy\",\"V5khLm\":\"đơn hàng\",\"sd5IMt\":\"Đơn hàng đã hoàn thành\",\"5It1cQ\":\"Đơn hàng đã được xuất\",\"tlKX/S\":\"Các đơn hàng kéo dài qua nhiều ngày sẽ được đánh dấu để xem xét thủ công.\",\"UQ0ACV\":\"Tổng đơn hàng\",\"B/EBQv\":\"Đơn hàng:\",\"qtGTNu\":\"Tài khoản tự nhiên\",\"ucgZ0o\":\"Tổ chức\",\"P/JHA4\":\"Ban tổ chức đã được lưu trữ thành công\",\"S3CZ5M\":\"Bảng điều khiển nhà tổ chức\",\"GzjTd0\":\"Ban tổ chức đã được xóa thành công\",\"Uu0hZq\":\"Email nhà tổ chức\",\"Gy7BA3\":\"Địa chỉ email nhà tổ chức\",\"SQqJd8\":\"Không tìm thấy nhà tổ chức\",\"HF8Bxa\":\"Ban tổ chức đã được khôi phục thành công\",\"wpj63n\":\"Cài đặt nhà tổ chức\",\"o1my93\":\"Cập nhật trạng thái nhà tổ chức thất bại. Vui lòng thử lại sau\",\"rLHma1\":\"Trạng thái nhà tổ chức đã được cập nhật\",\"LqBITi\":\"Mẫu của tổ chức/mặc định sẽ được sử dụng\",\"q4zH+l\":\"Nhà tổ chức\",\"/IX/7x\":\"Khác\",\"RsiDDQ\":\"Danh Sách Khác (Vé Không Bao Gồm)\",\"aDfajK\":\"Ngoài trời\",\"qMASRF\":\"Tin nhắn đi\",\"iCOVQO\":\"Ghi đè\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Ghi đè giá\",\"cnVIpl\":\"Đã xóa ghi đè\",\"6/dCYd\":\"Tổng quan\",\"6WdDG7\":\"Trang\",\"8uqsE5\":\"Trang không còn khả dụng\",\"QkLf4H\":\"URL trang\",\"sF+Xp9\":\"Lượt xem trang\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Tài khoản trả phí\",\"5F7SYw\":\"Hoàn tiền một phần\",\"fFYotW\":[\"Hoàn tiền một phần: \",[\"0\"]],\"i8day5\":\"Chuyển phí cho người mua\",\"k4FLBQ\":\"Chuyển cho người mua\",\"Ff0Dor\":\"Đã qua\",\"BFjW8X\":\"Quá hạn\",\"xTPjSy\":\"Sự kiện đã qua\",\"/l/ckQ\":\"Dán URL\",\"URAE3q\":\"Tạm dừng\",\"4fL/V7\":\"Thanh toán\",\"OZK07J\":\"Thanh toán để mở khóa\",\"c2/9VE\":\"Tải trọng\",\"5cxUwd\":\"Ngày thanh toán\",\"ENEPLY\":\"Phương thức thanh toán\",\"8Lx2X7\":\"Đã nhận thanh toán\",\"fx8BTd\":\"Thanh toán không khả dụng\",\"C+ylwF\":\"Tiền chuyển ra\",\"UbRKMZ\":\"Đang chờ\",\"UkM20g\":\"Đang chờ xem xét\",\"dPYu1F\":\"Theo người tham dự\",\"mQV/nJ\":\"mỗi phút\",\"VlXNyK\":\"Mỗi đơn hàng\",\"hauDFf\":\"Mỗi vé\",\"mnF83a\":\"Phí phần trăm\",\"TNLuRD\":\"Phí phần trăm (%)\",\"MixU2P\":\"Phần trăm phải từ 0 đến 100\",\"MkuVAZ\":\"Phần trăm của số tiền giao dịch\",\"/Bh+7r\":\"Hiệu suất\",\"fIp56F\":\"Xóa vĩnh viễn sự kiện này và tất cả dữ liệu liên quan.\",\"nJeeX7\":\"Xóa vĩnh viễn ban tổ chức này và tất cả các sự kiện của họ.\",\"wfCTgK\":\"Xóa vĩnh viễn ngày này\",\"6kPk3+\":\"Thông tin cá nhân\",\"zmwvG2\":\"Điện thoại\",\"SdM+Q1\":\"Chọn một địa điểm\",\"tSR/oe\":\"Chọn ngày kết thúc\",\"e8kzpp\":\"Chọn ít nhất một ngày trong tháng\",\"35C8QZ\":\"Chọn ít nhất một thứ trong tuần\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Đặt lúc\",\"wBJR8i\":\"Đang lên kế hoạch cho một sự kiện?\",\"J3lhKT\":\"Phí nền tảng\",\"RD51+P\":[\"Phí nền tảng \",[\"0\"],\" được khấu trừ từ khoản thanh toán của bạn\"],\"br3Y/y\":\"Phí nền tảng\",\"3buiaw\":\"Báo cáo phí nền tảng\",\"kv9dM4\":\"Doanh thu nền tảng\",\"PJ3Ykr\":\"Vui lòng kiểm tra vé của bạn để biết thời gian đã cập nhật. Vé của bạn vẫn còn hiệu lực — không cần làm gì trừ khi thời gian mới không phù hợp với bạn. Trả lời email này nếu bạn có thắc mắc.\",\"OtjenF\":\"Vui lòng nhập địa chỉ email hợp lệ\",\"jEw0Mr\":\"Vui lòng nhập URL hợp lệ\",\"n8+Ng/\":\"Vui lòng nhập mã 5 chữ số\",\"r+lQXT\":\"Vui lòng nhập mã số VAT của bạn\",\"Dvq0wf\":\"Vui lòng cung cấp một hình ảnh.\",\"2cUopP\":\"Vui lòng bắt đầu lại quy trình thanh toán.\",\"GoXxOA\":\"Vui lòng chọn ngày và giờ\",\"8KmsFa\":\"Vui lòng chọn khoảng thời gian\",\"EFq6EG\":\"Vui lòng chọn một hình ảnh.\",\"fuwKpE\":\"Vui lòng thử lại.\",\"klWBeI\":\"Vui lòng đợi trước khi yêu cầu mã khác\",\"hfHhaa\":\"Vui lòng đợi trong khi chúng tôi chuẩn bị xuất danh sách đối tác...\",\"o+tJN/\":\"Vui lòng đợi trong khi chúng tôi chuẩn bị cho người tham dự xuất ra...\",\"+5Mlle\":\"Vui lòng đợi trong khi chúng tôi chuẩn bị đơn hàng của bạn để xuất ra...\",\"trnWaw\":\"Tiếng Ba Lan\",\"luHAJY\":\"Sự kiện phổ biến (14 ngày qua)\",\"p/78dY\":\"Vị trí\",\"TjX7xL\":\"Tin Nhắn Sau Thanh Toán\",\"OESu7I\":\"Ngăn bán quá số lượng bằng cách chia sẻ tồn kho giữa nhiều loại vé.\",\"NgVUL2\":\"Xem trước biểu mẫu thanh toán\",\"cs5muu\":\"Xem trước trang sự kiện\",\"+4yRWM\":\"Giá vé\",\"Jm2AC3\":\"Tầng giá\",\"a5jvSX\":\"Cấp giá\",\"ReihZ7\":\"Xem trước khi in\",\"JnuPvH\":\"In vé\",\"tYF4Zq\":\"In ra PDF\",\"LcET2C\":\"Chính sách quyền riêng tư\",\"8z6Y5D\":\"Xử lý hoàn tiền\",\"JcejNJ\":\"Đang xử lý đơn hàng\",\"EWCLpZ\":\"Sản phẩm được tạo ra\",\"XkFYVB\":\"Xóa sản phẩm\",\"YMwcbR\":\"Chi tiết doanh số sản phẩm, doanh thu và thuế\",\"ls0mTC\":\"Không thể chỉnh sửa cài đặt sản phẩm cho các ngày đã hủy.\",\"2339ej\":\"Đã lưu cài đặt sản phẩm thành công\",\"ldVIlB\":\"Cập nhật sản phẩm\",\"CP3D8G\":\"Tiến độ\",\"JoKGiJ\":\"Mã khuyến mãi\",\"k3wH7i\":\"Chi tiết sử dụng mã khuyến mãi và giảm giá\",\"tZqL0q\":\"mã khuyến mãi\",\"oCHiz3\":\"Mã khuyến mãi\",\"uEhdRh\":\"Chỉ khuyến mãi\",\"dLm8V5\":\"Email quảng cáo có thể dẫn đến đình chỉ tài khoản\",\"XoEWtl\":\"Hãy cung cấp ít nhất một trường địa chỉ cho địa điểm mới.\",\"2W/7Gz\":\"Cung cấp các thông tin sau trước đợt rà soát tiếp theo của Stripe để duy trì việc thanh toán.\",\"aemBRq\":\"Nhà cung cấp\",\"EEYbdt\":\"Xuất bản\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Đã mua\",\"JunetL\":\"Người mua\",\"phmeUH\":\"Email người mua\",\"ywR4ZL\":\"Check-in bằng mã QR\",\"oWXNE5\":\"SL\",\"biEyJ4\":\"Câu trả lời\",\"k/bJj0\":\"Đã sắp xếp lại câu hỏi\",\"b24kPi\":\"Hàng đợi\",\"lTPqpM\":\"Mẹo nhanh\",\"fqDzSu\":\"Tỷ lệ\",\"mnUGVC\":\"Vượt quá giới hạn yêu cầu. Vui lòng thử lại sau.\",\"t41hVI\":\"Cung cấp lại suất\",\"TNclgc\":\"Kích hoạt lại ngày này? Sẽ được mở lại để bán trong tương lai.\",\"uqoRbb\":\"Phân tích theo thời gian thực\",\"xzRvs4\":[\"Nhận cập nhật sản phẩm từ \",[\"0\"],\".\"],\"pLXbi8\":\"Đăng ký tài khoản gần đây\",\"3kJ0gv\":\"Người tham dự gần đây\",\"qhfiwV\":\"Check-in gần đây\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Đơn hàng gần đây\",\"7hPBBn\":\"người nhận\",\"jp5bq8\":\"người nhận\",\"yPrbsy\":\"Người nhận\",\"E1F5Ji\":\"Người nhận sẽ có sau khi tin nhắn được gửi\",\"wuhHPE\":\"Định kỳ\",\"asLqwt\":\"Sự kiện định kỳ\",\"D0tAMe\":\"Sự kiện định kỳ\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Đang chuyển hướng đến Stripe...\",\"pnoTN5\":\"Tài khoản giới thiệu\",\"ACKu03\":\"Làm mới xem trước\",\"vuFYA6\":\"Hoàn tiền tất cả đơn hàng cho các ngày này\",\"4cRUK3\":\"Hoàn tiền tất cả đơn hàng cho ngày này\",\"fKn/k6\":\"Số tiền hoàn lại\",\"qY4rpA\":\"Hoàn tiền thất bại\",\"TspTcZ\":\"Đã hoàn tiền\",\"FaK/8G\":[\"Hoàn tiền đơn hàng \",[\"0\"]],\"MGbi9P\":\"Hoàn tiền đang chờ\",\"BDSRuX\":[\"Đã hoàn tiền: \",[\"0\"]],\"bU4bS1\":\"Hoàn tiền\",\"rYXfOA\":\"Cài đặt khu vực\",\"5tl0Bp\":\"Câu hỏi đăng ký\",\"ZNo5k1\":\"Còn lại\",\"EMnuA4\":\"Đã lên lịch nhắc nhở\",\"Bjh87R\":\"Xóa nhãn khỏi tất cả các ngày\",\"KkJtVK\":\"Mở lại để bán vé mới\",\"XJwWJp\":\"Mở lại ngày này để bán vé mới? Các vé đã bị hủy trước đó sẽ không được khôi phục — những người tham dự bị ảnh hưởng vẫn ở trạng thái đã hủy và các khoản hoàn tiền đã được phát hành sẽ không được đảo ngược.\",\"bAwDQs\":\"Lặp lại mỗi\",\"CQeZT8\":\"Không tìm thấy báo cáo\",\"JEPMXN\":\"Yêu cầu liên kết mới\",\"TMLAx2\":\"Bắt buộc\",\"mdeIOH\":\"Gửi lại mã\",\"sQxe68\":\"Gửi lại xác nhận\",\"bxoWpz\":\"Gửi lại email xác nhận\",\"G42SNI\":\"Gửi lại email\",\"TTpXL3\":[\"Gửi lại sau \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Gửi lại vé\",\"Uwsg2F\":\"Đã đặt chỗ\",\"8wUjGl\":\"Đặt trước đến\",\"a5z8mb\":\"Đặt lại về giá cơ bản\",\"kCn6wb\":\"Đang đặt lại...\",\"404zLK\":\"Tên địa điểm đã xác định\",\"ZlCDf+\":\"Phản hồi\",\"bsydMp\":\"Chi tiết phản hồi\",\"yKu/3Y\":\"Khôi phục\",\"RokrZf\":\"Khôi phục sự kiện\",\"/JyMGh\":\"Khôi phục ban tổ chức\",\"HFvFRb\":\"Khôi phục sự kiện này để làm cho nó hiển thị trở lại.\",\"DDIcqy\":\"Khôi phục ban tổ chức này và làm cho nó hoạt động trở lại.\",\"mO8KLE\":\"kết quả\",\"6gRgw8\":\"Thử lại\",\"1BG8ga\":\"Thử lại tất cả\",\"rDC+T6\":\"Thử lại công việc\",\"CbnrWb\":\"Quay lại sự kiện\",\"mdQ0zb\":\"Địa điểm có thể tái sử dụng cho các sự kiện của bạn. Địa điểm được tạo từ tự động hoàn thành sẽ được lưu ở đây tự động.\",\"XFOPle\":\"Tái sử dụng\",\"1Zehp4\":\"Tái sử dụng kết nối Stripe từ một nhà tổ chức khác trong tài khoản này.\",\"Oo/PLb\":\"Tóm tắt doanh thu\",\"O/8Ceg\":\"Doanh thu hôm nay\",\"CfuueU\":\"Thu hồi đề nghị\",\"RIgKv+\":\"Chạy cho đến một ngày cụ thể\",\"JYRqp5\":\"T7\",\"dFFW9L\":[\"Đợt giảm giá kết thúc \",[\"0\"]],\"loCKGB\":[\"Đợt giảm giá kết thúc \",[\"0\"]],\"wlfBad\":\"Thời gian giảm giá\",\"qi81Jg\":\"Các ngày trong kỳ bán hàng áp dụng cho tất cả các ngày trong lịch trình của bạn. Để kiểm soát giá và khả năng cung cấp cho từng ngày, hãy sử dụng ghi đè trên <0>trang Lịch buổi.\",\"5CDM6r\":\"Đã đặt thời gian bán\",\"ftzaMf\":\"Thời gian bán, giới hạn đơn hàng, hiển thị\",\"zpekWp\":[\"Đợt giảm giá bắt đầu \",[\"0\"]],\"mUv9U4\":\"Bán hàng\",\"9KnRdL\":\"Bán hàng đang tạm dừng\",\"JC3J0k\":\"Phân tích doanh số, tham dự và check-in theo từng buổi\",\"3VnlS9\":\"Doanh số, đơn hàng và chỉ số hiệu suất cho tất cả sự kiện\",\"3Q1AWe\":\"Doanh thu:\",\"LeuERW\":\"Giống như sự kiện\",\"B4nE3N\":\"Giá vé mẫu\",\"8BRPoH\":\"Địa điểm Mẫu\",\"PiK6Ld\":\"Thứ 7\",\"+5kO8P\":\"Thứ Bảy\",\"zJiuDn\":\"Lưu ghi đè phí\",\"NB8Uxt\":\"Lưu lịch trình\",\"KZrfYJ\":\"Lưu liên kết mạng xã hội\",\"9Y3hAT\":\"Lưu mẫu\",\"C8ne4X\":\"Lưu thiết kế vé\",\"cTI8IK\":\"Lưu cài đặt VAT\",\"6/TNCd\":\"Lưu cài đặt VAT\",\"4RvD9q\":\"Địa điểm đã lưu\",\"cgw0cL\":\"Địa điểm đã lưu\",\"lvSrsT\":\"Địa điểm đã lưu\",\"Fbqm/I\":\"Lưu một ghi đè sẽ tạo một cấu hình riêng cho nhà tổ chức này nếu hiện đang dùng mặc định hệ thống.\",\"I+FvbD\":\"Quét\",\"0zd6Nm\":\"Quét vé để check-in khách\",\"bQG7Qk\":\"Vé đã quét sẽ hiển thị ở đây\",\"WDYSLJ\":\"Chế độ máy quét\",\"gmB6oO\":\"Lịch trình\",\"j6NnBq\":\"Tạo lịch trình thành công\",\"YP7frt\":\"Lịch trình kết thúc vào\",\"QS1Nla\":\"Lên lịch gửi sau\",\"NAzVVw\":\"Lên lịch tin nhắn\",\"Fz09JP\":\"Lịch bắt đầu vào\",\"4ba0NE\":\"Đã lên lịch\",\"qcP/8K\":\"Thời gian đã lên lịch\",\"A1taO8\":\"Tìm kiếm\",\"ftNXma\":\"Tìm kiếm đối tác...\",\"VMU+zM\":\"Tìm khách\",\"VY+Bdn\":\"Tìm kiếm theo tên tài khoản hoặc email...\",\"VX+B3I\":\"Tìm kiếm theo tiêu đề sự kiện hoặc người tổ chức...\",\"R0wEyA\":\"Tìm kiếm theo tên công việc hoặc ngoại lệ...\",\"VT+urE\":\"Tìm kiếm theo tên hoặc email...\",\"GHdjuo\":\"Tìm kiếm theo tên, email hoặc tài khoản...\",\"4mBFO7\":\"Tìm theo tên, mã đơn, mã vé hoặc email\",\"20ce0U\":\"Tìm kiếm theo mã đơn hàng, tên khách hàng hoặc email...\",\"4DSz7Z\":\"Tìm kiếm theo chủ đề, sự kiện hoặc tài khoản...\",\"nQC7Z9\":\"Tìm kiếm ngày...\",\"iRtEpV\":\"Tìm kiếm ngày…\",\"JRM7ao\":\"Tìm kiếm địa chỉ\",\"BWF1kC\":\"Tìm kiếm tin nhắn...\",\"3aD3GF\":\"Theo mùa\",\"ku//5b\":\"Thứ hai\",\"Mck5ht\":\"Thanh toán an toàn\",\"s7tXqF\":\"Xem lịch trình\",\"JFap6u\":\"Xem Stripe còn cần gì\",\"p7xUrt\":\"Chọn danh mục\",\"hTKQwS\":\"Chọn ngày và giờ\",\"e4L7bF\":\"Chọn một tin nhắn để xem nội dung\",\"zPRPMf\":\"Chọn cấp độ\",\"uqpVri\":\"Chọn thời gian\",\"BFRSTT\":\"Chọn Tài Khoản\",\"wgNoIs\":\"Chọn tất cả\",\"mCB6Je\":\"Chọn tất cả\",\"aCEysm\":[\"Chọn tất cả trên \",[\"0\"]],\"a6+167\":\"Chọn một sự kiện\",\"CFbaPk\":\"Chọn nhóm người tham dự\",\"88a49s\":\"Chọn máy ảnh\",\"tVW/yo\":\"Chọn tiền tệ\",\"SJQM1I\":\"Chọn ngày\",\"n9ZhRa\":\"Chọn ngày và giờ kết thúc\",\"gTN6Ws\":\"Chọn thời gian kết thúc\",\"0U6E9W\":\"Chọn danh mục sự kiện\",\"j9cPeF\":\"Chọn loại sự kiện\",\"ypTjHL\":\"Chọn buổi\",\"KizCK7\":\"Chọn ngày và giờ bắt đầu\",\"dJZTv2\":\"Chọn thời gian bắt đầu\",\"x8XMsJ\":\"Chọn cấp độ nhắn tin cho tài khoản này. Điều này kiểm soát giới hạn tin nhắn và quyền liên kết.\",\"aT3jZX\":\"Chọn múi giờ\",\"TxfvH2\":\"Chọn người tham dự nào sẽ nhận tin nhắn này\",\"Ropvj0\":\"Chọn những sự kiện nào sẽ kích hoạt webhook này\",\"+6YAwo\":\"đã chọn\",\"ylXj1N\":\"Đã chọn\",\"uq3CXQ\":\"Bán hết vé sự kiện của bạn.\",\"j9b/iy\":\"Bán chạy 🔥\",\"73qYgo\":\"Gửi thử\",\"HMAqFK\":\"Gửi email cho người tham dự, chủ vé hoặc chủ đơn hàng. Tin nhắn có thể được gửi ngay hoặc lên lịch gửi sau.\",\"22Itl6\":\"Gửi cho tôi một bản sao\",\"NpEm3p\":\"Gửi ngay\",\"nOBvex\":\"Gửi dữ liệu đơn hàng và người tham dự theo thời gian thực đến hệ thống bên ngoài của bạn.\",\"1lNPhX\":\"Gửi email thông báo hoàn tiền\",\"eaUTwS\":\"Gửi liên kết đặt lại\",\"5cV4PY\":\"Gửi đến tất cả các buổi, hoặc chọn một buổi cụ thể\",\"QEQlnV\":\"Gửi tin nhắn đầu tiên của bạn\",\"3nMAVT\":\"Gửi sau 2 ngày 4 giờ\",\"IoAuJG\":\"Đang gửi...\",\"h69WC6\":\"Đã gửi\",\"BVu2Hz\":\"Được gửi bởi\",\"ZFa8wv\":\"Gửi đến người tham dự khi một ngày đã lên lịch bị hủy\",\"SPdzrs\":\"Gửi cho khách hàng khi họ đặt hàng\",\"LxSN5F\":\"Gửi cho từng người tham dự với chi tiết vé của họ\",\"hgvbYY\":\"Tháng 9\",\"5sN96e\":\"Buổi đã hủy\",\"89xaFU\":\"Đặt cài đặt phí nền tảng mặc định cho các sự kiện mới được tạo dưới nhà tổ chức này.\",\"eXssj5\":\"Đặt cài đặt mặc định cho các sự kiện mới được tạo dưới tổ chức này.\",\"uPe5p8\":\"Đặt thời lượng cho mỗi ngày\",\"xNsRxU\":\"Đặt số lượng ngày\",\"ODuUEi\":\"Đặt hoặc xóa nhãn ngày\",\"buHACR\":\"Đặt giờ kết thúc của mỗi ngày sau giờ bắt đầu khoảng thời gian này.\",\"TaeFgl\":\"Đặt thành không giới hạn (xóa giới hạn)\",\"pd6SSe\":\"Thiết lập một lịch trình định kỳ để tự động tạo các ngày, hoặc thêm từng ngày một.\",\"s0FkEx\":\"Thiết lập danh sách check-in cho các lối vào, phiên hoặc ngày khác nhau.\",\"TaWVGe\":\"Thiết lập thanh toán\",\"gzXY7l\":\"Thiết lập lịch trình\",\"xMO+Ao\":\"Thiết lập tổ chức của bạn\",\"h/9JiC\":\"Thiết lập lịch trình của bạn\",\"ETC76A\":\"Thiết lập, thay đổi hoặc xóa địa điểm hay thông tin trực tuyến của buổi\",\"C3htzi\":\"Đã cập nhật cài đặt\",\"Ohn74G\":\"Thiết lập & thiết kế\",\"1W5XyZ\":\"Việc thiết lập chỉ mất vài phút — bạn không cần tài khoản Stripe sẵn có. Stripe xử lý thẻ, ví điện tử, các phương thức thanh toán theo khu vực và bảo vệ chống gian lận, để bạn tập trung vào sự kiện của mình.\",\"GG7qDw\":\"Chia sẻ liên kết đối tác\",\"hL7sDJ\":\"Chia sẻ trang nhà tổ chức\",\"jy6QDF\":\"Quản lý sức chứa chung\",\"jDNHW4\":\"Dịch chuyển thời gian\",\"tPfIaW\":[\"Đã dịch chuyển thời gian cho \",[\"count\"],\" ngày\"],\"WwlM8F\":\"Hiện tùy chọn nâng cao\",\"cMW+gm\":[\"Hiển thị tất cả nền tảng (\",[\"0\"],\" có giá trị khác)\"],\"wXi9pZ\":\"Hiện ghi chú cho nhân viên chưa đăng nhập\",\"UVPI5D\":\"Hiển thị ít nền tảng hơn\",\"Eu/N/d\":\"Hiển thị hộp kiểm đăng ký tiếp thị\",\"SXzpzO\":\"Hiển thị hộp kiểm đăng ký tiếp thị theo mặc định\",\"57tTk5\":\"Hiển thị thêm ngày\",\"b33PL9\":\"Hiển thị thêm nền tảng\",\"Eut7p9\":\"Hiện chi tiết đơn cho nhân viên chưa đăng nhập\",\"+RoWKN\":\"Hiện câu trả lời cho nhân viên chưa đăng nhập\",\"t1LIQW\":[\"Hiển thị \",[\"0\"],\" trong \",[\"totalRows\"],\" bản ghi\"],\"E717U9\":[\"Đang hiển thị \",[\"0\"],\"–\",[\"1\"],\" trong số \",[\"2\"]],\"5rzhBQ\":[\"Đang hiển thị \",[\"MAX_VISIBLE\"],\" trong số \",[\"totalAvailable\"],\" ngày. Nhập để tìm kiếm.\"],\"WSt3op\":[\"Đang hiển thị \",[\"0\"],\" đầu tiên — \",[\"1\"],\" buổi còn lại vẫn sẽ được nhắm đến khi tin nhắn được gửi.\"],\"OJLTEL\":\"Hiển thị cho nhân viên lần đầu mở trang.\",\"jVRHeq\":\"Đã đăng ký\",\"5C7J+P\":\"Sự kiện đơn\",\"E//btK\":\"Bỏ qua các ngày đã chỉnh sửa thủ công\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Xã hội\",\"d0rUsW\":\"Liên kết mạng xã hội\",\"j/TOB3\":\"Liên kết mạng xã hội & Trang web\",\"s9KGXU\":\"Đã bán\",\"iACSrw\":\"Một số chi tiết đang ẩn với người truy cập công khai. Đăng nhập để xem tất cả.\",\"KTxc6k\":\"Có gì đó không ổn, vui lòng thử lại hoặc liên hệ với hỗ trợ nếu vấn đề vẫn còn\",\"lkE00/\":\"Đã xảy ra lỗi. Vui lòng thử lại sau.\",\"wdxz7K\":\"Nguồn\",\"fDG2by\":\"Tâm linh\",\"oPaRES\":\"Chia check-in theo ngày, khu vực hoặc loại vé. Chia sẻ liên kết với nhân viên — không cần tài khoản.\",\"7JFNej\":\"Thể thao\",\"/bfV1Y\":\"Hướng dẫn cho nhân viên\",\"tXkhj/\":\"Bắt đầu\",\"JcQp9p\":\"Ngày & giờ bắt đầu\",\"0m/ekX\":\"Ngày và giờ bắt đầu\",\"izRfYP\":\"Ngày bắt đầu là bắt buộc\",\"tuO4fV\":\"Ngày bắt đầu của buổi\",\"2R1+Rv\":\"Thời gian bắt đầu sự kiện\",\"2Olov3\":\"Giờ bắt đầu của buổi\",\"n9ZrDo\":\"Bắt đầu nhập tên địa điểm hoặc địa chỉ...\",\"qeFVhN\":[\"Bắt đầu sau \",[\"diffDays\"],\" ngày\"],\"AOqtxN\":[\"Bắt đầu sau \",[\"diffMinutes\"],\" phút\"],\"Otg8Oh\":[\"Bắt đầu sau \",[\"h\"],\" giờ \",[\"m\"],\" phút\"],\"Lo49in\":[\"Bắt đầu sau \",[\"seconds\"],\" giây\"],\"NqChgF\":\"Bắt đầu ngày mai\",\"2NbyY/\":\"Thống kê\",\"GVUxAX\":\"Thống kê dựa trên ngày tạo tài khoản\",\"29Hx9U\":\"Thống kê\",\"5ia+r6\":\"Vẫn cần\",\"wuV0bK\":\"Dừng Mạo Danh\",\"s/KaDb\":\"Đã kết nối Stripe\",\"Bk06QI\":\"Stripe đã kết nối\",\"akZMv8\":[\"Đã sao chép kết nối Stripe từ \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe không trả về liên kết thiết lập. Vui lòng thử lại.\",\"aKtF0O\":\"Stripe chưa kết nối\",\"9i0++A\":\"ID thanh toán Stripe\",\"R1lIMV\":\"Stripe sẽ sớm cần thêm vài thông tin\",\"FzcCHA\":\"Stripe sẽ hướng dẫn bạn qua vài câu hỏi nhanh để hoàn tất thiết lập.\",\"eYbd7b\":\"CN\",\"ii0qn/\":\"Tiêu đề là bắt buộc\",\"M7Uapz\":\"Tiêu đề sẽ xuất hiện ở đây\",\"6aXq+t\":\"Tiêu đề:\",\"JwTmB6\":\"Sản phẩm nhân đôi thành công\",\"WUOCgI\":\"Đã cung cấp suất thành công\",\"IvxA4G\":[\"Đã cung cấp vé thành công cho \",[\"count\"],\" người\"],\"kKpkzy\":\"Đã cung cấp vé thành công cho 1 người\",\"Zi3Sbw\":\"Đã xóa khỏi danh sách chờ thành công\",\"RuaKfn\":\"Cập nhật địa chỉ thành công\",\"kzx0uD\":\"Đã cập nhật mặc định sự kiện thành công\",\"5n+Wwp\":\"Cập nhật nhà tổ chức thành công\",\"DMCX/I\":\"Cài đặt phí nền tảng mặc định đã được cập nhật thành công\",\"URUYHc\":\"Cài đặt phí nền tảng đã được cập nhật thành công\",\"0Dk/l8\":\"Cập nhật cài đặt SEO thành công\",\"S8Tua9\":\"Cập nhật cài đặt thành công\",\"MhOoLQ\":\"Cập nhật liên kết mạng xã hội thành công\",\"CNSSfp\":\"Đã cập nhật cài đặt theo dõi thành công\",\"kj7zYe\":\"Cập nhật Webhook thành công\",\"dXoieq\":\"Tóm tắt\",\"/RfJXt\":[\"Lễ hội âm nhạc mùa hè \",[\"0\"]],\"CWOPIK\":\"Lễ hội Âm nhạc Mùa hè 2025\",\"D89zck\":\"Chủ Nhật\",\"DBC3t5\":\"Chủ Nhật\",\"UaISq3\":\"Tiếng Thụy Điển\",\"JZTQI0\":\"Chuyển đổi nhà tổ chức\",\"9YHrNC\":\"Mặc định hệ thống\",\"lruQkA\":\"Chạm vào màn hình để tiếp tục quét\",\"TJUrME\":[\"Nhắm đến người tham dự trên \",[\"0\"],\" buổi đã chọn.\"],\"yT6dQ8\":\"Thuế thu được theo loại thuế và sự kiện\",\"Ye321X\":\"Tên thuế\",\"WyCBRt\":\"Tóm tắt thuế\",\"GkH0Pq\":\"Đã áp dụng thuế & phí\",\"Rwiyt2\":\"Đã cấu hình thuế\",\"iQZff7\":\"Thuế, phí, hiển thị, thời gian bán, nổi bật sản phẩm & giới hạn đơn hàng\",\"SXvRWU\":\"Cộng tác nhóm\",\"vlf/In\":\"Công nghệ\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Hãy cho mọi người biết điều gì sẽ có tại sự kiện của bạn\",\"NiIUyb\":\"Hãy cho chúng tôi biết về sự kiện của bạn\",\"DovcfC\":\"Hãy cho chúng tôi biết về tổ chức của bạn. Thông tin này sẽ được hiển thị trên các trang sự kiện của bạn.\",\"69GWRq\":\"Cho chúng tôi biết tần suất sự kiện lặp lại và chúng tôi sẽ tạo tất cả các ngày cho bạn.\",\"mXPbwY\":\"Cho chúng tôi biết trạng thái đăng ký VAT để áp dụng cách tính VAT phù hợp cho phí nền tảng.\",\"7wtpH5\":\"Mẫu đang hoạt động\",\"QHhZeE\":\"Tạo mẫu thành công\",\"xrWdPR\":\"Xóa mẫu thành công\",\"G04Zjt\":\"Lưu mẫu thành công\",\"xowcRf\":\"Điều khoản dịch vụ\",\"6K0GjX\":\"Văn bản có thể khó đọc\",\"u0F1Ey\":\"T5\",\"nm3Iz/\":\"Cảm ơn bạn đã tham dự!\",\"pYwj0k\":\"Cảm ơn,\",\"k3IitN\":\"Vậy là xong\",\"KfmPRW\":\"Màu nền của trang. Khi sử dụng ảnh bìa, màu này được áp dụng dưới dạng lớp phủ.\",\"MDNyJz\":\"Mã sẽ hết hạn sau 10 phút. Kiểm tra thư mục spam nếu bạn không thấy email.\",\"AIF7J2\":\"Đơn vị tiền tệ mà phí cố định được xác định. Nó sẽ được chuyển đổi sang đơn vị tiền tệ của đơn hàng khi thanh toán.\",\"MJm4Tq\":\"Đơn vị tiền tệ của đơn hàng\",\"cDHM1d\":\"Địa chỉ email đã được thay đổi. Người tham dự sẽ nhận được vé mới tại địa chỉ email đã cập nhật.\",\"I/NNtI\":\"Địa điểm sự kiện\",\"tXadb0\":\"Sự kiện bạn đang tìm kiếm hiện không khả dụng. Nó có thể đã bị xóa, hết hạn hoặc URL không chính xác.\",\"5fPdZe\":\"Ngày đầu tiên mà lịch này sẽ được tạo từ đó.\",\"EBzPwC\":\"Địa chỉ đầy đủ của sự kiện\",\"sxKqBm\":\"Toàn bộ số tiền đơn hàng sẽ được hoàn lại phương thức thanh toán gốc của khách hàng.\",\"KgDp6G\":\"Liên kết bạn đang cố gắng truy cập đã hết hạn hoặc không còn hợp lệ. Vui lòng kiểm tra email của bạn để nhận liên kết cập nhật để quản lý đơn hàng của bạn.\",\"5OmEal\":\"Ngôn ngữ của khách hàng\",\"Np4eLs\":[\"Tối đa là \",[\"MAX_PREVIEW\"],\" buổi. Vui lòng giảm phạm vi ngày, tần suất hoặc số buổi mỗi ngày.\"],\"sYLeDq\":\"Không tìm thấy nhà tổ chức bạn đang tìm kiếm. Trang có thể đã bị chuyển, xóa hoặc URL không chính xác.\",\"PCr4zw\":\"Việc ghi đè được ghi lại trong nhật ký kiểm toán đơn hàng.\",\"C4nQe5\":\"Phí nền tảng được thêm vào giá vé. Người mua trả nhiều hơn, nhưng bạn nhận được giá vé đầy đủ.\",\"HxxXZO\":\"Màu thương hiệu chính được sử dụng cho nút và điểm nhấn\",\"z0KrIG\":\"Thời gian lên lịch là bắt buộc\",\"EWErQh\":\"Thời gian lên lịch phải ở trong tương lai\",\"UNd0OU\":[\"Buổi cho \\\"\",[\"title\"],\"\\\" ban đầu được lên lịch vào \",[\"0\"],\" đã được dời lịch.\"],\"DEcpfp\":\"Nội dung template chứa cú pháp Liquid không hợp lệ. Vui lòng sửa và thử lại.\",\"injXD7\":\"Không thể xác thực số VAT. Vui lòng kiểm tra số và thử lại.\",\"A4UmDy\":\"Sân khấu\",\"tDwYhx\":\"Chủ đề & Màu sắc\",\"O7g4eR\":\"Không có ngày sắp tới nào cho sự kiện này\",\"HrIl0p\":[\"Không có danh sách check-in dành riêng cho ngày này. Danh sách \\\"\",[\"0\"],\"\\\" check-in người tham dự trên tất cả các ngày — nhân viên quét vé cho ngày khác vẫn sẽ thành công.\"],\"dt3TwA\":\"Đây là giá và số lượng mặc định cho tất cả các ngày. Ngày bán theo tầng áp dụng toàn cục. Bạn có thể ghi đè giá và số lượng cho từng ngày trên <0>trang Lịch buổi.\",\"062KsE\":\"Các chi tiết này chỉ được hiển thị trên vé của người tham dự và tóm tắt đơn hàng cho ngày này.\",\"5Eu+tn\":\"Các chi tiết này chỉ được hiển thị nếu đơn hàng được hoàn tất thành công.\",\"jQjwR+\":\"Những thông tin này sẽ thay thế mọi địa điểm hiện có trên các buổi bị ảnh hưởng và hiển thị trên vé của người tham dự.\",\"QP3gP+\":\"Các cài đặt này chỉ áp dụng cho mã nhúng được sao chép và sẽ không được lưu trữ.\",\"HirZe8\":\"Các mẫu này sẽ được sử dụng làm mặc định cho tất cả sự kiện trong tổ chức của bạn. Các sự kiện riêng lẻ có thể ghi đè các mẫu này bằng phiên bản tùy chỉnh của riêng họ.\",\"lzAaG5\":\"Các mẫu này sẽ ghi đè mặc định của tổ chức chỉ cho sự kiện này. Nếu không có mẫu tùy chỉnh nào được thiết lập ở đây, mẫu của tổ chức sẽ được sử dụng thay thế.\",\"UlykKR\":\"Thứ ba\",\"wkP5FM\":\"Áp dụng cho mọi ngày phù hợp trong sự kiện, bao gồm cả những ngày hiện không hiển thị. Người tham dự đã đăng ký vào bất kỳ ngày nào trong số đó sẽ có thể được liên hệ qua trình soạn tin nhắn sau khi cập nhật hoàn tất.\",\"SOmGDa\":\"Danh sách check-in này thuộc một buổi đã bị hủy, do đó không thể được dùng cho check-in nữa.\",\"XBNC3E\":\"Mã này sẽ được dùng để theo dõi doanh số. Chỉ cho phép chữ cái, số, dấu gạch ngang và dấu gạch dưới.\",\"AaP0M+\":\"Kết hợp màu này có thể khó đọc đối với một số người dùng\",\"o1phK/\":[\"Ngày này có \",[\"orderCount\"],\" đơn hàng sẽ bị ảnh hưởng.\"],\"F/UtGt\":\"Ngày này đã bị hủy. Bạn vẫn có thể xóa để loại bỏ vĩnh viễn.\",\"BLZ7pX\":\"Ngày này đã qua. Sẽ được tạo nhưng sẽ không hiển thị cho người tham dự trong danh sách ngày sắp tới.\",\"7IIY0z\":\"Ngày này được đánh dấu là đã bán hết.\",\"bddWMP\":\"Ngày này không còn khả dụng. Vui lòng chọn ngày khác.\",\"RzEvf5\":\"Sự kiện này đã kết thúc\",\"YClrdK\":\"Sự kiện này chưa được xuất bản\",\"dFJnia\":\"Đây là tên nhà tổ chức sẽ hiển thị cho người dùng của bạn.\",\"vt7jiq\":\"Đây là lần duy nhất khóa bí mật ký được hiển thị. Vui lòng sao chép ngay và lưu trữ an toàn.\",\"L7dIM7\":\"Liên kết này không hợp lệ hoặc đã hết hạn.\",\"MR5ygV\":\"Liên kết này không còn hợp lệ\",\"9LEqK0\":\"Tên này hiển thị cho người dùng cuối\",\"QdUMM9\":\"Buổi này đã đạt sức chứa\",\"j5FdeA\":\"Đơn hàng này đang được xử lý.\",\"sjNPMw\":\"Đơn hàng này đã bị bỏ. Bạn có thể bắt đầu đơn hàng mới bất cứ lúc nào.\",\"OhCesD\":\"Đơn hàng này đã bị hủy. Bạn có thể bắt đầu đơn hàng mới bất cứ lúc nào.\",\"lyD7rQ\":\"Hồ sơ nhà tổ chức này chưa được xuất bản\",\"9b5956\":\"Xem trước này cho thấy email của bạn sẽ trông như thế nào với dữ liệu mẫu. Email thực tế sẽ sử dụng giá trị thực.\",\"uM9Alj\":\"Sản phẩm này được nổi bật trên trang sự kiện\",\"RqSKdX\":\"Sản phẩm này đã bán hết\",\"W12OdJ\":\"Báo cáo này chỉ dành cho mục đích thông tin. Luôn tham khảo ý kiến chuyên gia thuế trước khi sử dụng dữ liệu này cho mục đích kế toán hoặc thuế. Vui lòng kiểm tra chéo với bảng điều khiển Stripe của bạn vì Hi.Events có thể thiếu dữ liệu lịch sử.\",\"0Ew0uk\":\"Vé này vừa được quét. Vui lòng chờ trước khi quét lại.\",\"FYXq7k\":[\"Điều này sẽ ảnh hưởng đến \",[\"loadedAffectedCount\"],\" ngày.\"],\"kvpxIU\":\"Thông tin này sẽ được dùng để gửi thông báo và liên hệ với người dùng của bạn.\",\"rhsath\":\"Thông tin này sẽ không hiển thị với khách hàng, nhưng giúp bạn nhận diện đối tác.\",\"hV6FeJ\":\"Tốc độ\",\"+FjWgX\":\"Thứ 5\",\"kkDQ8m\":\"Thứ Năm\",\"0GSPnc\":\"Thiết kế vé\",\"EZC/Cu\":\"Thiết kế vé đã được lưu thành công\",\"bbslmb\":\"Thiết kế vé\",\"1BPctx\":\"Vé cho\",\"bgqf+K\":\"Email người giữ vé\",\"oR7zL3\":\"Tên người giữ vé\",\"HGuXjF\":\"Người sở hữu vé\",\"CMUt3Y\":\"Người giữ vé\",\"awHmAT\":\"ID vé\",\"6czJik\":\"Logo Vé\",\"OkRZ4Z\":\"Tên vé\",\"t79rDv\":\"Không tìm thấy vé\",\"6tmWch\":\"Vé hoặc sản phẩm\",\"1tfWrD\":\"Xem trước vé cho\",\"KnjoUA\":\"Giá vé\",\"tGCY6d\":\"Giá vé\",\"pGZOcL\":\"Vé đã được gửi lại thành công\",\"8jLPgH\":\"Loại vé\",\"X26cQf\":\"URL vé\",\"8qsbZ5\":\"Bán vé\",\"zNECqg\":\"vé\",\"6GQNLE\":\"Vé\",\"NRhrIB\":\"Vé & Sản phẩm\",\"OrWHoZ\":\"Vé được tự động cung cấp cho khách hàng trong danh sách chờ khi có chỗ trống.\",\"EUnesn\":\"Vé còn sẵn\",\"AGRilS\":\"Vé Đã Bán\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Thời gian\",\"dMtLDE\":\"đến\",\"/jQctM\":\"Đến\",\"tiI71C\":\"Để tăng giới hạn của bạn, hãy liên hệ với chúng tôi tại\",\"ecUA8p\":\"Hôm nay\",\"W428WC\":\"Chuyển đổi cột\",\"BRMXj0\":\"Ngày mai\",\"UBSG1X\":\"Nhà tổ chức hàng đầu (14 ngày qua)\",\"3sZ0xx\":\"Tổng Tài Khoản\",\"EaAPbv\":\"Tổng số tiền đã trả\",\"SMDzqJ\":\"Tổng số người tham dự\",\"orBECM\":\"Tổng thu được\",\"k5CU8c\":\"Tổng số mục\",\"4B7oCp\":\"Tổng phí\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Tổng Người Dùng\",\"oJjplO\":\"Tổng lượt xem\",\"rBZ9pz\":\"Tham quan\",\"orluER\":\"Theo dõi sự phát triển và hiệu suất tài khoản theo nguồn phân bổ\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Đúng nếu thanh toán ngoại tuyến\",\"9GsDR2\":\"Đúng nếu thanh toán đang chờ xử lý\",\"GUA0Jy\":\"Thử từ khoá hoặc bộ lọc khác\",\"2P/OWN\":\"Hãy thử điều chỉnh bộ lọc để xem thêm ngày.\",\"ouM5IM\":\"Thử email khác\",\"3DZvE7\":\"Dùng thử Hi.Events miễn phí\",\"7P/9OY\":\"T3\",\"vq2WxD\":\"Thứ 3\",\"G3myU+\":\"Thứ Ba\",\"Kz91g/\":\"Tiếng Thổ Nhĩ Kỳ\",\"GdOhw6\":\"Tắt âm thanh\",\"KUOhTy\":\"Bật âm thanh\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Nhập \\\"xóa\\\" để xác nhận\",\"XxecLm\":\"Loại vé\",\"IrVSu+\":\"Không thể nhân bản sản phẩm. Vui lòng kiểm tra thông tin của bạn\",\"Vx2J6x\":\"Không thể lấy thông tin người tham dự\",\"h0dx5e\":\"Không thể tham gia danh sách chờ\",\"DaE0Hg\":\"Không tải được thông tin khách.\",\"GlnD5Y\":\"Không thể tải sản phẩm cho ngày này. Vui lòng thử lại.\",\"17VbmV\":\"Không thể hoàn tác check-in\",\"n57zCW\":\"Tài khoản chưa phân bổ\",\"9uI/rE\":\"Hoàn tác\",\"b9SN9q\":\"Mã tham chiếu đơn hàng duy nhất\",\"Ef7StM\":\"Không rõ\",\"ZBAScj\":\"Người tham dự không xác định\",\"MEIAzV\":\"Không có tên\",\"K6L5Mx\":\"Địa điểm không tên\",\"X13xGn\":\"Không đáng tin cậy\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Cập nhật đối tác\",\"59qHrb\":\"Cập nhật sức chứa\",\"Gaem9v\":\"Cập nhật tên và mô tả sự kiện\",\"7EhE4k\":\"Cập nhật nhãn\",\"NPQWj8\":\"Cập nhật địa điểm\",\"75+lpR\":[\"Cập nhật: \",[\"subjectTitle\"],\" — thay đổi lịch trình\"],\"UOGHdA\":[\"Cập nhật: \",[\"subjectTitle\"],\" — đã thay đổi thời gian buổi\"],\"ogoTrw\":[\"Đã cập nhật \",[\"count\"],\" ngày\"],\"dDuona\":[\"Đã cập nhật sức chứa cho \",[\"count\"],\" ngày\"],\"FT3LSc\":[\"Đã cập nhật nhãn cho \",[\"count\"],\" ngày\"],\"8EcY1g\":[\"Đã cập nhật địa điểm cho \",[\"count\"],\" buổi\"],\"gJQsLv\":\"Tải lên ảnh bìa cho nhà tổ chức của bạn\",\"4kEGqW\":\"Tải lên logo cho nhà tổ chức của bạn\",\"lnCMdg\":\"Tải ảnh lên\",\"29w7p6\":\"Đang tải ảnh...\",\"HtrFfw\":\"URL là bắt buộc\",\"vzWC39\":\"USB\",\"td5pxI\":\"Máy quét USB đang hoạt động\",\"dyTklH\":\"Máy quét USB tạm dừng\",\"OHJXlK\":\"Sử dụng <0>mẫu Liquid để cá nhân hóa email của bạn\",\"g0WJMu\":\"Dùng danh sách cho tất cả các ngày\",\"0k4cdb\":\"Sử dụng thông tin đơn hàng cho tất cả người tham dự. Tên và email của người tham dự sẽ khớp với thông tin người mua.\",\"MKK5oI\":\"Dùng danh sách cho tất cả các ngày, hay tạo danh sách cho ngày này?\",\"bA31T4\":\"Sử dụng thông tin người mua cho tất cả người tham dự\",\"rnoQsz\":\"Được sử dụng cho viền, vùng tô sáng và kiểu mã QR\",\"BV4L/Q\":\"Phân tích UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Đang xác thực số VAT của bạn...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Mã số VAT\",\"pnVh83\":\"Số VAT\",\"CabI04\":\"Số VAT không được chứa khoảng trắng\",\"PMhxAR\":\"Số VAT phải bắt đầu bằng mã quốc gia 2 chữ cái theo sau là 8-15 ký tự chữ và số (ví dụ: DE123456789)\",\"gPgdNV\":\"Số VAT đã được xác thực thành công\",\"RUMiLy\":\"Xác thực số VAT không thành công\",\"vqji3Y\":\"Xác thực số VAT không thành công. Vui lòng kiểm tra số VAT của bạn.\",\"8dENF9\":\"VAT trên phí\",\"ZutOKU\":\"Thuế suất VAT\",\"+KJZt3\":\"Đã đăng ký VAT\",\"Nfbg76\":\"Cài đặt VAT đã được lưu thành công\",\"UvYql/\":\"Cài đặt VAT đã được lưu. Chúng tôi đang xác thực số VAT của bạn ở chế độ nền.\",\"bXn1Jz\":\"Đã cập nhật cài đặt VAT\",\"tJylUv\":\"Xử lý VAT cho phí nền tảng\",\"FlGprQ\":\"Xử lý VAT cho phí nền tảng: Doanh nghiệp có đăng ký VAT ở EU có thể sử dụng cơ chế đảo ngược (0% - Điều 196 của Chỉ thị VAT 2006/112/EC). Doanh nghiệp không đăng ký VAT sẽ bị tính VAT của Ireland ở mức 23%.\",\"516oLj\":\"Dịch vụ xác thực VAT tạm thời không khả dụng\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: chưa đăng ký\",\"AdWhjZ\":\"Mã xác thực\",\"QDEWii\":\"Đã xác minh\",\"wCKkSr\":\"Xác thực email\",\"/IBv6X\":\"Xác minh email của bạn\",\"e/cvV1\":\"Đang xác thực...\",\"fROFIL\":\"Tiếng Việt\",\"p5nYkr\":\"Xem tất cả\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Xem tất cả khả năng\",\"RnvnDc\":\"Xem tất cả tin nhắn được gửi trên nền tảng\",\"+WFMis\":\"Xem và tải xuống báo cáo cho tất cả sự kiện của bạn. Chỉ bao gồm đơn hàng đã hoàn thành.\",\"c7VN/A\":\"Xem câu trả lời\",\"SZw9tS\":\"Xem chi tiết\",\"9+84uW\":[\"Xem chi tiết của \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Xem sự kiện\",\"c6SXHN\":\"Xem trang sự kiện\",\"n6EaWL\":\"Xem nhật ký\",\"OaKTzt\":\"Xem bản đồ\",\"zNZNMs\":\"Xem tin nhắn\",\"67OJ7t\":\"Xem đơn hàng\",\"tKKZn0\":\"Xem chi tiết đơn hàng\",\"KeCXJu\":\"Xem chi tiết đơn hàng, hoàn tiền và gửi lại xác nhận.\",\"9jnAcN\":\"Xem trang chủ nhà tổ chức\",\"1J/AWD\":\"Xem vé\",\"N9FyyW\":\"Xem, chỉnh sửa và xuất danh sách người tham dự đã đăng ký.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Đang chờ\",\"quR8Qp\":\"Đang chờ thanh toán\",\"KrurBH\":\"Đang chờ quét…\",\"u0n+wz\":\"Danh sách chờ\",\"3RXFtE\":\"Đã bật danh sách chờ\",\"TwnTPy\":\"Đề nghị danh sách chờ đã hết hạn\",\"NzIvKm\":\"Đã kích hoạt danh sách chờ\",\"aUi/Dz\":\"Cảnh báo: Đây là cấu hình mặc định của hệ thống. Thay đổi sẽ ảnh hưởng đến tất cả các tài khoản không được chỉ định cấu hình cụ thể.\",\"qeygIa\":\"T4\",\"aT/44s\":\"Chúng tôi không thể sao chép kết nối Stripe đó. Vui lòng thử lại.\",\"RRZDED\":\"Chúng tôi không tìm thấy đơn hàng nào liên kết với địa chỉ email này.\",\"2RZK9x\":\"Chúng tôi không thể tìm thấy đơn hàng bạn đang tìm kiếm. Liên kết có thể đã hết hạn hoặc chi tiết đơn hàng có thể đã thay đổi.\",\"nefMIK\":\"Chúng tôi không thể tìm thấy vé bạn đang tìm kiếm. Liên kết có thể đã hết hạn hoặc chi tiết vé có thể đã thay đổi.\",\"miysJh\":\"Chúng tôi không thể tìm thấy đơn hàng này. Nó có thể đã bị xóa.\",\"ADsQ23\":\"Hiện không thể kết nối tới Stripe. Vui lòng thử lại sau giây lát.\",\"HJKdzP\":\"Đã xảy ra sự cố khi tải trang này. Vui lòng thử lại.\",\"jegrvW\":\"Chúng tôi hợp tác với Stripe để chuyển tiền trực tiếp vào tài khoản ngân hàng của bạn.\",\"IfN2Qo\":\"Chúng tôi khuyến nghị logo hình vuông với kích thước tối thiểu 200x200px\",\"wJzo/w\":\"Chúng tôi khuyến nghị kích thước 400px x 400px và dung lượng tối đa 5MB\",\"KRCDqH\":\"Chúng tôi sử dụng cookie để giúp hiểu cách trang web được sử dụng và cải thiện trải nghiệm của bạn.\",\"x8rEDQ\":\"Chúng tôi không thể xác thực số VAT của bạn sau nhiều lần thử. Chúng tôi sẽ tiếp tục thử ở chế độ nền. Vui lòng kiểm tra lại sau.\",\"iy+M+c\":[\"Chúng tôi sẽ thông báo cho bạn qua email nếu có chỗ trống cho \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Chúng tôi sẽ mở trình soạn tin nhắn với một mẫu được điền sẵn sau khi lưu. Bạn xem lại và gửi — không có gì được gửi tự động.\",\"q1BizZ\":\"Chúng tôi sẽ gửi vé đến email này\",\"ZOmUYW\":\"Chúng tôi sẽ xác thực số VAT của bạn ở chế độ nền. Nếu có bất kỳ vấn đề nào, chúng tôi sẽ thông báo cho bạn.\",\"LKjHr4\":[\"Chúng tôi đã thực hiện thay đổi đối với lịch trình của \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" ảnh hưởng đến \",[\"affectedCount\"],\" buổi.\"],\"Fq/Nx7\":\"Chúng tôi đã gửi mã xác thực 5 chữ số đến:\",\"GdWB+V\":\"Webhook tạo thành công\",\"2X4ecw\":\"Webhook đã xóa thành công\",\"ndBv0v\":\"Tích hợp webhook\",\"CThMKa\":\"Nhật ký webhook\",\"I0adYQ\":\"Khóa bí mật ký Webhook\",\"nuh/Wq\":\"URL Webhook\",\"8BMPMe\":\"Webhook sẽ không gửi thông báo\",\"FSaY52\":\"Webhook sẽ gửi thông báo\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Trang web\",\"0f7U0k\":\"Thứ 4\",\"VAcXNz\":\"Thứ Tư\",\"64X6l4\":\"tuần\",\"4XSc4l\":\"Hàng tuần\",\"IAUiSh\":\"tuần\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Chào mừng trở lại\",\"QDWsl9\":[\"Chào mừng đến với \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Chào mừng đến với \",[\"0\"],\", đây là danh sách tất cả sự kiện của bạn\"],\"DDbx7K\":\"Sức khỏe\",\"ywRaYa\":\"Mấy giờ?\",\"FaSXqR\":\"Loại sự kiện nào?\",\"0WyYF4\":\"Những gì nhân viên chưa đăng nhập có thể xem\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Khi một lượt check-in bị xóa\",\"RPe6bE\":\"Khi một ngày bị hủy trong sự kiện định kỳ\",\"Gmd0hv\":\"Khi một người tham dự mới được tạo ra\",\"zyIyPe\":\"Khi một sự kiện mới được tạo\",\"Lc18qn\":\"Khi một đơn hàng mới được tạo\",\"dfkQIO\":\"Khi một sản phẩm mới được tạo ra\",\"8OhzyY\":\"Khi một sản phẩm bị xóa\",\"tRXdQ9\":\"Khi một sản phẩm được cập nhật\",\"9L9/28\":\"Khi một sản phẩm bán hết, khách hàng có thể tham gia danh sách chờ để được thông báo khi có chỗ trống.\",\"Q7CWxp\":\"Khi một người tham dự bị hủy\",\"IuUoyV\":\"Khi một người tham dự được check-in\",\"nBVOd7\":\"Khi một người tham dự được cập nhật\",\"t7cuMp\":\"Khi một sự kiện được lưu trữ\",\"gtoSzE\":\"Khi một sự kiện được cập nhật\",\"ny2r8d\":\"Khi một đơn hàng bị hủy\",\"c9RYbv\":\"Khi một đơn hàng được đánh dấu là đã thanh toán\",\"ejMDw1\":\"Khi một đơn hàng được hoàn trả\",\"fVPt0F\":\"Khi một đơn hàng được cập nhật\",\"bcYlvb\":\"Khi check-in đóng\",\"XIG669\":\"Khi check-in mở\",\"403wpZ\":\"Khi được bật, các sự kiện mới sẽ cho phép người tham dự quản lý thông tin vé của riêng họ qua liên kết bảo mật. Điều này có thể được ghi đè cho từng sự kiện.\",\"blXLKj\":\"Khi được bật, các sự kiện mới sẽ hiển thị hộp kiểm đăng ký tiếp thị trong quá trình thanh toán. Điều này có thể được ghi đè cho từng sự kiện.\",\"Kj0Txn\":\"Khi được bật, không có phí ứng dụng nào sẽ được tính cho các giao dịch Stripe Connect. Sử dụng cho các quốc gia không hỗ trợ phí ứng dụng.\",\"tMqezN\":\"Việc hoàn tiền có đang được xử lý hay không\",\"uchB0M\":\"Xem trước widget\",\"uvIqcj\":\"Hội thảo\",\"EpknJA\":\"Viết tin nhắn của bạn tại đây...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"năm\",\"zkWmBh\":\"Hàng năm\",\"+BGee5\":\"năm\",\"X/azM1\":\"Có - Tôi có số đăng ký VAT EU hợp lệ\",\"Tz5oXG\":\"Có, hủy đơn hàng của tôi\",\"QlSZU0\":[\"Bạn đang mạo danh <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Bạn đang thực hiện hoàn tiền một phần. Khách hàng sẽ được hoàn lại \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Bạn có thể cấu hình phí dịch vụ và thuế bổ sung trong cài đặt tài khoản của mình.\",\"rj3A7+\":\"Bạn có thể ghi đè điều này cho từng ngày sau.\",\"paWwQ0\":\"Bạn vẫn có thể cung cấp vé thủ công nếu cần.\",\"jTDzpA\":\"Bạn không thể lưu trữ ban tổ chức đang hoạt động cuối cùng trong tài khoản của mình.\",\"5VGIlq\":\"Bạn đã đạt đến giới hạn nhắn tin.\",\"casL1O\":\"Bạn có thuế và phí được thêm vào một sản phẩm miễn phí. Bạn có muốn bỏ chúng?\",\"9jJNZY\":\"Bạn phải xác nhận trách nhiệm của mình trước khi lưu\",\"pCLes8\":\"Bạn phải đồng ý nhận tin nhắn\",\"FVTVBy\":\"Bạn phải xác minh địa chỉ email trước khi cập nhật trạng thái nhà tổ chức.\",\"ze4bi/\":\"Bạn cần tạo ít nhất một buổi trước khi có thể thêm người tham dự vào sự kiện định kỳ này.\",\"w65ZgF\":\"Bạn cần xác minh email tài khoản trước khi có thể chỉnh sửa mẫu email.\",\"FRl8Jv\":\"Bạn cần xác minh email tài khoản trước khi có thể gửi tin nhắn.\",\"88cUW+\":\"Bạn nhận được\",\"O6/3cu\":\"Bạn sẽ có thể thiết lập ngày, lịch trình và quy tắc lặp lại ở bước tiếp theo.\",\"zKAheG\":\"Bạn đang thay đổi thời gian buổi\",\"MNFIxz\":[\"Bạn sẽ tham gia \",[\"0\"],\"!\"],\"qGZz0m\":\"Bạn đã được thêm vào danh sách chờ!\",\"/5HL6k\":\"Bạn đã được mời một suất!\",\"gbjFFH\":\"Bạn đã thay đổi thời gian buổi\",\"p/Sa0j\":\"Tài khoản của bạn có giới hạn nhắn tin. Để tăng giới hạn của bạn, hãy liên hệ với chúng tôi tại\",\"x/xjzn\":\"Danh sách đối tác của bạn đã được xuất thành công.\",\"TF37u6\":\"Những người tham dự của bạn đã được xuất thành công.\",\"79lXGw\":\"Danh sách check-in của bạn đã được tạo thành công. Chia sẻ liên kết bên dưới với nhân viên check-in của bạn.\",\"BnlG9U\":\"Đơn hàng hiện tại của bạn sẽ bị mất.\",\"nBqgQb\":\"Email của bạn\",\"GG1fRP\":\"Sự kiện của bạn đã hoạt động!\",\"ifRqmm\":\"Tin nhắn của bạn đã được gửi thành công!\",\"0/+Nn9\":\"Tin nhắn của bạn sẽ xuất hiện ở đây\",\"/Rj5P4\":\"Tên của bạn\",\"PFjJxY\":\"Mật khẩu mới của bạn phải dài ít nhất 8 ký tự.\",\"gzrCuN\":\"Chi tiết đơn hàng của bạn đã được cập nhật. Email xác nhận đã được gửi đến địa chỉ email mới.\",\"naQW82\":\"Đơn hàng của bạn đã bị hủy.\",\"bhlHm/\":\"Đơn hàng của bạn đang chờ thanh toán\",\"XeNum6\":\"Đơn hàng của bạn đã được xuất thành công.\",\"Xd1R1a\":\"Địa chỉ nhà tổ chức của bạn\",\"WWYHKD\":\"Thanh toán của bạn được bảo vệ bằng mã hóa cấp ngân hàng\",\"5b3QLi\":\"Gói của bạn\",\"N4Zkqc\":\"Bộ lọc ngày đã lưu của bạn không còn khả dụng — đang hiển thị tất cả các ngày.\",\"FNO5uZ\":\"Vé của bạn vẫn còn hiệu lực — không cần làm gì trừ khi thời gian mới không phù hợp với bạn. Vui lòng trả lời email này nếu bạn có thắc mắc.\",\"CnZ3Ou\":\"Vé của bạn đã được xác nhận.\",\"EmFsMZ\":\"Số VAT của bạn đang trong hàng đợi để xác thực\",\"QBlhh4\":\"Số VAT của bạn sẽ được xác thực khi bạn lưu\",\"fT9VLt\":\"Đề nghị danh sách chờ của bạn đã hết hạn và chúng tôi không thể hoàn tất đơn hàng của bạn. Vui lòng tham gia lại danh sách chờ để được thông báo khi có thêm chỗ trống.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Chưa có gì để hiển thị'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>checked out thành công\"],\"KMgp2+\":[[\"0\"],\" Có sẵn\"],\"Pmr5xp\":[[\"0\"],\" đã tạo thành công\"],\"FImCSc\":[[\"0\"],\" cập nhật thành công\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"ngày\"],\" ngày, \",[\"giờ\"],\" giờ, \",[\"phút\"],\" phút và \",[\"giây\"],\" giây\"],\"f3RdEk\":[[\"giờ\"],\" giờ, \",[\"phút\"],\" phút và \",[\"giây\"],\" giây\"],\"fyE7Au\":[[\"phút\"],\" phút và \",[\"giây\"],\" giây\"],\"NlQ0cx\":[\"Sự kiện đầu tiên của \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0> Vui lòng nhập giá không bao gồm thuế và phí. <1> Thuế và phí có thể được thêm vào bên dưới. \",\"ZjMs6e\":\"<0> Số lượng sản phẩm có sẵn cho sản phẩm này <1> Giá trị này có thể được ghi đè nếu có giới hạn công suất <2>\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 phút và 0 giây\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"123 Phố chính\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Trường nhập ngày. Hoàn hảo để hỏi ngày sinh, v.v.\",\"6euFZ/\":[\"Một mặc định \",[\"type\"],\" là tự động được áp dụng cho tất cả các sản phẩm mới. \"],\"SMUbbQ\":\"Đầu vào thả xuống chỉ cho phép một lựa chọn\",\"qv4bfj\":\"Một khoản phí, như phí đặt phòng hoặc phí dịch vụ\",\"POT0K/\":\"Một lượng cố định cho mỗi sản phẩm. Vd, $0.5 cho mỗi sản phẩm \",\"f4vJgj\":\"Đầu vào văn bản nhiều dòng\",\"OIPtI5\":\"Một tỷ lệ phần trăm của giá sản phẩm. \",\"ZthcdI\":\"Mã khuyến mãi không có giảm giá có thể được sử dụng để tiết lộ các sản phẩm ẩn.\",\"AG/qmQ\":\"Tùy chọn radio có nhiều tùy chọn nhưng chỉ có thể chọn một tùy chọn.\",\"h179TP\":\"Mô tả ngắn về sự kiện sẽ được hiển thị trong kết quả tìm kiếm và khi chia sẻ trên mạng xã hội. Theo mặc định, mô tả sự kiện sẽ được sử dụng.\",\"WKMnh4\":\"Một đầu vào văn bản dòng duy nhất\",\"BHZbFy\":\"Một câu hỏi duy nhất cho mỗi đơn hàng. Ví dụ: Địa chỉ giao hàng của bạn là gì?\",\"Fuh+dI\":\"Một câu hỏi duy nhất cho mỗi sản phẩm. Ví dụ: Kích thước áo thun của bạn là gì?\",\"RlJmQg\":\"Thuế tiêu chuẩn, như VAT hoặc GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Chấp nhận chuyển khoản ngân hàng, séc hoặc các phương thức thanh toán offline khác\",\"hrvLf4\":\"Chấp nhận thanh toán thẻ tín dụng với Stripe\",\"bfXQ+N\":\"Chấp nhận lời mời\",\"AeXO77\":\"Tài khoản\",\"lkNdiH\":\"Tên tài khoản\",\"Puv7+X\":\"Cài đặt tài khoản\",\"OmylXO\":\"Tài khoản được cập nhật thành công\",\"7L01XJ\":\"Hành động\",\"FQBaXG\":\"Kích hoạt\",\"5T2HxQ\":\"Ngày kích hoạt\",\"F6pfE9\":\"Hoạt động\",\"/PN1DA\":\"Thêm mô tả cho danh sách check-in này\",\"0/vPdA\":\"Thêm bất kỳ ghi chú nào về người tham dự. Những ghi chú này sẽ không hiển thị cho người tham dự.\",\"Or1CPR\":\"Thêm bất kỳ ghi chú nào về người tham dự ...\",\"l3sZO1\":\"Thêm bất kỳ ghi chú nào về đơn hàng. Những ghi chú này sẽ không hiển thị cho khách hàng.\",\"xMekgu\":\"Thêm bất kỳ ghi chú nào về đơn hàng ...\",\"PGPGsL\":\"Thêm mô tả\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Thêm hướng dẫn thanh toán offline (ví dụ: chi tiết chuyển khoản ngân hàng, nơi gửi séc, thời hạn thanh toán)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Thêm mới\",\"TZxnm8\":\"Thêm tùy chọn\",\"24l4x6\":\"Thêm sản phẩm\",\"8q0EdE\":\"Thêm sản phẩm vào danh mục\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Thêm thuế hoặc phí\",\"goOKRY\":\"Thêm tầng\",\"oZW/gT\":\"Thêm vào lịch\",\"pn5qSs\":\"Thông tin bổ sung\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Địa chỉ\",\"NY/x1b\":\"Dòng địa chỉ 1\",\"POdIrN\":\"Dòng địa chỉ 1\",\"cormHa\":\"Dòng địa chỉ 2\",\"gwk5gg\":\"Dòng địa chỉ 2\",\"U3pytU\":\"Quản trị viên\",\"HLDaLi\":\"Người dùng quản trị có quyền truy cập đầy đủ vào các sự kiện và cài đặt tài khoản.\",\"W7AfhC\":\"Tất cả những người tham dự sự kiện này\",\"cde2hc\":\"Tất cả các sản phẩm\",\"5CQ+r0\":\"Cho phép người tham dự liên kết với đơn hàng chưa thanh toán được check-in\",\"ipYKgM\":\"Cho phép công cụ tìm kiếm lập chỉ mục\",\"LRbt6D\":\"Cho phép các công cụ tìm kiếm lập chỉ mục cho sự kiện này\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Tuyệt vời, sự kiện, từ khóa ...\",\"hehnjM\":\"Số tiền\",\"R2O9Rg\":[\"Số tiền đã trả (\",[\"0\"],\")\"],\"V7MwOy\":\"Đã xảy ra lỗi trong khi tải trang\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"Đã xảy ra lỗi không mong muốn.\",\"byKna+\":\"Đã xảy ra lỗi không mong muốn. Vui lòng thử lại.\",\"ubdMGz\":\"Mọi thắc mắc từ chủ sở hữu sản phẩm sẽ được gửi đến địa chỉ email này. Địa chỉ này cũng sẽ được sử dụng làm địa chỉ \\\"trả lời\\\" cho tất cả email gửi từ sự kiện này.\",\"aAIQg2\":\"Giao diện\",\"Ym1gnK\":\"đã được áp dụng\",\"sy6fss\":[\"Áp dụng cho các sản phẩm \",[\"0\"]],\"kadJKg\":\"Áp dụng cho 1 sản phẩm\",\"DB8zMK\":\"Áp dụng\",\"GctSSm\":\"Áp dụng mã khuyến mãi\",\"ARBThj\":[\"Áp dụng \",[\"type\"],\" này cho tất cả các sản phẩm mới\"],\"S0ctOE\":\"Lưu trữ sự kiện\",\"TdfEV7\":\"Lưu trữ\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Bạn có chắc mình muốn kích hoạt người tham dự này không?\",\"TvkW9+\":\"Bạn có chắc mình muốn lưu trữ sự kiện này không?\",\"/CV2x+\":\"Bạn có chắc mình muốn hủy người tham dự này không? Điều này sẽ làm mất hiệu lực vé của họ\",\"YgRSEE\":\"Bạn có chắc là bạn muốn xóa mã khuyến mãi này không?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Bạn có chắc chắn muốn chuyển sự kiện này thành bản nháp không? Điều này sẽ làm cho sự kiện không hiển thị với công chúng.\",\"mEHQ8I\":\"Bạn có chắc mình muốn công khai sự kiện này không? \",\"s4JozW\":\"Bạn có chắc chắn muốn khôi phục sự kiện này không? Sự kiện sẽ được khôi phục dưới dạng bản nháp.\",\"vJuISq\":\"Bạn có chắc chắn muốn xóa phân bổ sức chứa này không?\",\"baHeCz\":\"Bạn có chắc là bạn muốn xóa danh sách tham dự này không?\",\"LBLOqH\":\"Hỏi một lần cho mỗi đơn hàng\",\"wu98dY\":\"Hỏi một lần cho mỗi sản phẩm\",\"ss9PbX\":\"Người tham dự\",\"m0CFV2\":\"Chi tiết người tham dự\",\"QKim6l\":\"Không tìm thấy người tham dự\",\"R5IT/I\":\"Ghi chú của người tham dự\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Vé tham dự\",\"9SZT4E\":\"Người tham dự\",\"iPBfZP\":\"Người tham dự đã đăng ký\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Tự động thay đổi kích thước\",\"vZ5qKF\":\"Tự động thay đổi chiều cao widget dựa trên nội dung. Khi tắt, widget sẽ lấp đầy chiều cao của container.\",\"4lVaWA\":\"Đang chờ thanh toán offline\",\"2rHwhl\":\"Đang chờ thanh toán offline\",\"3wF4Q/\":\"Đang chờ thanh toán\",\"ioG+xt\":\"Đang chờ thanh toán\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Nhà tổ chức tuyệt vời Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Trở lại trang sự kiện\",\"VCoEm+\":\"Quay lại đăng nhập\",\"k1bLf+\":\"Màu nền\",\"I7xjqg\":\"Loại nền\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"Địa chỉ thanh toán\",\"/xC/im\":\"Cài đặt thanh toán\",\"rp/zaT\":\"Tiếng Bồ Đào Nha Brazil\",\"whqocw\":\"Bằng cách đăng ký, bạn đồng ý với các <0>Điều khoản dịch vụ của chúng tôi và <1>Chính sách bảo mật.\",\"bcCn6r\":\"Loại tính toán\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"Hủy\",\"Gjt/py\":\"Hủy thay đổi email\",\"tVJk4q\":\"Hủy đơn hàng\",\"Os6n2a\":\"Hủy đơn hàng\",\"Mz7Ygx\":[\"Hủy đơn hàng \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Hủy bỏ\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Công suất\",\"V6Q5RZ\":\"Phân bổ sức chứa được tạo thành công\",\"k5p8dz\":\"Phân bổ sức chứa đã được xóa thành công\",\"nDBs04\":\"Quản lý sức chứa\",\"ddha3c\":\"Danh mục giúp bạn nhóm các sản phẩm lại với nhau. Ví dụ, bạn có thể có một danh mục cho \\\"Vé\\\" và một danh mục khác cho \\\"Hàng hóa\\\".\",\"iS0wAT\":\"Danh mục giúp bạn sắp xếp sản phẩm của mình. Tiêu đề này sẽ được hiển thị trên trang sự kiện công khai.\",\"eorM7z\":\"Danh mục đã được sắp xếp lại thành công.\",\"3EXqwa\":\"Danh mục được tạo thành công\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Thay đổi mật khẩu\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Check-in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Check-in và đánh dấu đơn hàng đã thanh toán\",\"QYLpB4\":\"Chỉ check-in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Xác nhận rời khỏi sự kiện này!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Danh sách check-in đã bị xóa thành công\",\"+hBhWk\":\"Danh sách check-in đã hết hạn\",\"mBsBHq\":\"Danh sách check-in không hoạt động\",\"vPqpQG\":\"Danh sách Check-In không tồn tại\",\"tejfAy\":\"Danh sách Check-In\",\"hD1ocH\":\"URL check-in đã được sao chép vào clipboard\",\"CNafaC\":\"Tùy chọn checkbox cho phép chọn nhiều mục\",\"SpabVf\":\"Checkbox\",\"CRu4lK\":\"Đã check-in\",\"znIg+z\":\"Thanh toán\",\"1WnhCL\":\"Cài đặt thanh toán\",\"6imsQS\":\"Trung Quốc (đơn giản hóa)\",\"JjkX4+\":\"Chọn một màu cho nền của bạn\",\"/Jizh9\":\"Chọn một tài khoản\",\"3wV73y\":\"Thành phố\",\"FG98gC\":\"Xoá văn bản tìm kiếm\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Bấm để sao chép\",\"yz7wBu\":\"Đóng\",\"62Ciis\":\"Đóng thanh bên\",\"EWPtMO\":\"Mã\",\"ercTDX\":\"Mã phải dài từ 3 đến 50 ký tự\",\"oqr9HB\":\"Thu gọn sản phẩm này khi trang sự kiện ban đầu được tải\",\"jZlrte\":\"Màu sắc\",\"Vd+LC3\":\"Màu sắc phải là mã màu hex hợp lệ. Ví dụ: #ffffff\",\"1HfW/F\":\"Màu sắc\",\"VZeG/A\":\"Sắp ra mắt\",\"yPI7n9\":\"Các từ khóa mô tả sự kiện, được phân tách bằng dấu phẩy. Chúng sẽ được công cụ tìm kiếm sử dụng để phân loại và lập chỉ mục sự kiện.\",\"NPZqBL\":\"Hoàn tất đơn hàng\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Hoàn tất thanh toán\",\"qqWcBV\":\"Hoàn thành\",\"6HK5Ct\":\"Đơn hàng đã hoàn thành\",\"NWVRtl\":\"Đơn hàng đã hoàn thành\",\"DwF9eH\":\"Mã component\",\"Tf55h7\":\"Giảm giá đã cấu hình\",\"7VpPHA\":\"Xác nhận\",\"ZaEJZM\":\"Xác nhận thay đổi email\",\"yjkELF\":\"Xác nhận mật khẩu mới\",\"xnWESi\":\"Xác nhận mật khẩu\",\"p2/GCq\":\"Xác nhận mật khẩu\",\"wnDgGj\":\"Đang xác nhận địa chỉ email...\",\"pbAk7a\":\"Kết nối Stripe\",\"UMGQOh\":\"Kết nối với Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Chi tiết kết nối\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Tiếp tục\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Văn bản nút Tiếp tục\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Đã Sao chép\",\"T5rdis\":\"Sao chép vào bộ nhớ tạm\",\"he3ygx\":\"Sao chép\",\"r2B2P8\":\"Sao chép URL check-in\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Sao chép Link\",\"E6nRW7\":\"Sao chép URL\",\"JNCzPW\":\"Quốc gia\",\"IF7RiR\":\"Bìa\",\"hYgDIe\":\"Tạo\",\"b9XOHo\":[\"Tạo \",[\"0\"]],\"k9RiLi\":\"Tạo một sản phẩm\",\"6kdXbW\":\"Tạo mã khuyến mãi\",\"n5pRtF\":\"Tạo một vé\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"Tạo một tổ chức\",\"ipP6Ue\":\"Tạo người tham dự\",\"VwdqVy\":\"Tạo phân bổ sức chứa\",\"EwoMtl\":\"Tạo thể loại\",\"XletzW\":\"Tạo thể loại\",\"WVbTwK\":\"Tạo danh sách check-in\",\"uN355O\":\"Tạo sự kiện\",\"BOqY23\":\"Tạo mới\",\"kpJAeS\":\"Tạo tổ chức\",\"a0EjD+\":\"Tạo sản phẩm\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Tạo mã khuyến mãi\",\"B3Mkdt\":\"Tạo câu hỏi\",\"UKfi21\":\"Tạo thuế hoặc phí\",\"d+F6q9\":\"Đã tạo\",\"Q2lUR2\":\"Tiền tệ\",\"DCKkhU\":\"Mật khẩu hiện tại\",\"uIElGP\":\"URL bản đồ tùy chỉnh\",\"UEqXyt\":\"Phạm vi tùy chỉnh\",\"876pfE\":\"Khách hàng\",\"QOg2Sf\":\"Tùy chỉnh cài đặt email và thông báo cho sự kiện này\",\"Y9Z/vP\":\"Tùy chỉnh trang chủ sự kiện và tin nhắn thanh toán\",\"2E2O5H\":\"Tùy chỉnh các cài đặt linh tinh cho sự kiện này\",\"iJhSxe\":\"Tùy chỉnh cài đặt SEO cho sự kiện này\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Vùng nguy hiểm\",\"ZQKLI1\":\"Vùng nguy hiểm\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Ngày\",\"JvUngl\":\"Ngày và giờ\",\"JJhRbH\":\"Sức chứa ngày đầu tiên\",\"cnGeoo\":\"Xóa\",\"jRJZxD\":\"Xóa sức chứa\",\"VskHIx\":\"Xóa danh mục\",\"Qrc8RZ\":\"Xóa danh sách check-in\",\"WHf154\":\"Xóa mã\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Mô tả\",\"YC3oXa\":\"Mô tả cho nhân viên làm thủ tục check-in\",\"URmyfc\":\"Chi tiết\",\"1lRT3t\":\"Vô hiệu hóa sức chứa này sẽ theo dõi doanh số nhưng không dừng bán khi đạt giới hạn\",\"H6Ma8Z\":\"Giảm giá\",\"ypJ62C\":\"Giảm giá %\",\"3LtiBI\":[\"Giảm giá trong \",[\"0\"]],\"C8JLas\":\"Loại giảm giá\",\"1QfxQT\":\"Đóng\",\"DZlSLn\":\"Nhãn tài liệu\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Sản phẩm quyên góp / Trả số tiền bạn muốn\",\"OvNbls\":\"Tải xuống .ics\",\"kodV18\":\"Tải xuống CSV\",\"CELKku\":\"Tải xuống hóa đơn\",\"LQrXcu\":\"Tải xuống hóa đơn\",\"QIodqd\":\"Tải về mã QR\",\"yhjU+j\":\"Tải xuống hóa đơn\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Lựa chọn thả xuống\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Nhân bản sự kiện\",\"3ogkAk\":\"Nhân bản sự kiện\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Tùy chọn nhân bản\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Ưu đãi sớm\",\"ePK91l\":\"Chỉnh sửa\",\"N6j2JH\":[\"chỉnh sửa \",[\"0\"]],\"kBkYSa\":\"Chỉnh sửa công suất\",\"oHE9JT\":\"Chỉnh sửa phân bổ sức chứa\",\"j1Jl7s\":\"Chỉnh sửa danh mục\",\"FU1gvP\":\"Chỉnh sửa danh sách check-in\",\"iFgaVN\":\"Chỉnh sửa mã\",\"jrBSO1\":\"Chỉnh sửa tổ chức\",\"tdD/QN\":\"Chỉnh sửa sản phẩm\",\"n143Tq\":\"Chỉnh sửa danh mục sản phẩm\",\"9BdS63\":\"Chỉnh sửa mã khuyến mãi\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Chỉnh sửa câu hỏi\",\"poTr35\":\"Chỉnh sửa người dùng\",\"GTOcxw\":\"Chỉnh sửa người dùng\",\"pqFrv2\":\"ví dụ: 2.50 cho $2.50\",\"3yiej1\":\"ví dụ: 23.5 cho 23.5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Cài đặt email & thông báo\",\"ATGYL1\":\"Địa chỉ email\",\"hzKQCy\":\"Địa chỉ Email\",\"HqP6Qf\":\"Hủy thay đổi email thành công\",\"mISwW1\":\"Thay đổi email đang chờ xử lý\",\"APuxIE\":\"Xác nhận email đã được gửi lại\",\"YaCgdO\":\"Xác nhận email đã được gửi lại thành công\",\"jyt+cx\":\"Thông điệp chân trang email\",\"I6F3cp\":\"Email không được xác minh\",\"NTZ/NX\":\"Mã nhúng\",\"4rnJq4\":\"Script nhúng\",\"8oPbg1\":\"Bật hóa đơn\",\"j6w7d/\":\"Cho phép khả năng này dừng bán sản phẩm khi đạt đến giới hạn\",\"VFv2ZC\":\"Ngày kết thúc\",\"237hSL\":\"Kết thúc\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Tiếng Anh\",\"MhVoma\":\"Nhập một số tiền không bao gồm thuế và phí.\",\"SlfejT\":\"Lỗi\",\"3Z223G\":\"Lỗi xác nhận địa chỉ email\",\"a6gga1\":\"Lỗi xác nhận thay đổi email\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Sự kiện\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Ngày sự kiện\",\"0Zptey\":\"Mặc định sự kiện\",\"QcCPs8\":\"Chi tiết sự kiện\",\"6fuA9p\":\"Sự kiện nhân đôi thành công\",\"AEuj2m\":\"Trang chủ sự kiện\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Vị trí sự kiện & địa điểm tổ chức\",\"OopDbA\":\"Event page\",\"4/If97\":\"Cập nhật trạng thái sự kiện thất bại. Vui lòng thử lại sau\",\"btxLWj\":\"Trạng thái sự kiện đã được cập nhật\",\"nMU2d3\":\"URL sự kiện\",\"tst44n\":\"Sự kiện\",\"sZg7s1\":\"Ngày hết hạn\",\"KnN1Tu\":\"Hết hạn\",\"uaSvqt\":\"Ngày hết hạn\",\"GS+Mus\":\"Xuất\",\"9xAp/j\":\"Không thể hủy người tham dự\",\"ZpieFv\":\"Không thể hủy đơn hàng\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Không thể tải hóa đơn. Vui lòng thử lại.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Không thể tải danh sách check-in\",\"ZQ15eN\":\"Không thể gửi lại email vé\",\"ejXy+D\":\"Không thể sắp xếp sản phẩm\",\"PLUB/s\":\"Phí\",\"/mfICu\":\"Các khoản phí\",\"LyFC7X\":\"Lọc đơn hàng\",\"cSev+j\":\"Bộ lọc\",\"CVw2MU\":[\"Bộ lọc (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Số hóa đơn đầu tiên\",\"V1EGGU\":\"Tên\",\"kODvZJ\":\"Tên\",\"S+tm06\":\"Tên của bạn phải nằm trong khoảng từ 1 đến 50 ký tự\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Được sử dụng lần đầu tiên\",\"TpqW74\":\"Đã sửa\",\"irpUxR\":\"Số tiền cố định\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Quên mật khẩu?\",\"2POOFK\":\"Miễn phí\",\"P/OAYJ\":\"Sản phẩm miễn phí\",\"vAbVy9\":\"Sản phẩm miễn phí, không cần thông tin thanh toán\",\"nLC6tu\":\"Tiếng Pháp\",\"Weq9zb\":\"Chung\",\"DDcvSo\":\"Tiếng Đức\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Quay trở lại hồ sơ\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Lịch Google\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Tổng doanh số\",\"yRg26W\":\"Doanh thu gộp\",\"R4r4XO\":\"Người được mời\",\"26pGvx\":\"Nhập mã khuyến mãi?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Đây là ví dụ về cách bạn có thể sử dụng component trong ứng dụng của bạn.\",\"Y1SSqh\":\"Đây là component React bạn có thể sử dụng để nhúng widget vào ứng dụng của bạn.\",\"QuhVpV\":[\"Chào \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Ẩn khỏi chế độ xem công khai\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Các câu hỏi ẩn chỉ hiển thị cho người tổ chức sự kiện chứ không phải cho khách hàng.\",\"vLyv1R\":\"Ẩn\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"ẩn sản phẩm sau ngày kết thúc bán\",\"06s3w3\":\"ẩn sản phẩm trước ngày bắt đầu bán\",\"axVMjA\":\"ẩn sản phẩm trừ khi người dùng có mã khuyến mãi áp dụng\",\"ySQGHV\":\"Ẩn sản phẩm khi bán hết\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Ẩn sản phẩm này khỏi khách hàng\",\"Da29Y6\":\"Ẩn câu hỏi này\",\"fvDQhr\":\"Ẩn tầng này khỏi người dùng\",\"lNipG+\":\"Việc ẩn một sản phẩm sẽ ngăn người dùng xem nó trên trang sự kiện.\",\"ZOBwQn\":\"Thiết kế trang sự kiện\",\"PRuBTd\":\"Thiết kế trang chủ\",\"YjVNGZ\":\"Xem trước trang chủ\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Khách hàng phải hoàn thành đơn đơn hàng bao nhiêu phút. \",\"ySxKZe\":\"Mã này có thể được sử dụng bao nhiêu lần?\",\"dZsDbK\":[\"Vượt quá giới hạn ký tự HTML: \",[\"htmllesth\"],\"/\",[\"maxlength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Tôi đồng ý với <0>các điều khoản và điều kiện\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"Nếu được bật, nhân viên check-in có thể đánh dấu người tham dự đã check-in hoặc đánh dấu đơn hàng đã thanh toán và check-in người tham dự. Nếu tắt, những người tham dự liên kết với đơn hàng chưa thanh toán sẽ không thể check-in.\",\"muXhGi\":\"Nếu được bật, người tổ chức sẽ nhận được thông báo email khi có đơn hàng mới\",\"6fLyj/\":\"Nếu bạn không yêu cầu thay đổi này, vui lòng thay đổi ngay mật khẩu của bạn.\",\"n/ZDCz\":\"Hình ảnh đã xóa thành công\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Hình ảnh được tải lên thành công\",\"VyUuZb\":\"URL hình ảnh\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Không hoạt động\",\"T0K0yl\":\"Người dùng không hoạt động không thể đăng nhập.\",\"kO44sp\":\"Bao gồm thông tin kết nối cho sự kiện trực tuyến của bạn. Những chi tiết này sẽ được hiển thị trên trang tóm tắt đơn hàng và trang vé của người tham dự.\",\"FlQKnG\":\"Bao gồm thuế và phí trong giá\",\"Vi+BiW\":[\"Bao gồm các sản phẩm \",[\"0\"]],\"lpm0+y\":\"Bao gồm 1 sản phẩm\",\"UiAk5P\":\"Chèn hình ảnh\",\"OyLdaz\":\"Lời mời đã được gửi lại!\",\"HE6KcK\":\"Lời mời bị thu hồi!\",\"SQKPvQ\":\"Mời người dùng\",\"bKOYkd\":\"Hóa đơn được tải xuống thành công\",\"alD1+n\":\"Ghi chú hóa đơn\",\"kOtCs2\":\"Đánh số hóa đơn\",\"UZ2GSZ\":\"Cài đặt hóa đơn\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Mục\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Nhãn\",\"vXIe7J\":\"Ngôn ngữ\",\"2LMsOq\":\"12 tháng qua\",\"vfe90m\":\"14 ngày qua\",\"aK4uBd\":\"24 giờ qua\",\"uq2BmQ\":\"30 ngày qua\",\"bB6Ram\":\"48 giờ qua\",\"VlnB7s\":\"6 tháng qua\",\"ct2SYD\":\"7 ngày qua\",\"XgOuA7\":\"90 ngày qua\",\"I3yitW\":\"Đăng nhập cuối cùng\",\"1ZaQUH\":\"Họ\",\"UXBCwc\":\"Họ\",\"tKCBU0\":\"Được sử dụng lần cuối\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Để trống để sử dụng từ mặc định \\\"Hóa đơn\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Đang tải ...\",\"wJijgU\":\"Vị trí\",\"sQia9P\":\"Đăng nhập\",\"zUDyah\":\"Đăng nhập\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Đăng xuất\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Bắt buộc nhập địa chỉ thanh toán, trong khi thanh toán\",\"MU3ijv\":\"Làm cho câu hỏi này bắt buộc\",\"wckWOP\":\"Quản lý\",\"onpJrA\":\"Quản lý người tham dự\",\"n4SpU5\":\"Quản lý sự kiện\",\"WVgSTy\":\"Quản lý đơn hàng\",\"1MAvUY\":\"Quản lý cài đặt thanh toán và lập hóa đơn cho sự kiện này.\",\"cQrNR3\":\"Quản lý hồ sơ\",\"AtXtSw\":\"Quản lý thuế và phí có thể được áp dụng cho sản phẩm của bạn\",\"ophZVW\":\"Quản lý Vé\",\"DdHfeW\":\"Quản lý chi tiết tài khoản của bạn và cài đặt mặc định\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Quản lý người dùng của bạn và quyền của họ\",\"1m+YT2\":\"Các câu hỏi bắt buộc phải được trả lời trước khi khách hàng có thể thanh toán.\",\"Dim4LO\":\"Thêm một người tham dự theo cách thủ công\",\"e4KdjJ\":\"Thêm người tham dự\",\"vFjEnF\":\"Đánh dấu đã trả tiền\",\"g9dPPQ\":\"Tối đa mỗi đơn hàng\",\"l5OcwO\":\"Tin nhắn cho người tham dự\",\"Gv5AMu\":\"Tin nhắn cho người tham dự\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Tin nhắn cho người mua\",\"tNZzFb\":\"Nội dung tin nhắn\",\"lYDV/s\":\"Tin nhắn cho những người tham dự cá nhân\",\"V7DYWd\":\"Tin nhắn được gửi\",\"t7TeQU\":\"Tin nhắn\",\"xFRMlO\":\"Tối thiểu cho mỗi đơn hàng\",\"QYcUEf\":\"Giá tối thiểu\",\"RDie0n\":\"Linh tinh\",\"mYLhkl\":\"Cài đặt linh tinh\",\"KYveV8\":\"Hộp văn bản đa dòng\",\"VD0iA7\":\"Nhiều tùy chọn giá. Hoàn hảo cho sản phẩm giảm giá sớm, v.v.\",\"/bhMdO\":\"Mô tả sự kiện tuyệt vời của tôi ...\",\"vX8/tc\":\"Tiêu đề sự kiện tuyệt vời của tôi ...\",\"hKtWk2\":\"Hồ sơ của tôi\",\"fj5byd\":\"Không áp dụng\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Tên\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Đi tới người tham dự\",\"qqeAJM\":\"Không bao giờ\",\"7vhWI8\":\"Mật khẩu mới\",\"1UzENP\":\"Không\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Không có sự kiện lưu trữ để hiển thị.\",\"q2LEDV\":\"Không có người tham dự tìm thấy cho đơn hàng này.\",\"zlHa5R\":\"Không có người tham dự đã được thêm vào đơn hàng này.\",\"Wjz5KP\":\"Không có người tham dự để hiển thị\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Không có phân bổ sức chứa\",\"a/gMx2\":\"Không có danh sách check-in\",\"tMFDem\":\"Không có dữ liệu có sẵn\",\"6Z/F61\":\"Không có dữ liệu để hiển thị. Vui lòng chọn khoảng thời gian\",\"fFeCKc\":\"Không giảm giá\",\"HFucK5\":\"Không có sự kiện đã kết thúc để hiển thị.\",\"yAlJXG\":\"Không có sự kiện nào hiển thị\",\"GqvPcv\":\"Không có bộ lọc có sẵn\",\"KPWxKD\":\"Không có tin nhắn nào hiển thị\",\"J2LkP8\":\"Không có đơn hàng nào để hiển thị\",\"RBXXtB\":\"Hiện không có phương thức thanh toán. Vui lòng liên hệ ban tổ chức sự kiện để được hỗ trợ.\",\"ZWEfBE\":\"Không cần thanh toán\",\"ZPoHOn\":\"Không có sản phẩm liên quan đến người tham dự này.\",\"Ya1JhR\":\"Không có sản phẩm có sẵn trong danh mục này.\",\"FTfObB\":\"Chưa có sản phẩm\",\"+Y976X\":\"Không có mã khuyến mãi để hiển thị\",\"MAavyl\":\"Không có câu hỏi nào được trả lời bởi người tham dự này.\",\"SnlQeq\":\"Không có câu hỏi nào được hỏi cho đơn hàng này.\",\"Ev2r9A\":\"Không có kết quả\",\"gk5uwN\":\"Không có kết quả tìm kiếm\",\"RHyZUL\":\"Không có kết quả tìm kiếm.\",\"RY2eP1\":\"Không có thuế hoặc phí đã được thêm vào.\",\"EdQY6l\":\"Không\",\"OJx3wK\":\"Không có sẵn\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Ghi chú\",\"jtrY3S\":\"Chưa có gì để hiển thị\",\"hFwWnI\":\"Cài đặt thông báo\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Thông báo cho ban tổ chức các đơn hàng mới\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Số ngày quá hạn thanh toán (để trống để bỏ qua các điều khoản thanh toán từ hóa đơn)\",\"n86jmj\":\"Tiền tố số\",\"mwe+2z\":\"Các đơn hàng ngoại tuyến không được phản ánh trong thống kê sự kiện cho đến khi đơn hàng được đánh dấu là được thanh toán.\",\"dWBrJX\":\"Thanh toán offline không thành công. Vui lòng thử loại hoặc liên hệ với ban tổ chức sự kiện.\",\"fcnqjw\":\"Hướng Dẫn Thanh Toán Offline\",\"+eZ7dp\":\"Thanh toán offline\",\"ojDQlR\":\"Thông tin thanh toán offline\",\"u5oO/W\":\"Cài đặt thanh toán offline\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"Đang Bán\",\"Ug4SfW\":\"Khi bạn tạo một sự kiện, bạn sẽ thấy nó ở đây.\",\"ZxnK5C\":\"Khi bạn bắt đầu thu thập dữ liệu, bạn sẽ thấy nó ở đây.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Đang diễn ra\",\"z+nuVJ\":\"Sự kiện trực tuyến\",\"WKHW0N\":\"Chi tiết sự kiện trực tuyến\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"Mở Trang Check-In\",\"OdnLE4\":\"Mở thanh bên\",\"ZZEYpT\":[\"Tùy chọn \",[\"i\"]],\"oPknTP\":\"Thông tin bổ sung tùy chọn xuất hiện trên tất cả các hóa đơn (ví dụ: điều khoản thanh toán, phí thanh toán trễ, chính sách trả lại)\",\"OrXJBY\":\"Tiền tố tùy chọn cho số hóa đơn (ví dụ: Inv-)\",\"0zpgxV\":\"Tùy chọn\",\"BzEFor\":\"Hoặc\",\"UYUgdb\":\"Đơn hàng\",\"mm+eaX\":\"Đơn hàng #\",\"B3gPuX\":\"Đơn hàng bị hủy\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Ngày đơn hàng\",\"Tol4BF\":\"Chi tiết đơn hàng\",\"WbImlQ\":\"Đơn hàng đã bị hủy và chủ sở hữu đơn hàng đã được thông báo.\",\"nAn4Oe\":\"Đơn hàng được đánh dấu là đã thanh toán\",\"uzEfRz\":\"Ghi chú đơn hàng\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Mã đơn hàng\",\"acIJ41\":\"Trạng thái đơn hàng\",\"GX6dZv\":\"Tóm tắt đơn hàng\",\"tDTq0D\":\"Thời gian chờ đơn hàng\",\"1h+RBg\":\"Đơn hàng\",\"3y+V4p\":\"Địa chỉ tổ chức\",\"GVcaW6\":\"Chi tiết tổ chức\",\"nfnm9D\":\"Tên tổ chức\",\"G5RhpL\":\"Người tổ chức\",\"mYygCM\":\"Người tổ chức là bắt buộc\",\"Pa6G7v\":\"Tên ban tổ chức\",\"l894xP\":\"Ban tổ chức chỉ có thể quản lý các sự kiện và sản phẩm. Họ không thể quản lý người dùng, tài khoản hoặc thông tin thanh toán.\",\"fdjq4c\":\"Khoảng cách\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Không tìm thấy trang\",\"QbrUIo\":\"Lượt xem trang\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"đã trả tiền\",\"HVW65c\":\"Sản phẩm trả phí\",\"ZfxaB4\":\"Hoàn lại tiền một phần\",\"8ZsakT\":\"Mật khẩu\",\"TUJAyx\":\"Mật khẩu phải tối thiểu 8 ký tự\",\"vwGkYB\":\"Mật khẩu phải có ít nhất 8 ký tự\",\"BLTZ42\":\"Đặt lại mật khẩu thành công. Vui lòng sử dụng mật khẩu mới để đăng nhập.\",\"f7SUun\":\"Mật khẩu không giống nhau\",\"aEDp5C\":\"Dán mã này vào nơi bạn muốn widget xuất hiện.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Thanh toán\",\"Lg+ewC\":\"Thanh toán & Hoá đơn\",\"DZjk8u\":\"Cài đặt Thanh toán & Hoá đơn\",\"lflimf\":\"Thời hạn thanh toán\",\"JhtZAK\":\"Thanh toán thất bại\",\"JEdsvQ\":\"Hướng dẫn thanh toán\",\"bLB3MJ\":\"Phương thức thanh toán\",\"QzmQBG\":\"Nhà cung cấp Thanh toán\",\"lsxOPC\":\"Thanh toán đã nhận\",\"wJTzyi\":\"Tình trạng thanh toán\",\"xgav5v\":\"Thanh toán thành công!\",\"R29lO5\":\"Điều khoản thanh toán\",\"/roQKz\":\"Tỷ lệ phần trăm\",\"vPJ1FI\":\"Tỷ lệ phần trăm\",\"xdA9ud\":\"Đặt mã này vào của trang web của bạn.\",\"blK94r\":\"Vui lòng thêm ít nhất một tùy chọn\",\"FJ9Yat\":\"Vui lòng kiểm tra thông tin được cung cấp là chính xác\",\"TkQVup\":\"Vui lòng kiểm tra email và mật khẩu của bạn và thử lại\",\"sMiGXD\":\"Vui lòng kiểm tra email của bạn là hợp lệ\",\"Ajavq0\":\"Vui lòng kiểm tra email của bạn để xác nhận địa chỉ email của bạn\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Vui lòng tiếp tục trong tab mới\",\"hcX103\":\"Vui lòng tạo một sản phẩm\",\"cdR8d6\":\"Vui lòng tạo vé\",\"x2mjl4\":\"Vui lòng nhập URL hình ảnh hợp lệ trỏ đến một hình ảnh.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Xin lưu ý\",\"C63rRe\":\"Vui lòng quay lại trang sự kiện để bắt đầu lại.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Vui lòng chọn ít nhất một sản phẩm\",\"igBrCH\":\"Vui lòng xác minh địa chỉ email của bạn để truy cập tất cả các tính năng\",\"/IzmnP\":\"Vui lòng đợi trong khi chúng tôi chuẩn bị hóa đơn của bạn ...\",\"MOERNx\":\"Tiếng Bồ Đào Nha\",\"qCJyMx\":\"Tin nhắn sau phần thanh toán\",\"g2UNkE\":\"Được cung cấp bởi\",\"Rs7IQv\":\"Thông báo trước khi thanh toán\",\"rdUucN\":\"Xem trước\",\"a7u1N9\":\"Giá\",\"CmoB9j\":\"Chế độ hiển thị giá\",\"BI7D9d\":\"Giá không được đặt\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Loại giá\",\"6RmHKN\":\"Màu chính\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Màu chữ chính\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"In tất cả vé\",\"DKwDdj\":\"In vé\",\"K47k8R\":\"Sản phẩm\",\"1JwlHk\":\"Danh mục sản phẩm\",\"U61sAj\":\"Danh mục sản phẩm được cập nhật thành công.\",\"1USFWA\":\"Sản phẩm đã xóa thành công\",\"4Y2FZT\":\"Loại giá sản phẩm\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Bán Hàng\",\"U/R4Ng\":\"Cấp sản phẩm\",\"sJsr1h\":\"Loại sản phẩm\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Sản phẩm(s)\",\"N0qXpE\":\"Sản phẩm\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Sản phẩm đã bán\",\"/u4DIx\":\"Sản phẩm đã bán\",\"DJQEZc\":\"Sản phẩm được sắp xếp thành công\",\"vERlcd\":\"Hồ sơ\",\"kUlL8W\":\"Hồ sơ cập nhật thành công\",\"cl5WYc\":[\"Mã \",[\"Promo_code\"],\" đã được áp dụng\"],\"P5sgAk\":\"Mã khuyến mãi\",\"yKWfjC\":\"Trang mã khuyến mãi\",\"RVb8Fo\":\"Mã khuyến mãi\",\"BZ9GWa\":\"Mã khuyến mãi có thể được sử dụng để giảm giá, truy cập bán trước hoặc cung cấp quyền truy cập đặc biệt vào sự kiện của bạn.\",\"OP094m\":\"Báo cáo mã khuyến mãi\",\"4kyDD5\":\"Cung cấp ngữ cảnh hoặc hướng dẫn bổ sung cho câu hỏi này. Sử dụng trường này để thêm điều khoản\\nvà điều kiện, hướng dẫn, hoặc bất kỳ thông tin quan trọng nào mà người tham dự cần biết trước khi trả lời.\",\"toutGW\":\"Mã QR\",\"LkMOWF\":\"Số lượng có sẵn\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Đã xóa câu hỏi\",\"avf0gk\":\"Mô tả câu hỏi\",\"oQvMPn\":\"Tiêu đề câu hỏi\",\"enzGAL\":\"Câu hỏi\",\"ROv2ZT\":\"Câu hỏi\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Tùy chọn radio\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Người nhận\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Hoàn tiền không thành công\",\"n10yGu\":\"Lệnh hoàn trả\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Hoàn tiền chờ xử lý\",\"xHpVRl\":\"Trạng thái hoàn trả\",\"/BI0y9\":\"Đã hoàn lại\",\"fgLNSM\":\"Đăng ký\",\"9+8Vez\":\"Sử dụng còn lại\",\"tasfos\":\"Loại bỏ\",\"t/YqKh\":\"Hủy bỏ\",\"t9yxlZ\":\"Báo cáo\",\"prZGMe\":\"Yêu cầu địa chỉ thanh toán\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Gửi lại xác nhận email\",\"wIa8Qe\":\"Gửi lại lời mời\",\"VeKsnD\":\"Gửi lại email đơn hàng\",\"dFuEhO\":\"Gửi lại email vé\",\"o6+Y6d\":\"Đang gửi lại ...\",\"OfhWJH\":\"Đặt lại\",\"RfwZxd\":\"Đặt lại mật khẩu\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Khôi phục sự kiện\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Trở lại trang sự kiện\",\"8YBH95\":\"Doanh thu\",\"PO/sOY\":\"Thu hồi lời mời\",\"GDvlUT\":\"Vai trò\",\"ELa4O9\":\"Ngày bán kết thúc\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Ngày bắt đầu bán hàng\",\"hBsw5C\":\"Bán hàng kết thúc\",\"kpAzPe\":\"Bán hàng bắt đầu\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Lưu\",\"IUwGEM\":\"Lưu thay đổi\",\"U65fiW\":\"Lưu tổ chức\",\"UGT5vp\":\"Lưu cài đặt\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Tìm kiếm theo tên người tham dự, email hoặc đơn hàng\",\"+pr/FY\":\"Tìm kiếm theo tên sự kiện\",\"3zRbWw\":\"Tìm kiếm theo tên, email, hoặc mã đơn hàng #\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Tìm kiếm theo tên...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Tìm kiếm phân bổ sức chứa...\",\"r9M1hc\":\"Tìm kiếm danh sách check-in...\",\"+0Yy2U\":\"Tìm kiếm sản phẩm\",\"YIix5Y\":\"Tìm kiếm\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Màu phụ\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Màu chữ phụ\",\"02ePaq\":[\"Chọn \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Chọn danh mục...\",\"kWI/37\":\"Chọn nhà tổ chức\",\"ixIx1f\":\"Chọn sản phẩm\",\"3oSV95\":\"Chọn bậc sản phẩm\",\"C4Y1hA\":\"Chọn sản phẩm\",\"hAjDQy\":\"Chọn trạng thái\",\"QYARw/\":\"Chọn Vé\",\"OMX4tH\":\"Chọn Vé\",\"DrwwNd\":\"Chọn khoảng thời gian\",\"O/7I0o\":\"Chọn ...\",\"JlFcis\":\"Gửi\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Gửi tin nhắn\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Gửi tin nhắn\",\"D7ZemV\":\"Gửi email xác nhận và vé\",\"v1rRtW\":\"Gửi Test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Mô tả SEO\",\"/SIY6o\":\"Từ khóa SEO\",\"GfWoKv\":\"Cài đặt SEO\",\"rXngLf\":\"Tiêu đề SEO\",\"/jZOZa\":\"Phí dịch vụ\",\"Bj/QGQ\":\"Đặt giá tối thiểu và cho phép người dùng thanh toán nhiều hơn nếu họ chọn\",\"L0pJmz\":\"Đặt số bắt đầu cho hóa đơn. Sau khi hóa đơn được tạo, số này không thể thay đổi.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Cài đặt\",\"Z8lGw6\":\"Chia sẻ\",\"B2V3cA\":\"Chia sẻ sự kiện\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"Hiển thị số lượng sản phẩm có sẵn\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Hiển thị thêm\",\"izwOOD\":\"Hiển thị thuế và phí riêng biệt\",\"1SbbH8\":\"Hiển thị cho khách hàng sau khi họ thanh toán, trên trang Tóm tắt đơn hàng.\",\"YfHZv0\":\"Hiển thị cho khách hàng trước khi họ thanh toán\",\"CBBcly\":\"Hiển thị các trường địa chỉ chung, bao gồm quốc gia\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Hộp văn bản dòng đơn\",\"+P0Cn2\":\"Bỏ qua bước này\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Đã bán hết\",\"Mi1rVn\":\"Đã bán hết\",\"nwtY4N\":\"Đã xảy ra lỗi\",\"GRChTw\":\"Có gì đó không ổn trong khi xóa thuế hoặc phí\",\"YHFrbe\":\"Có gì đó không ổn! Vui lòng thử lại\",\"kf83Ld\":\"Có gì đó không ổn.\",\"fWsBTs\":\"Có gì đó không ổn. Vui lòng thử lại\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"Xin lỗi, mã khuyến mãi này không được công nhận\",\"65A04M\":\"Tiếng Tây Ban Nha\",\"mFuBqb\":\"Sản phẩm tiêu chuẩn với giá cố định\",\"D3iCkb\":\"Ngày bắt đầu\",\"/2by1f\":\"Nhà nước hoặc khu vực\",\"uAQUqI\":\"Trạng thái\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Thanh toán Stripe không được kích hoạt cho sự kiện này.\",\"UJmAAK\":\"Chủ đề\",\"X2rrlw\":\"Tổng phụ\",\"zzDlyQ\":\"Thành công\",\"b0HJ45\":[\"Thành công! \",[\"0\"],\" sẽ nhận một email trong chốc lát.\"],\"BJIEiF\":[[\"0\"],\" Người tham dự thành công\"],\"OtgNFx\":\"Địa chỉ email được xác nhận thành công\",\"IKwyaF\":\"Thay đổi email được xác nhận thành công\",\"zLmvhE\":\"Người tham dự được tạo thành công\",\"gP22tw\":\"Sản phẩm được tạo thành công\",\"9mZEgt\":\"Mã khuyến mãi được tạo thành công\",\"aIA9C4\":\"Câu hỏi được tạo thành công\",\"J3RJSZ\":\"Người tham dự cập nhật thành công\",\"3suLF0\":\"Phân công công suất được cập nhật thành công\",\"Z+rnth\":\"Danh sách soát vé được cập nhật thành công\",\"vzJenu\":\"Cài đặt email được cập nhật thành công\",\"7kOMfV\":\"Sự kiện cập nhật thành công\",\"G0KW+e\":\"Thiết kế trang sự kiện được cập nhật thành công\",\"k9m6/E\":\"Cài đặt trang chủ được cập nhật thành công\",\"y/NR6s\":\"Vị trí cập nhật thành công\",\"73nxDO\":\"Cài đặt linh tinh được cập nhật thành công\",\"4H80qv\":\"Đơn hàng cập nhật thành công\",\"6xCBVN\":\"Cập nhật cài đặt thanh toán & lập hóa đơn thành công\",\"1Ycaad\":\"Đã cập nhật sản phẩm thành công\",\"70dYC8\":\"Cập nhật mã khuyến mãi thành công\",\"F+pJnL\":\"Cập nhật cài đặt SEO thành công\",\"DXZRk5\":\"Phòng 100\",\"GNcfRk\":\"Email hỗ trợ\",\"uRfugr\":\"Áo thun\",\"JpohL9\":\"Thuế\",\"geUFpZ\":\"Thuế & Phí\",\"dFHcIn\":\"Chi tiết thuế\",\"wQzCPX\":\"Thông tin thuế sẽ xuất hiện ở cuối tất cả các hóa đơn (ví dụ: mã số thuế VAT, đăng ký thuế)\",\"0RXCDo\":\"Xóa thuế hoặc phí thành công\",\"ZowkxF\":\"Thuế\",\"qu6/03\":\"Thuế và phí\",\"gypigA\":\"Mã khuyến mãi không hợp lệ\",\"5ShqeM\":\"Danh sách check-in bạn đang tìm kiếm không tồn tại.\",\"QXlz+n\":\"Tiền tệ mặc định cho các sự kiện của bạn.\",\"mnafgQ\":\"Múi giờ mặc định cho các sự kiện của bạn.\",\"o7s5FA\":\"Ngôn ngữ mà người tham dự sẽ nhận email.\",\"NlfnUd\":\"Liên kết bạn đã nhấp vào không hợp lệ.\",\"HsFnrk\":[\"Số lượng sản phẩm tối đa cho \",[\"0\"],\"là \",[\"1\"]],\"TSAiPM\":\"Trang bạn đang tìm kiếm không tồn tại\",\"MSmKHn\":\"Giá hiển thị cho khách hàng sẽ bao gồm thuế và phí.\",\"6zQOg1\":\"Giá hiển thị cho khách hàng sẽ không bao gồm thuế và phí. Chúng sẽ được hiển thị riêng biệt.\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"Tiêu đề của sự kiện sẽ được hiển thị trong kết quả của công cụ tìm kiếm và khi chia sẻ trên phương tiện truyền thông xã hội. \",\"wDx3FF\":\"Không có sản phẩm nào cho sự kiện này\",\"pNgdBv\":\"Không có sản phẩm nào trong danh mục này\",\"rMcHYt\":\"Có một khoản hoàn tiền đang chờ xử lý. Vui lòng đợi hoàn tất trước khi yêu cầu hoàn tiền khác.\",\"F89D36\":\"Đã xảy ra lỗi khi đánh dấu đơn hàng là đã thanh toán\",\"68Axnm\":\"Đã xảy ra lỗi khi xử lý yêu cầu của bạn. Vui lòng thử lại.\",\"mVKOW6\":\"Có một lỗi khi gửi tin nhắn của bạn\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Người tham dự này có đơn hàng chưa thanh toán.\",\"mf3FrP\":\"Danh mục này chưa có bất kỳ sản phẩm nào.\",\"8QH2Il\":\"Danh mục này bị ẩn khỏi chế độ xem công khai\",\"xxv3BZ\":\"Danh sách người tham dự này đã hết hạn\",\"Sa7w7S\":\"Danh sách người tham dự này đã hết hạn và không còn có sẵn để kiểm tra.\",\"Uicx2U\":\"Danh sách người tham dự này đang hoạt động\",\"1k0Mp4\":\"Danh sách người tham dự này chưa hoạt động\",\"K6fmBI\":\"Danh sách người tham dự này chưa hoạt động và không có sẵn để kiểm tra.\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Thông tin này sẽ được hiển thị trên trang thanh toán, trang tóm tắt đơn hàng và email xác nhận đơn hàng.\",\"XAHqAg\":\"Đây là một sản phẩm chung, như áo phông hoặc cốc. Không có vé nào được phát hành\",\"CNk/ro\":\"Đây là một sự kiện trực tuyến\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Thông báo này sẽ được bao gồm trong phần chân trang của tất cả các email được gửi từ sự kiện này\",\"55i7Fa\":\"Thông báo này sẽ chỉ được hiển thị nếu đơn hàng được hoàn thành thành công. Đơn chờ thanh toán sẽ không hiển thị thông báo này.\",\"RjwlZt\":\"Đơn hàng này đã được thanh toán.\",\"5K8REg\":\"Đơn hàng này đã được hoàn trả.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Đơn hàng này đã bị hủy bỏ.\",\"Q0zd4P\":\"Đơn hàng này đã hết hạn. Vui lòng bắt đầu lại.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Đơn hàng này đã hoàn tất.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Trang Đơn hàng này không còn có sẵn.\",\"i0TtkR\":\"Điều này ghi đè tất cả các cài đặt khả năng hiển thị và sẽ ẩn sản phẩm khỏi tất cả các khách hàng.\",\"cRRc+F\":\"Sản phẩm này không thể bị xóa vì nó được liên kết với một đơn hàng. \",\"3Kzsk7\":\"Sản phẩm này là vé. Người mua sẽ nhận được vé sau khi mua\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"Liên kết mật khẩu đặt lại này không hợp lệ hoặc hết hạn.\",\"IV9xTT\":\"Người dùng này không hoạt động, vì họ chưa chấp nhận lời mời của họ.\",\"5AnPaO\":\"vé\",\"kjAL4v\":\"Vé\",\"dtGC3q\":\"Email vé đã được gửi lại với người tham dự\",\"54q0zp\":\"Vé cho\",\"xN9AhL\":[\"Cấp \",[\"0\"]],\"jZj9y9\":\"Sản phẩm cấp bậc\",\"8wITQA\":\"Sản phẩm theo bậc cho phép bạn cung cấp nhiều tùy chọn giá cho cùng một sản phẩm. Điều này hoàn hảo cho các sản phẩm ưu đãi sớm hoặc các nhóm giá khác nhau cho từng đối tượng.\",\"nn3mSR\":\"Thời gian còn lại:\",\"s/0RpH\":\"Thời gian được sử dụng\",\"y55eMd\":\"Thời gian được sử dụng\",\"40Gx0U\":\"Múi giờ\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Công cụ\",\"72c5Qo\":\"Tổng\",\"YXx+fG\":\"Tổng trước khi giảm giá\",\"NRWNfv\":\"Tổng tiền chiết khấu\",\"BxsfMK\":\"Tổng phí\",\"2bR+8v\":\"Tổng doanh thu\",\"mpB/d9\":\"Tổng tiền đơn hàng\",\"m3FM1g\":\"Tổng đã hoàn lại\",\"jEbkcB\":\"Tổng đã hoàn lại\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Tổng thuế\",\"+zy2Nq\":\"Loại\",\"FMdMfZ\":\"Không thể kiểm tra người tham dự\",\"bPWBLL\":\"Không thể kiểm tra người tham dự\",\"9+P7zk\":\"Không thể tạo sản phẩm. Vui lòng kiểm tra thông tin của bạn\",\"WLxtFC\":\"Không thể tạo sản phẩm. Vui lòng kiểm tra thông tin của bạn\",\"/cSMqv\":\"Không thể tạo câu hỏi. Vui lòng kiểm tra thông tin của bạn\",\"MH/lj8\":\"Không thể cập nhật câu hỏi. Vui lòng kiểm tra thông tin của bạn\",\"nnfSdK\":\"Khách hàng duy nhất\",\"Mqy/Zy\":\"Hoa Kỳ\",\"NIuIk1\":\"Không giới hạn\",\"/p9Fhq\":\"Không giới hạn có sẵn\",\"E0q9qH\":\"Sử dụng không giới hạn\",\"h10Wm5\":\"Đơn hàng chưa thanh toán\",\"ia8YsC\":\"Sắp tới\",\"TlEeFv\":\"Các sự kiện sắp tới\",\"L/gNNk\":[\"Cập nhật \",[\"0\"]],\"+qqX74\":\"Cập nhật tên sự kiện, mô tả và ngày\",\"vXPSuB\":\"Cập nhật hồ sơ\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL được sao chép vào bảng tạm\",\"e5lF64\":\"Ví dụ sử dụng\",\"fiV0xj\":\"Giới hạn sử dụng\",\"sGEOe4\":\"Sử dụng phiên bản làm mờ của ảnh bìa làm nền\",\"OadMRm\":\"Sử dụng hình ảnh bìa\",\"7PzzBU\":\"Người dùng\",\"yDOdwQ\":\"Quản lý người dùng\",\"Sxm8rQ\":\"Người dùng\",\"VEsDvU\":\"Người dùng có thể thay đổi email của họ trong <0>Cài đặt hồ sơ\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"Thuế VAT\",\"E/9LUk\":\"Tên địa điểm\",\"jpctdh\":\"Xem\",\"Pte1Hv\":\"Xem chi tiết người tham dự\",\"/5PEQz\":\"Xem trang sự kiện\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Xem trên Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Danh sách người tham dự VIP\",\"tF+VVr\":\"Vé VIP\",\"2q/Q7x\":\"Tầm nhìn\",\"vmOFL/\":\"Chúng tôi không thể xử lý thanh toán của bạn. Vui lòng thử lại hoặc liên hệ với ban tổ chức.\",\"45Srzt\":\"Chúng tôi không thể xóa danh mục. Vui lòng thử lại.\",\"/DNy62\":[\"Chúng tôi không thể tìm thấy bất kỳ vé nào khớp với \",[\"0\"]],\"1E0vyy\":\"Chúng tôi không thể tải dữ liệu. Vui lòng thử lại.\",\"NmpGKr\":\"Chúng tôi không thể sắp xếp lại các danh mục. Vui lòng thử lại.\",\"BJtMTd\":\"Chúng tôi đề xuất kích thước 2160px bằng 1080px và kích thước tệp tối đa là 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Chúng tôi không thể xác nhận thanh toán của bạn. Vui lòng thử lại hoặc liên hệ với ban tổ chức.\",\"Gspam9\":\"Chúng tôi đang xử lý đơn hàng của bạn. Đợi một chút...\",\"LuY52w\":\"Chào mừng bạn! Vui lòng đăng nhập để tiếp tục.\",\"dVxpp5\":[\"Chào mừng trở lại\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Sản phẩm cấp bậc là gì?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Thể loại là gì?\",\"gxeWAU\":\"Mã này áp dụng cho sản phẩm nào?\",\"hFHnxR\":\"Mã này áp dụng cho sản phẩm nào? (Mặc định áp dụng cho tất cả)\",\"AeejQi\":\"Sản phẩm nào nên áp dụng công suất này?\",\"Rb0XUE\":\"Bạn sẽ đến lúc mấy giờ?\",\"5N4wLD\":\"Đây là loại câu hỏi nào?\",\"gyLUYU\":\"Khi được bật, hóa đơn sẽ được tạo cho các đơn hàng vé. Hóa đơn sẽ được gửi kèm với email xác nhận đơn hàng. Người tham dự cũng có thể tải hóa đơn của họ từ trang xác nhận đơn hàng.\",\"D3opg4\":\"Khi thanh toán ngoại tuyến được bật, người dùng có thể hoàn tất đơn hàng và nhận vé của họ. Vé của họ sẽ hiển thị rõ ràng rằng đơn hàng chưa được thanh toán, và công cụ check-in sẽ thông báo cho nhân viên check-in nếu đơn hàng cần thanh toán.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Những vé nào nên được liên kết với danh sách người tham dự này?\",\"S+OdxP\":\"Ai đang tổ chức sự kiện này?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Ai nên được hỏi câu hỏi này?\",\"VxFvXQ\":\"Nhúng Widget\",\"v1P7Gm\":\"Cài đặt widget\",\"b4itZn\":\"Làm việc\",\"hqmXmc\":\"Làm việc ...\",\"+G/XiQ\":\"Từ đầu năm đến nay\",\"l75CjT\":\"Có\",\"QcwyCh\":\"Có, loại bỏ chúng\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Bạn đang thay đổi email của mình thành <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Bạn đang ngoại tuyến\",\"sdB7+6\":\"Bạn có thể tạo mã khuyến mãi nhắm mục tiêu sản phẩm này trên\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Bạn không thể thay đổi loại sản phẩm vì có những người tham dự liên quan đến sản phẩm này.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Bạn không thể xác nhận người tham dự với các đơn hàng không được thanh toán. Cài đặt này có thể được thay đổi ở phần cài đặt sự kiện.\",\"c9Evkd\":\"Bạn không thể xóa danh mục cuối cùng.\",\"6uwAvx\":\"Bạn không thể xóa cấp giá này vì đã có sản phẩm được bán cho cấp này. Thay vào đó, bạn có thể ẩn nó.\",\"tFbRKJ\":\"Bạn không thể chỉnh sửa vai trò hoặc trạng thái của chủ sở hữu tài khoản.\",\"fHfiEo\":\"Bạn không thể hoàn trả một Đơn hàng được tạo thủ công.\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Bạn có quyền truy cập vào nhiều tài khoản. Vui lòng chọn một tài khoản để tiếp tục.\",\"Z6q0Vl\":\"Bạn đã chấp nhận lời mời này. Vui lòng đăng nhập để tiếp tục.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Bạn không có thay đổi email đang chờ xử lý.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Bạn đã hết thời gian để hoàn thành đơn hàng của mình.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"Bạn phải hiểu rằng email này không phải là email quảng cáo\",\"3ZI8IL\":\"Bạn phải đồng ý với các điều khoản và điều kiện\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Bạn phải tạo một vé trước khi bạn có thể thêm một người tham dự.\",\"jE4Z8R\":\"Bạn phải có ít nhất một cấp giá\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Bạn sẽ phải đánh dấu một đơn hàng theo cách thủ công. Được thực hiện trong trang quản lý đơn hàng.\",\"L/+xOk\":\"Bạn sẽ cần một vé trước khi bạn có thể tạo một danh sách người tham dự.\",\"Djl45M\":\"Bạn sẽ cần tại một sản phẩm trước khi bạn có thể tạo một sự phân công công suất.\",\"y3qNri\":\"Bạn cần ít nhất một sản phẩm để bắt đầu. Miễn phí, trả phí hoặc để người dùng quyết định số tiền thanh toán.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Tên tài khoản của bạn được sử dụng trên các trang sự kiện và trong email.\",\"veessc\":\"Người tham dự của bạn sẽ xuất hiện ở đây sau khi họ đăng ký tham gia sự kiện. Bạn cũng có thể thêm người tham dự theo cách thủ công.\",\"Eh5Wrd\":\"Trang web tuyệt vời của bạn 🎉\",\"lkMK2r\":\"Thông tin của bạn\",\"3ENYTQ\":[\"Yêu cầu email của bạn thay đổi thành <0>\",[\"0\"],\" đang chờ xử lý. \"],\"yZfBoy\":\"Tin nhắn của bạn đã được gửi\",\"KSQ8An\":\"Đơn hàng của bạn\",\"Jwiilf\":\"Đơn hàng của bạn đã bị hủy\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Đơn hàng của bạn sẽ xuất hiện ở đây sau khi chúng bắt đầu tham gia.\",\"9TO8nT\":\"Mật khẩu của bạn\",\"P8hBau\":\"Thanh toán của bạn đang xử lý.\",\"UdY1lL\":\"Thanh toán của bạn không thành công, vui lòng thử lại.\",\"fzuM26\":\"Thanh toán của bạn không thành công. Vui lòng thử lại.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Hoàn lại tiền của bạn đang xử lý.\",\"IFHV2p\":\"Vé của bạn cho\",\"x1PPdr\":\"mã zip / bưu điện\",\"BM/KQm\":\"mã zip hoặc bưu điện\",\"+LtVBt\":\"mã zip hoặc bưu điện\",\"25QDJ1\":\"- Nhấp để xuất bản\",\"WOyJmc\":\"- Nhấp để gỡ bỏ\",\"ncwQad\":\"(trống)\",\"B/gRsg\":\"(không có)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" đã check-in\"],\"3beCx0\":[[\"0\"],\" <0>đã check-in\"],\"S4PqS9\":[[\"0\"],\" Webhook đang hoạt động\"],\"6MIiOI\":[\"Còn \",[\"0\"]],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[\"Đã có \",[\"0\"],\" trong số \",[\"1\"],\" chỗ được đặt.\"],\"B7pZfX\":[[\"0\"],\" nhà tổ chức\"],\"rZTf6P\":[\"Còn \",[\"0\"],\" chỗ\"],\"/HkCs4\":[[\"0\"],\" vé\"],\"dtXkP9\":[[\"0\"],\" ngày sắp tới\"],\"30bTiU\":[\"Đã bật \",[\"activeCount\"]],\"jTs4am\":[\"Logo \",[\"appName\"]],\"gbJOk9\":[[\"attendeeCount\"],\" người tham dự đã đăng ký cho buổi này.\"],\"TjbIUI\":[[\"availableCount\"],\" trong số \",[\"totalCount\"],\" có sẵn\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" đã check-in\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" giờ trước\"],\"NRSLBe\":[[\"diffMin\"],\" phút trước\"],\"iYfwJE\":[[\"diffSec\"],\" giây trước\"],\"OJnhhX\":[[\"EventCount\"],\" Sự kiện\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" người tham dự đã đăng ký trên các buổi bị ảnh hưởng.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" loại vé\"],\"0cLzoF\":[[\"totalOccurrences\"],\" ngày\"],\"AEGc4t\":[[\"totalOccurrences\"],\" buổi trên \",[\"0\"],\" ngày (\",[\"1\",\"plural\",{\"one\":[\"#\",\" buổi\"],\"other\":[\"#\",\" buổi\"]}],\" mỗi ngày)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Thuế/Phí\",\"B1St2O\":\"<0>Danh sách check-in giúp bạn quản lý lối vào sự kiện theo ngày, khu vực hoặc loại vé. Bạn có thể liên kết vé với các danh sách cụ thể như khu vực VIP hoặc vé Ngày 1 và chia sẻ liên kết check-in an toàn với nhân viên. Không cần tài khoản. Check-in hoạt động trên điện thoại di động, máy tính để bàn hoặc máy tính bảng, sử dụng camera thiết bị hoặc máy quét USB HID. \",\"v9VSIS\":\"<0>Đặt giới hạn tổng số người tham dự áp dụng cho nhiều loại vé cùng lúc.<1>Ví dụ: nếu bạn liên kết vé <2>Day Pass và <3>Full Weekend, cả hai sẽ sử dụng chung một số lượng chỗ. Khi đạt giới hạn, tất cả các vé được liên kết sẽ tự động ngừng bán.\",\"vKXqag\":\"<0>Đây là số lượng mặc định cho tất cả các ngày. Sức chứa của từng ngày có thể giới hạn thêm khả năng cung cấp trên <1>trang Lịch buổi.\",\"ZnVt5v\":\"<0>Webhooks thông báo ngay lập tức cho các dịch vụ bên ngoài khi sự kiện diễn ra, chẳng hạn như thêm người tham dự mới vào CRM hoặc danh sách email khi đăng ký, đảm bảo tự động hóa mượt mà.<1>Sử dụng các dịch vụ bên thứ ba như <2>Zapier, <3>IFTTT hoặc <4>Make để tạo quy trình làm việc tùy chỉnh và tự động hóa công việc.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" theo tỷ giá hiện tại\"],\"M2DyLc\":\"1 Webhook đang hoạt động\",\"6hIk/x\":\"1 người tham dự đã đăng ký trên các buổi bị ảnh hưởng.\",\"qOyE2U\":\"1 người tham dự đã đăng ký cho buổi này.\",\"943BwI\":\"1 ngày sau ngày kết thúc\",\"yj3N+g\":\"1 ngày sau ngày bắt đầu\",\"Z3etYG\":\"1 ngày trước sự kiện\",\"szSnlj\":\"1 giờ trước sự kiện\",\"yTsaLw\":\"1 vé\",\"nz96Ue\":\"1 loại vé\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"1 tuần trước sự kiện\",\"09VFYl\":\"12 vé được cung cấp\",\"HR/cvw\":\"123 Đường Mẫu\",\"dgKxZ5\":\"Hỗ trợ 135+ loại tiền tệ và 40+ phương thức thanh toán\",\"kMU5aM\":\"Thông báo hủy đã được gửi đến\",\"o++0qa\":\"thay đổi thời lượng\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"Mã xác thực mới đã được gửi đến email của bạn\",\"sr2Je0\":\"dịch chuyển thời gian bắt đầu/kết thúc\",\"/z/bH1\":\"Mô tả ngắn gọn về nhà tổ chức của bạn sẽ được hiển thị cho người dùng.\",\"aS0jtz\":\"Đã bỏ\",\"uyJsf6\":\"Thông tin sự kiện\",\"JvuLls\":\"Hấp thụ phí\",\"lk74+I\":\"Hấp thụ phí\",\"1uJlG9\":\"Màu nhấn\",\"g3UF2V\":\"Chấp nhận\",\"K5+3xg\":\"Chấp nhận lời mời\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Tài khoản · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Thông tin tài khoản\",\"EHNORh\":\"Không tìm thấy tài khoản\",\"bPwFdf\":\"Tài Khoản\",\"AhwTa1\":\"Cần hành động: Cần thông tin VAT\",\"APyAR/\":\"Sự kiện hoạt động\",\"kCl6ja\":\"Phương thức thanh toán đang hoạt động\",\"XJOV1Y\":\"Hoạt động\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"Thêm một ngày\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"Thêm một ngày đơn\",\"CjvTPJ\":\"Thêm thời gian khác\",\"0XCduh\":\"Thêm ít nhất một thời gian\",\"/chGpa\":\"Thêm thông tin kết nối cho sự kiện trực tuyến.\",\"UWWRyd\":\"Thêm câu hỏi tùy chỉnh để thu thập thông tin bổ sung trong quá trình thanh toán\",\"Z/dcxc\":\"Thêm ngày\",\"Q219NT\":\"Thêm các ngày\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"Thêm địa điểm\",\"VX6WUv\":\"Thêm địa điểm\",\"GCQlV2\":\"Thêm nhiều thời gian nếu bạn tổ chức nhiều buổi mỗi ngày.\",\"7JF9w9\":\"Thêm câu hỏi\",\"NLbIb6\":\"Vẫn thêm người tham dự này (ghi đè sức chứa)\",\"6PNlRV\":\"Thêm sự kiện này vào lịch của bạn\",\"BGD9Yt\":\"Thêm vé\",\"uIv4Op\":\"Thêm pixel theo dõi vào các trang sự kiện công khai và trang chủ nhà tổ chức của bạn. Một thanh đồng ý cookie sẽ được hiển thị cho khách truy cập khi tính năng theo dõi đang hoạt động.\",\"QN2F+7\":\"Thêm Webhook\",\"NsWqSP\":\"Thêm tài khoản mạng xã hội và URL trang web của bạn. Chúng sẽ được hiển thị trên trang công khai của nhà tổ chức.\",\"bVjDs9\":\"Phí bổ sung\",\"MKqSg4\":\"Yêu cầu quyền truy cập quản trị viên\",\"0Zypnp\":\"Bảng Điều Khiển Quản Trị\",\"YAV57v\":\"Đối tác liên kết\",\"I+utEq\":\"Mã đối tác liên kết không thể thay đổi\",\"/jHBj5\":\"Tạo đối tác liên kết thành công\",\"uCFbG2\":\"Xóa đối tác liên kết thành công\",\"ld8I+f\":\"Chương trình đối tác liên kết\",\"a41PKA\":\"Doanh số đối tác liên kết sẽ được theo dõi\",\"mJJh2s\":\"Doanh số đối tác liên kết sẽ không được theo dõi. Điều này sẽ vô hiệu hóa đối tác.\",\"jabmnm\":\"Cập nhật đối tác liên kết thành công\",\"CPXP5Z\":\"Chi nhánh\",\"9Wh+ug\":\"Đã xuất danh sách đối tác\",\"3cqmut\":\"Đối tác liên kết giúp bạn theo dõi doanh số từ các đối tác và người ảnh hưởng. Tạo mã đối tác và chia sẻ để theo dõi hiệu suất.\",\"z7GAMJ\":\"tất cả\",\"N40H+G\":\"Tất cả\",\"7rLTkE\":\"Tất cả sự kiện đã lưu trữ\",\"gKq1fa\":\"Tất cả người tham dự\",\"63gRoO\":\"Tất cả người tham dự của các buổi đã chọn\",\"uWxIoH\":\"Tất cả người tham dự của buổi này\",\"pMLul+\":\"Tất cả tiền tệ\",\"sgUdRZ\":\"Tất cả ngày\",\"e4q4uO\":\"Tất cả ngày\",\"ZS/D7f\":\"Tất cả sự kiện đã kết thúc\",\"QsYjci\":\"Tất cả sự kiện\",\"31KB8w\":\"Đã xóa tất cả công việc thất bại\",\"D2g7C7\":\"Tất cả công việc đã được xếp hàng để thử lại\",\"B4RFBk\":\"Tất cả ngày phù hợp\",\"F1/VgK\":\"Tất cả các buổi\",\"OpWjMq\":\"Tất cả các buổi\",\"Sxm1lO\":\"Tất cả trạng thái\",\"dr7CWq\":\"Tất cả sự kiện sắp diễn ra\",\"GpT6Uf\":\"Cho phép người tham dự cập nhật thông tin vé của họ (tên, email) qua liên kết bảo mật được gửi cùng với xác nhận đơn hàng.\",\"F3mW5G\":\"Cho phép khách hàng tham gia danh sách chờ khi sản phẩm này đã hết\",\"c4uJfc\":\"Sắp xong rồi! Chúng tôi đang chờ thanh toán của bạn được xử lý. Quá trình này chỉ mất vài giây.\",\"ocS8eq\":[\"Đã có tài khoản? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Đã vào\",\"/H326L\":\"Đã hoàn tiền\",\"USEpOK\":\"Đã dùng Stripe trên một nhà tổ chức khác? Tái sử dụng kết nối đó.\",\"RtxQTF\":\"Cũng hủy đơn hàng này\",\"jkNgQR\":\"Cũng hoàn tiền đơn hàng này\",\"xYqsHg\":\"Luôn có sẵn\",\"Wvrz79\":\"Số tiền đã thanh toán\",\"Zkymb9\":\"Email để liên kết với đối tác này. Đối tác sẽ không nhận được thông báo.\",\"vRznIT\":\"Đã xảy ra lỗi khi kiểm tra trạng thái xuất.\",\"eusccx\":\"Thông báo tùy chọn để hiển thị trên sản phẩm nổi bật, ví dụ: \\\"Bán nhanh 🔥\\\" hoặc \\\"Giá trị tốt nhất\\\"\",\"5GJuNp\":[\"và \",[\"0\"],\" nữa...\"],\"QNrkms\":\"Câu trả lời đã được cập nhật thành công.\",\"+qygei\":\"Câu trả lời\",\"GK7Lnt\":\"Câu trả lời khi thanh toán (ví dụ chọn bữa ăn)\",\"lE8PgT\":\"Mọi ngày bạn đã tùy chỉnh thủ công sẽ được giữ lại.\",\"vP3Nzg\":[\"Áp dụng cho \",[\"0\"],\" ngày chưa hủy hiện đang được tải trên trang này.\"],\"kkVyZZ\":\"Áp dụng cho người mở liên kết khi chưa đăng nhập. Thành viên đã đăng nhập luôn thấy mọi thứ.\",\"je4muG\":[\"Áp dụng cho mỗi ngày chưa hủy trong sự kiện này \",[\"0\"],\" — bao gồm cả những ngày chưa được tải.\"],\"YIIQtt\":\"Áp dụng thay đổi\",\"NzWX1Y\":\"Áp dụng cho\",\"Ps5oDT\":\"Áp dụng cho tất cả các vé\",\"261RBr\":\"Phê duyệt tin nhắn\",\"naCW6Z\":\"Tháng 4\",\"B495Gs\":\"Lưu trữ\",\"5sNliy\":\"Lưu trữ sự kiện\",\"BrwnrJ\":\"Lưu trữ ban tổ chức\",\"E5eghW\":\"Lưu trữ sự kiện này để ẩn khỏi công chúng. Bạn có thể khôi phục nó sau.\",\"eqFkeI\":\"Lưu trữ ban tổ chức này. Điều này cũng sẽ lưu trữ tất cả các sự kiện thuộc ban tổ chức này.\",\"BzcxWv\":\"Ban tổ chức đã lưu trữ\",\"9cQBd6\":\"Bạn có chắc chắn muốn lưu trữ sự kiện này không? Nó sẽ không còn hiển thị với công chúng nữa.\",\"Trnl3E\":\"Bạn có chắc chắn muốn lưu trữ ban tổ chức này không? Điều này cũng sẽ lưu trữ tất cả các sự kiện thuộc ban tổ chức này.\",\"wOvn+e\":[\"Bạn có chắc chắn muốn hủy \",[\"count\"],\" ngày không? Người tham dự bị ảnh hưởng sẽ được thông báo qua email.\"],\"GTxE0U\":\"Bạn có chắc chắn muốn hủy ngày này không? Người tham dự bị ảnh hưởng sẽ được thông báo qua email.\",\"VkSk/i\":\"Bạn có chắc chắn muốn hủy tin nhắn đã lên lịch này không?\",\"0aVEBY\":\"Bạn có chắc chắn muốn xóa tất cả các công việc thất bại không?\",\"LchiNd\":\"Bạn có chắc chắn muốn xóa đối tác này? Hành động này không thể hoàn tác.\",\"vPeW/6\":\"Bạn có chắc chắn muốn xóa cấu hình này không? Điều này có thể ảnh hưởng đến các tài khoản đang sử dụng nó.\",\"h42Hc/\":\"Bạn có chắc chắn muốn xóa ngày này không? Hành động này không thể hoàn tác.\",\"JmVITJ\":\"Bạn có chắc chắn muốn xóa mẫu này không? Hành động này không thể hoàn tác và email sẽ quay về mẫu mặc định.\",\"aLS+A6\":\"Bạn có chắc chắn muốn xóa mẫu này không? Hành động này không thể hoàn tác và email sẽ quay về mẫu của tổ chức hoặc mẫu mặc định.\",\"5H3Z78\":\"Bạn có chắc là bạn muốn xóa webhook này không?\",\"147G4h\":\"Bạn có chắc chắn muốn rời đi?\",\"VDWChT\":\"Bạn có chắc muốn chuyển nhà tổ chức này sang bản nháp không? Trang của nhà tổ chức sẽ không hiển thị công khai.\",\"pWtQJM\":\"Bạn có chắc muốn công khai nhà tổ chức này không? Trang của nhà tổ chức sẽ hiển thị công khai.\",\"EOqL/A\":\"Bạn có chắc chắn muốn cung cấp một suất cho người này không? Họ sẽ nhận được thông báo qua email.\",\"yAXqWW\":\"Bạn có chắc chắn muốn xóa vĩnh viễn ngày này không? Hành động này không thể hoàn tác.\",\"WFHOlF\":\"Bạn có chắc chắn muốn xuất bản sự kiện này? Sau khi xuất bản, sự kiện sẽ hiển thị công khai.\",\"4TNVdy\":\"Bạn có chắc chắn muốn xuất bản hồ sơ nhà tổ chức này? Sau khi xuất bản, hồ sơ sẽ hiển thị công khai.\",\"8x0pUg\":\"Bạn có chắc chắn muốn xóa mục này khỏi danh sách chờ?\",\"cDtoWq\":[\"Bạn có chắc chắn muốn gửi lại xác nhận đơn hàng đến \",[\"0\"],\"?\"],\"xeIaKw\":[\"Bạn có chắc chắn muốn gửi lại vé đến \",[\"0\"],\"?\"],\"BjbocR\":\"Bạn có chắc chắn muốn khôi phục sự kiện này không?\",\"7MjfcR\":\"Bạn có chắc chắn muốn khôi phục ban tổ chức này không?\",\"ExDt3P\":\"Bạn có chắc chắn muốn hủy xuất bản sự kiện này? Sự kiện sẽ không còn hiển thị công khai.\",\"5Qmxo/\":\"Bạn có chắc chắn muốn hủy xuất bản hồ sơ nhà tổ chức này? Hồ sơ sẽ không còn hiển thị công khai.\",\"Uqefyd\":\"Bạn có đăng ký VAT tại EU không?\",\"+QARA4\":\"Nghệ thuật\",\"tLf3yJ\":\"Vì doanh nghiệp của bạn có trụ sở tại Ireland, VAT Ireland 23% sẽ được áp dụng tự động cho tất cả phí nền tảng.\",\"tMeVa/\":\"Yêu cầu tên và email cho mỗi vé được mua\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Gán gói\",\"xdiER7\":\"Cấp độ được gán\",\"F2rX0R\":\"Ít nhất một loại sự kiện phải được chọn\",\"BCmibk\":\"Lần thử\",\"6PecK3\":\"Tỷ lệ tham dự và check-in cho tất cả sự kiện\",\"K2tp3v\":\"người tham dự\",\"AJ4rvK\":\"Người tham dự đã hủy bỏ\",\"qvylEK\":\"Người tham dự đã tạo ra\",\"Aspq3b\":\"Thu thập thông tin người tham dự\",\"fpb0rX\":\"Thông tin người tham dự được sao chép từ đơn hàng\",\"0R3Y+9\":\"Email người tham dự\",\"94aQMU\":\"Thông tin người tham dự\",\"KkrBiR\":\"Thu thập thông tin người tham dự\",\"av+gjP\":\"Tên người tham dự\",\"sjPjOg\":\"Ghi chú khách\",\"cosfD8\":\"Trạng Thái Người Tham Dự\",\"D2qlBU\":\"Người tham dự cập nhật\",\"22BOve\":\"Người tham dự đã được cập nhật thành công\",\"x8Vnvf\":\"Vé của người tham dự không có trong danh sách này\",\"/Ywywr\":\"người tham dự\",\"zLRobu\":\"khách đã check-in\",\"k3Tngl\":\"Danh sách người tham dự đã được xuất\",\"UoIRW8\":\"Người tham dự đã đăng ký\",\"5UbY+B\":\"Người tham dự có vé cụ thể\",\"4HVzhV\":\"Người tham dự:\",\"HVkhy2\":\"Phân tích phân bổ\",\"dMMjeD\":\"Chi tiết phân bổ\",\"1oPDuj\":\"Giá trị phân bổ\",\"DBHTm/\":\"Tháng 8\",\"JgREph\":\"Ưu đãi tự động đã được bật\",\"V7Tejz\":\"Tự động xử lý danh sách chờ\",\"PZ7FTW\":\"Tự động phát hiện dựa trên màu nền, nhưng có thể ghi đè\",\"zlnTuI\":\"Tự động cung cấp vé cho người kế tiếp khi có chỗ trống. Nếu tắt, bạn có thể xử lý danh sách chờ thủ công từ trang Danh sách chờ.\",\"csDS2L\":\"Còn chỗ\",\"clF06r\":\"Có thể hoàn tiền\",\"NB5+UG\":\"Token có sẵn\",\"L+wGOG\":\"Chờ\",\"qcw2OD\":\"Chờ thanh toán\",\"kNmmvE\":\"Công ty TNHH Awesome Events\",\"iH8pgl\":\"Quay lại\",\"TeSaQO\":\"Quay lại tài khoản\",\"X7Q/iM\":\"Quay lại lịch\",\"kYqM1A\":\"Quay lại sự kiện\",\"s5QRF3\":\"Quay lại tin nhắn\",\"td/bh+\":\"Quay lại Báo cáo\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Giá cơ bản\",\"hviJef\":\"Dựa trên thời gian bán hàng chung ở trên, không theo từng ngày\",\"jIPNJG\":\"Thông tin cơ bản\",\"UabgBd\":\"Nội dung là bắt buộc\",\"HWXuQK\":\"Đánh dấu trang này để quản lý đơn hàng của bạn bất cứ lúc nào.\",\"CUKVDt\":\"Xây dựng thương hiệu vé của bạn với logo, màu sắc và thông điệp chân trang tùy chỉnh.\",\"4BZj5p\":\"Tích hợp bảo vệ chống gian lận\",\"cr7kGH\":\"Chỉnh sửa hàng loạt\",\"1Fbd6n\":\"Chỉnh sửa hàng loạt các ngày\",\"Eq6Tu9\":\"Cập nhật hàng loạt thất bại.\",\"9N+p+g\":\"Kinh doanh\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Tên doanh nghiệp\",\"bv6RXK\":\"Nhãn nút\",\"ChDLlO\":\"Văn bản nút\",\"BUe8Wj\":\"Người mua trả\",\"qF1qbA\":\"Người mua thấy giá rõ ràng. Phí nền tảng được khấu trừ từ khoản thanh toán của bạn.\",\"dg05rc\":\"Bằng cách thêm pixel theo dõi, bạn xác nhận rằng bạn và nền tảng này là đồng kiểm soát dữ liệu được thu thập. Bạn chịu trách nhiệm đảm bảo có cơ sở pháp lý để xử lý dữ liệu theo các luật về quyền riêng tư hiện hành (GDPR, CCPA, v.v.).\",\"DFqasq\":[\"Bằng cách tiếp tục, bạn đồng ý với <0>Điều khoản dịch vụ của \",[\"0\"],\"\"],\"wVSa+U\":\"Theo ngày trong tháng\",\"0MnNgi\":\"Theo thứ trong tuần\",\"CetOZE\":\"Theo loại vé\",\"lFdbRS\":\"Bỏ qua phí ứng dụng\",\"AjVXBS\":\"Lịch\",\"alkXJ5\":\"Xem lịch\",\"2VLZwd\":\"Nút hành động\",\"rT2cV+\":\"Máy ảnh\",\"7hYa9y\":\"Quyền truy cập máy ảnh bị từ chối. <0>Yêu cầu lại quyền, hoặc cấp quyền truy cập máy ảnh trong cài đặt trình duyệt.\",\"D02dD9\":\"Chiến dịch\",\"RRPA79\":\"Không thể check-in\",\"OcVwAd\":[\"Hủy \",[\"count\"],\" ngày\"],\"H4nE+E\":\"Hủy tất cả sản phẩm và trả lại pool có sẵn\",\"Py78q9\":\"Hủy ngày\",\"tOXAdc\":\"Hủy sẽ hủy tất cả người tham dự liên quan đến đơn hàng này và trả vé về pool có sẵn.\",\"vev1Jl\":\"Hủy bỏ\",\"Ha17hq\":[\"Đã hủy \",[\"0\"],\" ngày\"],\"01sEfm\":\"Không thể xóa cấu hình mặc định của hệ thống\",\"VsM1HH\":\"Phân bổ sức chứa\",\"9bIMVF\":\"Quản lý sức chứa\",\"H7K8og\":\"Sức chứa phải bằng 0 hoặc lớn hơn\",\"nzao08\":\"cập nhật sức chứa\",\"4cp9NP\":\"Sức chứa đã dùng\",\"K7tIrx\":\"Danh mục\",\"o+XJ9D\":\"Thay đổi\",\"kJkjoB\":\"Thay đổi thời lượng\",\"J0KExZ\":\"Thay đổi giới hạn người tham dự\",\"CIHJJf\":\"Thay đổi cài đặt danh sách chờ\",\"B5icLR\":[\"Đã thay đổi thời lượng cho \",[\"count\"],\" ngày\"],\"Kb+0BT\":\"Thanh toán\",\"2tbLdK\":\"Từ thiện\",\"BPWGKn\":\"Check-in\",\"6uFFoY\":\"Huỷ check-in\",\"FjAlwK\":[\"Xem sự kiện này: \",[\"0\"]],\"v4fiSg\":\"Kiểm tra email của bạn\",\"51AsAN\":\"Kiểm tra hộp thư của bạn! Nếu có vé liên kết với email này, bạn sẽ nhận được liên kết để xem.\",\"Y3FYXy\":\"Check-in\",\"udRwQs\":\"Check-in đã được tạo\",\"F4SRy3\":\"Check-in đã bị xóa\",\"as6XfO\":[\"Đã hoàn tác check-in của \",[\"0\"]],\"9s/wrQ\":\"Lịch sử check-in\",\"Wwztk4\":\"Danh sách check-in\",\"9gPPUY\":\"Danh sách Check-In Đã Tạo!\",\"dwjiJt\":\"Thông tin danh sách\",\"7od0PV\":\"danh sách check-in\",\"f2vU9t\":\"Danh sách check-in\",\"XprdTn\":\"Điều hướng check-in\",\"5tV1in\":\"Tiến độ check-in\",\"SHJwyq\":\"Tỷ lệ check-in\",\"qCqdg6\":\"Trạng thái đăng ký\",\"cKj6OE\":\"Tóm tắt Check-in\",\"7B5M35\":\"Check-In\",\"VrmydS\":\"Đã check-in\",\"DM4gBB\":\"Tiếng Trung (Phồn thể)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Chọn một hành động khác\",\"fkb+y3\":\"Chọn một địa điểm đã lưu để áp dụng.\",\"Zok1Gx\":\"Chọn nhà tổ chức\",\"pkk46Q\":\"Chọn một nhà tổ chức\",\"Crr3pG\":\"Chọn lịch\",\"LAW8Vb\":\"Chọn cài đặt mặc định cho các sự kiện mới. Điều này có thể được ghi đè cho từng sự kiện riêng lẻ.\",\"pjp2n5\":\"Chọn ai trả phí nền tảng. Điều này không ảnh hưởng đến các khoản phí bổ sung mà bạn đã cấu hình trong cài đặt tài khoản.\",\"xCJdfg\":\"Xóa\",\"QyOWu9\":\"Xóa địa điểm — quay về mặc định của sự kiện\",\"V8yTm6\":\"Xoá tìm kiếm\",\"kmnKnX\":\"Xóa sẽ loại bỏ mọi tùy chỉnh riêng cho từng buổi. Các buổi bị ảnh hưởng sẽ quay về địa điểm mặc định của sự kiện.\",\"/o+aQX\":\"Nhấp để hủy\",\"gD7WGV\":\"Nhấn để mở lại cho việc bán vé mới\",\"CySr+W\":\"Nhấp để xem ghi chú\",\"RG3szS\":\"đóng\",\"RWw9Lg\":\"Đóng hộp thoại\",\"XwdMMg\":\"Mã chỉ được chứa chữ cái, số, dấu gạch ngang và dấu gạch dưới\",\"+yMJb7\":\"Mã là bắt buộc\",\"m9SD3V\":\"Mã phải có ít nhất 3 ký tự\",\"V1krgP\":\"Mã không được quá 20 ký tự\",\"psqIm5\":\"Hợp tác với nhóm của bạn để tạo nên những sự kiện tuyệt vời.\",\"4bUH9i\":\"Thu thập thông tin chi tiết người tham dự cho mỗi vé đã mua.\",\"TkfG8v\":\"Thu thập thông tin theo đơn hàng\",\"96ryID\":\"Thu thập thông tin theo vé\",\"FpsvqB\":\"Chế độ màu\",\"jEu4bB\":\"Cột\",\"CWk59I\":\"Hài kịch\",\"rPA+Gc\":\"Tùy chọn liên lạc\",\"zFT5rr\":\"hoàn tất\",\"bUQMpb\":\"Hoàn tất thiết lập Stripe\",\"744BMm\":\"Hoàn tất đơn hàng để đảm bảo vé của bạn. Ưu đãi này có thời hạn, vì vậy đừng chờ đợi quá lâu.\",\"5YrKW7\":\"Hoàn tất thanh toán để đảm bảo vé của bạn.\",\"xGU92i\":\"Hoàn thành hồ sơ của bạn để tham gia nhóm.\",\"QOhkyl\":\"Soạn\",\"ih35UP\":\"Trung tâm hội nghị\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Đã gán cấu hình\",\"X1zdE7\":\"Cấu hình đã được tạo thành công\",\"mLBUMQ\":\"Cấu hình đã được xóa thành công\",\"UIENhw\":\"Tên cấu hình hiển thị với người dùng cuối. Phí cố định sẽ được chuyển đổi sang đơn vị tiền tệ của đơn hàng theo tỷ giá hối đoái hiện tại.\",\"eeZdaB\":\"Cấu hình đã được cập nhật thành công\",\"3cKoxx\":\"Cấu hình\",\"8v2LRU\":\"Cấu hình chi tiết sự kiện, địa điểm, tùy chọn thanh toán và thông báo email.\",\"raw09+\":\"Cấu hình cách thu thập thông tin người tham dự trong quá trình thanh toán\",\"FI60XC\":\"Cấu hình thuế và phí\",\"av6ukY\":\"Cấu hình các sản phẩm có sẵn cho buổi này và tùy chọn điều chỉnh giá.\",\"NGXKG/\":\"Xác nhận địa chỉ email\",\"JRQitQ\":\"Xác nhận mật khẩu mới\",\"Auz0Mz\":\"Xác nhận email của bạn để sử dụng đầy đủ tính năng.\",\"7+grte\":\"Email xác nhận đã được gửi! Vui lòng kiểm tra hộp thư đến của bạn.\",\"n/7+7Q\":\"Xác nhận đã gửi đến\",\"x3wVFc\":\"Chúc mừng! Sự kiện của bạn hiện đã hiển thị công khai.\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"Kết nối Stripe để bật chỉnh sửa mẫu email\",\"LmvZ+E\":\"Kết nối Stripe để bật tính năng nhắn tin\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"Liên hệ\",\"LOFgda\":[\"Liên hệ \",[\"0\"]],\"41BQ3k\":\"Email liên hệ\",\"KcXRN+\":\"Email liên hệ hỗ trợ\",\"m8WD6t\":\"Tiếp tục thiết lập\",\"0GwUT4\":\"Tiếp tục đến thanh toán\",\"sBV87H\":\"Tiếp tục tạo sự kiện\",\"nKtyYu\":\"Tiếp tục bước tiếp theo\",\"F3/nus\":\"Tiếp tục thanh toán\",\"p2FRHj\":\"Kiểm soát cách xử lý phí nền tảng cho sự kiện này\",\"NqfabH\":\"Kiểm soát ai được vào cho ngày này\",\"fmYxZx\":\"Kiểm soát ai vào và khi nào\",\"1JnTgU\":\"Đã sao chép từ trên\",\"FxVG/l\":\"Đã sao chép vào clipboard\",\"PiH3UR\":\"Đã sao chép!\",\"4i7smN\":\"Sao chép ID tài khoản\",\"uUPbPg\":\"Sao chép liên kết đối tác\",\"iVm46+\":\"Sao chép mã\",\"cF2ICc\":\"Sao chép liên kết khách hàng\",\"+2ZJ7N\":\"Sao chép chi tiết cho người tham dự đầu tiên\",\"ZN1WLO\":\"Sao chép Email\",\"y1eoq1\":\"Sao chép liên kết\",\"tUGbi8\":\"Sao chép thông tin của tôi cho:\",\"y22tv0\":\"Sao chép liên kết này để chia sẻ ở bất kỳ đâu\",\"/4gGIX\":\"Sao chép vào bộ nhớ tạm\",\"e0f4yB\":\"Không thể xóa địa điểm\",\"vkiDx2\":\"Không thể chuẩn bị cập nhật hàng loạt.\",\"KOavaU\":\"Không thể truy xuất chi tiết địa chỉ\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"Không thể lưu ngày\",\"eeLExK\":\"Không thể lưu địa điểm\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"Ảnh bìa\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Ảnh bìa sẽ được hiển thị ở đầu trang sự kiện của bạn\",\"2NLjA6\":\"Ảnh bìa sẽ hiển thị ở đầu trang của nhà tổ chức\",\"GkrqoY\":\"Bao gồm mọi vé\",\"zg4oSu\":[\"Tạo mẫu \",[\"0\"]],\"RKKhnW\":\"Tạo widget tùy chỉnh để bán vé trên trang web của bạn.\",\"6sk7PP\":\"Tạo một số cố định\",\"PhioFp\":\"Tạo một danh sách check-in mới cho buổi đang hoạt động, hoặc liên hệ nhà tổ chức nếu bạn nghĩ đây là nhầm lẫn.\",\"yIRev4\":\"Tạo mật khẩu\",\"j7xZ7J\":\"Tạo các ban tổ chức bổ sung để quản lý các thương hiệu, bộ phận hoặc chuỗi sự kiện riêng biệt dưới một tài khoản. Mỗi ban tổ chức có sự kiện, cài đặt và trang công khai riêng.\",\"xfKgwv\":\"Tạo đối tác\",\"tudG8q\":\"Tạo và cấu hình vé và hàng hóa để bán.\",\"YAl9Hg\":\"Tạo cấu hình\",\"BTne9e\":\"Tạo mẫu email tùy chỉnh cho sự kiện này ghi đè mặc định của tổ chức\",\"YIDzi/\":\"Tạo mẫu tùy chỉnh\",\"tsGqx5\":\"Tạo ngày\",\"Nc3l/D\":\"Tạo giảm giá, mã truy cập cho vé ẩn và ưu đãi đặc biệt.\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"Tạo cho ngày này\",\"eWEV9G\":\"Tạo mật khẩu mới\",\"wl2iai\":\"Tạo lịch trình\",\"8AiKIu\":\"Tạo vé hoặc sản phẩm\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"Tạo liên kết có thể theo dõi để thưởng cho các đối tác quảng bá sự kiện của bạn.\",\"dkAPxi\":\"Tạo webhook\",\"5slqwZ\":\"Tạo sự kiện của bạn\",\"JQNMrj\":\"Tạo sự kiện đầu tiên của bạn\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"Tạo sự kiện của riêng bạn\",\"67NsZP\":\"Đang tạo sự kiện...\",\"H34qcM\":\"Đang tạo nhà tổ chức...\",\"1YMS+X\":\"Đang tạo sự kiện của bạn, vui lòng đợi\",\"yiy8Jt\":\"Đang tạo hồ sơ nhà tổ chức của bạn, vui lòng đợi\",\"lfLHNz\":\"Nhãn CTA là bắt buộc\",\"0xLR6W\":\"Hiện đang được gán\",\"iTvh6I\":\"Hiện có sẵn để mua\",\"A42Dqn\":\"Thương hiệu tùy chỉnh\",\"Guo0lU\":\"Ngày và giờ tùy chỉnh\",\"mimF6c\":\"Tin nhắn tùy chỉnh sau thanh toán\",\"WDMdn8\":\"Câu hỏi tùy chỉnh\",\"O6mra8\":\"Câu hỏi tùy chỉnh\",\"axv/Mi\":\"Mẫu tùy chỉnh\",\"2YeVGY\":\"Đã sao chép liên kết khách hàng vào bộ nhớ tạm\",\"QMHSMS\":\"Khách hàng sẽ nhận email xác nhận hoàn tiền\",\"L/Qc+w\":\"Địa chỉ email khách hàng\",\"wpfWhJ\":\"Tên khách hàng\",\"GIoqtA\":\"Họ khách hàng\",\"NihQNk\":\"Khách hàng\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Tùy chỉnh email gửi cho khách hàng bằng mẫu Liquid. Các mẫu này sẽ được dùng làm mặc định cho tất cả sự kiện trong tổ chức của bạn.\",\"xJaTUK\":\"Tùy chỉnh bố cục, màu sắc và thương hiệu của trang chủ sự kiện.\",\"MXZfGN\":\"Tùy chỉnh các câu hỏi được hỏi trong quá trình thanh toán để thu thập thông tin quan trọng từ người tham dự.\",\"iX6SLo\":\"Tùy chỉnh văn bản trên nút tiếp tục\",\"pxNIxa\":\"Tùy chỉnh mẫu email của bạn bằng mẫu Liquid\",\"3trPKm\":\"Tùy chỉnh giao diện trang tổ chức của bạn\",\"U0sC6H\":\"Hàng ngày\",\"/gWrVZ\":\"Doanh thu hàng ngày, thuế, phí và hoàn tiền cho tất cả sự kiện\",\"zgCHnE\":\"Báo cáo doanh số hàng ngày\",\"nHm0AI\":\"Chi tiết doanh số hàng ngày, thuế và phí\",\"1aPnDT\":\"Khiêu vũ\",\"pvnfJD\":\"Tối\",\"MaB9wW\":\"Hủy ngày\",\"e6cAxJ\":\"Đã hủy ngày\",\"81jBnC\":\"Hủy ngày thành công\",\"a/C/6R\":\"Tạo ngày thành công\",\"IW7Q+u\":\"Đã xóa ngày\",\"rngCAz\":\"Xóa ngày thành công\",\"lnYE59\":\"Ngày của sự kiện\",\"gnBreG\":\"Ngày đặt đơn hàng\",\"vHbfoQ\":\"Đã kích hoạt lại ngày\",\"hvah+S\":\"Đã mở lại ngày để bán vé mới\",\"Ez0YsD\":\"Cập nhật ngày thành công\",\"VTsZuy\":\"Ngày và giờ được quản lý trên\",\"/ITcnz\":\"ngày\",\"H7OUPr\":\"Ngày\",\"JtHrX9\":\"Ngày trong tháng\",\"J/Upwb\":\"ngày\",\"vDVA2I\":\"Các ngày trong tháng\",\"rDLvlL\":\"Các ngày trong tuần\",\"r6zgGo\":\"Tháng 12\",\"jbq7j2\":\"Từ chối\",\"ovBPCi\":\"Mặc định\",\"JtI4vj\":\"Thu thập thông tin người tham dự mặc định\",\"ULjv90\":\"Sức chứa mặc định cho mỗi ngày\",\"3R/Tu2\":\"Xử lý phí mặc định\",\"1bZAZA\":\"Mẫu mặc định sẽ được sử dụng\",\"HNlEFZ\":\"xóa\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"Xóa \",[\"count\"],\" ngày đã chọn? Các ngày có đơn hàng sẽ bị bỏ qua. Không thể hoàn tác.\"],\"vu7gDm\":\"Xóa đối tác\",\"KZN4Lc\":\"Xóa tất cả\",\"6EkaOO\":\"Xóa ngày\",\"io0G93\":\"Xóa sự kiện\",\"+jw/c1\":\"Xóa ảnh\",\"hdyeZ0\":\"Xóa công việc\",\"xxjZeP\":\"Xóa địa điểm\",\"sY3tIw\":\"Xóa ban tổ chức\",\"UBv8UK\":\"Xóa vĩnh viễn\",\"dPyJ15\":\"Xóa mẫu\",\"mxsm1o\":\"Xóa câu hỏi này? Hành động này không thể hoàn tác.\",\"snMaH4\":\"Xóa webhook\",\"LIZZLY\":[\"Đã xóa \",[\"0\"],\" ngày\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Bỏ chọn tất cả\",\"NvuEhl\":\"Các yếu tố thiết kế\",\"H8kMHT\":\"Không nhận được mã?\",\"G8KNgd\":\"Địa điểm khác\",\"E/QGRL\":\"Đã tắt\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Bỏ qua thông báo này\",\"BREO0S\":\"Hiển thị hộp kiểm cho phép khách hàng đăng ký nhận thông tin tiếp thị từ ban tổ chức sự kiện này.\",\"pfa8F0\":\"Tên hiển thị\",\"Kdpf90\":\"Đừng quên!\",\"352VU2\":\"Chưa có tài khoản? <0>Đăng ký\",\"AXXqG+\":\"Quyên góp\",\"DPfwMq\":\"Xong\",\"JoPiZ2\":\"Hướng dẫn cho nhân viên cửa\",\"2+O9st\":\"Tải xuống báo cáo bán hàng, người tham dự và tài chính cho tất cả đơn hàng đã hoàn thành.\",\"eneWvv\":\"Bản nháp\",\"Ts8hhq\":\"Do nguy cơ spam cao, bạn phải kết nối tài khoản Stripe trước khi có thể chỉnh sửa mẫu email. Điều này để đảm bảo tất cả các nhà tổ chức sự kiện được xác minh và có trách nhiệm.\",\"TnzbL+\":\"Do nguy cơ spam cao, bạn phải kết nối tài khoản Stripe trước khi có thể gửi tin nhắn cho người tham dự.\\nĐiều này để đảm bảo tất cả nhà tổ chức sự kiện được xác minh và có trách nhiệm.\",\"euc6Ns\":\"Nhân đôi\",\"YueC+F\":\"Nhân đôi ngày\",\"KRmTkx\":\"Nhân bản sản phẩm\",\"Jd3ymG\":\"Thời lượng phải ít nhất 1 phút.\",\"KIjvtr\":\"Tiếng Hà Lan\",\"22xieU\":\"ví dụ 180 (3 giờ)\",\"/zajIE\":\"ví dụ: Buổi sáng\",\"SPKbfM\":\"ví dụ: Mua vé, Đăng ký ngay\",\"fc7wGW\":\"ví dụ: Cập nhật quan trọng về vé của bạn\",\"54MPqC\":\"ví dụ: Tiêu chuẩn, Cao cấp, Doanh nghiệp\",\"3RQ81z\":\"Mỗi người sẽ nhận được email với một suất đã được giữ chỗ để hoàn tất việc mua hàng.\",\"5oD9f/\":\"Sớm hơn\",\"LTzmgK\":[\"Chỉnh sửa mẫu \",[\"0\"]],\"v4+lcZ\":\"Chỉnh sửa đối tác\",\"2iZEz7\":\"Chỉnh sửa câu trả lời\",\"t2bbp8\":\"Chỉnh sửa người tham dự\",\"etaWtB\":\"Chỉnh sửa thông tin người tham dự\",\"+guao5\":\"Chỉnh sửa cấu hình\",\"1Mp/A4\":\"Chỉnh sửa ngày\",\"m0ZqOT\":\"Chỉnh sửa địa điểm\",\"8oivFT\":\"Chỉnh sửa địa điểm\",\"vRWOrM\":\"Chỉnh sửa thông tin đơn hàng\",\"fW5sSv\":\"Chỉnh sửa webhook\",\"nP7CdQ\":\"Chỉnh sửa webhook\",\"MRZxAn\":\"Đã chỉnh sửa\",\"uBAxNB\":\"Trình chỉnh sửa\",\"aqxYLv\":\"Giáo dục\",\"iiWXDL\":\"Lỗi đủ điều kiện\",\"zPiC+q\":\"Danh Sách Đăng Ký Đủ Điều Kiện\",\"SiVstt\":\"Email và tin nhắn theo lịch\",\"V2sk3H\":\"Email & Mẫu\",\"hbwCKE\":\"Đã sao chép địa chỉ email vào clipboard\",\"dSyJj6\":\"Địa chỉ email không khớp\",\"elW7Tn\":\"Nội dung email\",\"ZsZeV2\":\"Email là bắt buộc\",\"Be4gD+\":\"Xem trước email\",\"6IwNUc\":\"Mẫu email\",\"H/UMUG\":\"Yêu cầu xác minh email\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"Xác thực email thành công!\",\"FSN4TS\":\"Nhúng widget\",\"z9NkYY\":\"Tiện ích có thể nhúng\",\"Qj0GKe\":\"Bật tự phục vụ cho người tham dự\",\"hEtQsg\":\"Bật tự phục vụ cho người tham dự theo mặc định\",\"Upeg/u\":\"Kích hoạt mẫu này để gửi email\",\"7dSOhU\":\"Bật danh sách chờ\",\"RxzN1M\":\"Đã bật\",\"xDr/ct\":\"Kết thúc\",\"sGjBEq\":\"Ngày và giờ kết thúc (tùy chọn)\",\"PKXt9R\":\"Ngày kết thúc phải sau ngày bắt đầu\",\"UmzbPa\":\"Ngày kết thúc của buổi\",\"ZayGC7\":\"Kết thúc vào một ngày\",\"48Y16Q\":\"Thời gian kết thúc (tùy chọn)\",\"jpNdOC\":\"Giờ kết thúc của buổi\",\"TbaYrr\":[\"Đã kết thúc \",[\"0\"]],\"CFgwiw\":[\"Kết thúc \",[\"0\"]],\"SqOIQU\":\"Nhập giá trị sức chứa hoặc chọn không giới hạn.\",\"h37gRz\":\"Nhập nhãn hoặc chọn xóa nó.\",\"7YZofi\":\"Nhập tiêu đề và nội dung để xem trước\",\"khyScF\":\"Nhập thời gian để dịch chuyển.\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"Nhập email đối tác (tùy chọn)\",\"ARkzso\":\"Nhập tên đối tác\",\"ej4L8b\":\"Nhập sức chứa\",\"6KnyG0\":\"Nhập email\",\"INDKM9\":\"Nhập tiêu đề email...\",\"xUgUTh\":\"Nhập tên\",\"9/1YKL\":\"Nhập họ\",\"VpwcSk\":\"Nhập mật khẩu mới\",\"kWg31j\":\"Nhập mã đối tác duy nhất\",\"C3nD/1\":\"Nhập email của bạn\",\"VmXiz4\":\"Nhập email của bạn và chúng tôi sẽ gửi cho bạn hướng dẫn để đặt lại mật khẩu.\",\"n9V+ps\":\"Nhập tên của bạn\",\"IdULhL\":\"Nhập số VAT của bạn bao gồm mã quốc gia, không có khoảng trắng (ví dụ: IE1234567A, DE123456789)\",\"o21Y+P\":\"mục\",\"X88/6w\":\"Các mục sẽ xuất hiện ở đây khi khách hàng tham gia danh sách chờ cho các sản phẩm đã bán hết.\",\"LslKhj\":\"Lỗi khi tải nhật ký\",\"VCNHvW\":\"Sự kiện đã lưu trữ\",\"ZD0XSb\":\"Sự kiện đã được lưu trữ thành công\",\"WgD6rb\":\"Danh mục sự kiện\",\"b46pt5\":\"Ảnh bìa sự kiện\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Sự kiện đã tạo\",\"1Hzev4\":\"Mẫu tùy chỉnh sự kiện\",\"7u9/DO\":\"Sự kiện đã được xóa thành công\",\"imgKgl\":\"Mô tả sự kiện\",\"kJDmsI\":\"Chi tiết sự kiện\",\"m/N7Zq\":\"Địa Chỉ Đầy Đủ Sự Kiện\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"Địa điểm sự kiện\",\"PYs3rP\":\"Tên sự kiện\",\"HhwcTQ\":\"Tên sự kiện\",\"WZZzB6\":\"Tên sự kiện là bắt buộc\",\"Wd5CDM\":\"Tên sự kiện nên ít hơn 150 ký tự\",\"4JzCvP\":\"Sự kiện không có sẵn\",\"Gh9Oqb\":\"Tên ban tổ chức sự kiện\",\"mImacG\":\"Trang sự kiện\",\"Hk9Ki/\":\"Sự kiện đã được khôi phục thành công\",\"JyD0LH\":\"Cài đặt sự kiện\",\"cOePZk\":\"Thời gian sự kiện\",\"e8WNln\":\"Múi giờ sự kiện\",\"GeqWgj\":\"Múi Giờ Sự Kiện\",\"XVLu2v\":\"Tiêu đề sự kiện\",\"OfmsI9\":\"Sự kiện quá mới\",\"4SILkp\":\"Tổng cộng sự kiện\",\"YDVUVl\":\"Loại sự kiện\",\"+HeiVx\":\"Sự kiện đã cập nhật\",\"4K2OjV\":\"Địa Điểm Sự Kiện\",\"19j6uh\":\"Hiệu suất sự kiện\",\"PC3/fk\":\"Sự kiện bắt đầu trong 24 giờ tới\",\"nwiZdc\":[\"Mỗi \",[\"0\"]],\"2LJU4o\":[\"Mỗi \",[\"0\"],\" ngày\"],\"yLiYx+\":[\"Mỗi \",[\"0\"],\" tháng\"],\"nn9ice\":[\"Mỗi \",[\"0\"],\" tuần\"],\"Cdr8f9\":[\"Mỗi \",[\"0\"],\" tuần vào \",[\"1\"]],\"GVEHRk\":[\"Mỗi \",[\"0\"],\" năm\"],\"fTFfOK\":\"Mọi mẫu email phải bao gồm nút hành động liên kết đến trang thích hợp\",\"BVinvJ\":\"Ví dụ: \\\"Bạn biết đến chúng tôi như thế nào?\\\", \\\"Tên công ty cho hóa đơn\\\"\",\"2hGPQG\":\"Ví dụ: \\\"Cỡ áo\\\", \\\"Sở thích ăn uống\\\", \\\"Chức danh\\\"\",\"qNuTh3\":\"Ngoại lệ\",\"M1RnFv\":\"Đã hết hạn\",\"kF8HQ7\":\"Xuất câu trả lời\",\"2KAI4N\":\"Xuất CSV\",\"JKfSAv\":\"Xuất thất bại. Vui lòng thử lại.\",\"SVOEsu\":\"Đã bắt đầu xuất. Đang chuẩn bị tệp...\",\"wuyaZh\":\"Xuất thành công\",\"9bpUSo\":\"Đang xuất danh sách đối tác\",\"jtrqH9\":\"Đang xuất danh sách người tham dự\",\"R4Oqr8\":\"Xuất hoàn tất. Đang tải xuống tệp...\",\"UlAK8E\":\"Đang xuất đơn hàng\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Thất bại\",\"8uOlgz\":\"Thất bại lúc\",\"tKcbYd\":\"Công việc thất bại\",\"SsI9v/\":\"Không thể hủy đơn hàng. Vui lòng thử lại.\",\"LdPKPR\":\"Không thể gán cấu hình\",\"PO0cfn\":\"Không thể hủy ngày\",\"YUX+f+\":\"Không thể hủy các ngày\",\"SIHgVQ\":\"Không thể hủy tin nhắn\",\"cEFg3R\":\"Không thể tạo đối tác\",\"dVgNF1\":\"Không thể tạo cấu hình\",\"fAoRRJ\":\"Không thể tạo lịch trình\",\"U66oUa\":\"Không thể tạo mẫu\",\"aFk48v\":\"Không thể xóa cấu hình\",\"n1CYMH\":\"Không thể xóa ngày\",\"KXv+Qn\":\"Không thể xóa ngày. Có thể đã có đơn hàng.\",\"JJ0uRo\":\"Không thể xóa các ngày\",\"rgoBnv\":\"Không thể xóa sự kiện\",\"Zw6LWb\":\"Không thể xóa công việc\",\"tq0abZ\":\"Không thể xóa các công việc\",\"2mkc3c\":\"Không thể xóa ban tổ chức\",\"vKMKnu\":\"Không thể xóa câu hỏi\",\"xFj7Yj\":\"Không thể xóa mẫu\",\"jo3Gm6\":\"Không thể xuất danh sách đối tác\",\"Jjw03p\":\"Không thể xuất danh sách người tham dự\",\"ZPwFnN\":\"Không thể xuất đơn hàng\",\"zGE3CH\":\"Xuất báo cáo thất bại. Vui lòng thử lại.\",\"lS9/aZ\":\"Không thể tải người nhận\",\"X4o0MX\":\"Không thể tải Webhook\",\"ETcU7q\":\"Không thể cung cấp chỗ\",\"5670b9\":\"Không thể cung cấp vé\",\"e5KIbI\":\"Không thể kích hoạt lại ngày\",\"7zyx8a\":\"Không thể xóa khỏi danh sách chờ\",\"A/P7PX\":\"Không thể xóa ghi đè\",\"ogWc1z\":\"Mở lại ngày không thành công\",\"0+iwE5\":\"Không thể sắp xếp lại câu hỏi\",\"EJPAcd\":\"Không thể gửi lại xác nhận đơn hàng\",\"DjSbj3\":\"Không thể gửi lại vé\",\"YQ3QSS\":\"Không thể gửi lại mã xác thực\",\"wDioLj\":\"Không thể thử lại công việc\",\"DKYTWG\":\"Không thể thử lại các công việc\",\"WRREqF\":\"Không thể lưu ghi đè\",\"sj/eZA\":\"Không thể lưu ghi đè giá\",\"780n8A\":\"Không thể lưu cài đặt sản phẩm\",\"zTkTF3\":\"Không thể lưu mẫu\",\"l6acRV\":\"Không thể lưu cài đặt VAT. Vui lòng thử lại.\",\"T6B2gk\":\"Không thể gửi tin nhắn. Vui lòng thử lại.\",\"lKh069\":\"Không thể bắt đầu quá trình xuất\",\"t/KVOk\":\"Không thể bắt đầu mạo danh. Vui lòng thử lại.\",\"QXgjH0\":\"Không thể dừng mạo danh. Vui lòng thử lại.\",\"i0QKrm\":\"Không thể cập nhật đối tác\",\"NNc33d\":\"Không thể cập nhật câu trả lời.\",\"E9jY+o\":\"Không thể cập nhật người tham dự\",\"uQynyf\":\"Không thể cập nhật cấu hình\",\"i2PFQJ\":\"Không thể cập nhật trạng thái sự kiện\",\"EhlbcI\":\"Cập nhật cấp độ nhắn tin thất bại\",\"rpGMzC\":\"Không thể cập nhật đơn hàng\",\"T2aCOV\":\"Không thể cập nhật trạng thái ban tổ chức\",\"Eeo/Gy\":\"Không thể cập nhật cài đặt\",\"kqA9lY\":\"Không thể cập nhật cài đặt VAT\",\"7/9RFs\":\"Không thể tải ảnh lên.\",\"nkNfWu\":\"Tải ảnh lên không thành công. Vui lòng thử lại.\",\"rxy0tG\":\"Không thể xác thực email\",\"QRUpCk\":\"Gia đình\",\"5LO38w\":\"Thanh toán nhanh đến ngân hàng của bạn\",\"4lgLew\":\"Tháng 2\",\"9bHCo2\":\"Đơn vị tiền tệ phí\",\"/sV91a\":\"Xử lý phí\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Phí đã bỏ qua\",\"cf35MA\":\"Lễ hội\",\"pAey+4\":\"Tệp quá lớn. Kích thước tối đa là 5MB.\",\"VejKUM\":\"Vui lòng điền thông tin của bạn ở trên trước\",\"/n6q8B\":\"Phim\",\"L1qbUx\":\"Lọc khách\",\"8OvVZZ\":\"Lọc Người Tham Dự\",\"N/H3++\":\"Lọc theo ngày\",\"mvrlBO\":\"Lọc theo sự kiện\",\"g+xRXP\":\"Hoàn tất thiết lập Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"Đầu tiên\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Người tham dự đầu tiên\",\"4pwejF\":\"Tên là bắt buộc\",\"3lkYdQ\":\"Phí cố định\",\"6bBh3/\":\"Phí cố định\",\"zWqUyJ\":\"Phí cố định được tính cho mỗi giao dịch\",\"LWL3Bs\":\"Phí cố định phải bằng 0 hoặc lớn hơn\",\"0RI8m4\":\"Tắt đèn flash\",\"q0923e\":\"Bật đèn flash\",\"lWxAUo\":\"Ẩm thực\",\"nFm+5u\":\"Văn bản chân trang\",\"a8nooQ\":\"Thứ tư\",\"mob/am\":\"T6\",\"wtuVU4\":\"Tần suất\",\"xVhQZV\":\"Thứ 6\",\"39y5bn\":\"Thứ Sáu\",\"f5UbZ0\":\"Toàn quyền sở hữu dữ liệu\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Hoàn tiền toàn bộ\",\"UsIfa8\":\"Địa chỉ đầy đủ đã xác định\",\"PGQLdy\":\"tương lai\",\"8N/j1s\":\"Chỉ các ngày trong tương lai\",\"yRx/6K\":\"Các ngày trong tương lai sẽ được sao chép với sức chứa đặt lại về không\",\"T02gNN\":\"Vé phổ thông\",\"3ep0Gx\":\"Thông tin chung về nhà tổ chức của bạn\",\"ziAjHi\":\"Tạo\",\"exy8uo\":\"Tạo mã\",\"4CETZY\":\"Chỉ đường\",\"pjkEcB\":\"Nhận thanh toán\",\"lGYzP6\":\"Nhận thanh toán qua Stripe\",\"ZDIydz\":\"Bắt đầu\",\"u6FPxT\":\"Lấy vé\",\"8KDgYV\":\"Chuẩn bị sự kiện của bạn\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Quay lại\",\"oNL5vN\":\"Đến trang sự kiện\",\"gHSuV/\":\"Đi đến trang chủ\",\"8+Cj55\":\"Đi tới Lịch trình\",\"6nDzTl\":\"Dễ đọc\",\"76gPWk\":\"Đã hiểu\",\"aGWZUr\":\"Doanh thu gộp\",\"n8IUs7\":\"Doanh thu gộp\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Quản lý khách\",\"NUsTc4\":\"Đang diễn ra\",\"kTSQej\":[\"Xin chào \",[\"0\"],\", quản lý nền tảng của bạn từ đây.\"],\"dORAcs\":\"Đây là tất cả các vé liên kết với địa chỉ email của bạn.\",\"g+2103\":\"Đây là liên kết đối tác của bạn\",\"bVsnqU\":\"Xin chào,\",\"/iE8xx\":\"Phí Hi.Events\",\"zppscQ\":\"Phí nền tảng Hi.Events và phân tích VAT theo giao dịch\",\"D+zLDD\":\"Ẩn\",\"DRErHC\":\"Ẩn với người tham dự - chỉ hiển thị với người tổ chức\",\"NNnsM0\":\"Ẩn tùy chọn nâng cao\",\"P+5Pbo\":\"Ẩn câu trả lời\",\"VMlRqi\":\"Ẩn chi tiết\",\"FmogyU\":\"Ẩn tùy chọn\",\"gtEbeW\":\"Nổi bật\",\"NF8sdv\":\"Tin nhắn nổi bật\",\"MXSqmS\":\"Làm nổi bật sản phẩm này\",\"7ER2sc\":\"Nổi bật\",\"sq7vjE\":\"Sản phẩm nổi bật sẽ có màu nền khác để nổi bật trên trang sự kiện.\",\"1+WSY1\":\"Sở thích\",\"yY8wAv\":\"Giờ\",\"sy9anN\":\"Thời gian khách hàng phải hoàn tất mua hàng sau khi nhận được đề nghị. Để trống nếu không giới hạn thời gian.\",\"n2ilNh\":\"Lịch trình kéo dài bao lâu?\",\"DMr2XN\":\"Bao lâu một lần?\",\"AVpmAa\":\"Cách thanh toán offline\",\"cceMns\":\"Cách VAT được áp dụng cho phí nền tảng chúng tôi tính cho bạn.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Tiếng Hungary\",\"8Wgd41\":\"Tôi xác nhận trách nhiệm của mình với tư cách là người kiểm soát dữ liệu\",\"O8m7VA\":\"Tôi đồng ý nhận thông báo qua email liên quan đến sự kiện này\",\"YLgdk5\":\"Tôi xác nhận đây là tin nhắn giao dịch liên quan đến sự kiện này\",\"4/kP5a\":\"Nếu tab mới không tự động mở, vui lòng nhấn nút bên dưới để tiếp tục thanh toán.\",\"W/eN+G\":\"Nếu để trống, địa chỉ sẽ được sử dụng để tạo liên kết Google Maps\",\"iIEaNB\":\"Nếu bạn có tài khoản với chúng tôi, bạn sẽ nhận được email với hướng dẫn về cách đặt lại mật khẩu.\",\"an5hVd\":\"Hình ảnh\",\"tSVr6t\":\"Mạo danh\",\"TWXU0c\":\"Mạo danh người dùng\",\"5LAZwq\":\"Đã bắt đầu mạo danh\",\"IMwcdR\":\"Đã dừng mạo danh\",\"0I0Hac\":\"Thông báo quan trọng\",\"yD3avI\":\"Quan trọng: Việc thay đổi địa chỉ email sẽ cập nhật liên kết để truy cập đơn hàng này. Bạn sẽ được chuyển hướng đến liên kết đơn hàng mới sau khi lưu.\",\"jT142F\":[\"Trong \",[\"diffHours\"],\" giờ\"],\"OoSyqO\":[\"Trong \",[\"diffMinutes\"],\" phút\"],\"PdMhEx\":[\"trong \",[\"0\"],\" phút qua\"],\"u7r0G5\":\"Trực tiếp — thiết lập địa điểm\",\"Ip0hl5\":\"in_person, online, unset, hoặc mixed\",\"F1Xp97\":\"Người tham dự riêng lẻ\",\"85e6zs\":\"Chèn token Liquid\",\"38KFY0\":\"Chèn biến\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Thanh toán Stripe ngay lập tức\",\"nbfdhU\":\"Tích hợp\",\"I8eJ6/\":\"Ghi chú nội bộ trên vé\",\"B2Tpo0\":\"Email không hợp lệ\",\"5tT0+u\":\"Định dạng email không hợp lệ\",\"f9WRpE\":\"Loại tệp không hợp lệ. Vui lòng tải lên hình ảnh.\",\"tnL+GP\":\"Cú pháp Liquid không hợp lệ. Vui lòng sửa và thử lại.\",\"N9JsFT\":\"Định dạng số VAT không hợp lệ\",\"g+lLS9\":\"Mời thành viên nhóm\",\"1z26sk\":\"Mời thành viên nhóm\",\"KR0679\":\"Mời các thành viên nhóm\",\"aH6ZIb\":\"Mời nhóm của bạn\",\"IuMGvq\":\"Hóa đơn\",\"Lj7sBL\":\"Tiếng Ý\",\"F5/CBH\":\"mục\",\"BzfzPK\":\"Mục\",\"rjyWPb\":\"Tháng 1\",\"KmWyx0\":\"Công việc\",\"o5r6b2\":\"Đã xóa công việc\",\"cd0jIM\":\"Chi tiết công việc\",\"ruJO57\":\"Tên công việc\",\"YZi+Hu\":\"Công việc đã được xếp hàng để thử lại\",\"nCywLA\":\"Tham gia từ bất cứ đâu\",\"SNzppu\":\"Tham gia danh sách chờ\",\"dLouFI\":[\"Tham gia danh sách chờ cho \",[\"productDisplayName\"]],\"2gMuHR\":\"Đã tham gia\",\"u4ex5r\":\"Tháng 7\",\"zeEQd/\":\"Tháng 6\",\"MxjCqk\":\"Chỉ đang tìm vé của bạn?\",\"xOTzt5\":\"vừa xong\",\"0RihU9\":\"Vừa kết thúc\",\"lB2hSG\":[\"Giữ cho tôi cập nhật tin tức và sự kiện từ \",[\"0\"]],\"ioFA9i\":\"Giữ lại lợi nhuận.\",\"4Sffp7\":\"Nhãn cho buổi\",\"o66QSP\":\"cập nhật nhãn\",\"RtKKbA\":\"Cuối cùng\",\"DruLRc\":\"14 ngày qua\",\"ve9JTU\":\"Họ là bắt buộc\",\"h0Q9Iw\":\"Phản hồi cuối cùng\",\"gw3Ur5\":\"Trình kích hoạt cuối cùng\",\"FIq1Ba\":\"Trễ hơn\",\"xvnLMP\":\"Check-in gần nhất\",\"pzAivY\":\"Vĩ độ của địa điểm đã xác định\",\"N5TErv\":\"Để trống cho không giới hạn\",\"L/hDDD\":\"Để trống để áp dụng danh sách check-in này cho tất cả các buổi\",\"9Pf3wk\":\"Để bật để bao gồm mọi vé của sự kiện. Tắt để chọn vé cụ thể.\",\"Hq2BzX\":\"Cho họ biết về sự thay đổi\",\"+uexiy\":\"Cho họ biết về các thay đổi\",\"exYcTF\":\"Thư viện\",\"1njn7W\":\"Sáng\",\"1qY5Ue\":\"Liên kết hết hạn hoặc không hợp lệ\",\"+zSD/o\":\"Liên kết đến trang chủ sự kiện\",\"psosdY\":\"Liên kết đến chi tiết đơn hàng\",\"6JzK4N\":\"Liên kết đến vé\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Liên kết được phép\",\"2BBAbc\":\"Danh sách\",\"5NZpX8\":\"Xem dạng danh sách\",\"dF6vP6\":\"Trực tiếp\",\"fpMs2Z\":\"TRỰC TIẾP\",\"D9zTjx\":\"Sự Kiện Trực Tiếp\",\"C33p4q\":\"Các ngày đã tải\",\"WdmJIX\":\"Đang tải xem trước...\",\"IoDI2o\":\"Đang tải token...\",\"G3Ge9Z\":\"Đang tải nhật ký webhook...\",\"NFxlHW\":\"Đang tải Webhooks\",\"E0DoRM\":\"Đã xóa địa điểm\",\"NtLHT3\":\"Địa chỉ đã định dạng của địa điểm\",\"h4vxDc\":\"Vĩ độ địa điểm\",\"f2TMhR\":\"Kinh độ địa điểm\",\"lnCo2f\":\"Chế độ địa điểm\",\"8pmGFk\":\"Tên địa điểm\",\"7w8lJU\":\"Đã lưu địa điểm\",\"YsRXDD\":\"Đã cập nhật địa điểm\",\"A/kIva\":\"cập nhật địa điểm\",\"VppBoU\":\"Địa điểm\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo & Ảnh bìa\",\"gddQe0\":\"Logo và ảnh bìa cho nhà tổ chức của bạn\",\"TBEnp1\":\"Logo sẽ được hiển thị trong phần đầu trang\",\"Jzu30R\":\"Logo sẽ được hiển thị trên vé\",\"zKTMTg\":\"Kinh độ của địa điểm đã xác định\",\"PSRm6/\":\"Tra cứu vé của tôi\",\"yJFu/X\":\"Văn phòng chính\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"Quản lý \",[\"0\"]],\"wZJfA8\":\"Quản lý ngày và giờ cho sự kiện định kỳ của bạn\",\"RlzPUE\":\"Quản lý trên Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Quản lý lịch trình\",\"zXuaxY\":\"Quản lý danh sách chờ của sự kiện, xem thống kê và cung cấp vé cho người tham dự.\",\"BWTzAb\":\"Thủ công\",\"g2npA5\":\"Ưu đãi thủ công\",\"hg6l4j\":\"Tháng 3\",\"pqRBOz\":\"Đánh dấu là đã xác thực (quản trị viên ghi đè)\",\"2L3vle\":\"Tin nhắn tối đa / 24h\",\"Qp4HWD\":\"Người nhận tối đa / tin nhắn\",\"3JzsDb\":\"Tháng 5\",\"agPptk\":\"Phương tiện\",\"xDAtGP\":\"Tin nhắn\",\"bECJqy\":\"Tin nhắn được phê duyệt thành công\",\"1jRD0v\":\"Nhắn tin cho người tham dự có vé cụ thể\",\"uQLXbS\":\"Tin nhắn đã bị hủy\",\"48rf3i\":\"Tin nhắn không được quá 5000 ký tự\",\"ZPj0Q8\":\"Chi tiết tin nhắn\",\"Vjat/X\":\"Tin nhắn là bắt buộc\",\"0/yJtP\":\"Nhắn tin cho chủ đơn hàng có sản phẩm cụ thể\",\"saG4At\":\"Tin nhắn đã được lên lịch\",\"mFdA+i\":\"Cấp độ nhắn tin\",\"v7xKtM\":\"Cấp độ nhắn tin cập nhật thành công\",\"H9HlDe\":\"phút\",\"agRWc1\":\"Phút\",\"YYzBv9\":\"T2\",\"zz/Wd/\":\"Chế độ\",\"fpMgHS\":\"Thứ 2\",\"hty0d5\":\"Thứ Hai\",\"JbIgPz\":\"Giá trị tiền tệ là tổng gần đúng của tất cả các loại tiền tệ\",\"qvF+MT\":\"Giám sát và quản lý các công việc nền thất bại\",\"kY2ll9\":\"tháng\",\"HajiZl\":\"Tháng\",\"+8Nek/\":\"Hàng tháng\",\"1LkxnU\":\"Mẫu hàng tháng\",\"6jefe3\":\"tháng\",\"f8jrkd\":\"thêm\",\"JcD7qf\":\"Hành động khác\",\"w36OkR\":\"Sự kiện được xem nhiều nhất (14 ngày qua)\",\"+Y/na7\":\"Di chuyển tất cả các ngày sớm hơn hoặc trễ hơn\",\"3DIpY0\":\"Nhiều địa điểm\",\"g9cQCP\":\"Nhiều loại vé\",\"GfaxEk\":\"Âm nhạc\",\"oVGCGh\":\"Vé Của Tôi\",\"8/brI5\":\"Tên là bắt buộc\",\"sFFArG\":\"Tên phải ít hơn 255 ký tự\",\"sCV5Yc\":\"Tên sự kiện\",\"xxU3NX\":\"Doanh thu ròng\",\"7I8LlL\":\"Sức chứa mới\",\"n1GRql\":\"Nhãn mới\",\"y0Fcpd\":\"Địa điểm mới\",\"ArHT/C\":\"Đăng ký mới\",\"uK7xWf\":\"Thời gian mới:\",\"veT5Br\":\"Buổi tiếp theo\",\"WXtl5X\":[\"Tiếp: \",[\"nextFormatted\"]],\"eWRECP\":\"Cuộc sống về đêm\",\"HSw5l3\":\"Không - Tôi là cá nhân hoặc doanh nghiệp không đăng ký VAT\",\"VHfLAW\":\"Không có tài khoản\",\"+jIeoh\":\"Không tìm thấy tài khoản\",\"074+X8\":\"Không có Webhook hoạt động\",\"zxnup4\":\"Không có đối tác nào\",\"Dwf4dR\":\"Chưa có câu hỏi cho người tham dự\",\"th7rdT\":\"Không có khách\",\"PKySlW\":\"Chưa có người tham dự cho ngày này.\",\"/UC6qk\":\"Không tìm thấy dữ liệu phân bổ\",\"E2vYsO\":\"Stripe chưa báo cáo khả năng nào.\",\"amMkpL\":\"Hết chỗ\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Không có danh sách đăng ký nào cho sự kiện này.\",\"wG+knX\":\"Chưa có check-in\",\"+dAKxg\":\"Không tìm thấy cấu hình\",\"LiLk8u\":\"Không có kết nối khả dụng\",\"eb47T5\":\"Không tìm thấy dữ liệu cho bộ lọc đã chọn. Hãy thử điều chỉnh khoảng thời gian hoặc tiền tệ.\",\"lFVUyx\":\"Không có danh sách check-in dành riêng cho ngày\",\"I8mtzP\":\"Không có ngày nào khả dụng trong tháng này. Hãy thử chuyển sang tháng khác.\",\"yDukIL\":\"Không có ngày nào khớp với các bộ lọc hiện tại.\",\"B7phdj\":\"Không có ngày nào khớp với bộ lọc của bạn\",\"/ZB4Um\":\"Không có ngày nào khớp với tìm kiếm của bạn\",\"gEdNe8\":\"Chưa có ngày nào được lên lịch\",\"27GYXJ\":\"Chưa có ngày nào được lên lịch.\",\"pZNOT9\":\"Không có ngày kết thúc\",\"dW40Uz\":\"Không tìm thấy sự kiện\",\"8pQ3NJ\":\"Không có sự kiện nào bắt đầu trong 24 giờ tới\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"Không có công việc thất bại\",\"EpvBAp\":\"Không có hóa đơn\",\"XZkeaI\":\"Không tìm thấy nhật ký\",\"nrSs2u\":\"Không tìm thấy tin nhắn\",\"Rj99yx\":\"Không có buổi nào khả dụng\",\"IFU1IG\":\"Không có buổi nào vào ngày này\",\"OVFwlg\":\"Chưa có câu hỏi đơn hàng\",\"EJ7bVz\":\"Không tìm thấy đơn hàng\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"Chưa có đơn hàng nào cho ngày này.\",\"wUv5xQ\":\"Không có hoạt động của nhà tổ chức trong 14 ngày qua\",\"vLd1tV\":\"Không có ngữ cảnh nhà tổ chức khả dụng.\",\"B7w4KY\":\"Không có nhà tổ chức nào khác\",\"PChXMe\":\"Không có đơn hàng đã thanh toán\",\"6jYQGG\":\"Không có sự kiện trước đó\",\"CHzaTD\":\"Không có sự kiện phổ biến trong 14 ngày qua\",\"zK/+ef\":\"Không có sản phẩm nào có sẵn để lựa chọn\",\"M1/lXs\":\"Chưa có sản phẩm nào được cấu hình cho sự kiện này.\",\"kY7XDn\":\"Không có sản phẩm nào có người trong danh sách chờ\",\"wYiAtV\":\"Không có đăng ký tài khoản gần đây\",\"UW90md\":\"Không tìm thấy người nhận\",\"QoAi8D\":\"Không có phản hồi\",\"JeO7SI\":\"Không phản hồi\",\"EK/G11\":\"Chưa có phản hồi\",\"7J5OKy\":\"Chưa có địa điểm nào được lưu\",\"wpCjcf\":\"Chưa có địa điểm nào được lưu. Chúng sẽ xuất hiện ở đây khi bạn tạo sự kiện kèm địa chỉ.\",\"mPdY6W\":\"Không có gợi ý\",\"3sRuiW\":\"Không tìm thấy vé\",\"k2C0ZR\":\"Không có ngày sắp tới\",\"yM5c0q\":\"Không có sự kiện sắp tới\",\"qpC74J\":\"Không tìm thấy người dùng\",\"8wgkoi\":\"Không có sự kiện được xem trong 14 ngày qua\",\"Arzxc1\":\"Không có mục trong danh sách chờ\",\"n5vdm2\":\"Chưa có sự kiện webhook nào được ghi nhận cho điểm cuối này. Sự kiện sẽ xuất hiện ở đây khi chúng được kích hoạt.\",\"4GhX3c\":\"Không có webhooks\",\"4+am6b\":\"Không, giữ tôi ở đây\",\"4JVMUi\":\"chưa chỉnh sửa\",\"Itw24Q\":\"Chưa check-in\",\"x5+Lcz\":\"Chưa Đăng Ký\",\"8n10sz\":\"Không Đủ Điều Kiện\",\"kLvU3F\":\"Thông báo cho người tham dự và dừng bán\",\"t9QlBd\":\"Tháng 11\",\"kAREMN\":\"Số ngày cần tạo\",\"6u1B3O\":\"Buổi\",\"mmoE62\":\"Buổi đã hủy\",\"UYWXdN\":\"Ngày kết thúc buổi\",\"k7dZT5\":\"Giờ kết thúc buổi\",\"Opinaj\":\"Nhãn buổi\",\"V9flmL\":\"Lịch buổi\",\"NUTUUs\":\"trang Lịch buổi\",\"AT8UKD\":\"Ngày bắt đầu buổi\",\"Um8bvD\":\"Giờ bắt đầu buổi\",\"Kh3WO8\":\"Tóm tắt buổi\",\"byXCTu\":\"Buổi\",\"KATw3p\":\"Buổi (chỉ tương lai)\",\"85rTR2\":\"Các buổi có thể được cấu hình sau khi tạo\",\"dzQfDY\":\"Tháng 10\",\"BwJKBw\":\"của\",\"9h7RDh\":\"Cung cấp\",\"EfK2O6\":\"Cung cấp suất\",\"3sVRey\":\"Cung cấp vé\",\"2O7Ybb\":\"Thời hạn đề nghị\",\"1jUg5D\":\"Đã đề nghị\",\"l+/HS6\":[\"Đề nghị hết hạn sau \",[\"timeoutHours\"],\" giờ.\"],\"lQgMLn\":\"Tên văn phòng hoặc địa điểm\",\"6Aih4U\":\"Ngoại tuyến\",\"Z6gBGW\":\"Thanh toán ngoại tuyến\",\"nO3VbP\":[\"Đang giảm giá \",[\"0\"]],\"oXOSPE\":\"Trực tuyến\",\"aqmy5k\":\"Trực tuyến — cung cấp thông tin kết nối\",\"LuZBbx\":\"Trực tuyến và trực tiếp\",\"IXuOqt\":\"Trực tuyến và trực tiếp — xem lịch trình\",\"w3DG44\":\"Chi tiết kết nối trực tuyến\",\"WjSpu5\":\"Sự kiện trực tuyến\",\"TP6jss\":\"Chi tiết kết nối sự kiện trực tuyến\",\"NdOxqr\":\"Chỉ quản trị viên tài khoản mới có thể xóa hoặc lưu trữ sự kiện. Liên hệ quản trị viên tài khoản của bạn để được hỗ trợ.\",\"rnoDMF\":\"Chỉ quản trị viên tài khoản mới có thể xóa hoặc lưu trữ ban tổ chức. Liên hệ quản trị viên tài khoản của bạn để được hỗ trợ.\",\"bU7oUm\":\"Chỉ gửi đến các đơn hàng có trạng thái này\",\"M2w1ni\":\"Chỉ hiển thị với mã khuyến mãi\",\"y8Bm7C\":\"Mở check-in\",\"RLz7P+\":\"Mở buổi\",\"cDSdPb\":\"Biệt danh tùy chọn hiển thị trong bộ chọn, ví dụ \\\"Phòng họp trụ sở\\\"\",\"HXMJxH\":\"Văn bản tùy chọn cho tuyên bố từ chối, thông tin liên hệ hoặc ghi chú cảm ơn (chỉ một dòng)\",\"L565X2\":\"tùy chọn\",\"8m9emP\":\"hoặc thêm một ngày đơn\",\"dSeVIm\":\"đơn hàng\",\"c/TIyD\":\"Đơn hàng & Vé\",\"H5qWhm\":\"Đơn hàng đã hủy\",\"b6+Y+n\":\"Đơn hàng hoàn tất\",\"x4MLWE\":\"Xác nhận đơn hàng\",\"CsTTH0\":\"Xác nhận đơn hàng đã được gửi lại thành công\",\"ppuQR4\":\"Đơn hàng được tạo\",\"0UZTSq\":\"Đơn Vị Tiền Tệ Đơn Hàng\",\"xtQzag\":\"Chi tiết đơn\",\"HdmwrI\":\"Email đơn hàng\",\"bwBlJv\":\"Tên trong đơn hàng\",\"vrSW9M\":\"Đơn hàng đã được hủy và hoàn tiền. Chủ đơn hàng đã được thông báo.\",\"rzw+wS\":\"Người đặt hàng\",\"oI/hGR\":\"Mã đơn hàng\",\"Pc729f\":\"Đơn Hàng Đang Chờ Thanh Toán Ngoại Tuyến\",\"F4NXOl\":\"Họ trong đơn hàng\",\"RQCXz6\":\"Giới hạn đơn hàng\",\"SO9AEF\":\"Giới hạn đơn hàng đã đặt\",\"5RDEEn\":\"Ngôn Ngữ Đơn Hàng\",\"vu6Arl\":\"Đơn hàng được đánh dấu là đã trả\",\"sLbJQz\":\"Không tìm thấy đơn hàng\",\"kvYpYu\":\"Không tìm thấy đơn hàng\",\"i8VBuv\":\"Số đơn hàng\",\"eJ8SvM\":\"Mã đơn, ngày mua, email người mua\",\"FaPYw+\":\"Chủ sở hữu đơn hàng\",\"eB5vce\":\"Chủ đơn hàng có sản phẩm cụ thể\",\"CxLoxM\":\"Chủ đơn hàng có sản phẩm\",\"DoH3fD\":\"Thanh Toán Đơn Hàng Đang Chờ\",\"UkHo4c\":\"Mã đơn hàng\",\"EZy55F\":\"Đơn hàng đã hoàn lại\",\"6eSHqs\":\"Trạng thái đơn hàng\",\"oW5877\":\"Tổng đơn hàng\",\"e7eZuA\":\"Đơn hàng cập nhật\",\"1SQRYo\":\"Đơn hàng đã được cập nhật thành công\",\"KndP6g\":\"URL đơn hàng\",\"3NT0Ck\":\"Đơn hàng đã bị hủy\",\"V5khLm\":\"đơn hàng\",\"sd5IMt\":\"Đơn hàng đã hoàn thành\",\"5It1cQ\":\"Đơn hàng đã được xuất\",\"tlKX/S\":\"Các đơn hàng kéo dài qua nhiều ngày sẽ được đánh dấu để xem xét thủ công.\",\"UQ0ACV\":\"Tổng đơn hàng\",\"B/EBQv\":\"Đơn hàng:\",\"qtGTNu\":\"Tài khoản tự nhiên\",\"ucgZ0o\":\"Tổ chức\",\"P/JHA4\":\"Ban tổ chức đã được lưu trữ thành công\",\"S3CZ5M\":\"Bảng điều khiển nhà tổ chức\",\"GzjTd0\":\"Ban tổ chức đã được xóa thành công\",\"Uu0hZq\":\"Email nhà tổ chức\",\"Gy7BA3\":\"Địa chỉ email nhà tổ chức\",\"SQqJd8\":\"Không tìm thấy nhà tổ chức\",\"HF8Bxa\":\"Ban tổ chức đã được khôi phục thành công\",\"wpj63n\":\"Cài đặt nhà tổ chức\",\"o1my93\":\"Cập nhật trạng thái nhà tổ chức thất bại. Vui lòng thử lại sau\",\"rLHma1\":\"Trạng thái nhà tổ chức đã được cập nhật\",\"LqBITi\":\"Mẫu của tổ chức/mặc định sẽ được sử dụng\",\"q4zH+l\":\"Nhà tổ chức\",\"/IX/7x\":\"Khác\",\"RsiDDQ\":\"Danh Sách Khác (Vé Không Bao Gồm)\",\"aDfajK\":\"Ngoài trời\",\"qMASRF\":\"Tin nhắn đi\",\"iCOVQO\":\"Ghi đè\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Ghi đè giá\",\"cnVIpl\":\"Đã xóa ghi đè\",\"6/dCYd\":\"Tổng quan\",\"6WdDG7\":\"Trang\",\"8uqsE5\":\"Trang không còn khả dụng\",\"QkLf4H\":\"URL trang\",\"sF+Xp9\":\"Lượt xem trang\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Tài khoản trả phí\",\"5F7SYw\":\"Hoàn tiền một phần\",\"fFYotW\":[\"Hoàn tiền một phần: \",[\"0\"]],\"i8day5\":\"Chuyển phí cho người mua\",\"k4FLBQ\":\"Chuyển cho người mua\",\"Ff0Dor\":\"Đã qua\",\"BFjW8X\":\"Quá hạn\",\"xTPjSy\":\"Sự kiện đã qua\",\"/l/ckQ\":\"Dán URL\",\"URAE3q\":\"Tạm dừng\",\"4fL/V7\":\"Thanh toán\",\"OZK07J\":\"Thanh toán để mở khóa\",\"c2/9VE\":\"Tải trọng\",\"5cxUwd\":\"Ngày thanh toán\",\"ENEPLY\":\"Phương thức thanh toán\",\"8Lx2X7\":\"Đã nhận thanh toán\",\"fx8BTd\":\"Thanh toán không khả dụng\",\"C+ylwF\":\"Tiền chuyển ra\",\"UbRKMZ\":\"Đang chờ\",\"UkM20g\":\"Đang chờ xem xét\",\"dPYu1F\":\"Theo người tham dự\",\"mQV/nJ\":\"mỗi phút\",\"VlXNyK\":\"Mỗi đơn hàng\",\"hauDFf\":\"Mỗi vé\",\"mnF83a\":\"Phí phần trăm\",\"TNLuRD\":\"Phí phần trăm (%)\",\"MixU2P\":\"Phần trăm phải từ 0 đến 100\",\"MkuVAZ\":\"Phần trăm của số tiền giao dịch\",\"/Bh+7r\":\"Hiệu suất\",\"fIp56F\":\"Xóa vĩnh viễn sự kiện này và tất cả dữ liệu liên quan.\",\"nJeeX7\":\"Xóa vĩnh viễn ban tổ chức này và tất cả các sự kiện của họ.\",\"wfCTgK\":\"Xóa vĩnh viễn ngày này\",\"6kPk3+\":\"Thông tin cá nhân\",\"zmwvG2\":\"Điện thoại\",\"SdM+Q1\":\"Chọn một địa điểm\",\"tSR/oe\":\"Chọn ngày kết thúc\",\"e8kzpp\":\"Chọn ít nhất một ngày trong tháng\",\"35C8QZ\":\"Chọn ít nhất một thứ trong tuần\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"Đặt lúc\",\"wBJR8i\":\"Đang lên kế hoạch cho một sự kiện?\",\"J3lhKT\":\"Phí nền tảng\",\"RD51+P\":[\"Phí nền tảng \",[\"0\"],\" được khấu trừ từ khoản thanh toán của bạn\"],\"br3Y/y\":\"Phí nền tảng\",\"3buiaw\":\"Báo cáo phí nền tảng\",\"kv9dM4\":\"Doanh thu nền tảng\",\"PJ3Ykr\":\"Vui lòng kiểm tra vé của bạn để biết thời gian đã cập nhật. Vé của bạn vẫn còn hiệu lực — không cần làm gì trừ khi thời gian mới không phù hợp với bạn. Trả lời email này nếu bạn có thắc mắc.\",\"OtjenF\":\"Vui lòng nhập địa chỉ email hợp lệ\",\"jEw0Mr\":\"Vui lòng nhập URL hợp lệ\",\"n8+Ng/\":\"Vui lòng nhập mã 5 chữ số\",\"r+lQXT\":\"Vui lòng nhập mã số VAT của bạn\",\"Dvq0wf\":\"Vui lòng cung cấp một hình ảnh.\",\"2cUopP\":\"Vui lòng bắt đầu lại quy trình thanh toán.\",\"GoXxOA\":\"Vui lòng chọn ngày và giờ\",\"8KmsFa\":\"Vui lòng chọn khoảng thời gian\",\"EFq6EG\":\"Vui lòng chọn một hình ảnh.\",\"fuwKpE\":\"Vui lòng thử lại.\",\"klWBeI\":\"Vui lòng đợi trước khi yêu cầu mã khác\",\"hfHhaa\":\"Vui lòng đợi trong khi chúng tôi chuẩn bị xuất danh sách đối tác...\",\"o+tJN/\":\"Vui lòng đợi trong khi chúng tôi chuẩn bị cho người tham dự xuất ra...\",\"+5Mlle\":\"Vui lòng đợi trong khi chúng tôi chuẩn bị đơn hàng của bạn để xuất ra...\",\"trnWaw\":\"Tiếng Ba Lan\",\"luHAJY\":\"Sự kiện phổ biến (14 ngày qua)\",\"p/78dY\":\"Vị trí\",\"TjX7xL\":\"Tin Nhắn Sau Thanh Toán\",\"OESu7I\":\"Ngăn bán quá số lượng bằng cách chia sẻ tồn kho giữa nhiều loại vé.\",\"NgVUL2\":\"Xem trước biểu mẫu thanh toán\",\"cs5muu\":\"Xem trước trang sự kiện\",\"+4yRWM\":\"Giá vé\",\"Jm2AC3\":\"Tầng giá\",\"a5jvSX\":\"Cấp giá\",\"ReihZ7\":\"Xem trước khi in\",\"JnuPvH\":\"In vé\",\"tYF4Zq\":\"In ra PDF\",\"LcET2C\":\"Chính sách quyền riêng tư\",\"8z6Y5D\":\"Xử lý hoàn tiền\",\"JcejNJ\":\"Đang xử lý đơn hàng\",\"EWCLpZ\":\"Sản phẩm được tạo ra\",\"XkFYVB\":\"Xóa sản phẩm\",\"YMwcbR\":\"Chi tiết doanh số sản phẩm, doanh thu và thuế\",\"ls0mTC\":\"Không thể chỉnh sửa cài đặt sản phẩm cho các ngày đã hủy.\",\"2339ej\":\"Đã lưu cài đặt sản phẩm thành công\",\"ldVIlB\":\"Cập nhật sản phẩm\",\"CP3D8G\":\"Tiến độ\",\"JoKGiJ\":\"Mã khuyến mãi\",\"k3wH7i\":\"Chi tiết sử dụng mã khuyến mãi và giảm giá\",\"tZqL0q\":\"mã khuyến mãi\",\"oCHiz3\":\"Mã khuyến mãi\",\"uEhdRh\":\"Chỉ khuyến mãi\",\"dLm8V5\":\"Email quảng cáo có thể dẫn đến đình chỉ tài khoản\",\"XoEWtl\":\"Hãy cung cấp ít nhất một trường địa chỉ cho địa điểm mới.\",\"2W/7Gz\":\"Cung cấp các thông tin sau trước đợt rà soát tiếp theo của Stripe để duy trì việc thanh toán.\",\"aemBRq\":\"Nhà cung cấp\",\"EEYbdt\":\"Xuất bản\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"Đã mua\",\"JunetL\":\"Người mua\",\"phmeUH\":\"Email người mua\",\"ywR4ZL\":\"Check-in bằng mã QR\",\"oWXNE5\":\"SL\",\"biEyJ4\":\"Câu trả lời\",\"k/bJj0\":\"Đã sắp xếp lại câu hỏi\",\"b24kPi\":\"Hàng đợi\",\"lTPqpM\":\"Mẹo nhanh\",\"fqDzSu\":\"Tỷ lệ\",\"mnUGVC\":\"Vượt quá giới hạn yêu cầu. Vui lòng thử lại sau.\",\"t41hVI\":\"Cung cấp lại suất\",\"TNclgc\":\"Kích hoạt lại ngày này? Sẽ được mở lại để bán trong tương lai.\",\"uqoRbb\":\"Phân tích theo thời gian thực\",\"xzRvs4\":[\"Nhận cập nhật sản phẩm từ \",[\"0\"],\".\"],\"pLXbi8\":\"Đăng ký tài khoản gần đây\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Người tham dự gần đây\",\"qhfiwV\":\"Check-in gần đây\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Đơn hàng gần đây\",\"7hPBBn\":\"người nhận\",\"jp5bq8\":\"người nhận\",\"yPrbsy\":\"Người nhận\",\"E1F5Ji\":\"Người nhận sẽ có sau khi tin nhắn được gửi\",\"wuhHPE\":\"Định kỳ\",\"asLqwt\":\"Sự kiện định kỳ\",\"D0tAMe\":\"Sự kiện định kỳ\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Đang chuyển hướng đến Stripe...\",\"pnoTN5\":\"Tài khoản giới thiệu\",\"ACKu03\":\"Làm mới xem trước\",\"vuFYA6\":\"Hoàn tiền tất cả đơn hàng cho các ngày này\",\"4cRUK3\":\"Hoàn tiền tất cả đơn hàng cho ngày này\",\"fKn/k6\":\"Số tiền hoàn lại\",\"qY4rpA\":\"Hoàn tiền thất bại\",\"TspTcZ\":\"Đã hoàn tiền\",\"FaK/8G\":[\"Hoàn tiền đơn hàng \",[\"0\"]],\"MGbi9P\":\"Hoàn tiền đang chờ\",\"BDSRuX\":[\"Đã hoàn tiền: \",[\"0\"]],\"bU4bS1\":\"Hoàn tiền\",\"rYXfOA\":\"Cài đặt khu vực\",\"5tl0Bp\":\"Câu hỏi đăng ký\",\"ZNo5k1\":\"Còn lại\",\"EMnuA4\":\"Đã lên lịch nhắc nhở\",\"Bjh87R\":\"Xóa nhãn khỏi tất cả các ngày\",\"KkJtVK\":\"Mở lại để bán vé mới\",\"XJwWJp\":\"Mở lại ngày này để bán vé mới? Các vé đã bị hủy trước đó sẽ không được khôi phục — những người tham dự bị ảnh hưởng vẫn ở trạng thái đã hủy và các khoản hoàn tiền đã được phát hành sẽ không được đảo ngược.\",\"bAwDQs\":\"Lặp lại mỗi\",\"CQeZT8\":\"Không tìm thấy báo cáo\",\"JEPMXN\":\"Yêu cầu liên kết mới\",\"TMLAx2\":\"Bắt buộc\",\"mdeIOH\":\"Gửi lại mã\",\"sQxe68\":\"Gửi lại xác nhận\",\"bxoWpz\":\"Gửi lại email xác nhận\",\"G42SNI\":\"Gửi lại email\",\"TTpXL3\":[\"Gửi lại sau \",[\"resendCooldown\"],\"s\"],\"5CiNPm\":\"Gửi lại vé\",\"Uwsg2F\":\"Đã đặt chỗ\",\"8wUjGl\":\"Đặt trước đến\",\"a5z8mb\":\"Đặt lại về giá cơ bản\",\"kCn6wb\":\"Đang đặt lại...\",\"404zLK\":\"Tên địa điểm đã xác định\",\"ZlCDf+\":\"Phản hồi\",\"bsydMp\":\"Chi tiết phản hồi\",\"yKu/3Y\":\"Khôi phục\",\"RokrZf\":\"Khôi phục sự kiện\",\"/JyMGh\":\"Khôi phục ban tổ chức\",\"HFvFRb\":\"Khôi phục sự kiện này để làm cho nó hiển thị trở lại.\",\"DDIcqy\":\"Khôi phục ban tổ chức này và làm cho nó hoạt động trở lại.\",\"mO8KLE\":\"kết quả\",\"6gRgw8\":\"Thử lại\",\"1BG8ga\":\"Thử lại tất cả\",\"rDC+T6\":\"Thử lại công việc\",\"CbnrWb\":\"Quay lại sự kiện\",\"mdQ0zb\":\"Địa điểm có thể tái sử dụng cho các sự kiện của bạn. Địa điểm được tạo từ tự động hoàn thành sẽ được lưu ở đây tự động.\",\"XFOPle\":\"Tái sử dụng\",\"1Zehp4\":\"Tái sử dụng kết nối Stripe từ một nhà tổ chức khác trong tài khoản này.\",\"Oo/PLb\":\"Tóm tắt doanh thu\",\"O/8Ceg\":\"Doanh thu hôm nay\",\"CfuueU\":\"Thu hồi đề nghị\",\"RIgKv+\":\"Chạy cho đến một ngày cụ thể\",\"JYRqp5\":\"T7\",\"dFFW9L\":[\"Đợt giảm giá kết thúc \",[\"0\"]],\"loCKGB\":[\"Đợt giảm giá kết thúc \",[\"0\"]],\"wlfBad\":\"Thời gian giảm giá\",\"qi81Jg\":\"Các ngày trong kỳ bán hàng áp dụng cho tất cả các ngày trong lịch trình của bạn. Để kiểm soát giá và khả năng cung cấp cho từng ngày, hãy sử dụng ghi đè trên <0>trang Lịch buổi.\",\"5CDM6r\":\"Đã đặt thời gian bán\",\"ftzaMf\":\"Thời gian bán, giới hạn đơn hàng, hiển thị\",\"zpekWp\":[\"Đợt giảm giá bắt đầu \",[\"0\"]],\"mUv9U4\":\"Bán hàng\",\"9KnRdL\":\"Bán hàng đang tạm dừng\",\"JC3J0k\":\"Phân tích doanh số, tham dự và check-in theo từng buổi\",\"3VnlS9\":\"Doanh số, đơn hàng và chỉ số hiệu suất cho tất cả sự kiện\",\"3Q1AWe\":\"Doanh thu:\",\"LeuERW\":\"Giống như sự kiện\",\"B4nE3N\":\"Giá vé mẫu\",\"8BRPoH\":\"Địa điểm Mẫu\",\"PiK6Ld\":\"Thứ 7\",\"+5kO8P\":\"Thứ Bảy\",\"zJiuDn\":\"Lưu ghi đè phí\",\"NB8Uxt\":\"Lưu lịch trình\",\"KZrfYJ\":\"Lưu liên kết mạng xã hội\",\"9Y3hAT\":\"Lưu mẫu\",\"C8ne4X\":\"Lưu thiết kế vé\",\"cTI8IK\":\"Lưu cài đặt VAT\",\"6/TNCd\":\"Lưu cài đặt VAT\",\"4RvD9q\":\"Địa điểm đã lưu\",\"cgw0cL\":\"Địa điểm đã lưu\",\"lvSrsT\":\"Địa điểm đã lưu\",\"Fbqm/I\":\"Lưu một ghi đè sẽ tạo một cấu hình riêng cho nhà tổ chức này nếu hiện đang dùng mặc định hệ thống.\",\"I+FvbD\":\"Quét\",\"0zd6Nm\":\"Quét vé để check-in khách\",\"bQG7Qk\":\"Vé đã quét sẽ hiển thị ở đây\",\"WDYSLJ\":\"Chế độ máy quét\",\"gmB6oO\":\"Lịch trình\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"Tạo lịch trình thành công\",\"YP7frt\":\"Lịch trình kết thúc vào\",\"QS1Nla\":\"Lên lịch gửi sau\",\"NAzVVw\":\"Lên lịch tin nhắn\",\"Fz09JP\":\"Lịch bắt đầu vào\",\"4ba0NE\":\"Đã lên lịch\",\"qcP/8K\":\"Thời gian đã lên lịch\",\"A1taO8\":\"Tìm kiếm\",\"ftNXma\":\"Tìm kiếm đối tác...\",\"VMU+zM\":\"Tìm khách\",\"VY+Bdn\":\"Tìm kiếm theo tên tài khoản hoặc email...\",\"VX+B3I\":\"Tìm kiếm theo tiêu đề sự kiện hoặc người tổ chức...\",\"R0wEyA\":\"Tìm kiếm theo tên công việc hoặc ngoại lệ...\",\"VT+urE\":\"Tìm kiếm theo tên hoặc email...\",\"GHdjuo\":\"Tìm kiếm theo tên, email hoặc tài khoản...\",\"4mBFO7\":\"Tìm theo tên, mã đơn, mã vé hoặc email\",\"20ce0U\":\"Tìm kiếm theo mã đơn hàng, tên khách hàng hoặc email...\",\"4DSz7Z\":\"Tìm kiếm theo chủ đề, sự kiện hoặc tài khoản...\",\"nQC7Z9\":\"Tìm kiếm ngày...\",\"iRtEpV\":\"Tìm kiếm ngày…\",\"JRM7ao\":\"Tìm kiếm địa chỉ\",\"BWF1kC\":\"Tìm kiếm tin nhắn...\",\"3aD3GF\":\"Theo mùa\",\"ku//5b\":\"Thứ hai\",\"Mck5ht\":\"Thanh toán an toàn\",\"s7tXqF\":\"Xem lịch trình\",\"JFap6u\":\"Xem Stripe còn cần gì\",\"p7xUrt\":\"Chọn danh mục\",\"hTKQwS\":\"Chọn ngày và giờ\",\"e4L7bF\":\"Chọn một tin nhắn để xem nội dung\",\"zPRPMf\":\"Chọn cấp độ\",\"uqpVri\":\"Chọn thời gian\",\"BFRSTT\":\"Chọn Tài Khoản\",\"wgNoIs\":\"Chọn tất cả\",\"mCB6Je\":\"Chọn tất cả\",\"aCEysm\":[\"Chọn tất cả trên \",[\"0\"]],\"a6+167\":\"Chọn một sự kiện\",\"CFbaPk\":\"Chọn nhóm người tham dự\",\"88a49s\":\"Chọn máy ảnh\",\"tVW/yo\":\"Chọn tiền tệ\",\"SJQM1I\":\"Chọn ngày\",\"n9ZhRa\":\"Chọn ngày và giờ kết thúc\",\"gTN6Ws\":\"Chọn thời gian kết thúc\",\"0U6E9W\":\"Chọn danh mục sự kiện\",\"j9cPeF\":\"Chọn loại sự kiện\",\"ypTjHL\":\"Chọn buổi\",\"KizCK7\":\"Chọn ngày và giờ bắt đầu\",\"dJZTv2\":\"Chọn thời gian bắt đầu\",\"x8XMsJ\":\"Chọn cấp độ nhắn tin cho tài khoản này. Điều này kiểm soát giới hạn tin nhắn và quyền liên kết.\",\"aT3jZX\":\"Chọn múi giờ\",\"TxfvH2\":\"Chọn người tham dự nào sẽ nhận tin nhắn này\",\"Ropvj0\":\"Chọn những sự kiện nào sẽ kích hoạt webhook này\",\"+6YAwo\":\"đã chọn\",\"ylXj1N\":\"Đã chọn\",\"uq3CXQ\":\"Bán hết vé sự kiện của bạn.\",\"j9b/iy\":\"Bán chạy 🔥\",\"73qYgo\":\"Gửi thử\",\"HMAqFK\":\"Gửi email cho người tham dự, chủ vé hoặc chủ đơn hàng. Tin nhắn có thể được gửi ngay hoặc lên lịch gửi sau.\",\"22Itl6\":\"Gửi cho tôi một bản sao\",\"NpEm3p\":\"Gửi ngay\",\"nOBvex\":\"Gửi dữ liệu đơn hàng và người tham dự theo thời gian thực đến hệ thống bên ngoài của bạn.\",\"1lNPhX\":\"Gửi email thông báo hoàn tiền\",\"eaUTwS\":\"Gửi liên kết đặt lại\",\"5cV4PY\":\"Gửi đến tất cả các buổi, hoặc chọn một buổi cụ thể\",\"QEQlnV\":\"Gửi tin nhắn đầu tiên của bạn\",\"3nMAVT\":\"Gửi sau 2 ngày 4 giờ\",\"IoAuJG\":\"Đang gửi...\",\"h69WC6\":\"Đã gửi\",\"BVu2Hz\":\"Được gửi bởi\",\"ZFa8wv\":\"Gửi đến người tham dự khi một ngày đã lên lịch bị hủy\",\"SPdzrs\":\"Gửi cho khách hàng khi họ đặt hàng\",\"LxSN5F\":\"Gửi cho từng người tham dự với chi tiết vé của họ\",\"hgvbYY\":\"Tháng 9\",\"5sN96e\":\"Buổi đã hủy\",\"89xaFU\":\"Đặt cài đặt phí nền tảng mặc định cho các sự kiện mới được tạo dưới nhà tổ chức này.\",\"eXssj5\":\"Đặt cài đặt mặc định cho các sự kiện mới được tạo dưới tổ chức này.\",\"uPe5p8\":\"Đặt thời lượng cho mỗi ngày\",\"xNsRxU\":\"Đặt số lượng ngày\",\"ODuUEi\":\"Đặt hoặc xóa nhãn ngày\",\"buHACR\":\"Đặt giờ kết thúc của mỗi ngày sau giờ bắt đầu khoảng thời gian này.\",\"TaeFgl\":\"Đặt thành không giới hạn (xóa giới hạn)\",\"pd6SSe\":\"Thiết lập một lịch trình định kỳ để tự động tạo các ngày, hoặc thêm từng ngày một.\",\"s0FkEx\":\"Thiết lập danh sách check-in cho các lối vào, phiên hoặc ngày khác nhau.\",\"TaWVGe\":\"Thiết lập thanh toán\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Thiết lập lịch trình\",\"xMO+Ao\":\"Thiết lập tổ chức của bạn\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Thiết lập lịch trình của bạn\",\"ETC76A\":\"Thiết lập, thay đổi hoặc xóa địa điểm hay thông tin trực tuyến của buổi\",\"C3htzi\":\"Đã cập nhật cài đặt\",\"Ohn74G\":\"Thiết lập & thiết kế\",\"1W5XyZ\":\"Việc thiết lập chỉ mất vài phút — bạn không cần tài khoản Stripe sẵn có. Stripe xử lý thẻ, ví điện tử, các phương thức thanh toán theo khu vực và bảo vệ chống gian lận, để bạn tập trung vào sự kiện của mình.\",\"GG7qDw\":\"Chia sẻ liên kết đối tác\",\"hL7sDJ\":\"Chia sẻ trang nhà tổ chức\",\"jy6QDF\":\"Quản lý sức chứa chung\",\"jDNHW4\":\"Dịch chuyển thời gian\",\"tPfIaW\":[\"Đã dịch chuyển thời gian cho \",[\"count\"],\" ngày\"],\"WwlM8F\":\"Hiện tùy chọn nâng cao\",\"cMW+gm\":[\"Hiển thị tất cả nền tảng (\",[\"0\"],\" có giá trị khác)\"],\"wXi9pZ\":\"Hiện ghi chú cho nhân viên chưa đăng nhập\",\"UVPI5D\":\"Hiển thị ít nền tảng hơn\",\"Eu/N/d\":\"Hiển thị hộp kiểm đăng ký tiếp thị\",\"SXzpzO\":\"Hiển thị hộp kiểm đăng ký tiếp thị theo mặc định\",\"57tTk5\":\"Hiển thị thêm ngày\",\"b33PL9\":\"Hiển thị thêm nền tảng\",\"Eut7p9\":\"Hiện chi tiết đơn cho nhân viên chưa đăng nhập\",\"+RoWKN\":\"Hiện câu trả lời cho nhân viên chưa đăng nhập\",\"t1LIQW\":[\"Hiển thị \",[\"0\"],\" trong \",[\"totalRows\"],\" bản ghi\"],\"E717U9\":[\"Đang hiển thị \",[\"0\"],\"–\",[\"1\"],\" trong số \",[\"2\"]],\"5rzhBQ\":[\"Đang hiển thị \",[\"MAX_VISIBLE\"],\" trong số \",[\"totalAvailable\"],\" ngày. Nhập để tìm kiếm.\"],\"WSt3op\":[\"Đang hiển thị \",[\"0\"],\" đầu tiên — \",[\"1\"],\" buổi còn lại vẫn sẽ được nhắm đến khi tin nhắn được gửi.\"],\"OJLTEL\":\"Hiển thị cho nhân viên lần đầu mở trang.\",\"jVRHeq\":\"Đã đăng ký\",\"5C7J+P\":\"Sự kiện đơn\",\"E//btK\":\"Bỏ qua các ngày đã chỉnh sửa thủ công\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Xã hội\",\"d0rUsW\":\"Liên kết mạng xã hội\",\"j/TOB3\":\"Liên kết mạng xã hội & Trang web\",\"s9KGXU\":\"Đã bán\",\"iACSrw\":\"Một số chi tiết đang ẩn với người truy cập công khai. Đăng nhập để xem tất cả.\",\"KTxc6k\":\"Có gì đó không ổn, vui lòng thử lại hoặc liên hệ với hỗ trợ nếu vấn đề vẫn còn\",\"lkE00/\":\"Đã xảy ra lỗi. Vui lòng thử lại sau.\",\"wdxz7K\":\"Nguồn\",\"fDG2by\":\"Tâm linh\",\"oPaRES\":\"Chia check-in theo ngày, khu vực hoặc loại vé. Chia sẻ liên kết với nhân viên — không cần tài khoản.\",\"7JFNej\":\"Thể thao\",\"/bfV1Y\":\"Hướng dẫn cho nhân viên\",\"tXkhj/\":\"Bắt đầu\",\"JcQp9p\":\"Ngày & giờ bắt đầu\",\"0m/ekX\":\"Ngày và giờ bắt đầu\",\"izRfYP\":\"Ngày bắt đầu là bắt buộc\",\"tuO4fV\":\"Ngày bắt đầu của buổi\",\"2R1+Rv\":\"Thời gian bắt đầu sự kiện\",\"2Olov3\":\"Giờ bắt đầu của buổi\",\"n9ZrDo\":\"Bắt đầu nhập tên địa điểm hoặc địa chỉ...\",\"qeFVhN\":[\"Bắt đầu sau \",[\"diffDays\"],\" ngày\"],\"AOqtxN\":[\"Bắt đầu sau \",[\"diffMinutes\"],\" phút\"],\"Otg8Oh\":[\"Bắt đầu sau \",[\"h\"],\" giờ \",[\"m\"],\" phút\"],\"Lo49in\":[\"Bắt đầu sau \",[\"seconds\"],\" giây\"],\"NqChgF\":\"Bắt đầu ngày mai\",\"2NbyY/\":\"Thống kê\",\"GVUxAX\":\"Thống kê dựa trên ngày tạo tài khoản\",\"29Hx9U\":\"Thống kê\",\"5ia+r6\":\"Vẫn cần\",\"wuV0bK\":\"Dừng Mạo Danh\",\"s/KaDb\":\"Đã kết nối Stripe\",\"Bk06QI\":\"Stripe đã kết nối\",\"akZMv8\":[\"Đã sao chép kết nối Stripe từ \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe không trả về liên kết thiết lập. Vui lòng thử lại.\",\"aKtF0O\":\"Stripe chưa kết nối\",\"9i0++A\":\"ID thanh toán Stripe\",\"R1lIMV\":\"Stripe sẽ sớm cần thêm vài thông tin\",\"FzcCHA\":\"Stripe sẽ hướng dẫn bạn qua vài câu hỏi nhanh để hoàn tất thiết lập.\",\"eYbd7b\":\"CN\",\"ii0qn/\":\"Tiêu đề là bắt buộc\",\"M7Uapz\":\"Tiêu đề sẽ xuất hiện ở đây\",\"6aXq+t\":\"Tiêu đề:\",\"JwTmB6\":\"Sản phẩm nhân đôi thành công\",\"WUOCgI\":\"Đã cung cấp suất thành công\",\"IvxA4G\":[\"Đã cung cấp vé thành công cho \",[\"count\"],\" người\"],\"kKpkzy\":\"Đã cung cấp vé thành công cho 1 người\",\"Zi3Sbw\":\"Đã xóa khỏi danh sách chờ thành công\",\"RuaKfn\":\"Cập nhật địa chỉ thành công\",\"kzx0uD\":\"Đã cập nhật mặc định sự kiện thành công\",\"5n+Wwp\":\"Cập nhật nhà tổ chức thành công\",\"DMCX/I\":\"Cài đặt phí nền tảng mặc định đã được cập nhật thành công\",\"URUYHc\":\"Cài đặt phí nền tảng đã được cập nhật thành công\",\"0Dk/l8\":\"Cập nhật cài đặt SEO thành công\",\"S8Tua9\":\"Cập nhật cài đặt thành công\",\"MhOoLQ\":\"Cập nhật liên kết mạng xã hội thành công\",\"CNSSfp\":\"Đã cập nhật cài đặt theo dõi thành công\",\"kj7zYe\":\"Cập nhật Webhook thành công\",\"dXoieq\":\"Tóm tắt\",\"/RfJXt\":[\"Lễ hội âm nhạc mùa hè \",[\"0\"]],\"CWOPIK\":\"Lễ hội Âm nhạc Mùa hè 2025\",\"D89zck\":\"Chủ Nhật\",\"DBC3t5\":\"Chủ Nhật\",\"UaISq3\":\"Tiếng Thụy Điển\",\"JZTQI0\":\"Chuyển đổi nhà tổ chức\",\"9YHrNC\":\"Mặc định hệ thống\",\"lruQkA\":\"Chạm vào màn hình để tiếp tục quét\",\"TJUrME\":[\"Nhắm đến người tham dự trên \",[\"0\"],\" buổi đã chọn.\"],\"yT6dQ8\":\"Thuế thu được theo loại thuế và sự kiện\",\"Ye321X\":\"Tên thuế\",\"WyCBRt\":\"Tóm tắt thuế\",\"GkH0Pq\":\"Đã áp dụng thuế & phí\",\"Rwiyt2\":\"Đã cấu hình thuế\",\"iQZff7\":\"Thuế, phí, hiển thị, thời gian bán, nổi bật sản phẩm & giới hạn đơn hàng\",\"SXvRWU\":\"Cộng tác nhóm\",\"vlf/In\":\"Công nghệ\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Hãy cho mọi người biết điều gì sẽ có tại sự kiện của bạn\",\"NiIUyb\":\"Hãy cho chúng tôi biết về sự kiện của bạn\",\"DovcfC\":\"Hãy cho chúng tôi biết về tổ chức của bạn. Thông tin này sẽ được hiển thị trên các trang sự kiện của bạn.\",\"69GWRq\":\"Cho chúng tôi biết tần suất sự kiện lặp lại và chúng tôi sẽ tạo tất cả các ngày cho bạn.\",\"mXPbwY\":\"Cho chúng tôi biết trạng thái đăng ký VAT để áp dụng cách tính VAT phù hợp cho phí nền tảng.\",\"7wtpH5\":\"Mẫu đang hoạt động\",\"QHhZeE\":\"Tạo mẫu thành công\",\"xrWdPR\":\"Xóa mẫu thành công\",\"G04Zjt\":\"Lưu mẫu thành công\",\"xowcRf\":\"Điều khoản dịch vụ\",\"6K0GjX\":\"Văn bản có thể khó đọc\",\"u0F1Ey\":\"T5\",\"nm3Iz/\":\"Cảm ơn bạn đã tham dự!\",\"pYwj0k\":\"Cảm ơn,\",\"k3IitN\":\"Vậy là xong\",\"KfmPRW\":\"Màu nền của trang. Khi sử dụng ảnh bìa, màu này được áp dụng dưới dạng lớp phủ.\",\"MDNyJz\":\"Mã sẽ hết hạn sau 10 phút. Kiểm tra thư mục spam nếu bạn không thấy email.\",\"AIF7J2\":\"Đơn vị tiền tệ mà phí cố định được xác định. Nó sẽ được chuyển đổi sang đơn vị tiền tệ của đơn hàng khi thanh toán.\",\"MJm4Tq\":\"Đơn vị tiền tệ của đơn hàng\",\"cDHM1d\":\"Địa chỉ email đã được thay đổi. Người tham dự sẽ nhận được vé mới tại địa chỉ email đã cập nhật.\",\"I/NNtI\":\"Địa điểm sự kiện\",\"tXadb0\":\"Sự kiện bạn đang tìm kiếm hiện không khả dụng. Nó có thể đã bị xóa, hết hạn hoặc URL không chính xác.\",\"5fPdZe\":\"Ngày đầu tiên mà lịch này sẽ được tạo từ đó.\",\"EBzPwC\":\"Địa chỉ đầy đủ của sự kiện\",\"sxKqBm\":\"Toàn bộ số tiền đơn hàng sẽ được hoàn lại phương thức thanh toán gốc của khách hàng.\",\"KgDp6G\":\"Liên kết bạn đang cố gắng truy cập đã hết hạn hoặc không còn hợp lệ. Vui lòng kiểm tra email của bạn để nhận liên kết cập nhật để quản lý đơn hàng của bạn.\",\"5OmEal\":\"Ngôn ngữ của khách hàng\",\"Np4eLs\":[\"Tối đa là \",[\"MAX_PREVIEW\"],\" buổi. Vui lòng giảm phạm vi ngày, tần suất hoặc số buổi mỗi ngày.\"],\"sYLeDq\":\"Không tìm thấy nhà tổ chức bạn đang tìm kiếm. Trang có thể đã bị chuyển, xóa hoặc URL không chính xác.\",\"PCr4zw\":\"Việc ghi đè được ghi lại trong nhật ký kiểm toán đơn hàng.\",\"C4nQe5\":\"Phí nền tảng được thêm vào giá vé. Người mua trả nhiều hơn, nhưng bạn nhận được giá vé đầy đủ.\",\"HxxXZO\":\"Màu thương hiệu chính được sử dụng cho nút và điểm nhấn\",\"z0KrIG\":\"Thời gian lên lịch là bắt buộc\",\"EWErQh\":\"Thời gian lên lịch phải ở trong tương lai\",\"UNd0OU\":[\"Buổi cho \\\"\",[\"title\"],\"\\\" ban đầu được lên lịch vào \",[\"0\"],\" đã được dời lịch.\"],\"DEcpfp\":\"Nội dung template chứa cú pháp Liquid không hợp lệ. Vui lòng sửa và thử lại.\",\"injXD7\":\"Không thể xác thực số VAT. Vui lòng kiểm tra số và thử lại.\",\"A4UmDy\":\"Sân khấu\",\"tDwYhx\":\"Chủ đề & Màu sắc\",\"O7g4eR\":\"Không có ngày sắp tới nào cho sự kiện này\",\"HrIl0p\":[\"Không có danh sách check-in dành riêng cho ngày này. Danh sách \\\"\",[\"0\"],\"\\\" check-in người tham dự trên tất cả các ngày — nhân viên quét vé cho ngày khác vẫn sẽ thành công.\"],\"dt3TwA\":\"Đây là giá và số lượng mặc định cho tất cả các ngày. Ngày bán theo tầng áp dụng toàn cục. Bạn có thể ghi đè giá và số lượng cho từng ngày trên <0>trang Lịch buổi.\",\"062KsE\":\"Các chi tiết này chỉ được hiển thị trên vé của người tham dự và tóm tắt đơn hàng cho ngày này.\",\"5Eu+tn\":\"Các chi tiết này chỉ được hiển thị nếu đơn hàng được hoàn tất thành công.\",\"jQjwR+\":\"Những thông tin này sẽ thay thế mọi địa điểm hiện có trên các buổi bị ảnh hưởng và hiển thị trên vé của người tham dự.\",\"QP3gP+\":\"Các cài đặt này chỉ áp dụng cho mã nhúng được sao chép và sẽ không được lưu trữ.\",\"HirZe8\":\"Các mẫu này sẽ được sử dụng làm mặc định cho tất cả sự kiện trong tổ chức của bạn. Các sự kiện riêng lẻ có thể ghi đè các mẫu này bằng phiên bản tùy chỉnh của riêng họ.\",\"lzAaG5\":\"Các mẫu này sẽ ghi đè mặc định của tổ chức chỉ cho sự kiện này. Nếu không có mẫu tùy chỉnh nào được thiết lập ở đây, mẫu của tổ chức sẽ được sử dụng thay thế.\",\"UlykKR\":\"Thứ ba\",\"wkP5FM\":\"Áp dụng cho mọi ngày phù hợp trong sự kiện, bao gồm cả những ngày hiện không hiển thị. Người tham dự đã đăng ký vào bất kỳ ngày nào trong số đó sẽ có thể được liên hệ qua trình soạn tin nhắn sau khi cập nhật hoàn tất.\",\"SOmGDa\":\"Danh sách check-in này thuộc một buổi đã bị hủy, do đó không thể được dùng cho check-in nữa.\",\"XBNC3E\":\"Mã này sẽ được dùng để theo dõi doanh số. Chỉ cho phép chữ cái, số, dấu gạch ngang và dấu gạch dưới.\",\"AaP0M+\":\"Kết hợp màu này có thể khó đọc đối với một số người dùng\",\"o1phK/\":[\"Ngày này có \",[\"orderCount\"],\" đơn hàng sẽ bị ảnh hưởng.\"],\"F/UtGt\":\"Ngày này đã bị hủy. Bạn vẫn có thể xóa để loại bỏ vĩnh viễn.\",\"BLZ7pX\":\"Ngày này đã qua. Sẽ được tạo nhưng sẽ không hiển thị cho người tham dự trong danh sách ngày sắp tới.\",\"7IIY0z\":\"Ngày này được đánh dấu là đã bán hết.\",\"bddWMP\":\"Ngày này không còn khả dụng. Vui lòng chọn ngày khác.\",\"RzEvf5\":\"Sự kiện này đã kết thúc\",\"YClrdK\":\"Sự kiện này chưa được xuất bản\",\"dFJnia\":\"Đây là tên nhà tổ chức sẽ hiển thị cho người dùng của bạn.\",\"vt7jiq\":\"Đây là lần duy nhất khóa bí mật ký được hiển thị. Vui lòng sao chép ngay và lưu trữ an toàn.\",\"L7dIM7\":\"Liên kết này không hợp lệ hoặc đã hết hạn.\",\"MR5ygV\":\"Liên kết này không còn hợp lệ\",\"9LEqK0\":\"Tên này hiển thị cho người dùng cuối\",\"QdUMM9\":\"Buổi này đã đạt sức chứa\",\"j5FdeA\":\"Đơn hàng này đang được xử lý.\",\"sjNPMw\":\"Đơn hàng này đã bị bỏ. Bạn có thể bắt đầu đơn hàng mới bất cứ lúc nào.\",\"OhCesD\":\"Đơn hàng này đã bị hủy. Bạn có thể bắt đầu đơn hàng mới bất cứ lúc nào.\",\"lyD7rQ\":\"Hồ sơ nhà tổ chức này chưa được xuất bản\",\"9b5956\":\"Xem trước này cho thấy email của bạn sẽ trông như thế nào với dữ liệu mẫu. Email thực tế sẽ sử dụng giá trị thực.\",\"uM9Alj\":\"Sản phẩm này được nổi bật trên trang sự kiện\",\"RqSKdX\":\"Sản phẩm này đã bán hết\",\"W12OdJ\":\"Báo cáo này chỉ dành cho mục đích thông tin. Luôn tham khảo ý kiến chuyên gia thuế trước khi sử dụng dữ liệu này cho mục đích kế toán hoặc thuế. Vui lòng kiểm tra chéo với bảng điều khiển Stripe của bạn vì Hi.Events có thể thiếu dữ liệu lịch sử.\",\"0Ew0uk\":\"Vé này vừa được quét. Vui lòng chờ trước khi quét lại.\",\"FYXq7k\":[\"Điều này sẽ ảnh hưởng đến \",[\"loadedAffectedCount\"],\" ngày.\"],\"kvpxIU\":\"Thông tin này sẽ được dùng để gửi thông báo và liên hệ với người dùng của bạn.\",\"rhsath\":\"Thông tin này sẽ không hiển thị với khách hàng, nhưng giúp bạn nhận diện đối tác.\",\"hV6FeJ\":\"Tốc độ\",\"+FjWgX\":\"Thứ 5\",\"kkDQ8m\":\"Thứ Năm\",\"0GSPnc\":\"Thiết kế vé\",\"EZC/Cu\":\"Thiết kế vé đã được lưu thành công\",\"bbslmb\":\"Thiết kế vé\",\"1BPctx\":\"Vé cho\",\"bgqf+K\":\"Email người giữ vé\",\"oR7zL3\":\"Tên người giữ vé\",\"HGuXjF\":\"Người sở hữu vé\",\"CMUt3Y\":\"Người giữ vé\",\"awHmAT\":\"ID vé\",\"6czJik\":\"Logo Vé\",\"OkRZ4Z\":\"Tên vé\",\"t79rDv\":\"Không tìm thấy vé\",\"6tmWch\":\"Vé hoặc sản phẩm\",\"1tfWrD\":\"Xem trước vé cho\",\"KnjoUA\":\"Giá vé\",\"tGCY6d\":\"Giá vé\",\"pGZOcL\":\"Vé đã được gửi lại thành công\",\"o02GZM\":\"Việc bán vé cho sự kiện này đã kết thúc\",\"8jLPgH\":\"Loại vé\",\"X26cQf\":\"URL vé\",\"8qsbZ5\":\"Bán vé\",\"zNECqg\":\"vé\",\"6GQNLE\":\"Vé\",\"NRhrIB\":\"Vé & Sản phẩm\",\"OrWHoZ\":\"Vé được tự động cung cấp cho khách hàng trong danh sách chờ khi có chỗ trống.\",\"EUnesn\":\"Vé còn sẵn\",\"AGRilS\":\"Vé Đã Bán\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Thời gian\",\"dMtLDE\":\"đến\",\"/jQctM\":\"Đến\",\"tiI71C\":\"Để tăng giới hạn của bạn, hãy liên hệ với chúng tôi tại\",\"ecUA8p\":\"Hôm nay\",\"W428WC\":\"Chuyển đổi cột\",\"BRMXj0\":\"Ngày mai\",\"UBSG1X\":\"Nhà tổ chức hàng đầu (14 ngày qua)\",\"3sZ0xx\":\"Tổng Tài Khoản\",\"EaAPbv\":\"Tổng số tiền đã trả\",\"SMDzqJ\":\"Tổng số người tham dự\",\"orBECM\":\"Tổng thu được\",\"k5CU8c\":\"Tổng số mục\",\"4B7oCp\":\"Tổng phí\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Tổng Người Dùng\",\"oJjplO\":\"Tổng lượt xem\",\"rBZ9pz\":\"Tham quan\",\"orluER\":\"Theo dõi sự phát triển và hiệu suất tài khoản theo nguồn phân bổ\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"Đúng nếu thanh toán ngoại tuyến\",\"9GsDR2\":\"Đúng nếu thanh toán đang chờ xử lý\",\"GUA0Jy\":\"Thử từ khoá hoặc bộ lọc khác\",\"2P/OWN\":\"Hãy thử điều chỉnh bộ lọc để xem thêm ngày.\",\"ouM5IM\":\"Thử email khác\",\"3DZvE7\":\"Dùng thử Hi.Events miễn phí\",\"7P/9OY\":\"T3\",\"vq2WxD\":\"Thứ 3\",\"G3myU+\":\"Thứ Ba\",\"Kz91g/\":\"Tiếng Thổ Nhĩ Kỳ\",\"GdOhw6\":\"Tắt âm thanh\",\"KUOhTy\":\"Bật âm thanh\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Nhập \\\"xóa\\\" để xác nhận\",\"XxecLm\":\"Loại vé\",\"IrVSu+\":\"Không thể nhân bản sản phẩm. Vui lòng kiểm tra thông tin của bạn\",\"Vx2J6x\":\"Không thể lấy thông tin người tham dự\",\"h0dx5e\":\"Không thể tham gia danh sách chờ\",\"DaE0Hg\":\"Không tải được thông tin khách.\",\"GlnD5Y\":\"Không thể tải sản phẩm cho ngày này. Vui lòng thử lại.\",\"17VbmV\":\"Không thể hoàn tác check-in\",\"n57zCW\":\"Tài khoản chưa phân bổ\",\"9uI/rE\":\"Hoàn tác\",\"b9SN9q\":\"Mã tham chiếu đơn hàng duy nhất\",\"Ef7StM\":\"Không rõ\",\"ZBAScj\":\"Người tham dự không xác định\",\"MEIAzV\":\"Không có tên\",\"K6L5Mx\":\"Địa điểm không tên\",\"X13xGn\":\"Không đáng tin cậy\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Cập nhật đối tác\",\"59qHrb\":\"Cập nhật sức chứa\",\"Gaem9v\":\"Cập nhật tên và mô tả sự kiện\",\"7EhE4k\":\"Cập nhật nhãn\",\"NPQWj8\":\"Cập nhật địa điểm\",\"75+lpR\":[\"Cập nhật: \",[\"subjectTitle\"],\" — thay đổi lịch trình\"],\"UOGHdA\":[\"Cập nhật: \",[\"subjectTitle\"],\" — đã thay đổi thời gian buổi\"],\"ogoTrw\":[\"Đã cập nhật \",[\"count\"],\" ngày\"],\"dDuona\":[\"Đã cập nhật sức chứa cho \",[\"count\"],\" ngày\"],\"FT3LSc\":[\"Đã cập nhật nhãn cho \",[\"count\"],\" ngày\"],\"8EcY1g\":[\"Đã cập nhật địa điểm cho \",[\"count\"],\" buổi\"],\"gJQsLv\":\"Tải lên ảnh bìa cho nhà tổ chức của bạn\",\"4kEGqW\":\"Tải lên logo cho nhà tổ chức của bạn\",\"lnCMdg\":\"Tải ảnh lên\",\"29w7p6\":\"Đang tải ảnh...\",\"HtrFfw\":\"URL là bắt buộc\",\"vzWC39\":\"USB\",\"td5pxI\":\"Máy quét USB đang hoạt động\",\"dyTklH\":\"Máy quét USB tạm dừng\",\"OHJXlK\":\"Sử dụng <0>mẫu Liquid để cá nhân hóa email của bạn\",\"g0WJMu\":\"Dùng danh sách cho tất cả các ngày\",\"0k4cdb\":\"Sử dụng thông tin đơn hàng cho tất cả người tham dự. Tên và email của người tham dự sẽ khớp với thông tin người mua.\",\"MKK5oI\":\"Dùng danh sách cho tất cả các ngày, hay tạo danh sách cho ngày này?\",\"bA31T4\":\"Sử dụng thông tin người mua cho tất cả người tham dự\",\"rnoQsz\":\"Được sử dụng cho viền, vùng tô sáng và kiểu mã QR\",\"BV4L/Q\":\"Phân tích UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Đang xác thực số VAT của bạn...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"Mã số VAT\",\"pnVh83\":\"Số VAT\",\"CabI04\":\"Số VAT không được chứa khoảng trắng\",\"PMhxAR\":\"Số VAT phải bắt đầu bằng mã quốc gia 2 chữ cái theo sau là 8-15 ký tự chữ và số (ví dụ: DE123456789)\",\"gPgdNV\":\"Số VAT đã được xác thực thành công\",\"RUMiLy\":\"Xác thực số VAT không thành công\",\"vqji3Y\":\"Xác thực số VAT không thành công. Vui lòng kiểm tra số VAT của bạn.\",\"8dENF9\":\"VAT trên phí\",\"ZutOKU\":\"Thuế suất VAT\",\"+KJZt3\":\"Đã đăng ký VAT\",\"Nfbg76\":\"Cài đặt VAT đã được lưu thành công\",\"UvYql/\":\"Cài đặt VAT đã được lưu. Chúng tôi đang xác thực số VAT của bạn ở chế độ nền.\",\"bXn1Jz\":\"Đã cập nhật cài đặt VAT\",\"tJylUv\":\"Xử lý VAT cho phí nền tảng\",\"FlGprQ\":\"Xử lý VAT cho phí nền tảng: Doanh nghiệp có đăng ký VAT ở EU có thể sử dụng cơ chế đảo ngược (0% - Điều 196 của Chỉ thị VAT 2006/112/EC). Doanh nghiệp không đăng ký VAT sẽ bị tính VAT của Ireland ở mức 23%.\",\"516oLj\":\"Dịch vụ xác thực VAT tạm thời không khả dụng\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: chưa đăng ký\",\"AdWhjZ\":\"Mã xác thực\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Đã xác minh\",\"wCKkSr\":\"Xác thực email\",\"/IBv6X\":\"Xác minh email của bạn\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Đang xác thực...\",\"fROFIL\":\"Tiếng Việt\",\"p5nYkr\":\"Xem tất cả\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"Xem tất cả khả năng\",\"RnvnDc\":\"Xem tất cả tin nhắn được gửi trên nền tảng\",\"+WFMis\":\"Xem và tải xuống báo cáo cho tất cả sự kiện của bạn. Chỉ bao gồm đơn hàng đã hoàn thành.\",\"c7VN/A\":\"Xem câu trả lời\",\"SZw9tS\":\"Xem chi tiết\",\"9+84uW\":[\"Xem chi tiết của \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Xem sự kiện\",\"c6SXHN\":\"Xem trang sự kiện\",\"n6EaWL\":\"Xem nhật ký\",\"OaKTzt\":\"Xem bản đồ\",\"zNZNMs\":\"Xem tin nhắn\",\"67OJ7t\":\"Xem đơn hàng\",\"tKKZn0\":\"Xem chi tiết đơn hàng\",\"KeCXJu\":\"Xem chi tiết đơn hàng, hoàn tiền và gửi lại xác nhận.\",\"9jnAcN\":\"Xem trang chủ nhà tổ chức\",\"1J/AWD\":\"Xem vé\",\"N9FyyW\":\"Xem, chỉnh sửa và xuất danh sách người tham dự đã đăng ký.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Đang chờ\",\"quR8Qp\":\"Đang chờ thanh toán\",\"KrurBH\":\"Đang chờ quét…\",\"u0n+wz\":\"Danh sách chờ\",\"3RXFtE\":\"Đã bật danh sách chờ\",\"TwnTPy\":\"Đề nghị danh sách chờ đã hết hạn\",\"NzIvKm\":\"Đã kích hoạt danh sách chờ\",\"aUi/Dz\":\"Cảnh báo: Đây là cấu hình mặc định của hệ thống. Thay đổi sẽ ảnh hưởng đến tất cả các tài khoản không được chỉ định cấu hình cụ thể.\",\"qeygIa\":\"T4\",\"aT/44s\":\"Chúng tôi không thể sao chép kết nối Stripe đó. Vui lòng thử lại.\",\"RRZDED\":\"Chúng tôi không tìm thấy đơn hàng nào liên kết với địa chỉ email này.\",\"2RZK9x\":\"Chúng tôi không thể tìm thấy đơn hàng bạn đang tìm kiếm. Liên kết có thể đã hết hạn hoặc chi tiết đơn hàng có thể đã thay đổi.\",\"nefMIK\":\"Chúng tôi không thể tìm thấy vé bạn đang tìm kiếm. Liên kết có thể đã hết hạn hoặc chi tiết vé có thể đã thay đổi.\",\"miysJh\":\"Chúng tôi không thể tìm thấy đơn hàng này. Nó có thể đã bị xóa.\",\"ADsQ23\":\"Hiện không thể kết nối tới Stripe. Vui lòng thử lại sau giây lát.\",\"HJKdzP\":\"Đã xảy ra sự cố khi tải trang này. Vui lòng thử lại.\",\"jegrvW\":\"Chúng tôi hợp tác với Stripe để chuyển tiền trực tiếp vào tài khoản ngân hàng của bạn.\",\"IfN2Qo\":\"Chúng tôi khuyến nghị logo hình vuông với kích thước tối thiểu 200x200px\",\"wJzo/w\":\"Chúng tôi khuyến nghị kích thước 400px x 400px và dung lượng tối đa 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Chúng tôi sử dụng cookie để giúp hiểu cách trang web được sử dụng và cải thiện trải nghiệm của bạn.\",\"x8rEDQ\":\"Chúng tôi không thể xác thực số VAT của bạn sau nhiều lần thử. Chúng tôi sẽ tiếp tục thử ở chế độ nền. Vui lòng kiểm tra lại sau.\",\"iy+M+c\":[\"Chúng tôi sẽ thông báo cho bạn qua email nếu có chỗ trống cho \",[\"productDisplayName\"],\".\"],\"McuGND\":\"Chúng tôi sẽ mở trình soạn tin nhắn với một mẫu được điền sẵn sau khi lưu. Bạn xem lại và gửi — không có gì được gửi tự động.\",\"q1BizZ\":\"Chúng tôi sẽ gửi vé đến email này\",\"ZOmUYW\":\"Chúng tôi sẽ xác thực số VAT của bạn ở chế độ nền. Nếu có bất kỳ vấn đề nào, chúng tôi sẽ thông báo cho bạn.\",\"LKjHr4\":[\"Chúng tôi đã thực hiện thay đổi đối với lịch trình của \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" ảnh hưởng đến \",[\"affectedCount\"],\" buổi.\"],\"Fq/Nx7\":\"Chúng tôi đã gửi mã xác thực 5 chữ số đến:\",\"GdWB+V\":\"Webhook tạo thành công\",\"2X4ecw\":\"Webhook đã xóa thành công\",\"ndBv0v\":\"Tích hợp webhook\",\"CThMKa\":\"Nhật ký webhook\",\"I0adYQ\":\"Khóa bí mật ký Webhook\",\"nuh/Wq\":\"URL Webhook\",\"8BMPMe\":\"Webhook sẽ không gửi thông báo\",\"FSaY52\":\"Webhook sẽ gửi thông báo\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Trang web\",\"0f7U0k\":\"Thứ 4\",\"VAcXNz\":\"Thứ Tư\",\"64X6l4\":\"tuần\",\"4XSc4l\":\"Hàng tuần\",\"IAUiSh\":\"tuần\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Chào mừng trở lại\",\"QDWsl9\":[\"Chào mừng đến với \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Chào mừng đến với \",[\"0\"],\", đây là danh sách tất cả sự kiện của bạn\"],\"DDbx7K\":\"Sức khỏe\",\"ywRaYa\":\"Mấy giờ?\",\"FaSXqR\":\"Loại sự kiện nào?\",\"0WyYF4\":\"Những gì nhân viên chưa đăng nhập có thể xem\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Khi một lượt check-in bị xóa\",\"RPe6bE\":\"Khi một ngày bị hủy trong sự kiện định kỳ\",\"Gmd0hv\":\"Khi một người tham dự mới được tạo ra\",\"zyIyPe\":\"Khi một sự kiện mới được tạo\",\"Lc18qn\":\"Khi một đơn hàng mới được tạo\",\"dfkQIO\":\"Khi một sản phẩm mới được tạo ra\",\"8OhzyY\":\"Khi một sản phẩm bị xóa\",\"tRXdQ9\":\"Khi một sản phẩm được cập nhật\",\"9L9/28\":\"Khi một sản phẩm bán hết, khách hàng có thể tham gia danh sách chờ để được thông báo khi có chỗ trống.\",\"Q7CWxp\":\"Khi một người tham dự bị hủy\",\"IuUoyV\":\"Khi một người tham dự được check-in\",\"nBVOd7\":\"Khi một người tham dự được cập nhật\",\"t7cuMp\":\"Khi một sự kiện được lưu trữ\",\"gtoSzE\":\"Khi một sự kiện được cập nhật\",\"ny2r8d\":\"Khi một đơn hàng bị hủy\",\"c9RYbv\":\"Khi một đơn hàng được đánh dấu là đã thanh toán\",\"ejMDw1\":\"Khi một đơn hàng được hoàn trả\",\"fVPt0F\":\"Khi một đơn hàng được cập nhật\",\"bcYlvb\":\"Khi check-in đóng\",\"XIG669\":\"Khi check-in mở\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"Khi được bật, các sự kiện mới sẽ cho phép người tham dự quản lý thông tin vé của riêng họ qua liên kết bảo mật. Điều này có thể được ghi đè cho từng sự kiện.\",\"blXLKj\":\"Khi được bật, các sự kiện mới sẽ hiển thị hộp kiểm đăng ký tiếp thị trong quá trình thanh toán. Điều này có thể được ghi đè cho từng sự kiện.\",\"Kj0Txn\":\"Khi được bật, không có phí ứng dụng nào sẽ được tính cho các giao dịch Stripe Connect. Sử dụng cho các quốc gia không hỗ trợ phí ứng dụng.\",\"tMqezN\":\"Việc hoàn tiền có đang được xử lý hay không\",\"uchB0M\":\"Xem trước widget\",\"uvIqcj\":\"Hội thảo\",\"EpknJA\":\"Viết tin nhắn của bạn tại đây...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"năm\",\"zkWmBh\":\"Hàng năm\",\"+BGee5\":\"năm\",\"X/azM1\":\"Có - Tôi có số đăng ký VAT EU hợp lệ\",\"Tz5oXG\":\"Có, hủy đơn hàng của tôi\",\"QlSZU0\":[\"Bạn đang mạo danh <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Bạn đang thực hiện hoàn tiền một phần. Khách hàng sẽ được hoàn lại \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Bạn có thể cấu hình phí dịch vụ và thuế bổ sung trong cài đặt tài khoản của mình.\",\"rj3A7+\":\"Bạn có thể ghi đè điều này cho từng ngày sau.\",\"paWwQ0\":\"Bạn vẫn có thể cung cấp vé thủ công nếu cần.\",\"jTDzpA\":\"Bạn không thể lưu trữ ban tổ chức đang hoạt động cuối cùng trong tài khoản của mình.\",\"5VGIlq\":\"Bạn đã đạt đến giới hạn nhắn tin.\",\"casL1O\":\"Bạn có thuế và phí được thêm vào một sản phẩm miễn phí. Bạn có muốn bỏ chúng?\",\"9jJNZY\":\"Bạn phải xác nhận trách nhiệm của mình trước khi lưu\",\"pCLes8\":\"Bạn phải đồng ý nhận tin nhắn\",\"FVTVBy\":\"Bạn phải xác minh địa chỉ email trước khi cập nhật trạng thái nhà tổ chức.\",\"ze4bi/\":\"Bạn cần tạo ít nhất một buổi trước khi có thể thêm người tham dự vào sự kiện định kỳ này.\",\"w65ZgF\":\"Bạn cần xác minh email tài khoản trước khi có thể chỉnh sửa mẫu email.\",\"FRl8Jv\":\"Bạn cần xác minh email tài khoản trước khi có thể gửi tin nhắn.\",\"88cUW+\":\"Bạn nhận được\",\"O6/3cu\":\"Bạn sẽ có thể thiết lập ngày, lịch trình và quy tắc lặp lại ở bước tiếp theo.\",\"zKAheG\":\"Bạn đang thay đổi thời gian buổi\",\"MNFIxz\":[\"Bạn sẽ tham gia \",[\"0\"],\"!\"],\"qGZz0m\":\"Bạn đã được thêm vào danh sách chờ!\",\"/5HL6k\":\"Bạn đã được mời một suất!\",\"gbjFFH\":\"Bạn đã thay đổi thời gian buổi\",\"p/Sa0j\":\"Tài khoản của bạn có giới hạn nhắn tin. Để tăng giới hạn của bạn, hãy liên hệ với chúng tôi tại\",\"x/xjzn\":\"Danh sách đối tác của bạn đã được xuất thành công.\",\"TF37u6\":\"Những người tham dự của bạn đã được xuất thành công.\",\"79lXGw\":\"Danh sách check-in của bạn đã được tạo thành công. Chia sẻ liên kết bên dưới với nhân viên check-in của bạn.\",\"BnlG9U\":\"Đơn hàng hiện tại của bạn sẽ bị mất.\",\"nBqgQb\":\"Email của bạn\",\"GG1fRP\":\"Sự kiện của bạn đã hoạt động!\",\"ifRqmm\":\"Tin nhắn của bạn đã được gửi thành công!\",\"0/+Nn9\":\"Tin nhắn của bạn sẽ xuất hiện ở đây\",\"/Rj5P4\":\"Tên của bạn\",\"PFjJxY\":\"Mật khẩu mới của bạn phải dài ít nhất 8 ký tự.\",\"gzrCuN\":\"Chi tiết đơn hàng của bạn đã được cập nhật. Email xác nhận đã được gửi đến địa chỉ email mới.\",\"naQW82\":\"Đơn hàng của bạn đã bị hủy.\",\"bhlHm/\":\"Đơn hàng của bạn đang chờ thanh toán\",\"XeNum6\":\"Đơn hàng của bạn đã được xuất thành công.\",\"Xd1R1a\":\"Địa chỉ nhà tổ chức của bạn\",\"WWYHKD\":\"Thanh toán của bạn được bảo vệ bằng mã hóa cấp ngân hàng\",\"5b3QLi\":\"Gói của bạn\",\"N4Zkqc\":\"Bộ lọc ngày đã lưu của bạn không còn khả dụng — đang hiển thị tất cả các ngày.\",\"FNO5uZ\":\"Vé của bạn vẫn còn hiệu lực — không cần làm gì trừ khi thời gian mới không phù hợp với bạn. Vui lòng trả lời email này nếu bạn có thắc mắc.\",\"CnZ3Ou\":\"Vé của bạn đã được xác nhận.\",\"EmFsMZ\":\"Số VAT của bạn đang trong hàng đợi để xác thực\",\"QBlhh4\":\"Số VAT của bạn sẽ được xác thực khi bạn lưu\",\"fT9VLt\":\"Đề nghị danh sách chờ của bạn đã hết hạn và chúng tôi không thể hoàn tất đơn hàng của bạn. Vui lòng tham gia lại danh sách chờ để được thông báo khi có thêm chỗ trống.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/vi.po b/frontend/src/locales/vi.po index e79ca1bf0f..f48cb82bfd 100644 --- a/frontend/src/locales/vi.po +++ b/frontend/src/locales/vi.po @@ -60,7 +60,7 @@ msgstr "{0} <0>checked out thành công" msgid "{0} Active Webhooks" msgstr "{0} Webhook đang hoạt động" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0} Có sẵn" @@ -78,7 +78,7 @@ msgstr "Còn {0}" msgid "{0} logo" msgstr "Logo {0}" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "Đã có {0} trong số {1} chỗ được đặt." @@ -90,7 +90,7 @@ msgstr "{0} nhà tổ chức" msgid "{0} spots left" msgstr "Còn {0} chỗ" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0} vé" @@ -114,7 +114,7 @@ msgstr "Logo {appName}" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} người tham dự đã đăng ký cho buổi này." -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} trong số {totalCount} có sẵn" @@ -122,7 +122,7 @@ msgstr "{availableCount} trong số {totalCount} có sẵn" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} đã check-in" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{EventCount} Sự kiện" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{giờ} giờ, {phút} phút và {giây} giây" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "{loadedAffectedAttendees} người tham dự đã đăng ký trên các buổi bị ảnh hưởng." @@ -163,11 +163,11 @@ msgstr "{phút} phút và {giây} giây" msgid "{organizerName}'s first event" msgstr "Sự kiện đầu tiên của {organizerName}" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} loại vé" @@ -230,7 +230,7 @@ msgstr "0 phút và 0 giây" msgid "1 Active Webhook" msgstr "1 Webhook đang hoạt động" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "1 người tham dự đã đăng ký trên các buổi bị ảnh hưởng." @@ -238,35 +238,35 @@ msgstr "1 người tham dự đã đăng ký trên các buổi bị ảnh hưở msgid "1 attendee is registered for this session." msgstr "1 người tham dự đã đăng ký cho buổi này." -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "1 ngày sau ngày kết thúc" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "1 ngày sau ngày bắt đầu" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "1 ngày trước sự kiện" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "1 giờ trước sự kiện" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1 vé" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 loại vé" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "1 tuần trước sự kiện" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "Thông báo hủy đã được gửi đến" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "thay đổi thời lượng" @@ -321,7 +321,7 @@ msgstr "Đầu vào thả xuống chỉ cho phép một lựa chọn" msgid "A fee, like a booking fee or a service fee" msgstr "Một khoản phí, như phí đặt phòng hoặc phí dịch vụ" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "Mã khuyến mãi không có giảm giá có thể được sử dụng msgid "A Radio option has multiple options but only one can be selected." msgstr "Tùy chọn radio có nhiều tùy chọn nhưng chỉ có thể chọn một tùy chọn." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "dịch chuyển thời gian bắt đầu/kết thúc" @@ -465,7 +465,7 @@ msgstr "Tài khoản được cập nhật thành công" msgid "Accounts" msgstr "Tài Khoản" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "Cần hành động: Cần thông tin VAT" @@ -493,10 +493,10 @@ msgstr "Ngày kích hoạt" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "Phương thức thanh toán đang hoạt động" msgid "Activity" msgstr "Hoạt động" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "Thêm một ngày" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "Thêm bất kỳ ghi chú nào về đơn hàng ..." msgid "Add at least one time" msgstr "Thêm ít nhất một thời gian" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "Thêm thông tin kết nối cho sự kiện trực tuyến." @@ -572,15 +576,19 @@ msgstr "Thêm ngày" msgid "Add Dates" msgstr "Thêm các ngày" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "Thêm mô tả" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "Thêm câu hỏi" msgid "Add Tax or Fee" msgstr "Thêm thuế hoặc phí" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "Vẫn thêm người tham dự này (ghi đè sức chứa)" @@ -634,8 +642,8 @@ msgstr "Vẫn thêm người tham dự này (ghi đè sức chứa)" msgid "Add this event to your calendar" msgstr "Thêm sự kiện này vào lịch của bạn" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "Thêm vé" @@ -649,7 +657,7 @@ msgstr "Thêm tầng" msgid "Add to Calendar" msgstr "Thêm vào lịch" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "Thêm pixel theo dõi vào các trang sự kiện công khai và trang chủ nhà tổ chức của bạn. Một thanh đồng ý cookie sẽ được hiển thị cho khách truy cập khi tính năng theo dõi đang hoạt động." @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "Dòng địa chỉ 1" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "Dòng địa chỉ 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "Dòng địa chỉ 2" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "Dòng địa chỉ 2" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "Quản trị viên" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "Yêu cầu quyền truy cập quản trị viên" @@ -725,7 +733,7 @@ msgstr "Yêu cầu quyền truy cập quản trị viên" msgid "Admin Dashboard" msgstr "Bảng Điều Khiển Quản Trị" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "Người dùng quản trị có quyền truy cập đầy đủ vào các sự kiện và cài đặt tài khoản." @@ -776,7 +784,7 @@ msgstr "Đã xuất danh sách đối tác" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "Đối tác liên kết giúp bạn theo dõi doanh số từ các đối tác và người ảnh hưởng. Tạo mã đối tác và chia sẻ để theo dõi hiệu suất." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "tất cả" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "Tất cả sự kiện đã lưu trữ" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "Tất cả người tham dự" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "Tất cả người tham dự của các buổi đã chọn" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "Tất cả những người tham dự sự kiện này" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "Tất cả người tham dự của buổi này" @@ -838,12 +846,12 @@ msgstr "Đã xóa tất cả công việc thất bại" msgid "All jobs queued for retry" msgstr "Tất cả công việc đã được xếp hàng để thử lại" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "Tất cả ngày phù hợp" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "Tất cả các buổi" @@ -897,7 +905,7 @@ msgstr "Đã có tài khoản? <0>{0}" msgid "Already in" msgstr "Đã vào" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "Đã hoàn tiền" @@ -905,11 +913,11 @@ msgstr "Đã hoàn tiền" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "Đã dùng Stripe trên một nhà tổ chức khác? Tái sử dụng kết nối đó." -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "Cũng hủy đơn hàng này" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "Cũng hoàn tiền đơn hàng này" @@ -932,7 +940,7 @@ msgstr "Số tiền" msgid "Amount Paid" msgstr "Số tiền đã thanh toán" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "Số tiền đã trả ({0})" @@ -952,7 +960,7 @@ msgstr "Đã xảy ra lỗi trong khi tải trang" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "Thông báo tùy chọn để hiển thị trên sản phẩm nổi bật, ví dụ: \"Bán nhanh 🔥\" hoặc \"Giá trị tốt nhất\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "Đã xảy ra lỗi không mong muốn." @@ -988,7 +996,7 @@ msgstr "Mọi thắc mắc từ chủ sở hữu sản phẩm sẽ được gử msgid "Appearance" msgstr "Giao diện" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "đã được áp dụng" @@ -996,7 +1004,7 @@ msgstr "đã được áp dụng" msgid "Applies to {0} products" msgstr "Áp dụng cho các sản phẩm {0}" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "Áp dụng cho {0} ngày chưa hủy hiện đang được tải trên trang này." @@ -1008,7 +1016,7 @@ msgstr "Áp dụng cho 1 sản phẩm" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "Áp dụng cho người mở liên kết khi chưa đăng nhập. Thành viên đã đăng nhập luôn thấy mọi thứ." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "Áp dụng cho mỗi ngày chưa hủy trong sự kiện này {0} — bao gồm cả những ngày chưa được tải." @@ -1016,11 +1024,11 @@ msgstr "Áp dụng cho mỗi ngày chưa hủy trong sự kiện này {0} — ba msgid "Apply" msgstr "Áp dụng" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "Áp dụng thay đổi" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "Áp dụng mã khuyến mãi" @@ -1028,7 +1036,7 @@ msgstr "Áp dụng mã khuyến mãi" msgid "Apply this {type} to all new products" msgstr "Áp dụng {type} này cho tất cả các sản phẩm mới" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "Áp dụng cho" @@ -1044,36 +1052,35 @@ msgstr "Phê duyệt tin nhắn" msgid "April" msgstr "Tháng 4" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "Lưu trữ" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "Lưu trữ sự kiện" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "Lưu trữ sự kiện" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "Lưu trữ ban tổ chức" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "Lưu trữ sự kiện này để ẩn khỏi công chúng. Bạn có thể khôi phục nó sau." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "Lưu trữ ban tổ chức này. Điều này cũng sẽ lưu trữ tất cả các sự kiện thuộc ban tổ chức này." -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "Lưu trữ" @@ -1085,15 +1092,15 @@ msgstr "Ban tổ chức đã lưu trữ" msgid "Are you sure you want to activate this attendee?" msgstr "Bạn có chắc mình muốn kích hoạt người tham dự này không?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "Bạn có chắc mình muốn lưu trữ sự kiện này không?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "Bạn có chắc chắn muốn lưu trữ sự kiện này không? Nó sẽ không còn hiển thị với công chúng nữa." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Bạn có chắc chắn muốn lưu trữ ban tổ chức này không? Điều này cũng sẽ lưu trữ tất cả các sự kiện thuộc ban tổ chức này." @@ -1123,7 +1130,7 @@ msgstr "Bạn có chắc chắn muốn xóa tất cả các công việc thất msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "Bạn có chắc chắn muốn xóa đối tác này? Hành động này không thể hoàn tác." -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "Bạn có chắc chắn muốn xóa cấu hình này không? Điều này có thể ảnh hưởng đến các tài khoản đang sử dụng nó." @@ -1137,11 +1144,11 @@ msgstr "Bạn có chắc chắn muốn xóa ngày này không? Hành động nà msgid "Are you sure you want to delete this promo code?" msgstr "Bạn có chắc là bạn muốn xóa mã khuyến mãi này không?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "Bạn có chắc chắn muốn xóa mẫu này không? Hành động này không thể hoàn tác và email sẽ quay về mẫu mặc định." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "Bạn có chắc chắn muốn xóa mẫu này không? Hành động này không thể hoàn tác và email sẽ quay về mẫu của tổ chức hoặc mẫu mặc định." @@ -1150,17 +1157,17 @@ msgstr "Bạn có chắc chắn muốn xóa mẫu này không? Hành động nà msgid "Are you sure you want to delete this webhook?" msgstr "Bạn có chắc là bạn muốn xóa webhook này không?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "Bạn có chắc chắn muốn rời đi?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "Bạn có chắc chắn muốn chuyển sự kiện này thành bản nháp không? Điều này sẽ làm cho sự kiện không hiển thị với công chúng." #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "Bạn có chắc mình muốn công khai sự kiện này không? " @@ -1200,15 +1207,15 @@ msgstr "Bạn có chắc chắn muốn gửi lại xác nhận đơn hàng đế msgid "Are you sure you want to resend the ticket to {0}?" msgstr "Bạn có chắc chắn muốn gửi lại vé đến {0}?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "Bạn có chắc chắn muốn khôi phục sự kiện này không?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "Bạn có chắc chắn muốn khôi phục sự kiện này không? Sự kiện sẽ được khôi phục dưới dạng bản nháp." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "Bạn có chắc chắn muốn khôi phục ban tổ chức này không?" @@ -1229,7 +1236,7 @@ msgstr "Bạn có chắc chắn muốn xóa phân bổ sức chứa này không? msgid "Are you sure you would like to delete this Check-In List?" msgstr "Bạn có chắc là bạn muốn xóa danh sách tham dự này không?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "Bạn có đăng ký VAT tại EU không?" @@ -1237,7 +1244,7 @@ msgstr "Bạn có đăng ký VAT tại EU không?" msgid "Art" msgstr "Nghệ thuật" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "Vì doanh nghiệp của bạn có trụ sở tại Ireland, VAT Ireland 23% sẽ được áp dụng tự động cho tất cả phí nền tảng." @@ -1270,7 +1277,7 @@ msgstr "Cấp độ được gán" msgid "At least one event type must be selected" msgstr "Ít nhất một loại sự kiện phải được chọn" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "Lần thử" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "Tỷ lệ tham dự và check-in cho tất cả sự kiện" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "người tham dự" @@ -1287,7 +1293,7 @@ msgstr "người tham dự" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "Người tham dự" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "Trạng Thái Người Tham Dự" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "Vé tham dự" @@ -1364,13 +1370,13 @@ msgstr "Vé của người tham dự không có trong danh sách này" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "người tham dự" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "người tham dự" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "Người tham dự" @@ -1393,16 +1399,16 @@ msgstr "khách đã check-in" msgid "Attendees Exported" msgstr "Danh sách người tham dự đã được xuất" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "Người tham dự đã đăng ký" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "Người tham dự đã đăng ký" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "Người tham dự có vé cụ thể" @@ -1454,7 +1460,7 @@ msgstr "Tự động thay đổi chiều cao widget dựa trên nội dung. Khi msgid "Available" msgstr "Còn chỗ" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "Có thể hoàn tiền" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "Chờ" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "Đang chờ thanh toán offline" @@ -1482,7 +1488,7 @@ msgstr "Chờ thanh toán" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "Đang chờ thanh toán" @@ -1513,14 +1519,14 @@ msgstr "Quay lại tài khoản" msgid "Back to calendar" msgstr "Quay lại lịch" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "Quay lại sự kiện" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "Trở lại trang sự kiện" @@ -1548,7 +1554,7 @@ msgstr "Màu nền" msgid "Background Type" msgstr "Loại nền" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "Dựa trên thời gian bán hàng chung ở trên, không theo từng n msgid "Basic Information" msgstr "Thông tin cơ bản" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "Địa chỉ thanh toán" @@ -1599,11 +1605,11 @@ msgstr "Tích hợp bảo vệ chống gian lận" msgid "Bulk Edit" msgstr "Chỉnh sửa hàng loạt" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "Chỉnh sửa hàng loạt các ngày" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "Cập nhật hàng loạt thất bại." @@ -1635,11 +1641,11 @@ msgstr "Người mua trả" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "Người mua thấy giá rõ ràng. Phí nền tảng được khấu trừ từ khoản thanh toán của bạn." -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "Bằng cách thêm pixel theo dõi, bạn xác nhận rằng bạn và nền tảng này là đồng kiểm soát dữ liệu được thu thập. Bạn chịu trách nhiệm đảm bảo có cơ sở pháp lý để xử lý dữ liệu theo các luật về quyền riêng tư hiện hành (GDPR, CCPA, v.v.)." -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Bằng cách tiếp tục, bạn đồng ý với <0>Điều khoản dịch vụ của {0}" @@ -1660,7 +1666,7 @@ msgstr "Bằng cách đăng ký, bạn đồng ý với các <0>Điều khoản msgid "By ticket type" msgstr "Theo loại vé" -#: src/components/routes/admin/Configurations/index.tsx:258 +#: src/components/routes/admin/Configurations/index.tsx:259 msgid "Bypass Application Fees" msgstr "Bỏ qua phí ứng dụng" @@ -1703,23 +1709,23 @@ msgid "Can't check in" msgstr "Không thể check-in" #: src/components/common/AttendeeTable/index.tsx:390 -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:59 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:57 #: src/components/common/ContactOrganizerModal/index.tsx:104 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 #: src/components/common/PromoCodeTable/index.tsx:40 #: src/components/common/QuestionAndAnswerList/index.tsx:149 #: src/components/common/WaitlistTable/index.tsx:114 #: src/components/common/WaitlistTable/index.tsx:135 #: src/components/routes/event/messages.tsx:80 #: src/components/routes/event/OccurrencesTab/index.tsx:508 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 #: src/components/routes/organizer/Locations/index.tsx:40 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:85 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:85 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:83 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:83 #: src/utilites/confirmationDialog.tsx:17 msgid "Cancel" msgstr "Hủy" @@ -1729,7 +1735,7 @@ msgstr "Hủy" msgid "Cancel {count} date(s)" msgstr "Hủy {count} ngày" -#: src/components/modals/RefundOrderModal/index.tsx:132 +#: src/components/modals/RefundOrderModal/index.tsx:133 msgid "Cancel all products and release them back to the pool" msgstr "Hủy tất cả sản phẩm và trả lại pool có sẵn" @@ -1743,7 +1749,7 @@ msgstr "Hủy tất cả sản phẩm và trả lại pool có sẵn" msgid "Cancel Date" msgstr "Hủy ngày" -#: src/components/routes/profile/ManageProfile/index.tsx:136 +#: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Cancel email change" msgstr "Hủy thay đổi email" @@ -1751,7 +1757,7 @@ msgstr "Hủy thay đổi email" msgid "Cancel order" msgstr "Hủy đơn hàng" -#: src/components/modals/CancelOrderModal/index.tsx:83 +#: src/components/modals/CancelOrderModal/index.tsx:82 msgid "Cancel Order" msgstr "Hủy đơn hàng" @@ -1759,7 +1765,7 @@ msgstr "Hủy đơn hàng" msgid "Cancel Order {0}" msgstr "Hủy đơn hàng {0}" -#: src/components/modals/CancelOrderModal/index.tsx:67 +#: src/components/modals/CancelOrderModal/index.tsx:66 msgid "Canceling will cancel all attendees associated with this order, and release the tickets back into the available pool." msgstr "Hủy sẽ hủy tất cả người tham dự liên quan đến đơn hàng này và trả vé về pool có sẵn." @@ -1781,7 +1787,7 @@ msgstr "Hủy bỏ" #: src/components/routes/event/orders.tsx:27 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:21 #: src/components/routes/event/SoldOutWaitlist/index.tsx:120 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:438 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:425 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:368 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:99 msgid "Cancelled" @@ -1791,7 +1797,7 @@ msgstr "Hủy bỏ" msgid "Cancelled {0} date(s)" msgstr "Đã hủy {0} ngày" -#: src/components/routes/admin/Configurations/index.tsx:35 +#: src/components/routes/admin/Configurations/index.tsx:36 msgid "Cannot delete the system default configuration" msgstr "Không thể xóa cấu hình mặc định của hệ thống" @@ -1825,7 +1831,7 @@ msgstr "Quản lý sức chứa" msgid "Capacity must be 0 or greater" msgstr "Sức chứa phải bằng 0 hoặc lớn hơn" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 msgid "capacity updates" msgstr "cập nhật sức chứa" @@ -1833,7 +1839,7 @@ msgstr "cập nhật sức chứa" msgid "Capacity Used" msgstr "Sức chứa đã dùng" -#: src/components/modals/CreateProductCategoryModal/index.tsx:56 +#: src/components/modals/CreateProductCategoryModal/index.tsx:52 msgid "Categories allow you to group products together. For example, you might have a category for \"Tickets\" and another for \"Merchandise\"." msgstr "Danh mục giúp bạn nhóm các sản phẩm lại với nhau. Ví dụ, bạn có thể có một danh mục cho \"Vé\" và một danh mục khác cho \"Hàng hóa\"." @@ -1854,19 +1860,19 @@ msgstr "Danh mục" msgid "Category Created Successfully" msgstr "Danh mục được tạo thành công" -#: src/components/routes/product-widget/SelectProducts/index.tsx:536 +#: src/components/routes/product-widget/SelectProducts/index.tsx:558 msgid "Change" msgstr "Thay đổi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Change duration" msgstr "Thay đổi thời lượng" -#: src/components/routes/profile/ManageProfile/index.tsx:238 +#: src/components/routes/profile/ManageProfile/index.tsx:239 msgid "Change password" msgstr "Thay đổi mật khẩu" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Change the attendee limit" msgstr "Thay đổi giới hạn người tham dự" @@ -1874,7 +1880,7 @@ msgstr "Thay đổi giới hạn người tham dự" msgid "Change waitlist settings" msgstr "Thay đổi cài đặt danh sách chờ" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 msgid "Changed duration for {count} date(s)" msgstr "Đã thay đổi thời lượng cho {count} ngày" @@ -1891,15 +1897,15 @@ msgstr "Từ thiện" msgid "Check in" msgstr "Check-in" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:27 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:28 msgid "Check in {0} {1}" msgstr "Check-in {0} {1}" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:52 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:50 msgid "Check in and mark order as paid" msgstr "Check-in và đánh dấu đơn hàng đã thanh toán" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:43 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:41 msgid "Check in only" msgstr "Chỉ check-in" @@ -1913,7 +1919,7 @@ msgstr "Huỷ check-in" msgid "Check out this event: {0}" msgstr "Xem sự kiện này: {0}" -#: src/components/layouts/Checkout/index.tsx:247 +#: src/components/layouts/Checkout/index.tsx:342 msgid "Check out this event!" msgstr "Xác nhận rời khỏi sự kiện này!" @@ -1994,7 +2000,7 @@ msgstr "Danh sách check-in" msgid "Check-In Lists" msgstr "Danh sách Check-In" -#: src/components/layouts/CheckIn/BottomNav.tsx:20 +#: src/components/layouts/CheckIn/BottomNav.tsx:21 msgid "Check-in navigation" msgstr "Điều hướng check-in" @@ -2074,11 +2080,11 @@ msgstr "Chọn một màu cho nền của bạn" msgid "Choose a configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:359 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:360 msgid "Choose a different action" msgstr "Chọn một hành động khác" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:183 msgid "Choose a saved location to apply." msgstr "Chọn một địa điểm đã lưu để áp dụng." @@ -2108,12 +2114,12 @@ msgstr "Chọn ai trả phí nền tảng. Điều này không ảnh hưởng đ #: src/components/common/CheckoutQuestion/index.tsx:162 #: src/components/modals/LocationEditModal/index.tsx:118 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:562 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:549 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:255 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:184 -#: src/components/routes/product-widget/CollectInformation/index.tsx:537 #: src/components/routes/product-widget/CollectInformation/index.tsx:538 +#: src/components/routes/product-widget/CollectInformation/index.tsx:539 msgid "City" msgstr "Thành phố" @@ -2122,7 +2128,7 @@ msgstr "Thành phố" msgid "Clear" msgstr "Xóa" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:499 msgid "Clear location — fall back to the event default" msgstr "Xóa địa điểm — quay về mặc định của sự kiện" @@ -2134,7 +2140,7 @@ msgstr "Xoá tìm kiếm" msgid "Clear Search Text" msgstr "Xoá văn bản tìm kiếm" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:585 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:586 msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "Xóa sẽ loại bỏ mọi tùy chỉnh riêng cho từng buổi. Các buổi bị ảnh hưởng sẽ quay về địa điểm mặc định của sự kiện." @@ -2154,7 +2160,7 @@ msgstr "Nhấn để mở lại cho việc bán vé mới" msgid "Click to view notes" msgstr "Nhấp để xem ghi chú" -#: src/components/routes/product-widget/SelectProducts/index.tsx:761 +#: src/components/routes/product-widget/SelectProducts/index.tsx:783 msgid "close" msgstr "đóng" @@ -2162,8 +2168,8 @@ msgstr "đóng" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:214 #: src/components/modals/JoinWaitlistModal/index.tsx:105 #: src/components/modals/JoinWaitlistModal/index.tsx:132 -#: src/components/modals/RefundOrderModal/index.tsx:169 -#: src/components/routes/product-widget/SelectProducts/index.tsx:762 +#: src/components/modals/RefundOrderModal/index.tsx:163 +#: src/components/routes/product-widget/SelectProducts/index.tsx:784 msgid "Close" msgstr "Đóng" @@ -2259,7 +2265,7 @@ msgstr "Sắp ra mắt" msgid "Comma seperated keywords that describe the event. These will be used by search engines to help categorize and index the event" msgstr "Các từ khóa mô tả sự kiện, được phân tách bằng dấu phẩy. Chúng sẽ được công cụ tìm kiếm sử dụng để phân loại và lập chỉ mục sự kiện." -#: src/components/routes/profile/ManageProfile/index.tsx:204 +#: src/components/routes/profile/ManageProfile/index.tsx:205 msgid "Communication Preferences" msgstr "Tùy chọn liên lạc" @@ -2267,11 +2273,11 @@ msgstr "Tùy chọn liên lạc" msgid "complete" msgstr "hoàn tất" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Complete Order" msgstr "Hoàn tất đơn hàng" -#: src/components/routes/product-widget/CollectInformation/index.tsx:344 +#: src/components/routes/product-widget/CollectInformation/index.tsx:345 #: src/components/routes/product-widget/Payment/index.tsx:148 msgid "Complete Payment" msgstr "Hoàn tất thanh toán" @@ -2280,11 +2286,11 @@ msgstr "Hoàn tất thanh toán" msgid "Complete Stripe setup" msgstr "Hoàn tất thiết lập Stripe" -#: src/components/routes/product-widget/CollectInformation/index.tsx:417 +#: src/components/routes/product-widget/CollectInformation/index.tsx:418 msgid "Complete your order to secure your tickets. This offer is time-limited, so don't wait too long." msgstr "Hoàn tất đơn hàng để đảm bảo vé của bạn. Ưu đãi này có thời hạn, vì vậy đừng chờ đợi quá lâu." -#: src/components/routes/product-widget/CollectInformation/index.tsx:342 +#: src/components/routes/product-widget/CollectInformation/index.tsx:343 msgid "Complete your payment to secure your tickets." msgstr "Hoàn tất thanh toán để đảm bảo vé của bạn." @@ -2293,17 +2299,17 @@ msgid "Complete your profile to join the team." msgstr "Hoàn thành hồ sơ của bạn để tham gia nhóm." #: src/components/common/OrdersTable/index.tsx:424 -#: src/components/modals/SendMessageModal/index.tsx:443 +#: src/components/modals/SendMessageModal/index.tsx:438 #: src/components/routes/event/orders.tsx:26 #: src/components/routes/my-tickets/index.tsx:35 msgid "Completed" msgstr "Hoàn thành" -#: src/components/common/StatBoxes/index.tsx:89 +#: src/components/common/StatBoxes/index.tsx:108 msgid "Completed orders" msgstr "Đơn hàng đã hoàn thành" -#: src/components/routes/event/EventDashboard/index.tsx:245 +#: src/components/routes/event/EventDashboard/index.tsx:295 #: src/components/routes/event/OccurrenceDetail/index.tsx:194 msgid "Completed Orders" msgstr "Đơn hàng đã hoàn thành" @@ -2318,7 +2324,7 @@ msgid "Compose" msgstr "Soạn" #: src/components/modals/LocationEditModal/index.tsx:111 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:556 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:542 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:238 msgid "Conference Center" @@ -2332,24 +2338,24 @@ msgstr "" msgid "Configuration assigned" msgstr "Đã gán cấu hình" -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration created successfully" msgstr "Cấu hình đã được tạo thành công" -#: src/components/routes/admin/Configurations/index.tsx:41 +#: src/components/routes/admin/Configurations/index.tsx:42 msgid "Configuration deleted successfully" msgstr "Cấu hình đã được xóa thành công" -#: src/components/routes/admin/Configurations/index.tsx:74 +#: src/components/routes/admin/Configurations/index.tsx:75 msgid "Configuration names are visible to end users. Fixed fees will be converted to the order currency at the current exchange rate." msgstr "Tên cấu hình hiển thị với người dùng cuối. Phí cố định sẽ được chuyển đổi sang đơn vị tiền tệ của đơn hàng theo tỷ giá hối đoái hiện tại." -#: src/components/routes/admin/Configurations/index.tsx:195 +#: src/components/routes/admin/Configurations/index.tsx:196 msgid "Configuration updated successfully" msgstr "Cấu hình đã được cập nhật thành công" #: src/components/layouts/Admin/index.tsx:21 -#: src/components/routes/admin/Configurations/index.tsx:64 +#: src/components/routes/admin/Configurations/index.tsx:65 msgid "Configurations" msgstr "Cấu hình" @@ -2377,10 +2383,10 @@ msgstr "Giảm giá đã cấu hình" msgid "Confirm" msgstr "Xác nhận" -#: src/components/routes/product-widget/CollectInformation/index.tsx:462 #: src/components/routes/product-widget/CollectInformation/index.tsx:463 -#: src/components/routes/product-widget/CollectInformation/index.tsx:675 +#: src/components/routes/product-widget/CollectInformation/index.tsx:464 #: src/components/routes/product-widget/CollectInformation/index.tsx:676 +#: src/components/routes/product-widget/CollectInformation/index.tsx:677 msgid "Confirm Email Address" msgstr "Xác nhận địa chỉ email" @@ -2393,7 +2399,7 @@ msgstr "Xác nhận thay đổi email" msgid "Confirm new password" msgstr "Xác nhận mật khẩu mới" -#: src/components/routes/profile/ManageProfile/index.tsx:236 +#: src/components/routes/profile/ManageProfile/index.tsx:237 msgid "Confirm New Password" msgstr "Xác nhận mật khẩu mới" @@ -2428,16 +2434,16 @@ msgstr "Đang xác nhận địa chỉ email..." msgid "Congratulations! Your event is now visible to the public." msgstr "Chúc mừng! Sự kiện của bạn hiện đã hiển thị công khai." -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:70 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 msgid "Connect bank" msgstr "" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:372 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:369 #: src/components/modals/SendMessageModal/index.tsx:312 msgid "Connect Stripe" msgstr "Kết nối Stripe" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:359 msgid "Connect Stripe to enable email template editing" msgstr "Kết nối Stripe để bật chỉnh sửa mẫu email" @@ -2445,7 +2451,7 @@ msgstr "Kết nối Stripe để bật chỉnh sửa mẫu email" msgid "Connect Stripe to enable messaging" msgstr "Kết nối Stripe để bật tính năng nhắn tin" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:408 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 msgid "Connect Stripe to receive ticket payments directly to your bank account." msgstr "" @@ -2453,11 +2459,11 @@ msgstr "" msgid "Connect with Stripe" msgstr "Kết nối với Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:86 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:115 msgid "Connect your bank to receive ticket sales straight to your account" msgstr "" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:577 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:566 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:214 msgid "Connection Details" @@ -2493,7 +2499,7 @@ msgstr "Email liên hệ hỗ trợ" #: src/components/common/WidgetEditor/index.tsx:29 #: src/components/common/WidgetEditor/index.tsx:222 -#: src/components/routes/product-widget/SelectProducts/index.tsx:708 +#: src/components/routes/product-widget/SelectProducts/index.tsx:730 msgid "Continue" msgstr "Tiếp tục" @@ -2508,7 +2514,7 @@ msgstr "Văn bản nút Tiếp tục" msgid "Continue Setup" msgstr "Tiếp tục thiết lập" -#: src/components/routes/product-widget/SelectProducts/index.tsx:475 +#: src/components/routes/product-widget/SelectProducts/index.tsx:497 msgid "Continue to Checkout" msgstr "Tiếp tục đến thanh toán" @@ -2520,7 +2526,7 @@ msgstr "Tiếp tục tạo sự kiện" msgid "Continue to next step" msgstr "Tiếp tục bước tiếp theo" -#: src/components/routes/product-widget/CollectInformation/index.tsx:716 +#: src/components/routes/product-widget/CollectInformation/index.tsx:717 msgid "Continue to Payment" msgstr "Tiếp tục thanh toán" @@ -2545,7 +2551,7 @@ msgstr "Kiểm soát ai vào và khi nào" msgid "Copied" msgstr "Đã Sao chép" -#: src/components/routes/product-widget/CollectInformation/index.tsx:640 +#: src/components/routes/product-widget/CollectInformation/index.tsx:641 msgid "Copied from above" msgstr "Đã sao chép từ trên" @@ -2591,7 +2597,7 @@ msgstr "Sao chép mã" msgid "Copy customer link" msgstr "Sao chép liên kết khách hàng" -#: src/components/routes/product-widget/CollectInformation/index.tsx:481 +#: src/components/routes/product-widget/CollectInformation/index.tsx:482 msgid "Copy details to first attendee" msgstr "Sao chép chi tiết cho người tham dự đầu tiên" @@ -2609,7 +2615,7 @@ msgstr "Sao chép liên kết" msgid "Copy Link" msgstr "Sao chép Link" -#: src/components/routes/product-widget/CollectInformation/index.tsx:491 +#: src/components/routes/product-widget/CollectInformation/index.tsx:492 msgid "Copy my details to:" msgstr "Sao chép thông tin của tôi cho:" @@ -2630,7 +2636,7 @@ msgstr "Sao chép URL" msgid "Could not delete location" msgstr "Không thể xóa địa điểm" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:266 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:267 msgid "Could not prepare the bulk update." msgstr "Không thể chuẩn bị cập nhật hàng loạt." @@ -2652,13 +2658,17 @@ msgstr "Không thể lưu ngày" msgid "Could not save location" msgstr "Không thể lưu địa điểm" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:92 +msgid "Couldn't send verification email. Please try again." +msgstr "" + #: src/components/common/CheckoutQuestion/index.tsx:174 #: src/components/modals/LocationEditModal/index.tsx:127 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:568 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:554 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:274 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:202 -#: src/components/routes/product-widget/CollectInformation/index.tsx:558 +#: src/components/routes/product-widget/CollectInformation/index.tsx:559 msgid "Country" msgstr "Quốc gia" @@ -2671,6 +2681,10 @@ msgstr "Bìa" msgid "Cover Image" msgstr "Ảnh bìa" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +msgid "Cover image added" +msgstr "" + #: src/components/routes/event/HomepageDesigner/index.tsx:194 msgid "Cover image will be displayed at the top of your event page" msgstr "Ảnh bìa sẽ được hiển thị ở đầu trang sự kiện của bạn" @@ -2743,7 +2757,7 @@ msgstr "Tạo một tổ chức" msgid "Create and configure tickets and merchandise for sale." msgstr "Tạo và cấu hình vé và hàng hóa để bán." -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Create Attendee" msgstr "Tạo người tham dự" @@ -2760,7 +2774,7 @@ msgid "Create category" msgstr "Tạo thể loại" #: src/components/modals/CreateProductCategoryModal/index.tsx:45 -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 msgid "Create Category" msgstr "Tạo thể loại" @@ -2771,17 +2785,17 @@ msgstr "Tạo thể loại" msgid "Create Check-In List" msgstr "Tạo danh sách check-in" -#: src/components/routes/admin/Configurations/index.tsx:69 -#: src/components/routes/admin/Configurations/index.tsx:206 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:70 +#: src/components/routes/admin/Configurations/index.tsx:207 +#: src/components/routes/admin/Configurations/index.tsx:269 msgid "Create Configuration" msgstr "Tạo cấu hình" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:322 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:323 msgid "Create custom email templates for this event that override the organizer defaults" msgstr "Tạo mẫu email tùy chỉnh cho sự kiện này ghi đè mặc định của tổ chức" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:312 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:313 msgid "Create Custom Template" msgstr "Tạo mẫu tùy chỉnh" @@ -2793,16 +2807,16 @@ msgstr "Tạo ngày" msgid "Create discounts, access codes for hidden tickets, and special offers." msgstr "Tạo giảm giá, mã truy cập cho vé ẩn và ưu đãi đặc biệt." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:404 +msgid "Create event" +msgstr "" + #: src/components/common/NoEventsBlankSlate/index.tsx:27 #: src/components/layouts/OrganizerLayout/index.tsx:174 #: src/components/routes/organizer/Events/index.tsx:62 msgid "Create Event" msgstr "Tạo sự kiện" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:417 -msgid "create event →" -msgstr "" - #: src/components/routes/event/OccurrencesTab/checkInLaunch.tsx:52 msgid "Create for this date" msgstr "Tạo cho ngày này" @@ -2849,7 +2863,7 @@ msgstr "Tạo thuế hoặc phí" msgid "Create Ticket or Product" msgstr "Tạo vé hoặc sản phẩm" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:96 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:125 msgid "Create ticket types so people can buy them" msgstr "" @@ -2872,6 +2886,10 @@ msgstr "Tạo sự kiện của bạn" msgid "Create your first event" msgstr "Tạo sự kiện đầu tiên của bạn" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:396 +msgid "Create your first event to start selling tickets and managing attendees." +msgstr "" + #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:13 #: src/components/layouts/PublicOrganizer/OrganizerNotFound/index.tsx:12 msgid "Create your own event" @@ -2915,7 +2933,7 @@ msgstr "Nhãn CTA là bắt buộc" msgid "Currency" msgstr "Tiền tệ" -#: src/components/routes/profile/ManageProfile/index.tsx:228 +#: src/components/routes/profile/ManageProfile/index.tsx:229 msgid "Current Password" msgstr "Mật khẩu hiện tại" @@ -2931,7 +2949,7 @@ msgstr "Hiện có sẵn để mua" msgid "Custom branding" msgstr "Thương hiệu tùy chỉnh" -#: src/components/modals/SendMessageModal/index.tsx:515 +#: src/components/modals/SendMessageModal/index.tsx:510 msgid "Custom date and time" msgstr "Ngày và giờ tùy chỉnh" @@ -2957,7 +2975,7 @@ msgstr "Câu hỏi tùy chỉnh" msgid "Custom Range" msgstr "Phạm vi tùy chỉnh" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Custom template" msgstr "Mẫu tùy chỉnh" @@ -2970,7 +2988,7 @@ msgstr "Khách hàng" msgid "Customer link copied to clipboard" msgstr "Đã sao chép liên kết khách hàng vào bộ nhớ tạm" -#: src/components/modals/RefundOrderModal/index.tsx:125 +#: src/components/modals/RefundOrderModal/index.tsx:126 msgid "Customer will receive an email confirming the refund" msgstr "Khách hàng sẽ nhận email xác nhận hoàn tiền" @@ -2990,11 +3008,15 @@ msgstr "Họ khách hàng" msgid "Customers" msgstr "Khách hàng" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:160 +msgid "Customize page" +msgstr "" + #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:56 msgid "Customize the email and notification settings for this event" msgstr "Tùy chỉnh cài đặt email và thông báo cho sự kiện này" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:324 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:325 msgid "Customize the emails sent to your customers using Liquid templating. These templates will be used as defaults for all events in your organization." msgstr "Tùy chỉnh email gửi cho khách hàng bằng mẫu Liquid. Các mẫu này sẽ được dùng làm mặc định cho tất cả sự kiện trong tổ chức của bạn." @@ -3027,6 +3049,10 @@ msgstr "Tùy chỉnh văn bản trên nút tiếp tục" msgid "Customize your email template using Liquid templating" msgstr "Tùy chỉnh mẫu email của bạn bằng mẫu Liquid" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:156 +msgid "Customize your event page" +msgstr "" + #: src/components/routes/organizer/OrganizerHomepageDesigner/index.tsx:171 msgid "Customize your organizer page appearance" msgstr "Tùy chỉnh giao diện trang tổ chức của bạn" @@ -3079,7 +3105,7 @@ msgstr "Tối" #: src/components/layouts/Admin/index.tsx:13 #: src/components/layouts/Event/index.tsx:99 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:54 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Dashboard" msgstr "Dashboard" @@ -3100,7 +3126,7 @@ msgid "Date & Time" msgstr "Ngày và giờ" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:99 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:212 msgid "Date Cancellation" msgstr "Hủy ngày" @@ -3208,12 +3234,12 @@ msgstr "Sức chứa mặc định cho mỗi ngày" msgid "Default Fee Handling" msgstr "Xử lý phí mặc định" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:225 msgid "Default template will be used" msgstr "Mẫu mặc định sẽ được sử dụng" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:101 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:107 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:102 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:108 msgid "delete" msgstr "xóa" @@ -3267,8 +3293,8 @@ msgstr "Xóa mã" msgid "Delete Date" msgstr "Xóa ngày" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:82 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:116 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:83 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:117 msgid "Delete Event" msgstr "Xóa sự kiện" @@ -3285,8 +3311,8 @@ msgstr "Xóa công việc" msgid "Delete location" msgstr "Xóa địa điểm" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:88 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:122 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:89 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:123 msgid "Delete Organizer" msgstr "Xóa ban tổ chức" @@ -3294,7 +3320,7 @@ msgstr "Xóa ban tổ chức" msgid "Delete Permanently" msgstr "Xóa vĩnh viễn" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:130 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:131 msgid "Delete Template" msgstr "Xóa mẫu" @@ -3319,7 +3345,7 @@ msgstr "Đã xóa {0} ngày" msgid "Description" msgstr "Mô tả" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:109 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:148 msgid "Description and venue added" msgstr "" @@ -3378,15 +3404,15 @@ msgstr "Giảm giá trong {0}" msgid "Discount Type" msgstr "Loại giảm giá" -#: src/components/common/Callout/index.tsx:57 +#: src/components/common/Callout/index.tsx:59 msgid "Dismiss" msgstr "Đóng" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:134 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:196 msgid "Dismiss setup checklist" msgstr "" -#: src/components/routes/product-widget/SelectProducts/index.tsx:492 +#: src/components/routes/product-widget/SelectProducts/index.tsx:514 msgid "Dismiss this message" msgstr "Bỏ qua thông báo này" @@ -3441,7 +3467,7 @@ msgstr "Tải xuống CSV" msgid "Download invoice" msgstr "Tải xuống hóa đơn" -#: src/components/layouts/Checkout/index.tsx:267 +#: src/components/layouts/Checkout/index.tsx:362 msgid "Download Invoice" msgstr "Tải xuống hóa đơn" @@ -3454,14 +3480,13 @@ msgid "Download sales, attendee, and financial reports for all completed orders. msgstr "Tải xuống báo cáo bán hàng, người tham dự và tài chính cho tất cả đơn hàng đã hoàn thành." #: src/components/common/OrdersTable/index.tsx:100 -#: src/components/layouts/Checkout/index.tsx:94 +#: src/components/layouts/Checkout/index.tsx:181 msgid "Downloading Invoice" msgstr "Tải xuống hóa đơn" -#: src/components/common/EventCard/index.tsx:87 +#: src/components/common/EventCard/index.tsx:88 #: src/components/layouts/Event/index.tsx:215 #: src/components/layouts/OrganizerLayout/index.tsx:212 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:463 msgid "Draft" msgstr "Bản nháp" @@ -3469,7 +3494,7 @@ msgstr "Bản nháp" msgid "Dropdown selection" msgstr "Lựa chọn thả xuống" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:362 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:360 msgid "Due to the high risk of spam, you must connect a Stripe account before you can modify email templates. This is to ensure that all event organizers are verified and accountable." msgstr "Do nguy cơ spam cao, bạn phải kết nối tài khoản Stripe trước khi có thể chỉnh sửa mẫu email. Điều này để đảm bảo tất cả các nhà tổ chức sự kiện được xác minh và có trách nhiệm." @@ -3490,7 +3515,7 @@ msgstr "Nhân đôi" msgid "Duplicate Date" msgstr "Nhân đôi ngày" -#: src/components/common/EventCard/index.tsx:163 +#: src/components/common/EventCard/index.tsx:164 msgid "Duplicate event" msgstr "Nhân bản sự kiện" @@ -3508,7 +3533,7 @@ msgstr "Tùy chọn nhân bản" msgid "Duplicate Product" msgstr "Nhân bản sản phẩm" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:137 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:138 msgid "Duration must be at least 1 minute." msgstr "Thời lượng phải ít nhất 1 phút." @@ -3520,7 +3545,7 @@ msgstr "Tiếng Hà Lan" msgid "e.g. 180 (3 hours)" msgstr "ví dụ 180 (3 giờ)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:477 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:462 #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:733 msgid "e.g. Morning Session" @@ -3530,11 +3555,11 @@ msgstr "ví dụ: Buổi sáng" msgid "e.g., Get Tickets, Register Now" msgstr "ví dụ: Mua vé, Đăng ký ngay" -#: src/components/modals/SendMessageModal/index.tsx:458 +#: src/components/modals/SendMessageModal/index.tsx:453 msgid "e.g., Important update about your tickets" msgstr "ví dụ: Cập nhật quan trọng về vé của bạn" -#: src/components/routes/admin/Configurations/index.tsx:221 +#: src/components/routes/admin/Configurations/index.tsx:222 msgid "e.g., Standard, Premium, Enterprise" msgstr "ví dụ: Tiêu chuẩn, Cao cấp, Doanh nghiệp" @@ -3542,7 +3567,7 @@ msgstr "ví dụ: Tiêu chuẩn, Cao cấp, Doanh nghiệp" msgid "Each person will receive an email with a reserved spot to complete their purchase." msgstr "Mỗi người sẽ nhận được email với một suất đã được giữ chỗ để hoàn tất việc mua hàng." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:405 msgid "Earlier" msgstr "Sớm hơn" @@ -3611,7 +3636,7 @@ msgstr "Chỉnh sửa danh sách check-in" msgid "Edit Code" msgstr "Chỉnh sửa mã" -#: src/components/routes/admin/Configurations/index.tsx:206 +#: src/components/routes/admin/Configurations/index.tsx:207 msgid "Edit Configuration" msgstr "Chỉnh sửa cấu hình" @@ -3659,8 +3684,8 @@ msgstr "Chỉnh sửa câu hỏi" msgid "Edit user" msgstr "Chỉnh sửa người dùng" -#: src/components/modals/EditUserModal/index.tsx:62 -#: src/components/modals/EditUserModal/index.tsx:120 +#: src/components/modals/EditUserModal/index.tsx:63 +#: src/components/modals/EditUserModal/index.tsx:121 msgid "Edit User" msgstr "Chỉnh sửa người dùng" @@ -3708,7 +3733,7 @@ msgstr "Danh Sách Đăng Ký Đủ Điều Kiện" #: src/components/common/OrderDetails/index.tsx:36 #: src/components/common/QuestionsTable/index.tsx:253 #: src/components/forms/AffiliateForm/index.tsx:89 -#: src/components/modals/EditUserModal/index.tsx:80 +#: src/components/modals/EditUserModal/index.tsx:81 #: src/components/modals/InviteUserModal/index.tsx:61 #: src/components/modals/JoinWaitlistModal/index.tsx:173 #: src/components/routes/admin/Accounts/AccountDetail/index.tsx:107 @@ -3721,7 +3746,7 @@ msgstr "Danh Sách Đăng Ký Đủ Điều Kiện" #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:68 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:253 -#: src/components/routes/profile/ManageProfile/index.tsx:156 +#: src/components/routes/profile/ManageProfile/index.tsx:157 msgid "Email" msgstr "Email" @@ -3743,10 +3768,10 @@ msgstr "Email & Mẫu" msgid "Email address" msgstr "Địa chỉ email" -#: src/components/routes/product-widget/CollectInformation/index.tsx:454 #: src/components/routes/product-widget/CollectInformation/index.tsx:455 -#: src/components/routes/product-widget/CollectInformation/index.tsx:666 +#: src/components/routes/product-widget/CollectInformation/index.tsx:456 #: src/components/routes/product-widget/CollectInformation/index.tsx:667 +#: src/components/routes/product-widget/CollectInformation/index.tsx:668 msgid "Email Address" msgstr "Địa chỉ Email" @@ -3755,8 +3780,8 @@ msgstr "Địa chỉ Email" msgid "Email address copied to clipboard" msgstr "Đã sao chép địa chỉ email vào clipboard" -#: src/components/routes/product-widget/CollectInformation/index.tsx:115 -#: src/components/routes/product-widget/CollectInformation/index.tsx:122 +#: src/components/routes/product-widget/CollectInformation/index.tsx:116 +#: src/components/routes/product-widget/CollectInformation/index.tsx:123 msgid "Email addresses do not match" msgstr "Địa chỉ email không khớp" @@ -3764,21 +3789,21 @@ msgstr "Địa chỉ email không khớp" msgid "Email Body" msgstr "Nội dung email" -#: src/components/routes/profile/ManageProfile/index.tsx:87 +#: src/components/routes/profile/ManageProfile/index.tsx:88 msgid "Email change cancelled successfully" msgstr "Hủy thay đổi email thành công" -#: src/components/routes/profile/ManageProfile/index.tsx:126 +#: src/components/routes/profile/ManageProfile/index.tsx:127 msgid "Email change pending" msgstr "Thay đổi email đang chờ xử lý" -#: src/components/routes/profile/ManageProfile/index.tsx:169 +#: src/components/routes/profile/ManageProfile/index.tsx:170 msgid "Email confirmation resent" msgstr "Xác nhận email đã được gửi lại" #: src/components/layouts/Event/index.tsx:85 #: src/components/layouts/OrganizerLayout/index.tsx:118 -#: src/components/routes/profile/ManageProfile/index.tsx:100 +#: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Email confirmation resent successfully" msgstr "Xác nhận email đã được gửi lại thành công" @@ -3792,7 +3817,7 @@ msgstr "Thông điệp chân trang email" msgid "Email is required" msgstr "Email là bắt buộc" -#: src/components/routes/profile/ManageProfile/index.tsx:159 +#: src/components/routes/profile/ManageProfile/index.tsx:160 msgid "Email not verified" msgstr "Email không được xác minh" @@ -3800,7 +3825,7 @@ msgstr "Email không được xác minh" msgid "Email Preview" msgstr "Xem trước email" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:347 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:348 #: src/components/routes/organizer/Settings/index.tsx:67 msgid "Email Templates" msgstr "Mẫu email" @@ -3809,6 +3834,10 @@ msgstr "Mẫu email" msgid "Email Verification Required" msgstr "Yêu cầu xác minh email" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:170 +msgid "Email verified" +msgstr "" + #: src/components/routes/welcome/index.tsx:97 msgid "Email verified successfully!" msgstr "Xác thực email thành công!" @@ -3897,12 +3926,11 @@ msgstr "Thời gian kết thúc (tùy chọn)" msgid "End time of the occurrence" msgstr "Giờ kết thúc của buổi" -#: src/components/common/EventCard/index.tsx:84 +#: src/components/common/EventCard/index.tsx:85 #: src/components/common/EventsDashboardStatusButtons/index.tsx:26 #: src/components/common/EventStatusBadge/index.tsx:14 #: src/components/common/ProductsTable/SortableProduct/index.tsx:87 #: src/components/common/ProductsTable/SortableProduct/index.tsx:434 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:460 msgid "Ended" msgstr "Kết thúc" @@ -3920,11 +3948,11 @@ msgstr "Kết thúc {0}" msgid "English" msgstr "Tiếng Anh" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:147 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:148 msgid "Enter a capacity value or choose unlimited." msgstr "Nhập giá trị sức chứa hoặc chọn không giới hạn." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:157 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:158 msgid "Enter a label or choose to remove it." msgstr "Nhập nhãn hoặc chọn xóa nó." @@ -3932,7 +3960,7 @@ msgstr "Nhập nhãn hoặc chọn xóa nó." msgid "Enter a subject and body to see the preview" msgstr "Nhập tiêu đề và nội dung để xem trước" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:128 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:129 msgid "Enter a time to shift by." msgstr "Nhập thời gian để dịch chuyển." @@ -3949,11 +3977,11 @@ msgstr "Nhập email đối tác (tùy chọn)" msgid "Enter affiliate name" msgstr "Nhập tên đối tác" -#: src/components/modals/CreateAttendeeModal/index.tsx:301 +#: src/components/modals/CreateAttendeeModal/index.tsx:300 msgid "Enter an amount excluding taxes and fees." msgstr "Nhập một số tiền không bao gồm thuế và phí." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:458 msgid "Enter capacity" msgstr "Nhập sức chứa" @@ -3998,7 +4026,7 @@ msgstr "Nhập email của bạn và chúng tôi sẽ gửi cho bạn hướng d msgid "Enter your name" msgstr "Nhập tên của bạn" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:215 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:213 msgid "Enter your VAT number including the country code, without spaces (e.g., IE1234567A, DE123456789)" msgstr "Nhập số VAT của bạn bao gồm mã quốc gia, không có khoảng trắng (ví dụ: IE1234567A, DE123456789)" @@ -4012,7 +4040,7 @@ msgstr "Các mục sẽ xuất hiện ở đây khi khách hàng tham gia danh s #: src/components/common/OrdersTable/index.tsx:108 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:102 +#: src/components/layouts/Checkout/index.tsx:189 msgid "Error" msgstr "Lỗi" @@ -4074,7 +4102,7 @@ msgstr "Sự kiện" msgid "Event Archived" msgstr "Sự kiện đã lưu trữ" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event archived successfully" msgstr "Sự kiện đã được lưu trữ thành công" @@ -4086,7 +4114,7 @@ msgstr "Danh mục sự kiện" msgid "Event Cover Image" msgstr "Ảnh bìa sự kiện" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:144 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:206 msgid "Event created" msgstr "" @@ -4094,7 +4122,7 @@ msgstr "" msgid "Event Created" msgstr "Sự kiện đã tạo" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:234 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:235 msgid "Event custom template" msgstr "Mẫu tùy chỉnh sự kiện" @@ -4113,7 +4141,7 @@ msgstr "Ngày sự kiện" msgid "Event Defaults" msgstr "Mặc định sự kiện" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:34 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:35 msgid "Event deleted successfully" msgstr "Sự kiện đã được xóa thành công" @@ -4145,10 +4173,14 @@ msgstr "Sự kiện nhân đôi thành công" msgid "Event Full Address" msgstr "Địa Chỉ Đầy Đủ Sự Kiện" -#: src/components/layouts/Checkout/index.tsx:212 +#: src/components/layouts/Checkout/index.tsx:306 msgid "Event Homepage" msgstr "Trang chủ sự kiện" +#: src/components/common/PeriodSelector/index.tsx:124 +msgid "Event lifetime" +msgstr "" + #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:91 msgid "Event Location" msgstr "Địa điểm sự kiện" @@ -4188,7 +4220,7 @@ msgstr "Tên ban tổ chức sự kiện" msgid "Event Page" msgstr "Trang sự kiện" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:54 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:55 msgid "Event restored successfully" msgstr "Sự kiện đã được khôi phục thành công" @@ -4197,17 +4229,17 @@ msgstr "Sự kiện đã được khôi phục thành công" msgid "Event Settings" msgstr "Cài đặt sự kiện" -#: src/components/common/EventCard/index.tsx:73 +#: src/components/common/EventCard/index.tsx:74 #: src/components/common/StatusToggle/index.tsx:63 #: src/components/layouts/Event/index.tsx:194 -#: src/components/routes/event/EventDashboard/index.tsx:119 +#: src/components/routes/event/EventDashboard/index.tsx:136 msgid "Event status update failed. Please try again later" msgstr "Cập nhật trạng thái sự kiện thất bại. Vui lòng thử lại sau" -#: src/components/common/EventCard/index.tsx:70 +#: src/components/common/EventCard/index.tsx:71 #: src/components/common/StatusToggle/index.tsx:55 #: src/components/layouts/Event/index.tsx:190 -#: src/components/routes/event/EventDashboard/index.tsx:116 +#: src/components/routes/event/EventDashboard/index.tsx:133 msgid "Event status updated" msgstr "Trạng thái sự kiện đã được cập nhật" @@ -4240,7 +4272,7 @@ msgstr "Tiêu đề sự kiện" msgid "Event Too New" msgstr "Sự kiện quá mới" -#: src/components/routes/event/EventDashboard/index.tsx:207 +#: src/components/routes/event/EventDashboard/index.tsx:256 msgid "Event totals" msgstr "Tổng cộng sự kiện" @@ -4405,7 +4437,7 @@ msgstr "Thất bại lúc" msgid "Failed Jobs" msgstr "Công việc thất bại" -#: src/components/layouts/Checkout/index.tsx:117 +#: src/components/layouts/Checkout/index.tsx:204 msgid "Failed to abandon order. Please try again." msgstr "Không thể hủy đơn hàng. Vui lòng thử lại." @@ -4439,7 +4471,7 @@ msgstr "Không thể hủy đơn hàng" msgid "Failed to create affiliate" msgstr "Không thể tạo đối tác" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to create configuration" msgstr "Không thể tạo cấu hình" @@ -4447,12 +4479,12 @@ msgstr "Không thể tạo cấu hình" msgid "Failed to create schedule" msgstr "Không thể tạo lịch trình" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:191 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:194 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" msgstr "Không thể tạo mẫu" -#: src/components/routes/admin/Configurations/index.tsx:42 +#: src/components/routes/admin/Configurations/index.tsx:43 msgid "Failed to delete configuration" msgstr "Không thể xóa cấu hình" @@ -4470,7 +4502,7 @@ msgstr "Không thể xóa ngày. Có thể đã có đơn hàng." msgid "Failed to delete dates" msgstr "Không thể xóa các ngày" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:38 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:39 msgid "Failed to delete event" msgstr "Không thể xóa sự kiện" @@ -4482,7 +4514,7 @@ msgstr "Không thể xóa công việc" msgid "Failed to delete jobs" msgstr "Không thể xóa các công việc" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:44 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:45 msgid "Failed to delete organizer" msgstr "Không thể xóa ban tổ chức" @@ -4490,13 +4522,13 @@ msgstr "Không thể xóa ban tổ chức" msgid "Failed to delete question" msgstr "Không thể xóa câu hỏi" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:125 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:126 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:127 msgid "Failed to delete template" msgstr "Không thể xóa mẫu" #: src/components/common/OrdersTable/index.tsx:109 -#: src/components/layouts/Checkout/index.tsx:103 +#: src/components/layouts/Checkout/index.tsx:190 msgid "Failed to download invoice. Please try again." msgstr "Không thể tải hóa đơn. Vui lòng thử lại." @@ -4594,14 +4626,14 @@ msgstr "Không thể lưu ghi đè giá" msgid "Failed to save product settings" msgstr "Không thể lưu cài đặt sản phẩm" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:157 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:160 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:163 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:188 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:158 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:161 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:164 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:189 msgid "Failed to save template" msgstr "Không thể lưu mẫu" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:180 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:178 msgid "Failed to save VAT settings. Please try again." msgstr "Không thể lưu cài đặt VAT. Vui lòng thử lại." @@ -4639,11 +4671,11 @@ msgstr "Không thể cập nhật câu trả lời." msgid "Failed to update attendee" msgstr "Không thể cập nhật người tham dự" -#: src/components/routes/admin/Configurations/index.tsx:199 +#: src/components/routes/admin/Configurations/index.tsx:200 msgid "Failed to update configuration" msgstr "Không thể cập nhật cấu hình" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:57 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:58 msgid "Failed to update event status" msgstr "Không thể cập nhật trạng thái sự kiện" @@ -4655,7 +4687,7 @@ msgstr "Cập nhật cấp độ nhắn tin thất bại" msgid "Failed to update order" msgstr "Không thể cập nhật đơn hàng" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:63 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:64 msgid "Failed to update organizer status" msgstr "Không thể cập nhật trạng thái ban tổ chức" @@ -4701,7 +4733,7 @@ msgstr "Tháng 2" msgid "Fee" msgstr "Phí" -#: src/components/routes/admin/Configurations/index.tsx:227 +#: src/components/routes/admin/Configurations/index.tsx:228 msgid "Fee Currency" msgstr "Đơn vị tiền tệ phí" @@ -4720,7 +4752,7 @@ msgstr "" msgid "Fees" msgstr "Các khoản phí" -#: src/components/routes/admin/Configurations/index.tsx:88 +#: src/components/routes/admin/Configurations/index.tsx:89 msgid "Fees Bypassed" msgstr "Phí đã bỏ qua" @@ -4732,8 +4764,8 @@ msgstr "Lễ hội" msgid "File is too large. Maximum size is 5MB." msgstr "Tệp quá lớn. Kích thước tối đa là 5MB." -#: src/components/routes/product-widget/CollectInformation/index.tsx:473 -#: src/components/routes/product-widget/CollectInformation/index.tsx:493 +#: src/components/routes/product-widget/CollectInformation/index.tsx:474 +#: src/components/routes/product-widget/CollectInformation/index.tsx:494 msgid "Fill in your details above first" msgstr "Vui lòng điền thông tin của bạn ở trên trước" @@ -4754,7 +4786,7 @@ msgstr "Lọc Người Tham Dự" msgid "Filter by date" msgstr "Lọc theo ngày" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:123 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 msgid "Filter by Event" msgstr "Lọc theo sự kiện" @@ -4775,19 +4807,27 @@ msgstr "Bộ lọc ({activeFilterCount})" msgid "Finish setting up Stripe" msgstr "Hoàn tất thiết lập Stripe" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:69 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:84 msgid "Finish setup" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:159 -msgid "finish setup to start selling" -msgstr "" - #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 msgid "First" msgstr "Đầu tiên" -#: src/components/routes/product-widget/CollectInformation/index.tsx:504 +#: src/components/common/PeriodSelector/index.tsx:42 +msgid "First 30 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:40 +msgid "First 7 days" +msgstr "" + +#: src/components/common/PeriodSelector/index.tsx:44 +msgid "First 90 days" +msgstr "" + +#: src/components/routes/product-widget/CollectInformation/index.tsx:505 msgid "First attendee" msgstr "Người tham dự đầu tiên" @@ -4798,22 +4838,22 @@ msgstr "Số hóa đơn đầu tiên" #: src/components/modals/CreateAttendeeModal/index.tsx:215 #: src/components/modals/ManageAttendeeModal/index.tsx:110 #: src/components/modals/ManageOrderModal/index.tsx:144 -#: src/components/routes/product-widget/CollectInformation/index.tsx:439 -#: src/components/routes/product-widget/CollectInformation/index.tsx:651 +#: src/components/routes/product-widget/CollectInformation/index.tsx:440 +#: src/components/routes/product-widget/CollectInformation/index.tsx:652 msgid "First name" msgstr "Tên" #: src/components/common/QuestionsTable/index.tsx:251 -#: src/components/modals/EditUserModal/index.tsx:71 +#: src/components/modals/EditUserModal/index.tsx:72 #: src/components/modals/InviteUserModal/index.tsx:57 #: src/components/modals/JoinWaitlistModal/index.tsx:163 #: src/components/routes/auth/AcceptInvitation/index.tsx:97 #: src/components/routes/auth/Register/index.tsx:90 -#: src/components/routes/product-widget/CollectInformation/index.tsx:438 -#: src/components/routes/product-widget/CollectInformation/index.tsx:650 +#: src/components/routes/product-widget/CollectInformation/index.tsx:439 +#: src/components/routes/product-widget/CollectInformation/index.tsx:651 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:53 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:53 -#: src/components/routes/profile/ManageProfile/index.tsx:152 +#: src/components/routes/profile/ManageProfile/index.tsx:153 msgid "First Name" msgstr "Tên" @@ -4843,16 +4883,16 @@ msgstr "Số tiền cố định" msgid "Fixed fee" msgstr "Phí cố định" -#: src/components/routes/admin/Configurations/index.tsx:93 -#: src/components/routes/admin/Configurations/index.tsx:235 +#: src/components/routes/admin/Configurations/index.tsx:94 +#: src/components/routes/admin/Configurations/index.tsx:236 msgid "Fixed Fee" msgstr "Phí cố định" -#: src/components/routes/admin/Configurations/index.tsx:236 +#: src/components/routes/admin/Configurations/index.tsx:237 msgid "Fixed fee charged per transaction" msgstr "Phí cố định được tính cho mỗi giao dịch" -#: src/components/routes/admin/Configurations/index.tsx:172 +#: src/components/routes/admin/Configurations/index.tsx:173 msgid "Fixed fee must be 0 or greater" msgstr "Phí cố định phải bằng 0 hoặc lớn hơn" @@ -4923,7 +4963,11 @@ msgstr "Thứ Sáu" msgid "Full data ownership" msgstr "Toàn quyền sở hữu dữ liệu" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/common/PeriodSelector/index.tsx:46 +msgid "Full event" +msgstr "" + +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Full refund" msgstr "Hoàn tiền toàn bộ" @@ -4931,11 +4975,11 @@ msgstr "Hoàn tiền toàn bộ" msgid "Full resolved address" msgstr "Địa chỉ đầy đủ đã xác định" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "future" msgstr "tương lai" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:376 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:377 msgid "Future dates only" msgstr "Chỉ các ngày trong tương lai" @@ -4992,7 +5036,7 @@ msgstr "Bắt đầu" msgid "Get Tickets" msgstr "Lấy vé" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:155 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:217 msgid "Get your event ready" msgstr "Chuẩn bị sự kiện của bạn" @@ -5013,7 +5057,7 @@ msgstr "Quay lại" msgid "Go back to profile" msgstr "Quay trở lại hồ sơ" -#: src/components/routes/product-widget/CollectInformation/index.tsx:381 +#: src/components/routes/product-widget/CollectInformation/index.tsx:382 msgid "Go to Event Page" msgstr "Đến trang sự kiện" @@ -5037,7 +5081,7 @@ msgstr "Lịch Google" msgid "Got it" msgstr "Đã hiểu" -#: src/components/common/EventCard/index.tsx:269 +#: src/components/common/EventCard/index.tsx:360 msgid "Gross revenue" msgstr "Doanh thu gộp" @@ -5045,22 +5089,22 @@ msgstr "Doanh thu gộp" msgid "Gross Revenue" msgstr "Doanh thu gộp" -#: src/components/common/StatBoxes/index.tsx:75 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:115 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:264 +#: src/components/common/StatBoxes/index.tsx:94 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:116 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:265 msgid "Gross sales" msgstr "Tổng doanh số" #: src/components/modals/ManageOccurrenceModal/index.tsx:166 #: src/components/routes/admin/Dashboard/index.tsx:259 -#: src/components/routes/event/EventDashboard/index.tsx:284 +#: src/components/routes/event/EventDashboard/index.tsx:334 #: src/components/routes/event/OccurrenceDetail/index.tsx:226 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:83 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:30 msgid "Gross Sales" msgstr "Doanh thu gộp" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:330 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:334 msgid "Guest" msgstr "" @@ -5077,7 +5121,7 @@ msgstr "Người được mời" msgid "Happening now" msgstr "Đang diễn ra" -#: src/components/routes/product-widget/SelectProducts/index.tsx:723 +#: src/components/routes/product-widget/SelectProducts/index.tsx:745 msgid "Have a promo code?" msgstr "Nhập mã khuyến mãi?" @@ -5106,7 +5150,7 @@ msgstr "Đây là component React bạn có thể sử dụng để nhúng widge msgid "Here is your affiliate link" msgstr "Đây là liên kết đối tác của bạn" -#: src/components/routes/event/EventDashboard/index.tsx:175 +#: src/components/routes/event/EventDashboard/index.tsx:218 msgid "Hi {0} 👋" msgstr "Chào {0} 👋" @@ -5141,8 +5185,8 @@ msgstr "Ẩn khỏi chế độ xem công khai" msgid "Hidden questions are only visible to the event organizer and not to the customer." msgstr "Các câu hỏi ẩn chỉ hiển thị cho người tổ chức sự kiện chứ không phải cho khách hàng." -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:676 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:698 msgid "Hide" msgstr "Ẩn" @@ -5239,8 +5283,8 @@ msgstr "Xem trước trang chủ" msgid "Homer" msgstr "Homer" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:410 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:434 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:411 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:435 msgid "Hours" msgstr "Giờ" @@ -5269,11 +5313,11 @@ msgstr "Bao lâu một lần?" msgid "How to pay offline" msgstr "Cách thanh toán offline" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:395 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:394 msgid "How VAT is applied to the platform fees we charge you." msgstr "Cách VAT được áp dụng cho phí nền tảng chúng tôi tính cho bạn." -#: src/components/common/Editor/index.tsx:94 +#: src/components/common/Editor/index.tsx:92 msgid "HTML character limit exceeded: {htmlLength}/{maxLength}" msgstr "Vượt quá giới hạn ký tự HTML: {htmllesth}/{maxlength}" @@ -5293,7 +5337,7 @@ msgstr "https://webhook-domain.com/webhook" msgid "Hungarian" msgstr "Tiếng Hungary" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:249 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:250 msgid "I acknowledge my responsibilities as a data controller" msgstr "Tôi xác nhận trách nhiệm của mình với tư cách là người kiểm soát dữ liệu" @@ -5305,11 +5349,11 @@ msgstr "Tôi đồng ý nhận thông báo qua email liên quan đến sự ki msgid "I agree to the <0>terms and conditions" msgstr "Tôi đồng ý với <0>các điều khoản và điều kiện" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "Tôi xác nhận đây là tin nhắn giao dịch liên quan đến sự kiện này" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "Nếu tab mới không tự động mở, vui lòng nhấn nút bên dưới để tiếp tục thanh toán." @@ -5325,7 +5369,7 @@ msgstr "Nếu được bật, nhân viên check-in có thể đánh dấu ngư msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "Nếu được bật, người tổ chức sẽ nhận được thông báo email khi có đơn hàng mới" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "Nếu bạn không yêu cầu thay đổi này, vui lòng thay đổi ngay mật khẩu của bạn." @@ -5370,11 +5414,11 @@ msgstr "Đã bắt đầu mạo danh" msgid "Impersonation stopped" msgstr "Đã dừng mạo danh" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "Thông báo quan trọng" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "Quan trọng: Việc thay đổi địa chỉ email sẽ cập nhật liên kết để truy cập đơn hàng này. Bạn sẽ được chuyển hướng đến liên kết đơn hàng mới sau khi lưu." @@ -5390,7 +5434,7 @@ msgstr "Trong {diffMinutes} phút" msgid "in last {0} min" msgstr "trong {0} phút qua" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "Trực tiếp — thiết lập địa điểm" @@ -5401,15 +5445,15 @@ msgstr "in_person, online, unset, hoặc mixed" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "Không hoạt động" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "Người dùng không hoạt động không thể đăng nhập." @@ -5483,12 +5527,12 @@ msgstr "Định dạng email không hợp lệ" msgid "Invalid file type. Please upload an image." msgstr "Loại tệp không hợp lệ. Vui lòng tải lên hình ảnh." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "Cú pháp Liquid không hợp lệ. Vui lòng sửa và thử lại." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "Định dạng số VAT không hợp lệ" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "Hóa đơn" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "Hóa đơn được tải xuống thành công" @@ -5545,7 +5589,7 @@ msgstr "Cài đặt hóa đơn" msgid "Italian" msgstr "Tiếng Ý" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "Mục" @@ -5628,7 +5672,7 @@ msgstr "vừa xong" msgid "Just wrapped" msgstr "Vừa kết thúc" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "Giữ cho tôi cập nhật tin tức và sự kiện từ {0}" @@ -5647,13 +5691,13 @@ msgstr "Nhãn" msgid "Label for the occurrence" msgstr "Nhãn cho buổi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "cập nhật nhãn" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "Ngôn ngữ" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "24 giờ qua" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "30 ngày qua" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "6 tháng qua" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "7 ngày qua" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "90 ngày qua" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "Họ" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "Họ" @@ -5753,7 +5797,7 @@ msgstr "Trình kích hoạt cuối cùng" msgid "Last Used" msgstr "Được sử dụng lần cuối" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "Trễ hơn" @@ -5786,7 +5830,7 @@ msgstr "Để bật để bao gồm mọi vé của sự kiện. Tắt để ch msgid "Let them know about the change" msgstr "Cho họ biết về sự thay đổi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "Cho họ biết về các thay đổi" @@ -5830,12 +5874,11 @@ msgstr "Danh sách" msgid "List view" msgstr "Xem dạng danh sách" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "Trực tiếp" @@ -5848,7 +5891,7 @@ msgstr "TRỰC TIẾP" msgid "Live Events" msgstr "Sự Kiện Trực Tiếp" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "Các ngày đã tải" @@ -5872,8 +5915,8 @@ msgstr "Đang tải Webhooks" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "Đang tải ..." @@ -5926,7 +5969,7 @@ msgstr "Đã lưu địa điểm" msgid "Location updated" msgstr "Đã cập nhật địa điểm" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "cập nhật địa điểm" @@ -5990,7 +6033,7 @@ msgstr "Văn phòng chính" msgid "Make billing address mandatory during checkout" msgstr "Bắt buộc nhập địa chỉ thanh toán, trong khi thanh toán" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "Quản lý người tham dự" msgid "Manage dates and times for your recurring event" msgstr "Quản lý ngày và giờ cho sự kiện định kỳ của bạn" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "Quản lý sự kiện" @@ -6039,10 +6082,14 @@ msgstr "Quản lý đơn hàng" msgid "Manage payment and invoicing settings for this event." msgstr "Quản lý cài đặt thanh toán và lập hóa đơn cho sự kiện này." -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "Quản lý hồ sơ" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "Quản lý lịch trình" @@ -6124,7 +6171,7 @@ msgstr "Phương tiện" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "Tin nhắn" @@ -6141,7 +6188,7 @@ msgstr "Tin nhắn cho người tham dự" msgid "Message Attendees" msgstr "Tin nhắn cho người tham dự" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "Nhắn tin cho người tham dự có vé cụ thể" @@ -6165,7 +6212,7 @@ msgstr "Nội dung tin nhắn" msgid "Message Details" msgstr "Chi tiết tin nhắn" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "Tin nhắn cho những người tham dự cá nhân" @@ -6173,15 +6220,15 @@ msgstr "Tin nhắn cho những người tham dự cá nhân" msgid "Message is required" msgstr "Tin nhắn là bắt buộc" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "Nhắn tin cho chủ đơn hàng có sản phẩm cụ thể" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "Tin nhắn đã được lên lịch" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "Tin nhắn được gửi" @@ -6212,8 +6259,8 @@ msgstr "Giá tối thiểu" msgid "minutes" msgstr "phút" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "Phút" @@ -6229,7 +6276,7 @@ msgstr "Cài đặt linh tinh" msgid "Mo" msgstr "T2" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "Chế độ" @@ -6282,7 +6329,7 @@ msgstr "Hành động khác" msgid "Most Viewed Events (Last 14 Days)" msgstr "Sự kiện được xem nhiều nhất (14 ngày qua)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "Di chuyển tất cả các ngày sớm hơn hoặc trễ hơn" @@ -6290,7 +6337,7 @@ msgstr "Di chuyển tất cả các ngày sớm hơn hoặc trễ hơn" msgid "Multi line text box" msgstr "Hộp văn bản đa dòng" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "Tên" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "Tên là bắt buộc" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "Tên phải ít hơn 255 ký tự" @@ -6384,21 +6431,21 @@ msgstr "Doanh thu ròng" msgid "Never" msgstr "Không bao giờ" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "Sức chứa mới" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "Nhãn mới" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "Địa điểm mới" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "Mật khẩu mới" @@ -6426,7 +6473,7 @@ msgstr "Cuộc sống về đêm" msgid "No" msgstr "Không" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "Không - Tôi là cá nhân hoặc doanh nghiệp không đăng ký VAT" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "Không có phân bổ sức chứa" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "Không có danh sách đăng ký nào cho sự kiện này." msgid "No check-ins yet" msgstr "Chưa có check-in" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "Không tìm thấy cấu hình" @@ -6537,7 +6584,7 @@ msgstr "Không có danh sách check-in dành riêng cho ngày" msgid "No dates available this month. Try navigating to another month." msgstr "Không có ngày nào khả dụng trong tháng này. Hãy thử chuyển sang tháng khác." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "Không có ngày nào khớp với các bộ lọc hiện tại." @@ -6582,8 +6629,8 @@ msgstr "Không có sự kiện nào bắt đầu trong 24 giờ tới" msgid "No events to show" msgstr "Không có sự kiện nào hiển thị" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "Không tìm thấy đơn hàng" msgid "No orders to show" msgstr "Không có đơn hàng nào để hiển thị" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "Chưa có đơn hàng nào cho ngày này." msgid "No organizer activity in the last 14 days" msgstr "Không có hoạt động của nhà tổ chức trong 14 ngày qua" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "Không có ngữ cảnh nhà tổ chức khả dụng." @@ -6733,7 +6780,7 @@ msgstr "Chưa có phản hồi" msgid "No results" msgstr "Không có kết quả" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "Chưa có địa điểm nào được lưu" @@ -6793,16 +6840,16 @@ msgstr "Chưa có sự kiện webhook nào được ghi nhận cho điểm cuố msgid "No Webhooks" msgstr "Không có webhooks" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "Không, giữ tôi ở đây" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "chưa chỉnh sửa" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "Không" @@ -6870,7 +6917,7 @@ msgstr "Tiền tố số" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "Buổi" @@ -7005,7 +7052,7 @@ msgstr "Thông tin thanh toán offline" msgid "Offline Payments Settings" msgstr "Cài đặt thanh toán offline" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "Khi bạn bắt đầu thu thập dữ liệu, bạn sẽ thấy nó ở msgid "Ongoing" msgstr "Đang diễn ra" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "Đang diễn ra" msgid "Online" msgstr "Trực tuyến" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "Trực tuyến — cung cấp thông tin kết nối" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "Trực tuyến và trực tiếp" @@ -7070,15 +7117,15 @@ msgstr "Chi tiết kết nối sự kiện trực tuyến" msgid "Online Event Details" msgstr "Chi tiết sự kiện trực tuyến" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "Chỉ quản trị viên tài khoản mới có thể xóa hoặc lưu trữ sự kiện. Liên hệ quản trị viên tài khoản của bạn để được hỗ trợ." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "Chỉ quản trị viên tài khoản mới có thể xóa hoặc lưu trữ ban tổ chức. Liên hệ quản trị viên tài khoản của bạn để được hỗ trợ." -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "Chỉ gửi đến các đơn hàng có trạng thái này" @@ -7173,7 +7220,7 @@ msgstr "Đơn hàng & Vé" msgid "Order #" msgstr "Đơn hàng #" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "Đơn hàng đã hủy" @@ -7182,13 +7229,13 @@ msgstr "Đơn hàng đã hủy" msgid "Order Cancelled" msgstr "Đơn hàng bị hủy" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "Đơn hàng hoàn tất" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "Xác nhận đơn hàng" @@ -7273,7 +7320,7 @@ msgstr "Đơn hàng được đánh dấu là đã thanh toán" msgid "Order Marked as Paid" msgstr "Đơn hàng được đánh dấu là đã trả" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "Không tìm thấy đơn hàng" @@ -7297,7 +7344,7 @@ msgstr "Mã đơn, ngày mua, email người mua" msgid "Order owner" msgstr "Chủ sở hữu đơn hàng" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "Chủ đơn hàng có sản phẩm cụ thể" @@ -7327,7 +7374,7 @@ msgstr "Đơn hàng đã hoàn lại" msgid "Order Status" msgstr "Trạng thái đơn hàng" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "Trạng thái đơn hàng" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "Thời gian chờ đơn hàng" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "Tổng đơn hàng" @@ -7357,7 +7404,7 @@ msgstr "Đơn hàng đã được cập nhật thành công" msgid "Order URL" msgstr "URL đơn hàng" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "Đơn hàng đã bị hủy" @@ -7374,8 +7421,8 @@ msgstr "đơn hàng" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "Tên tổ chức" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "Tên tổ chức" msgid "Organizer" msgstr "Người tổ chức" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "Ban tổ chức đã được lưu trữ thành công" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "Bảng điều khiển nhà tổ chức" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "Ban tổ chức đã được xóa thành công" @@ -7486,7 +7533,7 @@ msgstr "Tên ban tổ chức" msgid "Organizer Not Found" msgstr "Không tìm thấy nhà tổ chức" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "Ban tổ chức đã được khôi phục thành công" @@ -7504,7 +7551,7 @@ msgstr "Cập nhật trạng thái nhà tổ chức thất bại. Vui lòng th msgid "Organizer status updated" msgstr "Trạng thái nhà tổ chức đã được cập nhật" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "Mẫu của tổ chức/mặc định sẽ được sử dụng" @@ -7512,7 +7559,7 @@ msgstr "Mẫu của tổ chức/mặc định sẽ được sử dụng" msgid "Organizers" msgstr "Nhà tổ chức" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "Ban tổ chức chỉ có thể quản lý các sự kiện và sản phẩm. Họ không thể quản lý người dùng, tài khoản hoặc thông tin thanh toán." @@ -7563,7 +7610,7 @@ msgstr "Khoảng cách" msgid "Page" msgstr "Trang" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "Trang không còn khả dụng" @@ -7575,7 +7622,7 @@ msgstr "Không tìm thấy trang" msgid "Page URL" msgstr "URL trang" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "Lượt xem trang" @@ -7583,11 +7630,11 @@ msgstr "Lượt xem trang" msgid "Page Views" msgstr "Lượt xem trang" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "đã trả tiền" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "Tài khoản trả phí" msgid "Paid Product" msgstr "Sản phẩm trả phí" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "Hoàn tiền một phần" @@ -7623,7 +7670,7 @@ msgstr "Chuyển cho người mua" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "Mật khẩu" @@ -7694,7 +7741,7 @@ msgstr "Tải trọng" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "Thanh toán" @@ -7735,7 +7782,7 @@ msgstr "Phương thức thanh toán" msgid "Payment provider" msgstr "Nhà cung cấp Thanh toán" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "Đã nhận thanh toán" @@ -7747,7 +7794,7 @@ msgstr "Thanh toán đã nhận" msgid "Payment Status" msgstr "Tình trạng thanh toán" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "Thanh toán thành công!" @@ -7761,11 +7808,11 @@ msgstr "Thanh toán không khả dụng" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "Tiền chuyển ra" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "Đang chờ" @@ -7801,8 +7848,8 @@ msgstr "Tỷ lệ phần trăm" msgid "Percentage Amount" msgstr "Tỷ lệ phần trăm" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "Phí phần trăm" @@ -7810,11 +7857,11 @@ msgstr "Phí phần trăm" msgid "Percentage fee (%)" msgstr "Phí phần trăm (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "Phần trăm phải từ 0 đến 100" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "Phần trăm của số tiền giao dịch" @@ -7822,11 +7869,11 @@ msgstr "Phần trăm của số tiền giao dịch" msgid "Performance" msgstr "Hiệu suất" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "Xóa vĩnh viễn sự kiện này và tất cả dữ liệu liên quan." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "Xóa vĩnh viễn ban tổ chức này và tất cả các sự kiện của họ." @@ -7834,7 +7881,7 @@ msgstr "Xóa vĩnh viễn ban tổ chức này và tất cả các sự kiện c msgid "Permanently remove this date" msgstr "Xóa vĩnh viễn ngày này" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "Thông tin cá nhân" @@ -7842,7 +7889,7 @@ msgstr "Thông tin cá nhân" msgid "Phone" msgstr "Điện thoại" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "Chọn một địa điểm" @@ -7892,7 +7939,7 @@ msgstr "Phí nền tảng {0} được khấu trừ từ khoản thanh toán c msgid "Platform Fees" msgstr "Phí nền tảng" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "Báo cáo phí nền tảng" @@ -7918,7 +7965,7 @@ msgstr "Vui lòng kiểm tra email và mật khẩu của bạn và thử lại" msgid "Please check your email is valid" msgstr "Vui lòng kiểm tra email của bạn là hợp lệ" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "Vui lòng kiểm tra email của bạn để xác nhận địa chỉ email của bạn" @@ -7926,7 +7973,7 @@ msgstr "Vui lòng kiểm tra email của bạn để xác nhận địa chỉ em msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "Vui lòng kiểm tra vé của bạn để biết thời gian đã cập nhật. Vé của bạn vẫn còn hiệu lực — không cần làm gì trừ khi thời gian mới không phù hợp với bạn. Trả lời email này nếu bạn có thắc mắc." -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "Vui lòng tiếp tục trong tab mới" @@ -7955,7 +8002,7 @@ msgstr "Vui lòng nhập URL hợp lệ" msgid "Please enter the 5-digit code" msgstr "Vui lòng nhập mã 5 chữ số" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "Vui lòng nhập mã số VAT của bạn" @@ -7971,11 +8018,11 @@ msgstr "Vui lòng cung cấp một hình ảnh." msgid "Please restart the checkout process." msgstr "Vui lòng bắt đầu lại quy trình thanh toán." -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "Vui lòng quay lại trang sự kiện để bắt đầu lại." -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "Vui lòng chọn ngày và giờ" @@ -7987,7 +8034,7 @@ msgstr "Vui lòng chọn khoảng thời gian" msgid "Please select an image." msgstr "Vui lòng chọn một hình ảnh." -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "Vui lòng chọn ít nhất một sản phẩm" @@ -7998,7 +8045,7 @@ msgstr "Vui lòng chọn ít nhất một sản phẩm" msgid "Please try again." msgstr "Vui lòng thử lại." -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "Vui lòng xác minh địa chỉ email của bạn để truy cập tất cả các tính năng" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "Vui lòng đợi trong khi chúng tôi chuẩn bị cho người tham dự xuất ra..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "Vui lòng đợi trong khi chúng tôi chuẩn bị hóa đơn của bạn ..." @@ -8124,7 +8171,7 @@ msgstr "Xem trước khi in" msgid "Print Ticket" msgstr "In vé" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "In vé" @@ -8139,7 +8186,7 @@ msgstr "In ra PDF" msgid "Privacy Policy" msgstr "Chính sách quyền riêng tư" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "Xử lý hoàn tiền" @@ -8180,7 +8227,7 @@ msgstr "Sản phẩm đã xóa thành công" msgid "Product Price Type" msgstr "Loại giá sản phẩm" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "Sản phẩm(s)" msgid "Products" msgstr "Sản phẩm" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "Sản phẩm đã bán" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "Sản phẩm đã bán" msgid "Products sorted successfully" msgstr "Sản phẩm được sắp xếp thành công" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "Hồ sơ" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "Hồ sơ cập nhật thành công" @@ -8251,7 +8298,7 @@ msgstr "Hồ sơ cập nhật thành công" msgid "Progress" msgstr "Tiến độ" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "Mã {Promo_code} đã được áp dụng" @@ -8298,7 +8345,7 @@ msgstr "Báo cáo mã khuyến mãi" msgid "Promo Only" msgstr "Chỉ khuyến mãi" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "Email quảng cáo có thể dẫn đến đình chỉ tài khoản" @@ -8310,11 +8357,11 @@ msgstr "" "Cung cấp ngữ cảnh hoặc hướng dẫn bổ sung cho câu hỏi này. Sử dụng trường này để thêm điều khoản\n" "và điều kiện, hướng dẫn, hoặc bất kỳ thông tin quan trọng nào mà người tham dự cần biết trước khi trả lời." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "Hãy cung cấp ít nhất một trường địa chỉ cho địa điểm mới." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "Cung cấp các thông tin sau trước đợt rà soát tiếp theo của Stripe để duy trì việc thanh toán." @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "Nhà cung cấp" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "Xuất bản" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "Phân tích theo thời gian thực" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "Nhận cập nhật sản phẩm từ {0}." @@ -8439,6 +8486,10 @@ msgstr "Nhận cập nhật sản phẩm từ {0}." msgid "Recent Account Signups" msgstr "Đăng ký tài khoản gần đây" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "Người tham dự gần đây" @@ -8447,7 +8498,7 @@ msgstr "Người tham dự gần đây" msgid "Recent check-ins" msgstr "Check-in gần đây" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "Đơn hàng gần đây" msgid "recipient" msgstr "người nhận" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "Người nhận" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "người nhận" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "Người nhận" msgid "Recipients are available after the message is sent" msgstr "Người nhận sẽ có sau khi tin nhắn được gửi" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "Định kỳ" @@ -8517,7 +8569,7 @@ msgstr "Hoàn tiền tất cả đơn hàng cho các ngày này" msgid "Refund all orders for this date" msgstr "Hoàn tiền tất cả đơn hàng cho ngày này" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "Số tiền hoàn lại" @@ -8537,7 +8589,7 @@ msgstr "Đã hoàn tiền" msgid "Refund order" msgstr "Lệnh hoàn trả" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "Hoàn tiền đơn hàng {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "Trạng thái hoàn trả" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "Đã hoàn lại" @@ -8571,7 +8623,7 @@ msgstr "Đã hoàn tiền: {0}" msgid "Refunds" msgstr "Hoàn tiền" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "Cài đặt khu vực" @@ -8598,18 +8650,18 @@ msgstr "Sử dụng còn lại" msgid "Reminder scheduled" msgstr "Đã lên lịch nhắc nhở" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "Loại bỏ" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "Hủy bỏ" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "Xóa nhãn khỏi tất cả các ngày" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "Gửi lại email xác nhận" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "Gửi lại email" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "Gửi lại xác nhận email" @@ -8688,7 +8741,7 @@ msgstr "Gửi lại vé" msgid "Resend ticket email" msgstr "Gửi lại email vé" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "Đang gửi lại ..." @@ -8729,30 +8782,30 @@ msgstr "Phản hồi" msgid "Response Details" msgstr "Chi tiết phản hồi" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "Khôi phục" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "Khôi phục sự kiện" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "Khôi phục sự kiện" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "Khôi phục ban tổ chức" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "Khôi phục sự kiện này để làm cho nó hiển thị trở lại." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "Khôi phục ban tổ chức này và làm cho nó hoạt động trở lại." @@ -8777,7 +8830,7 @@ msgstr "Thử lại công việc" msgid "Return to Event" msgstr "Quay lại sự kiện" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "Trở lại trang sự kiện" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "Tái sử dụng kết nối Stripe từ một nhà tổ chức khác trong tài khoản này." #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "Doanh thu" @@ -8818,7 +8872,7 @@ msgstr "Thu hồi lời mời" msgid "Revoke Offer" msgstr "Thu hồi đề nghị" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "Đợt giảm giá bắt đầu {0}" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "Bán hàng" @@ -8930,7 +8984,7 @@ msgstr "Thứ Bảy" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "Thứ Bảy" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "Lưu" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "Lưu thiết kế vé" msgid "Save VAT settings" msgstr "Lưu cài đặt VAT" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "Lưu cài đặt VAT" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "Địa điểm đã lưu" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "Địa điểm đã lưu" @@ -9015,7 +9069,7 @@ msgstr "Địa điểm đã lưu" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "Lưu một ghi đè sẽ tạo một cấu hình riêng cho nhà tổ chức này nếu hiện đang dùng mặc định hệ thống." -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "Quét" @@ -9035,6 +9089,10 @@ msgstr "Chế độ máy quét" msgid "Schedule" msgstr "Lịch trình" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "Tạo lịch trình thành công" @@ -9043,11 +9101,11 @@ msgstr "Tạo lịch trình thành công" msgid "Schedule ends on" msgstr "Lịch trình kết thúc vào" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "Lên lịch gửi sau" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "Lên lịch tin nhắn" @@ -9061,11 +9119,11 @@ msgstr "Lịch bắt đầu vào" msgid "Scheduled" msgstr "Đã lên lịch" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "Thời gian đã lên lịch" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "Tìm kiếm" @@ -9228,11 +9286,11 @@ msgstr "Chọn tất cả" msgid "Select all on {0}" msgstr "Chọn tất cả trên {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "Chọn một sự kiện" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "Chọn nhóm người tham dự" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "Chọn bậc sản phẩm" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "Chọn sản phẩm" @@ -9298,7 +9356,7 @@ msgstr "Chọn ngày và giờ bắt đầu" msgid "Select start time" msgstr "Chọn thời gian bắt đầu" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "Chọn trạng thái" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "Chọn Vé" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "Chọn Vé" @@ -9325,7 +9383,7 @@ msgstr "Chọn khoảng thời gian" msgid "Select timezone" msgstr "Chọn múi giờ" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "Chọn người tham dự nào sẽ nhận tin nhắn này" @@ -9359,11 +9417,11 @@ msgstr "Bán chạy 🔥" msgid "Send" msgstr "Gửi" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "Gửi tin nhắn" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "Gửi thử" @@ -9371,20 +9429,20 @@ msgstr "Gửi thử" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "Gửi email cho người tham dự, chủ vé hoặc chủ đơn hàng. Tin nhắn có thể được gửi ngay hoặc lên lịch gửi sau." -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "Gửi cho tôi một bản sao" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "Gửi tin nhắn" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "Gửi ngay" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "Gửi email xác nhận và vé" @@ -9392,7 +9450,7 @@ msgstr "Gửi email xác nhận và vé" msgid "Send real-time order and attendee data to your external systems." msgstr "Gửi dữ liệu đơn hàng và người tham dự theo thời gian thực đến hệ thống bên ngoài của bạn." -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "Gửi email thông báo hoàn tiền" @@ -9400,11 +9458,11 @@ msgstr "Gửi email thông báo hoàn tiền" msgid "Send reset link" msgstr "Gửi liên kết đặt lại" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "Gửi Test" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "Gửi đến tất cả các buổi, hoặc chọn một buổi cụ thể" @@ -9429,15 +9487,15 @@ msgstr "Đã gửi" msgid "Sent By" msgstr "Được gửi bởi" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "Gửi đến người tham dự khi một ngày đã lên lịch bị hủy" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "Gửi cho khách hàng khi họ đặt hàng" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "Gửi cho từng người tham dự với chi tiết vé của họ" @@ -9490,7 +9548,7 @@ msgstr "Đặt cài đặt phí nền tảng mặc định cho các sự kiện msgid "Set default settings for new events created under this organizer." msgstr "Đặt cài đặt mặc định cho các sự kiện mới được tạo dưới tổ chức này." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "Đặt thời lượng cho mỗi ngày" @@ -9498,11 +9556,11 @@ msgstr "Đặt thời lượng cho mỗi ngày" msgid "Set number of dates" msgstr "Đặt số lượng ngày" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "Đặt hoặc xóa nhãn ngày" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "Đặt giờ kết thúc của mỗi ngày sau giờ bắt đầu khoảng thời gian này." @@ -9510,7 +9568,7 @@ msgstr "Đặt giờ kết thúc của mỗi ngày sau giờ bắt đầu khoả msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "Đặt số bắt đầu cho hóa đơn. Sau khi hóa đơn được tạo, số này không thể thay đổi." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "Đặt thành không giới hạn (xóa giới hạn)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "Thiết lập danh sách check-in cho các lối vào, phiên hoặc ngày khác nhau." #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "Thiết lập thanh toán" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "Thiết lập lịch trình" msgid "Set up your organization" msgstr "Thiết lập tổ chức của bạn" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "Thiết lập lịch trình của bạn" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "Thiết lập, thay đổi hoặc xóa địa điểm hay thông tin trực tuyến của buổi" @@ -9599,11 +9665,11 @@ msgstr "Chia sẻ trang nhà tổ chức" msgid "Shared Capacity Management" msgstr "Quản lý sức chứa chung" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "Dịch chuyển thời gian" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "Đã dịch chuyển thời gian cho {count} ngày" @@ -9635,8 +9701,8 @@ msgstr "Hiển thị hộp kiểm đăng ký tiếp thị" msgid "Show marketing opt-in checkbox by default" msgstr "Hiển thị hộp kiểm đăng ký tiếp thị theo mặc định" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "Hiển thị thêm" @@ -9673,7 +9739,7 @@ msgstr "Đang hiển thị {0}–{1} trong số {2}" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "Đang hiển thị {MAX_VISIBLE} trong số {totalAvailable} ngày. Nhập để tìm kiếm." -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "Đang hiển thị {0} đầu tiên — {1} buổi còn lại vẫn sẽ được nhắm đến khi tin nhắn được gửi." @@ -9710,7 +9776,7 @@ msgstr "Sự kiện đơn" msgid "Single line text box" msgstr "Hộp văn bản dòng đơn" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "Bỏ qua các ngày đã chỉnh sửa thủ công" @@ -9745,7 +9811,7 @@ msgstr "Liên kết mạng xã hội & Trang web" msgid "Sold" msgstr "Đã bán" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "Một số chi tiết đang ẩn với người truy cập công khai. #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "Đã xảy ra lỗi" @@ -9784,7 +9850,7 @@ msgstr "Có gì đó không ổn, vui lòng thử lại hoặc liên hệ với msgid "Something went wrong! Please try again" msgstr "Có gì đó không ổn! Vui lòng thử lại" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "Có gì đó không ổn." @@ -9796,12 +9862,12 @@ msgstr "Đã xảy ra lỗi. Vui lòng thử lại sau." #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "Có gì đó không ổn. Vui lòng thử lại" -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "Xin lỗi, mã khuyến mãi này không được công nhận" @@ -9897,12 +9963,12 @@ msgstr "Bắt đầu ngày mai" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "Nhà nước hoặc khu vực" @@ -9914,7 +9980,7 @@ msgstr "Thống kê" msgid "Statistics are based on account creation date" msgstr "Thống kê dựa trên ngày tạo tài khoản" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "Thống kê" @@ -9931,7 +9997,7 @@ msgstr "Thống kê" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "ID thanh toán Stripe" msgid "Stripe payments are not enabled for this event." msgstr "Thanh toán Stripe không được kích hoạt cho sự kiện này." -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Stripe sẽ sớm cần thêm vài thông tin" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "CN" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "Tiêu đề là bắt buộc" msgid "Subject will appear here" msgstr "Tiêu đề sẽ xuất hiện ở đây" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "Tiêu đề:" @@ -10024,11 +10090,11 @@ msgstr "Tổng phụ" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "Thành công" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "Thành công! {0} sẽ nhận một email trong chốc lát." @@ -10173,7 +10239,7 @@ msgstr "Cập nhật cài đặt thành công" msgid "Successfully Updated Social Links" msgstr "Cập nhật liên kết mạng xã hội thành công" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "Đã cập nhật cài đặt theo dõi thành công" @@ -10226,7 +10292,7 @@ msgstr "Tiếng Thụy Điển" msgid "Switch Organizer" msgstr "Chuyển đổi nhà tổ chức" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "Mặc định hệ thống" @@ -10238,7 +10304,7 @@ msgstr "Áo thun" msgid "Tap this screen to resume scanning" msgstr "Chạm vào màn hình để tiếp tục quét" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "Nhắm đến người tham dự trên {0} buổi đã chọn." @@ -10336,7 +10402,7 @@ msgstr "Hãy cho chúng tôi biết về tổ chức của bạn. Thông tin nà msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "Cho chúng tôi biết tần suất sự kiện lặp lại và chúng tôi sẽ tạo tất cả các ngày cho bạn." -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "Cho chúng tôi biết trạng thái đăng ký VAT để áp dụng cách tính VAT phù hợp cho phí nền tảng." @@ -10344,15 +10410,15 @@ msgstr "Cho chúng tôi biết trạng thái đăng ký VAT để áp dụng cá msgid "Template Active" msgstr "Mẫu đang hoạt động" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "Tạo mẫu thành công" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "Xóa mẫu thành công" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "Lưu mẫu thành công" @@ -10378,8 +10444,8 @@ msgstr "Cảm ơn bạn đã tham dự!" msgid "Thanks," msgstr "Cảm ơn," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "Mã khuyến mãi không hợp lệ" @@ -10399,7 +10465,7 @@ msgstr "Danh sách check-in bạn đang tìm kiếm không tồn tại." msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "Mã sẽ hết hạn sau 10 phút. Kiểm tra thư mục spam nếu bạn không thấy email." -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "Đơn vị tiền tệ mà phí cố định được xác định. Nó sẽ được chuyển đổi sang đơn vị tiền tệ của đơn hàng khi thanh toán." @@ -10417,7 +10483,7 @@ msgstr "Tiền tệ mặc định cho các sự kiện của bạn." msgid "The default timezone for your events." msgstr "Múi giờ mặc định cho các sự kiện của bạn." -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "Địa chỉ email đã được thay đổi. Người tham dự sẽ nhận được vé mới tại địa chỉ email đã cập nhật." @@ -10442,7 +10508,7 @@ msgstr "Ngày đầu tiên mà lịch này sẽ được tạo từ đó." msgid "The full event address" msgstr "Địa chỉ đầy đủ của sự kiện" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "Toàn bộ số tiền đơn hàng sẽ được hoàn lại phương thức thanh toán gốc của khách hàng." @@ -10466,7 +10532,7 @@ msgstr "Ngôn ngữ của khách hàng" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "Tối đa là {MAX_PREVIEW} buổi. Vui lòng giảm phạm vi ngày, tần suất hoặc số buổi mỗi ngày." -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "Số lượng sản phẩm tối đa cho {0}là {1}" @@ -10475,7 +10541,7 @@ msgstr "Số lượng sản phẩm tối đa cho {0}là {1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "Không tìm thấy nhà tổ chức bạn đang tìm kiếm. Trang có thể đã bị chuyển, xóa hoặc URL không chính xác." -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "Việc ghi đè được ghi lại trong nhật ký kiểm toán đơn hàng." @@ -10499,11 +10565,11 @@ msgstr "Giá hiển thị cho khách hàng sẽ không bao gồm thuế và phí msgid "The primary brand color used for buttons and highlights" msgstr "Màu thương hiệu chính được sử dụng cho nút và điểm nhấn" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "Thời gian lên lịch là bắt buộc" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "Thời gian lên lịch phải ở trong tương lai" @@ -10511,8 +10577,8 @@ msgstr "Thời gian lên lịch phải ở trong tương lai" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "Buổi cho \"{title}\" ban đầu được lên lịch vào {0} đã được dời lịch." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "Nội dung template chứa cú pháp Liquid không hợp lệ. Vui lòng sửa và thử lại." @@ -10521,7 +10587,7 @@ msgstr "Nội dung template chứa cú pháp Liquid không hợp lệ. Vui lòng msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "Tiêu đề của sự kiện sẽ được hiển thị trong kết quả của công cụ tìm kiếm và khi chia sẻ trên phương tiện truyền thông xã hội. " -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "Không thể xác thực số VAT. Vui lòng kiểm tra số và thử lại." @@ -10534,19 +10600,19 @@ msgstr "Sân khấu" msgid "Theme & Colors" msgstr "Chủ đề & Màu sắc" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "Không có sản phẩm nào cho sự kiện này" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "Không có sản phẩm nào trong danh mục này" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "Không có ngày sắp tới nào cho sự kiện này" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "Có một khoản hoàn tiền đang chờ xử lý. Vui lòng đợi hoàn tất trước khi yêu cầu hoàn tiền khác." @@ -10578,7 +10644,7 @@ msgstr "Các chi tiết này chỉ được hiển thị trên vé của ngườ msgid "These details will only be shown if the order is completed successfully." msgstr "Các chi tiết này chỉ được hiển thị nếu đơn hàng được hoàn tất thành công." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "Những thông tin này sẽ thay thế mọi địa điểm hiện có trên các buổi bị ảnh hưởng và hiển thị trên vé của người tham dự." @@ -10586,11 +10652,11 @@ msgstr "Những thông tin này sẽ thay thế mọi địa điểm hiện có msgid "These settings apply only to copied embed code and won't be stored." msgstr "Các cài đặt này chỉ áp dụng cho mã nhúng được sao chép và sẽ không được lưu trữ." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "Các mẫu này sẽ được sử dụng làm mặc định cho tất cả sự kiện trong tổ chức của bạn. Các sự kiện riêng lẻ có thể ghi đè các mẫu này bằng phiên bản tùy chỉnh của riêng họ." -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "Các mẫu này sẽ ghi đè mặc định của tổ chức chỉ cho sự kiện này. Nếu không có mẫu tùy chỉnh nào được thiết lập ở đây, mẫu của tổ chức sẽ được sử dụng thay thế." @@ -10598,11 +10664,11 @@ msgstr "Các mẫu này sẽ ghi đè mặc định của tổ chức chỉ cho msgid "Third" msgstr "Thứ ba" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "Áp dụng cho mọi ngày phù hợp trong sự kiện, bao gồm cả những ngày hiện không hiển thị. Người tham dự đã đăng ký vào bất kỳ ngày nào trong số đó sẽ có thể được liên hệ qua trình soạn tin nhắn sau khi cập nhật hoàn tất." -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "Người tham dự này có đơn hàng chưa thanh toán." @@ -10660,11 +10726,11 @@ msgstr "Ngày này đã bị hủy. Bạn vẫn có thể xóa để loại bỏ msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "Ngày này đã qua. Sẽ được tạo nhưng sẽ không hiển thị cho người tham dự trong danh sách ngày sắp tới." -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "Ngày này được đánh dấu là đã bán hết." -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "Ngày này không còn khả dụng. Vui lòng chọn ngày khác." @@ -10713,19 +10779,19 @@ msgstr "Thông báo này sẽ được bao gồm trong phần chân trang của msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "Thông báo này sẽ chỉ được hiển thị nếu đơn hàng được hoàn thành thành công. Đơn chờ thanh toán sẽ không hiển thị thông báo này." -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "Tên này hiển thị cho người dùng cuối" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "Buổi này đã đạt sức chứa" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "Đơn hàng này đã được thanh toán." -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "Đơn hàng này đã được hoàn trả." @@ -10733,7 +10799,7 @@ msgstr "Đơn hàng này đã được hoàn trả." msgid "This order has been cancelled." msgstr "Đơn hàng này đã bị hủy bỏ." -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "Đơn hàng này đã hết hạn. Vui lòng bắt đầu lại." @@ -10745,15 +10811,15 @@ msgstr "Đơn hàng này đang được xử lý." msgid "This order is complete." msgstr "Đơn hàng này đã hoàn tất." -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "Trang Đơn hàng này không còn có sẵn." -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "Đơn hàng này đã bị bỏ. Bạn có thể bắt đầu đơn hàng mới bất cứ lúc nào." -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "Đơn hàng này đã bị hủy. Bạn có thể bắt đầu đơn hàng mới bất cứ lúc nào." @@ -10785,7 +10851,7 @@ msgstr "Sản phẩm này được nổi bật trên trang sự kiện" msgid "This product is sold out" msgstr "Sản phẩm này đã bán hết" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "Báo cáo này chỉ dành cho mục đích thông tin. Luôn tham khảo ý kiến chuyên gia thuế trước khi sử dụng dữ liệu này cho mục đích kế toán hoặc thuế. Vui lòng kiểm tra chéo với bảng điều khiển Stripe của bạn vì Hi.Events có thể thiếu dữ liệu lịch sử." @@ -10797,11 +10863,11 @@ msgstr "Liên kết mật khẩu đặt lại này không hợp lệ hoặc hế msgid "This ticket was just scanned. Please wait before scanning again." msgstr "Vé này vừa được quét. Vui lòng chờ trước khi quét lại." -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "Người dùng này không hoạt động, vì họ chưa chấp nhận lời mời của họ." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "Điều này sẽ ảnh hưởng đến {loadedAffectedCount} ngày." @@ -10913,6 +10979,10 @@ msgstr "Giá vé" msgid "Ticket resent successfully" msgstr "Vé đã được gửi lại thành công" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "Việc bán vé cho sự kiện này đã kết thúc" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "Thời gian" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "Thời gian còn lại:" @@ -10994,7 +11064,7 @@ msgstr "Thời gian được sử dụng" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "Múi giờ" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "Để tăng giới hạn của bạn, hãy liên hệ với chúng tôi tại" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "Nhà tổ chức hàng đầu (14 ngày qua)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "Tổng" @@ -11075,11 +11146,11 @@ msgstr "Tổng số mục" msgid "Total Fee" msgstr "Tổng phí" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "Tổng doanh thu" msgid "Total order amount" msgstr "Tổng tiền đơn hàng" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "Tổng đã hoàn lại" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "Tổng đã hoàn lại" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "Theo dõi sự phát triển và hiệu suất tài khoản theo nguồn phân bổ" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "Loại" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "Nhập \"xóa\" để xác nhận" @@ -11222,7 +11293,7 @@ msgstr "Không thể kiểm tra người tham dự" msgid "Unable to create product. Please check the your details" msgstr "Không thể tạo sản phẩm. Vui lòng kiểm tra thông tin của bạn" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "Không thể tạo sản phẩm. Vui lòng kiểm tra thông tin của bạn" @@ -11246,7 +11317,7 @@ msgstr "Không thể tham gia danh sách chờ" msgid "Unable to load attendee details." msgstr "Không tải được thông tin khách." -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "Không thể tải sản phẩm cho ngày này. Vui lòng thử lại." @@ -11284,7 +11355,7 @@ msgstr "Hoa Kỳ" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "Không rõ" @@ -11304,7 +11375,7 @@ msgstr "Người tham dự không xác định" msgid "Unlimited" msgstr "Không giới hạn" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "Không giới hạn có sẵn" @@ -11316,12 +11387,12 @@ msgstr "Sử dụng không giới hạn" msgid "Unnamed" msgstr "Không có tên" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "Địa điểm không tên" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "Đơn hàng chưa thanh toán" @@ -11337,7 +11408,7 @@ msgstr "Không đáng tin cậy" msgid "Upcoming" msgstr "Sắp tới" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "Cập nhật {0}" msgid "Update Affiliate" msgstr "Cập nhật đối tác" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "Cập nhật sức chứa" @@ -11365,15 +11436,15 @@ msgstr "Cập nhật tên và mô tả sự kiện" msgid "Update event name, description and dates" msgstr "Cập nhật tên sự kiện, mô tả và ngày" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "Cập nhật nhãn" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "Cập nhật địa điểm" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "Cập nhật hồ sơ" @@ -11385,19 +11456,19 @@ msgstr "Cập nhật: {subjectTitle} — thay đổi lịch trình" msgid "Update: {subjectTitle} — session time changed" msgstr "Cập nhật: {subjectTitle} — đã thay đổi thời gian buổi" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "Đã cập nhật {count} ngày" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "Đã cập nhật sức chứa cho {count} ngày" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "Đã cập nhật nhãn cho {count} ngày" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "Đã cập nhật địa điểm cho {count} buổi" @@ -11507,14 +11578,14 @@ msgstr "Quản lý người dùng" msgid "Users" msgstr "Người dùng" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "Người dùng có thể thay đổi email của họ trong <0>Cài đặt hồ sơ" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "UTC" @@ -11526,13 +11597,13 @@ msgstr "Phân tích UTM" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "Đang xác thực số VAT của bạn..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "Thuế VAT" @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "Mã số VAT" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "Số VAT" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "Số VAT không được chứa khoảng trắng" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "Số VAT phải bắt đầu bằng mã quốc gia 2 chữ cái theo sau là 8-15 ký tự chữ và số (ví dụ: DE123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "Số VAT đã được xác thực thành công" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "Xác thực số VAT không thành công" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "Xác thực số VAT không thành công. Vui lòng kiểm tra số VAT của bạn." @@ -11581,12 +11652,12 @@ msgstr "Thuế suất VAT" msgid "VAT registered" msgstr "Đã đăng ký VAT" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "Cài đặt VAT đã được lưu thành công" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "Cài đặt VAT đã được lưu. Chúng tôi đang xác thực số VAT của bạn ở chế độ nền." @@ -11594,15 +11665,15 @@ msgstr "Cài đặt VAT đã được lưu. Chúng tôi đang xác thực số V msgid "VAT settings updated" msgstr "Đã cập nhật cài đặt VAT" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "Xử lý VAT cho phí nền tảng" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "Xử lý VAT cho phí nền tảng: Doanh nghiệp có đăng ký VAT ở EU có thể sử dụng cơ chế đảo ngược (0% - Điều 196 của Chỉ thị VAT 2006/112/EC). Doanh nghiệp không đăng ký VAT sẽ bị tính VAT của Ireland ở mức 23%." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "Dịch vụ xác thực VAT tạm thời không khả dụng" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "VAT: chưa đăng ký" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "Tên địa điểm" msgid "Verification code" msgstr "Mã xác thực" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "Xác thực email" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "Xác minh email của bạn" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "Đang xác thực..." @@ -11655,8 +11735,7 @@ msgstr "Xem" msgid "View All" msgstr "Xem tất cả" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "Xem chi tiết của {0} {1}" msgid "View Event" msgstr "Xem sự kiện" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "Xem trang sự kiện" @@ -11729,8 +11808,8 @@ msgstr "Xem trên Google Maps" msgid "View Order" msgstr "Xem đơn hàng" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "Xem chi tiết đơn hàng" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "Đang chờ" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "Đang chờ thanh toán" @@ -11800,7 +11879,7 @@ msgstr "Danh sách chờ" msgid "Waitlist Enabled" msgstr "Đã bật danh sách chờ" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "Đề nghị danh sách chờ đã hết hạn" @@ -11808,7 +11887,7 @@ msgstr "Đề nghị danh sách chờ đã hết hạn" msgid "Waitlist triggered" msgstr "Đã kích hoạt danh sách chờ" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "Cảnh báo: Đây là cấu hình mặc định của hệ thống. Thay đổi sẽ ảnh hưởng đến tất cả các tài khoản không được chỉ định cấu hình cụ thể." @@ -11844,7 +11923,7 @@ msgstr "Chúng tôi không thể tìm thấy đơn hàng bạn đang tìm kiếm msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "Chúng tôi không thể tìm thấy vé bạn đang tìm kiếm. Liên kết có thể đã hết hạn hoặc chi tiết vé có thể đã thay đổi." -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "Chúng tôi không thể tìm thấy đơn hàng này. Nó có thể đã bị xóa." @@ -11860,7 +11939,7 @@ msgstr "Hiện không thể kết nối tới Stripe. Vui lòng thử lại sau msgid "We couldn't reorder the categories. Please try again." msgstr "Chúng tôi không thể sắp xếp lại các danh mục. Vui lòng thử lại." -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "Đã xảy ra sự cố khi tải trang này. Vui lòng thử lại." @@ -11881,6 +11960,10 @@ msgstr "Chúng tôi đề xuất kích thước 2160px bằng 1080px và kích t msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "Chúng tôi khuyến nghị kích thước 400px x 400px và dung lượng tối đa 5MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "Chúng tôi sử dụng cookie để giúp hiểu cách trang web được sử dụng và cải thiện trải nghiệm của bạn." @@ -11889,7 +11972,7 @@ msgstr "Chúng tôi sử dụng cookie để giúp hiểu cách trang web đư msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "Chúng tôi không thể xác nhận thanh toán của bạn. Vui lòng thử lại hoặc liên hệ với ban tổ chức." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "Chúng tôi không thể xác thực số VAT của bạn sau nhiều lần thử. Chúng tôi sẽ tiếp tục thử ở chế độ nền. Vui lòng kiểm tra lại sau." @@ -11897,16 +11980,16 @@ msgstr "Chúng tôi không thể xác thực số VAT của bạn sau nhiều l msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "Chúng tôi sẽ thông báo cho bạn qua email nếu có chỗ trống cho {productDisplayName}." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "Chúng tôi sẽ mở trình soạn tin nhắn với một mẫu được điền sẵn sau khi lưu. Bạn xem lại và gửi — không có gì được gửi tự động." -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "Chúng tôi sẽ gửi vé đến email này" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "Chúng tôi sẽ xác thực số VAT của bạn ở chế độ nền. Nếu có bất kỳ vấn đề nào, chúng tôi sẽ thông báo cho bạn." @@ -12003,7 +12086,7 @@ msgstr "Chào mừng bạn! Vui lòng đăng nhập để tiếp tục." msgid "Welcome back" msgstr "Chào mừng trở lại" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "Chào mừng trở lại{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "Sức khỏe" msgid "What are Tiered Products?" msgstr "Sản phẩm cấp bậc là gì?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "Thể loại là gì?" @@ -12143,6 +12226,10 @@ msgstr "Khi check-in đóng" msgid "When check-in opens" msgstr "Khi check-in mở" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "Khi được bật, hóa đơn sẽ được tạo cho các đơn hàng vé. Hóa đơn sẽ được gửi kèm với email xác nhận đơn hàng. Người tham dự cũng có thể tải hóa đơn của họ từ trang xác nhận đơn hàng." @@ -12155,7 +12242,7 @@ msgstr "Khi được bật, các sự kiện mới sẽ cho phép người tham msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "Khi được bật, các sự kiện mới sẽ hiển thị hộp kiểm đăng ký tiếp thị trong quá trình thanh toán. Điều này có thể được ghi đè cho từng sự kiện." -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "Khi được bật, không có phí ứng dụng nào sẽ được tính cho các giao dịch Stripe Connect. Sử dụng cho các quốc gia không hỗ trợ phí ứng dụng." @@ -12191,11 +12278,11 @@ msgstr "Xem trước widget" msgid "Widget Settings" msgstr "Cài đặt widget" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "Làm việc" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "năm" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "Từ đầu năm đến nay" @@ -12247,11 +12334,11 @@ msgstr "năm" msgid "Yes" msgstr "Có" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "Có - Tôi có số đăng ký VAT EU hợp lệ" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "Có, hủy đơn hàng của tôi" @@ -12267,7 +12354,7 @@ msgstr "Bạn đang thay đổi email của mình thành <0>{0}." msgid "You are impersonating <0>{0} ({1})" msgstr "Bạn đang mạo danh <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "Bạn đang thực hiện hoàn tiền một phần. Khách hàng sẽ được hoàn lại {0} {1}." @@ -12292,7 +12379,7 @@ msgstr "Bạn có thể ghi đè điều này cho từng ngày sau." msgid "You can still manually offer tickets if needed." msgstr "Bạn vẫn có thể cung cấp vé thủ công nếu cần." -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "Bạn không thể lưu trữ ban tổ chức đang hoạt động cuối cùng trong tài khoản của mình." @@ -12313,11 +12400,11 @@ msgstr "Bạn không thể xóa danh mục cuối cùng." msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "Bạn không thể xóa cấp giá này vì đã có sản phẩm được bán cho cấp này. Thay vào đó, bạn có thể ẩn nó." -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "Bạn không thể chỉnh sửa vai trò hoặc trạng thái của chủ sở hữu tài khoản." -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "Bạn không thể hoàn trả một Đơn hàng được tạo thủ công." @@ -12333,11 +12420,11 @@ msgstr "Bạn đã chấp nhận lời mời này. Vui lòng đăng nhập để msgid "You have no pending email change." msgstr "Bạn không có thay đổi email đang chờ xử lý." -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "Bạn đã đạt đến giới hạn nhắn tin." -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "Bạn đã hết thời gian để hoàn thành đơn hàng của mình." @@ -12345,11 +12432,11 @@ msgstr "Bạn đã hết thời gian để hoàn thành đơn hàng của mình. msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "Bạn có thuế và phí được thêm vào một sản phẩm miễn phí. Bạn có muốn bỏ chúng?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "Bạn phải hiểu rằng email này không phải là email quảng cáo" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "Bạn phải xác nhận trách nhiệm của mình trước khi lưu" @@ -12409,7 +12496,7 @@ msgstr "Bạn sẽ cần tại một sản phẩm trước khi bạn có thể t msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "Bạn cần ít nhất một sản phẩm để bắt đầu. Miễn phí, trả phí hoặc để người dùng quyết định số tiền thanh toán." -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "Bạn đang thay đổi thời gian buổi" @@ -12421,7 +12508,7 @@ msgstr "Bạn sẽ tham gia {0}!" msgid "You're on the waitlist!" msgstr "Bạn đã được thêm vào danh sách chờ!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "Bạn đã được mời một suất!" @@ -12429,7 +12516,7 @@ msgstr "Bạn đã được mời một suất!" msgid "You've changed the session time" msgstr "Bạn đã thay đổi thời gian buổi" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "Tài khoản của bạn có giới hạn nhắn tin. Để tăng giới hạn của bạn, hãy liên hệ với chúng tôi tại" @@ -12457,11 +12544,11 @@ msgstr "Trang web tuyệt vời của bạn 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "Danh sách check-in của bạn đã được tạo thành công. Chia sẻ liên kết bên dưới với nhân viên check-in của bạn." -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "Đơn hàng hiện tại của bạn sẽ bị mất." -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "Thông tin của bạn" @@ -12469,7 +12556,7 @@ msgstr "Thông tin của bạn" msgid "Your Email" msgstr "Email của bạn" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "Yêu cầu email của bạn thay đổi thành <0>{0} đang chờ xử lý. " @@ -12497,7 +12584,7 @@ msgstr "Tên của bạn" msgid "Your new password must be at least 8 characters long." msgstr "Mật khẩu mới của bạn phải dài ít nhất 8 ký tự." -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "Đơn hàng của bạn" @@ -12509,7 +12596,7 @@ msgstr "Chi tiết đơn hàng của bạn đã được cập nhật. Email xá msgid "Your order has been cancelled" msgstr "Đơn hàng của bạn đã bị hủy" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "Đơn hàng của bạn đã bị hủy." @@ -12534,7 +12621,7 @@ msgstr "Địa chỉ nhà tổ chức của bạn" msgid "Your password" msgstr "Mật khẩu của bạn" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "Thanh toán của bạn đang xử lý." @@ -12542,11 +12629,11 @@ msgstr "Thanh toán của bạn đang xử lý." msgid "Your payment is protected with bank-level encryption" msgstr "Thanh toán của bạn được bảo vệ bằng mã hóa cấp ngân hàng" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "Thanh toán của bạn không thành công, vui lòng thử lại." -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "Thanh toán của bạn không thành công. Vui lòng thử lại." @@ -12554,7 +12641,7 @@ msgstr "Thanh toán của bạn không thành công. Vui lòng thử lại." msgid "Your Plan" msgstr "Gói của bạn" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "Hoàn lại tiền của bạn đang xử lý." @@ -12570,19 +12657,19 @@ msgstr "Vé của bạn cho" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "Vé của bạn vẫn còn hiệu lực — không cần làm gì trừ khi thời gian mới không phù hợp với bạn. Vui lòng trả lời email này nếu bạn có thắc mắc." -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "Vé của bạn đã được xác nhận." -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "Số VAT của bạn đang trong hàng đợi để xác thực" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "Số VAT của bạn sẽ được xác thực khi bạn lưu" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "Đề nghị danh sách chờ của bạn đã hết hạn và chúng tôi không thể hoàn tất đơn hàng của bạn. Vui lòng tham gia lại danh sách chờ để được thông báo khi có thêm chỗ trống." @@ -12590,19 +12677,19 @@ msgstr "Đề nghị danh sách chờ của bạn đã hết hạn và chúng t msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "mã zip / bưu điện" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "mã zip hoặc bưu điện" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "mã zip hoặc bưu điện" diff --git a/frontend/src/locales/zh-cn.js b/frontend/src/locales/zh-cn.js index e16350a6f9..7ad1f82cd5 100644 --- a/frontend/src/locales/zh-cn.js +++ b/frontend/src/locales/zh-cn.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'暂无内容可显示'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>签退成功\"],\"KMgp2+\":[[\"0\"],\"可用\"],\"Pmr5xp\":[\"成功创建 \",[\"0\"]],\"FImCSc\":[[\"0\"],\"更新成功\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" 天, \",[\"hours\"],\" 小时, \",[\"minutes\"],\" 分钟, 和 \",[\"seconds\"],\" 秒\"],\"f3RdEk\":[[\"hours\"],\" 小时, \",[\"minutes\"],\" 分钟, 和 \",[\"seconds\"],\" 秒\"],\"fyE7Au\":[[\"分\"],\"分钟和\",[\"秒\"],\"秒钟\"],\"NlQ0cx\":[[\"组织者名称\"],\"的首次活动\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0>请输入不含税费的价格。<1>税费可以在下方添加。\",\"ZjMs6e\":\"<0>该产品的可用数量<1>如果该产品有相关的<2>容量限制,此值可以被覆盖。\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 分 0 秒\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"缅因街 123 号\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"日期输入字段。非常适合询问出生日期等。\",\"6euFZ/\":[\"默认的\",[\"type\"],\"会自动应用于所有新产品。您可以为每个产品单独覆盖此设置。\"],\"SMUbbQ\":\"下拉式输入法只允许一个选择\",\"qv4bfj\":\"费用,如预订费或服务费\",\"POT0K/\":\"每个产品的固定金额。例如,每个产品$0.50\",\"f4vJgj\":\"多行文本输入\",\"OIPtI5\":\"产品价格的百分比。例如,3.5%的产品价格\",\"ZthcdI\":\"无折扣的促销代码可以用来显示隐藏的产品。\",\"AG/qmQ\":\"单选题有多个选项,但只能选择一个。\",\"h179TP\":\"活动的简短描述,将显示在搜索引擎结果中,并在社交媒体上分享时显示。默认情况下,将使用活动描述\",\"WKMnh4\":\"单行文本输入\",\"BHZbFy\":\"每个订单一个问题。例如,您的送货地址是什么?\",\"Fuh+dI\":\"每个产品一个问题。例如,您的T恤尺码是多少?\",\"RlJmQg\":\"标准税,如增值税或消费税\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"接受银行转账、支票或其他线下支付方式\",\"hrvLf4\":\"通过 Stripe 接受信用卡支付\",\"bfXQ+N\":\"接受邀请\",\"AeXO77\":\"账户\",\"lkNdiH\":\"账户名称\",\"Puv7+X\":\"账户设置\",\"OmylXO\":\"账户更新成功\",\"7L01XJ\":\"操作\",\"FQBaXG\":\"激活\",\"5T2HxQ\":\"激活日期\",\"F6pfE9\":\"活跃\",\"/PN1DA\":\"为此签到列表添加描述\",\"0/vPdA\":\"添加有关与会者的任何备注。这些将不会对与会者可见。\",\"Or1CPR\":\"添加有关与会者的任何备注...\",\"l3sZO1\":\"添加关于订单的备注。这些信息不会对客户可见。\",\"xMekgu\":\"添加关于订单的备注...\",\"PGPGsL\":\"添加描述\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"添加线下支付的说明(例如,银行转账详情、支票寄送地址、付款截止日期)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"添加新内容\",\"TZxnm8\":\"添加选项\",\"24l4x6\":\"添加产品\",\"8q0EdE\":\"将产品添加到类别\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"加税或费用\",\"goOKRY\":\"增加层级\",\"oZW/gT\":\"添加到日历\",\"pn5qSs\":\"附加信息\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"地址\",\"NY/x1b\":\"地址第 1 行\",\"POdIrN\":\"地址 1\",\"cormHa\":\"地址第 2 行\",\"gwk5gg\":\"地址第 2 行\",\"U3pytU\":\"管理员\",\"HLDaLi\":\"管理员用户可以完全访问事件和账户设置。\",\"W7AfhC\":\"本次活动的所有与会者\",\"cde2hc\":\"所有产品\",\"5CQ+r0\":\"允许与未支付订单关联的参与者签到\",\"ipYKgM\":\"允许搜索引擎索引\",\"LRbt6D\":\"允许搜索引擎索引此事件\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"令人惊叹, 活动, 关键词...\",\"hehnjM\":\"金额\",\"R2O9Rg\":[\"支付金额 (\",[\"0\"],\")\"],\"V7MwOy\":\"加载页面时出现错误\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"出现意外错误。\",\"byKna+\":\"出现意外错误。请重试。\",\"ubdMGz\":\"产品持有者的任何查询都将发送到此电子邮件地址。此地址还将用作从此活动发送的所有电子邮件的“回复至”地址\",\"aAIQg2\":\"外观\",\"Ym1gnK\":\"应用\",\"sy6fss\":[\"适用于\",[\"0\"],\"个产品\"],\"kadJKg\":\"适用于1个产品\",\"DB8zMK\":\"应用\",\"GctSSm\":\"应用促销代码\",\"ARBThj\":[\"将此\",[\"type\"],\"应用于所有新产品\"],\"S0ctOE\":\"归档活动\",\"TdfEV7\":\"已归档\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"您确定要激活该与会者吗?\",\"TvkW9+\":\"您确定要归档此活动吗?\",\"/CV2x+\":\"您确定要取消该与会者吗?这将使其门票作废\",\"YgRSEE\":\"您确定要删除此促销代码吗?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"您确定要将此活动设为草稿吗?这将使公众无法看到该活动\",\"mEHQ8I\":\"您确定要将此事件公开吗?这将使事件对公众可见\",\"s4JozW\":\"您确定要恢复此活动吗?它将作为草稿恢复。\",\"vJuISq\":\"您确定要删除此容量分配吗?\",\"baHeCz\":\"您确定要删除此签到列表吗?\",\"LBLOqH\":\"每份订单询问一次\",\"wu98dY\":\"每个产品询问一次\",\"ss9PbX\":\"参与者\",\"m0CFV2\":\"与会者详情\",\"QKim6l\":\"未找到参与者\",\"R5IT/I\":\"与会者备注\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"参会者票\",\"9SZT4E\":\"参与者\",\"iPBfZP\":\"注册的参会者\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"自动调整大小\",\"vZ5qKF\":\"根据内容自动调整小部件高度。禁用时,小部件将填充容器的高度。\",\"4lVaWA\":\"等待线下付款\",\"2rHwhl\":\"等待线下付款\",\"3wF4Q/\":\"等待付款\",\"ioG+xt\":\"等待付款\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"返回活动页面\",\"VCoEm+\":\"返回登录\",\"k1bLf+\":\"背景颜色\",\"I7xjqg\":\"背景类型\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"账单地址\",\"/xC/im\":\"账单设置\",\"rp/zaT\":\"巴西葡萄牙语\",\"whqocw\":\"注册即表示您同意我们的<0>服务条款和<1>隐私政策。\",\"bcCn6r\":\"计算类型\",\"+8bmSu\":\"加利福尼亚州\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"取消\",\"Gjt/py\":\"取消更改电子邮件\",\"tVJk4q\":\"取消订单\",\"Os6n2a\":\"取消订单\",\"Mz7Ygx\":[\"取消订单 \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"已取消\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"容量\",\"V6Q5RZ\":\"容量分配创建成功\",\"k5p8dz\":\"容量分配删除成功\",\"nDBs04\":\"容量管理\",\"ddha3c\":\"类别允许您将产品分组。例如,您可以有一个“门票”类别和另一个“商品”类别。\",\"iS0wAT\":\"类别帮助您组织产品。此标题将在公共活动页面上显示。\",\"eorM7z\":\"类别重新排序成功。\",\"3EXqwa\":\"类别创建成功\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"更改密码\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"签到 \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"签到并标记订单为已付款\",\"QYLpB4\":\"仅签到\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"看看这个活动吧!\",\"gXcPxc\":\"签到\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"签到列表删除成功\",\"+hBhWk\":\"签到列表已过期\",\"mBsBHq\":\"签到列表未激活\",\"vPqpQG\":\"未找到签到列表\",\"tejfAy\":\"签到列表\",\"hD1ocH\":\"签到链接已复制到剪贴板\",\"CNafaC\":\"复选框选项允许多重选择\",\"SpabVf\":\"复选框\",\"CRu4lK\":\"已签到\",\"znIg+z\":\"结账\",\"1WnhCL\":\"结账设置\",\"6imsQS\":\"简体中文\",\"JjkX4+\":\"选择背景颜色\",\"/Jizh9\":\"选择账户\",\"3wV73y\":\"城市\",\"FG98gC\":\"清除搜索文本\",\"EYeuMv\":\"click here\",\"sby+1/\":\"点击复制\",\"yz7wBu\":\"关闭\",\"62Ciis\":\"关闭侧边栏\",\"EWPtMO\":\"代码\",\"ercTDX\":\"代码长度必须在 3 至 50 个字符之间\",\"oqr9HB\":\"当活动页面初始加载时折叠此产品\",\"jZlrte\":\"颜色\",\"Vd+LC3\":\"颜色必须是有效的十六进制颜色代码。例如#ffffff\",\"1HfW/F\":\"颜色\",\"VZeG/A\":\"即将推出\",\"yPI7n9\":\"以逗号分隔的描述活动的关键字。搜索引擎将使用这些关键字来帮助对活动进行分类和索引\",\"NPZqBL\":\"完整订单\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"完成付款\",\"qqWcBV\":\"已完成\",\"6HK5Ct\":\"已完成订单\",\"NWVRtl\":\"已完成订单\",\"DwF9eH\":\"组件代码\",\"Tf55h7\":\"已配置折扣\",\"7VpPHA\":\"确认\",\"ZaEJZM\":\"确认电子邮件更改\",\"yjkELF\":\"确认新密码\",\"xnWESi\":\"确认密码\",\"p2/GCq\":\"确认密码\",\"wnDgGj\":\"确认电子邮件地址...\",\"pbAk7a\":\"连接条纹\",\"UMGQOh\":\"与 Stripe 连接\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"连接详情\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"继续\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"继续按钮文字\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"复制的\",\"T5rdis\":\"复制到剪贴板\",\"he3ygx\":\"复制\",\"r2B2P8\":\"复制签到链接\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"复制链接\",\"E6nRW7\":\"复制 URL\",\"JNCzPW\":\"国家\",\"IF7RiR\":\"封面\",\"hYgDIe\":\"创建\",\"b9XOHo\":[\"创建 \",[\"0\"]],\"k9RiLi\":\"创建一个产品\",\"6kdXbW\":\"创建促销代码\",\"n5pRtF\":\"创建票单\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"创建一个组织者\",\"ipP6Ue\":\"创建与会者\",\"VwdqVy\":\"创建容量分配\",\"EwoMtl\":\"创建类别\",\"XletzW\":\"创建类别\",\"WVbTwK\":\"创建签到列表\",\"uN355O\":\"创建活动\",\"BOqY23\":\"创建新的\",\"kpJAeS\":\"创建组织器\",\"a0EjD+\":\"创建产品\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"创建促销代码\",\"B3Mkdt\":\"创建问题\",\"UKfi21\":\"创建税费\",\"d+F6q9\":\"已创建\",\"Q2lUR2\":\"货币\",\"DCKkhU\":\"当前密码\",\"uIElGP\":\"自定义地图 URL\",\"UEqXyt\":\"自定义范围\",\"876pfE\":\"客户\",\"QOg2Sf\":\"自定义此事件的电子邮件和通知设置\",\"Y9Z/vP\":\"定制活动主页和结账信息\",\"2E2O5H\":\"自定义此事件的其他设置\",\"iJhSxe\":\"自定义此事件的搜索引擎优化设置\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"危险区\",\"ZQKLI1\":\"危险区\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"日期\",\"JvUngl\":\"日期和时间\",\"JJhRbH\":\"第一天容量\",\"cnGeoo\":\"删除\",\"jRJZxD\":\"删除容量\",\"VskHIx\":\"删除类别\",\"Qrc8RZ\":\"删除签到列表\",\"WHf154\":\"删除代码\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"说明\",\"YC3oXa\":\"签到工作人员的描述\",\"URmyfc\":\"详细信息\",\"1lRT3t\":\"禁用此容量将跟踪销售情况,但不会在达到限制时停止销售\",\"H6Ma8Z\":\"折扣\",\"ypJ62C\":\"折扣率\",\"3LtiBI\":[[\"0\"],\"中的折扣\"],\"C8JLas\":\"折扣类型\",\"1QfxQT\":\"关闭\",\"DZlSLn\":\"文档标签\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"捐赠 / 自由定价产品\",\"OvNbls\":\"下载 .ics\",\"kodV18\":\"下载 CSV\",\"CELKku\":\"下载发票\",\"LQrXcu\":\"下载发票\",\"QIodqd\":\"下载二维码\",\"yhjU+j\":\"正在下载发票\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"下拉选择\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"复制活动\",\"3ogkAk\":\"复制活动\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"复制选项\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"早起的鸟儿\",\"ePK91l\":\"编辑\",\"N6j2JH\":[\"编辑 \",[\"0\"]],\"kBkYSa\":\"编辑容量\",\"oHE9JT\":\"编辑容量分配\",\"j1Jl7s\":\"编辑类别\",\"FU1gvP\":\"编辑签到列表\",\"iFgaVN\":\"编辑代码\",\"jrBSO1\":\"编辑组织器\",\"tdD/QN\":\"编辑产品\",\"n143Tq\":\"编辑产品类别\",\"9BdS63\":\"编辑促销代码\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"编辑问题\",\"poTr35\":\"编辑用户\",\"GTOcxw\":\"编辑用户\",\"pqFrv2\":\"例如2.50 换 2.50\",\"3yiej1\":\"例如23.5 表示 23.5%\",\"O3oNi5\":\"电子邮件\",\"VxYKoK\":\"电子邮件和通知设置\",\"ATGYL1\":\"电子邮件地址\",\"hzKQCy\":\"电子邮件地址\",\"HqP6Qf\":\"电子邮件更改已成功取消\",\"mISwW1\":\"电子邮件更改待定\",\"APuxIE\":\"重新发送电子邮件确认\",\"YaCgdO\":\"成功重新发送电子邮件确认\",\"jyt+cx\":\"电子邮件页脚信息\",\"I6F3cp\":\"电子邮件未经验证\",\"NTZ/NX\":\"嵌入代码\",\"4rnJq4\":\"嵌入脚本\",\"8oPbg1\":\"启用发票功能\",\"j6w7d/\":\"启用此容量以在达到限制时停止产品销售\",\"VFv2ZC\":\"结束日期\",\"237hSL\":\"完工\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"英语\",\"MhVoma\":\"输入不含税费的金额。\",\"SlfejT\":\"错误\",\"3Z223G\":\"确认电子邮件地址出错\",\"a6gga1\":\"确认更改电子邮件时出错\",\"5/63nR\":\"欧元\",\"0pC/y6\":\"活动\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"活动日期\",\"0Zptey\":\"事件默认值\",\"QcCPs8\":\"活动详情\",\"6fuA9p\":\"事件成功复制\",\"AEuj2m\":\"活动主页\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"活动地点和场地详情\",\"OopDbA\":\"Event page\",\"4/If97\":\"活动状态更新失败。请稍后再试\",\"btxLWj\":\"事件状态已更新\",\"nMU2d3\":\"活动链接\",\"tst44n\":\"活动\",\"sZg7s1\":\"过期日期\",\"KnN1Tu\":\"到期\",\"uaSvqt\":\"有效期\",\"GS+Mus\":\"出口\",\"9xAp/j\":\"取消与会者失败\",\"ZpieFv\":\"取消订单失败\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"下载发票失败。请重试。\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"加载签到列表失败\",\"ZQ15eN\":\"重新发送票据电子邮件失败\",\"ejXy+D\":\"产品排序失败\",\"PLUB/s\":\"费用\",\"/mfICu\":\"费用\",\"LyFC7X\":\"筛选订单\",\"cSev+j\":\"筛选器\",\"CVw2MU\":[\"筛选器 (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"第一张发票号码\",\"V1EGGU\":\"姓名\",\"kODvZJ\":\"姓名\",\"S+tm06\":\"名字必须在 1 至 50 个字符之间\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"首次使用\",\"TpqW74\":\"固定式\",\"irpUxR\":\"固定金额\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"忘记密码?\",\"2POOFK\":\"免费\",\"P/OAYJ\":\"免费产品\",\"vAbVy9\":\"免费产品,无需付款信息\",\"nLC6tu\":\"法语\",\"Weq9zb\":\"常规\",\"DDcvSo\":\"德国\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"返回个人资料\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"谷歌日历\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"销售总额\",\"yRg26W\":\"总销售额\",\"R4r4XO\":\"宾客\",\"26pGvx\":\"有促销代码吗?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"这是如何在应用程序中使用该组件的示例。\",\"Y1SSqh\":\"这是您可以用来在应用程序中嵌入小部件的 React 组件。\",\"QuhVpV\":[\"你好 \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"隐藏于公众视线之外\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"隐藏问题只有活动组织者可以看到,客户看不到。\",\"vLyv1R\":\"隐藏\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"在销售结束日期后隐藏产品\",\"06s3w3\":\"在销售开始日期前隐藏产品\",\"axVMjA\":\"除非用户有适用的促销代码,否则隐藏产品\",\"ySQGHV\":\"售罄时隐藏产品\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"对客户隐藏此产品\",\"Da29Y6\":\"隐藏此问题\",\"fvDQhr\":\"向用户隐藏此层级\",\"lNipG+\":\"隐藏产品将防止用户在活动页面上看到它。\",\"ZOBwQn\":\"主页设计\",\"PRuBTd\":\"主页设计器\",\"YjVNGZ\":\"主页预览\",\"c3E/kw\":\"荷马\",\"8k8Njd\":\"客户有多少分钟来完成订单。我们建议至少 15 分钟\",\"ySxKZe\":\"这个代码可以使用多少次?\",\"dZsDbK\":[\"HTML字符限制已超出:\",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"我同意<0>条款和条件。\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"如果启用,登记工作人员可以将与会者标记为已登记或将订单标记为已支付并登记与会者。如果禁用,关联未支付订单的与会者无法登记。\",\"muXhGi\":\"如果启用,当有新订单时,组织者将收到电子邮件通知\",\"6fLyj/\":\"如果您没有要求更改密码,请立即更改密码。\",\"n/ZDCz\":\"图像已成功删除\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"图片上传成功\",\"VyUuZb\":\"图片网址\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"不活动\",\"T0K0yl\":\"非活动用户无法登录。\",\"kO44sp\":\"包含您的在线活动的连接详细信息。这些信息将在订单摘要页面和参会者门票页面显示。\",\"FlQKnG\":\"价格中包含税费\",\"Vi+BiW\":[\"包括\",[\"0\"],\"个产品\"],\"lpm0+y\":\"包括1个产品\",\"UiAk5P\":\"插入图片\",\"OyLdaz\":\"再次发出邀请!\",\"HE6KcK\":\"撤销邀请!\",\"SQKPvQ\":\"邀请用户\",\"bKOYkd\":\"发票下载成功\",\"alD1+n\":\"发票备注\",\"kOtCs2\":\"发票编号\",\"UZ2GSZ\":\"发票设置\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"项目\",\"KFXip/\":\"约翰\",\"XcgRvb\":\"约翰逊\",\"87a/t/\":\"标签\",\"vXIe7J\":\"语言\",\"2LMsOq\":\"过去 12 个月\",\"vfe90m\":\"过去 14 天\",\"aK4uBd\":\"过去 24 小时\",\"uq2BmQ\":\"过去 30 天\",\"bB6Ram\":\"过去 48 小时\",\"VlnB7s\":\"过去 6 个月\",\"ct2SYD\":\"过去 7 天\",\"XgOuA7\":\"过去 90 天\",\"I3yitW\":\"最后登录\",\"1ZaQUH\":\"姓氏\",\"UXBCwc\":\"姓氏\",\"tKCBU0\":\"最近一次使用\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"留空以使用默认词“发票”\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"加载中...\",\"wJijgU\":\"地点\",\"sQia9P\":\"登录\",\"zUDyah\":\"登录\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"注销\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"在结账时强制要求填写账单地址\",\"MU3ijv\":\"将此问题作为必答题\",\"wckWOP\":\"管理\",\"onpJrA\":\"管理与会者\",\"n4SpU5\":\"管理活动\",\"WVgSTy\":\"管理订单\",\"1MAvUY\":\"管理此活动的支付和发票设置。\",\"cQrNR3\":\"管理简介\",\"AtXtSw\":\"管理可以应用于您的产品的税费\",\"ophZVW\":\"管理机票\",\"DdHfeW\":\"管理账户详情和默认设置\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"管理用户及其权限\",\"1m+YT2\":\"在顾客结账前,必须回答必填问题。\",\"Dim4LO\":\"手动添加与会者\",\"e4KdjJ\":\"手动添加与会者\",\"vFjEnF\":\"标记为已支付\",\"g9dPPQ\":\"每份订单的最高限额\",\"l5OcwO\":\"与会者留言\",\"Gv5AMu\":\"留言参与者\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"留言买家\",\"tNZzFb\":\"消息内容\",\"lYDV/s\":\"给个别与会者留言\",\"V7DYWd\":\"发送的信息\",\"t7TeQU\":\"信息\",\"xFRMlO\":\"每次订购的最低数量\",\"QYcUEf\":\"最低价格\",\"RDie0n\":\"其他\",\"mYLhkl\":\"杂项设置\",\"KYveV8\":\"多行文本框\",\"VD0iA7\":\"多种价格选项。非常适合早鸟产品等。\",\"/bhMdO\":\"我的精彩活动描述\",\"vX8/tc\":\"我的精彩活动标题...\",\"hKtWk2\":\"我的简介\",\"fj5byd\":\"不适用\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"名称\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"导航至与会者\",\"qqeAJM\":\"从不\",\"7vhWI8\":\"新密码\",\"1UzENP\":\"否\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"没有可显示的已归档活动。\",\"q2LEDV\":\"未找到此订单的参会者。\",\"zlHa5R\":\"尚未向此订单添加参会者。\",\"Wjz5KP\":\"无与会者\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"没有容量分配\",\"a/gMx2\":\"没有签到列表\",\"tMFDem\":\"无可用数据\",\"6Z/F61\":\"无数据显示。请选择日期范围\",\"fFeCKc\":\"无折扣\",\"HFucK5\":\"没有可显示的已结束活动。\",\"yAlJXG\":\"无事件显示\",\"GqvPcv\":\"没有可用筛选器\",\"KPWxKD\":\"无信息显示\",\"J2LkP8\":\"无订单显示\",\"RBXXtB\":\"当前没有可用的支付方式。请联系活动组织者以获取帮助。\",\"ZWEfBE\":\"无需支付\",\"ZPoHOn\":\"此参会者没有关联的产品。\",\"Ya1JhR\":\"此类别中没有可用的产品。\",\"FTfObB\":\"尚无产品\",\"+Y976X\":\"无促销代码显示\",\"MAavyl\":\"此与会者未回答任何问题。\",\"SnlQeq\":\"此订单尚未提出任何问题。\",\"Ev2r9A\":\"无结果\",\"gk5uwN\":\"没有搜索结果\",\"RHyZUL\":\"没有搜索结果。\",\"RY2eP1\":\"未加收任何税费。\",\"EdQY6l\":\"无\",\"OJx3wK\":\"不详\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"备注\",\"jtrY3S\":\"暂无显示内容\",\"hFwWnI\":\"通知设置\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"将新订单通知组织者\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"允许支付的天数(留空以从发票中省略付款条款)\",\"n86jmj\":\"号码前缀\",\"mwe+2z\":\"线下订单在标记为已支付之前不会反映在活动统计中。\",\"dWBrJX\":\"线下支付失败。请重试或联系活动组织者。\",\"fcnqjw\":\"离线支付说明\",\"+eZ7dp\":\"线下支付\",\"ojDQlR\":\"线下支付信息\",\"u5oO/W\":\"线下支付设置\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"销售中\",\"Ug4SfW\":\"创建事件后,您就可以在这里看到它。\",\"ZxnK5C\":\"一旦开始收集数据,您将在这里看到。\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"持续进行\",\"z+nuVJ\":\"线上活动\",\"WKHW0N\":\"在线活动详情\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"打开签到页面\",\"OdnLE4\":\"打开侧边栏\",\"ZZEYpT\":[\"方案 \",[\"i\"]],\"oPknTP\":\"所有发票上显示的可选附加信息(例如,付款条款、逾期付款费用、退货政策)\",\"OrXJBY\":\"发票编号的可选前缀(例如,INV-)\",\"0zpgxV\":\"选项\",\"BzEFor\":\"或\",\"UYUgdb\":\"订购\",\"mm+eaX\":\"订单 #\",\"B3gPuX\":\"取消订单\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"订购日期\",\"Tol4BF\":\"订购详情\",\"WbImlQ\":\"订单已取消,并已通知订单所有者。\",\"nAn4Oe\":\"订单已标记为已支付\",\"uzEfRz\":\"订单备注\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"订购参考\",\"acIJ41\":\"订单状态\",\"GX6dZv\":\"订单摘要\",\"tDTq0D\":\"订单超时\",\"1h+RBg\":\"订单\",\"3y+V4p\":\"组织地址\",\"GVcaW6\":\"组织详细信息\",\"nfnm9D\":\"组织名称\",\"G5RhpL\":\"主办方\",\"mYygCM\":\"需要组织者\",\"Pa6G7v\":\"组织者姓名\",\"l894xP\":\"组织者只能管理活动和产品。他们无法管理用户、账户设置或账单信息。\",\"fdjq4c\":\"内边距\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"页面未找到\",\"QbrUIo\":\"页面浏览量\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"付讫\",\"HVW65c\":\"付费产品\",\"ZfxaB4\":\"部分退款\",\"8ZsakT\":\"密码\",\"TUJAyx\":\"密码必须至少包含 8 个字符\",\"vwGkYB\":\"密码必须至少包含 8 个字符\",\"BLTZ42\":\"密码重置成功。请使用新密码登录。\",\"f7SUun\":\"密码不一样\",\"aEDp5C\":\"将此粘贴到您希望小部件显示的位置。\",\"+23bI/\":\"帕特里克\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"付款方式\",\"Lg+ewC\":\"支付和发票\",\"DZjk8u\":\"支付和发票设置\",\"lflimf\":\"付款期限\",\"JhtZAK\":\"付款失败\",\"JEdsvQ\":\"支付说明\",\"bLB3MJ\":\"支付方式\",\"QzmQBG\":\"支付提供商\",\"lsxOPC\":\"已收到付款\",\"wJTzyi\":\"支付状态\",\"xgav5v\":\"付款成功!\",\"R29lO5\":\"付款条款\",\"/roQKz\":\"百分比\",\"vPJ1FI\":\"百分比 金额\",\"xdA9ud\":\"将此放置在您网站的 中。\",\"blK94r\":\"请至少添加一个选项\",\"FJ9Yat\":\"请检查所提供的信息是否正确\",\"TkQVup\":\"请检查您的电子邮件和密码并重试\",\"sMiGXD\":\"请检查您的电子邮件是否有效\",\"Ajavq0\":\"请检查您的电子邮件以确认您的电子邮件地址\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"请在新标签页中继续\",\"hcX103\":\"请创建一个产品\",\"cdR8d6\":\"请创建一张票\",\"x2mjl4\":\"请输入指向图像的有效图片网址。\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"请注意\",\"C63rRe\":\"请返回活动页面重新开始。\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"请选择至少一个产品\",\"igBrCH\":\"请验证您的电子邮件地址,以访问所有功能\",\"/IzmnP\":\"请稍候,我们正在准备您的发票...\",\"MOERNx\":\"葡萄牙语\",\"qCJyMx\":\"结账后信息\",\"g2UNkE\":\"技术支持\",\"Rs7IQv\":\"结账前信息\",\"rdUucN\":\"预览\",\"a7u1N9\":\"价格\",\"CmoB9j\":\"价格显示模式\",\"BI7D9d\":\"未设置价格\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"价格类型\",\"6RmHKN\":\"主色调\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"主要文字颜色\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"打印所有门票\",\"DKwDdj\":\"打印票\",\"K47k8R\":\"产品\",\"1JwlHk\":\"产品类别\",\"U61sAj\":\"产品类别更新成功。\",\"1USFWA\":\"产品删除成功\",\"4Y2FZT\":\"产品价格类型\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"产品销售\",\"U/R4Ng\":\"产品等级\",\"sJsr1h\":\"产品类型\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"产品\",\"N0qXpE\":\"产品\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"已售产品\",\"/u4DIx\":\"已售产品\",\"DJQEZc\":\"产品排序成功\",\"vERlcd\":\"简介\",\"kUlL8W\":\"成功更新个人资料\",\"cl5WYc\":[\"已使用促销 \",[\"promo_code\"],\" 代码\"],\"P5sgAk\":\"促销代码\",\"yKWfjC\":\"促销代码页面\",\"RVb8Fo\":\"促销代码\",\"BZ9GWa\":\"促销代码可用于提供折扣、预售权限或为您的活动提供特殊权限。\",\"OP094m\":\"促销代码报告\",\"4kyDD5\":\"为此问题提供额外的背景或说明。可在此字段添加条款、\\n条件、指引或参与者回答前需要了解的任何重要信息。\",\"toutGW\":\"二维码\",\"LkMOWF\":\"可用数量\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"问题已删除\",\"avf0gk\":\"问题描述\",\"oQvMPn\":\"问题标题\",\"enzGAL\":\"问题\",\"ROv2ZT\":\"问与答\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"无线电选项\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"受援国\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"退款失败\",\"n10yGu\":\"退款订单\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"退款处理中\",\"xHpVRl\":\"退款状态\",\"/BI0y9\":\"退款\",\"fgLNSM\":\"注册\",\"9+8Vez\":\"剩余使用次数\",\"tasfos\":\"去除\",\"t/YqKh\":\"移除\",\"t9yxlZ\":\"报告\",\"prZGMe\":\"要求账单地址\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"重新发送电子邮件确认\",\"wIa8Qe\":\"重新发送邀请\",\"VeKsnD\":\"重新发送订单电子邮件\",\"dFuEhO\":\"重新发送门票邮件\",\"o6+Y6d\":\"重新发送...\",\"OfhWJH\":\"重置\",\"RfwZxd\":\"重置密码\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"恢复活动\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"返回活动页面\",\"8YBH95\":\"收入\",\"PO/sOY\":\"撤销邀请\",\"GDvlUT\":\"角色\",\"ELa4O9\":\"销售结束日期\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"销售开始日期\",\"hBsw5C\":\"销售结束\",\"kpAzPe\":\"销售开始\",\"P/wEOX\":\"旧金山\",\"tfDRzk\":\"节省\",\"IUwGEM\":\"保存更改\",\"U65fiW\":\"保存组织器\",\"UGT5vp\":\"保存设置\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"按与会者姓名、电子邮件或订单号搜索...\",\"+pr/FY\":\"按活动名称搜索...\",\"3zRbWw\":\"按姓名、电子邮件或订单号搜索...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"按名称搜索...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"搜索容量分配...\",\"r9M1hc\":\"搜索签到列表...\",\"+0Yy2U\":\"搜索产品\",\"YIix5Y\":\"搜索...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"次要颜色\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"次要文字颜色\",\"02ePaq\":[\"选择 \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"选择类别...\",\"kWI/37\":\"选择组织者\",\"ixIx1f\":\"选择产品\",\"3oSV95\":\"选择产品等级\",\"C4Y1hA\":\"选择产品\",\"hAjDQy\":\"选择状态\",\"QYARw/\":\"选择机票\",\"OMX4tH\":\"选择票\",\"DrwwNd\":\"选择时间段\",\"O/7I0o\":\"选择...\",\"JlFcis\":\"发送\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"发送信息\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"发送消息\",\"D7ZemV\":\"发送订单确认和票务电子邮件\",\"v1rRtW\":\"发送测试\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"搜索引擎优化说明\",\"/SIY6o\":\"搜索引擎优化关键词\",\"GfWoKv\":\"搜索引擎优化设置\",\"rXngLf\":\"搜索引擎优化标题\",\"/jZOZa\":\"服务费\",\"Bj/QGQ\":\"设定最低价格,用户可选择支付更高的价格\",\"L0pJmz\":\"设置发票编号的起始编号。一旦发票生成,就无法更改。\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"设置\",\"Z8lGw6\":\"分享\",\"B2V3cA\":\"分享活动\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"显示可用产品数量\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"显示更多\",\"izwOOD\":\"单独显示税费\",\"1SbbH8\":\"结账后显示给客户,在订单摘要页面。\",\"YfHZv0\":\"在顾客结账前向他们展示\",\"CBBcly\":\"显示常用地址字段,包括国家\",\"yTnnYg\":\"辛普森\",\"TNaCfq\":\"单行文本框\",\"+P0Cn2\":\"跳过此步骤\",\"YSEnLE\":\"史密斯\",\"lgFfeO\":\"售罄\",\"Mi1rVn\":\"售罄\",\"nwtY4N\":\"出了点问题\",\"GRChTw\":\"删除税费时出了问题\",\"YHFrbe\":\"出错了!请重试\",\"kf83Ld\":\"出问题了\",\"fWsBTs\":\"出错了。请重试。\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"对不起,此优惠代码不可用\",\"65A04M\":\"西班牙语\",\"mFuBqb\":\"固定价格的标准产品\",\"D3iCkb\":\"开始日期\",\"/2by1f\":\"州或地区\",\"uAQUqI\":\"状态\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"此活动未启用 Stripe 支付。\",\"UJmAAK\":\"主题\",\"X2rrlw\":\"小计\",\"zzDlyQ\":\"成功\",\"b0HJ45\":[\"成功!\",[\"0\"],\" 将很快收到一封电子邮件。\"],\"BJIEiF\":[\"成功 \",[\"0\"],\" 参会者\"],\"OtgNFx\":\"成功确认电子邮件地址\",\"IKwyaF\":\"成功确认电子邮件更改\",\"zLmvhE\":\"成功创建与会者\",\"gP22tw\":\"产品创建成功\",\"9mZEgt\":\"成功创建促销代码\",\"aIA9C4\":\"成功创建问题\",\"J3RJSZ\":\"成功更新与会者\",\"3suLF0\":\"容量分配更新成功\",\"Z+rnth\":\"签到列表更新成功\",\"vzJenu\":\"成功更新电子邮件设置\",\"7kOMfV\":\"成功更新活动\",\"G0KW+e\":\"成功更新主页设计\",\"k9m6/E\":\"成功更新主页设置\",\"y/NR6s\":\"成功更新位置\",\"73nxDO\":\"成功更新杂项设置\",\"4H80qv\":\"订单更新成功\",\"6xCBVN\":\"支付和发票设置已成功更新\",\"1Ycaad\":\"商品更新成功\",\"70dYC8\":\"成功更新促销代码\",\"F+pJnL\":\"成功更新搜索引擎设置\",\"DXZRk5\":\"100 号套房\",\"GNcfRk\":\"支持电子邮件\",\"uRfugr\":\"T恤衫\",\"JpohL9\":\"税收\",\"geUFpZ\":\"税费\",\"dFHcIn\":\"税务详情\",\"wQzCPX\":\"所有发票底部显示的税务信息(例如,增值税号、税务注册号)\",\"0RXCDo\":\"成功删除税费\",\"ZowkxF\":\"税收\",\"qu6/03\":\"税费\",\"gypigA\":\"促销代码无效\",\"5ShqeM\":\"您查找的签到列表不存在。\",\"QXlz+n\":\"事件的默认货币。\",\"mnafgQ\":\"事件的默认时区。\",\"o7s5FA\":\"与会者接收电子邮件的语言。\",\"NlfnUd\":\"您点击的链接无效。\",\"HsFnrk\":[[\"0\"],\"的最大产品数量是\",[\"1\"]],\"TSAiPM\":\"您要查找的页面不存在\",\"MSmKHn\":\"显示给客户的价格将包括税费。\",\"6zQOg1\":\"显示给客户的价格不包括税费。税费将单独显示\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"活动标题,将显示在搜索引擎结果中,并在社交媒体上分享时显示。默认情况下,将使用事件标题\",\"wDx3FF\":\"此活动没有可用产品\",\"pNgdBv\":\"此类别中没有可用产品\",\"rMcHYt\":\"退款正在处理中。请等待退款完成后再申请退款。\",\"F89D36\":\"标记订单为已支付时出错\",\"68Axnm\":\"处理您的请求时出现错误。请重试。\",\"mVKOW6\":\"发送信息时出现错误\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"此参与者有未付款的订单。\",\"mf3FrP\":\"此类别尚无任何产品。\",\"8QH2Il\":\"此类别对公众隐藏\",\"xxv3BZ\":\"此签到列表已过期\",\"Sa7w7S\":\"此签到列表已过期,不再可用于签到。\",\"Uicx2U\":\"此签到列表已激活\",\"1k0Mp4\":\"此签到列表尚未激活\",\"K6fmBI\":\"此签到列表尚未激活,不能用于签到。\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"这些信息将显示在支付页面、订单摘要页面和订单确认电子邮件中。\",\"XAHqAg\":\"这是一种常规产品,例如T恤或杯子。不发行门票\",\"CNk/ro\":\"这是一项在线活动\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"此信息将包含在本次活动发送的所有电子邮件的页脚中\",\"55i7Fa\":\"此消息仅在订单成功完成后显示。等待付款的订单不会显示此消息。\",\"RjwlZt\":\"此订单已付款。\",\"5K8REg\":\"此订单已退款。\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"此订单已取消。\",\"Q0zd4P\":\"此订单已过期。请重新开始。\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"此订单已完成。\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"此订购页面已不可用。\",\"i0TtkR\":\"这将覆盖所有可见性设置,并将该产品对所有客户隐藏。\",\"cRRc+F\":\"此产品无法删除,因为它与订单关联。您可以将其隐藏。\",\"3Kzsk7\":\"此产品为门票。购买后买家将收到门票\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"此重置密码链接无效或已过期。\",\"IV9xTT\":\"该用户未激活,因为他们没有接受邀请。\",\"5AnPaO\":\"入场券\",\"kjAL4v\":\"门票\",\"dtGC3q\":\"门票电子邮件已重新发送给与会者\",\"54q0zp\":\"门票\",\"xN9AhL\":[[\"0\"],\"级\"],\"jZj9y9\":\"分层产品\",\"8wITQA\":\"分层产品允许您为同一产品提供多种价格选项。这非常适合早鸟产品,或为不同人群提供不同的价格选项。\\\" # zh-cn\",\"nn3mSR\":\"剩余时间:\",\"s/0RpH\":\"使用次数\",\"y55eMd\":\"使用次数\",\"40Gx0U\":\"时区\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"工具\",\"72c5Qo\":\"总计\",\"YXx+fG\":\"折扣前总计\",\"NRWNfv\":\"折扣总金额\",\"BxsfMK\":\"总费用\",\"2bR+8v\":\"总销售额\",\"mpB/d9\":\"订单总额\",\"m3FM1g\":\"退款总额\",\"jEbkcB\":\"退款总额\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"总税额\",\"+zy2Nq\":\"类型\",\"FMdMfZ\":\"无法签到参与者\",\"bPWBLL\":\"无法签退参与者\",\"9+P7zk\":\"无法创建产品。请检查您的详细信息\",\"WLxtFC\":\"无法创建产品。请检查您的详细信息\",\"/cSMqv\":\"无法创建问题。请检查您的详细信息\",\"MH/lj8\":\"无法更新问题。请检查您的详细信息\",\"nnfSdK\":\"独立客户\",\"Mqy/Zy\":\"美国\",\"NIuIk1\":\"无限制\",\"/p9Fhq\":\"无限供应\",\"E0q9qH\":\"允许无限次使用\",\"h10Wm5\":\"未付款订单\",\"ia8YsC\":\"即将推出\",\"TlEeFv\":\"即将举行的活动\",\"L/gNNk\":[\"更新 \",[\"0\"]],\"+qqX74\":\"更新活动名称、说明和日期\",\"vXPSuB\":\"更新个人资料\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"链接\",\"UtDm3q\":\"复制到剪贴板的 URL\",\"e5lF64\":\"使用示例\",\"fiV0xj\":\"使用限制\",\"sGEOe4\":\"使用封面图片的模糊版本作为背景\",\"OadMRm\":\"使用封面图片\",\"7PzzBU\":\"用户\",\"yDOdwQ\":\"用户管理\",\"Sxm8rQ\":\"用户\",\"VEsDvU\":\"用户可在 <0>\\\"配置文件设置\\\" 中更改自己的电子邮件\",\"vgwVkd\":\"世界协调时\",\"khBZkl\":\"增值税\",\"E/9LUk\":\"地点名称\",\"jpctdh\":\"查看\",\"Pte1Hv\":\"查看参会者详情\",\"/5PEQz\":\"查看活动页面\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"在谷歌地图上查看\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP签到列表\",\"tF+VVr\":\"贵宾票\",\"2q/Q7x\":\"可见性\",\"vmOFL/\":\"我们无法处理您的付款。请重试或联系技术支持。\",\"45Srzt\":\"我们无法删除该类别。请再试一次。\",\"/DNy62\":[\"我们找不到与\",[\"0\"],\"匹配的任何门票\"],\"1E0vyy\":\"我们无法加载数据。请重试。\",\"NmpGKr\":\"我们无法重新排序类别。请再试一次。\",\"BJtMTd\":\"我们建议尺寸为 2160px x 1080px,文件大小不超过 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"我们无法确认您的付款。请重试或联系技术支持。\",\"Gspam9\":\"我们正在处理您的订单。请稍候...\",\"LuY52w\":\"欢迎加入!请登录以继续。\",\"dVxpp5\":[\"欢迎回来\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"什么是分层产品?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"什么是类别?\",\"gxeWAU\":\"此代码适用于哪些产品?\",\"hFHnxR\":\"此代码适用于哪些产品?(默认适用于所有产品)\",\"AeejQi\":\"此容量应适用于哪些产品?\",\"Rb0XUE\":\"您什么时候抵达?\",\"5N4wLD\":\"这是什么类型的问题?\",\"gyLUYU\":\"启用后,将为票务订单生成发票。发票将随订单确认邮件一起发送。参与\",\"D3opg4\":\"启用线下支付后,用户可以完成订单并收到门票。他们的门票将清楚地显示订单未支付,签到工具会通知签到工作人员订单是否需要支付。\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"哪些票应与此签到列表关联?\",\"S+OdxP\":\"这项活动由谁组织?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"这个问题应该问谁?\",\"VxFvXQ\":\"嵌入小部件\",\"v1P7Gm\":\"小部件设置\",\"b4itZn\":\"工作\",\"hqmXmc\":\"工作...\",\"+G/XiQ\":\"年度至今\",\"l75CjT\":\"是\",\"QcwyCh\":\"是的,移除它们\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"您正在将电子邮件更改为 <0>\",[\"0\"],\"。\"],\"gGhBmF\":\"您处于离线状态\",\"sdB7+6\":\"您可以创建一个促销代码,针对该产品\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"您无法更改产品类型,因为有与该产品关联的参会者。\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"您无法为未支付订单的与会者签到。此设置可在活动设置中更改。\",\"c9Evkd\":\"您不能删除最后一个类别。\",\"6uwAvx\":\"您无法删除此价格层,因为此层已有售出的产品。您可以将其隐藏。\",\"tFbRKJ\":\"不能编辑账户所有者的角色或状态。\",\"fHfiEo\":\"您不能退还手动创建的订单。\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"您可以访问多个账户。请选择一个继续。\",\"Z6q0Vl\":\"您已接受此邀请。请登录以继续。\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"您没有待处理的电子邮件更改。\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"您已超时,未能完成订单。\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"您必须确认此电子邮件并非促销邮件\",\"3ZI8IL\":\"您必须同意条款和条件\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"必须先创建机票,然后才能手动添加与会者。\",\"jE4Z8R\":\"您必须至少有一个价格等级\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"您必须手动将订单标记为已支付。这可以在订单管理页面上完成。\",\"L/+xOk\":\"在创建签到列表之前,您需要先获得票。\",\"Djl45M\":\"在您创建容量分配之前,您需要一个产品。\",\"y3qNri\":\"您需要至少一个产品才能开始。免费、付费或让用户决定支付金额。\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"您的账户名称会在活动页面和电子邮件中使用。\",\"veessc\":\"与会者注册参加活动后,就会出现在这里。您也可以手动添加与会者。\",\"Eh5Wrd\":\"您的精彩网站 🎉\",\"lkMK2r\":\"您的详细信息\",\"3ENYTQ\":[\"您要求将电子邮件更改为<0>\",[\"0\"],\"的申请正在处理中。请检查您的电子邮件以确认\"],\"yZfBoy\":\"您的信息已发送\",\"KSQ8An\":\"您的订单\",\"Jwiilf\":\"您的订单已被取消\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"您的订单一旦开始滚动,就会出现在这里。\",\"9TO8nT\":\"您的密码\",\"P8hBau\":\"您的付款正在处理中。\",\"UdY1lL\":\"您的付款未成功,请重试。\",\"fzuM26\":\"您的付款未成功。请重试。\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"您的退款正在处理中。\",\"IFHV2p\":\"您的入场券\",\"x1PPdr\":\"邮政编码\",\"BM/KQm\":\"邮政编码\",\"+LtVBt\":\"邮政编码\",\"25QDJ1\":\"- 点击发布\",\"WOyJmc\":\"- 点击取消发布\",\"ncwQad\":\"(空)\",\"B/gRsg\":\"(无)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" 已签到\"],\"3beCx0\":[[\"0\"],\" <0>已签到\"],\"S4PqS9\":[[\"0\"],\" 个活动的 Webhook\"],\"6MIiOI\":[\"剩余 \",[\"0\"]],\"COnw8D\":[[\"0\"],\" 标志\"],\"xG9N0H\":[\"已占用 \",[\"1\"],\" 个座位中的 \",[\"0\"],\" 个。\"],\"B7pZfX\":[[\"0\"],\" 位组织者\"],\"rZTf6P\":[\"剩余 \",[\"0\"],\" 个名额\"],\"/HkCs4\":[[\"0\"],\"张门票\"],\"dtXkP9\":[[\"0\"],\" 个即将到来的日期\"],\"30bTiU\":[\"已启用 \",[\"activeCount\"],\" 个\"],\"jTs4am\":[[\"appName\"],\" 标志\"],\"gbJOk9\":[\"已有 \",[\"attendeeCount\"],\" 位参与者报名此场次。\"],\"TjbIUI\":[[\"availableCount\"],\" / \",[\"totalCount\"],\" 可用\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" 已签到\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" 小时前\"],\"NRSLBe\":[[\"diffMin\"],\" 分钟前\"],\"iYfwJE\":[[\"diffSec\"],\" 秒前\"],\"OJnhhX\":[[\"eventCount\"],\" 个事件\"],\"mhZbzw\":[\"在受影响的场次中已有 \",[\"loadedAffectedAttendees\"],\" 位参与者报名。\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" 个票种\"],\"0cLzoF\":[[\"totalOccurrences\"],\" 个日期\"],\"AEGc4t\":[[\"0\"],\" 个日期共 \",[\"totalOccurrences\"],\" 个场次(每天 \",[\"1\",\"plural\",{\"one\":[\"#\",\" 个场次\"],\"other\":[\"#\",\" 个场次\"]}],\")\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+税费\",\"B1St2O\":\"<0>签到列表帮助您按日期、区域或票务类型管理活动入场。您可以将票务链接到特定列表,如VIP区域或第1天通行证,并与工作人员共享安全的签到链接。无需账户。签到适用于移动设备、桌面或平板电脑,使用设备相机或HID USB扫描仪。 \",\"v9VSIS\":\"<0>设置一个单一的总人数上限,同时适用于多个票种。<1>例如,如果你将<2>单日票和<3>全周末票关联起来,它们将共享同一个名额池。一旦达到上限,所有关联的票种将自动停止销售。\",\"vKXqag\":\"<0>这是所有日期的默认数量。每个日期的容量可在 <1>场次日程页面 进一步限制可用数量。\",\"ZnVt5v\":\"<0>Webhooks 可在事件发生时立即通知外部服务,例如,在注册时将新与会者添加到您的 CRM 或邮件列表,确保无缝自动化。<1>使用第三方服务,如 <2>Zapier、<3>IFTTT 或 <4>Make 来创建自定义工作流并自动化任务。\",\"xFTHZ5\":[\"≈ \",[\"0\"],\"(按当前汇率)\"],\"M2DyLc\":\"1 个活动的 Webhook\",\"6hIk/x\":\"受影响的场次中已有 1 位参与者报名。\",\"qOyE2U\":\"已有 1 位参与者报名此场次。\",\"943BwI\":\"结束日期后1天\",\"yj3N+g\":\"开始日期后1天\",\"Z3etYG\":\"活动前1天\",\"szSnlj\":\"活动前1小时\",\"yTsaLw\":\"1张门票\",\"nz96Ue\":\"1个票种\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"活动前1周\",\"09VFYl\":\"已提供 12 张门票\",\"HR/cvw\":\"示例街123号\",\"dgKxZ5\":\"支持 135+ 种货币和 40+ 种支付方式\",\"kMU5aM\":\"取消通知已发送至\",\"o++0qa\":\"时长变更\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"新的验证码已发送到您的邮箱\",\"sr2Je0\":\"开始/结束时间变更\",\"/z/bH1\":\"您组织者的简短描述,将展示给您的用户。\",\"aS0jtz\":\"已放弃\",\"uyJsf6\":\"关于\",\"JvuLls\":\"承担费用\",\"lk74+I\":\"承担费用\",\"1uJlG9\":\"强调色\",\"g3UF2V\":\"接受\",\"K5+3xg\":\"接受邀请\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"账户 · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"账户信息\",\"EHNORh\":\"账户未找到\",\"bPwFdf\":\"账户\",\"AhwTa1\":\"需要操作:需要提供增值税信息\",\"APyAR/\":\"活跃活动\",\"kCl6ja\":\"已启用的支付方式\",\"XJOV1Y\":\"活动记录\",\"0YEoxS\":\"添加日期\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"添加单个日期\",\"CjvTPJ\":\"添加另一个时间\",\"0XCduh\":\"至少添加一个时间\",\"/chGpa\":\"为在线活动添加连接信息。\",\"UWWRyd\":\"添加自定义问题以在结账时收集额外信息\",\"Z/dcxc\":\"添加日期\",\"Q219NT\":\"添加日期\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"添加地点\",\"VX6WUv\":\"添加地点\",\"GCQlV2\":\"如果每天有多个场次,请添加多个时间。\",\"7JF9w9\":\"添加问题\",\"NLbIb6\":\"仍要添加此参与者(覆盖容量限制)\",\"6PNlRV\":\"将此活动添加到您的日历\",\"BGD9Yt\":\"添加机票\",\"uIv4Op\":\"在您的公开活动页面和主办方主页添加跟踪像素。跟踪启用时,将向访客显示 Cookie 同意横幅。\",\"QN2F+7\":\"添加 Webhook\",\"NsWqSP\":\"添加您的社交媒体账号和网站链接。这些信息将显示在您的公开组织者页面上。\",\"bVjDs9\":\"额外费用\",\"MKqSg4\":\"需要管理员访问权限\",\"0Zypnp\":\"管理仪表板\",\"YAV57v\":\"推广员\",\"I+utEq\":\"推广码无法更改\",\"/jHBj5\":\"推广员创建成功\",\"uCFbG2\":\"推广员删除成功\",\"ld8I+f\":\"推广联盟计划\",\"a41PKA\":\"将跟踪推广员销售\",\"mJJh2s\":\"将不会跟踪推广员销售。这将停用该推广员。\",\"jabmnm\":\"推广员更新成功\",\"CPXP5Z\":\"合作伙伴\",\"9Wh+ug\":\"推广员已导出\",\"3cqmut\":\"推广员帮助您跟踪合作伙伴和网红产生的销售。创建推广码并分享以监控绩效。\",\"z7GAMJ\":\"全部\",\"N40H+G\":\"全部\",\"7rLTkE\":\"所有已归档活动\",\"gKq1fa\":\"所有参与者\",\"63gRoO\":\"所选场次的所有参与者\",\"uWxIoH\":\"此场次的所有参与者\",\"pMLul+\":\"所有货币\",\"sgUdRZ\":\"所有日期\",\"e4q4uO\":\"所有日期\",\"ZS/D7f\":\"所有已结束活动\",\"QsYjci\":\"所有活动\",\"31KB8w\":\"所有失败任务已删除\",\"D2g7C7\":\"所有任务已排队等待重试\",\"B4RFBk\":\"所有匹配的日期\",\"F1/VgK\":\"所有场次\",\"OpWjMq\":\"所有场次\",\"Sxm1lO\":\"所有状态\",\"dr7CWq\":\"所有即将到来的活动\",\"GpT6Uf\":\"允许参与者通过订单确认邮件中的安全链接更新他们的门票信息(姓名、电子邮件)。\",\"F3mW5G\":\"允许客户在该产品售罄时加入候补名单\",\"c4uJfc\":\"快完成了!我们正在等待您的付款处理。这只需要几秒钟。\",\"ocS8eq\":[\"已有账户?<0>\",[\"0\"],\"\"],\"uCuEqI\":\"已入场\",\"/H326L\":\"已退款\",\"USEpOK\":\"已在其他组织者上使用 Stripe?重复使用该连接。\",\"RtxQTF\":\"同时取消此订单\",\"jkNgQR\":\"同时退款此订单\",\"xYqsHg\":\"始终可用\",\"Wvrz79\":\"支付金额\",\"Zkymb9\":\"与此推广员关联的邮箱。推广员不会收到通知。\",\"vRznIT\":\"检查导出状态时发生错误。\",\"eusccx\":\"在突出显示的产品上显示的可选消息,例如\\\"热卖中🔥\\\"或\\\"超值优惠\\\"\",\"5GJuNp\":[\"还有 \",[\"0\"],\" 个...\"],\"QNrkms\":\"答案更新成功。\",\"+qygei\":\"回答\",\"GK7Lnt\":\"结账时提供的回答(例如餐点选择)\",\"lE8PgT\":\"您手动自定义的任何日期都将保留。\",\"vP3Nzg\":[\"适用于当前页面已加载的 \",[\"0\"],\" 个未取消的日期。\"],\"kkVyZZ\":\"适用于未登录打开签到链接的人。已登录的团队成员始终可以看到全部内容。\",\"je4muG\":[\"适用于本活动中每一个未取消的 \",[\"0\"],\" 日期 — 包括当前未加载的日期。\"],\"YIIQtt\":\"应用更改\",\"NzWX1Y\":\"应用于\",\"Ps5oDT\":\"应用于所有门票\",\"261RBr\":\"批准消息\",\"naCW6Z\":\"四月\",\"B495Gs\":\"归档\",\"5sNliy\":\"归档活动\",\"BrwnrJ\":\"归档主办方\",\"E5eghW\":\"归档此活动以向公众隐藏。您可以稍后恢复它。\",\"eqFkeI\":\"归档此主办方。这也将归档属于此主办方的所有活动。\",\"BzcxWv\":\"已归档的主办方\",\"9cQBd6\":\"您确定要归档此活动吗?它将不再对公众可见。\",\"Trnl3E\":\"您确定要归档此主办方吗?这也将归档属于此主办方的所有活动。\",\"wOvn+e\":[\"确定要取消 \",[\"count\"],\" 个日期吗?受影响的参与者将通过电子邮件收到通知。\"],\"GTxE0U\":\"确定要取消此日期吗?受影响的参与者将通过电子邮件收到通知。\",\"VkSk/i\":\"您确定要取消此定时消息吗?\",\"0aVEBY\":\"您确定要删除所有失败的任务吗?\",\"LchiNd\":\"您确定要删除此推广员吗?此操作无法撤销。\",\"vPeW/6\":\"确定要删除此配置吗?这可能会影响使用它的账户。\",\"h42Hc/\":\"确定要删除此日期吗?此操作无法撤销。\",\"JmVITJ\":\"确定要删除此模板吗?此操作无法撤消,邮件将回退到默认模板。\",\"aLS+A6\":\"确定要删除此模板吗?此操作无法撤消,邮件将回退到组织者或默认模板。\",\"5H3Z78\":\"您确定要删除此 Webhook 吗?\",\"147G4h\":\"您确定要离开吗?\",\"VDWChT\":\"您确定要将此组织者设为草稿吗?这样将使组织者页面对公众不可见。\",\"pWtQJM\":\"您确定要将此组织者设为公开吗?这样将使组织者页面对公众可见。\",\"EOqL/A\":\"您确定要向此人提供名额吗?他们将收到电子邮件通知。\",\"yAXqWW\":\"确定要永久删除此日期吗?此操作无法撤销。\",\"WFHOlF\":\"您确定要发布此活动吗?一旦发布,将对公众可见。\",\"4TNVdy\":\"您确定要发布此主办方资料吗?一旦发布,将对公众可见。\",\"8x0pUg\":\"您确定要从候补名单中移除此条目吗?\",\"cDtoWq\":[\"您确定要将订单确认重新发送到 \",[\"0\"],\" 吗?\"],\"xeIaKw\":[\"您确定要将门票重新发送到 \",[\"0\"],\" 吗?\"],\"BjbocR\":\"您确定要恢复此活动吗?\",\"7MjfcR\":\"您确定要恢复此主办方吗?\",\"ExDt3P\":\"您确定要取消发布此活动吗?它将不再对公众可见。\",\"5Qmxo/\":\"您确定要取消发布此主办方资料吗?它将不再对公众可见。\",\"Uqefyd\":\"您在欧盟注册了增值税吗?\",\"+QARA4\":\"艺术\",\"tLf3yJ\":\"由于您的企业位于爱尔兰,所有平台费用将自动适用23%的爱尔兰增值税。\",\"tMeVa/\":\"为每张购买的门票询问姓名和电子邮件\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"分配套餐\",\"xdiER7\":\"分配的级别\",\"F2rX0R\":\"必须选择至少一种事件类型\",\"BCmibk\":\"尝试次数\",\"6PecK3\":\"所有活动的出席率和签到率\",\"K2tp3v\":\"参与者\",\"AJ4rvK\":\"与会者已取消\",\"qvylEK\":\"与会者已创建\",\"Aspq3b\":\"参与者信息收集\",\"fpb0rX\":\"参与者信息已从订单复制\",\"0R3Y+9\":\"参会者邮箱\",\"94aQMU\":\"参与者信息\",\"KkrBiR\":\"参与者信息收集\",\"av+gjP\":\"参会者姓名\",\"sjPjOg\":\"参与者备注\",\"cosfD8\":\"参与者状态\",\"D2qlBU\":\"与会者已更新\",\"22BOve\":\"参与者更新成功\",\"x8Vnvf\":\"参与者的票不包含在此列表中\",\"/Ywywr\":\"参与者\",\"zLRobu\":\"位参与者已签到\",\"k3Tngl\":\"与会者已导出\",\"UoIRW8\":\"已注册参会者\",\"5UbY+B\":\"持有特定门票的与会者\",\"4HVzhV\":\"参与者:\",\"HVkhy2\":\"归因分析\",\"dMMjeD\":\"归因细分\",\"1oPDuj\":\"归因值\",\"DBHTm/\":\"八月\",\"JgREph\":\"自动提供已启用\",\"V7Tejz\":\"自动处理候补名单\",\"PZ7FTW\":\"根据背景颜色自动检测,但可以手动覆盖\",\"zlnTuI\":\"当有名额时,自动向候补名单上的下一位用户提供门票。如禁用,您可以在候补名单页面手动处理。\",\"csDS2L\":\"可用\",\"clF06r\":\"可退款\",\"NB5+UG\":\"可用令牌\",\"L+wGOG\":\"待处理\",\"qcw2OD\":\"待付款\",\"kNmmvE\":\"精彩活动有限公司\",\"iH8pgl\":\"返回\",\"TeSaQO\":\"返回账户\",\"X7Q/iM\":\"返回日历\",\"kYqM1A\":\"返回活动\",\"s5QRF3\":\"返回消息\",\"td/bh+\":\"返回报告\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"基础价格\",\"hviJef\":\"基于上方的全局销售期,而非按单个日期\",\"jIPNJG\":\"基本信息\",\"UabgBd\":\"正文是必需的\",\"HWXuQK\":\"收藏此页面,随时管理您的订单。\",\"CUKVDt\":\"使用自定义徽标、颜色和页脚信息打造您的门票品牌。\",\"4BZj5p\":\"内置欺诈防护\",\"cr7kGH\":\"批量编辑\",\"1Fbd6n\":\"批量编辑日期\",\"Eq6Tu9\":\"批量更新失败。\",\"9N+p+g\":\"商务\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"公司名称\",\"bv6RXK\":\"按钮标签\",\"ChDLlO\":\"按钮文字\",\"BUe8Wj\":\"买家支付\",\"qF1qbA\":\"买家看到的是净价。平台费用将从您的付款中扣除。\",\"dg05rc\":\"添加跟踪像素即表示您确认您与本平台为所收集数据的共同控制方。您有责任确保在适用的隐私法律(如 GDPR、CCPA 等)下,您对此处理具有合法依据。\",\"DFqasq\":[\"继续操作即表示您同意<0>\",[\"0\"],\"服务条款\"],\"wVSa+U\":\"按每月的某日\",\"0MnNgi\":\"按每周的某日\",\"CetOZE\":\"按票种\",\"lFdbRS\":\"绕过应用费用\",\"AjVXBS\":\"日历\",\"alkXJ5\":\"日历视图\",\"2VLZwd\":\"行动号召按钮\",\"rT2cV+\":\"摄像头\",\"7hYa9y\":\"摄像头权限被拒绝。<0>再次请求权限,或在浏览器设置中授予此页面摄像头访问权限。\",\"D02dD9\":\"活动\",\"RRPA79\":\"无法签到\",\"OcVwAd\":[\"取消 \",[\"count\"],\" 个日期\"],\"H4nE+E\":\"取消所有产品并释放回可用池\",\"Py78q9\":\"取消日期\",\"tOXAdc\":\"取消将取消与此订单关联的所有参与者,并将门票释放回可用池。\",\"vev1Jl\":\"取消\",\"Ha17hq\":[\"已取消 \",[\"0\"],\" 个日期\"],\"01sEfm\":\"无法删除系统默认配置\",\"VsM1HH\":\"容量分配\",\"9bIMVF\":\"容量管理\",\"H7K8og\":\"容量必须为 0 或更大\",\"nzao08\":\"容量更新\",\"4cp9NP\":\"已用容量\",\"K7tIrx\":\"类别\",\"o+XJ9D\":\"更改\",\"kJkjoB\":\"更改时长\",\"J0KExZ\":\"更改参与者上限\",\"CIHJJf\":\"更改等候名单设置\",\"B5icLR\":[\"已为 \",[\"count\"],\" 个日期更改时长\"],\"Kb+0BT\":\"收款\",\"2tbLdK\":\"慈善\",\"BPWGKn\":\"签到\",\"6uFFoY\":\"取消签到\",\"FjAlwK\":[\"查看此活动:\",[\"0\"]],\"v4fiSg\":\"查看您的邮箱\",\"51AsAN\":\"请检查您的收件箱!如果此邮箱有关联的票,您将收到查看链接。\",\"Y3FYXy\":\"签到\",\"udRwQs\":\"签到已创建\",\"F4SRy3\":\"签到已删除\",\"as6XfO\":[\"已撤销 \",[\"0\"],\" 的签到\"],\"9s/wrQ\":\"签到历史\",\"Wwztk4\":\"签到列表\",\"9gPPUY\":\"签到列表已创建!\",\"dwjiJt\":\"签到列表信息\",\"7od0PV\":\"签到列表\",\"f2vU9t\":\"签到列表\",\"XprdTn\":\"签到导航\",\"5tV1in\":\"签到进度\",\"SHJwyq\":\"签到率\",\"qCqdg6\":\"签到状态\",\"cKj6OE\":\"签到摘要\",\"7B5M35\":\"签到\",\"VrmydS\":\"已签到\",\"DM4gBB\":\"中文(繁体)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"选择其他操作\",\"fkb+y3\":\"选择要应用的已保存地点。\",\"Zok1Gx\":\"选择一个组织者\",\"pkk46Q\":\"选择一个组织者\",\"Crr3pG\":\"选择日历\",\"LAW8Vb\":\"为新活动选择默认设置。这可以针对单个活动进行覆盖。\",\"pjp2n5\":\"选择谁支付平台费用。这不会影响您在账户设置中配置的额外费用。\",\"xCJdfg\":\"清除\",\"QyOWu9\":\"清除地点 — 使用活动默认地点\",\"V8yTm6\":\"清除搜索\",\"kmnKnX\":\"清除将移除任何针对单个场次的覆盖设置。受影响的场次将使用活动的默认地点。\",\"/o+aQX\":\"点击取消\",\"gD7WGV\":\"点击以重新开放销售\",\"CySr+W\":\"点击查看备注\",\"RG3szS\":\"关闭\",\"RWw9Lg\":\"关闭弹窗\",\"XwdMMg\":\"代码只能包含字母、数字、连字符和下划线\",\"+yMJb7\":\"代码为必填项\",\"m9SD3V\":\"代码至少需要3个字符\",\"V1krgP\":\"代码不能超过20个字符\",\"psqIm5\":\"与您的团队协作,共同创建精彩的活动。\",\"4bUH9i\":\"收集每张购买门票的参与者详情。\",\"TkfG8v\":\"按订单收集信息\",\"96ryID\":\"按门票收集信息\",\"FpsvqB\":\"颜色模式\",\"jEu4bB\":\"列\",\"CWk59I\":\"喜剧\",\"rPA+Gc\":\"通信偏好\",\"zFT5rr\":\"已完成\",\"bUQMpb\":\"完成 Stripe 设置\",\"744BMm\":\"完成您的订单以确保获得门票。此优惠有时间限制,请尽快完成。\",\"5YrKW7\":\"完成付款以确保您的门票。\",\"xGU92i\":\"完成你的个人资料以加入团队。\",\"QOhkyl\":\"撰写\",\"ih35UP\":\"会议中心\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"已分配配置\",\"X1zdE7\":\"配置创建成功\",\"mLBUMQ\":\"配置删除成功\",\"UIENhw\":\"配置名称对最终用户可见。固定费用将按当前汇率转换为订单货币。\",\"eeZdaB\":\"配置更新成功\",\"3cKoxx\":\"配置\",\"8v2LRU\":\"配置活动详情、地点、结账选项和电子邮件通知。\",\"raw09+\":\"配置结账时如何收集参与者信息\",\"FI60XC\":\"配置税费\",\"av6ukY\":\"配置此场次可用的商品,并可选择调整价格。\",\"NGXKG/\":\"确认电子邮件地址\",\"JRQitQ\":\"确认新密码\",\"Auz0Mz\":\"请确认您的邮箱以访问所有功能。\",\"7+grte\":\"确认邮件已发送!请检查您的收件箱。\",\"n/7+7Q\":\"确认已发送至\",\"x3wVFc\":\"恭喜!您的活动现已对公众可见。\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"连接Stripe以启用电子邮件模板编辑\",\"LmvZ+E\":\"连接 Stripe 以启用消息功能\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"联系\",\"LOFgda\":[\"联系 \",[\"0\"]],\"41BQ3k\":\"联系邮箱\",\"KcXRN+\":\"支持联系邮箱\",\"m8WD6t\":\"继续设置\",\"0GwUT4\":\"继续结账\",\"sBV87H\":\"继续创建活动\",\"nKtyYu\":\"继续下一步\",\"F3/nus\":\"继续付款\",\"p2FRHj\":\"控制此活动的平台费用如何处理\",\"NqfabH\":\"控制此日期的入场人员\",\"fmYxZx\":\"控制谁在何时入场\",\"1JnTgU\":\"从上方复制\",\"FxVG/l\":\"已复制到剪贴板\",\"PiH3UR\":\"已复制!\",\"4i7smN\":\"复制账户 ID\",\"uUPbPg\":\"复制推广链接\",\"iVm46+\":\"复制代码\",\"cF2ICc\":\"复制客户链接\",\"+2ZJ7N\":\"将详情复制到第一位参与者\",\"ZN1WLO\":\"复制邮箱\",\"y1eoq1\":\"复制链接\",\"tUGbi8\":\"复制我的信息到:\",\"y22tv0\":\"复制此链接,在任意位置分享\",\"/4gGIX\":\"复制到剪贴板\",\"e0f4yB\":\"无法删除地点\",\"vkiDx2\":\"无法准备批量更新。\",\"KOavaU\":\"无法获取地址详情\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"无法保存日期\",\"eeLExK\":\"无法保存地点\",\"P0rbCt\":\"封面图像\",\"60u+dQ\":\"封面图片将显示在活动页面顶部\",\"2NLjA6\":\"封面图像将显示在您的组织者页面顶部\",\"GkrqoY\":\"覆盖所有门票\",\"zg4oSu\":[\"创建\",[\"0\"],\"模板\"],\"RKKhnW\":\"创建自定义小部件以在您的网站上销售门票。\",\"6sk7PP\":\"创建固定数量\",\"PhioFp\":\"为活跃的场次创建新的签到列表,或如认为这是错误,请联系主办方。\",\"yIRev4\":\"创建密码\",\"j7xZ7J\":\"创建额外的主办方来管理一个账户下的独立品牌、部门或活动系列。每个主办方拥有自己的活动、设置和公开页面。\",\"xfKgwv\":\"创建推广员\",\"tudG8q\":\"创建并配置待售门票和商品。\",\"YAl9Hg\":\"创建配置\",\"BTne9e\":\"为此活动创建自定义邮件模板以覆盖组织者默认设置\",\"YIDzi/\":\"创建自定义模板\",\"tsGqx5\":\"创建日期\",\"Nc3l/D\":\"创建折扣、隐藏门票的访问码和特别优惠。\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"为此日期创建\",\"eWEV9G\":\"创建新密码\",\"wl2iai\":\"创建日程\",\"8AiKIu\":\"创建门票或产品\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"创建可追踪链接以奖励推广您活动的合作伙伴。\",\"dkAPxi\":\"创建 Webhook\",\"5slqwZ\":\"创建您的活动\",\"JQNMrj\":\"创建您的第一个活动\",\"ZCSSd+\":\"创建您自己的活动\",\"67NsZP\":\"正在创建活动...\",\"H34qcM\":\"正在创建主办方...\",\"1YMS+X\":\"正在创建您的活动,请稍候\",\"yiy8Jt\":\"正在创建您的主办方资料,请稍候\",\"lfLHNz\":\"CTA标签是必需的\",\"0xLR6W\":\"当前已分配\",\"iTvh6I\":\"当前可购买\",\"A42Dqn\":\"自定义品牌\",\"Guo0lU\":\"自定义日期和时间\",\"mimF6c\":\"结账后自定义消息\",\"WDMdn8\":\"自定义问题\",\"O6mra8\":\"自定义问题\",\"axv/Mi\":\"自定义模板\",\"2YeVGY\":\"客户链接已复制到剪贴板\",\"QMHSMS\":\"客户将收到确认退款的电子邮件\",\"L/Qc+w\":\"客户邮箱地址\",\"wpfWhJ\":\"客户名字\",\"GIoqtA\":\"客户姓氏\",\"NihQNk\":\"客户\",\"7gsjkI\":\"使用Liquid模板自定义发送给客户的邮件。这些模板将用作您组织中所有活动的默认模板。\",\"xJaTUK\":\"自定义活动主页的布局、颜色和品牌。\",\"MXZfGN\":\"自定义结账时提出的问题,以从参与者那里收集重要信息。\",\"iX6SLo\":\"自定义“继续”按钮上显示的文本\",\"pxNIxa\":\"使用Liquid模板自定义您的邮件模板\",\"3trPKm\":\"自定义主办方页面外观\",\"U0sC6H\":\"每日\",\"/gWrVZ\":\"所有活动的每日收入、税费和退款\",\"zgCHnE\":\"每日销售报告\",\"nHm0AI\":\"每日销售、税费和费用明细\",\"1aPnDT\":\"舞蹈\",\"pvnfJD\":\"深色\",\"MaB9wW\":\"日期取消\",\"e6cAxJ\":\"日期已取消\",\"81jBnC\":\"日期取消成功\",\"a/C/6R\":\"日期创建成功\",\"IW7Q+u\":\"日期已删除\",\"rngCAz\":\"日期删除成功\",\"lnYE59\":\"活动日期\",\"gnBreG\":\"下单日期\",\"vHbfoQ\":\"日期已重新启用\",\"hvah+S\":\"日期已重新开放销售\",\"Ez0YsD\":\"日期更新成功\",\"VTsZuy\":\"日期和时间在此管理:\",\"/ITcnz\":\"天\",\"H7OUPr\":\"天\",\"JtHrX9\":\"每月的日\",\"J/Upwb\":\"天\",\"vDVA2I\":\"每月的日\",\"rDLvlL\":\"每周的日\",\"r6zgGo\":\"十二月\",\"jbq7j2\":\"拒绝\",\"ovBPCi\":\"默认\",\"JtI4vj\":\"默认参与者信息收集\",\"ULjv90\":\"每个日期的默认容量\",\"3R/Tu2\":\"默认费用处理\",\"1bZAZA\":\"将使用默认模板\",\"HNlEFZ\":\"删除\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"删除选中的 \",[\"count\"],\" 个日期?有订单的日期将被跳过。此操作无法撤销。\"],\"vu7gDm\":\"删除推广员\",\"KZN4Lc\":\"全部删除\",\"6EkaOO\":\"删除日期\",\"io0G93\":\"删除活动\",\"+jw/c1\":\"删除图片\",\"hdyeZ0\":\"删除任务\",\"xxjZeP\":\"删除地点\",\"sY3tIw\":\"删除主办方\",\"UBv8UK\":\"永久删除\",\"dPyJ15\":\"删除模板\",\"mxsm1o\":\"删除此问题?此操作无法撤销。\",\"snMaH4\":\"删除 Webhook\",\"LIZZLY\":[\"已删除 \",[\"0\"],\" 个日期\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"取消全选\",\"NvuEhl\":\"设计元素\",\"H8kMHT\":\"没有收到验证码?\",\"G8KNgd\":\"其他地点\",\"E/QGRL\":\"已禁用\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"关闭此消息\",\"BREO0S\":\"显示一个复选框,允许客户选择接收此活动组织者的营销通讯。\",\"pfa8F0\":\"显示名称\",\"Kdpf90\":\"别忘了!\",\"352VU2\":\"还没有账户?<0>注册\",\"AXXqG+\":\"捐赠\",\"DPfwMq\":\"完成\",\"JoPiZ2\":\"门口工作人员说明\",\"2+O9st\":\"下载所有已完成订单的销售、参与者和财务报告。\",\"eneWvv\":\"草稿\",\"Ts8hhq\":\"由于垃圾邮件的高风险,您必须连接Stripe账户才能修改电子邮件模板。这是为了确保所有活动组织者都经过验证和负责。\",\"TnzbL+\":\"由于垃圾消息风险较高,您必须先连接 Stripe 账户才能向参与者发送消息。\\n这是为确保所有活动主办方均已通过验证且具备问责性。\",\"euc6Ns\":\"复制\",\"YueC+F\":\"复制日期\",\"KRmTkx\":\"复制产品\",\"Jd3ymG\":\"时长至少为 1 分钟。\",\"KIjvtr\":\"荷兰语\",\"22xieU\":\"例如 180(3小时)\",\"/zajIE\":\"例如:上午场\",\"SPKbfM\":\"例如:获取门票,立即注册\",\"fc7wGW\":\"例如,关于您门票的重要更新\",\"54MPqC\":\"例如,标准版、高级版、企业版\",\"3RQ81z\":\"每个人将收到一封包含预留名额的电子邮件,以完成购买。\",\"5oD9f/\":\"提前\",\"LTzmgK\":[\"编辑\",[\"0\"],\"模板\"],\"v4+lcZ\":\"编辑推广员\",\"2iZEz7\":\"编辑答案\",\"t2bbp8\":\"编辑参与者\",\"etaWtB\":\"编辑参与者详情\",\"+guao5\":\"编辑配置\",\"1Mp/A4\":\"编辑日期\",\"m0ZqOT\":\"编辑地点\",\"8oivFT\":\"编辑地点\",\"vRWOrM\":\"编辑订单详情\",\"fW5sSv\":\"编辑 Webhook\",\"nP7CdQ\":\"编辑 Webhook\",\"MRZxAn\":\"已编辑\",\"uBAxNB\":\"编辑器\",\"aqxYLv\":\"教育\",\"iiWXDL\":\"资格失败\",\"zPiC+q\":\"符合条件的签到列表\",\"SiVstt\":\"电子邮件与定时消息\",\"V2sk3H\":\"电子邮件和模板\",\"hbwCKE\":\"邮箱地址已复制到剪贴板\",\"dSyJj6\":\"电子邮件地址不匹配\",\"elW7Tn\":\"邮件正文\",\"ZsZeV2\":\"邮箱为必填项\",\"Be4gD+\":\"邮件预览\",\"6IwNUc\":\"邮件模板\",\"H/UMUG\":\"需要验证邮箱\",\"L86zy2\":\"邮箱验证成功!\",\"FSN4TS\":\"嵌入小部件\",\"z9NkYY\":\"可嵌入小组件\",\"Qj0GKe\":\"启用参与者自助服务\",\"hEtQsg\":\"默认启用参与者自助服务\",\"Upeg/u\":\"启用此模板发送邮件\",\"7dSOhU\":\"启用候补名单\",\"RxzN1M\":\"已启用\",\"xDr/ct\":\"结束\",\"sGjBEq\":\"结束日期和时间(可选)\",\"PKXt9R\":\"结束日期必须在开始日期之后\",\"UmzbPa\":\"场次结束日期\",\"ZayGC7\":\"在指定日期结束\",\"48Y16Q\":\"结束时间(可选)\",\"jpNdOC\":\"场次结束时间\",\"TbaYrr\":[[\"0\"],\" 已结束\"],\"CFgwiw\":[[\"0\"],\" 结束\"],\"SqOIQU\":\"输入容量值或选择无限制。\",\"h37gRz\":\"输入标签或选择移除。\",\"7YZofi\":\"输入主题和正文以查看预览\",\"khyScF\":\"输入要平移的时间。\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"输入推广员邮箱(可选)\",\"ARkzso\":\"输入推广员姓名\",\"ej4L8b\":\"输入容量\",\"6KnyG0\":\"输入电子邮件\",\"INDKM9\":\"输入邮件主题...\",\"xUgUTh\":\"输入名字\",\"9/1YKL\":\"输入姓氏\",\"VpwcSk\":\"输入新密码\",\"kWg31j\":\"输入唯一推广码\",\"C3nD/1\":\"输入您的电子邮箱\",\"VmXiz4\":\"输入您的电子邮件,我们将向您发送重置密码的说明。\",\"n9V+ps\":\"输入您的姓名\",\"IdULhL\":\"输入您的增值税号,包括国家代码,不带空格(例如,IE1234567A,DE123456789)\",\"o21Y+P\":\"条目\",\"X88/6w\":\"当客户加入已售罄产品的候补名单时,条目将显示在此处。\",\"LslKhj\":\"加载日志时出错\",\"VCNHvW\":\"活动已归档\",\"ZD0XSb\":\"活动已成功归档\",\"WgD6rb\":\"活动类别\",\"b46pt5\":\"活动封面图片\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"活动已创建\",\"1Hzev4\":\"活动自定义模板\",\"7u9/DO\":\"活动已成功删除\",\"imgKgl\":\"活动描述\",\"kJDmsI\":\"活动详情\",\"m/N7Zq\":\"活动完整地址\",\"Nl1ZtM\":\"活动地点\",\"PYs3rP\":\"活动名称\",\"HhwcTQ\":\"活动名称\",\"WZZzB6\":\"活动名称为必填项\",\"Wd5CDM\":\"活动名称应少于150个字符\",\"4JzCvP\":\"活动不可用\",\"Gh9Oqb\":\"活动组织者姓名\",\"mImacG\":\"活动页面\",\"Hk9Ki/\":\"活动已成功恢复\",\"JyD0LH\":\"活动设置\",\"cOePZk\":\"活动时间\",\"e8WNln\":\"活动时区\",\"GeqWgj\":\"活动时区\",\"XVLu2v\":\"活动标题\",\"OfmsI9\":\"活动太新\",\"4SILkp\":\"活动总计\",\"YDVUVl\":\"事件类型\",\"+HeiVx\":\"活动已更新\",\"4K2OjV\":\"活动场地\",\"19j6uh\":\"活动表现\",\"PC3/fk\":\"未来24小时内开始的活动\",\"nwiZdc\":[\"每 \",[\"0\"]],\"2LJU4o\":[\"每 \",[\"0\"],\" 天\"],\"yLiYx+\":[\"每 \",[\"0\"],\" 个月\"],\"nn9ice\":[\"每 \",[\"0\"],\" 周\"],\"Cdr8f9\":[\"每 \",[\"0\"],\" 周的 \",[\"1\"]],\"GVEHRk\":[\"每 \",[\"0\"],\" 年\"],\"fTFfOK\":\"每个邮件模板都必须包含一个链接到相应页面的行动号召按钮\",\"BVinvJ\":\"示例:\\\"您是如何了解我们的?\\\"、\\\"发票公司名称\\\"\",\"2hGPQG\":\"示例:\\\"T恤尺码\\\"、\\\"餐饮偏好\\\"、\\\"职位\\\"\",\"qNuTh3\":\"异常\",\"M1RnFv\":\"已过期\",\"kF8HQ7\":\"导出答案\",\"2KAI4N\":\"导出CSV\",\"JKfSAv\":\"导出失败。请重试。\",\"SVOEsu\":\"导出已开始。正在准备文件...\",\"wuyaZh\":\"导出成功\",\"9bpUSo\":\"正在导出推广员\",\"jtrqH9\":\"正在导出与会者\",\"R4Oqr8\":\"导出完成。正在下载文件...\",\"UlAK8E\":\"正在导出订单\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"失败\",\"8uOlgz\":\"失败时间\",\"tKcbYd\":\"失败任务\",\"SsI9v/\":\"放弃订单失败。请重试。\",\"LdPKPR\":\"分配配置失败\",\"PO0cfn\":\"取消日期失败\",\"YUX+f+\":\"取消日期失败\",\"SIHgVQ\":\"取消消息失败\",\"cEFg3R\":\"创建推广员失败\",\"dVgNF1\":\"配置创建失败\",\"fAoRRJ\":\"创建日程失败\",\"U66oUa\":\"创建模板失败\",\"aFk48v\":\"配置删除失败\",\"n1CYMH\":\"删除日期失败\",\"KXv+Qn\":\"删除日期失败。可能存在订单。\",\"JJ0uRo\":\"删除日期失败\",\"rgoBnv\":\"删除活动失败\",\"Zw6LWb\":\"删除任务失败\",\"tq0abZ\":\"删除任务失败\",\"2mkc3c\":\"删除主办方失败\",\"vKMKnu\":\"删除问题失败\",\"xFj7Yj\":\"删除模板失败\",\"jo3Gm6\":\"导出推广员失败\",\"Jjw03p\":\"导出与会者失败\",\"ZPwFnN\":\"导出订单失败\",\"zGE3CH\":\"导出报告失败。请重试。\",\"lS9/aZ\":\"加载收件人失败\",\"X4o0MX\":\"加载 Webhook 失败\",\"ETcU7q\":\"提供名额失败\",\"5670b9\":\"提供票券失败\",\"e5KIbI\":\"重新启用日期失败\",\"7zyx8a\":\"从候补名单中移除失败\",\"A/P7PX\":\"移除覆盖设置失败\",\"ogWc1z\":\"重新开放日期失败\",\"0+iwE5\":\"重新排序问题失败\",\"EJPAcd\":\"重新发送订单确认失败\",\"DjSbj3\":\"重新发送门票失败\",\"YQ3QSS\":\"重新发送验证码失败\",\"wDioLj\":\"重试任务失败\",\"DKYTWG\":\"重试任务失败\",\"WRREqF\":\"保存覆盖设置失败\",\"sj/eZA\":\"保存价格覆盖失败\",\"780n8A\":\"保存商品设置失败\",\"zTkTF3\":\"保存模板失败\",\"l6acRV\":\"保存增值税设置失败。请重试。\",\"T6B2gk\":\"发送消息失败。请重试。\",\"lKh069\":\"无法启动导出任务\",\"t/KVOk\":\"无法开始模拟。请重试。\",\"QXgjH0\":\"无法停止模拟。请重试。\",\"i0QKrm\":\"更新推广员失败\",\"NNc33d\":\"更新答案失败。\",\"E9jY+o\":\"更新参与者失败\",\"uQynyf\":\"配置更新失败\",\"i2PFQJ\":\"更新活动状态失败\",\"EhlbcI\":\"更新消息级别失败\",\"rpGMzC\":\"更新订单失败\",\"T2aCOV\":\"更新主办方状态失败\",\"Eeo/Gy\":\"更新设置失败\",\"kqA9lY\":\"更新增值税设置失败\",\"7/9RFs\":\"上传图片失败。\",\"nkNfWu\":\"上传图片失败。请重试。\",\"rxy0tG\":\"验证邮箱失败\",\"QRUpCk\":\"家庭\",\"5LO38w\":\"快速到账您的银行\",\"4lgLew\":\"二月\",\"9bHCo2\":\"费用货币\",\"/sV91a\":\"费用处理\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"费用已绕过\",\"cf35MA\":\"节日\",\"pAey+4\":\"文件太大。最大大小为5MB。\",\"VejKUM\":\"请先在上方填写您的详细信息\",\"/n6q8B\":\"电影\",\"L1qbUx\":\"筛选参与者\",\"8OvVZZ\":\"筛选参与者\",\"N/H3++\":\"按日期筛选\",\"mvrlBO\":\"按活动筛选\",\"g+xRXP\":\"完成 Stripe 设置\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"第一\",\"1vBhpG\":\"第一位参与者\",\"4pwejF\":\"名字为必填项\",\"3lkYdQ\":\"固定费用\",\"6bBh3/\":\"固定费用\",\"zWqUyJ\":\"每笔交易收取的固定费用\",\"LWL3Bs\":\"固定费用必须为0或更大\",\"0RI8m4\":\"闪光灯关闭\",\"q0923e\":\"闪光灯开启\",\"lWxAUo\":\"美食美酒\",\"nFm+5u\":\"页脚文字\",\"a8nooQ\":\"第四\",\"mob/am\":\"五\",\"wtuVU4\":\"频率\",\"xVhQZV\":\"周五\",\"39y5bn\":\"星期五\",\"f5UbZ0\":\"完整数据所有权\",\"MY2SVM\":\"全额退款\",\"UsIfa8\":\"完整解析地址\",\"PGQLdy\":\"未来\",\"8N/j1s\":\"仅未来日期\",\"yRx/6K\":\"未来日期将被复制,容量重置为零\",\"T02gNN\":\"普通入场\",\"3ep0Gx\":\"您组织者的基本信息\",\"ziAjHi\":\"生成\",\"exy8uo\":\"生成代码\",\"4CETZY\":\"获取路线\",\"pjkEcB\":\"收款\",\"lGYzP6\":\"通过 Stripe 收款\",\"ZDIydz\":\"开始使用\",\"u6FPxT\":\"获取门票\",\"8KDgYV\":\"准备好您的活动\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"返回\",\"oNL5vN\":\"前往活动页面\",\"gHSuV/\":\"返回主页\",\"8+Cj55\":\"前往日程\",\"6nDzTl\":\"良好的可读性\",\"76gPWk\":\"知道了\",\"aGWZUr\":\"总收入\",\"n8IUs7\":\"总收入\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"来宾管理\",\"NUsTc4\":\"正在进行\",\"kTSQej\":[\"您好 \",[\"0\"],\",从这里管理您的平台。\"],\"dORAcs\":\"以下是与您邮箱关联的所有票。\",\"g+2103\":\"这是您的推广链接\",\"bVsnqU\":\"您好,\",\"/iE8xx\":\"Hi.Events 费用\",\"zppscQ\":\"Hi.Events 平台费用和每笔交易的增值税明细\",\"D+zLDD\":\"隐藏\",\"DRErHC\":\"对参与者隐藏 - 仅组织者可见\",\"NNnsM0\":\"隐藏高级选项\",\"P+5Pbo\":\"隐藏答案\",\"VMlRqi\":\"隐藏详情\",\"FmogyU\":\"隐藏选项\",\"gtEbeW\":\"突出显示\",\"NF8sdv\":\"突出显示消息\",\"MXSqmS\":\"突出显示此产品\",\"7ER2sc\":\"已突出显示\",\"sq7vjE\":\"突出显示的产品将具有不同的背景色,使其在活动页面上脱颖而出。\",\"1+WSY1\":\"爱好\",\"yY8wAv\":\"小时\",\"sy9anN\":\"客户收到报价后完成购买的时限。留空表示无时间限制。\",\"n2ilNh\":\"日程持续多久?\",\"DMr2XN\":\"频率?\",\"AVpmAa\":\"如何离线支付\",\"cceMns\":\"如何对我们向您收取的平台费用应用增值税。\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"匈牙利语\",\"8Wgd41\":\"我确认我作为数据控制方的责任\",\"O8m7VA\":\"我同意接收与此活动相关的电子邮件通知\",\"YLgdk5\":\"我确认这是与此活动相关的交易消息\",\"4/kP5a\":\"如果没有自动打开新标签页,请点击下方按钮继续结账。\",\"W/eN+G\":\"如果为空,地址将用于生成 Google 地图链接\",\"iIEaNB\":\"如果您在我们这里有账户,您将收到一封包含如何重置密码说明的电子邮件。\",\"an5hVd\":\"图片\",\"tSVr6t\":\"模拟\",\"TWXU0c\":\"模拟用户\",\"5LAZwq\":\"模拟已开始\",\"IMwcdR\":\"模拟已停止\",\"0I0Hac\":\"重要通知\",\"yD3avI\":\"重要提示:更改您的电子邮件地址将更新访问此订单的链接。保存后,您将被重定向到新的订单链接。\",\"jT142F\":[[\"diffHours\"],\"小时后\"],\"OoSyqO\":[[\"diffMinutes\"],\"分钟后\"],\"PdMhEx\":[\"最近 \",[\"0\"],\" 分钟\"],\"u7r0G5\":\"线下 — 设置场馆\",\"Ip0hl5\":\"in_person、online、unset 或 mixed\",\"F1Xp97\":\"个人与会者\",\"85e6zs\":\"插入Liquid令牌\",\"38KFY0\":\"插入变量\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Stripe 即时付款\",\"nbfdhU\":\"集成\",\"I8eJ6/\":\"参与者票据上的内部备注\",\"B2Tpo0\":\"无效邮箱\",\"5tT0+u\":\"邮箱格式无效\",\"f9WRpE\":\"无效的文件类型。请上传图片。\",\"tnL+GP\":\"无效的Liquid语法。请更正后再试。\",\"N9JsFT\":\"无效的增值税号格式\",\"g+lLS9\":\"邀请团队成员\",\"1z26sk\":\"邀请团队成员\",\"KR0679\":\"邀请团队成员\",\"aH6ZIb\":\"邀请您的团队\",\"IuMGvq\":\"发票\",\"Lj7sBL\":\"意大利语\",\"F5/CBH\":\"项\",\"BzfzPK\":\"项目\",\"rjyWPb\":\"一月\",\"KmWyx0\":\"任务\",\"o5r6b2\":\"任务已删除\",\"cd0jIM\":\"任务详情\",\"ruJO57\":\"任务名称\",\"YZi+Hu\":\"任务已排队等待重试\",\"nCywLA\":\"随时随地加入\",\"SNzppu\":\"加入候补名单\",\"dLouFI\":[\"加入 \",[\"productDisplayName\"],\" 的候补名单\"],\"2gMuHR\":\"已加入\",\"u4ex5r\":\"七月\",\"zeEQd/\":\"六月\",\"MxjCqk\":\"只是在找您的票?\",\"xOTzt5\":\"刚刚\",\"0RihU9\":\"刚刚结束\",\"lB2hSG\":[\"及时向我更新来自\",[\"0\"],\"的新闻和活动\"],\"ioFA9i\":\"保留利润。\",\"4Sffp7\":\"场次的标签\",\"o66QSP\":\"标签更新\",\"RtKKbA\":\"最后\",\"DruLRc\":\"过去14天\",\"ve9JTU\":\"姓氏为必填项\",\"h0Q9Iw\":\"最新响应\",\"gw3Ur5\":\"最近触发\",\"FIq1Ba\":\"延后\",\"xvnLMP\":\"最新签到\",\"pzAivY\":\"解析地点的纬度\",\"N5TErv\":\"留空表示无限制\",\"L/hDDD\":\"留空可将此签到列表应用于所有场次\",\"9Pf3wk\":\"保持开启以覆盖活动中的所有门票。关闭则可挑选特定门票。\",\"Hq2BzX\":\"通知他们这一变更\",\"+uexiy\":\"通知他们这些变更\",\"exYcTF\":\"图书\",\"1njn7W\":\"浅色\",\"1qY5Ue\":\"链接已过期或无效\",\"+zSD/o\":\"链接到活动主页\",\"psosdY\":\"订单详情链接\",\"6JzK4N\":\"门票链接\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"允许链接\",\"2BBAbc\":\"列表\",\"5NZpX8\":\"列表视图\",\"dF6vP6\":\"上线\",\"fpMs2Z\":\"直播\",\"D9zTjx\":\"直播活动\",\"C33p4q\":\"已加载的日期\",\"WdmJIX\":\"加载预览中...\",\"IoDI2o\":\"加载令牌中...\",\"G3Ge9Z\":\"正在加载 Webhook 日志...\",\"NFxlHW\":\"正在加载 Webhook\",\"E0DoRM\":\"地点已删除\",\"NtLHT3\":\"地点格式化地址\",\"h4vxDc\":\"地点纬度\",\"f2TMhR\":\"地点经度\",\"lnCo2f\":\"地点模式\",\"8pmGFk\":\"地点名称\",\"7w8lJU\":\"地点已保存\",\"YsRXDD\":\"地点已更新\",\"A/kIva\":\"地点更新\",\"VppBoU\":\"地点\",\"iG7KNr\":\"标志\",\"vu7ZGG\":\"标志和封面\",\"gddQe0\":\"您的组织者的标志和封面图像\",\"TBEnp1\":\"标志将显示在页面头部\",\"Jzu30R\":\"标志将显示在票券上\",\"zKTMTg\":\"解析地点的经度\",\"PSRm6/\":\"查找我的门票\",\"yJFu/X\":\"总部\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"管理 \",[\"0\"]],\"wZJfA8\":\"管理您循环活动的日期和时间\",\"RlzPUE\":\"在 Stripe 上管理\",\"6NXJRK\":\"管理日程\",\"zXuaxY\":\"管理您活动的候补名单,查看统计数据,并向参与者提供门票。\",\"BWTzAb\":\"手动\",\"g2npA5\":\"手动提供\",\"hg6l4j\":\"三月\",\"pqRBOz\":\"标记为已验证(管理员覆盖)\",\"2L3vle\":\"最大消息数 / 24小时\",\"Qp4HWD\":\"最大收件人数 / 消息\",\"3JzsDb\":\"五月\",\"agPptk\":\"媒介\",\"xDAtGP\":\"消息\",\"bECJqy\":\"消息批准成功\",\"1jRD0v\":\"向与会者发送特定门票的信息\",\"uQLXbS\":\"消息已取消\",\"48rf3i\":\"消息不能超过5000个字符\",\"ZPj0Q8\":\"消息详情\",\"Vjat/X\":\"消息为必填项\",\"0/yJtP\":\"向具有特定产品的订单所有者发送消息\",\"saG4At\":\"消息已定时\",\"mFdA+i\":\"消息级别\",\"v7xKtM\":\"消息级别更新成功\",\"H9HlDe\":\"分钟\",\"agRWc1\":\"分钟\",\"YYzBv9\":\"一\",\"zz/Wd/\":\"模式\",\"fpMgHS\":\"周一\",\"hty0d5\":\"星期一\",\"JbIgPz\":\"货币金额是所有货币的大致总和\",\"qvF+MT\":\"监控和管理失败的后台任务\",\"kY2ll9\":\"月\",\"HajiZl\":\"月\",\"+8Nek/\":\"每月\",\"1LkxnU\":\"月度规则\",\"6jefe3\":\"月\",\"f8jrkd\":\"更多\",\"JcD7qf\":\"更多操作\",\"w36OkR\":\"最多浏览活动(过去14天)\",\"+Y/na7\":\"将所有日期前移或后移\",\"3DIpY0\":\"多个地点\",\"g9cQCP\":\"多种票种\",\"GfaxEk\":\"音乐\",\"oVGCGh\":\"我的票\",\"8/brI5\":\"姓名为必填项\",\"sFFArG\":\"名称长度必须少于255个字符\",\"sCV5Yc\":\"活动名称\",\"xxU3NX\":\"净收入\",\"7I8LlL\":\"新容量\",\"n1GRql\":\"新标签\",\"y0Fcpd\":\"新地点\",\"ArHT/C\":\"新注册\",\"uK7xWf\":\"新时间:\",\"veT5Br\":\"下一场次\",\"WXtl5X\":[\"下一次:\",[\"nextFormatted\"]],\"eWRECP\":\"夜生活\",\"HSw5l3\":\"否 - 我是个人或未注册增值税的企业\",\"VHfLAW\":\"无账户\",\"+jIeoh\":\"未找到账户\",\"074+X8\":\"没有活动的 Webhook\",\"zxnup4\":\"没有推广员可显示\",\"Dwf4dR\":\"暂无参与者问题\",\"th7rdT\":\"没有参与者\",\"PKySlW\":\"此日期暂无参与者。\",\"/UC6qk\":\"未找到归因数据\",\"E2vYsO\":\"Stripe 尚未报告任何功能。\",\"amMkpL\":\"无容量\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"此活动没有可用的签到列表。\",\"wG+knX\":\"暂无签到\",\"+dAKxg\":\"未找到配置\",\"LiLk8u\":\"没有可用的连接\",\"eb47T5\":\"未找到所选筛选条件的数据。请尝试调整日期范围或货币。\",\"lFVUyx\":\"无针对此日期的专属签到列表\",\"I8mtzP\":\"本月无可用日期。请尝试切换到其他月份。\",\"yDukIL\":\"没有日期符合当前的筛选条件。\",\"B7phdj\":\"没有日期符合您的筛选条件\",\"/ZB4Um\":\"没有日期匹配您的搜索\",\"gEdNe8\":\"尚未安排日期\",\"27GYXJ\":\"尚未安排日期。\",\"pZNOT9\":\"无结束日期\",\"dW40Uz\":\"未找到活动\",\"8pQ3NJ\":\"未来24小时内没有开始的活动\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"没有失败的任务\",\"EpvBAp\":\"无发票\",\"XZkeaI\":\"未找到日志\",\"nrSs2u\":\"未找到消息\",\"Rj99yx\":\"无可用场次\",\"IFU1IG\":\"此日期无场次\",\"OVFwlg\":\"暂无订单问题\",\"EJ7bVz\":\"未找到订单\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"此日期暂无订单。\",\"wUv5xQ\":\"过去14天没有组织者活动\",\"vLd1tV\":\"无可用的主办方上下文。\",\"B7w4KY\":\"无其他可用组织者\",\"PChXMe\":\"无付费订单\",\"6jYQGG\":\"没有过去的活动\",\"CHzaTD\":\"过去14天没有热门活动\",\"zK/+ef\":\"没有可供选择的产品\",\"M1/lXs\":\"此活动未配置任何商品。\",\"kY7XDn\":\"没有产品有等候名单条目\",\"wYiAtV\":\"没有最近的账户注册\",\"UW90md\":\"未找到收件人\",\"QoAi8D\":\"无响应\",\"JeO7SI\":\"无响应\",\"EK/G11\":\"尚无响应\",\"7J5OKy\":\"尚无已保存的地点\",\"wpCjcf\":\"尚无保存的地点。当您创建带地址的活动时,它们会显示在此处。\",\"mPdY6W\":\"无建议\",\"3sRuiW\":\"未找到票\",\"k2C0ZR\":\"无即将到来的日期\",\"yM5c0q\":\"没有即将到来的活动\",\"qpC74J\":\"未找到用户\",\"8wgkoi\":\"过去14天没有浏览的活动\",\"Arzxc1\":\"没有候补名单条目\",\"n5vdm2\":\"此端点尚未记录任何 Webhook 事件。事件触发后将显示在此处。\",\"4GhX3c\":\"没有 Webhooks\",\"4+am6b\":\"否,保留在此\",\"4JVMUi\":\"未编辑\",\"Itw24Q\":\"未签到\",\"x5+Lcz\":\"未签到\",\"8n10sz\":\"不符合条件\",\"kLvU3F\":\"通知参与者并停止销售\",\"t9QlBd\":\"十一月\",\"kAREMN\":\"要创建的日期数量\",\"6u1B3O\":\"场次\",\"mmoE62\":\"场次已取消\",\"UYWXdN\":\"场次结束日期\",\"k7dZT5\":\"场次结束时间\",\"Opinaj\":\"场次标签\",\"V9flmL\":\"场次日程\",\"NUTUUs\":\"场次日程页面\",\"AT8UKD\":\"场次开始日期\",\"Um8bvD\":\"场次开始时间\",\"Kh3WO8\":\"场次摘要\",\"byXCTu\":\"场次\",\"KATw3p\":\"场次(仅未来)\",\"85rTR2\":\"场次可以在创建后进行配置\",\"dzQfDY\":\"十月\",\"BwJKBw\":\"共\",\"9h7RDh\":\"提供\",\"EfK2O6\":\"提供名额\",\"3sVRey\":\"提供门票\",\"2O7Ybb\":\"报价超时\",\"1jUg5D\":\"已提供\",\"l+/HS6\":[\"报价将在 \",[\"timeoutHours\"],\" 小时后过期。\"],\"lQgMLn\":\"办公室或场地名称\",\"6Aih4U\":\"离线\",\"Z6gBGW\":\"线下支付\",\"nO3VbP\":[\"销售于\",[\"0\"]],\"oXOSPE\":\"在线\",\"aqmy5k\":\"在线 — 提供连接信息\",\"LuZBbx\":\"线上与线下\",\"IXuOqt\":\"线上与线下 — 请查看日程\",\"w3DG44\":\"线上连接信息\",\"WjSpu5\":\"在线活动\",\"TP6jss\":\"线上活动连接信息\",\"NdOxqr\":\"只有账户管理员可以删除或归档活动。请联系您的账户管理员寻求帮助。\",\"rnoDMF\":\"只有账户管理员可以删除或归档主办方。请联系您的账户管理员寻求帮助。\",\"bU7oUm\":\"仅发送给具有这些状态的订单\",\"M2w1ni\":\"仅使用促销代码可见\",\"y8Bm7C\":\"打开签到\",\"RLz7P+\":\"打开场次\",\"cDSdPb\":\"在选择器中显示的可选别名,例如“总部会议室”\",\"HXMJxH\":\"免责声明、联系信息或感谢说明的可选文本(仅单行)\",\"L565X2\":\"选项\",\"8m9emP\":\"或添加单个日期\",\"dSeVIm\":\"订单\",\"c/TIyD\":\"订单和门票\",\"H5qWhm\":\"订单已取消\",\"b6+Y+n\":\"订单完成\",\"x4MLWE\":\"订单确认\",\"CsTTH0\":\"订单确认重新发送成功\",\"ppuQR4\":\"订单已创建\",\"0UZTSq\":\"订单货币\",\"xtQzag\":\"订单详情\",\"HdmwrI\":\"订单邮箱\",\"bwBlJv\":\"订单名字\",\"vrSW9M\":\"订单已取消并退款。订单所有者已收到通知。\",\"rzw+wS\":\"订单持有人\",\"oI/hGR\":\"订单ID\",\"Pc729f\":\"订单等待线下支付\",\"F4NXOl\":\"订单姓氏\",\"RQCXz6\":\"订单限制\",\"SO9AEF\":\"订单限制已设置\",\"5RDEEn\":\"订单语言\",\"vu6Arl\":\"订单标记为已支付\",\"sLbJQz\":\"未找到订单\",\"kvYpYu\":\"未找到订单\",\"i8VBuv\":\"订单号\",\"eJ8SvM\":\"订单号、购买日期、购买者邮箱\",\"FaPYw+\":\"订单所有者\",\"eB5vce\":\"具有特定产品的订单所有者\",\"CxLoxM\":\"具有产品的订单所有者\",\"DoH3fD\":\"订单付款待处理\",\"UkHo4c\":\"订单参考\",\"EZy55F\":\"订单已退款\",\"6eSHqs\":\"订单状态\",\"oW5877\":\"订单总额\",\"e7eZuA\":\"订单已更新\",\"1SQRYo\":\"订单更新成功\",\"KndP6g\":\"订单链接\",\"3NT0Ck\":\"订单已被取消\",\"V5khLm\":\"订单\",\"sd5IMt\":\"已完成订单\",\"5It1cQ\":\"订单已导出\",\"tlKX/S\":\"跨多个日期的订单将被标记以供人工审核。\",\"UQ0ACV\":\"订单总额\",\"B/EBQv\":\"订单:\",\"qtGTNu\":\"自然账户\",\"ucgZ0o\":\"组织\",\"P/JHA4\":\"主办方已成功归档\",\"S3CZ5M\":\"组织者仪表板\",\"GzjTd0\":\"主办方已成功删除\",\"Uu0hZq\":\"组织者邮箱\",\"Gy7BA3\":\"组织者电子邮件地址\",\"SQqJd8\":\"未找到组织者\",\"HF8Bxa\":\"主办方已成功恢复\",\"wpj63n\":\"组织者设置\",\"o1my93\":\"组织者状态更新失败。请稍后再试\",\"rLHma1\":\"组织者状态已更新\",\"LqBITi\":\"将使用组织者/默认模板\",\"q4zH+l\":\"主办方\",\"/IX/7x\":\"其他\",\"RsiDDQ\":\"其他列表(不包含此票)\",\"aDfajK\":\"户外\",\"qMASRF\":\"发出的消息\",\"iCOVQO\":\"覆盖\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"覆盖价格\",\"cnVIpl\":\"覆盖已移除\",\"6/dCYd\":\"概览\",\"6WdDG7\":\"页面\",\"8uqsE5\":\"页面不再可用\",\"QkLf4H\":\"页面链接\",\"sF+Xp9\":\"页面浏览量\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"付费账户\",\"5F7SYw\":\"部分退款\",\"fFYotW\":[\"部分退款:\",[\"0\"]],\"i8day5\":\"将费用转嫁给买家\",\"k4FLBQ\":\"转嫁给买家\",\"Ff0Dor\":\"过去\",\"BFjW8X\":\"已逾期\",\"xTPjSy\":\"过去的活动\",\"/l/ckQ\":\"粘贴链接\",\"URAE3q\":\"已暂停\",\"4fL/V7\":\"付款\",\"OZK07J\":\"付款解锁\",\"c2/9VE\":\"负载数据\",\"5cxUwd\":\"支付日期\",\"ENEPLY\":\"付款方式\",\"8Lx2X7\":\"已收到付款\",\"fx8BTd\":\"付款不可用\",\"C+ylwF\":\"提现\",\"UbRKMZ\":\"待处理\",\"UkM20g\":\"待审核\",\"dPYu1F\":\"每位参与者\",\"mQV/nJ\":\"每分钟\",\"VlXNyK\":\"每个订单\",\"hauDFf\":\"每张门票\",\"mnF83a\":\"百分比费用\",\"TNLuRD\":\"百分比费用 (%)\",\"MixU2P\":\"百分比必须在0到100之间\",\"MkuVAZ\":\"交易金额的百分比\",\"/Bh+7r\":\"绩效\",\"fIp56F\":\"永久删除此活动及其所有相关数据。\",\"nJeeX7\":\"永久删除此主办方及其所有活动。\",\"wfCTgK\":\"永久移除此日期\",\"6kPk3+\":\"个人信息\",\"zmwvG2\":\"电话\",\"SdM+Q1\":\"选择地点\",\"tSR/oe\":\"选择结束日期\",\"e8kzpp\":\"至少选择每月的一天\",\"35C8QZ\":\"至少选择每周的一天\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"下单\",\"wBJR8i\":\"计划举办活动?\",\"J3lhKT\":\"平台费用\",\"RD51+P\":[\"从您的付款中扣除 \",[\"0\"],\" 的平台费用\"],\"br3Y/y\":\"平台费用\",\"3buiaw\":\"平台费用报告\",\"kv9dM4\":\"平台收入\",\"PJ3Ykr\":\"请查看您的门票以了解更新后的时间。您的门票仍然有效 — 除非新时间不适合您,否则无需采取任何操作。如有疑问,请回复此邮件。\",\"OtjenF\":\"请输入有效的电子邮件地址\",\"jEw0Mr\":\"请输入有效的 URL\",\"n8+Ng/\":\"请输入5位数验证码\",\"r+lQXT\":\"请输入您的增值税号码\",\"Dvq0wf\":\"请提供一张图片。\",\"2cUopP\":\"请重新开始结账流程。\",\"GoXxOA\":\"请选择日期和时间\",\"8KmsFa\":\"请选择日期范围\",\"EFq6EG\":\"请选择一张图片。\",\"fuwKpE\":\"请再试一次。\",\"klWBeI\":\"请稍候再请求新的验证码\",\"hfHhaa\":\"请稍候,我们正在准备导出您的推广员...\",\"o+tJN/\":\"请稍候,我们正在准备导出您的与会者...\",\"+5Mlle\":\"请稍候,我们正在准备导出您的订单...\",\"trnWaw\":\"波兰语\",\"luHAJY\":\"热门活动(过去14天)\",\"p/78dY\":\"位置\",\"TjX7xL\":\"结账后消息\",\"OESu7I\":\"通过在多种门票类型之间共享库存来防止超卖。\",\"NgVUL2\":\"预览结账表单\",\"cs5muu\":\"预览活动页面\",\"+4yRWM\":\"门票价格\",\"Jm2AC3\":\"价格档位\",\"a5jvSX\":\"价格层级\",\"ReihZ7\":\"打印预览\",\"JnuPvH\":\"打印门票\",\"tYF4Zq\":\"打印为PDF\",\"LcET2C\":\"隐私政策\",\"8z6Y5D\":\"处理退款\",\"JcejNJ\":\"处理订单中\",\"EWCLpZ\":\"产品已创建\",\"XkFYVB\":\"产品已删除\",\"YMwcbR\":\"产品销售、收入和税费明细\",\"ls0mTC\":\"已取消日期的商品设置无法编辑。\",\"2339ej\":\"商品设置保存成功\",\"ldVIlB\":\"产品已更新\",\"CP3D8G\":\"进度\",\"JoKGiJ\":\"优惠码\",\"k3wH7i\":\"促销码使用情况及折扣明细\",\"tZqL0q\":\"促销码\",\"oCHiz3\":\"促销码\",\"uEhdRh\":\"仅促销\",\"dLm8V5\":\"促销电子邮件可能导致账户暂停\",\"XoEWtl\":\"请为新地点提供至少一个地址字段。\",\"2W/7Gz\":\"在 Stripe 下次审核前提供以下信息,以保持提现顺畅。\",\"aemBRq\":\"提供商\",\"EEYbdt\":\"发布\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"已购买\",\"JunetL\":\"购买者\",\"phmeUH\":\"购买者邮箱\",\"ywR4ZL\":\"二维码签到\",\"oWXNE5\":\"数量\",\"biEyJ4\":\"问题回答\",\"k/bJj0\":\"问题已重新排序\",\"b24kPi\":\"队列\",\"lTPqpM\":\"小贴士\",\"fqDzSu\":\"费率\",\"mnUGVC\":\"超出速率限制。请稍后再试。\",\"t41hVI\":\"重新提供名额\",\"TNclgc\":\"重新启用此日期?它将重新开放销售。\",\"uqoRbb\":\"实时分析\",\"xzRvs4\":[\"接收 \",[\"0\"],\" 的产品更新。\"],\"pLXbi8\":\"最近账户注册\",\"3kJ0gv\":\"最近参与者\",\"qhfiwV\":\"最近签到\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"最近订单\",\"7hPBBn\":\"位收件人\",\"jp5bq8\":\"位收件人\",\"yPrbsy\":\"收件人\",\"E1F5Ji\":\"收件人在消息发送后可用\",\"wuhHPE\":\"循环\",\"asLqwt\":\"循环活动\",\"D0tAMe\":\"循环活动\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"正在重定向到 Stripe...\",\"pnoTN5\":\"推荐账户\",\"ACKu03\":\"刷新预览\",\"vuFYA6\":\"退款这些日期的所有订单\",\"4cRUK3\":\"退款此日期的所有订单\",\"fKn/k6\":\"退款金额\",\"qY4rpA\":\"退款失败\",\"TspTcZ\":\"已发起退款\",\"FaK/8G\":[\"退款订单 \",[\"0\"]],\"MGbi9P\":\"退款处理中\",\"BDSRuX\":[\"已退款:\",[\"0\"]],\"bU4bS1\":\"退款\",\"rYXfOA\":\"区域设置\",\"5tl0Bp\":\"注册问题\",\"ZNo5k1\":\"剩余\",\"EMnuA4\":\"已安排提醒\",\"Bjh87R\":\"从所有日期移除标签\",\"KkJtVK\":\"重新开放销售\",\"XJwWJp\":\"重新开放此日期进行销售?之前已取消的票据将不会被恢复 — 受影响的参与者保持已取消状态,已发放的退款也不会被撤销。\",\"bAwDQs\":\"每隔\",\"CQeZT8\":\"未找到报告\",\"JEPMXN\":\"请求新链接\",\"TMLAx2\":\"必填\",\"mdeIOH\":\"重新发送验证码\",\"sQxe68\":\"重新发送确认\",\"bxoWpz\":\"重新发送确认邮件\",\"G42SNI\":\"重新发送邮件\",\"TTpXL3\":[[\"resendCooldown\"],\"秒后重新发送\"],\"5CiNPm\":\"重新发送门票\",\"Uwsg2F\":\"已预订\",\"8wUjGl\":\"保留至\",\"a5z8mb\":\"重置为基础价格\",\"kCn6wb\":\"正在重置...\",\"404zLK\":\"已解析的地点或场馆名称\",\"ZlCDf+\":\"响应\",\"bsydMp\":\"响应详情\",\"yKu/3Y\":\"恢复\",\"RokrZf\":\"恢复活动\",\"/JyMGh\":\"恢复主办方\",\"HFvFRb\":\"恢复此活动以使其重新可见。\",\"DDIcqy\":\"恢复此主办方并使其重新活跃。\",\"mO8KLE\":\"结果\",\"6gRgw8\":\"重试\",\"1BG8ga\":\"全部重试\",\"rDC+T6\":\"重试任务\",\"CbnrWb\":\"返回活动\",\"mdQ0zb\":\"可在活动中复用的场地。通过自动完成创建的地点将自动保存在此。\",\"XFOPle\":\"重复使用\",\"1Zehp4\":\"重复使用此账户下其他组织者的 Stripe 连接。\",\"Oo/PLb\":\"收入摘要\",\"O/8Ceg\":\"今日营收\",\"CfuueU\":\"撤销邀约\",\"RIgKv+\":\"运行至特定日期\",\"JYRqp5\":\"六\",\"dFFW9L\":[\"销售已于\",[\"0\"],\"结束\"],\"loCKGB\":[\"销售于\",[\"0\"],\"结束\"],\"wlfBad\":\"销售期\",\"qi81Jg\":\"销售期日期适用于您日程中的所有日期。如需控制单个日期的价格和可用性,请在 <0>场次日程页面 使用覆盖设置。\",\"5CDM6r\":\"销售期已设置\",\"ftzaMf\":\"销售期、订单限制、可见性\",\"zpekWp\":[\"销售于\",[\"0\"],\"开始\"],\"mUv9U4\":\"销售\",\"9KnRdL\":\"销售已暂停\",\"JC3J0k\":\"每个场次的销售、出席和签到明细\",\"3VnlS9\":\"所有活动的销售、订单和性能指标\",\"3Q1AWe\":\"销售额:\",\"LeuERW\":\"与活动相同\",\"B4nE3N\":\"示例票价\",\"8BRPoH\":\"示例场地\",\"PiK6Ld\":\"周六\",\"+5kO8P\":\"星期六\",\"zJiuDn\":\"保存费用覆盖\",\"NB8Uxt\":\"保存日程\",\"KZrfYJ\":\"保存社交链接\",\"9Y3hAT\":\"保存模板\",\"C8ne4X\":\"保存票券设计\",\"cTI8IK\":\"保存增值税设置\",\"6/TNCd\":\"保存增值税设置\",\"4RvD9q\":\"已保存的地点\",\"cgw0cL\":\"已保存的地点\",\"lvSrsT\":\"已保存的地点\",\"Fbqm/I\":\"如该主办方当前使用系统默认设置,保存覆盖将为其创建专属配置。\",\"I+FvbD\":\"扫描\",\"0zd6Nm\":\"扫描票券以为参与者签到\",\"bQG7Qk\":\"扫描的票据将显示在此处\",\"WDYSLJ\":\"扫描模式\",\"gmB6oO\":\"日程\",\"j6NnBq\":\"日程创建成功\",\"YP7frt\":\"日程结束于\",\"QS1Nla\":\"稍后发送\",\"NAzVVw\":\"定时发送消息\",\"Fz09JP\":\"排程开始日期\",\"4ba0NE\":\"已安排\",\"qcP/8K\":\"定时时间\",\"A1taO8\":\"搜索\",\"ftNXma\":\"搜索推广员...\",\"VMU+zM\":\"搜索参与者\",\"VY+Bdn\":\"按账户名称或电子邮件搜索...\",\"VX+B3I\":\"按活动标题或主办方搜索...\",\"R0wEyA\":\"按任务名称或异常搜索...\",\"VT+urE\":\"按姓名或电子邮件搜索...\",\"GHdjuo\":\"按姓名、电子邮件或账户搜索...\",\"4mBFO7\":\"按姓名、订单号、票号或邮箱搜索\",\"20ce0U\":\"按订单ID、客户姓名或电子邮件搜索...\",\"4DSz7Z\":\"按主题、活动或账户搜索...\",\"nQC7Z9\":\"搜索日期...\",\"iRtEpV\":\"搜索日期…\",\"JRM7ao\":\"搜索地址\",\"BWF1kC\":\"搜索消息...\",\"3aD3GF\":\"季节性\",\"ku//5b\":\"第二\",\"Mck5ht\":\"安全结账\",\"s7tXqF\":\"查看日程\",\"JFap6u\":\"查看 Stripe 还需要什么\",\"p7xUrt\":\"选择类别\",\"hTKQwS\":\"选择日期和时间\",\"e4L7bF\":\"选择一条消息查看其内容\",\"zPRPMf\":\"选择级别\",\"uqpVri\":\"选择时间\",\"BFRSTT\":\"选择账户\",\"wgNoIs\":\"全选\",\"mCB6Je\":\"全选\",\"aCEysm\":[\"全选 \",[\"0\"]],\"a6+167\":\"选择活动\",\"CFbaPk\":\"选择参会者组\",\"88a49s\":\"选择摄像头\",\"tVW/yo\":\"选择货币\",\"SJQM1I\":\"选择日期\",\"n9ZhRa\":\"选择结束日期和时间\",\"gTN6Ws\":\"选择结束时间\",\"0U6E9W\":\"选择活动类别\",\"j9cPeF\":\"选择事件类型\",\"ypTjHL\":\"选择场次\",\"KizCK7\":\"选择开始日期和时间\",\"dJZTv2\":\"选择开始时间\",\"x8XMsJ\":\"为此帐户选择消息级别。这控制消息限制和链接权限。\",\"aT3jZX\":\"选择时区\",\"TxfvH2\":\"选择应该收到此消息的参会者\",\"Ropvj0\":\"选择哪些事件将触发此 Webhook\",\"+6YAwo\":\"已选择\",\"ylXj1N\":\"已选择\",\"uq3CXQ\":\"让您的活动售罄。\",\"j9b/iy\":\"热卖中 🔥\",\"73qYgo\":\"作为测试发送\",\"HMAqFK\":\"向参与者、持票人或订单所有者发送电子邮件。消息可以立即发送或安排稍后发送。\",\"22Itl6\":\"给我发送副本\",\"NpEm3p\":\"立即发送\",\"nOBvex\":\"将实时订单和参与者数据发送到您的外部系统。\",\"1lNPhX\":\"发送退款通知邮件\",\"eaUTwS\":\"发送重置链接\",\"5cV4PY\":\"发送到所有场次,或选择特定场次\",\"QEQlnV\":\"发送您的第一条消息\",\"3nMAVT\":\"将在 2 天 4 小时后发送\",\"IoAuJG\":\"正在发送...\",\"h69WC6\":\"已发送\",\"BVu2Hz\":\"发送者\",\"ZFa8wv\":\"在已安排的日期被取消时发送给参与者\",\"SPdzrs\":\"客户下单时发送\",\"LxSN5F\":\"发送给每位参会者及其门票详情\",\"hgvbYY\":\"九月\",\"5sN96e\":\"场次已取消\",\"89xaFU\":\"为此组织者创建的新活动设置默认平台费用设置。\",\"eXssj5\":\"为此组织者创建的新活动设置默认设置。\",\"uPe5p8\":\"设置每个日期的持续时间\",\"xNsRxU\":\"设置日期数量\",\"ODuUEi\":\"设置或清除日期标签\",\"buHACR\":\"将每个日期的结束时间设为开始时间之后该时长。\",\"TaeFgl\":\"设为无限制(移除上限)\",\"pd6SSe\":\"设置循环日程以自动创建日期,或逐个添加。\",\"s0FkEx\":\"为不同的入口、场次或日期设置签到列表。\",\"TaWVGe\":\"设置付款\",\"gzXY7l\":\"设置日程\",\"xMO+Ao\":\"设置您的组织\",\"h/9JiC\":\"设置您的日程\",\"ETC76A\":\"设置、更改或移除该场次的地点或在线信息\",\"C3htzi\":\"设置已更新\",\"Ohn74G\":\"设置与设计\",\"1W5XyZ\":\"设置只需几分钟——您无需已有的 Stripe 账户。Stripe 会处理卡支付、电子钱包、地区性支付方式以及欺诈防护,您可以专心办活动。\",\"GG7qDw\":\"分享推广链接\",\"hL7sDJ\":\"分享组织者页面\",\"jy6QDF\":\"共享容量管理\",\"jDNHW4\":\"平移时间\",\"tPfIaW\":[\"已为 \",[\"count\"],\" 个日期平移时间\"],\"WwlM8F\":\"显示高级选项\",\"cMW+gm\":[\"显示所有平台(另有 \",[\"0\"],\" 个包含值)\"],\"wXi9pZ\":\"向未登录员工显示备注\",\"UVPI5D\":\"显示更少平台\",\"Eu/N/d\":\"显示营销订阅复选框\",\"SXzpzO\":\"默认显示营销订阅复选框\",\"57tTk5\":\"显示更多日期\",\"b33PL9\":\"显示更多平台\",\"Eut7p9\":\"向未登录员工显示订单详情\",\"+RoWKN\":\"向未登录员工显示回答\",\"t1LIQW\":[\"显示 \",[\"0\"],\" / \",[\"totalRows\"],\" 条记录\"],\"E717U9\":[\"显示 \",[\"0\"],\"–\",[\"1\"],\" 项,共 \",[\"2\"],\" 项\"],\"5rzhBQ\":[\"显示 \",[\"totalAvailable\"],\" 个日期中的 \",[\"MAX_VISIBLE\"],\" 个。输入以搜索。\"],\"WSt3op\":[\"显示前 \",[\"0\"],\" 个 — 发送消息时,剩余的 \",[\"1\"],\" 个场次仍会被包括在内。\"],\"OJLTEL\":\"员工首次打开签到页时显示。\",\"jVRHeq\":\"注册时间\",\"5C7J+P\":\"单次活动\",\"E//btK\":\"跳过已手动编辑的日期\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"社交\",\"d0rUsW\":\"社交链接\",\"j/TOB3\":\"社交链接与网站\",\"s9KGXU\":\"已售出\",\"iACSrw\":\"部分详情对公共访问者隐藏。登录可查看全部内容。\",\"KTxc6k\":\"出现问题,请重试,或在问题持续时联系客服\",\"lkE00/\":\"出了点问题。请稍后再试。\",\"wdxz7K\":\"来源\",\"fDG2by\":\"灵性\",\"oPaRES\":\"按日期、区域或票种划分签到。将链接分享给员工 — 无需账号。\",\"7JFNej\":\"体育\",\"/bfV1Y\":\"员工说明\",\"tXkhj/\":\"开始\",\"JcQp9p\":\"开始日期和时间\",\"0m/ekX\":\"开始日期和时间\",\"izRfYP\":\"开始日期为必填项\",\"tuO4fV\":\"场次开始日期\",\"2R1+Rv\":\"活动开始时间\",\"2Olov3\":\"场次开始时间\",\"n9ZrDo\":\"开始输入场馆或地址...\",\"qeFVhN\":[[\"diffDays\"],\" 天后开始\"],\"AOqtxN\":[[\"diffMinutes\"],\" 分钟后开始\"],\"Otg8Oh\":[[\"h\"],\" 小时 \",[\"m\"],\" 分钟后开始\"],\"Lo49in\":[[\"seconds\"],\" 秒后开始\"],\"NqChgF\":\"明天开始\",\"2NbyY/\":\"统计数据\",\"GVUxAX\":\"统计数据基于账户创建日期\",\"29Hx9U\":\"统计\",\"5ia+r6\":\"仍需提供\",\"wuV0bK\":\"停止模拟\",\"s/KaDb\":\"Stripe 已连接\",\"Bk06QI\":\"Stripe 已连接\",\"akZMv8\":[\"已从 \",[\"0\"],\" 复制 Stripe 连接。\"],\"v0aRY1\":\"Stripe 没有返回设置链接,请重试。\",\"aKtF0O\":\"Stripe未连接\",\"9i0++A\":\"Stripe 支付 ID\",\"R1lIMV\":\"Stripe 很快需要一些额外信息\",\"FzcCHA\":\"Stripe 会引导你回答几个简短问题,完成设置。\",\"eYbd7b\":\"日\",\"ii0qn/\":\"主题是必需的\",\"M7Uapz\":\"主题将显示在这里\",\"6aXq+t\":\"主题:\",\"JwTmB6\":\"产品复制成功\",\"WUOCgI\":\"已成功提供名额\",\"IvxA4G\":[\"已成功向 \",[\"count\"],\" 人提供门票\"],\"kKpkzy\":\"已成功向 1 人提供门票\",\"Zi3Sbw\":\"已成功从候补名单中移除\",\"RuaKfn\":\"地址更新成功\",\"kzx0uD\":\"成功更新活动默认设置\",\"5n+Wwp\":\"组织者更新成功\",\"DMCX/I\":\"平台费用默认设置更新成功\",\"URUYHc\":\"平台费用设置更新成功\",\"0Dk/l8\":\"SEO 设置更新成功\",\"S8Tua9\":\"设置更新成功\",\"MhOoLQ\":\"社交链接更新成功\",\"CNSSfp\":\"跟踪设置更新成功\",\"kj7zYe\":\"Webhook 更新成功\",\"dXoieq\":\"摘要\",\"/RfJXt\":[\"夏季音乐节 \",[\"0\"]],\"CWOPIK\":\"2025夏季音乐节\",\"D89zck\":\"周日\",\"DBC3t5\":\"星期日\",\"UaISq3\":\"瑞典语\",\"JZTQI0\":\"切换组织者\",\"9YHrNC\":\"系统默认\",\"lruQkA\":\"点击屏幕以继续扫描\",\"TJUrME\":[\"面向 \",[\"0\"],\" 个所选场次的参与者。\"],\"yT6dQ8\":\"按税种和活动分组的已收税款\",\"Ye321X\":\"税种名称\",\"WyCBRt\":\"税务摘要\",\"GkH0Pq\":\"已应用税费\",\"Rwiyt2\":\"税费已配置\",\"iQZff7\":\"税费、费用、可见性、销售期、产品亮点和订单限制\",\"SXvRWU\":\"团队协作\",\"vlf/In\":\"科技\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"告诉人们您的活动会有哪些内容\",\"NiIUyb\":\"介绍一下您的活动\",\"DovcfC\":\"请告诉我们您的组织信息。这些信息将显示在您的活动页面上。\",\"69GWRq\":\"告诉我们您的活动多久重复一次,我们会为您创建所有日期。\",\"mXPbwY\":\"请告诉我们您的增值税注册状态,以便我们对平台费用应用正确的增值税处理。\",\"7wtpH5\":\"模板已激活\",\"QHhZeE\":\"模板创建成功\",\"xrWdPR\":\"模板删除成功\",\"G04Zjt\":\"模板保存成功\",\"xowcRf\":\"服务条款\",\"6K0GjX\":\"文字可能难以阅读\",\"u0F1Ey\":\"四\",\"nm3Iz/\":\"感谢您的参与!\",\"pYwj0k\":\"谢谢,\",\"k3IitN\":\"圆满结束\",\"KfmPRW\":\"页面的背景颜色。使用封面图片时,此颜色将作为叠加层应用。\",\"MDNyJz\":\"验证码将在10分钟后过期。如果您没有收到邮件,请检查垃圾邮件文件夹。\",\"AIF7J2\":\"定义固定费用的货币。结账时将转换为订单货币。\",\"MJm4Tq\":\"订单的货币\",\"cDHM1d\":\"电子邮件地址已更改。参与者将在更新后的电子邮件地址收到新门票。\",\"I/NNtI\":\"活动场地\",\"tXadb0\":\"您查找的活动目前不可用。它可能已被删除、过期或 URL 不正确。\",\"5fPdZe\":\"此排程将从此日期开始生成。\",\"EBzPwC\":\"活动的完整地址\",\"sxKqBm\":\"订单全额将退款至客户的原始付款方式。\",\"KgDp6G\":\"您尝试访问的链接已过期或不再有效。请检查您的电子邮件以获取管理订单的更新链接。\",\"5OmEal\":\"客户的语言\",\"Np4eLs\":[\"最多 \",[\"MAX_PREVIEW\"],\" 个场次。请减少日期范围、频率或每天的场次数量。\"],\"sYLeDq\":\"未找到您要查找的组织者。页面可能已被移动、删除或链接有误。\",\"PCr4zw\":\"该覆盖已记录在订单审计日志中。\",\"C4nQe5\":\"平台费用会添加到票价中。买家支付更多,但您会收到完整的票价。\",\"HxxXZO\":\"用于按钮和突出显示的主要品牌颜色\",\"z0KrIG\":\"定时时间为必填项\",\"EWErQh\":\"定时时间必须是将来的时间\",\"UNd0OU\":[\"原定于 \",[\"0\"],\" 的“\",[\"title\"],\"”场次已重新安排。\"],\"DEcpfp\":\"模板正文包含无效的Liquid语法。请更正后再试。\",\"injXD7\":\"增值税号无法验证。请检查号码并重试。\",\"A4UmDy\":\"戏剧\",\"tDwYhx\":\"主题与颜色\",\"O7g4eR\":\"此活动没有即将到来的日期\",\"HrIl0p\":[\"没有专属于此日期的签到列表。“\",[\"0\"],\"”列表会为所有日期的参与者签到 — 工作人员扫描其他日期的门票仍能成功。\"],\"dt3TwA\":\"这些是所有日期的默认价格和数量。各档位的销售日期为全局生效。您可以在 <0>场次日程页面 为单个日期覆盖价格和数量。\",\"062KsE\":\"这些详情仅在此日期的参与者门票和订单摘要中显示。\",\"5Eu+tn\":\"这些详情仅在订单成功完成后显示。\",\"jQjwR+\":\"这些信息将替换受影响场次上现有的地点,并显示在参会者门票上。\",\"QP3gP+\":\"这些设置仅适用于复制的嵌入代码,不会被保存。\",\"HirZe8\":\"这些模板将用作您组织中所有活动的默认模板。单个活动可以用自己的自定义版本覆盖这些模板。\",\"lzAaG5\":\"这些模板将仅覆盖此活动的组织者默认设置。如果这里没有设置自定义模板,将使用组织者模板。\",\"UlykKR\":\"第三\",\"wkP5FM\":\"这适用于活动中每一个匹配的日期,包括当前不可见的日期。在任何这些日期上报名的参与者,更新完成后均可通过消息撰写器联系。\",\"SOmGDa\":\"此签到列表绑定的场次已被取消,无法再用于签到。\",\"XBNC3E\":\"此代码将用于跟踪销售。只允许字母、数字、连字符和下划线。\",\"AaP0M+\":\"此颜色组合对某些用户来说可能难以阅读\",\"o1phK/\":[\"此日期有 \",[\"orderCount\"],\" 个订单将受到影响。\"],\"F/UtGt\":\"此日期已被取消。您仍可删除它以永久移除。\",\"BLZ7pX\":\"此日期已过去。将会创建,但不会出现在参与者的即将到来日期中。\",\"7IIY0z\":\"此日期已标记为售罄。\",\"bddWMP\":\"此日期已不再可用。请选择其他日期。\",\"RzEvf5\":\"此活动已结束\",\"YClrdK\":\"此活动尚未发布\",\"dFJnia\":\"这是您的组织者名称,将展示给用户。\",\"vt7jiq\":\"签名密钥仅显示一次。请立即复制并妥善保存。\",\"L7dIM7\":\"此链接无效或已过期。\",\"MR5ygV\":\"此链接不再有效\",\"9LEqK0\":\"此名称对最终用户可见\",\"QdUMM9\":\"此场次已满员\",\"j5FdeA\":\"此订单正在处理中。\",\"sjNPMw\":\"此订单已被放弃。您可以随时开始新订单。\",\"OhCesD\":\"此订单已被取消。您可以随时开始新订单。\",\"lyD7rQ\":\"此主办方资料尚未发布\",\"9b5956\":\"此预览显示您的邮件使用示例数据的外观。实际邮件将使用真实值。\",\"uM9Alj\":\"此产品在活动页面上已突出显示\",\"RqSKdX\":\"此产品已售罄\",\"W12OdJ\":\"此报告仅供参考。在将此数据用于会计或税务目的之前,请务必咨询税务专业人士。请与您的Stripe仪表板进行交叉验证,因为Hi.Events可能缺少历史数据。\",\"0Ew0uk\":\"此门票刚刚被扫描。请等待后再次扫描。\",\"FYXq7k\":[\"这将影响 \",[\"loadedAffectedCount\"],\" 个日期。\"],\"kvpxIU\":\"这将用于通知和与用户沟通。\",\"rhsath\":\"这对客户不可见,但有助于您识别推广员。\",\"hV6FeJ\":\"吞吐\",\"+FjWgX\":\"周四\",\"kkDQ8m\":\"星期四\",\"0GSPnc\":\"票券设计\",\"EZC/Cu\":\"票券设计保存成功\",\"bbslmb\":\"门票设计器\",\"1BPctx\":\"门票:\",\"bgqf+K\":\"持票人邮箱\",\"oR7zL3\":\"持票人姓名\",\"HGuXjF\":\"票务持有人\",\"CMUt3Y\":\"票务持有人\",\"awHmAT\":\"门票 ID\",\"6czJik\":\"门票标志\",\"OkRZ4Z\":\"门票名称\",\"t79rDv\":\"未找到门票\",\"6tmWch\":\"票或商品\",\"1tfWrD\":\"门票预览:\",\"KnjoUA\":\"票价\",\"tGCY6d\":\"门票价格\",\"pGZOcL\":\"门票重新发送成功\",\"8jLPgH\":\"票券类型\",\"X26cQf\":\"门票链接\",\"8qsbZ5\":\"票务与销售\",\"zNECqg\":\"门票\",\"6GQNLE\":\"门票\",\"NRhrIB\":\"票务与商品\",\"OrWHoZ\":\"当有空余名额时,门票将自动提供给候补名单中的客户。\",\"EUnesn\":\"门票有售\",\"AGRilS\":\"已售票数\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"时间\",\"dMtLDE\":\"至\",\"/jQctM\":\"收件人\",\"tiI71C\":\"要提高您的限制,请联系我们\",\"ecUA8p\":\"今天\",\"W428WC\":\"切换列\",\"BRMXj0\":\"明天\",\"UBSG1X\":\"顶级组织者(过去14天)\",\"3sZ0xx\":\"总账户数\",\"EaAPbv\":\"支付总金额\",\"SMDzqJ\":\"总参与人数\",\"orBECM\":\"总收款\",\"k5CU8c\":\"总条目\",\"4B7oCp\":\"总费用\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"总用户数\",\"oJjplO\":\"总浏览量\",\"rBZ9pz\":\"旅游\",\"orluER\":\"按归因来源跟踪账户增长和表现\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"如果是线下支付则为真\",\"9GsDR2\":\"如果付款待处理则为真\",\"GUA0Jy\":\"尝试其他搜索词或筛选\",\"2P/OWN\":\"尝试调整筛选条件以查看更多日期。\",\"ouM5IM\":\"尝试其他邮箱\",\"3DZvE7\":\"免费试用Hi.Events\",\"7P/9OY\":\"二\",\"vq2WxD\":\"周二\",\"G3myU+\":\"星期二\",\"Kz91g/\":\"土耳其语\",\"GdOhw6\":\"关闭声音\",\"KUOhTy\":\"开启声音\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"输入\\\"删除\\\"以确认\",\"XxecLm\":\"门票类型\",\"IrVSu+\":\"无法复制产品。请检查您的详细信息\",\"Vx2J6x\":\"无法获取参与者\",\"h0dx5e\":\"无法加入候补名单\",\"DaE0Hg\":\"无法加载参与者详情。\",\"GlnD5Y\":\"无法加载此日期的商品。请重试。\",\"17VbmV\":\"无法撤销签到\",\"n57zCW\":\"未归因账户\",\"9uI/rE\":\"撤销\",\"b9SN9q\":\"唯一订单参考\",\"Ef7StM\":\"未知\",\"ZBAScj\":\"未知参会者\",\"MEIAzV\":\"未命名\",\"K6L5Mx\":\"未命名地点\",\"X13xGn\":\"不受信任\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"更新推广员\",\"59qHrb\":\"更新容量\",\"Gaem9v\":\"更新活动名称和描述\",\"7EhE4k\":\"更新标签\",\"NPQWj8\":\"更新地点\",\"75+lpR\":[\"更新:\",[\"subjectTitle\"],\" — 日程变更\"],\"UOGHdA\":[\"更新:\",[\"subjectTitle\"],\" — 场次时间变更\"],\"ogoTrw\":[\"已更新 \",[\"count\"],\" 个日期\"],\"dDuona\":[\"已更新 \",[\"count\"],\" 个日期的容量\"],\"FT3LSc\":[\"已更新 \",[\"count\"],\" 个日期的标签\"],\"8EcY1g\":[\"已更新 \",[\"count\"],\" 个场次的地点\"],\"gJQsLv\":\"上传组织者封面图像\",\"4kEGqW\":\"上传组织者 Logo\",\"lnCMdg\":\"上传图片\",\"29w7p6\":\"正在上传图像...\",\"HtrFfw\":\"URL 是必填项\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB 扫描仪运行中\",\"dyTklH\":\"USB 扫描仪已暂停\",\"OHJXlK\":\"使用 <0>Liquid 模板 个性化您的邮件\",\"g0WJMu\":\"使用所有日期的列表\",\"0k4cdb\":\"对所有参与者使用订单详情。参与者姓名和电子邮件将与买家信息匹配。\",\"MKK5oI\":\"使用所有日期的列表,还是为此日期创建一个列表?\",\"bA31T4\":\"为所有参与者使用购买者的信息\",\"rnoQsz\":\"用于边框、高亮和二维码样式\",\"BV4L/Q\":\"UTM 分析\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"正在验证您的增值税号...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"增值税号\",\"pnVh83\":\"增值税号码\",\"CabI04\":\"增值税号不得包含空格\",\"PMhxAR\":\"增值税号必须以2字母国家代码开头,后跟8-15个字母数字字符(例如,DE123456789)\",\"gPgdNV\":\"增值税号验证成功\",\"RUMiLy\":\"增值税号验证失败\",\"vqji3Y\":\"增值税号验证失败。请检查您的增值税号。\",\"8dENF9\":\"费用增值税\",\"ZutOKU\":\"增值税率\",\"+KJZt3\":\"已注册增值税\",\"Nfbg76\":\"增值税设置已成功保存\",\"UvYql/\":\"增值税设置已保存。我们正在后台验证您的增值税号。\",\"bXn1Jz\":\"增值税设置已更新\",\"tJylUv\":\"平台费用的增值税处理\",\"FlGprQ\":\"平台费用的增值税处理:欧盟增值税注册企业可以使用反向收费机制(0% - 增值税指令2006/112/EC第196条)。未注册增值税的企业需缴纳23%的爱尔兰增值税。\",\"516oLj\":\"增值税验证服务暂时不可用\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"增值税:未注册\",\"AdWhjZ\":\"验证码\",\"QDEWii\":\"已验证\",\"wCKkSr\":\"验证邮箱\",\"/IBv6X\":\"验证您的邮箱\",\"e/cvV1\":\"正在验证...\",\"fROFIL\":\"越南语\",\"p5nYkr\":\"查看全部\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"查看全部功能\",\"RnvnDc\":\"查看平台上发送的所有消息\",\"+WFMis\":\"查看和下载所有活动的报告。仅包含已完成的订单。\",\"c7VN/A\":\"查看答案\",\"SZw9tS\":\"查看详情\",\"9+84uW\":[\"查看 \",[\"0\"],\" \",[\"1\"],\" 的详情\"],\"FCVmuU\":\"查看活动\",\"c6SXHN\":\"查看活动页面\",\"n6EaWL\":\"查看日志\",\"OaKTzt\":\"查看地图\",\"zNZNMs\":\"查看消息\",\"67OJ7t\":\"查看订单\",\"tKKZn0\":\"查看订单详情\",\"KeCXJu\":\"查看订单详情、退款和重新发送确认。\",\"9jnAcN\":\"查看组织者主页\",\"1J/AWD\":\"查看门票\",\"N9FyyW\":\"查看、编辑和导出您的注册参与者。\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"等待中\",\"quR8Qp\":\"等待付款\",\"KrurBH\":\"等待扫描…\",\"u0n+wz\":\"候补名单\",\"3RXFtE\":\"候补名单已启用\",\"TwnTPy\":\"候补邀约已过期\",\"NzIvKm\":\"已触发候补名单\",\"aUi/Dz\":\"警告:这是系统默认配置。更改将影响所有未分配特定配置的账户。\",\"qeygIa\":\"三\",\"aT/44s\":\"无法复制该 Stripe 连接,请重试。\",\"RRZDED\":\"我们找不到与此邮箱关联的订单。\",\"2RZK9x\":\"我们找不到您要查找的订单。链接可能已过期或订单详情可能已更改。\",\"nefMIK\":\"我们找不到您要查找的门票。链接可能已过期或门票详情可能已更改。\",\"miysJh\":\"我们找不到此订单。它可能已被删除。\",\"ADsQ23\":\"暂时无法连接到 Stripe,请稍后再试。\",\"HJKdzP\":\"加载此页面时遇到问题。请重试。\",\"jegrvW\":\"我们与 Stripe 合作,将款项直接打入您的银行账户。\",\"IfN2Qo\":\"我们建议使用最小尺寸为200x200像素的方形标志\",\"wJzo/w\":\"建议尺寸为 400x400 像素,文件大小不超过 5MB\",\"KRCDqH\":\"我们使用 Cookie 帮助我们了解网站的使用情况并改善您的体验。\",\"x8rEDQ\":\"我们在多次尝试后无法验证您的增值税号。我们将在后台继续尝试。请稍后检查。\",\"iy+M+c\":[\"当 \",[\"productDisplayName\"],\" 有空位时,我们会通过电子邮件通知您。\"],\"McuGND\":\"保存后,我们将打开预填模板的消息撰写器。由您审阅后发送 — 不会自动发送任何内容。\",\"q1BizZ\":\"我们将把您的门票发送到此邮箱\",\"ZOmUYW\":\"我们将在后台验证您的增值税号。如有任何问题,我们会通知您。\",\"LKjHr4\":[\"我们已更改“\",[\"title\"],\"”的日程 — \",[\"description\"],\",影响 \",[\"affectedCount\"],\" 个场次。\"],\"Fq/Nx7\":\"我们已向以下邮箱发送了5位数验证码:\",\"GdWB+V\":\"Webhook 创建成功\",\"2X4ecw\":\"Webhook 删除成功\",\"ndBv0v\":\"Webhook 集成\",\"CThMKa\":\"Webhook 日志\",\"I0adYQ\":\"Webhook 签名密钥\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook 不会发送通知\",\"FSaY52\":\"Webhook 将发送通知\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"网站\",\"0f7U0k\":\"周三\",\"VAcXNz\":\"星期三\",\"64X6l4\":\"周\",\"4XSc4l\":\"每周\",\"IAUiSh\":\"周\",\"vKLEXy\":\"微博\",\"9eF5oV\":\"欢迎回来\",\"QDWsl9\":[\"欢迎来到 \",[\"0\"],\",\",[\"1\"],\" 👋\"],\"LETnBR\":[\"欢迎来到 \",[\"0\"],\",这是您所有活动的列表\"],\"DDbx7K\":\"健康\",\"ywRaYa\":\"什么时间?\",\"FaSXqR\":\"什么类型的活动?\",\"0WyYF4\":\"未认证员工可见的内容\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"当签到被删除时\",\"RPe6bE\":\"当循环活动的某个日期被取消时\",\"Gmd0hv\":\"当新与会者被创建时\",\"zyIyPe\":\"当创建新活动时\",\"Lc18qn\":\"当新订单被创建时\",\"dfkQIO\":\"当新产品被创建时\",\"8OhzyY\":\"当产品被删除时\",\"tRXdQ9\":\"当产品被更新时\",\"9L9/28\":\"当商品售罄时,客户可加入候补名单,待有空位时收到通知。\",\"Q7CWxp\":\"当与会者被取消时\",\"IuUoyV\":\"当与会者签到时\",\"nBVOd7\":\"当与会者被更新时\",\"t7cuMp\":\"当活动被归档时\",\"gtoSzE\":\"当活动被更新时\",\"ny2r8d\":\"当订单被取消时\",\"c9RYbv\":\"当订单被标记为已支付时\",\"ejMDw1\":\"当订单被退款时\",\"fVPt0F\":\"当订单被更新时\",\"bcYlvb\":\"签到何时关闭\",\"XIG669\":\"签到何时开放\",\"403wpZ\":\"启用后,新活动将允许参与者通过安全链接管理自己的门票详情。这可以按活动覆盖。\",\"blXLKj\":\"启用后,新活动将在结账时显示营销订阅复选框。此设置可以针对每个活动单独覆盖。\",\"Kj0Txn\":\"启用后,Stripe Connect交易将不收取应用费用。用于不支持应用费用的国家。\",\"tMqezN\":\"退款是否正在处理中\",\"uchB0M\":\"小部件预览\",\"uvIqcj\":\"研讨会\",\"EpknJA\":\"请在此输入您的消息...\",\"nhtR6Y\":\"X(推特)\",\"7qI8sJ\":\"年\",\"zkWmBh\":\"每年\",\"+BGee5\":\"年\",\"X/azM1\":\"是 - 我有有效的欧盟增值税注册号码\",\"Tz5oXG\":\"是,取消我的订单\",\"QlSZU0\":[\"您正在模拟 <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"您正在发出部分退款。客户将获得 \",[\"0\"],\" \",[\"1\"],\" 的退款。\"],\"o7LgX6\":\"您可以在账户设置中配置额外的服务费和税费。\",\"rj3A7+\":\"您稍后可以为单个日期覆盖此设置。\",\"paWwQ0\":\"如有需要,您仍然可以手动提供门票。\",\"jTDzpA\":\"您无法归档账户中最后一个活跃的主办方。\",\"5VGIlq\":\"您已达到消息限制。\",\"casL1O\":\"您已向免费产品添加了税费。您想要删除它们吗?\",\"9jJNZY\":\"保存前您必须确认您的责任\",\"pCLes8\":\"您必须同意接收消息\",\"FVTVBy\":\"您必须先验证电子邮箱地址,才能更新组织者状态。\",\"ze4bi/\":\"您需要至少创建一个场次,才能向此循环活动添加参与者。\",\"w65ZgF\":\"您需要验证账户电子邮件后才能修改电子邮件模板。\",\"FRl8Jv\":\"您需要验证您的帐户电子邮件才能发送消息。\",\"88cUW+\":\"您收到\",\"O6/3cu\":\"您将能够在下一步设置日期、日程和循环规则。\",\"zKAheG\":\"您正在更改场次时间\",\"MNFIxz\":[\"您将参加 \",[\"0\"],\"!\"],\"qGZz0m\":\"您已加入候补名单!\",\"/5HL6k\":\"您已获得一个名额!\",\"gbjFFH\":\"您已更改场次时间\",\"p/Sa0j\":\"您的帐户有消息限制。要提高您的限制,请联系我们\",\"x/xjzn\":\"您的推广员已成功导出。\",\"TF37u6\":\"您的与会者已成功导出。\",\"79lXGw\":\"您的签到列表已成功创建。与您的签到工作人员共享以下链接。\",\"BnlG9U\":\"您当前的订单将丢失。\",\"nBqgQb\":\"您的电子邮件\",\"GG1fRP\":\"您的活动已上线!\",\"ifRqmm\":\"您的消息已成功发送!\",\"0/+Nn9\":\"您的消息将显示在此处\",\"/Rj5P4\":\"您的姓名\",\"PFjJxY\":\"您的新密码长度必须至少为8个字符。\",\"gzrCuN\":\"您的订单详情已更新。确认邮件已发送到新的电子邮件地址。\",\"naQW82\":\"您的订单已被取消。\",\"bhlHm/\":\"您的订单正在等待付款\",\"XeNum6\":\"您的订单已成功导出。\",\"Xd1R1a\":\"您组织者的地址\",\"WWYHKD\":\"您的付款受到银行级加密保护\",\"5b3QLi\":\"您的计划\",\"N4Zkqc\":\"您保存的日期筛选器已不可用 — 正在显示所有日期。\",\"FNO5uZ\":\"您的门票仍然有效 — 除非新时间不适合您,否则无需采取任何操作。如有疑问,请回复此邮件。\",\"CnZ3Ou\":\"您的门票已确认。\",\"EmFsMZ\":\"您的增值税号已排队等待验证\",\"QBlhh4\":\"保存时将验证您的增值税号\",\"fT9VLt\":\"您的候补邀约已过期,我们无法完成您的订单。请重新加入候补名单,待有更多空位时收到通知。\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'暂无内容可显示'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>签退成功\"],\"KMgp2+\":[[\"0\"],\"可用\"],\"Pmr5xp\":[\"成功创建 \",[\"0\"]],\"FImCSc\":[[\"0\"],\"更新成功\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" 天, \",[\"hours\"],\" 小时, \",[\"minutes\"],\" 分钟, 和 \",[\"seconds\"],\" 秒\"],\"f3RdEk\":[[\"hours\"],\" 小时, \",[\"minutes\"],\" 分钟, 和 \",[\"seconds\"],\" 秒\"],\"fyE7Au\":[[\"分\"],\"分钟和\",[\"秒\"],\"秒钟\"],\"NlQ0cx\":[[\"组织者名称\"],\"的首次活动\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0>请输入不含税费的价格。<1>税费可以在下方添加。\",\"ZjMs6e\":\"<0>该产品的可用数量<1>如果该产品有相关的<2>容量限制,此值可以被覆盖。\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 分 0 秒\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"缅因街 123 号\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"日期输入字段。非常适合询问出生日期等。\",\"6euFZ/\":[\"默认的\",[\"type\"],\"会自动应用于所有新产品。您可以为每个产品单独覆盖此设置。\"],\"SMUbbQ\":\"下拉式输入法只允许一个选择\",\"qv4bfj\":\"费用,如预订费或服务费\",\"POT0K/\":\"每个产品的固定金额。例如,每个产品$0.50\",\"f4vJgj\":\"多行文本输入\",\"OIPtI5\":\"产品价格的百分比。例如,3.5%的产品价格\",\"ZthcdI\":\"无折扣的促销代码可以用来显示隐藏的产品。\",\"AG/qmQ\":\"单选题有多个选项,但只能选择一个。\",\"h179TP\":\"活动的简短描述,将显示在搜索引擎结果中,并在社交媒体上分享时显示。默认情况下,将使用活动描述\",\"WKMnh4\":\"单行文本输入\",\"BHZbFy\":\"每个订单一个问题。例如,您的送货地址是什么?\",\"Fuh+dI\":\"每个产品一个问题。例如,您的T恤尺码是多少?\",\"RlJmQg\":\"标准税,如增值税或消费税\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"接受银行转账、支票或其他线下支付方式\",\"hrvLf4\":\"通过 Stripe 接受信用卡支付\",\"bfXQ+N\":\"接受邀请\",\"AeXO77\":\"账户\",\"lkNdiH\":\"账户名称\",\"Puv7+X\":\"账户设置\",\"OmylXO\":\"账户更新成功\",\"7L01XJ\":\"操作\",\"FQBaXG\":\"激活\",\"5T2HxQ\":\"激活日期\",\"F6pfE9\":\"活跃\",\"/PN1DA\":\"为此签到列表添加描述\",\"0/vPdA\":\"添加有关与会者的任何备注。这些将不会对与会者可见。\",\"Or1CPR\":\"添加有关与会者的任何备注...\",\"l3sZO1\":\"添加关于订单的备注。这些信息不会对客户可见。\",\"xMekgu\":\"添加关于订单的备注...\",\"PGPGsL\":\"添加描述\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"添加线下支付的说明(例如,银行转账详情、支票寄送地址、付款截止日期)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"添加新内容\",\"TZxnm8\":\"添加选项\",\"24l4x6\":\"添加产品\",\"8q0EdE\":\"将产品添加到类别\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"加税或费用\",\"goOKRY\":\"增加层级\",\"oZW/gT\":\"添加到日历\",\"pn5qSs\":\"附加信息\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"地址\",\"NY/x1b\":\"地址第 1 行\",\"POdIrN\":\"地址 1\",\"cormHa\":\"地址第 2 行\",\"gwk5gg\":\"地址第 2 行\",\"U3pytU\":\"管理员\",\"HLDaLi\":\"管理员用户可以完全访问事件和账户设置。\",\"W7AfhC\":\"本次活动的所有与会者\",\"cde2hc\":\"所有产品\",\"5CQ+r0\":\"允许与未支付订单关联的参与者签到\",\"ipYKgM\":\"允许搜索引擎索引\",\"LRbt6D\":\"允许搜索引擎索引此事件\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"令人惊叹, 活动, 关键词...\",\"hehnjM\":\"金额\",\"R2O9Rg\":[\"支付金额 (\",[\"0\"],\")\"],\"V7MwOy\":\"加载页面时出现错误\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"出现意外错误。\",\"byKna+\":\"出现意外错误。请重试。\",\"ubdMGz\":\"产品持有者的任何查询都将发送到此电子邮件地址。此地址还将用作从此活动发送的所有电子邮件的“回复至”地址\",\"aAIQg2\":\"外观\",\"Ym1gnK\":\"应用\",\"sy6fss\":[\"适用于\",[\"0\"],\"个产品\"],\"kadJKg\":\"适用于1个产品\",\"DB8zMK\":\"应用\",\"GctSSm\":\"应用促销代码\",\"ARBThj\":[\"将此\",[\"type\"],\"应用于所有新产品\"],\"S0ctOE\":\"归档活动\",\"TdfEV7\":\"已归档\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"您确定要激活该与会者吗?\",\"TvkW9+\":\"您确定要归档此活动吗?\",\"/CV2x+\":\"您确定要取消该与会者吗?这将使其门票作废\",\"YgRSEE\":\"您确定要删除此促销代码吗?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"您确定要将此活动设为草稿吗?这将使公众无法看到该活动\",\"mEHQ8I\":\"您确定要将此事件公开吗?这将使事件对公众可见\",\"s4JozW\":\"您确定要恢复此活动吗?它将作为草稿恢复。\",\"vJuISq\":\"您确定要删除此容量分配吗?\",\"baHeCz\":\"您确定要删除此签到列表吗?\",\"LBLOqH\":\"每份订单询问一次\",\"wu98dY\":\"每个产品询问一次\",\"ss9PbX\":\"参与者\",\"m0CFV2\":\"与会者详情\",\"QKim6l\":\"未找到参与者\",\"R5IT/I\":\"与会者备注\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"参会者票\",\"9SZT4E\":\"参与者\",\"iPBfZP\":\"注册的参会者\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"自动调整大小\",\"vZ5qKF\":\"根据内容自动调整小部件高度。禁用时,小部件将填充容器的高度。\",\"4lVaWA\":\"等待线下付款\",\"2rHwhl\":\"等待线下付款\",\"3wF4Q/\":\"等待付款\",\"ioG+xt\":\"等待付款\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"返回活动页面\",\"VCoEm+\":\"返回登录\",\"k1bLf+\":\"背景颜色\",\"I7xjqg\":\"背景类型\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"账单地址\",\"/xC/im\":\"账单设置\",\"rp/zaT\":\"巴西葡萄牙语\",\"whqocw\":\"注册即表示您同意我们的<0>服务条款和<1>隐私政策。\",\"bcCn6r\":\"计算类型\",\"+8bmSu\":\"加利福尼亚州\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"取消\",\"Gjt/py\":\"取消更改电子邮件\",\"tVJk4q\":\"取消订单\",\"Os6n2a\":\"取消订单\",\"Mz7Ygx\":[\"取消订单 \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"已取消\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"容量\",\"V6Q5RZ\":\"容量分配创建成功\",\"k5p8dz\":\"容量分配删除成功\",\"nDBs04\":\"容量管理\",\"ddha3c\":\"类别允许您将产品分组。例如,您可以有一个“门票”类别和另一个“商品”类别。\",\"iS0wAT\":\"类别帮助您组织产品。此标题将在公共活动页面上显示。\",\"eorM7z\":\"类别重新排序成功。\",\"3EXqwa\":\"类别创建成功\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"更改密码\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"签到 \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"签到并标记订单为已付款\",\"QYLpB4\":\"仅签到\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"看看这个活动吧!\",\"gXcPxc\":\"签到\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"签到列表删除成功\",\"+hBhWk\":\"签到列表已过期\",\"mBsBHq\":\"签到列表未激活\",\"vPqpQG\":\"未找到签到列表\",\"tejfAy\":\"签到列表\",\"hD1ocH\":\"签到链接已复制到剪贴板\",\"CNafaC\":\"复选框选项允许多重选择\",\"SpabVf\":\"复选框\",\"CRu4lK\":\"已签到\",\"znIg+z\":\"结账\",\"1WnhCL\":\"结账设置\",\"6imsQS\":\"简体中文\",\"JjkX4+\":\"选择背景颜色\",\"/Jizh9\":\"选择账户\",\"3wV73y\":\"城市\",\"FG98gC\":\"清除搜索文本\",\"EYeuMv\":\"click here\",\"sby+1/\":\"点击复制\",\"yz7wBu\":\"关闭\",\"62Ciis\":\"关闭侧边栏\",\"EWPtMO\":\"代码\",\"ercTDX\":\"代码长度必须在 3 至 50 个字符之间\",\"oqr9HB\":\"当活动页面初始加载时折叠此产品\",\"jZlrte\":\"颜色\",\"Vd+LC3\":\"颜色必须是有效的十六进制颜色代码。例如#ffffff\",\"1HfW/F\":\"颜色\",\"VZeG/A\":\"即将推出\",\"yPI7n9\":\"以逗号分隔的描述活动的关键字。搜索引擎将使用这些关键字来帮助对活动进行分类和索引\",\"NPZqBL\":\"完整订单\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"完成付款\",\"qqWcBV\":\"已完成\",\"6HK5Ct\":\"已完成订单\",\"NWVRtl\":\"已完成订单\",\"DwF9eH\":\"组件代码\",\"Tf55h7\":\"已配置折扣\",\"7VpPHA\":\"确认\",\"ZaEJZM\":\"确认电子邮件更改\",\"yjkELF\":\"确认新密码\",\"xnWESi\":\"确认密码\",\"p2/GCq\":\"确认密码\",\"wnDgGj\":\"确认电子邮件地址...\",\"pbAk7a\":\"连接条纹\",\"UMGQOh\":\"与 Stripe 连接\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"连接详情\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"继续\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"继续按钮文字\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"复制的\",\"T5rdis\":\"复制到剪贴板\",\"he3ygx\":\"复制\",\"r2B2P8\":\"复制签到链接\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"复制链接\",\"E6nRW7\":\"复制 URL\",\"JNCzPW\":\"国家\",\"IF7RiR\":\"封面\",\"hYgDIe\":\"创建\",\"b9XOHo\":[\"创建 \",[\"0\"]],\"k9RiLi\":\"创建一个产品\",\"6kdXbW\":\"创建促销代码\",\"n5pRtF\":\"创建票单\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"创建一个组织者\",\"ipP6Ue\":\"创建与会者\",\"VwdqVy\":\"创建容量分配\",\"EwoMtl\":\"创建类别\",\"XletzW\":\"创建类别\",\"WVbTwK\":\"创建签到列表\",\"uN355O\":\"创建活动\",\"BOqY23\":\"创建新的\",\"kpJAeS\":\"创建组织器\",\"a0EjD+\":\"创建产品\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"创建促销代码\",\"B3Mkdt\":\"创建问题\",\"UKfi21\":\"创建税费\",\"d+F6q9\":\"已创建\",\"Q2lUR2\":\"货币\",\"DCKkhU\":\"当前密码\",\"uIElGP\":\"自定义地图 URL\",\"UEqXyt\":\"自定义范围\",\"876pfE\":\"客户\",\"QOg2Sf\":\"自定义此事件的电子邮件和通知设置\",\"Y9Z/vP\":\"定制活动主页和结账信息\",\"2E2O5H\":\"自定义此事件的其他设置\",\"iJhSxe\":\"自定义此事件的搜索引擎优化设置\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"危险区\",\"ZQKLI1\":\"危险区\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"日期\",\"JvUngl\":\"日期和时间\",\"JJhRbH\":\"第一天容量\",\"cnGeoo\":\"删除\",\"jRJZxD\":\"删除容量\",\"VskHIx\":\"删除类别\",\"Qrc8RZ\":\"删除签到列表\",\"WHf154\":\"删除代码\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"说明\",\"YC3oXa\":\"签到工作人员的描述\",\"URmyfc\":\"详细信息\",\"1lRT3t\":\"禁用此容量将跟踪销售情况,但不会在达到限制时停止销售\",\"H6Ma8Z\":\"折扣\",\"ypJ62C\":\"折扣率\",\"3LtiBI\":[[\"0\"],\"中的折扣\"],\"C8JLas\":\"折扣类型\",\"1QfxQT\":\"关闭\",\"DZlSLn\":\"文档标签\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"捐赠 / 自由定价产品\",\"OvNbls\":\"下载 .ics\",\"kodV18\":\"下载 CSV\",\"CELKku\":\"下载发票\",\"LQrXcu\":\"下载发票\",\"QIodqd\":\"下载二维码\",\"yhjU+j\":\"正在下载发票\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"下拉选择\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"复制活动\",\"3ogkAk\":\"复制活动\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"复制选项\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"早起的鸟儿\",\"ePK91l\":\"编辑\",\"N6j2JH\":[\"编辑 \",[\"0\"]],\"kBkYSa\":\"编辑容量\",\"oHE9JT\":\"编辑容量分配\",\"j1Jl7s\":\"编辑类别\",\"FU1gvP\":\"编辑签到列表\",\"iFgaVN\":\"编辑代码\",\"jrBSO1\":\"编辑组织器\",\"tdD/QN\":\"编辑产品\",\"n143Tq\":\"编辑产品类别\",\"9BdS63\":\"编辑促销代码\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"编辑问题\",\"poTr35\":\"编辑用户\",\"GTOcxw\":\"编辑用户\",\"pqFrv2\":\"例如2.50 换 2.50\",\"3yiej1\":\"例如23.5 表示 23.5%\",\"O3oNi5\":\"电子邮件\",\"VxYKoK\":\"电子邮件和通知设置\",\"ATGYL1\":\"电子邮件地址\",\"hzKQCy\":\"电子邮件地址\",\"HqP6Qf\":\"电子邮件更改已成功取消\",\"mISwW1\":\"电子邮件更改待定\",\"APuxIE\":\"重新发送电子邮件确认\",\"YaCgdO\":\"成功重新发送电子邮件确认\",\"jyt+cx\":\"电子邮件页脚信息\",\"I6F3cp\":\"电子邮件未经验证\",\"NTZ/NX\":\"嵌入代码\",\"4rnJq4\":\"嵌入脚本\",\"8oPbg1\":\"启用发票功能\",\"j6w7d/\":\"启用此容量以在达到限制时停止产品销售\",\"VFv2ZC\":\"结束日期\",\"237hSL\":\"完工\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"英语\",\"MhVoma\":\"输入不含税费的金额。\",\"SlfejT\":\"错误\",\"3Z223G\":\"确认电子邮件地址出错\",\"a6gga1\":\"确认更改电子邮件时出错\",\"5/63nR\":\"欧元\",\"0pC/y6\":\"活动\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"活动日期\",\"0Zptey\":\"事件默认值\",\"QcCPs8\":\"活动详情\",\"6fuA9p\":\"事件成功复制\",\"AEuj2m\":\"活动主页\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"活动地点和场地详情\",\"OopDbA\":\"Event page\",\"4/If97\":\"活动状态更新失败。请稍后再试\",\"btxLWj\":\"事件状态已更新\",\"nMU2d3\":\"活动链接\",\"tst44n\":\"活动\",\"sZg7s1\":\"过期日期\",\"KnN1Tu\":\"到期\",\"uaSvqt\":\"有效期\",\"GS+Mus\":\"出口\",\"9xAp/j\":\"取消与会者失败\",\"ZpieFv\":\"取消订单失败\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"下载发票失败。请重试。\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"加载签到列表失败\",\"ZQ15eN\":\"重新发送票据电子邮件失败\",\"ejXy+D\":\"产品排序失败\",\"PLUB/s\":\"费用\",\"/mfICu\":\"费用\",\"LyFC7X\":\"筛选订单\",\"cSev+j\":\"筛选器\",\"CVw2MU\":[\"筛选器 (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"第一张发票号码\",\"V1EGGU\":\"姓名\",\"kODvZJ\":\"姓名\",\"S+tm06\":\"名字必须在 1 至 50 个字符之间\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"首次使用\",\"TpqW74\":\"固定式\",\"irpUxR\":\"固定金额\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"忘记密码?\",\"2POOFK\":\"免费\",\"P/OAYJ\":\"免费产品\",\"vAbVy9\":\"免费产品,无需付款信息\",\"nLC6tu\":\"法语\",\"Weq9zb\":\"常规\",\"DDcvSo\":\"德国\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"返回个人资料\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"谷歌日历\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"销售总额\",\"yRg26W\":\"总销售额\",\"R4r4XO\":\"宾客\",\"26pGvx\":\"有促销代码吗?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"这是如何在应用程序中使用该组件的示例。\",\"Y1SSqh\":\"这是您可以用来在应用程序中嵌入小部件的 React 组件。\",\"QuhVpV\":[\"你好 \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"隐藏于公众视线之外\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"隐藏问题只有活动组织者可以看到,客户看不到。\",\"vLyv1R\":\"隐藏\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"在销售结束日期后隐藏产品\",\"06s3w3\":\"在销售开始日期前隐藏产品\",\"axVMjA\":\"除非用户有适用的促销代码,否则隐藏产品\",\"ySQGHV\":\"售罄时隐藏产品\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"对客户隐藏此产品\",\"Da29Y6\":\"隐藏此问题\",\"fvDQhr\":\"向用户隐藏此层级\",\"lNipG+\":\"隐藏产品将防止用户在活动页面上看到它。\",\"ZOBwQn\":\"主页设计\",\"PRuBTd\":\"主页设计器\",\"YjVNGZ\":\"主页预览\",\"c3E/kw\":\"荷马\",\"8k8Njd\":\"客户有多少分钟来完成订单。我们建议至少 15 分钟\",\"ySxKZe\":\"这个代码可以使用多少次?\",\"dZsDbK\":[\"HTML字符限制已超出:\",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"我同意<0>条款和条件。\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"如果启用,登记工作人员可以将与会者标记为已登记或将订单标记为已支付并登记与会者。如果禁用,关联未支付订单的与会者无法登记。\",\"muXhGi\":\"如果启用,当有新订单时,组织者将收到电子邮件通知\",\"6fLyj/\":\"如果您没有要求更改密码,请立即更改密码。\",\"n/ZDCz\":\"图像已成功删除\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"图片上传成功\",\"VyUuZb\":\"图片网址\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"不活动\",\"T0K0yl\":\"非活动用户无法登录。\",\"kO44sp\":\"包含您的在线活动的连接详细信息。这些信息将在订单摘要页面和参会者门票页面显示。\",\"FlQKnG\":\"价格中包含税费\",\"Vi+BiW\":[\"包括\",[\"0\"],\"个产品\"],\"lpm0+y\":\"包括1个产品\",\"UiAk5P\":\"插入图片\",\"OyLdaz\":\"再次发出邀请!\",\"HE6KcK\":\"撤销邀请!\",\"SQKPvQ\":\"邀请用户\",\"bKOYkd\":\"发票下载成功\",\"alD1+n\":\"发票备注\",\"kOtCs2\":\"发票编号\",\"UZ2GSZ\":\"发票设置\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"项目\",\"KFXip/\":\"约翰\",\"XcgRvb\":\"约翰逊\",\"87a/t/\":\"标签\",\"vXIe7J\":\"语言\",\"2LMsOq\":\"过去 12 个月\",\"vfe90m\":\"过去 14 天\",\"aK4uBd\":\"过去 24 小时\",\"uq2BmQ\":\"过去 30 天\",\"bB6Ram\":\"过去 48 小时\",\"VlnB7s\":\"过去 6 个月\",\"ct2SYD\":\"过去 7 天\",\"XgOuA7\":\"过去 90 天\",\"I3yitW\":\"最后登录\",\"1ZaQUH\":\"姓氏\",\"UXBCwc\":\"姓氏\",\"tKCBU0\":\"最近一次使用\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"留空以使用默认词“发票”\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"加载中...\",\"wJijgU\":\"地点\",\"sQia9P\":\"登录\",\"zUDyah\":\"登录\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"注销\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"在结账时强制要求填写账单地址\",\"MU3ijv\":\"将此问题作为必答题\",\"wckWOP\":\"管理\",\"onpJrA\":\"管理与会者\",\"n4SpU5\":\"管理活动\",\"WVgSTy\":\"管理订单\",\"1MAvUY\":\"管理此活动的支付和发票设置。\",\"cQrNR3\":\"管理简介\",\"AtXtSw\":\"管理可以应用于您的产品的税费\",\"ophZVW\":\"管理机票\",\"DdHfeW\":\"管理账户详情和默认设置\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"管理用户及其权限\",\"1m+YT2\":\"在顾客结账前,必须回答必填问题。\",\"Dim4LO\":\"手动添加与会者\",\"e4KdjJ\":\"手动添加与会者\",\"vFjEnF\":\"标记为已支付\",\"g9dPPQ\":\"每份订单的最高限额\",\"l5OcwO\":\"与会者留言\",\"Gv5AMu\":\"留言参与者\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"留言买家\",\"tNZzFb\":\"消息内容\",\"lYDV/s\":\"给个别与会者留言\",\"V7DYWd\":\"发送的信息\",\"t7TeQU\":\"信息\",\"xFRMlO\":\"每次订购的最低数量\",\"QYcUEf\":\"最低价格\",\"RDie0n\":\"其他\",\"mYLhkl\":\"杂项设置\",\"KYveV8\":\"多行文本框\",\"VD0iA7\":\"多种价格选项。非常适合早鸟产品等。\",\"/bhMdO\":\"我的精彩活动描述\",\"vX8/tc\":\"我的精彩活动标题...\",\"hKtWk2\":\"我的简介\",\"fj5byd\":\"不适用\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"名称\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"导航至与会者\",\"qqeAJM\":\"从不\",\"7vhWI8\":\"新密码\",\"1UzENP\":\"否\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"没有可显示的已归档活动。\",\"q2LEDV\":\"未找到此订单的参会者。\",\"zlHa5R\":\"尚未向此订单添加参会者。\",\"Wjz5KP\":\"无与会者\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"没有容量分配\",\"a/gMx2\":\"没有签到列表\",\"tMFDem\":\"无可用数据\",\"6Z/F61\":\"无数据显示。请选择日期范围\",\"fFeCKc\":\"无折扣\",\"HFucK5\":\"没有可显示的已结束活动。\",\"yAlJXG\":\"无事件显示\",\"GqvPcv\":\"没有可用筛选器\",\"KPWxKD\":\"无信息显示\",\"J2LkP8\":\"无订单显示\",\"RBXXtB\":\"当前没有可用的支付方式。请联系活动组织者以获取帮助。\",\"ZWEfBE\":\"无需支付\",\"ZPoHOn\":\"此参会者没有关联的产品。\",\"Ya1JhR\":\"此类别中没有可用的产品。\",\"FTfObB\":\"尚无产品\",\"+Y976X\":\"无促销代码显示\",\"MAavyl\":\"此与会者未回答任何问题。\",\"SnlQeq\":\"此订单尚未提出任何问题。\",\"Ev2r9A\":\"无结果\",\"gk5uwN\":\"没有搜索结果\",\"RHyZUL\":\"没有搜索结果。\",\"RY2eP1\":\"未加收任何税费。\",\"EdQY6l\":\"无\",\"OJx3wK\":\"不详\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"备注\",\"jtrY3S\":\"暂无显示内容\",\"hFwWnI\":\"通知设置\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"将新订单通知组织者\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"允许支付的天数(留空以从发票中省略付款条款)\",\"n86jmj\":\"号码前缀\",\"mwe+2z\":\"线下订单在标记为已支付之前不会反映在活动统计中。\",\"dWBrJX\":\"线下支付失败。请重试或联系活动组织者。\",\"fcnqjw\":\"离线支付说明\",\"+eZ7dp\":\"线下支付\",\"ojDQlR\":\"线下支付信息\",\"u5oO/W\":\"线下支付设置\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"销售中\",\"Ug4SfW\":\"创建事件后,您就可以在这里看到它。\",\"ZxnK5C\":\"一旦开始收集数据,您将在这里看到。\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"持续进行\",\"z+nuVJ\":\"线上活动\",\"WKHW0N\":\"在线活动详情\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"打开签到页面\",\"OdnLE4\":\"打开侧边栏\",\"ZZEYpT\":[\"方案 \",[\"i\"]],\"oPknTP\":\"所有发票上显示的可选附加信息(例如,付款条款、逾期付款费用、退货政策)\",\"OrXJBY\":\"发票编号的可选前缀(例如,INV-)\",\"0zpgxV\":\"选项\",\"BzEFor\":\"或\",\"UYUgdb\":\"订购\",\"mm+eaX\":\"订单 #\",\"B3gPuX\":\"取消订单\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"订购日期\",\"Tol4BF\":\"订购详情\",\"WbImlQ\":\"订单已取消,并已通知订单所有者。\",\"nAn4Oe\":\"订单已标记为已支付\",\"uzEfRz\":\"订单备注\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"订购参考\",\"acIJ41\":\"订单状态\",\"GX6dZv\":\"订单摘要\",\"tDTq0D\":\"订单超时\",\"1h+RBg\":\"订单\",\"3y+V4p\":\"组织地址\",\"GVcaW6\":\"组织详细信息\",\"nfnm9D\":\"组织名称\",\"G5RhpL\":\"主办方\",\"mYygCM\":\"需要组织者\",\"Pa6G7v\":\"组织者姓名\",\"l894xP\":\"组织者只能管理活动和产品。他们无法管理用户、账户设置或账单信息。\",\"fdjq4c\":\"内边距\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"页面未找到\",\"QbrUIo\":\"页面浏览量\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"付讫\",\"HVW65c\":\"付费产品\",\"ZfxaB4\":\"部分退款\",\"8ZsakT\":\"密码\",\"TUJAyx\":\"密码必须至少包含 8 个字符\",\"vwGkYB\":\"密码必须至少包含 8 个字符\",\"BLTZ42\":\"密码重置成功。请使用新密码登录。\",\"f7SUun\":\"密码不一样\",\"aEDp5C\":\"将此粘贴到您希望小部件显示的位置。\",\"+23bI/\":\"帕特里克\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"付款方式\",\"Lg+ewC\":\"支付和发票\",\"DZjk8u\":\"支付和发票设置\",\"lflimf\":\"付款期限\",\"JhtZAK\":\"付款失败\",\"JEdsvQ\":\"支付说明\",\"bLB3MJ\":\"支付方式\",\"QzmQBG\":\"支付提供商\",\"lsxOPC\":\"已收到付款\",\"wJTzyi\":\"支付状态\",\"xgav5v\":\"付款成功!\",\"R29lO5\":\"付款条款\",\"/roQKz\":\"百分比\",\"vPJ1FI\":\"百分比 金额\",\"xdA9ud\":\"将此放置在您网站的 中。\",\"blK94r\":\"请至少添加一个选项\",\"FJ9Yat\":\"请检查所提供的信息是否正确\",\"TkQVup\":\"请检查您的电子邮件和密码并重试\",\"sMiGXD\":\"请检查您的电子邮件是否有效\",\"Ajavq0\":\"请检查您的电子邮件以确认您的电子邮件地址\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"请在新标签页中继续\",\"hcX103\":\"请创建一个产品\",\"cdR8d6\":\"请创建一张票\",\"x2mjl4\":\"请输入指向图像的有效图片网址。\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"请注意\",\"C63rRe\":\"请返回活动页面重新开始。\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"请选择至少一个产品\",\"igBrCH\":\"请验证您的电子邮件地址,以访问所有功能\",\"/IzmnP\":\"请稍候,我们正在准备您的发票...\",\"MOERNx\":\"葡萄牙语\",\"qCJyMx\":\"结账后信息\",\"g2UNkE\":\"技术支持\",\"Rs7IQv\":\"结账前信息\",\"rdUucN\":\"预览\",\"a7u1N9\":\"价格\",\"CmoB9j\":\"价格显示模式\",\"BI7D9d\":\"未设置价格\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"价格类型\",\"6RmHKN\":\"主色调\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"主要文字颜色\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"打印所有门票\",\"DKwDdj\":\"打印票\",\"K47k8R\":\"产品\",\"1JwlHk\":\"产品类别\",\"U61sAj\":\"产品类别更新成功。\",\"1USFWA\":\"产品删除成功\",\"4Y2FZT\":\"产品价格类型\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"产品销售\",\"U/R4Ng\":\"产品等级\",\"sJsr1h\":\"产品类型\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"产品\",\"N0qXpE\":\"产品\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"已售产品\",\"/u4DIx\":\"已售产品\",\"DJQEZc\":\"产品排序成功\",\"vERlcd\":\"简介\",\"kUlL8W\":\"成功更新个人资料\",\"cl5WYc\":[\"已使用促销 \",[\"promo_code\"],\" 代码\"],\"P5sgAk\":\"促销代码\",\"yKWfjC\":\"促销代码页面\",\"RVb8Fo\":\"促销代码\",\"BZ9GWa\":\"促销代码可用于提供折扣、预售权限或为您的活动提供特殊权限。\",\"OP094m\":\"促销代码报告\",\"4kyDD5\":\"为此问题提供额外的背景或说明。可在此字段添加条款、\\n条件、指引或参与者回答前需要了解的任何重要信息。\",\"toutGW\":\"二维码\",\"LkMOWF\":\"可用数量\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"问题已删除\",\"avf0gk\":\"问题描述\",\"oQvMPn\":\"问题标题\",\"enzGAL\":\"问题\",\"ROv2ZT\":\"问与答\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"无线电选项\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"受援国\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"退款失败\",\"n10yGu\":\"退款订单\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"退款处理中\",\"xHpVRl\":\"退款状态\",\"/BI0y9\":\"退款\",\"fgLNSM\":\"注册\",\"9+8Vez\":\"剩余使用次数\",\"tasfos\":\"去除\",\"t/YqKh\":\"移除\",\"t9yxlZ\":\"报告\",\"prZGMe\":\"要求账单地址\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"重新发送电子邮件确认\",\"wIa8Qe\":\"重新发送邀请\",\"VeKsnD\":\"重新发送订单电子邮件\",\"dFuEhO\":\"重新发送门票邮件\",\"o6+Y6d\":\"重新发送...\",\"OfhWJH\":\"重置\",\"RfwZxd\":\"重置密码\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"恢复活动\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"返回活动页面\",\"8YBH95\":\"收入\",\"PO/sOY\":\"撤销邀请\",\"GDvlUT\":\"角色\",\"ELa4O9\":\"销售结束日期\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"销售开始日期\",\"hBsw5C\":\"销售结束\",\"kpAzPe\":\"销售开始\",\"P/wEOX\":\"旧金山\",\"tfDRzk\":\"节省\",\"IUwGEM\":\"保存更改\",\"U65fiW\":\"保存组织器\",\"UGT5vp\":\"保存设置\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"按与会者姓名、电子邮件或订单号搜索...\",\"+pr/FY\":\"按活动名称搜索...\",\"3zRbWw\":\"按姓名、电子邮件或订单号搜索...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"按名称搜索...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"搜索容量分配...\",\"r9M1hc\":\"搜索签到列表...\",\"+0Yy2U\":\"搜索产品\",\"YIix5Y\":\"搜索...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"次要颜色\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"次要文字颜色\",\"02ePaq\":[\"选择 \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"选择类别...\",\"kWI/37\":\"选择组织者\",\"ixIx1f\":\"选择产品\",\"3oSV95\":\"选择产品等级\",\"C4Y1hA\":\"选择产品\",\"hAjDQy\":\"选择状态\",\"QYARw/\":\"选择机票\",\"OMX4tH\":\"选择票\",\"DrwwNd\":\"选择时间段\",\"O/7I0o\":\"选择...\",\"JlFcis\":\"发送\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"发送信息\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"发送消息\",\"D7ZemV\":\"发送订单确认和票务电子邮件\",\"v1rRtW\":\"发送测试\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"搜索引擎优化说明\",\"/SIY6o\":\"搜索引擎优化关键词\",\"GfWoKv\":\"搜索引擎优化设置\",\"rXngLf\":\"搜索引擎优化标题\",\"/jZOZa\":\"服务费\",\"Bj/QGQ\":\"设定最低价格,用户可选择支付更高的价格\",\"L0pJmz\":\"设置发票编号的起始编号。一旦发票生成,就无法更改。\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"设置\",\"Z8lGw6\":\"分享\",\"B2V3cA\":\"分享活动\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"显示可用产品数量\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"显示更多\",\"izwOOD\":\"单独显示税费\",\"1SbbH8\":\"结账后显示给客户,在订单摘要页面。\",\"YfHZv0\":\"在顾客结账前向他们展示\",\"CBBcly\":\"显示常用地址字段,包括国家\",\"yTnnYg\":\"辛普森\",\"TNaCfq\":\"单行文本框\",\"+P0Cn2\":\"跳过此步骤\",\"YSEnLE\":\"史密斯\",\"lgFfeO\":\"售罄\",\"Mi1rVn\":\"售罄\",\"nwtY4N\":\"出了点问题\",\"GRChTw\":\"删除税费时出了问题\",\"YHFrbe\":\"出错了!请重试\",\"kf83Ld\":\"出问题了\",\"fWsBTs\":\"出错了。请重试。\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"对不起,此优惠代码不可用\",\"65A04M\":\"西班牙语\",\"mFuBqb\":\"固定价格的标准产品\",\"D3iCkb\":\"开始日期\",\"/2by1f\":\"州或地区\",\"uAQUqI\":\"状态\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"此活动未启用 Stripe 支付。\",\"UJmAAK\":\"主题\",\"X2rrlw\":\"小计\",\"zzDlyQ\":\"成功\",\"b0HJ45\":[\"成功!\",[\"0\"],\" 将很快收到一封电子邮件。\"],\"BJIEiF\":[\"成功 \",[\"0\"],\" 参会者\"],\"OtgNFx\":\"成功确认电子邮件地址\",\"IKwyaF\":\"成功确认电子邮件更改\",\"zLmvhE\":\"成功创建与会者\",\"gP22tw\":\"产品创建成功\",\"9mZEgt\":\"成功创建促销代码\",\"aIA9C4\":\"成功创建问题\",\"J3RJSZ\":\"成功更新与会者\",\"3suLF0\":\"容量分配更新成功\",\"Z+rnth\":\"签到列表更新成功\",\"vzJenu\":\"成功更新电子邮件设置\",\"7kOMfV\":\"成功更新活动\",\"G0KW+e\":\"成功更新主页设计\",\"k9m6/E\":\"成功更新主页设置\",\"y/NR6s\":\"成功更新位置\",\"73nxDO\":\"成功更新杂项设置\",\"4H80qv\":\"订单更新成功\",\"6xCBVN\":\"支付和发票设置已成功更新\",\"1Ycaad\":\"商品更新成功\",\"70dYC8\":\"成功更新促销代码\",\"F+pJnL\":\"成功更新搜索引擎设置\",\"DXZRk5\":\"100 号套房\",\"GNcfRk\":\"支持电子邮件\",\"uRfugr\":\"T恤衫\",\"JpohL9\":\"税收\",\"geUFpZ\":\"税费\",\"dFHcIn\":\"税务详情\",\"wQzCPX\":\"所有发票底部显示的税务信息(例如,增值税号、税务注册号)\",\"0RXCDo\":\"成功删除税费\",\"ZowkxF\":\"税收\",\"qu6/03\":\"税费\",\"gypigA\":\"促销代码无效\",\"5ShqeM\":\"您查找的签到列表不存在。\",\"QXlz+n\":\"事件的默认货币。\",\"mnafgQ\":\"事件的默认时区。\",\"o7s5FA\":\"与会者接收电子邮件的语言。\",\"NlfnUd\":\"您点击的链接无效。\",\"HsFnrk\":[[\"0\"],\"的最大产品数量是\",[\"1\"]],\"TSAiPM\":\"您要查找的页面不存在\",\"MSmKHn\":\"显示给客户的价格将包括税费。\",\"6zQOg1\":\"显示给客户的价格不包括税费。税费将单独显示\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"活动标题,将显示在搜索引擎结果中,并在社交媒体上分享时显示。默认情况下,将使用事件标题\",\"wDx3FF\":\"此活动没有可用产品\",\"pNgdBv\":\"此类别中没有可用产品\",\"rMcHYt\":\"退款正在处理中。请等待退款完成后再申请退款。\",\"F89D36\":\"标记订单为已支付时出错\",\"68Axnm\":\"处理您的请求时出现错误。请重试。\",\"mVKOW6\":\"发送信息时出现错误\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"此参与者有未付款的订单。\",\"mf3FrP\":\"此类别尚无任何产品。\",\"8QH2Il\":\"此类别对公众隐藏\",\"xxv3BZ\":\"此签到列表已过期\",\"Sa7w7S\":\"此签到列表已过期,不再可用于签到。\",\"Uicx2U\":\"此签到列表已激活\",\"1k0Mp4\":\"此签到列表尚未激活\",\"K6fmBI\":\"此签到列表尚未激活,不能用于签到。\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"这些信息将显示在支付页面、订单摘要页面和订单确认电子邮件中。\",\"XAHqAg\":\"这是一种常规产品,例如T恤或杯子。不发行门票\",\"CNk/ro\":\"这是一项在线活动\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"此信息将包含在本次活动发送的所有电子邮件的页脚中\",\"55i7Fa\":\"此消息仅在订单成功完成后显示。等待付款的订单不会显示此消息。\",\"RjwlZt\":\"此订单已付款。\",\"5K8REg\":\"此订单已退款。\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"此订单已取消。\",\"Q0zd4P\":\"此订单已过期。请重新开始。\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"此订单已完成。\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"此订购页面已不可用。\",\"i0TtkR\":\"这将覆盖所有可见性设置,并将该产品对所有客户隐藏。\",\"cRRc+F\":\"此产品无法删除,因为它与订单关联。您可以将其隐藏。\",\"3Kzsk7\":\"此产品为门票。购买后买家将收到门票\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"此重置密码链接无效或已过期。\",\"IV9xTT\":\"该用户未激活,因为他们没有接受邀请。\",\"5AnPaO\":\"入场券\",\"kjAL4v\":\"门票\",\"dtGC3q\":\"门票电子邮件已重新发送给与会者\",\"54q0zp\":\"门票\",\"xN9AhL\":[[\"0\"],\"级\"],\"jZj9y9\":\"分层产品\",\"8wITQA\":\"分层产品允许您为同一产品提供多种价格选项。这非常适合早鸟产品,或为不同人群提供不同的价格选项。\\\" # zh-cn\",\"nn3mSR\":\"剩余时间:\",\"s/0RpH\":\"使用次数\",\"y55eMd\":\"使用次数\",\"40Gx0U\":\"时区\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"工具\",\"72c5Qo\":\"总计\",\"YXx+fG\":\"折扣前总计\",\"NRWNfv\":\"折扣总金额\",\"BxsfMK\":\"总费用\",\"2bR+8v\":\"总销售额\",\"mpB/d9\":\"订单总额\",\"m3FM1g\":\"退款总额\",\"jEbkcB\":\"退款总额\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"总税额\",\"+zy2Nq\":\"类型\",\"FMdMfZ\":\"无法签到参与者\",\"bPWBLL\":\"无法签退参与者\",\"9+P7zk\":\"无法创建产品。请检查您的详细信息\",\"WLxtFC\":\"无法创建产品。请检查您的详细信息\",\"/cSMqv\":\"无法创建问题。请检查您的详细信息\",\"MH/lj8\":\"无法更新问题。请检查您的详细信息\",\"nnfSdK\":\"独立客户\",\"Mqy/Zy\":\"美国\",\"NIuIk1\":\"无限制\",\"/p9Fhq\":\"无限供应\",\"E0q9qH\":\"允许无限次使用\",\"h10Wm5\":\"未付款订单\",\"ia8YsC\":\"即将推出\",\"TlEeFv\":\"即将举行的活动\",\"L/gNNk\":[\"更新 \",[\"0\"]],\"+qqX74\":\"更新活动名称、说明和日期\",\"vXPSuB\":\"更新个人资料\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"链接\",\"UtDm3q\":\"复制到剪贴板的 URL\",\"e5lF64\":\"使用示例\",\"fiV0xj\":\"使用限制\",\"sGEOe4\":\"使用封面图片的模糊版本作为背景\",\"OadMRm\":\"使用封面图片\",\"7PzzBU\":\"用户\",\"yDOdwQ\":\"用户管理\",\"Sxm8rQ\":\"用户\",\"VEsDvU\":\"用户可在 <0>\\\"配置文件设置\\\" 中更改自己的电子邮件\",\"vgwVkd\":\"世界协调时\",\"khBZkl\":\"增值税\",\"E/9LUk\":\"地点名称\",\"jpctdh\":\"查看\",\"Pte1Hv\":\"查看参会者详情\",\"/5PEQz\":\"查看活动页面\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"在谷歌地图上查看\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP签到列表\",\"tF+VVr\":\"贵宾票\",\"2q/Q7x\":\"可见性\",\"vmOFL/\":\"我们无法处理您的付款。请重试或联系技术支持。\",\"45Srzt\":\"我们无法删除该类别。请再试一次。\",\"/DNy62\":[\"我们找不到与\",[\"0\"],\"匹配的任何门票\"],\"1E0vyy\":\"我们无法加载数据。请重试。\",\"NmpGKr\":\"我们无法重新排序类别。请再试一次。\",\"BJtMTd\":\"我们建议尺寸为 2160px x 1080px,文件大小不超过 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"我们无法确认您的付款。请重试或联系技术支持。\",\"Gspam9\":\"我们正在处理您的订单。请稍候...\",\"LuY52w\":\"欢迎加入!请登录以继续。\",\"dVxpp5\":[\"欢迎回来\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"什么是分层产品?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"什么是类别?\",\"gxeWAU\":\"此代码适用于哪些产品?\",\"hFHnxR\":\"此代码适用于哪些产品?(默认适用于所有产品)\",\"AeejQi\":\"此容量应适用于哪些产品?\",\"Rb0XUE\":\"您什么时候抵达?\",\"5N4wLD\":\"这是什么类型的问题?\",\"gyLUYU\":\"启用后,将为票务订单生成发票。发票将随订单确认邮件一起发送。参与\",\"D3opg4\":\"启用线下支付后,用户可以完成订单并收到门票。他们的门票将清楚地显示订单未支付,签到工具会通知签到工作人员订单是否需要支付。\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"哪些票应与此签到列表关联?\",\"S+OdxP\":\"这项活动由谁组织?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"这个问题应该问谁?\",\"VxFvXQ\":\"嵌入小部件\",\"v1P7Gm\":\"小部件设置\",\"b4itZn\":\"工作\",\"hqmXmc\":\"工作...\",\"+G/XiQ\":\"年度至今\",\"l75CjT\":\"是\",\"QcwyCh\":\"是的,移除它们\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"您正在将电子邮件更改为 <0>\",[\"0\"],\"。\"],\"gGhBmF\":\"您处于离线状态\",\"sdB7+6\":\"您可以创建一个促销代码,针对该产品\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"您无法更改产品类型,因为有与该产品关联的参会者。\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"您无法为未支付订单的与会者签到。此设置可在活动设置中更改。\",\"c9Evkd\":\"您不能删除最后一个类别。\",\"6uwAvx\":\"您无法删除此价格层,因为此层已有售出的产品。您可以将其隐藏。\",\"tFbRKJ\":\"不能编辑账户所有者的角色或状态。\",\"fHfiEo\":\"您不能退还手动创建的订单。\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"您可以访问多个账户。请选择一个继续。\",\"Z6q0Vl\":\"您已接受此邀请。请登录以继续。\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"您没有待处理的电子邮件更改。\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"您已超时,未能完成订单。\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"您必须确认此电子邮件并非促销邮件\",\"3ZI8IL\":\"您必须同意条款和条件\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"必须先创建机票,然后才能手动添加与会者。\",\"jE4Z8R\":\"您必须至少有一个价格等级\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"您必须手动将订单标记为已支付。这可以在订单管理页面上完成。\",\"L/+xOk\":\"在创建签到列表之前,您需要先获得票。\",\"Djl45M\":\"在您创建容量分配之前,您需要一个产品。\",\"y3qNri\":\"您需要至少一个产品才能开始。免费、付费或让用户决定支付金额。\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"您的账户名称会在活动页面和电子邮件中使用。\",\"veessc\":\"与会者注册参加活动后,就会出现在这里。您也可以手动添加与会者。\",\"Eh5Wrd\":\"您的精彩网站 🎉\",\"lkMK2r\":\"您的详细信息\",\"3ENYTQ\":[\"您要求将电子邮件更改为<0>\",[\"0\"],\"的申请正在处理中。请检查您的电子邮件以确认\"],\"yZfBoy\":\"您的信息已发送\",\"KSQ8An\":\"您的订单\",\"Jwiilf\":\"您的订单已被取消\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"您的订单一旦开始滚动,就会出现在这里。\",\"9TO8nT\":\"您的密码\",\"P8hBau\":\"您的付款正在处理中。\",\"UdY1lL\":\"您的付款未成功,请重试。\",\"fzuM26\":\"您的付款未成功。请重试。\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"您的退款正在处理中。\",\"IFHV2p\":\"您的入场券\",\"x1PPdr\":\"邮政编码\",\"BM/KQm\":\"邮政编码\",\"+LtVBt\":\"邮政编码\",\"25QDJ1\":\"- 点击发布\",\"WOyJmc\":\"- 点击取消发布\",\"ncwQad\":\"(空)\",\"B/gRsg\":\"(无)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" 已签到\"],\"3beCx0\":[[\"0\"],\" <0>已签到\"],\"S4PqS9\":[[\"0\"],\" 个活动的 Webhook\"],\"6MIiOI\":[\"剩余 \",[\"0\"]],\"COnw8D\":[[\"0\"],\" 标志\"],\"xG9N0H\":[\"已占用 \",[\"1\"],\" 个座位中的 \",[\"0\"],\" 个。\"],\"B7pZfX\":[[\"0\"],\" 位组织者\"],\"rZTf6P\":[\"剩余 \",[\"0\"],\" 个名额\"],\"/HkCs4\":[[\"0\"],\"张门票\"],\"dtXkP9\":[[\"0\"],\" 个即将到来的日期\"],\"30bTiU\":[\"已启用 \",[\"activeCount\"],\" 个\"],\"jTs4am\":[[\"appName\"],\" 标志\"],\"gbJOk9\":[\"已有 \",[\"attendeeCount\"],\" 位参与者报名此场次。\"],\"TjbIUI\":[[\"availableCount\"],\" / \",[\"totalCount\"],\" 可用\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" 已签到\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" 小时前\"],\"NRSLBe\":[[\"diffMin\"],\" 分钟前\"],\"iYfwJE\":[[\"diffSec\"],\" 秒前\"],\"OJnhhX\":[[\"eventCount\"],\" 个事件\"],\"mhZbzw\":[\"在受影响的场次中已有 \",[\"loadedAffectedAttendees\"],\" 位参与者报名。\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" 个票种\"],\"0cLzoF\":[[\"totalOccurrences\"],\" 个日期\"],\"AEGc4t\":[[\"0\"],\" 个日期共 \",[\"totalOccurrences\"],\" 个场次(每天 \",[\"1\",\"plural\",{\"one\":[\"#\",\" 个场次\"],\"other\":[\"#\",\" 个场次\"]}],\")\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+税费\",\"B1St2O\":\"<0>签到列表帮助您按日期、区域或票务类型管理活动入场。您可以将票务链接到特定列表,如VIP区域或第1天通行证,并与工作人员共享安全的签到链接。无需账户。签到适用于移动设备、桌面或平板电脑,使用设备相机或HID USB扫描仪。 \",\"v9VSIS\":\"<0>设置一个单一的总人数上限,同时适用于多个票种。<1>例如,如果你将<2>单日票和<3>全周末票关联起来,它们将共享同一个名额池。一旦达到上限,所有关联的票种将自动停止销售。\",\"vKXqag\":\"<0>这是所有日期的默认数量。每个日期的容量可在 <1>场次日程页面 进一步限制可用数量。\",\"ZnVt5v\":\"<0>Webhooks 可在事件发生时立即通知外部服务,例如,在注册时将新与会者添加到您的 CRM 或邮件列表,确保无缝自动化。<1>使用第三方服务,如 <2>Zapier、<3>IFTTT 或 <4>Make 来创建自定义工作流并自动化任务。\",\"xFTHZ5\":[\"≈ \",[\"0\"],\"(按当前汇率)\"],\"M2DyLc\":\"1 个活动的 Webhook\",\"6hIk/x\":\"受影响的场次中已有 1 位参与者报名。\",\"qOyE2U\":\"已有 1 位参与者报名此场次。\",\"943BwI\":\"结束日期后1天\",\"yj3N+g\":\"开始日期后1天\",\"Z3etYG\":\"活动前1天\",\"szSnlj\":\"活动前1小时\",\"yTsaLw\":\"1张门票\",\"nz96Ue\":\"1个票种\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"活动前1周\",\"09VFYl\":\"已提供 12 张门票\",\"HR/cvw\":\"示例街123号\",\"dgKxZ5\":\"支持 135+ 种货币和 40+ 种支付方式\",\"kMU5aM\":\"取消通知已发送至\",\"o++0qa\":\"时长变更\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"新的验证码已发送到您的邮箱\",\"sr2Je0\":\"开始/结束时间变更\",\"/z/bH1\":\"您组织者的简短描述,将展示给您的用户。\",\"aS0jtz\":\"已放弃\",\"uyJsf6\":\"关于\",\"JvuLls\":\"承担费用\",\"lk74+I\":\"承担费用\",\"1uJlG9\":\"强调色\",\"g3UF2V\":\"接受\",\"K5+3xg\":\"接受邀请\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"账户 · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"账户信息\",\"EHNORh\":\"账户未找到\",\"bPwFdf\":\"账户\",\"AhwTa1\":\"需要操作:需要提供增值税信息\",\"APyAR/\":\"活跃活动\",\"kCl6ja\":\"已启用的支付方式\",\"XJOV1Y\":\"活动记录\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"添加日期\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"添加单个日期\",\"CjvTPJ\":\"添加另一个时间\",\"0XCduh\":\"至少添加一个时间\",\"/chGpa\":\"为在线活动添加连接信息。\",\"UWWRyd\":\"添加自定义问题以在结账时收集额外信息\",\"Z/dcxc\":\"添加日期\",\"Q219NT\":\"添加日期\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"添加地点\",\"VX6WUv\":\"添加地点\",\"GCQlV2\":\"如果每天有多个场次,请添加多个时间。\",\"7JF9w9\":\"添加问题\",\"NLbIb6\":\"仍要添加此参与者(覆盖容量限制)\",\"6PNlRV\":\"将此活动添加到您的日历\",\"BGD9Yt\":\"添加机票\",\"uIv4Op\":\"在您的公开活动页面和主办方主页添加跟踪像素。跟踪启用时,将向访客显示 Cookie 同意横幅。\",\"QN2F+7\":\"添加 Webhook\",\"NsWqSP\":\"添加您的社交媒体账号和网站链接。这些信息将显示在您的公开组织者页面上。\",\"bVjDs9\":\"额外费用\",\"MKqSg4\":\"需要管理员访问权限\",\"0Zypnp\":\"管理仪表板\",\"YAV57v\":\"推广员\",\"I+utEq\":\"推广码无法更改\",\"/jHBj5\":\"推广员创建成功\",\"uCFbG2\":\"推广员删除成功\",\"ld8I+f\":\"推广联盟计划\",\"a41PKA\":\"将跟踪推广员销售\",\"mJJh2s\":\"将不会跟踪推广员销售。这将停用该推广员。\",\"jabmnm\":\"推广员更新成功\",\"CPXP5Z\":\"合作伙伴\",\"9Wh+ug\":\"推广员已导出\",\"3cqmut\":\"推广员帮助您跟踪合作伙伴和网红产生的销售。创建推广码并分享以监控绩效。\",\"z7GAMJ\":\"全部\",\"N40H+G\":\"全部\",\"7rLTkE\":\"所有已归档活动\",\"gKq1fa\":\"所有参与者\",\"63gRoO\":\"所选场次的所有参与者\",\"uWxIoH\":\"此场次的所有参与者\",\"pMLul+\":\"所有货币\",\"sgUdRZ\":\"所有日期\",\"e4q4uO\":\"所有日期\",\"ZS/D7f\":\"所有已结束活动\",\"QsYjci\":\"所有活动\",\"31KB8w\":\"所有失败任务已删除\",\"D2g7C7\":\"所有任务已排队等待重试\",\"B4RFBk\":\"所有匹配的日期\",\"F1/VgK\":\"所有场次\",\"OpWjMq\":\"所有场次\",\"Sxm1lO\":\"所有状态\",\"dr7CWq\":\"所有即将到来的活动\",\"GpT6Uf\":\"允许参与者通过订单确认邮件中的安全链接更新他们的门票信息(姓名、电子邮件)。\",\"F3mW5G\":\"允许客户在该产品售罄时加入候补名单\",\"c4uJfc\":\"快完成了!我们正在等待您的付款处理。这只需要几秒钟。\",\"ocS8eq\":[\"已有账户?<0>\",[\"0\"],\"\"],\"uCuEqI\":\"已入场\",\"/H326L\":\"已退款\",\"USEpOK\":\"已在其他组织者上使用 Stripe?重复使用该连接。\",\"RtxQTF\":\"同时取消此订单\",\"jkNgQR\":\"同时退款此订单\",\"xYqsHg\":\"始终可用\",\"Wvrz79\":\"支付金额\",\"Zkymb9\":\"与此推广员关联的邮箱。推广员不会收到通知。\",\"vRznIT\":\"检查导出状态时发生错误。\",\"eusccx\":\"在突出显示的产品上显示的可选消息,例如\\\"热卖中🔥\\\"或\\\"超值优惠\\\"\",\"5GJuNp\":[\"还有 \",[\"0\"],\" 个...\"],\"QNrkms\":\"答案更新成功。\",\"+qygei\":\"回答\",\"GK7Lnt\":\"结账时提供的回答(例如餐点选择)\",\"lE8PgT\":\"您手动自定义的任何日期都将保留。\",\"vP3Nzg\":[\"适用于当前页面已加载的 \",[\"0\"],\" 个未取消的日期。\"],\"kkVyZZ\":\"适用于未登录打开签到链接的人。已登录的团队成员始终可以看到全部内容。\",\"je4muG\":[\"适用于本活动中每一个未取消的 \",[\"0\"],\" 日期 — 包括当前未加载的日期。\"],\"YIIQtt\":\"应用更改\",\"NzWX1Y\":\"应用于\",\"Ps5oDT\":\"应用于所有门票\",\"261RBr\":\"批准消息\",\"naCW6Z\":\"四月\",\"B495Gs\":\"归档\",\"5sNliy\":\"归档活动\",\"BrwnrJ\":\"归档主办方\",\"E5eghW\":\"归档此活动以向公众隐藏。您可以稍后恢复它。\",\"eqFkeI\":\"归档此主办方。这也将归档属于此主办方的所有活动。\",\"BzcxWv\":\"已归档的主办方\",\"9cQBd6\":\"您确定要归档此活动吗?它将不再对公众可见。\",\"Trnl3E\":\"您确定要归档此主办方吗?这也将归档属于此主办方的所有活动。\",\"wOvn+e\":[\"确定要取消 \",[\"count\"],\" 个日期吗?受影响的参与者将通过电子邮件收到通知。\"],\"GTxE0U\":\"确定要取消此日期吗?受影响的参与者将通过电子邮件收到通知。\",\"VkSk/i\":\"您确定要取消此定时消息吗?\",\"0aVEBY\":\"您确定要删除所有失败的任务吗?\",\"LchiNd\":\"您确定要删除此推广员吗?此操作无法撤销。\",\"vPeW/6\":\"确定要删除此配置吗?这可能会影响使用它的账户。\",\"h42Hc/\":\"确定要删除此日期吗?此操作无法撤销。\",\"JmVITJ\":\"确定要删除此模板吗?此操作无法撤消,邮件将回退到默认模板。\",\"aLS+A6\":\"确定要删除此模板吗?此操作无法撤消,邮件将回退到组织者或默认模板。\",\"5H3Z78\":\"您确定要删除此 Webhook 吗?\",\"147G4h\":\"您确定要离开吗?\",\"VDWChT\":\"您确定要将此组织者设为草稿吗?这样将使组织者页面对公众不可见。\",\"pWtQJM\":\"您确定要将此组织者设为公开吗?这样将使组织者页面对公众可见。\",\"EOqL/A\":\"您确定要向此人提供名额吗?他们将收到电子邮件通知。\",\"yAXqWW\":\"确定要永久删除此日期吗?此操作无法撤销。\",\"WFHOlF\":\"您确定要发布此活动吗?一旦发布,将对公众可见。\",\"4TNVdy\":\"您确定要发布此主办方资料吗?一旦发布,将对公众可见。\",\"8x0pUg\":\"您确定要从候补名单中移除此条目吗?\",\"cDtoWq\":[\"您确定要将订单确认重新发送到 \",[\"0\"],\" 吗?\"],\"xeIaKw\":[\"您确定要将门票重新发送到 \",[\"0\"],\" 吗?\"],\"BjbocR\":\"您确定要恢复此活动吗?\",\"7MjfcR\":\"您确定要恢复此主办方吗?\",\"ExDt3P\":\"您确定要取消发布此活动吗?它将不再对公众可见。\",\"5Qmxo/\":\"您确定要取消发布此主办方资料吗?它将不再对公众可见。\",\"Uqefyd\":\"您在欧盟注册了增值税吗?\",\"+QARA4\":\"艺术\",\"tLf3yJ\":\"由于您的企业位于爱尔兰,所有平台费用将自动适用23%的爱尔兰增值税。\",\"tMeVa/\":\"为每张购买的门票询问姓名和电子邮件\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"分配套餐\",\"xdiER7\":\"分配的级别\",\"F2rX0R\":\"必须选择至少一种事件类型\",\"BCmibk\":\"尝试次数\",\"6PecK3\":\"所有活动的出席率和签到率\",\"K2tp3v\":\"参与者\",\"AJ4rvK\":\"与会者已取消\",\"qvylEK\":\"与会者已创建\",\"Aspq3b\":\"参与者信息收集\",\"fpb0rX\":\"参与者信息已从订单复制\",\"0R3Y+9\":\"参会者邮箱\",\"94aQMU\":\"参与者信息\",\"KkrBiR\":\"参与者信息收集\",\"av+gjP\":\"参会者姓名\",\"sjPjOg\":\"参与者备注\",\"cosfD8\":\"参与者状态\",\"D2qlBU\":\"与会者已更新\",\"22BOve\":\"参与者更新成功\",\"x8Vnvf\":\"参与者的票不包含在此列表中\",\"/Ywywr\":\"参与者\",\"zLRobu\":\"位参与者已签到\",\"k3Tngl\":\"与会者已导出\",\"UoIRW8\":\"已注册参会者\",\"5UbY+B\":\"持有特定门票的与会者\",\"4HVzhV\":\"参与者:\",\"HVkhy2\":\"归因分析\",\"dMMjeD\":\"归因细分\",\"1oPDuj\":\"归因值\",\"DBHTm/\":\"八月\",\"JgREph\":\"自动提供已启用\",\"V7Tejz\":\"自动处理候补名单\",\"PZ7FTW\":\"根据背景颜色自动检测,但可以手动覆盖\",\"zlnTuI\":\"当有名额时,自动向候补名单上的下一位用户提供门票。如禁用,您可以在候补名单页面手动处理。\",\"csDS2L\":\"可用\",\"clF06r\":\"可退款\",\"NB5+UG\":\"可用令牌\",\"L+wGOG\":\"待处理\",\"qcw2OD\":\"待付款\",\"kNmmvE\":\"精彩活动有限公司\",\"iH8pgl\":\"返回\",\"TeSaQO\":\"返回账户\",\"X7Q/iM\":\"返回日历\",\"kYqM1A\":\"返回活动\",\"s5QRF3\":\"返回消息\",\"td/bh+\":\"返回报告\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"基础价格\",\"hviJef\":\"基于上方的全局销售期,而非按单个日期\",\"jIPNJG\":\"基本信息\",\"UabgBd\":\"正文是必需的\",\"HWXuQK\":\"收藏此页面,随时管理您的订单。\",\"CUKVDt\":\"使用自定义徽标、颜色和页脚信息打造您的门票品牌。\",\"4BZj5p\":\"内置欺诈防护\",\"cr7kGH\":\"批量编辑\",\"1Fbd6n\":\"批量编辑日期\",\"Eq6Tu9\":\"批量更新失败。\",\"9N+p+g\":\"商务\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"公司名称\",\"bv6RXK\":\"按钮标签\",\"ChDLlO\":\"按钮文字\",\"BUe8Wj\":\"买家支付\",\"qF1qbA\":\"买家看到的是净价。平台费用将从您的付款中扣除。\",\"dg05rc\":\"添加跟踪像素即表示您确认您与本平台为所收集数据的共同控制方。您有责任确保在适用的隐私法律(如 GDPR、CCPA 等)下,您对此处理具有合法依据。\",\"DFqasq\":[\"继续操作即表示您同意<0>\",[\"0\"],\"服务条款\"],\"wVSa+U\":\"按每月的某日\",\"0MnNgi\":\"按每周的某日\",\"CetOZE\":\"按票种\",\"lFdbRS\":\"绕过应用费用\",\"AjVXBS\":\"日历\",\"alkXJ5\":\"日历视图\",\"2VLZwd\":\"行动号召按钮\",\"rT2cV+\":\"摄像头\",\"7hYa9y\":\"摄像头权限被拒绝。<0>再次请求权限,或在浏览器设置中授予此页面摄像头访问权限。\",\"D02dD9\":\"活动\",\"RRPA79\":\"无法签到\",\"OcVwAd\":[\"取消 \",[\"count\"],\" 个日期\"],\"H4nE+E\":\"取消所有产品并释放回可用池\",\"Py78q9\":\"取消日期\",\"tOXAdc\":\"取消将取消与此订单关联的所有参与者,并将门票释放回可用池。\",\"vev1Jl\":\"取消\",\"Ha17hq\":[\"已取消 \",[\"0\"],\" 个日期\"],\"01sEfm\":\"无法删除系统默认配置\",\"VsM1HH\":\"容量分配\",\"9bIMVF\":\"容量管理\",\"H7K8og\":\"容量必须为 0 或更大\",\"nzao08\":\"容量更新\",\"4cp9NP\":\"已用容量\",\"K7tIrx\":\"类别\",\"o+XJ9D\":\"更改\",\"kJkjoB\":\"更改时长\",\"J0KExZ\":\"更改参与者上限\",\"CIHJJf\":\"更改等候名单设置\",\"B5icLR\":[\"已为 \",[\"count\"],\" 个日期更改时长\"],\"Kb+0BT\":\"收款\",\"2tbLdK\":\"慈善\",\"BPWGKn\":\"签到\",\"6uFFoY\":\"取消签到\",\"FjAlwK\":[\"查看此活动:\",[\"0\"]],\"v4fiSg\":\"查看您的邮箱\",\"51AsAN\":\"请检查您的收件箱!如果此邮箱有关联的票,您将收到查看链接。\",\"Y3FYXy\":\"签到\",\"udRwQs\":\"签到已创建\",\"F4SRy3\":\"签到已删除\",\"as6XfO\":[\"已撤销 \",[\"0\"],\" 的签到\"],\"9s/wrQ\":\"签到历史\",\"Wwztk4\":\"签到列表\",\"9gPPUY\":\"签到列表已创建!\",\"dwjiJt\":\"签到列表信息\",\"7od0PV\":\"签到列表\",\"f2vU9t\":\"签到列表\",\"XprdTn\":\"签到导航\",\"5tV1in\":\"签到进度\",\"SHJwyq\":\"签到率\",\"qCqdg6\":\"签到状态\",\"cKj6OE\":\"签到摘要\",\"7B5M35\":\"签到\",\"VrmydS\":\"已签到\",\"DM4gBB\":\"中文(繁体)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"选择其他操作\",\"fkb+y3\":\"选择要应用的已保存地点。\",\"Zok1Gx\":\"选择一个组织者\",\"pkk46Q\":\"选择一个组织者\",\"Crr3pG\":\"选择日历\",\"LAW8Vb\":\"为新活动选择默认设置。这可以针对单个活动进行覆盖。\",\"pjp2n5\":\"选择谁支付平台费用。这不会影响您在账户设置中配置的额外费用。\",\"xCJdfg\":\"清除\",\"QyOWu9\":\"清除地点 — 使用活动默认地点\",\"V8yTm6\":\"清除搜索\",\"kmnKnX\":\"清除将移除任何针对单个场次的覆盖设置。受影响的场次将使用活动的默认地点。\",\"/o+aQX\":\"点击取消\",\"gD7WGV\":\"点击以重新开放销售\",\"CySr+W\":\"点击查看备注\",\"RG3szS\":\"关闭\",\"RWw9Lg\":\"关闭弹窗\",\"XwdMMg\":\"代码只能包含字母、数字、连字符和下划线\",\"+yMJb7\":\"代码为必填项\",\"m9SD3V\":\"代码至少需要3个字符\",\"V1krgP\":\"代码不能超过20个字符\",\"psqIm5\":\"与您的团队协作,共同创建精彩的活动。\",\"4bUH9i\":\"收集每张购买门票的参与者详情。\",\"TkfG8v\":\"按订单收集信息\",\"96ryID\":\"按门票收集信息\",\"FpsvqB\":\"颜色模式\",\"jEu4bB\":\"列\",\"CWk59I\":\"喜剧\",\"rPA+Gc\":\"通信偏好\",\"zFT5rr\":\"已完成\",\"bUQMpb\":\"完成 Stripe 设置\",\"744BMm\":\"完成您的订单以确保获得门票。此优惠有时间限制,请尽快完成。\",\"5YrKW7\":\"完成付款以确保您的门票。\",\"xGU92i\":\"完成你的个人资料以加入团队。\",\"QOhkyl\":\"撰写\",\"ih35UP\":\"会议中心\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"已分配配置\",\"X1zdE7\":\"配置创建成功\",\"mLBUMQ\":\"配置删除成功\",\"UIENhw\":\"配置名称对最终用户可见。固定费用将按当前汇率转换为订单货币。\",\"eeZdaB\":\"配置更新成功\",\"3cKoxx\":\"配置\",\"8v2LRU\":\"配置活动详情、地点、结账选项和电子邮件通知。\",\"raw09+\":\"配置结账时如何收集参与者信息\",\"FI60XC\":\"配置税费\",\"av6ukY\":\"配置此场次可用的商品,并可选择调整价格。\",\"NGXKG/\":\"确认电子邮件地址\",\"JRQitQ\":\"确认新密码\",\"Auz0Mz\":\"请确认您的邮箱以访问所有功能。\",\"7+grte\":\"确认邮件已发送!请检查您的收件箱。\",\"n/7+7Q\":\"确认已发送至\",\"x3wVFc\":\"恭喜!您的活动现已对公众可见。\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"连接Stripe以启用电子邮件模板编辑\",\"LmvZ+E\":\"连接 Stripe 以启用消息功能\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"联系\",\"LOFgda\":[\"联系 \",[\"0\"]],\"41BQ3k\":\"联系邮箱\",\"KcXRN+\":\"支持联系邮箱\",\"m8WD6t\":\"继续设置\",\"0GwUT4\":\"继续结账\",\"sBV87H\":\"继续创建活动\",\"nKtyYu\":\"继续下一步\",\"F3/nus\":\"继续付款\",\"p2FRHj\":\"控制此活动的平台费用如何处理\",\"NqfabH\":\"控制此日期的入场人员\",\"fmYxZx\":\"控制谁在何时入场\",\"1JnTgU\":\"从上方复制\",\"FxVG/l\":\"已复制到剪贴板\",\"PiH3UR\":\"已复制!\",\"4i7smN\":\"复制账户 ID\",\"uUPbPg\":\"复制推广链接\",\"iVm46+\":\"复制代码\",\"cF2ICc\":\"复制客户链接\",\"+2ZJ7N\":\"将详情复制到第一位参与者\",\"ZN1WLO\":\"复制邮箱\",\"y1eoq1\":\"复制链接\",\"tUGbi8\":\"复制我的信息到:\",\"y22tv0\":\"复制此链接,在任意位置分享\",\"/4gGIX\":\"复制到剪贴板\",\"e0f4yB\":\"无法删除地点\",\"vkiDx2\":\"无法准备批量更新。\",\"KOavaU\":\"无法获取地址详情\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"无法保存日期\",\"eeLExK\":\"无法保存地点\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"封面图像\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"封面图片将显示在活动页面顶部\",\"2NLjA6\":\"封面图像将显示在您的组织者页面顶部\",\"GkrqoY\":\"覆盖所有门票\",\"zg4oSu\":[\"创建\",[\"0\"],\"模板\"],\"RKKhnW\":\"创建自定义小部件以在您的网站上销售门票。\",\"6sk7PP\":\"创建固定数量\",\"PhioFp\":\"为活跃的场次创建新的签到列表,或如认为这是错误,请联系主办方。\",\"yIRev4\":\"创建密码\",\"j7xZ7J\":\"创建额外的主办方来管理一个账户下的独立品牌、部门或活动系列。每个主办方拥有自己的活动、设置和公开页面。\",\"xfKgwv\":\"创建推广员\",\"tudG8q\":\"创建并配置待售门票和商品。\",\"YAl9Hg\":\"创建配置\",\"BTne9e\":\"为此活动创建自定义邮件模板以覆盖组织者默认设置\",\"YIDzi/\":\"创建自定义模板\",\"tsGqx5\":\"创建日期\",\"Nc3l/D\":\"创建折扣、隐藏门票的访问码和特别优惠。\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"为此日期创建\",\"eWEV9G\":\"创建新密码\",\"wl2iai\":\"创建日程\",\"8AiKIu\":\"创建门票或产品\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"创建可追踪链接以奖励推广您活动的合作伙伴。\",\"dkAPxi\":\"创建 Webhook\",\"5slqwZ\":\"创建您的活动\",\"JQNMrj\":\"创建您的第一个活动\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"创建您自己的活动\",\"67NsZP\":\"正在创建活动...\",\"H34qcM\":\"正在创建主办方...\",\"1YMS+X\":\"正在创建您的活动,请稍候\",\"yiy8Jt\":\"正在创建您的主办方资料,请稍候\",\"lfLHNz\":\"CTA标签是必需的\",\"0xLR6W\":\"当前已分配\",\"iTvh6I\":\"当前可购买\",\"A42Dqn\":\"自定义品牌\",\"Guo0lU\":\"自定义日期和时间\",\"mimF6c\":\"结账后自定义消息\",\"WDMdn8\":\"自定义问题\",\"O6mra8\":\"自定义问题\",\"axv/Mi\":\"自定义模板\",\"2YeVGY\":\"客户链接已复制到剪贴板\",\"QMHSMS\":\"客户将收到确认退款的电子邮件\",\"L/Qc+w\":\"客户邮箱地址\",\"wpfWhJ\":\"客户名字\",\"GIoqtA\":\"客户姓氏\",\"NihQNk\":\"客户\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"使用Liquid模板自定义发送给客户的邮件。这些模板将用作您组织中所有活动的默认模板。\",\"xJaTUK\":\"自定义活动主页的布局、颜色和品牌。\",\"MXZfGN\":\"自定义结账时提出的问题,以从参与者那里收集重要信息。\",\"iX6SLo\":\"自定义“继续”按钮上显示的文本\",\"pxNIxa\":\"使用Liquid模板自定义您的邮件模板\",\"3trPKm\":\"自定义主办方页面外观\",\"U0sC6H\":\"每日\",\"/gWrVZ\":\"所有活动的每日收入、税费和退款\",\"zgCHnE\":\"每日销售报告\",\"nHm0AI\":\"每日销售、税费和费用明细\",\"1aPnDT\":\"舞蹈\",\"pvnfJD\":\"深色\",\"MaB9wW\":\"日期取消\",\"e6cAxJ\":\"日期已取消\",\"81jBnC\":\"日期取消成功\",\"a/C/6R\":\"日期创建成功\",\"IW7Q+u\":\"日期已删除\",\"rngCAz\":\"日期删除成功\",\"lnYE59\":\"活动日期\",\"gnBreG\":\"下单日期\",\"vHbfoQ\":\"日期已重新启用\",\"hvah+S\":\"日期已重新开放销售\",\"Ez0YsD\":\"日期更新成功\",\"VTsZuy\":\"日期和时间在此管理:\",\"/ITcnz\":\"天\",\"H7OUPr\":\"天\",\"JtHrX9\":\"每月的日\",\"J/Upwb\":\"天\",\"vDVA2I\":\"每月的日\",\"rDLvlL\":\"每周的日\",\"r6zgGo\":\"十二月\",\"jbq7j2\":\"拒绝\",\"ovBPCi\":\"默认\",\"JtI4vj\":\"默认参与者信息收集\",\"ULjv90\":\"每个日期的默认容量\",\"3R/Tu2\":\"默认费用处理\",\"1bZAZA\":\"将使用默认模板\",\"HNlEFZ\":\"删除\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"删除选中的 \",[\"count\"],\" 个日期?有订单的日期将被跳过。此操作无法撤销。\"],\"vu7gDm\":\"删除推广员\",\"KZN4Lc\":\"全部删除\",\"6EkaOO\":\"删除日期\",\"io0G93\":\"删除活动\",\"+jw/c1\":\"删除图片\",\"hdyeZ0\":\"删除任务\",\"xxjZeP\":\"删除地点\",\"sY3tIw\":\"删除主办方\",\"UBv8UK\":\"永久删除\",\"dPyJ15\":\"删除模板\",\"mxsm1o\":\"删除此问题?此操作无法撤销。\",\"snMaH4\":\"删除 Webhook\",\"LIZZLY\":[\"已删除 \",[\"0\"],\" 个日期\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"取消全选\",\"NvuEhl\":\"设计元素\",\"H8kMHT\":\"没有收到验证码?\",\"G8KNgd\":\"其他地点\",\"E/QGRL\":\"已禁用\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"关闭此消息\",\"BREO0S\":\"显示一个复选框,允许客户选择接收此活动组织者的营销通讯。\",\"pfa8F0\":\"显示名称\",\"Kdpf90\":\"别忘了!\",\"352VU2\":\"还没有账户?<0>注册\",\"AXXqG+\":\"捐赠\",\"DPfwMq\":\"完成\",\"JoPiZ2\":\"门口工作人员说明\",\"2+O9st\":\"下载所有已完成订单的销售、参与者和财务报告。\",\"eneWvv\":\"草稿\",\"Ts8hhq\":\"由于垃圾邮件的高风险,您必须连接Stripe账户才能修改电子邮件模板。这是为了确保所有活动组织者都经过验证和负责。\",\"TnzbL+\":\"由于垃圾消息风险较高,您必须先连接 Stripe 账户才能向参与者发送消息。\\n这是为确保所有活动主办方均已通过验证且具备问责性。\",\"euc6Ns\":\"复制\",\"YueC+F\":\"复制日期\",\"KRmTkx\":\"复制产品\",\"Jd3ymG\":\"时长至少为 1 分钟。\",\"KIjvtr\":\"荷兰语\",\"22xieU\":\"例如 180(3小时)\",\"/zajIE\":\"例如:上午场\",\"SPKbfM\":\"例如:获取门票,立即注册\",\"fc7wGW\":\"例如,关于您门票的重要更新\",\"54MPqC\":\"例如,标准版、高级版、企业版\",\"3RQ81z\":\"每个人将收到一封包含预留名额的电子邮件,以完成购买。\",\"5oD9f/\":\"提前\",\"LTzmgK\":[\"编辑\",[\"0\"],\"模板\"],\"v4+lcZ\":\"编辑推广员\",\"2iZEz7\":\"编辑答案\",\"t2bbp8\":\"编辑参与者\",\"etaWtB\":\"编辑参与者详情\",\"+guao5\":\"编辑配置\",\"1Mp/A4\":\"编辑日期\",\"m0ZqOT\":\"编辑地点\",\"8oivFT\":\"编辑地点\",\"vRWOrM\":\"编辑订单详情\",\"fW5sSv\":\"编辑 Webhook\",\"nP7CdQ\":\"编辑 Webhook\",\"MRZxAn\":\"已编辑\",\"uBAxNB\":\"编辑器\",\"aqxYLv\":\"教育\",\"iiWXDL\":\"资格失败\",\"zPiC+q\":\"符合条件的签到列表\",\"SiVstt\":\"电子邮件与定时消息\",\"V2sk3H\":\"电子邮件和模板\",\"hbwCKE\":\"邮箱地址已复制到剪贴板\",\"dSyJj6\":\"电子邮件地址不匹配\",\"elW7Tn\":\"邮件正文\",\"ZsZeV2\":\"邮箱为必填项\",\"Be4gD+\":\"邮件预览\",\"6IwNUc\":\"邮件模板\",\"H/UMUG\":\"需要验证邮箱\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"邮箱验证成功!\",\"FSN4TS\":\"嵌入小部件\",\"z9NkYY\":\"可嵌入小组件\",\"Qj0GKe\":\"启用参与者自助服务\",\"hEtQsg\":\"默认启用参与者自助服务\",\"Upeg/u\":\"启用此模板发送邮件\",\"7dSOhU\":\"启用候补名单\",\"RxzN1M\":\"已启用\",\"xDr/ct\":\"结束\",\"sGjBEq\":\"结束日期和时间(可选)\",\"PKXt9R\":\"结束日期必须在开始日期之后\",\"UmzbPa\":\"场次结束日期\",\"ZayGC7\":\"在指定日期结束\",\"48Y16Q\":\"结束时间(可选)\",\"jpNdOC\":\"场次结束时间\",\"TbaYrr\":[[\"0\"],\" 已结束\"],\"CFgwiw\":[[\"0\"],\" 结束\"],\"SqOIQU\":\"输入容量值或选择无限制。\",\"h37gRz\":\"输入标签或选择移除。\",\"7YZofi\":\"输入主题和正文以查看预览\",\"khyScF\":\"输入要平移的时间。\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"输入推广员邮箱(可选)\",\"ARkzso\":\"输入推广员姓名\",\"ej4L8b\":\"输入容量\",\"6KnyG0\":\"输入电子邮件\",\"INDKM9\":\"输入邮件主题...\",\"xUgUTh\":\"输入名字\",\"9/1YKL\":\"输入姓氏\",\"VpwcSk\":\"输入新密码\",\"kWg31j\":\"输入唯一推广码\",\"C3nD/1\":\"输入您的电子邮箱\",\"VmXiz4\":\"输入您的电子邮件,我们将向您发送重置密码的说明。\",\"n9V+ps\":\"输入您的姓名\",\"IdULhL\":\"输入您的增值税号,包括国家代码,不带空格(例如,IE1234567A,DE123456789)\",\"o21Y+P\":\"条目\",\"X88/6w\":\"当客户加入已售罄产品的候补名单时,条目将显示在此处。\",\"LslKhj\":\"加载日志时出错\",\"VCNHvW\":\"活动已归档\",\"ZD0XSb\":\"活动已成功归档\",\"WgD6rb\":\"活动类别\",\"b46pt5\":\"活动封面图片\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"活动已创建\",\"1Hzev4\":\"活动自定义模板\",\"7u9/DO\":\"活动已成功删除\",\"imgKgl\":\"活动描述\",\"kJDmsI\":\"活动详情\",\"m/N7Zq\":\"活动完整地址\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"活动地点\",\"PYs3rP\":\"活动名称\",\"HhwcTQ\":\"活动名称\",\"WZZzB6\":\"活动名称为必填项\",\"Wd5CDM\":\"活动名称应少于150个字符\",\"4JzCvP\":\"活动不可用\",\"Gh9Oqb\":\"活动组织者姓名\",\"mImacG\":\"活动页面\",\"Hk9Ki/\":\"活动已成功恢复\",\"JyD0LH\":\"活动设置\",\"cOePZk\":\"活动时间\",\"e8WNln\":\"活动时区\",\"GeqWgj\":\"活动时区\",\"XVLu2v\":\"活动标题\",\"OfmsI9\":\"活动太新\",\"4SILkp\":\"活动总计\",\"YDVUVl\":\"事件类型\",\"+HeiVx\":\"活动已更新\",\"4K2OjV\":\"活动场地\",\"19j6uh\":\"活动表现\",\"PC3/fk\":\"未来24小时内开始的活动\",\"nwiZdc\":[\"每 \",[\"0\"]],\"2LJU4o\":[\"每 \",[\"0\"],\" 天\"],\"yLiYx+\":[\"每 \",[\"0\"],\" 个月\"],\"nn9ice\":[\"每 \",[\"0\"],\" 周\"],\"Cdr8f9\":[\"每 \",[\"0\"],\" 周的 \",[\"1\"]],\"GVEHRk\":[\"每 \",[\"0\"],\" 年\"],\"fTFfOK\":\"每个邮件模板都必须包含一个链接到相应页面的行动号召按钮\",\"BVinvJ\":\"示例:\\\"您是如何了解我们的?\\\"、\\\"发票公司名称\\\"\",\"2hGPQG\":\"示例:\\\"T恤尺码\\\"、\\\"餐饮偏好\\\"、\\\"职位\\\"\",\"qNuTh3\":\"异常\",\"M1RnFv\":\"已过期\",\"kF8HQ7\":\"导出答案\",\"2KAI4N\":\"导出CSV\",\"JKfSAv\":\"导出失败。请重试。\",\"SVOEsu\":\"导出已开始。正在准备文件...\",\"wuyaZh\":\"导出成功\",\"9bpUSo\":\"正在导出推广员\",\"jtrqH9\":\"正在导出与会者\",\"R4Oqr8\":\"导出完成。正在下载文件...\",\"UlAK8E\":\"正在导出订单\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"失败\",\"8uOlgz\":\"失败时间\",\"tKcbYd\":\"失败任务\",\"SsI9v/\":\"放弃订单失败。请重试。\",\"LdPKPR\":\"分配配置失败\",\"PO0cfn\":\"取消日期失败\",\"YUX+f+\":\"取消日期失败\",\"SIHgVQ\":\"取消消息失败\",\"cEFg3R\":\"创建推广员失败\",\"dVgNF1\":\"配置创建失败\",\"fAoRRJ\":\"创建日程失败\",\"U66oUa\":\"创建模板失败\",\"aFk48v\":\"配置删除失败\",\"n1CYMH\":\"删除日期失败\",\"KXv+Qn\":\"删除日期失败。可能存在订单。\",\"JJ0uRo\":\"删除日期失败\",\"rgoBnv\":\"删除活动失败\",\"Zw6LWb\":\"删除任务失败\",\"tq0abZ\":\"删除任务失败\",\"2mkc3c\":\"删除主办方失败\",\"vKMKnu\":\"删除问题失败\",\"xFj7Yj\":\"删除模板失败\",\"jo3Gm6\":\"导出推广员失败\",\"Jjw03p\":\"导出与会者失败\",\"ZPwFnN\":\"导出订单失败\",\"zGE3CH\":\"导出报告失败。请重试。\",\"lS9/aZ\":\"加载收件人失败\",\"X4o0MX\":\"加载 Webhook 失败\",\"ETcU7q\":\"提供名额失败\",\"5670b9\":\"提供票券失败\",\"e5KIbI\":\"重新启用日期失败\",\"7zyx8a\":\"从候补名单中移除失败\",\"A/P7PX\":\"移除覆盖设置失败\",\"ogWc1z\":\"重新开放日期失败\",\"0+iwE5\":\"重新排序问题失败\",\"EJPAcd\":\"重新发送订单确认失败\",\"DjSbj3\":\"重新发送门票失败\",\"YQ3QSS\":\"重新发送验证码失败\",\"wDioLj\":\"重试任务失败\",\"DKYTWG\":\"重试任务失败\",\"WRREqF\":\"保存覆盖设置失败\",\"sj/eZA\":\"保存价格覆盖失败\",\"780n8A\":\"保存商品设置失败\",\"zTkTF3\":\"保存模板失败\",\"l6acRV\":\"保存增值税设置失败。请重试。\",\"T6B2gk\":\"发送消息失败。请重试。\",\"lKh069\":\"无法启动导出任务\",\"t/KVOk\":\"无法开始模拟。请重试。\",\"QXgjH0\":\"无法停止模拟。请重试。\",\"i0QKrm\":\"更新推广员失败\",\"NNc33d\":\"更新答案失败。\",\"E9jY+o\":\"更新参与者失败\",\"uQynyf\":\"配置更新失败\",\"i2PFQJ\":\"更新活动状态失败\",\"EhlbcI\":\"更新消息级别失败\",\"rpGMzC\":\"更新订单失败\",\"T2aCOV\":\"更新主办方状态失败\",\"Eeo/Gy\":\"更新设置失败\",\"kqA9lY\":\"更新增值税设置失败\",\"7/9RFs\":\"上传图片失败。\",\"nkNfWu\":\"上传图片失败。请重试。\",\"rxy0tG\":\"验证邮箱失败\",\"QRUpCk\":\"家庭\",\"5LO38w\":\"快速到账您的银行\",\"4lgLew\":\"二月\",\"9bHCo2\":\"费用货币\",\"/sV91a\":\"费用处理\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"费用已绕过\",\"cf35MA\":\"节日\",\"pAey+4\":\"文件太大。最大大小为5MB。\",\"VejKUM\":\"请先在上方填写您的详细信息\",\"/n6q8B\":\"电影\",\"L1qbUx\":\"筛选参与者\",\"8OvVZZ\":\"筛选参与者\",\"N/H3++\":\"按日期筛选\",\"mvrlBO\":\"按活动筛选\",\"g+xRXP\":\"完成 Stripe 设置\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"第一\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"第一位参与者\",\"4pwejF\":\"名字为必填项\",\"3lkYdQ\":\"固定费用\",\"6bBh3/\":\"固定费用\",\"zWqUyJ\":\"每笔交易收取的固定费用\",\"LWL3Bs\":\"固定费用必须为0或更大\",\"0RI8m4\":\"闪光灯关闭\",\"q0923e\":\"闪光灯开启\",\"lWxAUo\":\"美食美酒\",\"nFm+5u\":\"页脚文字\",\"a8nooQ\":\"第四\",\"mob/am\":\"五\",\"wtuVU4\":\"频率\",\"xVhQZV\":\"周五\",\"39y5bn\":\"星期五\",\"f5UbZ0\":\"完整数据所有权\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"全额退款\",\"UsIfa8\":\"完整解析地址\",\"PGQLdy\":\"未来\",\"8N/j1s\":\"仅未来日期\",\"yRx/6K\":\"未来日期将被复制,容量重置为零\",\"T02gNN\":\"普通入场\",\"3ep0Gx\":\"您组织者的基本信息\",\"ziAjHi\":\"生成\",\"exy8uo\":\"生成代码\",\"4CETZY\":\"获取路线\",\"pjkEcB\":\"收款\",\"lGYzP6\":\"通过 Stripe 收款\",\"ZDIydz\":\"开始使用\",\"u6FPxT\":\"获取门票\",\"8KDgYV\":\"准备好您的活动\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"返回\",\"oNL5vN\":\"前往活动页面\",\"gHSuV/\":\"返回主页\",\"8+Cj55\":\"前往日程\",\"6nDzTl\":\"良好的可读性\",\"76gPWk\":\"知道了\",\"aGWZUr\":\"总收入\",\"n8IUs7\":\"总收入\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"来宾管理\",\"NUsTc4\":\"正在进行\",\"kTSQej\":[\"您好 \",[\"0\"],\",从这里管理您的平台。\"],\"dORAcs\":\"以下是与您邮箱关联的所有票。\",\"g+2103\":\"这是您的推广链接\",\"bVsnqU\":\"您好,\",\"/iE8xx\":\"Hi.Events 费用\",\"zppscQ\":\"Hi.Events 平台费用和每笔交易的增值税明细\",\"D+zLDD\":\"隐藏\",\"DRErHC\":\"对参与者隐藏 - 仅组织者可见\",\"NNnsM0\":\"隐藏高级选项\",\"P+5Pbo\":\"隐藏答案\",\"VMlRqi\":\"隐藏详情\",\"FmogyU\":\"隐藏选项\",\"gtEbeW\":\"突出显示\",\"NF8sdv\":\"突出显示消息\",\"MXSqmS\":\"突出显示此产品\",\"7ER2sc\":\"已突出显示\",\"sq7vjE\":\"突出显示的产品将具有不同的背景色,使其在活动页面上脱颖而出。\",\"1+WSY1\":\"爱好\",\"yY8wAv\":\"小时\",\"sy9anN\":\"客户收到报价后完成购买的时限。留空表示无时间限制。\",\"n2ilNh\":\"日程持续多久?\",\"DMr2XN\":\"频率?\",\"AVpmAa\":\"如何离线支付\",\"cceMns\":\"如何对我们向您收取的平台费用应用增值税。\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"匈牙利语\",\"8Wgd41\":\"我确认我作为数据控制方的责任\",\"O8m7VA\":\"我同意接收与此活动相关的电子邮件通知\",\"YLgdk5\":\"我确认这是与此活动相关的交易消息\",\"4/kP5a\":\"如果没有自动打开新标签页,请点击下方按钮继续结账。\",\"W/eN+G\":\"如果为空,地址将用于生成 Google 地图链接\",\"iIEaNB\":\"如果您在我们这里有账户,您将收到一封包含如何重置密码说明的电子邮件。\",\"an5hVd\":\"图片\",\"tSVr6t\":\"模拟\",\"TWXU0c\":\"模拟用户\",\"5LAZwq\":\"模拟已开始\",\"IMwcdR\":\"模拟已停止\",\"0I0Hac\":\"重要通知\",\"yD3avI\":\"重要提示:更改您的电子邮件地址将更新访问此订单的链接。保存后,您将被重定向到新的订单链接。\",\"jT142F\":[[\"diffHours\"],\"小时后\"],\"OoSyqO\":[[\"diffMinutes\"],\"分钟后\"],\"PdMhEx\":[\"最近 \",[\"0\"],\" 分钟\"],\"u7r0G5\":\"线下 — 设置场馆\",\"Ip0hl5\":\"in_person、online、unset 或 mixed\",\"F1Xp97\":\"个人与会者\",\"85e6zs\":\"插入Liquid令牌\",\"38KFY0\":\"插入变量\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Stripe 即时付款\",\"nbfdhU\":\"集成\",\"I8eJ6/\":\"参与者票据上的内部备注\",\"B2Tpo0\":\"无效邮箱\",\"5tT0+u\":\"邮箱格式无效\",\"f9WRpE\":\"无效的文件类型。请上传图片。\",\"tnL+GP\":\"无效的Liquid语法。请更正后再试。\",\"N9JsFT\":\"无效的增值税号格式\",\"g+lLS9\":\"邀请团队成员\",\"1z26sk\":\"邀请团队成员\",\"KR0679\":\"邀请团队成员\",\"aH6ZIb\":\"邀请您的团队\",\"IuMGvq\":\"发票\",\"Lj7sBL\":\"意大利语\",\"F5/CBH\":\"项\",\"BzfzPK\":\"项目\",\"rjyWPb\":\"一月\",\"KmWyx0\":\"任务\",\"o5r6b2\":\"任务已删除\",\"cd0jIM\":\"任务详情\",\"ruJO57\":\"任务名称\",\"YZi+Hu\":\"任务已排队等待重试\",\"nCywLA\":\"随时随地加入\",\"SNzppu\":\"加入候补名单\",\"dLouFI\":[\"加入 \",[\"productDisplayName\"],\" 的候补名单\"],\"2gMuHR\":\"已加入\",\"u4ex5r\":\"七月\",\"zeEQd/\":\"六月\",\"MxjCqk\":\"只是在找您的票?\",\"xOTzt5\":\"刚刚\",\"0RihU9\":\"刚刚结束\",\"lB2hSG\":[\"及时向我更新来自\",[\"0\"],\"的新闻和活动\"],\"ioFA9i\":\"保留利润。\",\"4Sffp7\":\"场次的标签\",\"o66QSP\":\"标签更新\",\"RtKKbA\":\"最后\",\"DruLRc\":\"过去14天\",\"ve9JTU\":\"姓氏为必填项\",\"h0Q9Iw\":\"最新响应\",\"gw3Ur5\":\"最近触发\",\"FIq1Ba\":\"延后\",\"xvnLMP\":\"最新签到\",\"pzAivY\":\"解析地点的纬度\",\"N5TErv\":\"留空表示无限制\",\"L/hDDD\":\"留空可将此签到列表应用于所有场次\",\"9Pf3wk\":\"保持开启以覆盖活动中的所有门票。关闭则可挑选特定门票。\",\"Hq2BzX\":\"通知他们这一变更\",\"+uexiy\":\"通知他们这些变更\",\"exYcTF\":\"图书\",\"1njn7W\":\"浅色\",\"1qY5Ue\":\"链接已过期或无效\",\"+zSD/o\":\"链接到活动主页\",\"psosdY\":\"订单详情链接\",\"6JzK4N\":\"门票链接\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"允许链接\",\"2BBAbc\":\"列表\",\"5NZpX8\":\"列表视图\",\"dF6vP6\":\"上线\",\"fpMs2Z\":\"直播\",\"D9zTjx\":\"直播活动\",\"C33p4q\":\"已加载的日期\",\"WdmJIX\":\"加载预览中...\",\"IoDI2o\":\"加载令牌中...\",\"G3Ge9Z\":\"正在加载 Webhook 日志...\",\"NFxlHW\":\"正在加载 Webhook\",\"E0DoRM\":\"地点已删除\",\"NtLHT3\":\"地点格式化地址\",\"h4vxDc\":\"地点纬度\",\"f2TMhR\":\"地点经度\",\"lnCo2f\":\"地点模式\",\"8pmGFk\":\"地点名称\",\"7w8lJU\":\"地点已保存\",\"YsRXDD\":\"地点已更新\",\"A/kIva\":\"地点更新\",\"VppBoU\":\"地点\",\"iG7KNr\":\"标志\",\"vu7ZGG\":\"标志和封面\",\"gddQe0\":\"您的组织者的标志和封面图像\",\"TBEnp1\":\"标志将显示在页面头部\",\"Jzu30R\":\"标志将显示在票券上\",\"zKTMTg\":\"解析地点的经度\",\"PSRm6/\":\"查找我的门票\",\"yJFu/X\":\"总部\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"管理 \",[\"0\"]],\"wZJfA8\":\"管理您循环活动的日期和时间\",\"RlzPUE\":\"在 Stripe 上管理\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"管理日程\",\"zXuaxY\":\"管理您活动的候补名单,查看统计数据,并向参与者提供门票。\",\"BWTzAb\":\"手动\",\"g2npA5\":\"手动提供\",\"hg6l4j\":\"三月\",\"pqRBOz\":\"标记为已验证(管理员覆盖)\",\"2L3vle\":\"最大消息数 / 24小时\",\"Qp4HWD\":\"最大收件人数 / 消息\",\"3JzsDb\":\"五月\",\"agPptk\":\"媒介\",\"xDAtGP\":\"消息\",\"bECJqy\":\"消息批准成功\",\"1jRD0v\":\"向与会者发送特定门票的信息\",\"uQLXbS\":\"消息已取消\",\"48rf3i\":\"消息不能超过5000个字符\",\"ZPj0Q8\":\"消息详情\",\"Vjat/X\":\"消息为必填项\",\"0/yJtP\":\"向具有特定产品的订单所有者发送消息\",\"saG4At\":\"消息已定时\",\"mFdA+i\":\"消息级别\",\"v7xKtM\":\"消息级别更新成功\",\"H9HlDe\":\"分钟\",\"agRWc1\":\"分钟\",\"YYzBv9\":\"一\",\"zz/Wd/\":\"模式\",\"fpMgHS\":\"周一\",\"hty0d5\":\"星期一\",\"JbIgPz\":\"货币金额是所有货币的大致总和\",\"qvF+MT\":\"监控和管理失败的后台任务\",\"kY2ll9\":\"月\",\"HajiZl\":\"月\",\"+8Nek/\":\"每月\",\"1LkxnU\":\"月度规则\",\"6jefe3\":\"月\",\"f8jrkd\":\"更多\",\"JcD7qf\":\"更多操作\",\"w36OkR\":\"最多浏览活动(过去14天)\",\"+Y/na7\":\"将所有日期前移或后移\",\"3DIpY0\":\"多个地点\",\"g9cQCP\":\"多种票种\",\"GfaxEk\":\"音乐\",\"oVGCGh\":\"我的票\",\"8/brI5\":\"姓名为必填项\",\"sFFArG\":\"名称长度必须少于255个字符\",\"sCV5Yc\":\"活动名称\",\"xxU3NX\":\"净收入\",\"7I8LlL\":\"新容量\",\"n1GRql\":\"新标签\",\"y0Fcpd\":\"新地点\",\"ArHT/C\":\"新注册\",\"uK7xWf\":\"新时间:\",\"veT5Br\":\"下一场次\",\"WXtl5X\":[\"下一次:\",[\"nextFormatted\"]],\"eWRECP\":\"夜生活\",\"HSw5l3\":\"否 - 我是个人或未注册增值税的企业\",\"VHfLAW\":\"无账户\",\"+jIeoh\":\"未找到账户\",\"074+X8\":\"没有活动的 Webhook\",\"zxnup4\":\"没有推广员可显示\",\"Dwf4dR\":\"暂无参与者问题\",\"th7rdT\":\"没有参与者\",\"PKySlW\":\"此日期暂无参与者。\",\"/UC6qk\":\"未找到归因数据\",\"E2vYsO\":\"Stripe 尚未报告任何功能。\",\"amMkpL\":\"无容量\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"此活动没有可用的签到列表。\",\"wG+knX\":\"暂无签到\",\"+dAKxg\":\"未找到配置\",\"LiLk8u\":\"没有可用的连接\",\"eb47T5\":\"未找到所选筛选条件的数据。请尝试调整日期范围或货币。\",\"lFVUyx\":\"无针对此日期的专属签到列表\",\"I8mtzP\":\"本月无可用日期。请尝试切换到其他月份。\",\"yDukIL\":\"没有日期符合当前的筛选条件。\",\"B7phdj\":\"没有日期符合您的筛选条件\",\"/ZB4Um\":\"没有日期匹配您的搜索\",\"gEdNe8\":\"尚未安排日期\",\"27GYXJ\":\"尚未安排日期。\",\"pZNOT9\":\"无结束日期\",\"dW40Uz\":\"未找到活动\",\"8pQ3NJ\":\"未来24小时内没有开始的活动\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"没有失败的任务\",\"EpvBAp\":\"无发票\",\"XZkeaI\":\"未找到日志\",\"nrSs2u\":\"未找到消息\",\"Rj99yx\":\"无可用场次\",\"IFU1IG\":\"此日期无场次\",\"OVFwlg\":\"暂无订单问题\",\"EJ7bVz\":\"未找到订单\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"此日期暂无订单。\",\"wUv5xQ\":\"过去14天没有组织者活动\",\"vLd1tV\":\"无可用的主办方上下文。\",\"B7w4KY\":\"无其他可用组织者\",\"PChXMe\":\"无付费订单\",\"6jYQGG\":\"没有过去的活动\",\"CHzaTD\":\"过去14天没有热门活动\",\"zK/+ef\":\"没有可供选择的产品\",\"M1/lXs\":\"此活动未配置任何商品。\",\"kY7XDn\":\"没有产品有等候名单条目\",\"wYiAtV\":\"没有最近的账户注册\",\"UW90md\":\"未找到收件人\",\"QoAi8D\":\"无响应\",\"JeO7SI\":\"无响应\",\"EK/G11\":\"尚无响应\",\"7J5OKy\":\"尚无已保存的地点\",\"wpCjcf\":\"尚无保存的地点。当您创建带地址的活动时,它们会显示在此处。\",\"mPdY6W\":\"无建议\",\"3sRuiW\":\"未找到票\",\"k2C0ZR\":\"无即将到来的日期\",\"yM5c0q\":\"没有即将到来的活动\",\"qpC74J\":\"未找到用户\",\"8wgkoi\":\"过去14天没有浏览的活动\",\"Arzxc1\":\"没有候补名单条目\",\"n5vdm2\":\"此端点尚未记录任何 Webhook 事件。事件触发后将显示在此处。\",\"4GhX3c\":\"没有 Webhooks\",\"4+am6b\":\"否,保留在此\",\"4JVMUi\":\"未编辑\",\"Itw24Q\":\"未签到\",\"x5+Lcz\":\"未签到\",\"8n10sz\":\"不符合条件\",\"kLvU3F\":\"通知参与者并停止销售\",\"t9QlBd\":\"十一月\",\"kAREMN\":\"要创建的日期数量\",\"6u1B3O\":\"场次\",\"mmoE62\":\"场次已取消\",\"UYWXdN\":\"场次结束日期\",\"k7dZT5\":\"场次结束时间\",\"Opinaj\":\"场次标签\",\"V9flmL\":\"场次日程\",\"NUTUUs\":\"场次日程页面\",\"AT8UKD\":\"场次开始日期\",\"Um8bvD\":\"场次开始时间\",\"Kh3WO8\":\"场次摘要\",\"byXCTu\":\"场次\",\"KATw3p\":\"场次(仅未来)\",\"85rTR2\":\"场次可以在创建后进行配置\",\"dzQfDY\":\"十月\",\"BwJKBw\":\"共\",\"9h7RDh\":\"提供\",\"EfK2O6\":\"提供名额\",\"3sVRey\":\"提供门票\",\"2O7Ybb\":\"报价超时\",\"1jUg5D\":\"已提供\",\"l+/HS6\":[\"报价将在 \",[\"timeoutHours\"],\" 小时后过期。\"],\"lQgMLn\":\"办公室或场地名称\",\"6Aih4U\":\"离线\",\"Z6gBGW\":\"线下支付\",\"nO3VbP\":[\"销售于\",[\"0\"]],\"oXOSPE\":\"在线\",\"aqmy5k\":\"在线 — 提供连接信息\",\"LuZBbx\":\"线上与线下\",\"IXuOqt\":\"线上与线下 — 请查看日程\",\"w3DG44\":\"线上连接信息\",\"WjSpu5\":\"在线活动\",\"TP6jss\":\"线上活动连接信息\",\"NdOxqr\":\"只有账户管理员可以删除或归档活动。请联系您的账户管理员寻求帮助。\",\"rnoDMF\":\"只有账户管理员可以删除或归档主办方。请联系您的账户管理员寻求帮助。\",\"bU7oUm\":\"仅发送给具有这些状态的订单\",\"M2w1ni\":\"仅使用促销代码可见\",\"y8Bm7C\":\"打开签到\",\"RLz7P+\":\"打开场次\",\"cDSdPb\":\"在选择器中显示的可选别名,例如“总部会议室”\",\"HXMJxH\":\"免责声明、联系信息或感谢说明的可选文本(仅单行)\",\"L565X2\":\"选项\",\"8m9emP\":\"或添加单个日期\",\"dSeVIm\":\"订单\",\"c/TIyD\":\"订单和门票\",\"H5qWhm\":\"订单已取消\",\"b6+Y+n\":\"订单完成\",\"x4MLWE\":\"订单确认\",\"CsTTH0\":\"订单确认重新发送成功\",\"ppuQR4\":\"订单已创建\",\"0UZTSq\":\"订单货币\",\"xtQzag\":\"订单详情\",\"HdmwrI\":\"订单邮箱\",\"bwBlJv\":\"订单名字\",\"vrSW9M\":\"订单已取消并退款。订单所有者已收到通知。\",\"rzw+wS\":\"订单持有人\",\"oI/hGR\":\"订单ID\",\"Pc729f\":\"订单等待线下支付\",\"F4NXOl\":\"订单姓氏\",\"RQCXz6\":\"订单限制\",\"SO9AEF\":\"订单限制已设置\",\"5RDEEn\":\"订单语言\",\"vu6Arl\":\"订单标记为已支付\",\"sLbJQz\":\"未找到订单\",\"kvYpYu\":\"未找到订单\",\"i8VBuv\":\"订单号\",\"eJ8SvM\":\"订单号、购买日期、购买者邮箱\",\"FaPYw+\":\"订单所有者\",\"eB5vce\":\"具有特定产品的订单所有者\",\"CxLoxM\":\"具有产品的订单所有者\",\"DoH3fD\":\"订单付款待处理\",\"UkHo4c\":\"订单参考\",\"EZy55F\":\"订单已退款\",\"6eSHqs\":\"订单状态\",\"oW5877\":\"订单总额\",\"e7eZuA\":\"订单已更新\",\"1SQRYo\":\"订单更新成功\",\"KndP6g\":\"订单链接\",\"3NT0Ck\":\"订单已被取消\",\"V5khLm\":\"订单\",\"sd5IMt\":\"已完成订单\",\"5It1cQ\":\"订单已导出\",\"tlKX/S\":\"跨多个日期的订单将被标记以供人工审核。\",\"UQ0ACV\":\"订单总额\",\"B/EBQv\":\"订单:\",\"qtGTNu\":\"自然账户\",\"ucgZ0o\":\"组织\",\"P/JHA4\":\"主办方已成功归档\",\"S3CZ5M\":\"组织者仪表板\",\"GzjTd0\":\"主办方已成功删除\",\"Uu0hZq\":\"组织者邮箱\",\"Gy7BA3\":\"组织者电子邮件地址\",\"SQqJd8\":\"未找到组织者\",\"HF8Bxa\":\"主办方已成功恢复\",\"wpj63n\":\"组织者设置\",\"o1my93\":\"组织者状态更新失败。请稍后再试\",\"rLHma1\":\"组织者状态已更新\",\"LqBITi\":\"将使用组织者/默认模板\",\"q4zH+l\":\"主办方\",\"/IX/7x\":\"其他\",\"RsiDDQ\":\"其他列表(不包含此票)\",\"aDfajK\":\"户外\",\"qMASRF\":\"发出的消息\",\"iCOVQO\":\"覆盖\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"覆盖价格\",\"cnVIpl\":\"覆盖已移除\",\"6/dCYd\":\"概览\",\"6WdDG7\":\"页面\",\"8uqsE5\":\"页面不再可用\",\"QkLf4H\":\"页面链接\",\"sF+Xp9\":\"页面浏览量\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"付费账户\",\"5F7SYw\":\"部分退款\",\"fFYotW\":[\"部分退款:\",[\"0\"]],\"i8day5\":\"将费用转嫁给买家\",\"k4FLBQ\":\"转嫁给买家\",\"Ff0Dor\":\"过去\",\"BFjW8X\":\"已逾期\",\"xTPjSy\":\"过去的活动\",\"/l/ckQ\":\"粘贴链接\",\"URAE3q\":\"已暂停\",\"4fL/V7\":\"付款\",\"OZK07J\":\"付款解锁\",\"c2/9VE\":\"负载数据\",\"5cxUwd\":\"支付日期\",\"ENEPLY\":\"付款方式\",\"8Lx2X7\":\"已收到付款\",\"fx8BTd\":\"付款不可用\",\"C+ylwF\":\"提现\",\"UbRKMZ\":\"待处理\",\"UkM20g\":\"待审核\",\"dPYu1F\":\"每位参与者\",\"mQV/nJ\":\"每分钟\",\"VlXNyK\":\"每个订单\",\"hauDFf\":\"每张门票\",\"mnF83a\":\"百分比费用\",\"TNLuRD\":\"百分比费用 (%)\",\"MixU2P\":\"百分比必须在0到100之间\",\"MkuVAZ\":\"交易金额的百分比\",\"/Bh+7r\":\"绩效\",\"fIp56F\":\"永久删除此活动及其所有相关数据。\",\"nJeeX7\":\"永久删除此主办方及其所有活动。\",\"wfCTgK\":\"永久移除此日期\",\"6kPk3+\":\"个人信息\",\"zmwvG2\":\"电话\",\"SdM+Q1\":\"选择地点\",\"tSR/oe\":\"选择结束日期\",\"e8kzpp\":\"至少选择每月的一天\",\"35C8QZ\":\"至少选择每周的一天\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"下单\",\"wBJR8i\":\"计划举办活动?\",\"J3lhKT\":\"平台费用\",\"RD51+P\":[\"从您的付款中扣除 \",[\"0\"],\" 的平台费用\"],\"br3Y/y\":\"平台费用\",\"3buiaw\":\"平台费用报告\",\"kv9dM4\":\"平台收入\",\"PJ3Ykr\":\"请查看您的门票以了解更新后的时间。您的门票仍然有效 — 除非新时间不适合您,否则无需采取任何操作。如有疑问,请回复此邮件。\",\"OtjenF\":\"请输入有效的电子邮件地址\",\"jEw0Mr\":\"请输入有效的 URL\",\"n8+Ng/\":\"请输入5位数验证码\",\"r+lQXT\":\"请输入您的增值税号码\",\"Dvq0wf\":\"请提供一张图片。\",\"2cUopP\":\"请重新开始结账流程。\",\"GoXxOA\":\"请选择日期和时间\",\"8KmsFa\":\"请选择日期范围\",\"EFq6EG\":\"请选择一张图片。\",\"fuwKpE\":\"请再试一次。\",\"klWBeI\":\"请稍候再请求新的验证码\",\"hfHhaa\":\"请稍候,我们正在准备导出您的推广员...\",\"o+tJN/\":\"请稍候,我们正在准备导出您的与会者...\",\"+5Mlle\":\"请稍候,我们正在准备导出您的订单...\",\"trnWaw\":\"波兰语\",\"luHAJY\":\"热门活动(过去14天)\",\"p/78dY\":\"位置\",\"TjX7xL\":\"结账后消息\",\"OESu7I\":\"通过在多种门票类型之间共享库存来防止超卖。\",\"NgVUL2\":\"预览结账表单\",\"cs5muu\":\"预览活动页面\",\"+4yRWM\":\"门票价格\",\"Jm2AC3\":\"价格档位\",\"a5jvSX\":\"价格层级\",\"ReihZ7\":\"打印预览\",\"JnuPvH\":\"打印门票\",\"tYF4Zq\":\"打印为PDF\",\"LcET2C\":\"隐私政策\",\"8z6Y5D\":\"处理退款\",\"JcejNJ\":\"处理订单中\",\"EWCLpZ\":\"产品已创建\",\"XkFYVB\":\"产品已删除\",\"YMwcbR\":\"产品销售、收入和税费明细\",\"ls0mTC\":\"已取消日期的商品设置无法编辑。\",\"2339ej\":\"商品设置保存成功\",\"ldVIlB\":\"产品已更新\",\"CP3D8G\":\"进度\",\"JoKGiJ\":\"优惠码\",\"k3wH7i\":\"促销码使用情况及折扣明细\",\"tZqL0q\":\"促销码\",\"oCHiz3\":\"促销码\",\"uEhdRh\":\"仅促销\",\"dLm8V5\":\"促销电子邮件可能导致账户暂停\",\"XoEWtl\":\"请为新地点提供至少一个地址字段。\",\"2W/7Gz\":\"在 Stripe 下次审核前提供以下信息,以保持提现顺畅。\",\"aemBRq\":\"提供商\",\"EEYbdt\":\"发布\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"已购买\",\"JunetL\":\"购买者\",\"phmeUH\":\"购买者邮箱\",\"ywR4ZL\":\"二维码签到\",\"oWXNE5\":\"数量\",\"biEyJ4\":\"问题回答\",\"k/bJj0\":\"问题已重新排序\",\"b24kPi\":\"队列\",\"lTPqpM\":\"小贴士\",\"fqDzSu\":\"费率\",\"mnUGVC\":\"超出速率限制。请稍后再试。\",\"t41hVI\":\"重新提供名额\",\"TNclgc\":\"重新启用此日期?它将重新开放销售。\",\"uqoRbb\":\"实时分析\",\"xzRvs4\":[\"接收 \",[\"0\"],\" 的产品更新。\"],\"pLXbi8\":\"最近账户注册\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"最近参与者\",\"qhfiwV\":\"最近签到\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"最近订单\",\"7hPBBn\":\"位收件人\",\"jp5bq8\":\"位收件人\",\"yPrbsy\":\"收件人\",\"E1F5Ji\":\"收件人在消息发送后可用\",\"wuhHPE\":\"循环\",\"asLqwt\":\"循环活动\",\"D0tAMe\":\"循环活动\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"正在重定向到 Stripe...\",\"pnoTN5\":\"推荐账户\",\"ACKu03\":\"刷新预览\",\"vuFYA6\":\"退款这些日期的所有订单\",\"4cRUK3\":\"退款此日期的所有订单\",\"fKn/k6\":\"退款金额\",\"qY4rpA\":\"退款失败\",\"TspTcZ\":\"已发起退款\",\"FaK/8G\":[\"退款订单 \",[\"0\"]],\"MGbi9P\":\"退款处理中\",\"BDSRuX\":[\"已退款:\",[\"0\"]],\"bU4bS1\":\"退款\",\"rYXfOA\":\"区域设置\",\"5tl0Bp\":\"注册问题\",\"ZNo5k1\":\"剩余\",\"EMnuA4\":\"已安排提醒\",\"Bjh87R\":\"从所有日期移除标签\",\"KkJtVK\":\"重新开放销售\",\"XJwWJp\":\"重新开放此日期进行销售?之前已取消的票据将不会被恢复 — 受影响的参与者保持已取消状态,已发放的退款也不会被撤销。\",\"bAwDQs\":\"每隔\",\"CQeZT8\":\"未找到报告\",\"JEPMXN\":\"请求新链接\",\"TMLAx2\":\"必填\",\"mdeIOH\":\"重新发送验证码\",\"sQxe68\":\"重新发送确认\",\"bxoWpz\":\"重新发送确认邮件\",\"G42SNI\":\"重新发送邮件\",\"TTpXL3\":[[\"resendCooldown\"],\"秒后重新发送\"],\"5CiNPm\":\"重新发送门票\",\"Uwsg2F\":\"已预订\",\"8wUjGl\":\"保留至\",\"a5z8mb\":\"重置为基础价格\",\"kCn6wb\":\"正在重置...\",\"404zLK\":\"已解析的地点或场馆名称\",\"ZlCDf+\":\"响应\",\"bsydMp\":\"响应详情\",\"yKu/3Y\":\"恢复\",\"RokrZf\":\"恢复活动\",\"/JyMGh\":\"恢复主办方\",\"HFvFRb\":\"恢复此活动以使其重新可见。\",\"DDIcqy\":\"恢复此主办方并使其重新活跃。\",\"mO8KLE\":\"结果\",\"6gRgw8\":\"重试\",\"1BG8ga\":\"全部重试\",\"rDC+T6\":\"重试任务\",\"CbnrWb\":\"返回活动\",\"mdQ0zb\":\"可在活动中复用的场地。通过自动完成创建的地点将自动保存在此。\",\"XFOPle\":\"重复使用\",\"1Zehp4\":\"重复使用此账户下其他组织者的 Stripe 连接。\",\"Oo/PLb\":\"收入摘要\",\"O/8Ceg\":\"今日营收\",\"CfuueU\":\"撤销邀约\",\"RIgKv+\":\"运行至特定日期\",\"JYRqp5\":\"六\",\"dFFW9L\":[\"销售已于\",[\"0\"],\"结束\"],\"loCKGB\":[\"销售于\",[\"0\"],\"结束\"],\"wlfBad\":\"销售期\",\"qi81Jg\":\"销售期日期适用于您日程中的所有日期。如需控制单个日期的价格和可用性,请在 <0>场次日程页面 使用覆盖设置。\",\"5CDM6r\":\"销售期已设置\",\"ftzaMf\":\"销售期、订单限制、可见性\",\"zpekWp\":[\"销售于\",[\"0\"],\"开始\"],\"mUv9U4\":\"销售\",\"9KnRdL\":\"销售已暂停\",\"JC3J0k\":\"每个场次的销售、出席和签到明细\",\"3VnlS9\":\"所有活动的销售、订单和性能指标\",\"3Q1AWe\":\"销售额:\",\"LeuERW\":\"与活动相同\",\"B4nE3N\":\"示例票价\",\"8BRPoH\":\"示例场地\",\"PiK6Ld\":\"周六\",\"+5kO8P\":\"星期六\",\"zJiuDn\":\"保存费用覆盖\",\"NB8Uxt\":\"保存日程\",\"KZrfYJ\":\"保存社交链接\",\"9Y3hAT\":\"保存模板\",\"C8ne4X\":\"保存票券设计\",\"cTI8IK\":\"保存增值税设置\",\"6/TNCd\":\"保存增值税设置\",\"4RvD9q\":\"已保存的地点\",\"cgw0cL\":\"已保存的地点\",\"lvSrsT\":\"已保存的地点\",\"Fbqm/I\":\"如该主办方当前使用系统默认设置,保存覆盖将为其创建专属配置。\",\"I+FvbD\":\"扫描\",\"0zd6Nm\":\"扫描票券以为参与者签到\",\"bQG7Qk\":\"扫描的票据将显示在此处\",\"WDYSLJ\":\"扫描模式\",\"gmB6oO\":\"日程\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"日程创建成功\",\"YP7frt\":\"日程结束于\",\"QS1Nla\":\"稍后发送\",\"NAzVVw\":\"定时发送消息\",\"Fz09JP\":\"排程开始日期\",\"4ba0NE\":\"已安排\",\"qcP/8K\":\"定时时间\",\"A1taO8\":\"搜索\",\"ftNXma\":\"搜索推广员...\",\"VMU+zM\":\"搜索参与者\",\"VY+Bdn\":\"按账户名称或电子邮件搜索...\",\"VX+B3I\":\"按活动标题或主办方搜索...\",\"R0wEyA\":\"按任务名称或异常搜索...\",\"VT+urE\":\"按姓名或电子邮件搜索...\",\"GHdjuo\":\"按姓名、电子邮件或账户搜索...\",\"4mBFO7\":\"按姓名、订单号、票号或邮箱搜索\",\"20ce0U\":\"按订单ID、客户姓名或电子邮件搜索...\",\"4DSz7Z\":\"按主题、活动或账户搜索...\",\"nQC7Z9\":\"搜索日期...\",\"iRtEpV\":\"搜索日期…\",\"JRM7ao\":\"搜索地址\",\"BWF1kC\":\"搜索消息...\",\"3aD3GF\":\"季节性\",\"ku//5b\":\"第二\",\"Mck5ht\":\"安全结账\",\"s7tXqF\":\"查看日程\",\"JFap6u\":\"查看 Stripe 还需要什么\",\"p7xUrt\":\"选择类别\",\"hTKQwS\":\"选择日期和时间\",\"e4L7bF\":\"选择一条消息查看其内容\",\"zPRPMf\":\"选择级别\",\"uqpVri\":\"选择时间\",\"BFRSTT\":\"选择账户\",\"wgNoIs\":\"全选\",\"mCB6Je\":\"全选\",\"aCEysm\":[\"全选 \",[\"0\"]],\"a6+167\":\"选择活动\",\"CFbaPk\":\"选择参会者组\",\"88a49s\":\"选择摄像头\",\"tVW/yo\":\"选择货币\",\"SJQM1I\":\"选择日期\",\"n9ZhRa\":\"选择结束日期和时间\",\"gTN6Ws\":\"选择结束时间\",\"0U6E9W\":\"选择活动类别\",\"j9cPeF\":\"选择事件类型\",\"ypTjHL\":\"选择场次\",\"KizCK7\":\"选择开始日期和时间\",\"dJZTv2\":\"选择开始时间\",\"x8XMsJ\":\"为此帐户选择消息级别。这控制消息限制和链接权限。\",\"aT3jZX\":\"选择时区\",\"TxfvH2\":\"选择应该收到此消息的参会者\",\"Ropvj0\":\"选择哪些事件将触发此 Webhook\",\"+6YAwo\":\"已选择\",\"ylXj1N\":\"已选择\",\"uq3CXQ\":\"让您的活动售罄。\",\"j9b/iy\":\"热卖中 🔥\",\"73qYgo\":\"作为测试发送\",\"HMAqFK\":\"向参与者、持票人或订单所有者发送电子邮件。消息可以立即发送或安排稍后发送。\",\"22Itl6\":\"给我发送副本\",\"NpEm3p\":\"立即发送\",\"nOBvex\":\"将实时订单和参与者数据发送到您的外部系统。\",\"1lNPhX\":\"发送退款通知邮件\",\"eaUTwS\":\"发送重置链接\",\"5cV4PY\":\"发送到所有场次,或选择特定场次\",\"QEQlnV\":\"发送您的第一条消息\",\"3nMAVT\":\"将在 2 天 4 小时后发送\",\"IoAuJG\":\"正在发送...\",\"h69WC6\":\"已发送\",\"BVu2Hz\":\"发送者\",\"ZFa8wv\":\"在已安排的日期被取消时发送给参与者\",\"SPdzrs\":\"客户下单时发送\",\"LxSN5F\":\"发送给每位参会者及其门票详情\",\"hgvbYY\":\"九月\",\"5sN96e\":\"场次已取消\",\"89xaFU\":\"为此组织者创建的新活动设置默认平台费用设置。\",\"eXssj5\":\"为此组织者创建的新活动设置默认设置。\",\"uPe5p8\":\"设置每个日期的持续时间\",\"xNsRxU\":\"设置日期数量\",\"ODuUEi\":\"设置或清除日期标签\",\"buHACR\":\"将每个日期的结束时间设为开始时间之后该时长。\",\"TaeFgl\":\"设为无限制(移除上限)\",\"pd6SSe\":\"设置循环日程以自动创建日期,或逐个添加。\",\"s0FkEx\":\"为不同的入口、场次或日期设置签到列表。\",\"TaWVGe\":\"设置付款\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"设置日程\",\"xMO+Ao\":\"设置您的组织\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"设置您的日程\",\"ETC76A\":\"设置、更改或移除该场次的地点或在线信息\",\"C3htzi\":\"设置已更新\",\"Ohn74G\":\"设置与设计\",\"1W5XyZ\":\"设置只需几分钟——您无需已有的 Stripe 账户。Stripe 会处理卡支付、电子钱包、地区性支付方式以及欺诈防护,您可以专心办活动。\",\"GG7qDw\":\"分享推广链接\",\"hL7sDJ\":\"分享组织者页面\",\"jy6QDF\":\"共享容量管理\",\"jDNHW4\":\"平移时间\",\"tPfIaW\":[\"已为 \",[\"count\"],\" 个日期平移时间\"],\"WwlM8F\":\"显示高级选项\",\"cMW+gm\":[\"显示所有平台(另有 \",[\"0\"],\" 个包含值)\"],\"wXi9pZ\":\"向未登录员工显示备注\",\"UVPI5D\":\"显示更少平台\",\"Eu/N/d\":\"显示营销订阅复选框\",\"SXzpzO\":\"默认显示营销订阅复选框\",\"57tTk5\":\"显示更多日期\",\"b33PL9\":\"显示更多平台\",\"Eut7p9\":\"向未登录员工显示订单详情\",\"+RoWKN\":\"向未登录员工显示回答\",\"t1LIQW\":[\"显示 \",[\"0\"],\" / \",[\"totalRows\"],\" 条记录\"],\"E717U9\":[\"显示 \",[\"0\"],\"–\",[\"1\"],\" 项,共 \",[\"2\"],\" 项\"],\"5rzhBQ\":[\"显示 \",[\"totalAvailable\"],\" 个日期中的 \",[\"MAX_VISIBLE\"],\" 个。输入以搜索。\"],\"WSt3op\":[\"显示前 \",[\"0\"],\" 个 — 发送消息时,剩余的 \",[\"1\"],\" 个场次仍会被包括在内。\"],\"OJLTEL\":\"员工首次打开签到页时显示。\",\"jVRHeq\":\"注册时间\",\"5C7J+P\":\"单次活动\",\"E//btK\":\"跳过已手动编辑的日期\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"社交\",\"d0rUsW\":\"社交链接\",\"j/TOB3\":\"社交链接与网站\",\"s9KGXU\":\"已售出\",\"iACSrw\":\"部分详情对公共访问者隐藏。登录可查看全部内容。\",\"KTxc6k\":\"出现问题,请重试,或在问题持续时联系客服\",\"lkE00/\":\"出了点问题。请稍后再试。\",\"wdxz7K\":\"来源\",\"fDG2by\":\"灵性\",\"oPaRES\":\"按日期、区域或票种划分签到。将链接分享给员工 — 无需账号。\",\"7JFNej\":\"体育\",\"/bfV1Y\":\"员工说明\",\"tXkhj/\":\"开始\",\"JcQp9p\":\"开始日期和时间\",\"0m/ekX\":\"开始日期和时间\",\"izRfYP\":\"开始日期为必填项\",\"tuO4fV\":\"场次开始日期\",\"2R1+Rv\":\"活动开始时间\",\"2Olov3\":\"场次开始时间\",\"n9ZrDo\":\"开始输入场馆或地址...\",\"qeFVhN\":[[\"diffDays\"],\" 天后开始\"],\"AOqtxN\":[[\"diffMinutes\"],\" 分钟后开始\"],\"Otg8Oh\":[[\"h\"],\" 小时 \",[\"m\"],\" 分钟后开始\"],\"Lo49in\":[[\"seconds\"],\" 秒后开始\"],\"NqChgF\":\"明天开始\",\"2NbyY/\":\"统计数据\",\"GVUxAX\":\"统计数据基于账户创建日期\",\"29Hx9U\":\"统计\",\"5ia+r6\":\"仍需提供\",\"wuV0bK\":\"停止模拟\",\"s/KaDb\":\"Stripe 已连接\",\"Bk06QI\":\"Stripe 已连接\",\"akZMv8\":[\"已从 \",[\"0\"],\" 复制 Stripe 连接。\"],\"v0aRY1\":\"Stripe 没有返回设置链接,请重试。\",\"aKtF0O\":\"Stripe未连接\",\"9i0++A\":\"Stripe 支付 ID\",\"R1lIMV\":\"Stripe 很快需要一些额外信息\",\"FzcCHA\":\"Stripe 会引导你回答几个简短问题,完成设置。\",\"eYbd7b\":\"日\",\"ii0qn/\":\"主题是必需的\",\"M7Uapz\":\"主题将显示在这里\",\"6aXq+t\":\"主题:\",\"JwTmB6\":\"产品复制成功\",\"WUOCgI\":\"已成功提供名额\",\"IvxA4G\":[\"已成功向 \",[\"count\"],\" 人提供门票\"],\"kKpkzy\":\"已成功向 1 人提供门票\",\"Zi3Sbw\":\"已成功从候补名单中移除\",\"RuaKfn\":\"地址更新成功\",\"kzx0uD\":\"成功更新活动默认设置\",\"5n+Wwp\":\"组织者更新成功\",\"DMCX/I\":\"平台费用默认设置更新成功\",\"URUYHc\":\"平台费用设置更新成功\",\"0Dk/l8\":\"SEO 设置更新成功\",\"S8Tua9\":\"设置更新成功\",\"MhOoLQ\":\"社交链接更新成功\",\"CNSSfp\":\"跟踪设置更新成功\",\"kj7zYe\":\"Webhook 更新成功\",\"dXoieq\":\"摘要\",\"/RfJXt\":[\"夏季音乐节 \",[\"0\"]],\"CWOPIK\":\"2025夏季音乐节\",\"D89zck\":\"周日\",\"DBC3t5\":\"星期日\",\"UaISq3\":\"瑞典语\",\"JZTQI0\":\"切换组织者\",\"9YHrNC\":\"系统默认\",\"lruQkA\":\"点击屏幕以继续扫描\",\"TJUrME\":[\"面向 \",[\"0\"],\" 个所选场次的参与者。\"],\"yT6dQ8\":\"按税种和活动分组的已收税款\",\"Ye321X\":\"税种名称\",\"WyCBRt\":\"税务摘要\",\"GkH0Pq\":\"已应用税费\",\"Rwiyt2\":\"税费已配置\",\"iQZff7\":\"税费、费用、可见性、销售期、产品亮点和订单限制\",\"SXvRWU\":\"团队协作\",\"vlf/In\":\"科技\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"告诉人们您的活动会有哪些内容\",\"NiIUyb\":\"介绍一下您的活动\",\"DovcfC\":\"请告诉我们您的组织信息。这些信息将显示在您的活动页面上。\",\"69GWRq\":\"告诉我们您的活动多久重复一次,我们会为您创建所有日期。\",\"mXPbwY\":\"请告诉我们您的增值税注册状态,以便我们对平台费用应用正确的增值税处理。\",\"7wtpH5\":\"模板已激活\",\"QHhZeE\":\"模板创建成功\",\"xrWdPR\":\"模板删除成功\",\"G04Zjt\":\"模板保存成功\",\"xowcRf\":\"服务条款\",\"6K0GjX\":\"文字可能难以阅读\",\"u0F1Ey\":\"四\",\"nm3Iz/\":\"感谢您的参与!\",\"pYwj0k\":\"谢谢,\",\"k3IitN\":\"圆满结束\",\"KfmPRW\":\"页面的背景颜色。使用封面图片时,此颜色将作为叠加层应用。\",\"MDNyJz\":\"验证码将在10分钟后过期。如果您没有收到邮件,请检查垃圾邮件文件夹。\",\"AIF7J2\":\"定义固定费用的货币。结账时将转换为订单货币。\",\"MJm4Tq\":\"订单的货币\",\"cDHM1d\":\"电子邮件地址已更改。参与者将在更新后的电子邮件地址收到新门票。\",\"I/NNtI\":\"活动场地\",\"tXadb0\":\"您查找的活动目前不可用。它可能已被删除、过期或 URL 不正确。\",\"5fPdZe\":\"此排程将从此日期开始生成。\",\"EBzPwC\":\"活动的完整地址\",\"sxKqBm\":\"订单全额将退款至客户的原始付款方式。\",\"KgDp6G\":\"您尝试访问的链接已过期或不再有效。请检查您的电子邮件以获取管理订单的更新链接。\",\"5OmEal\":\"客户的语言\",\"Np4eLs\":[\"最多 \",[\"MAX_PREVIEW\"],\" 个场次。请减少日期范围、频率或每天的场次数量。\"],\"sYLeDq\":\"未找到您要查找的组织者。页面可能已被移动、删除或链接有误。\",\"PCr4zw\":\"该覆盖已记录在订单审计日志中。\",\"C4nQe5\":\"平台费用会添加到票价中。买家支付更多,但您会收到完整的票价。\",\"HxxXZO\":\"用于按钮和突出显示的主要品牌颜色\",\"z0KrIG\":\"定时时间为必填项\",\"EWErQh\":\"定时时间必须是将来的时间\",\"UNd0OU\":[\"原定于 \",[\"0\"],\" 的“\",[\"title\"],\"”场次已重新安排。\"],\"DEcpfp\":\"模板正文包含无效的Liquid语法。请更正后再试。\",\"injXD7\":\"增值税号无法验证。请检查号码并重试。\",\"A4UmDy\":\"戏剧\",\"tDwYhx\":\"主题与颜色\",\"O7g4eR\":\"此活动没有即将到来的日期\",\"HrIl0p\":[\"没有专属于此日期的签到列表。“\",[\"0\"],\"”列表会为所有日期的参与者签到 — 工作人员扫描其他日期的门票仍能成功。\"],\"dt3TwA\":\"这些是所有日期的默认价格和数量。各档位的销售日期为全局生效。您可以在 <0>场次日程页面 为单个日期覆盖价格和数量。\",\"062KsE\":\"这些详情仅在此日期的参与者门票和订单摘要中显示。\",\"5Eu+tn\":\"这些详情仅在订单成功完成后显示。\",\"jQjwR+\":\"这些信息将替换受影响场次上现有的地点,并显示在参会者门票上。\",\"QP3gP+\":\"这些设置仅适用于复制的嵌入代码,不会被保存。\",\"HirZe8\":\"这些模板将用作您组织中所有活动的默认模板。单个活动可以用自己的自定义版本覆盖这些模板。\",\"lzAaG5\":\"这些模板将仅覆盖此活动的组织者默认设置。如果这里没有设置自定义模板,将使用组织者模板。\",\"UlykKR\":\"第三\",\"wkP5FM\":\"这适用于活动中每一个匹配的日期,包括当前不可见的日期。在任何这些日期上报名的参与者,更新完成后均可通过消息撰写器联系。\",\"SOmGDa\":\"此签到列表绑定的场次已被取消,无法再用于签到。\",\"XBNC3E\":\"此代码将用于跟踪销售。只允许字母、数字、连字符和下划线。\",\"AaP0M+\":\"此颜色组合对某些用户来说可能难以阅读\",\"o1phK/\":[\"此日期有 \",[\"orderCount\"],\" 个订单将受到影响。\"],\"F/UtGt\":\"此日期已被取消。您仍可删除它以永久移除。\",\"BLZ7pX\":\"此日期已过去。将会创建,但不会出现在参与者的即将到来日期中。\",\"7IIY0z\":\"此日期已标记为售罄。\",\"bddWMP\":\"此日期已不再可用。请选择其他日期。\",\"RzEvf5\":\"此活动已结束\",\"YClrdK\":\"此活动尚未发布\",\"dFJnia\":\"这是您的组织者名称,将展示给用户。\",\"vt7jiq\":\"签名密钥仅显示一次。请立即复制并妥善保存。\",\"L7dIM7\":\"此链接无效或已过期。\",\"MR5ygV\":\"此链接不再有效\",\"9LEqK0\":\"此名称对最终用户可见\",\"QdUMM9\":\"此场次已满员\",\"j5FdeA\":\"此订单正在处理中。\",\"sjNPMw\":\"此订单已被放弃。您可以随时开始新订单。\",\"OhCesD\":\"此订单已被取消。您可以随时开始新订单。\",\"lyD7rQ\":\"此主办方资料尚未发布\",\"9b5956\":\"此预览显示您的邮件使用示例数据的外观。实际邮件将使用真实值。\",\"uM9Alj\":\"此产品在活动页面上已突出显示\",\"RqSKdX\":\"此产品已售罄\",\"W12OdJ\":\"此报告仅供参考。在将此数据用于会计或税务目的之前,请务必咨询税务专业人士。请与您的Stripe仪表板进行交叉验证,因为Hi.Events可能缺少历史数据。\",\"0Ew0uk\":\"此门票刚刚被扫描。请等待后再次扫描。\",\"FYXq7k\":[\"这将影响 \",[\"loadedAffectedCount\"],\" 个日期。\"],\"kvpxIU\":\"这将用于通知和与用户沟通。\",\"rhsath\":\"这对客户不可见,但有助于您识别推广员。\",\"hV6FeJ\":\"吞吐\",\"+FjWgX\":\"周四\",\"kkDQ8m\":\"星期四\",\"0GSPnc\":\"票券设计\",\"EZC/Cu\":\"票券设计保存成功\",\"bbslmb\":\"门票设计器\",\"1BPctx\":\"门票:\",\"bgqf+K\":\"持票人邮箱\",\"oR7zL3\":\"持票人姓名\",\"HGuXjF\":\"票务持有人\",\"CMUt3Y\":\"票务持有人\",\"awHmAT\":\"门票 ID\",\"6czJik\":\"门票标志\",\"OkRZ4Z\":\"门票名称\",\"t79rDv\":\"未找到门票\",\"6tmWch\":\"票或商品\",\"1tfWrD\":\"门票预览:\",\"KnjoUA\":\"票价\",\"tGCY6d\":\"门票价格\",\"pGZOcL\":\"门票重新发送成功\",\"o02GZM\":\"本活动的门票销售已结束\",\"8jLPgH\":\"票券类型\",\"X26cQf\":\"门票链接\",\"8qsbZ5\":\"票务与销售\",\"zNECqg\":\"门票\",\"6GQNLE\":\"门票\",\"NRhrIB\":\"票务与商品\",\"OrWHoZ\":\"当有空余名额时,门票将自动提供给候补名单中的客户。\",\"EUnesn\":\"门票有售\",\"AGRilS\":\"已售票数\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"时间\",\"dMtLDE\":\"至\",\"/jQctM\":\"收件人\",\"tiI71C\":\"要提高您的限制,请联系我们\",\"ecUA8p\":\"今天\",\"W428WC\":\"切换列\",\"BRMXj0\":\"明天\",\"UBSG1X\":\"顶级组织者(过去14天)\",\"3sZ0xx\":\"总账户数\",\"EaAPbv\":\"支付总金额\",\"SMDzqJ\":\"总参与人数\",\"orBECM\":\"总收款\",\"k5CU8c\":\"总条目\",\"4B7oCp\":\"总费用\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"总用户数\",\"oJjplO\":\"总浏览量\",\"rBZ9pz\":\"旅游\",\"orluER\":\"按归因来源跟踪账户增长和表现\",\"YwKzpH\":\"Tracking & Analytics\",\"uKOFO5\":\"如果是线下支付则为真\",\"9GsDR2\":\"如果付款待处理则为真\",\"GUA0Jy\":\"尝试其他搜索词或筛选\",\"2P/OWN\":\"尝试调整筛选条件以查看更多日期。\",\"ouM5IM\":\"尝试其他邮箱\",\"3DZvE7\":\"免费试用Hi.Events\",\"7P/9OY\":\"二\",\"vq2WxD\":\"周二\",\"G3myU+\":\"星期二\",\"Kz91g/\":\"土耳其语\",\"GdOhw6\":\"关闭声音\",\"KUOhTy\":\"开启声音\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"输入\\\"删除\\\"以确认\",\"XxecLm\":\"门票类型\",\"IrVSu+\":\"无法复制产品。请检查您的详细信息\",\"Vx2J6x\":\"无法获取参与者\",\"h0dx5e\":\"无法加入候补名单\",\"DaE0Hg\":\"无法加载参与者详情。\",\"GlnD5Y\":\"无法加载此日期的商品。请重试。\",\"17VbmV\":\"无法撤销签到\",\"n57zCW\":\"未归因账户\",\"9uI/rE\":\"撤销\",\"b9SN9q\":\"唯一订单参考\",\"Ef7StM\":\"未知\",\"ZBAScj\":\"未知参会者\",\"MEIAzV\":\"未命名\",\"K6L5Mx\":\"未命名地点\",\"X13xGn\":\"不受信任\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"更新推广员\",\"59qHrb\":\"更新容量\",\"Gaem9v\":\"更新活动名称和描述\",\"7EhE4k\":\"更新标签\",\"NPQWj8\":\"更新地点\",\"75+lpR\":[\"更新:\",[\"subjectTitle\"],\" — 日程变更\"],\"UOGHdA\":[\"更新:\",[\"subjectTitle\"],\" — 场次时间变更\"],\"ogoTrw\":[\"已更新 \",[\"count\"],\" 个日期\"],\"dDuona\":[\"已更新 \",[\"count\"],\" 个日期的容量\"],\"FT3LSc\":[\"已更新 \",[\"count\"],\" 个日期的标签\"],\"8EcY1g\":[\"已更新 \",[\"count\"],\" 个场次的地点\"],\"gJQsLv\":\"上传组织者封面图像\",\"4kEGqW\":\"上传组织者 Logo\",\"lnCMdg\":\"上传图片\",\"29w7p6\":\"正在上传图像...\",\"HtrFfw\":\"URL 是必填项\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB 扫描仪运行中\",\"dyTklH\":\"USB 扫描仪已暂停\",\"OHJXlK\":\"使用 <0>Liquid 模板 个性化您的邮件\",\"g0WJMu\":\"使用所有日期的列表\",\"0k4cdb\":\"对所有参与者使用订单详情。参与者姓名和电子邮件将与买家信息匹配。\",\"MKK5oI\":\"使用所有日期的列表,还是为此日期创建一个列表?\",\"bA31T4\":\"为所有参与者使用购买者的信息\",\"rnoQsz\":\"用于边框、高亮和二维码样式\",\"BV4L/Q\":\"UTM 分析\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"正在验证您的增值税号...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"增值税号\",\"pnVh83\":\"增值税号码\",\"CabI04\":\"增值税号不得包含空格\",\"PMhxAR\":\"增值税号必须以2字母国家代码开头,后跟8-15个字母数字字符(例如,DE123456789)\",\"gPgdNV\":\"增值税号验证成功\",\"RUMiLy\":\"增值税号验证失败\",\"vqji3Y\":\"增值税号验证失败。请检查您的增值税号。\",\"8dENF9\":\"费用增值税\",\"ZutOKU\":\"增值税率\",\"+KJZt3\":\"已注册增值税\",\"Nfbg76\":\"增值税设置已成功保存\",\"UvYql/\":\"增值税设置已保存。我们正在后台验证您的增值税号。\",\"bXn1Jz\":\"增值税设置已更新\",\"tJylUv\":\"平台费用的增值税处理\",\"FlGprQ\":\"平台费用的增值税处理:欧盟增值税注册企业可以使用反向收费机制(0% - 增值税指令2006/112/EC第196条)。未注册增值税的企业需缴纳23%的爱尔兰增值税。\",\"516oLj\":\"增值税验证服务暂时不可用\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"增值税:未注册\",\"AdWhjZ\":\"验证码\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"已验证\",\"wCKkSr\":\"验证邮箱\",\"/IBv6X\":\"验证您的邮箱\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"正在验证...\",\"fROFIL\":\"越南语\",\"p5nYkr\":\"查看全部\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"查看全部功能\",\"RnvnDc\":\"查看平台上发送的所有消息\",\"+WFMis\":\"查看和下载所有活动的报告。仅包含已完成的订单。\",\"c7VN/A\":\"查看答案\",\"SZw9tS\":\"查看详情\",\"9+84uW\":[\"查看 \",[\"0\"],\" \",[\"1\"],\" 的详情\"],\"FCVmuU\":\"查看活动\",\"c6SXHN\":\"查看活动页面\",\"n6EaWL\":\"查看日志\",\"OaKTzt\":\"查看地图\",\"zNZNMs\":\"查看消息\",\"67OJ7t\":\"查看订单\",\"tKKZn0\":\"查看订单详情\",\"KeCXJu\":\"查看订单详情、退款和重新发送确认。\",\"9jnAcN\":\"查看组织者主页\",\"1J/AWD\":\"查看门票\",\"N9FyyW\":\"查看、编辑和导出您的注册参与者。\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"等待中\",\"quR8Qp\":\"等待付款\",\"KrurBH\":\"等待扫描…\",\"u0n+wz\":\"候补名单\",\"3RXFtE\":\"候补名单已启用\",\"TwnTPy\":\"候补邀约已过期\",\"NzIvKm\":\"已触发候补名单\",\"aUi/Dz\":\"警告:这是系统默认配置。更改将影响所有未分配特定配置的账户。\",\"qeygIa\":\"三\",\"aT/44s\":\"无法复制该 Stripe 连接,请重试。\",\"RRZDED\":\"我们找不到与此邮箱关联的订单。\",\"2RZK9x\":\"我们找不到您要查找的订单。链接可能已过期或订单详情可能已更改。\",\"nefMIK\":\"我们找不到您要查找的门票。链接可能已过期或门票详情可能已更改。\",\"miysJh\":\"我们找不到此订单。它可能已被删除。\",\"ADsQ23\":\"暂时无法连接到 Stripe,请稍后再试。\",\"HJKdzP\":\"加载此页面时遇到问题。请重试。\",\"jegrvW\":\"我们与 Stripe 合作,将款项直接打入您的银行账户。\",\"IfN2Qo\":\"我们建议使用最小尺寸为200x200像素的方形标志\",\"wJzo/w\":\"建议尺寸为 400x400 像素,文件大小不超过 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"我们使用 Cookie 帮助我们了解网站的使用情况并改善您的体验。\",\"x8rEDQ\":\"我们在多次尝试后无法验证您的增值税号。我们将在后台继续尝试。请稍后检查。\",\"iy+M+c\":[\"当 \",[\"productDisplayName\"],\" 有空位时,我们会通过电子邮件通知您。\"],\"McuGND\":\"保存后,我们将打开预填模板的消息撰写器。由您审阅后发送 — 不会自动发送任何内容。\",\"q1BizZ\":\"我们将把您的门票发送到此邮箱\",\"ZOmUYW\":\"我们将在后台验证您的增值税号。如有任何问题,我们会通知您。\",\"LKjHr4\":[\"我们已更改“\",[\"title\"],\"”的日程 — \",[\"description\"],\",影响 \",[\"affectedCount\"],\" 个场次。\"],\"Fq/Nx7\":\"我们已向以下邮箱发送了5位数验证码:\",\"GdWB+V\":\"Webhook 创建成功\",\"2X4ecw\":\"Webhook 删除成功\",\"ndBv0v\":\"Webhook 集成\",\"CThMKa\":\"Webhook 日志\",\"I0adYQ\":\"Webhook 签名密钥\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook 不会发送通知\",\"FSaY52\":\"Webhook 将发送通知\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"网站\",\"0f7U0k\":\"周三\",\"VAcXNz\":\"星期三\",\"64X6l4\":\"周\",\"4XSc4l\":\"每周\",\"IAUiSh\":\"周\",\"vKLEXy\":\"微博\",\"9eF5oV\":\"欢迎回来\",\"QDWsl9\":[\"欢迎来到 \",[\"0\"],\",\",[\"1\"],\" 👋\"],\"LETnBR\":[\"欢迎来到 \",[\"0\"],\",这是您所有活动的列表\"],\"DDbx7K\":\"健康\",\"ywRaYa\":\"什么时间?\",\"FaSXqR\":\"什么类型的活动?\",\"0WyYF4\":\"未认证员工可见的内容\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"当签到被删除时\",\"RPe6bE\":\"当循环活动的某个日期被取消时\",\"Gmd0hv\":\"当新与会者被创建时\",\"zyIyPe\":\"当创建新活动时\",\"Lc18qn\":\"当新订单被创建时\",\"dfkQIO\":\"当新产品被创建时\",\"8OhzyY\":\"当产品被删除时\",\"tRXdQ9\":\"当产品被更新时\",\"9L9/28\":\"当商品售罄时,客户可加入候补名单,待有空位时收到通知。\",\"Q7CWxp\":\"当与会者被取消时\",\"IuUoyV\":\"当与会者签到时\",\"nBVOd7\":\"当与会者被更新时\",\"t7cuMp\":\"当活动被归档时\",\"gtoSzE\":\"当活动被更新时\",\"ny2r8d\":\"当订单被取消时\",\"c9RYbv\":\"当订单被标记为已支付时\",\"ejMDw1\":\"当订单被退款时\",\"fVPt0F\":\"当订单被更新时\",\"bcYlvb\":\"签到何时关闭\",\"XIG669\":\"签到何时开放\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"启用后,新活动将允许参与者通过安全链接管理自己的门票详情。这可以按活动覆盖。\",\"blXLKj\":\"启用后,新活动将在结账时显示营销订阅复选框。此设置可以针对每个活动单独覆盖。\",\"Kj0Txn\":\"启用后,Stripe Connect交易将不收取应用费用。用于不支持应用费用的国家。\",\"tMqezN\":\"退款是否正在处理中\",\"uchB0M\":\"小部件预览\",\"uvIqcj\":\"研讨会\",\"EpknJA\":\"请在此输入您的消息...\",\"nhtR6Y\":\"X(推特)\",\"7qI8sJ\":\"年\",\"zkWmBh\":\"每年\",\"+BGee5\":\"年\",\"X/azM1\":\"是 - 我有有效的欧盟增值税注册号码\",\"Tz5oXG\":\"是,取消我的订单\",\"QlSZU0\":[\"您正在模拟 <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"您正在发出部分退款。客户将获得 \",[\"0\"],\" \",[\"1\"],\" 的退款。\"],\"o7LgX6\":\"您可以在账户设置中配置额外的服务费和税费。\",\"rj3A7+\":\"您稍后可以为单个日期覆盖此设置。\",\"paWwQ0\":\"如有需要,您仍然可以手动提供门票。\",\"jTDzpA\":\"您无法归档账户中最后一个活跃的主办方。\",\"5VGIlq\":\"您已达到消息限制。\",\"casL1O\":\"您已向免费产品添加了税费。您想要删除它们吗?\",\"9jJNZY\":\"保存前您必须确认您的责任\",\"pCLes8\":\"您必须同意接收消息\",\"FVTVBy\":\"您必须先验证电子邮箱地址,才能更新组织者状态。\",\"ze4bi/\":\"您需要至少创建一个场次,才能向此循环活动添加参与者。\",\"w65ZgF\":\"您需要验证账户电子邮件后才能修改电子邮件模板。\",\"FRl8Jv\":\"您需要验证您的帐户电子邮件才能发送消息。\",\"88cUW+\":\"您收到\",\"O6/3cu\":\"您将能够在下一步设置日期、日程和循环规则。\",\"zKAheG\":\"您正在更改场次时间\",\"MNFIxz\":[\"您将参加 \",[\"0\"],\"!\"],\"qGZz0m\":\"您已加入候补名单!\",\"/5HL6k\":\"您已获得一个名额!\",\"gbjFFH\":\"您已更改场次时间\",\"p/Sa0j\":\"您的帐户有消息限制。要提高您的限制,请联系我们\",\"x/xjzn\":\"您的推广员已成功导出。\",\"TF37u6\":\"您的与会者已成功导出。\",\"79lXGw\":\"您的签到列表已成功创建。与您的签到工作人员共享以下链接。\",\"BnlG9U\":\"您当前的订单将丢失。\",\"nBqgQb\":\"您的电子邮件\",\"GG1fRP\":\"您的活动已上线!\",\"ifRqmm\":\"您的消息已成功发送!\",\"0/+Nn9\":\"您的消息将显示在此处\",\"/Rj5P4\":\"您的姓名\",\"PFjJxY\":\"您的新密码长度必须至少为8个字符。\",\"gzrCuN\":\"您的订单详情已更新。确认邮件已发送到新的电子邮件地址。\",\"naQW82\":\"您的订单已被取消。\",\"bhlHm/\":\"您的订单正在等待付款\",\"XeNum6\":\"您的订单已成功导出。\",\"Xd1R1a\":\"您组织者的地址\",\"WWYHKD\":\"您的付款受到银行级加密保护\",\"5b3QLi\":\"您的计划\",\"N4Zkqc\":\"您保存的日期筛选器已不可用 — 正在显示所有日期。\",\"FNO5uZ\":\"您的门票仍然有效 — 除非新时间不适合您,否则无需采取任何操作。如有疑问,请回复此邮件。\",\"CnZ3Ou\":\"您的门票已确认。\",\"EmFsMZ\":\"您的增值税号已排队等待验证\",\"QBlhh4\":\"保存时将验证您的增值税号\",\"fT9VLt\":\"您的候补邀约已过期,我们无法完成您的订单。请重新加入候补名单,待有更多空位时收到通知。\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/zh-cn.po b/frontend/src/locales/zh-cn.po index 9d7c91ff45..c17456b2a3 100644 --- a/frontend/src/locales/zh-cn.po +++ b/frontend/src/locales/zh-cn.po @@ -60,7 +60,7 @@ msgstr "{0} <0>签退成功" msgid "{0} Active Webhooks" msgstr "{0} 个活动的 Webhook" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0}可用" @@ -78,7 +78,7 @@ msgstr "剩余 {0}" msgid "{0} logo" msgstr "{0} 标志" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "已占用 {1} 个座位中的 {0} 个。" @@ -90,7 +90,7 @@ msgstr "{0} 位组织者" msgid "{0} spots left" msgstr "剩余 {0} 个名额" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0}张门票" @@ -114,7 +114,7 @@ msgstr "{appName} 标志" msgid "{attendeeCount} attendees are registered for this session." msgstr "已有 {attendeeCount} 位参与者报名此场次。" -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{availableCount} / {totalCount} 可用" @@ -122,7 +122,7 @@ msgstr "{availableCount} / {totalCount} 可用" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} 已签到" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} 个事件" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} 小时, {minutes} 分钟, 和 {seconds} 秒" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "在受影响的场次中已有 {loadedAffectedAttendees} 位参与者报名。" @@ -163,11 +163,11 @@ msgstr "{分}分钟和{秒}秒钟" msgid "{organizerName}'s first event" msgstr "{组织者名称}的首次活动" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} 个票种" @@ -230,7 +230,7 @@ msgstr "0 分 0 秒" msgid "1 Active Webhook" msgstr "1 个活动的 Webhook" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "受影响的场次中已有 1 位参与者报名。" @@ -238,35 +238,35 @@ msgstr "受影响的场次中已有 1 位参与者报名。" msgid "1 attendee is registered for this session." msgstr "已有 1 位参与者报名此场次。" -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "结束日期后1天" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "开始日期后1天" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "活动前1天" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "活动前1小时" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1张门票" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1个票种" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "活动前1周" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "取消通知已发送至" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "时长变更" @@ -321,7 +321,7 @@ msgstr "下拉式输入法只允许一个选择" msgid "A fee, like a booking fee or a service fee" msgstr "费用,如预订费或服务费" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "无折扣的促销代码可以用来显示隐藏的产品。" msgid "A Radio option has multiple options but only one can be selected." msgstr "单选题有多个选项,但只能选择一个。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "开始/结束时间变更" @@ -465,7 +465,7 @@ msgstr "账户更新成功" msgid "Accounts" msgstr "账户" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "需要操作:需要提供增值税信息" @@ -493,10 +493,10 @@ msgstr "激活日期" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "已启用的支付方式" msgid "Activity" msgstr "活动记录" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "添加日期" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "添加关于订单的备注..." msgid "Add at least one time" msgstr "至少添加一个时间" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "为在线活动添加连接信息。" @@ -572,15 +576,19 @@ msgstr "添加日期" msgid "Add Dates" msgstr "添加日期" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "添加描述" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "添加问题" msgid "Add Tax or Fee" msgstr "加税或费用" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "仍要添加此参与者(覆盖容量限制)" @@ -634,8 +642,8 @@ msgstr "仍要添加此参与者(覆盖容量限制)" msgid "Add this event to your calendar" msgstr "将此活动添加到您的日历" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "添加机票" @@ -649,7 +657,7 @@ msgstr "增加层级" msgid "Add to Calendar" msgstr "添加到日历" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "在您的公开活动页面和主办方主页添加跟踪像素。跟踪启用时,将向访客显示 Cookie 同意横幅。" @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "地址第 1 行" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "地址 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "地址第 2 行" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "地址第 2 行" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "管理员" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "需要管理员访问权限" @@ -725,7 +733,7 @@ msgstr "需要管理员访问权限" msgid "Admin Dashboard" msgstr "管理仪表板" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "管理员用户可以完全访问事件和账户设置。" @@ -776,7 +784,7 @@ msgstr "推广员已导出" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "推广员帮助您跟踪合作伙伴和网红产生的销售。创建推广码并分享以监控绩效。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "全部" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "所有已归档活动" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "所有参与者" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "所选场次的所有参与者" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "本次活动的所有与会者" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "此场次的所有参与者" @@ -838,12 +846,12 @@ msgstr "所有失败任务已删除" msgid "All jobs queued for retry" msgstr "所有任务已排队等待重试" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "所有匹配的日期" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "所有场次" @@ -897,7 +905,7 @@ msgstr "已有账户?<0>{0}" msgid "Already in" msgstr "已入场" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "已退款" @@ -905,11 +913,11 @@ msgstr "已退款" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "已在其他组织者上使用 Stripe?重复使用该连接。" -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "同时取消此订单" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "同时退款此订单" @@ -932,7 +940,7 @@ msgstr "金额" msgid "Amount Paid" msgstr "支付金额" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "支付金额 ({0})" @@ -952,7 +960,7 @@ msgstr "加载页面时出现错误" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "在突出显示的产品上显示的可选消息,例如\"热卖中🔥\"或\"超值优惠\"" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "出现意外错误。" @@ -988,7 +996,7 @@ msgstr "产品持有者的任何查询都将发送到此电子邮件地址。此 msgid "Appearance" msgstr "外观" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "应用" @@ -996,7 +1004,7 @@ msgstr "应用" msgid "Applies to {0} products" msgstr "适用于{0}个产品" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "适用于当前页面已加载的 {0} 个未取消的日期。" @@ -1008,7 +1016,7 @@ msgstr "适用于1个产品" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "适用于未登录打开签到链接的人。已登录的团队成员始终可以看到全部内容。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "适用于本活动中每一个未取消的 {0} 日期 — 包括当前未加载的日期。" @@ -1016,11 +1024,11 @@ msgstr "适用于本活动中每一个未取消的 {0} 日期 — 包括当前 msgid "Apply" msgstr "应用" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "应用更改" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "应用促销代码" @@ -1028,7 +1036,7 @@ msgstr "应用促销代码" msgid "Apply this {type} to all new products" msgstr "将此{type}应用于所有新产品" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "应用于" @@ -1044,36 +1052,35 @@ msgstr "批准消息" msgid "April" msgstr "四月" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "归档" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "归档活动" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "归档活动" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "归档主办方" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "归档此活动以向公众隐藏。您可以稍后恢复它。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "归档此主办方。这也将归档属于此主办方的所有活动。" -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "已归档" @@ -1085,15 +1092,15 @@ msgstr "已归档的主办方" msgid "Are you sure you want to activate this attendee?" msgstr "您确定要激活该与会者吗?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "您确定要归档此活动吗?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "您确定要归档此活动吗?它将不再对公众可见。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "您确定要归档此主办方吗?这也将归档属于此主办方的所有活动。" @@ -1123,7 +1130,7 @@ msgstr "您确定要删除所有失败的任务吗?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "您确定要删除此推广员吗?此操作无法撤销。" -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "确定要删除此配置吗?这可能会影响使用它的账户。" @@ -1137,11 +1144,11 @@ msgstr "确定要删除此日期吗?此操作无法撤销。" msgid "Are you sure you want to delete this promo code?" msgstr "您确定要删除此促销代码吗?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "确定要删除此模板吗?此操作无法撤消,邮件将回退到默认模板。" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "确定要删除此模板吗?此操作无法撤消,邮件将回退到组织者或默认模板。" @@ -1150,17 +1157,17 @@ msgstr "确定要删除此模板吗?此操作无法撤消,邮件将回退到 msgid "Are you sure you want to delete this webhook?" msgstr "您确定要删除此 Webhook 吗?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "您确定要离开吗?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "您确定要将此活动设为草稿吗?这将使公众无法看到该活动" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "您确定要将此事件公开吗?这将使事件对公众可见" @@ -1200,15 +1207,15 @@ msgstr "您确定要将订单确认重新发送到 {0} 吗?" msgid "Are you sure you want to resend the ticket to {0}?" msgstr "您确定要将门票重新发送到 {0} 吗?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "您确定要恢复此活动吗?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "您确定要恢复此活动吗?它将作为草稿恢复。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "您确定要恢复此主办方吗?" @@ -1229,7 +1236,7 @@ msgstr "您确定要删除此容量分配吗?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "您确定要删除此签到列表吗?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "您在欧盟注册了增值税吗?" @@ -1237,7 +1244,7 @@ msgstr "您在欧盟注册了增值税吗?" msgid "Art" msgstr "艺术" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "由于您的企业位于爱尔兰,所有平台费用将自动适用23%的爱尔兰增值税。" @@ -1270,7 +1277,7 @@ msgstr "分配的级别" msgid "At least one event type must be selected" msgstr "必须选择至少一种事件类型" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "尝试次数" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "所有活动的出席率和签到率" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "参与者" @@ -1287,7 +1293,7 @@ msgstr "参与者" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "参与者" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "参与者状态" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "参会者票" @@ -1364,13 +1370,13 @@ msgstr "参与者的票不包含在此列表中" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "参与者" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "参与者" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "参与者" @@ -1393,16 +1399,16 @@ msgstr "位参与者已签到" msgid "Attendees Exported" msgstr "与会者已导出" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "已注册参会者" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "注册的参会者" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "持有特定门票的与会者" @@ -1454,7 +1460,7 @@ msgstr "根据内容自动调整小部件高度。禁用时,小部件将填充 msgid "Available" msgstr "可用" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "可退款" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "待处理" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "等待线下付款" @@ -1482,7 +1488,7 @@ msgstr "待付款" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "等待付款" @@ -1513,14 +1519,14 @@ msgstr "返回账户" msgid "Back to calendar" msgstr "返回日历" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "返回活动" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "返回活动页面" @@ -1548,7 +1554,7 @@ msgstr "背景颜色" msgid "Background Type" msgstr "背景类型" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "基于上方的全局销售期,而非按单个日期" msgid "Basic Information" msgstr "基本信息" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "账单地址" @@ -1599,11 +1605,11 @@ msgstr "内置欺诈防护" msgid "Bulk Edit" msgstr "批量编辑" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "批量编辑日期" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "批量更新失败。" @@ -1635,11 +1641,11 @@ msgstr "买家支付" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "买家看到的是净价。平台费用将从您的付款中扣除。" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "添加跟踪像素即表示您确认您与本平台为所收集数据的共同控制方。您有责任确保在适用的隐私法律(如 GDPR、CCPA 等)下,您对此处理具有合法依据。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "继续操作即表示您同意<0>{0}服务条款" @@ -1660,7 +1666,7 @@ msgstr "注册即表示您同意我们的<0>服务条款和<1>隐私政策terms and conditions" msgstr "我同意<0>条款和条件。" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "我确认这是与此活动相关的交易消息" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "如果没有自动打开新标签页,请点击下方按钮继续结账。" @@ -5325,7 +5369,7 @@ msgstr "如果启用,登记工作人员可以将与会者标记为已登记或 msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "如果启用,当有新订单时,组织者将收到电子邮件通知" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "如果您没有要求更改密码,请立即更改密码。" @@ -5370,11 +5414,11 @@ msgstr "模拟已开始" msgid "Impersonation stopped" msgstr "模拟已停止" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "重要通知" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "重要提示:更改您的电子邮件地址将更新访问此订单的链接。保存后,您将被重定向到新的订单链接。" @@ -5390,7 +5434,7 @@ msgstr "{diffMinutes}分钟后" msgid "in last {0} min" msgstr "最近 {0} 分钟" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "线下 — 设置场馆" @@ -5401,15 +5445,15 @@ msgstr "in_person、online、unset 或 mixed" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "不活动" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "非活动用户无法登录。" @@ -5483,12 +5527,12 @@ msgstr "邮箱格式无效" msgid "Invalid file type. Please upload an image." msgstr "无效的文件类型。请上传图片。" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "无效的Liquid语法。请更正后再试。" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "无效的增值税号格式" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "发票" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "发票下载成功" @@ -5545,7 +5589,7 @@ msgstr "发票设置" msgid "Italian" msgstr "意大利语" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "项目" @@ -5628,7 +5672,7 @@ msgstr "刚刚" msgid "Just wrapped" msgstr "刚刚结束" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "及时向我更新来自{0}的新闻和活动" @@ -5647,13 +5691,13 @@ msgstr "标签" msgid "Label for the occurrence" msgstr "场次的标签" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "标签更新" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "语言" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "过去 24 小时" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "过去 30 天" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "过去 6 个月" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "过去 7 天" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "过去 90 天" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "姓氏" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "姓氏" @@ -5753,7 +5797,7 @@ msgstr "最近触发" msgid "Last Used" msgstr "最近一次使用" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "延后" @@ -5786,7 +5830,7 @@ msgstr "保持开启以覆盖活动中的所有门票。关闭则可挑选特定 msgid "Let them know about the change" msgstr "通知他们这一变更" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "通知他们这些变更" @@ -5830,12 +5874,11 @@ msgstr "列表" msgid "List view" msgstr "列表视图" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "上线" @@ -5848,7 +5891,7 @@ msgstr "直播" msgid "Live Events" msgstr "直播活动" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "已加载的日期" @@ -5872,8 +5915,8 @@ msgstr "正在加载 Webhook" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "加载中..." @@ -5926,7 +5969,7 @@ msgstr "地点已保存" msgid "Location updated" msgstr "地点已更新" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "地点更新" @@ -5990,7 +6033,7 @@ msgstr "总部" msgid "Make billing address mandatory during checkout" msgstr "在结账时强制要求填写账单地址" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "管理与会者" msgid "Manage dates and times for your recurring event" msgstr "管理您循环活动的日期和时间" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "管理活动" @@ -6039,10 +6082,14 @@ msgstr "管理订单" msgid "Manage payment and invoicing settings for this event." msgstr "管理此活动的支付和发票设置。" -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "管理简介" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "管理日程" @@ -6124,7 +6171,7 @@ msgstr "媒介" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "消息" @@ -6141,7 +6188,7 @@ msgstr "与会者留言" msgid "Message Attendees" msgstr "留言参与者" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "向与会者发送特定门票的信息" @@ -6165,7 +6212,7 @@ msgstr "消息内容" msgid "Message Details" msgstr "消息详情" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "给个别与会者留言" @@ -6173,15 +6220,15 @@ msgstr "给个别与会者留言" msgid "Message is required" msgstr "消息为必填项" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "向具有特定产品的订单所有者发送消息" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "消息已定时" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "发送的信息" @@ -6212,8 +6259,8 @@ msgstr "最低价格" msgid "minutes" msgstr "分钟" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "分钟" @@ -6229,7 +6276,7 @@ msgstr "杂项设置" msgid "Mo" msgstr "一" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "模式" @@ -6282,7 +6329,7 @@ msgstr "更多操作" msgid "Most Viewed Events (Last 14 Days)" msgstr "最多浏览活动(过去14天)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "将所有日期前移或后移" @@ -6290,7 +6337,7 @@ msgstr "将所有日期前移或后移" msgid "Multi line text box" msgstr "多行文本框" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "名称" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "姓名为必填项" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "名称长度必须少于255个字符" @@ -6384,21 +6431,21 @@ msgstr "净收入" msgid "Never" msgstr "从不" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "新容量" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "新标签" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "新地点" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "新密码" @@ -6426,7 +6473,7 @@ msgstr "夜生活" msgid "No" msgstr "否" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "否 - 我是个人或未注册增值税的企业" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "没有容量分配" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "此活动没有可用的签到列表。" msgid "No check-ins yet" msgstr "暂无签到" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "未找到配置" @@ -6537,7 +6584,7 @@ msgstr "无针对此日期的专属签到列表" msgid "No dates available this month. Try navigating to another month." msgstr "本月无可用日期。请尝试切换到其他月份。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "没有日期符合当前的筛选条件。" @@ -6582,8 +6629,8 @@ msgstr "未来24小时内没有开始的活动" msgid "No events to show" msgstr "无事件显示" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "未找到订单" msgid "No orders to show" msgstr "无订单显示" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "此日期暂无订单。" msgid "No organizer activity in the last 14 days" msgstr "过去14天没有组织者活动" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "无可用的主办方上下文。" @@ -6733,7 +6780,7 @@ msgstr "尚无响应" msgid "No results" msgstr "无结果" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "尚无已保存的地点" @@ -6793,16 +6840,16 @@ msgstr "此端点尚未记录任何 Webhook 事件。事件触发后将显示在 msgid "No Webhooks" msgstr "没有 Webhooks" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "否,保留在此" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "未编辑" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "无" @@ -6870,7 +6917,7 @@ msgstr "号码前缀" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "场次" @@ -7005,7 +7052,7 @@ msgstr "线下支付信息" msgid "Offline Payments Settings" msgstr "线下支付设置" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "一旦开始收集数据,您将在这里看到。" msgid "Ongoing" msgstr "持续进行" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "持续进行" msgid "Online" msgstr "在线" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "在线 — 提供连接信息" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "线上与线下" @@ -7070,15 +7117,15 @@ msgstr "线上活动连接信息" msgid "Online Event Details" msgstr "在线活动详情" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "只有账户管理员可以删除或归档活动。请联系您的账户管理员寻求帮助。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "只有账户管理员可以删除或归档主办方。请联系您的账户管理员寻求帮助。" -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "仅发送给具有这些状态的订单" @@ -7173,7 +7220,7 @@ msgstr "订单和门票" msgid "Order #" msgstr "订单 #" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "订单已取消" @@ -7182,13 +7229,13 @@ msgstr "订单已取消" msgid "Order Cancelled" msgstr "取消订单" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "订单完成" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "订单确认" @@ -7273,7 +7320,7 @@ msgstr "订单已标记为已支付" msgid "Order Marked as Paid" msgstr "订单标记为已支付" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "未找到订单" @@ -7297,7 +7344,7 @@ msgstr "订单号、购买日期、购买者邮箱" msgid "Order owner" msgstr "订单所有者" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "具有特定产品的订单所有者" @@ -7327,7 +7374,7 @@ msgstr "订单已退款" msgid "Order Status" msgstr "订单状态" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "订单状态" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "订单超时" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "订单总额" @@ -7357,7 +7404,7 @@ msgstr "订单更新成功" msgid "Order URL" msgstr "订单链接" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "订单已被取消" @@ -7374,8 +7421,8 @@ msgstr "订单" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "组织名称" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "组织名称" msgid "Organizer" msgstr "主办方" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "主办方已成功归档" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "组织者仪表板" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "主办方已成功删除" @@ -7486,7 +7533,7 @@ msgstr "组织者姓名" msgid "Organizer Not Found" msgstr "未找到组织者" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "主办方已成功恢复" @@ -7504,7 +7551,7 @@ msgstr "组织者状态更新失败。请稍后再试" msgid "Organizer status updated" msgstr "组织者状态已更新" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "将使用组织者/默认模板" @@ -7512,7 +7559,7 @@ msgstr "将使用组织者/默认模板" msgid "Organizers" msgstr "主办方" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "组织者只能管理活动和产品。他们无法管理用户、账户设置或账单信息。" @@ -7563,7 +7610,7 @@ msgstr "内边距" msgid "Page" msgstr "页面" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "页面不再可用" @@ -7575,7 +7622,7 @@ msgstr "页面未找到" msgid "Page URL" msgstr "页面链接" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "页面浏览量" @@ -7583,11 +7630,11 @@ msgstr "页面浏览量" msgid "Page Views" msgstr "页面浏览量" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "付讫" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "付费账户" msgid "Paid Product" msgstr "付费产品" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "部分退款" @@ -7623,7 +7670,7 @@ msgstr "转嫁给买家" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "密码" @@ -7694,7 +7741,7 @@ msgstr "负载数据" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "付款方式" @@ -7735,7 +7782,7 @@ msgstr "支付方式" msgid "Payment provider" msgstr "支付提供商" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "已收到付款" @@ -7747,7 +7794,7 @@ msgstr "已收到付款" msgid "Payment Status" msgstr "支付状态" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "付款成功!" @@ -7761,11 +7808,11 @@ msgstr "付款不可用" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "提现" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "待处理" @@ -7801,8 +7848,8 @@ msgstr "百分比" msgid "Percentage Amount" msgstr "百分比 金额" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "百分比费用" @@ -7810,11 +7857,11 @@ msgstr "百分比费用" msgid "Percentage fee (%)" msgstr "百分比费用 (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "百分比必须在0到100之间" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "交易金额的百分比" @@ -7822,11 +7869,11 @@ msgstr "交易金额的百分比" msgid "Performance" msgstr "绩效" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "永久删除此活动及其所有相关数据。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "永久删除此主办方及其所有活动。" @@ -7834,7 +7881,7 @@ msgstr "永久删除此主办方及其所有活动。" msgid "Permanently remove this date" msgstr "永久移除此日期" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "个人信息" @@ -7842,7 +7889,7 @@ msgstr "个人信息" msgid "Phone" msgstr "电话" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "选择地点" @@ -7892,7 +7939,7 @@ msgstr "从您的付款中扣除 {0} 的平台费用" msgid "Platform Fees" msgstr "平台费用" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "平台费用报告" @@ -7918,7 +7965,7 @@ msgstr "请检查您的电子邮件和密码并重试" msgid "Please check your email is valid" msgstr "请检查您的电子邮件是否有效" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "请检查您的电子邮件以确认您的电子邮件地址" @@ -7926,7 +7973,7 @@ msgstr "请检查您的电子邮件以确认您的电子邮件地址" msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "请查看您的门票以了解更新后的时间。您的门票仍然有效 — 除非新时间不适合您,否则无需采取任何操作。如有疑问,请回复此邮件。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "请在新标签页中继续" @@ -7955,7 +8002,7 @@ msgstr "请输入有效的 URL" msgid "Please enter the 5-digit code" msgstr "请输入5位数验证码" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "请输入您的增值税号码" @@ -7971,11 +8018,11 @@ msgstr "请提供一张图片。" msgid "Please restart the checkout process." msgstr "请重新开始结账流程。" -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "请返回活动页面重新开始。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "请选择日期和时间" @@ -7987,7 +8034,7 @@ msgstr "请选择日期范围" msgid "Please select an image." msgstr "请选择一张图片。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "请选择至少一个产品" @@ -7998,7 +8045,7 @@ msgstr "请选择至少一个产品" msgid "Please try again." msgstr "请再试一次。" -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "请验证您的电子邮件地址,以访问所有功能" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "请稍候,我们正在准备导出您的与会者..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "请稍候,我们正在准备您的发票..." @@ -8124,7 +8171,7 @@ msgstr "打印预览" msgid "Print Ticket" msgstr "打印门票" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "打印票" @@ -8139,7 +8186,7 @@ msgstr "打印为PDF" msgid "Privacy Policy" msgstr "隐私政策" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "处理退款" @@ -8180,7 +8227,7 @@ msgstr "产品删除成功" msgid "Product Price Type" msgstr "产品价格类型" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "产品" msgid "Products" msgstr "产品" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "已售产品" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "已售产品" msgid "Products sorted successfully" msgstr "产品排序成功" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "简介" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "成功更新个人资料" @@ -8251,7 +8298,7 @@ msgstr "成功更新个人资料" msgid "Progress" msgstr "进度" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "已使用促销 {promo_code} 代码" @@ -8298,7 +8345,7 @@ msgstr "促销代码报告" msgid "Promo Only" msgstr "仅促销" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "促销电子邮件可能导致账户暂停" @@ -8310,11 +8357,11 @@ msgstr "" "为此问题提供额外的背景或说明。可在此字段添加条款、\n" "条件、指引或参与者回答前需要了解的任何重要信息。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "请为新地点提供至少一个地址字段。" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "在 Stripe 下次审核前提供以下信息,以保持提现顺畅。" @@ -8323,11 +8370,11 @@ msgid "Provider" msgstr "提供商" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "发布" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8431,7 +8478,7 @@ msgstr "实时分析" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "接收 {0} 的产品更新。" @@ -8439,6 +8486,10 @@ msgstr "接收 {0} 的产品更新。" msgid "Recent Account Signups" msgstr "最近账户注册" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "最近参与者" @@ -8447,7 +8498,7 @@ msgstr "最近参与者" msgid "Recent check-ins" msgstr "最近签到" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8459,7 +8510,7 @@ msgstr "最近订单" msgid "recipient" msgstr "位收件人" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "受援国" @@ -8468,7 +8519,7 @@ msgid "recipients" msgstr "位收件人" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8478,7 +8529,8 @@ msgstr "收件人" msgid "Recipients are available after the message is sent" msgstr "收件人在消息发送后可用" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "循环" @@ -8517,7 +8569,7 @@ msgstr "退款这些日期的所有订单" msgid "Refund all orders for this date" msgstr "退款此日期的所有订单" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "退款金额" @@ -8537,7 +8589,7 @@ msgstr "已发起退款" msgid "Refund order" msgstr "退款订单" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "退款订单 {0}" @@ -8555,9 +8607,9 @@ msgid "Refund Status" msgstr "退款状态" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "退款" @@ -8571,7 +8623,7 @@ msgstr "已退款:{0}" msgid "Refunds" msgstr "退款" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "区域设置" @@ -8598,18 +8650,18 @@ msgstr "剩余使用次数" msgid "Reminder scheduled" msgstr "已安排提醒" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "去除" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "移除" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "从所有日期移除标签" @@ -8661,10 +8713,11 @@ msgid "Resend Confirmation Email" msgstr "重新发送确认邮件" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "重新发送邮件" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "重新发送电子邮件确认" @@ -8688,7 +8741,7 @@ msgstr "重新发送门票" msgid "Resend ticket email" msgstr "重新发送门票邮件" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "重新发送..." @@ -8729,30 +8782,30 @@ msgstr "响应" msgid "Response Details" msgstr "响应详情" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "恢复" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "恢复活动" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "恢复活动" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "恢复主办方" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "恢复此活动以使其重新可见。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "恢复此主办方并使其重新活跃。" @@ -8777,7 +8830,7 @@ msgstr "重试任务" msgid "Return to Event" msgstr "返回活动" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "返回活动页面" @@ -8794,9 +8847,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "重复使用此账户下其他组织者的 Stripe 连接。" #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "收入" @@ -8818,7 +8872,7 @@ msgstr "撤销邀请" msgid "Revoke Offer" msgstr "撤销邀约" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8872,7 +8926,7 @@ msgid "Sale starts {0}" msgstr "销售于{0}开始" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "销售" @@ -8930,7 +8984,7 @@ msgstr "星期六" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8944,16 +8998,16 @@ msgstr "星期六" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "节省" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8993,16 +9047,16 @@ msgstr "保存票券设计" msgid "Save VAT settings" msgstr "保存增值税设置" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "保存增值税设置" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "已保存的地点" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "已保存的地点" @@ -9015,7 +9069,7 @@ msgstr "已保存的地点" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "如该主办方当前使用系统默认设置,保存覆盖将为其创建专属配置。" -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "扫描" @@ -9035,6 +9089,10 @@ msgstr "扫描模式" msgid "Schedule" msgstr "日程" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "日程创建成功" @@ -9043,11 +9101,11 @@ msgstr "日程创建成功" msgid "Schedule ends on" msgstr "日程结束于" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "稍后发送" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "定时发送消息" @@ -9061,11 +9119,11 @@ msgstr "排程开始日期" msgid "Scheduled" msgstr "已安排" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "定时时间" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "搜索" @@ -9228,11 +9286,11 @@ msgstr "全选" msgid "Select all on {0}" msgstr "全选 {0}" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "选择活动" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "选择参会者组" @@ -9286,7 +9344,7 @@ msgid "Select Product Tier" msgstr "选择产品等级" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "选择产品" @@ -9298,7 +9356,7 @@ msgstr "选择开始日期和时间" msgid "Select start time" msgstr "选择开始时间" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "选择状态" @@ -9311,7 +9369,7 @@ msgid "Select Ticket" msgstr "选择机票" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "选择票" @@ -9325,7 +9383,7 @@ msgstr "选择时间段" msgid "Select timezone" msgstr "选择时区" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "选择应该收到此消息的参会者" @@ -9359,11 +9417,11 @@ msgstr "热卖中 🔥" msgid "Send" msgstr "发送" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "发送信息" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "作为测试发送" @@ -9371,20 +9429,20 @@ msgstr "作为测试发送" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "向参与者、持票人或订单所有者发送电子邮件。消息可以立即发送或安排稍后发送。" -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "给我发送副本" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "发送消息" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "立即发送" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "发送订单确认和票务电子邮件" @@ -9392,7 +9450,7 @@ msgstr "发送订单确认和票务电子邮件" msgid "Send real-time order and attendee data to your external systems." msgstr "将实时订单和参与者数据发送到您的外部系统。" -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "发送退款通知邮件" @@ -9400,11 +9458,11 @@ msgstr "发送退款通知邮件" msgid "Send reset link" msgstr "发送重置链接" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "发送测试" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "发送到所有场次,或选择特定场次" @@ -9429,15 +9487,15 @@ msgstr "已发送" msgid "Sent By" msgstr "发送者" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "在已安排的日期被取消时发送给参与者" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "客户下单时发送" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "发送给每位参会者及其门票详情" @@ -9490,7 +9548,7 @@ msgstr "为此组织者创建的新活动设置默认平台费用设置。" msgid "Set default settings for new events created under this organizer." msgstr "为此组织者创建的新活动设置默认设置。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "设置每个日期的持续时间" @@ -9498,11 +9556,11 @@ msgstr "设置每个日期的持续时间" msgid "Set number of dates" msgstr "设置日期数量" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "设置或清除日期标签" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "将每个日期的结束时间设为开始时间之后该时长。" @@ -9510,7 +9568,7 @@ msgstr "将每个日期的结束时间设为开始时间之后该时长。" msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "设置发票编号的起始编号。一旦发票生成,就无法更改。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "设为无限制(移除上限)" @@ -9523,10 +9581,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "为不同的入口、场次或日期设置签到列表。" #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "设置付款" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9536,11 +9598,15 @@ msgstr "设置日程" msgid "Set up your organization" msgstr "设置您的组织" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "设置您的日程" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "设置、更改或移除该场次的地点或在线信息" @@ -9599,11 +9665,11 @@ msgstr "分享组织者页面" msgid "Shared Capacity Management" msgstr "共享容量管理" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "平移时间" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "已为 {count} 个日期平移时间" @@ -9635,8 +9701,8 @@ msgstr "显示营销订阅复选框" msgid "Show marketing opt-in checkbox by default" msgstr "默认显示营销订阅复选框" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "显示更多" @@ -9673,7 +9739,7 @@ msgstr "显示 {0}–{1} 项,共 {2} 项" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "显示 {totalAvailable} 个日期中的 {MAX_VISIBLE} 个。输入以搜索。" -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "显示前 {0} 个 — 发送消息时,剩余的 {1} 个场次仍会被包括在内。" @@ -9710,7 +9776,7 @@ msgstr "单次活动" msgid "Single line text box" msgstr "单行文本框" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "跳过已手动编辑的日期" @@ -9745,7 +9811,7 @@ msgstr "社交链接与网站" msgid "Sold" msgstr "已售出" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9766,7 +9832,7 @@ msgstr "部分详情对公共访问者隐藏。登录可查看全部内容。" #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "出了点问题" @@ -9784,7 +9850,7 @@ msgstr "出现问题,请重试,或在问题持续时联系客服" msgid "Something went wrong! Please try again" msgstr "出错了!请重试" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "出问题了" @@ -9796,12 +9862,12 @@ msgstr "出了点问题。请稍后再试。" #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "出错了。请重试。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "对不起,此优惠代码不可用" @@ -9897,12 +9963,12 @@ msgstr "明天开始" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "州或地区" @@ -9914,7 +9980,7 @@ msgstr "统计数据" msgid "Statistics are based on account creation date" msgstr "统计数据基于账户创建日期" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "统计" @@ -9931,7 +9997,7 @@ msgstr "统计" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9986,7 +10052,7 @@ msgstr "Stripe 支付 ID" msgid "Stripe payments are not enabled for this event." msgstr "此活动未启用 Stripe 支付。" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Stripe 很快需要一些额外信息" @@ -9999,7 +10065,7 @@ msgid "Su" msgstr "日" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10013,7 +10079,7 @@ msgstr "主题是必需的" msgid "Subject will appear here" msgstr "主题将显示在这里" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "主题:" @@ -10024,11 +10090,11 @@ msgstr "小计" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "成功" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "成功!{0} 将很快收到一封电子邮件。" @@ -10173,7 +10239,7 @@ msgstr "设置更新成功" msgid "Successfully Updated Social Links" msgstr "社交链接更新成功" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "跟踪设置更新成功" @@ -10226,7 +10292,7 @@ msgstr "瑞典语" msgid "Switch Organizer" msgstr "切换组织者" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "系统默认" @@ -10238,7 +10304,7 @@ msgstr "T恤衫" msgid "Tap this screen to resume scanning" msgstr "点击屏幕以继续扫描" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "面向 {0} 个所选场次的参与者。" @@ -10336,7 +10402,7 @@ msgstr "请告诉我们您的组织信息。这些信息将显示在您的活动 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "告诉我们您的活动多久重复一次,我们会为您创建所有日期。" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "请告诉我们您的增值税注册状态,以便我们对平台费用应用正确的增值税处理。" @@ -10344,15 +10410,15 @@ msgstr "请告诉我们您的增值税注册状态,以便我们对平台费用 msgid "Template Active" msgstr "模板已激活" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "模板创建成功" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "模板删除成功" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "模板保存成功" @@ -10378,8 +10444,8 @@ msgstr "感谢您的参与!" msgid "Thanks," msgstr "谢谢," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "促销代码无效" @@ -10399,7 +10465,7 @@ msgstr "您查找的签到列表不存在。" msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "验证码将在10分钟后过期。如果您没有收到邮件,请检查垃圾邮件文件夹。" -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "定义固定费用的货币。结账时将转换为订单货币。" @@ -10417,7 +10483,7 @@ msgstr "事件的默认货币。" msgid "The default timezone for your events." msgstr "事件的默认时区。" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "电子邮件地址已更改。参与者将在更新后的电子邮件地址收到新门票。" @@ -10442,7 +10508,7 @@ msgstr "此排程将从此日期开始生成。" msgid "The full event address" msgstr "活动的完整地址" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "订单全额将退款至客户的原始付款方式。" @@ -10466,7 +10532,7 @@ msgstr "客户的语言" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "最多 {MAX_PREVIEW} 个场次。请减少日期范围、频率或每天的场次数量。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "{0}的最大产品数量是{1}" @@ -10475,7 +10541,7 @@ msgstr "{0}的最大产品数量是{1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "未找到您要查找的组织者。页面可能已被移动、删除或链接有误。" -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "该覆盖已记录在订单审计日志中。" @@ -10499,11 +10565,11 @@ msgstr "显示给客户的价格不包括税费。税费将单独显示" msgid "The primary brand color used for buttons and highlights" msgstr "用于按钮和突出显示的主要品牌颜色" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "定时时间为必填项" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "定时时间必须是将来的时间" @@ -10511,8 +10577,8 @@ msgstr "定时时间必须是将来的时间" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "原定于 {0} 的“{title}”场次已重新安排。" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "模板正文包含无效的Liquid语法。请更正后再试。" @@ -10521,7 +10587,7 @@ msgstr "模板正文包含无效的Liquid语法。请更正后再试。" msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "活动标题,将显示在搜索引擎结果中,并在社交媒体上分享时显示。默认情况下,将使用事件标题" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "增值税号无法验证。请检查号码并重试。" @@ -10534,19 +10600,19 @@ msgstr "戏剧" msgid "Theme & Colors" msgstr "主题与颜色" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "此活动没有可用产品" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "此类别中没有可用产品" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "此活动没有即将到来的日期" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "退款正在处理中。请等待退款完成后再申请退款。" @@ -10578,7 +10644,7 @@ msgstr "这些详情仅在此日期的参与者门票和订单摘要中显示。 msgid "These details will only be shown if the order is completed successfully." msgstr "这些详情仅在订单成功完成后显示。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "这些信息将替换受影响场次上现有的地点,并显示在参会者门票上。" @@ -10586,11 +10652,11 @@ msgstr "这些信息将替换受影响场次上现有的地点,并显示在参 msgid "These settings apply only to copied embed code and won't be stored." msgstr "这些设置仅适用于复制的嵌入代码,不会被保存。" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "这些模板将用作您组织中所有活动的默认模板。单个活动可以用自己的自定义版本覆盖这些模板。" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "这些模板将仅覆盖此活动的组织者默认设置。如果这里没有设置自定义模板,将使用组织者模板。" @@ -10598,11 +10664,11 @@ msgstr "这些模板将仅覆盖此活动的组织者默认设置。如果这里 msgid "Third" msgstr "第三" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "这适用于活动中每一个匹配的日期,包括当前不可见的日期。在任何这些日期上报名的参与者,更新完成后均可通过消息撰写器联系。" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "此参与者有未付款的订单。" @@ -10660,11 +10726,11 @@ msgstr "此日期已被取消。您仍可删除它以永久移除。" msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "此日期已过去。将会创建,但不会出现在参与者的即将到来日期中。" -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "此日期已标记为售罄。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "此日期已不再可用。请选择其他日期。" @@ -10713,19 +10779,19 @@ msgstr "此信息将包含在本次活动发送的所有电子邮件的页脚中 msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "此消息仅在订单成功完成后显示。等待付款的订单不会显示此消息。" -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "此名称对最终用户可见" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "此场次已满员" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "此订单已付款。" -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "此订单已退款。" @@ -10733,7 +10799,7 @@ msgstr "此订单已退款。" msgid "This order has been cancelled." msgstr "此订单已取消。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "此订单已过期。请重新开始。" @@ -10745,15 +10811,15 @@ msgstr "此订单正在处理中。" msgid "This order is complete." msgstr "此订单已完成。" -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "此订购页面已不可用。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "此订单已被放弃。您可以随时开始新订单。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "此订单已被取消。您可以随时开始新订单。" @@ -10785,7 +10851,7 @@ msgstr "此产品在活动页面上已突出显示" msgid "This product is sold out" msgstr "此产品已售罄" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "此报告仅供参考。在将此数据用于会计或税务目的之前,请务必咨询税务专业人士。请与您的Stripe仪表板进行交叉验证,因为Hi.Events可能缺少历史数据。" @@ -10797,11 +10863,11 @@ msgstr "此重置密码链接无效或已过期。" msgid "This ticket was just scanned. Please wait before scanning again." msgstr "此门票刚刚被扫描。请等待后再次扫描。" -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "该用户未激活,因为他们没有接受邀请。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "这将影响 {loadedAffectedCount} 个日期。" @@ -10913,6 +10979,10 @@ msgstr "门票价格" msgid "Ticket resent successfully" msgstr "门票重新发送成功" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "本活动的门票销售已结束" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10975,7 +11045,7 @@ msgstr "TikTok" msgid "Time" msgstr "时间" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "剩余时间:" @@ -10994,7 +11064,7 @@ msgstr "使用次数" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "时区" @@ -11011,7 +11081,7 @@ msgid "To increase your limits, contact us at" msgstr "要提高您的限制,请联系我们" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11040,6 +11110,7 @@ msgstr "顶级组织者(过去14天)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "总计" @@ -11075,11 +11146,11 @@ msgstr "总条目" msgid "Total Fee" msgstr "总费用" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11093,7 +11164,7 @@ msgstr "总销售额" msgid "Total order amount" msgstr "订单总额" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11101,16 +11172,16 @@ msgstr "" msgid "Total refunded" msgstr "退款总额" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "退款总额" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11133,7 +11204,7 @@ msgid "Track account growth and performance by attribution source" msgstr "按归因来源跟踪账户增长和表现" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "" @@ -11200,8 +11271,8 @@ msgstr "Twitch" msgid "Type" msgstr "类型" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "输入\"删除\"以确认" @@ -11222,7 +11293,7 @@ msgstr "无法签退参与者" msgid "Unable to create product. Please check the your details" msgstr "无法创建产品。请检查您的详细信息" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "无法创建产品。请检查您的详细信息" @@ -11246,7 +11317,7 @@ msgstr "无法加入候补名单" msgid "Unable to load attendee details." msgstr "无法加载参与者详情。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "无法加载此日期的商品。请重试。" @@ -11284,7 +11355,7 @@ msgstr "美国" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "未知" @@ -11304,7 +11375,7 @@ msgstr "未知参会者" msgid "Unlimited" msgstr "无限制" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "无限供应" @@ -11316,12 +11387,12 @@ msgstr "允许无限次使用" msgid "Unnamed" msgstr "未命名" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "未命名地点" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "未付款订单" @@ -11337,7 +11408,7 @@ msgstr "不受信任" msgid "Upcoming" msgstr "即将推出" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11353,7 +11424,7 @@ msgstr "更新 {0}" msgid "Update Affiliate" msgstr "更新推广员" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "更新容量" @@ -11365,15 +11436,15 @@ msgstr "更新活动名称和描述" msgid "Update event name, description and dates" msgstr "更新活动名称、说明和日期" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "更新标签" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "更新地点" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "更新个人资料" @@ -11385,19 +11456,19 @@ msgstr "更新:{subjectTitle} — 日程变更" msgid "Update: {subjectTitle} — session time changed" msgstr "更新:{subjectTitle} — 场次时间变更" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "已更新 {count} 个日期" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "已更新 {count} 个日期的容量" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "已更新 {count} 个日期的标签" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "已更新 {count} 个场次的地点" @@ -11507,14 +11578,14 @@ msgstr "用户管理" msgid "Users" msgstr "用户" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "用户可在 <0>\"配置文件设置\" 中更改自己的电子邮件" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "世界协调时" @@ -11526,13 +11597,13 @@ msgstr "UTM 分析" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "正在验证您的增值税号..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "增值税" @@ -11544,28 +11615,28 @@ msgstr "" msgid "VAT number" msgstr "增值税号" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "增值税号码" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "增值税号不得包含空格" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "增值税号必须以2字母国家代码开头,后跟8-15个字母数字字符(例如,DE123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "增值税号验证成功" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "增值税号验证失败" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "增值税号验证失败。请检查您的增值税号。" @@ -11581,12 +11652,12 @@ msgstr "增值税率" msgid "VAT registered" msgstr "已注册增值税" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "增值税设置已成功保存" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "增值税设置已保存。我们正在后台验证您的增值税号。" @@ -11594,15 +11665,15 @@ msgstr "增值税设置已保存。我们正在后台验证您的增值税号。 msgid "VAT settings updated" msgstr "增值税设置已更新" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "平台费用的增值税处理" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "平台费用的增值税处理:欧盟增值税注册企业可以使用反向收费机制(0% - 增值税指令2006/112/EC第196条)。未注册增值税的企业需缴纳23%的爱尔兰增值税。" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "增值税验证服务暂时不可用" @@ -11615,7 +11686,7 @@ msgid "VAT: not registered" msgstr "增值税:未注册" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11625,6 +11696,10 @@ msgstr "地点名称" msgid "Verification code" msgstr "验证码" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11635,9 +11710,14 @@ msgid "Verify Email" msgstr "验证邮箱" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "验证您的邮箱" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "正在验证..." @@ -11655,8 +11735,7 @@ msgstr "查看" msgid "View All" msgstr "查看全部" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11696,7 +11775,7 @@ msgstr "查看 {0} {1} 的详情" msgid "View Event" msgstr "查看活动" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "查看活动页面" @@ -11729,8 +11808,8 @@ msgstr "在谷歌地图上查看" msgid "View Order" msgstr "查看订单" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "查看订单详情" @@ -11780,7 +11859,7 @@ msgstr "VK" msgid "Waiting" msgstr "等待中" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "等待付款" @@ -11800,7 +11879,7 @@ msgstr "候补名单" msgid "Waitlist Enabled" msgstr "候补名单已启用" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "候补邀约已过期" @@ -11808,7 +11887,7 @@ msgstr "候补邀约已过期" msgid "Waitlist triggered" msgstr "已触发候补名单" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "警告:这是系统默认配置。更改将影响所有未分配特定配置的账户。" @@ -11844,7 +11923,7 @@ msgstr "我们找不到您要查找的订单。链接可能已过期或订单详 msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "我们找不到您要查找的门票。链接可能已过期或门票详情可能已更改。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "我们找不到此订单。它可能已被删除。" @@ -11860,7 +11939,7 @@ msgstr "暂时无法连接到 Stripe,请稍后再试。" msgid "We couldn't reorder the categories. Please try again." msgstr "我们无法重新排序类别。请再试一次。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "加载此页面时遇到问题。请重试。" @@ -11881,6 +11960,10 @@ msgstr "我们建议尺寸为 2160px x 1080px,文件大小不超过 5MB" msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "建议尺寸为 400x400 像素,文件大小不超过 5MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "我们使用 Cookie 帮助我们了解网站的使用情况并改善您的体验。" @@ -11889,7 +11972,7 @@ msgstr "我们使用 Cookie 帮助我们了解网站的使用情况并改善您 msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "我们无法确认您的付款。请重试或联系技术支持。" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "我们在多次尝试后无法验证您的增值税号。我们将在后台继续尝试。请稍后检查。" @@ -11897,16 +11980,16 @@ msgstr "我们在多次尝试后无法验证您的增值税号。我们将在后 msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "当 {productDisplayName} 有空位时,我们会通过电子邮件通知您。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "保存后,我们将打开预填模板的消息撰写器。由您审阅后发送 — 不会自动发送任何内容。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "我们将把您的门票发送到此邮箱" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "我们将在后台验证您的增值税号。如有任何问题,我们会通知您。" @@ -12003,7 +12086,7 @@ msgstr "欢迎加入!请登录以继续。" msgid "Welcome back" msgstr "欢迎回来" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "欢迎回来{0} 👋" @@ -12023,7 +12106,7 @@ msgstr "健康" msgid "What are Tiered Products?" msgstr "什么是分层产品?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "什么是类别?" @@ -12143,6 +12226,10 @@ msgstr "签到何时关闭" msgid "When check-in opens" msgstr "签到何时开放" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "启用后,将为票务订单生成发票。发票将随订单确认邮件一起发送。参与" @@ -12155,7 +12242,7 @@ msgstr "启用后,新活动将允许参与者通过安全链接管理自己的 msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "启用后,新活动将在结账时显示营销订阅复选框。此设置可以针对每个活动单独覆盖。" -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "启用后,Stripe Connect交易将不收取应用费用。用于不支持应用费用的国家。" @@ -12191,11 +12278,11 @@ msgstr "小部件预览" msgid "Widget Settings" msgstr "小部件设置" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "工作" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12229,7 +12316,7 @@ msgid "year" msgstr "年" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "年度至今" @@ -12247,11 +12334,11 @@ msgstr "年" msgid "Yes" msgstr "是" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "是 - 我有有效的欧盟增值税注册号码" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "是,取消我的订单" @@ -12267,7 +12354,7 @@ msgstr "您正在将电子邮件更改为 <0>{0}。" msgid "You are impersonating <0>{0} ({1})" msgstr "您正在模拟 <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "您正在发出部分退款。客户将获得 {0} {1} 的退款。" @@ -12292,7 +12379,7 @@ msgstr "您稍后可以为单个日期覆盖此设置。" msgid "You can still manually offer tickets if needed." msgstr "如有需要,您仍然可以手动提供门票。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "您无法归档账户中最后一个活跃的主办方。" @@ -12313,11 +12400,11 @@ msgstr "您不能删除最后一个类别。" msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "您无法删除此价格层,因为此层已有售出的产品。您可以将其隐藏。" -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "不能编辑账户所有者的角色或状态。" -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "您不能退还手动创建的订单。" @@ -12333,11 +12420,11 @@ msgstr "您已接受此邀请。请登录以继续。" msgid "You have no pending email change." msgstr "您没有待处理的电子邮件更改。" -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "您已达到消息限制。" -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "您已超时,未能完成订单。" @@ -12345,11 +12432,11 @@ msgstr "您已超时,未能完成订单。" msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "您已向免费产品添加了税费。您想要删除它们吗?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "您必须确认此电子邮件并非促销邮件" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "保存前您必须确认您的责任" @@ -12409,7 +12496,7 @@ msgstr "在您创建容量分配之前,您需要一个产品。" msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "您需要至少一个产品才能开始。免费、付费或让用户决定支付金额。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "您正在更改场次时间" @@ -12421,7 +12508,7 @@ msgstr "您将参加 {0}!" msgid "You're on the waitlist!" msgstr "您已加入候补名单!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "您已获得一个名额!" @@ -12429,7 +12516,7 @@ msgstr "您已获得一个名额!" msgid "You've changed the session time" msgstr "您已更改场次时间" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "您的帐户有消息限制。要提高您的限制,请联系我们" @@ -12457,11 +12544,11 @@ msgstr "您的精彩网站 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "您的签到列表已成功创建。与您的签到工作人员共享以下链接。" -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "您当前的订单将丢失。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "您的详细信息" @@ -12469,7 +12556,7 @@ msgstr "您的详细信息" msgid "Your Email" msgstr "您的电子邮件" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "您要求将电子邮件更改为<0>{0}的申请正在处理中。请检查您的电子邮件以确认" @@ -12497,7 +12584,7 @@ msgstr "您的姓名" msgid "Your new password must be at least 8 characters long." msgstr "您的新密码长度必须至少为8个字符。" -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "您的订单" @@ -12509,7 +12596,7 @@ msgstr "您的订单详情已更新。确认邮件已发送到新的电子邮件 msgid "Your order has been cancelled" msgstr "您的订单已被取消" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "您的订单已被取消。" @@ -12534,7 +12621,7 @@ msgstr "您组织者的地址" msgid "Your password" msgstr "您的密码" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "您的付款正在处理中。" @@ -12542,11 +12629,11 @@ msgstr "您的付款正在处理中。" msgid "Your payment is protected with bank-level encryption" msgstr "您的付款受到银行级加密保护" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "您的付款未成功,请重试。" -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "您的付款未成功。请重试。" @@ -12554,7 +12641,7 @@ msgstr "您的付款未成功。请重试。" msgid "Your Plan" msgstr "您的计划" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "您的退款正在处理中。" @@ -12570,19 +12657,19 @@ msgstr "您的入场券" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "您的门票仍然有效 — 除非新时间不适合您,否则无需采取任何操作。如有疑问,请回复此邮件。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "您的门票已确认。" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "您的增值税号已排队等待验证" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "保存时将验证您的增值税号" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "您的候补邀约已过期,我们无法完成您的订单。请重新加入候补名单,待有更多空位时收到通知。" @@ -12590,19 +12677,19 @@ msgstr "您的候补邀约已过期,我们无法完成您的订单。请重新 msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "邮政编码" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "邮政编码" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "邮政编码" diff --git a/frontend/src/locales/zh-hk.js b/frontend/src/locales/zh-hk.js index 67ccb88655..41dc4bc41d 100644 --- a/frontend/src/locales/zh-hk.js +++ b/frontend/src/locales/zh-hk.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"暫時冇嘢可以顯示\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>簽退成功\"],\"KMgp2+\":[[\"0\"],\"可用\"],\"Pmr5xp\":[\"成功創建 \",[\"0\"]],\"FImCSc\":[[\"0\"],\"更新成功\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" 天, \",[\"hours\"],\" 小時, \",[\"minutes\"],\" 分鐘, 和 \",[\"seconds\"],\" 秒\"],\"f3RdEk\":[[\"hours\"],\" 小時, \",[\"minutes\"],\" 分鐘, 和 \",[\"seconds\"],\" 秒\"],\"fyE7Au\":[[\"分\"],\"分鐘和\",[\"秒\"],\"秒鐘\"],\"NlQ0cx\":[[\"組織者名稱\"],\"的首次活動\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0>請輸入不含税費的價格。<1>税費可以在下方添加。\",\"ZjMs6e\":\"<0>該產品的可用數量<1>如果該產品有相關的<2>容量限制,此值可以被覆蓋。\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 分 0 秒\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"緬因街 123 號\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"日期輸入字段。非常適合詢問出生日期等。\",\"6euFZ/\":[\"默認的\",[\"type\"],\"會自動應用於所有新產品。您可以為每個產品單獨覆蓋此設置。\"],\"SMUbbQ\":\"下拉式輸入法只允許一個選擇\",\"qv4bfj\":\"費用,如預訂費或服務費\",\"POT0K/\":\"每個產品的固定金額。例如,每個產品$0.50\",\"f4vJgj\":\"多行文本輸入\",\"OIPtI5\":\"產品價格的百分比。例如,3.5%的產品價格\",\"ZthcdI\":\"無折扣的促銷代碼可以用來顯示隱藏的產品。\",\"AG/qmQ\":\"單選題有多個選項,但只能選擇一個。\",\"h179TP\":\"活動的簡短描述,將顯示在搜索引擎結果中,並在社交媒體上分享時顯示。默認情況下,將使用活動描述\",\"WKMnh4\":\"單行文本輸入\",\"BHZbFy\":\"每個訂單一個問題。例如,您的送貨地址是什麼?\",\"Fuh+dI\":\"每個產品一個問題。例如,您的T恤尺碼是多少?\",\"RlJmQg\":\"標準税,如增值税或消費税\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"接受銀行轉賬、支票或其他線下支付方式\",\"hrvLf4\":\"通過 Stripe 接受信用卡支付\",\"bfXQ+N\":\"接受邀請\",\"AeXO77\":\"賬户\",\"lkNdiH\":\"賬户名稱\",\"Puv7+X\":\"賬户設置\",\"OmylXO\":\"賬户更新成功\",\"7L01XJ\":\"操作\",\"FQBaXG\":\"激活\",\"5T2HxQ\":\"激活日期\",\"F6pfE9\":\"活躍\",\"/PN1DA\":\"為此簽到列表添加描述\",\"0/vPdA\":\"添加有關與會者的任何備註。這些將不會對與會者可見。\",\"Or1CPR\":\"添加有關與會者的任何備註...\",\"l3sZO1\":\"添加關於訂單的備註。這些信息不會對客户可見。\",\"xMekgu\":\"添加關於訂單的備註...\",\"PGPGsL\":\"添加描述\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"添加線下支付的説明(例如,銀行轉賬詳情、支票寄送地址、付款截止日期)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"添加新內容\",\"TZxnm8\":\"添加選項\",\"24l4x6\":\"添加產品\",\"8q0EdE\":\"將產品添加到類別\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"加税或費用\",\"goOKRY\":\"增加層級\",\"oZW/gT\":\"添加到日曆\",\"pn5qSs\":\"附加信息\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"地址\",\"NY/x1b\":\"地址第 1 行\",\"POdIrN\":\"地址 1\",\"cormHa\":\"地址第 2 行\",\"gwk5gg\":\"地址第 2 行\",\"U3pytU\":\"管理員\",\"HLDaLi\":\"管理員用户可以完全訪問事件和賬户設置。\",\"W7AfhC\":\"本次活動的所有與會者\",\"cde2hc\":\"所有產品\",\"5CQ+r0\":\"允許與未支付訂單關聯的參與者簽到\",\"ipYKgM\":\"允許搜索引擎索引\",\"LRbt6D\":\"允許搜索引擎索引此事件\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"令人驚歎, 活動, 關鍵詞...\",\"hehnjM\":\"金額\",\"R2O9Rg\":[\"支付金額 (\",[\"0\"],\")\"],\"V7MwOy\":\"加載頁面時出現錯誤\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"出現意外錯誤。\",\"byKna+\":\"出現意外錯誤。請重試。\",\"ubdMGz\":\"產品持有者的任何查詢都將發送到此電子郵件地址。此地址還將用作從此活動發送的所有電子郵件的“回覆至”地址\",\"aAIQg2\":\"外觀\",\"Ym1gnK\":\"應用\",\"sy6fss\":[\"適用於\",[\"0\"],\"個產品\"],\"kadJKg\":\"適用於1個產品\",\"DB8zMK\":\"應用\",\"GctSSm\":\"應用促銷代碼\",\"ARBThj\":[\"將此\",[\"type\"],\"應用於所有新產品\"],\"S0ctOE\":\"歸檔活動\",\"TdfEV7\":\"已歸檔\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"您確定要激活該與會者嗎?\",\"TvkW9+\":\"您確定要歸檔此活動嗎?\",\"/CV2x+\":\"您確定要取消該與會者嗎?這將使其門票作廢\",\"YgRSEE\":\"您確定要刪除此促銷代碼嗎?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"您確定要將此活動設為草稿嗎?這將使公眾無法看到該活動\",\"mEHQ8I\":\"您確定要將此事件公開嗎?這將使事件對公眾可見\",\"s4JozW\":\"您確定要恢復此活動嗎?它將作為草稿恢復。\",\"vJuISq\":\"您確定要刪除此容量分配嗎?\",\"baHeCz\":\"您確定要刪除此簽到列表嗎?\",\"LBLOqH\":\"每份訂單詢問一次\",\"wu98dY\":\"每個產品詢問一次\",\"ss9PbX\":\"參加者\",\"m0CFV2\":\"與會者詳情\",\"QKim6l\":\"未找到參與者\",\"R5IT/I\":\"與會者備註\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"參會者票\",\"9SZT4E\":\"參與者\",\"iPBfZP\":\"註冊的參會者\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"自動調整大小\",\"vZ5qKF\":\"根據內容自動調整小工具高度。停用時,小工具將填滿容器的高度。\",\"4lVaWA\":\"等待線下付款\",\"2rHwhl\":\"等待線下付款\",\"3wF4Q/\":\"等待付款\",\"ioG+xt\":\"等待付款\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"返回活動頁面\",\"VCoEm+\":\"返回登錄\",\"k1bLf+\":\"背景顏色\",\"I7xjqg\":\"背景類型\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"賬單地址\",\"/xC/im\":\"賬單設置\",\"rp/zaT\":\"巴西葡萄牙語\",\"whqocw\":\"註冊即表示您同意我們的<0>服務條款和<1>隱私政策。\",\"bcCn6r\":\"計算類型\",\"+8bmSu\":\"加利福尼亞州\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"取消\",\"Gjt/py\":\"取消更改電子郵件\",\"tVJk4q\":\"取消訂單\",\"Os6n2a\":\"取消訂單\",\"Mz7Ygx\":[\"取消訂單 \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"已取消\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"容量\",\"V6Q5RZ\":\"容量分配創建成功\",\"k5p8dz\":\"容量分配刪除成功\",\"nDBs04\":\"容量管理\",\"ddha3c\":\"類別允許您將產品分組。例如,您可以有一個“門票”類別和另一個“商品”類別。\",\"iS0wAT\":\"類別幫助您組織產品。此標題將在公共活動頁面上顯示。\",\"eorM7z\":\"類別重新排序成功。\",\"3EXqwa\":\"類別創建成功\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"更改密碼\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"簽到 \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"簽到並標記訂單為已付款\",\"QYLpB4\":\"僅簽到\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"看看這個活動吧!\",\"gXcPxc\":\"簽到\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"簽到列表刪除成功\",\"+hBhWk\":\"簽到列表已過期\",\"mBsBHq\":\"簽到列表未激活\",\"vPqpQG\":\"未找到簽到列表\",\"tejfAy\":\"簽到列表\",\"hD1ocH\":\"簽到鏈接已複製到剪貼板\",\"CNafaC\":\"複選框選項允許多重選擇\",\"SpabVf\":\"複選框\",\"CRu4lK\":\"已簽到\",\"znIg+z\":\"結賬\",\"1WnhCL\":\"結賬設置\",\"6imsQS\":\"簡體中文\",\"JjkX4+\":\"選擇背景顏色\",\"/Jizh9\":\"選擇賬户\",\"3wV73y\":\"城市\",\"FG98gC\":\"清除搜索文本\",\"EYeuMv\":\"click here\",\"sby+1/\":\"點擊複製\",\"yz7wBu\":\"關閉\",\"62Ciis\":\"關閉側邊欄\",\"EWPtMO\":\"代碼\",\"ercTDX\":\"代碼長度必須在 3 至 50 個字符之間\",\"oqr9HB\":\"當活動頁面初始加載時摺疊此產品\",\"jZlrte\":\"顏色\",\"Vd+LC3\":\"顏色必須是有效的十六進制顏色代碼。例如#ffffff\",\"1HfW/F\":\"顏色\",\"VZeG/A\":\"即將推出\",\"yPI7n9\":\"以逗號分隔的描述活動的關鍵字。搜索引擎將使用這些關鍵字來幫助對活動進行分類和索引\",\"NPZqBL\":\"完整訂單\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"完成付款\",\"qqWcBV\":\"已完成\",\"6HK5Ct\":\"已完成訂單\",\"NWVRtl\":\"已完成訂單\",\"DwF9eH\":\"組件代碼\",\"Tf55h7\":\"已配置折扣\",\"7VpPHA\":\"確認\",\"ZaEJZM\":\"確認電子郵件更改\",\"yjkELF\":\"確認新密碼\",\"xnWESi\":\"確認密碼\",\"p2/GCq\":\"確認密碼\",\"wnDgGj\":\"確認電子郵件地址...\",\"pbAk7a\":\"連接條紋\",\"UMGQOh\":\"與 Stripe 連接\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"連接詳情\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"繼續\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"繼續按鈕文字\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"複製的\",\"T5rdis\":\"複製到剪貼板\",\"he3ygx\":\"複製\",\"r2B2P8\":\"複製簽到鏈接\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"複製鏈接\",\"E6nRW7\":\"複製 URL\",\"JNCzPW\":\"國家\",\"IF7RiR\":\"封面\",\"hYgDIe\":\"創建\",\"b9XOHo\":[\"創建 \",[\"0\"]],\"k9RiLi\":\"創建一個產品\",\"6kdXbW\":\"創建促銷代碼\",\"n5pRtF\":\"創建票單\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"創建一個組織者\",\"ipP6Ue\":\"創建與會者\",\"VwdqVy\":\"創建容量分配\",\"EwoMtl\":\"創建類別\",\"XletzW\":\"創建類別\",\"WVbTwK\":\"創建簽到列表\",\"uN355O\":\"創建活動\",\"BOqY23\":\"創建新的\",\"kpJAeS\":\"創建組織器\",\"a0EjD+\":\"創建產品\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"創建促銷代碼\",\"B3Mkdt\":\"創建問題\",\"UKfi21\":\"創建税費\",\"d+F6q9\":\"已建立\",\"Q2lUR2\":\"貨幣\",\"DCKkhU\":\"當前密碼\",\"uIElGP\":\"自定義地圖 URL\",\"UEqXyt\":\"自定義範圍\",\"876pfE\":\"客户\",\"QOg2Sf\":\"自定義此事件的電子郵件和通知設置\",\"Y9Z/vP\":\"定製活動主頁和結賬信息\",\"2E2O5H\":\"自定義此事件的其他設置\",\"iJhSxe\":\"自定義此事件的搜索引擎優化設置\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"危險區\",\"ZQKLI1\":\"危險區\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"日期\",\"JvUngl\":\"日期和時間\",\"JJhRbH\":\"第一天容量\",\"cnGeoo\":\"刪除\",\"jRJZxD\":\"刪除容量\",\"VskHIx\":\"刪除類別\",\"Qrc8RZ\":\"刪除簽到列表\",\"WHf154\":\"刪除代碼\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"説明\",\"YC3oXa\":\"簽到工作人員的描述\",\"URmyfc\":\"詳細信息\",\"1lRT3t\":\"禁用此容量將跟蹤銷售情況,但不會在達到限制時停止銷售\",\"H6Ma8Z\":\"折扣\",\"ypJ62C\":\"折扣率\",\"3LtiBI\":[[\"0\"],\"中的折扣\"],\"C8JLas\":\"折扣類型\",\"1QfxQT\":\"關閉\",\"DZlSLn\":\"文檔標籤\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"捐贈 / 自由定價產品\",\"OvNbls\":\"下載 .ics\",\"kodV18\":\"下載 CSV\",\"CELKku\":\"下載發票\",\"LQrXcu\":\"下載發票\",\"QIodqd\":\"下載二維碼\",\"yhjU+j\":\"正在下載發票\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"下拉選擇\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"複製活動\",\"3ogkAk\":\"複製活動\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"複製選項\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"早起的鳥兒\",\"ePK91l\":\"編輯\",\"N6j2JH\":[\"編輯 \",[\"0\"]],\"kBkYSa\":\"編輯容量\",\"oHE9JT\":\"編輯容量分配\",\"j1Jl7s\":\"編輯類別\",\"FU1gvP\":\"編輯簽到列表\",\"iFgaVN\":\"編輯代碼\",\"jrBSO1\":\"編輯組織器\",\"tdD/QN\":\"編輯產品\",\"n143Tq\":\"編輯產品類別\",\"9BdS63\":\"編輯促銷代碼\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"編輯問題\",\"poTr35\":\"編輯用户\",\"GTOcxw\":\"編輯用户\",\"pqFrv2\":\"例如2.50 換 2.50\",\"3yiej1\":\"例如23.5 表示 23.5%\",\"O3oNi5\":\"電子郵件\",\"VxYKoK\":\"電子郵件和通知設置\",\"ATGYL1\":\"電子郵件地址\",\"hzKQCy\":\"電子郵件地址\",\"HqP6Qf\":\"電子郵件更改已成功取消\",\"mISwW1\":\"電子郵件更改待定\",\"APuxIE\":\"重新發送電子郵件確認\",\"YaCgdO\":\"成功重新發送電子郵件確認\",\"jyt+cx\":\"電子郵件頁腳信息\",\"I6F3cp\":\"電子郵件未經驗證\",\"NTZ/NX\":\"嵌入代碼\",\"4rnJq4\":\"嵌入腳本\",\"8oPbg1\":\"啟用發票功能\",\"j6w7d/\":\"啟用此容量以在達到限制時停止產品銷售\",\"VFv2ZC\":\"結束日期\",\"237hSL\":\"完工\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"英語\",\"MhVoma\":\"輸入不含税費的金額。\",\"SlfejT\":\"錯誤\",\"3Z223G\":\"確認電子郵件地址出錯\",\"a6gga1\":\"確認更改電子郵件時出錯\",\"5/63nR\":\"歐元\",\"0pC/y6\":\"活動\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"活動日期\",\"0Zptey\":\"事件默認值\",\"QcCPs8\":\"活動詳情\",\"6fuA9p\":\"事件成功複製\",\"AEuj2m\":\"活動主頁\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"活動地點和場地詳情\",\"OopDbA\":\"Event page\",\"4/If97\":\"活動狀態更新失敗。請稍後再試\",\"btxLWj\":\"事件狀態已更新\",\"nMU2d3\":\"活動網址\",\"tst44n\":\"活動\",\"sZg7s1\":\"過期日期\",\"KnN1Tu\":\"到期\",\"uaSvqt\":\"有效期\",\"GS+Mus\":\"出口\",\"9xAp/j\":\"取消與會者失敗\",\"ZpieFv\":\"取消訂單失敗\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"下載發票失敗。請重試。\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"加載簽到列表失敗\",\"ZQ15eN\":\"重新發送票據電子郵件失敗\",\"ejXy+D\":\"產品排序失敗\",\"PLUB/s\":\"費用\",\"/mfICu\":\"費用\",\"LyFC7X\":\"篩選訂單\",\"cSev+j\":\"篩選器\",\"CVw2MU\":[\"篩選器 (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"第一張發票號碼\",\"V1EGGU\":\"姓名\",\"kODvZJ\":\"姓名\",\"S+tm06\":\"名字必須在 1 至 50 個字符之間\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"首次使用\",\"TpqW74\":\"固定式\",\"irpUxR\":\"固定金額\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"忘記密碼?\",\"2POOFK\":\"免費\",\"P/OAYJ\":\"免費產品\",\"vAbVy9\":\"免費產品,無需付款信息\",\"nLC6tu\":\"法語\",\"Weq9zb\":\"常規\",\"DDcvSo\":\"德國\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"返回個人資料\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"谷歌日曆\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"銷售總額\",\"yRg26W\":\"總銷售額\",\"R4r4XO\":\"賓客\",\"26pGvx\":\"有促銷代碼嗎?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"這是如何在應用程式中使用該組件的範例。\",\"Y1SSqh\":\"這是您可以用來在應用程式中嵌入小工具的 React 組件。\",\"QuhVpV\":[\"你好 \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"隱藏於公眾視線之外\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"隱藏問題只有活動組織者可以看到,客户看不到。\",\"vLyv1R\":\"隱藏\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"在銷售結束日期後隱藏產品\",\"06s3w3\":\"在銷售開始日期前隱藏產品\",\"axVMjA\":\"除非用户有適用的促銷代碼,否則隱藏產品\",\"ySQGHV\":\"售罄時隱藏產品\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"對客户隱藏此產品\",\"Da29Y6\":\"隱藏此問題\",\"fvDQhr\":\"向用户隱藏此層級\",\"lNipG+\":\"隱藏產品將防止用户在活動頁面上看到它。\",\"ZOBwQn\":\"主頁設計\",\"PRuBTd\":\"首頁設計器\",\"YjVNGZ\":\"主頁預覽\",\"c3E/kw\":\"荷馬\",\"8k8Njd\":\"客户有多少分鐘來完成訂單。我們建議至少 15 分鐘\",\"ySxKZe\":\"這個代碼可以使用多少次?\",\"dZsDbK\":[\"HTML字符限制已超出:\",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"我同意<0>條款和條件。\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"如果啟用,登記工作人員可以將與會者標記為已登記或將訂單標記為已支付並登記與會者。如果禁用,關聯未支付訂單的與會者無法登記。\",\"muXhGi\":\"如果啟用,當有新訂單時,組織者將收到電子郵件通知\",\"6fLyj/\":\"如果您沒有要求更改密碼,請立即更改密碼。\",\"n/ZDCz\":\"圖像已成功刪除\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"圖片上傳成功\",\"VyUuZb\":\"圖片網址\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"不活動\",\"T0K0yl\":\"非活動用户無法登錄。\",\"kO44sp\":\"包含您的在線活動的連接詳細信息。這些信息將在訂單摘要頁面和參會者門票頁面顯示。\",\"FlQKnG\":\"價格中包含税費\",\"Vi+BiW\":[\"包括\",[\"0\"],\"個產品\"],\"lpm0+y\":\"包括1個產品\",\"UiAk5P\":\"插入圖片\",\"OyLdaz\":\"再次發出邀請!\",\"HE6KcK\":\"撤銷邀請!\",\"SQKPvQ\":\"邀請用户\",\"bKOYkd\":\"發票下載成功\",\"alD1+n\":\"發票備註\",\"kOtCs2\":\"發票編號\",\"UZ2GSZ\":\"發票設置\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"項目\",\"KFXip/\":\"約翰\",\"XcgRvb\":\"約翰遜\",\"87a/t/\":\"標籤\",\"vXIe7J\":\"語言\",\"2LMsOq\":\"過去 12 個月\",\"vfe90m\":\"過去 14 天\",\"aK4uBd\":\"過去 24 小時\",\"uq2BmQ\":\"過去 30 天\",\"bB6Ram\":\"過去 48 小時\",\"VlnB7s\":\"過去 6 個月\",\"ct2SYD\":\"過去 7 天\",\"XgOuA7\":\"過去 90 天\",\"I3yitW\":\"最後登錄\",\"1ZaQUH\":\"姓氏\",\"UXBCwc\":\"姓氏\",\"tKCBU0\":\"最近一次使用\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"留空以使用默認詞“發票”\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"加載中...\",\"wJijgU\":\"地點\",\"sQia9P\":\"登錄\",\"zUDyah\":\"登錄\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"註銷\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"在結賬時強制要求填寫賬單地址\",\"MU3ijv\":\"將此問題作為必答題\",\"wckWOP\":\"管理\",\"onpJrA\":\"管理與會者\",\"n4SpU5\":\"管理活動\",\"WVgSTy\":\"管理訂單\",\"1MAvUY\":\"管理此活動的支付和發票設置。\",\"cQrNR3\":\"管理簡介\",\"AtXtSw\":\"管理可以應用於您的產品的税費\",\"ophZVW\":\"管理機票\",\"DdHfeW\":\"管理賬户詳情和默認設置\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"管理用户及其權限\",\"1m+YT2\":\"在顧客結賬前,必須回答必填問題。\",\"Dim4LO\":\"手動添加與會者\",\"e4KdjJ\":\"手動添加與會者\",\"vFjEnF\":\"標記為已支付\",\"g9dPPQ\":\"每份訂單的最高限額\",\"l5OcwO\":\"與會者留言\",\"Gv5AMu\":\"留言參與者\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"留言買家\",\"tNZzFb\":\"訊息內容\",\"lYDV/s\":\"給個別與會者留言\",\"V7DYWd\":\"發送的信息\",\"t7TeQU\":\"信息\",\"xFRMlO\":\"每次訂購的最低數量\",\"QYcUEf\":\"最低價格\",\"RDie0n\":\"其他\",\"mYLhkl\":\"雜項設置\",\"KYveV8\":\"多行文本框\",\"VD0iA7\":\"多種價格選項。非常適合早鳥產品等。\",\"/bhMdO\":\"我的精彩活動描述\",\"vX8/tc\":\"我的精彩活動標題...\",\"hKtWk2\":\"我的簡介\",\"fj5byd\":\"不適用\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"名稱\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"導航至與會者\",\"qqeAJM\":\"從不\",\"7vhWI8\":\"新密碼\",\"1UzENP\":\"否\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"沒有可顯示的已歸檔活動。\",\"q2LEDV\":\"未找到此訂單的參會者。\",\"zlHa5R\":\"尚未向此訂單添加參會者。\",\"Wjz5KP\":\"無與會者\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"沒有容量分配\",\"a/gMx2\":\"沒有簽到列表\",\"tMFDem\":\"無可用數據\",\"6Z/F61\":\"無數據顯示。請選擇日期範圍\",\"fFeCKc\":\"無折扣\",\"HFucK5\":\"沒有可顯示的已結束活動。\",\"yAlJXG\":\"無事件顯示\",\"GqvPcv\":\"沒有可用篩選器\",\"KPWxKD\":\"無信息顯示\",\"J2LkP8\":\"無訂單顯示\",\"RBXXtB\":\"當前沒有可用的支付方式。請聯繫活動組織者以獲取幫助。\",\"ZWEfBE\":\"無需支付\",\"ZPoHOn\":\"此參會者沒有關聯的產品。\",\"Ya1JhR\":\"此類別中沒有可用的產品。\",\"FTfObB\":\"尚無產品\",\"+Y976X\":\"無促銷代碼顯示\",\"MAavyl\":\"此與會者未回答任何問題。\",\"SnlQeq\":\"此訂單尚未提出任何問題。\",\"Ev2r9A\":\"無結果\",\"gk5uwN\":\"沒有搜索結果\",\"RHyZUL\":\"沒有搜索結果。\",\"RY2eP1\":\"未加收任何税費。\",\"EdQY6l\":\"無\",\"OJx3wK\":\"不詳\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"備註\",\"jtrY3S\":\"暫無顯示內容\",\"hFwWnI\":\"通知設置\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"將新訂單通知組織者\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"允許支付的天數(留空以從發票中省略付款條款)\",\"n86jmj\":\"號碼前綴\",\"mwe+2z\":\"線下訂單在標記為已支付之前不會反映在活動統計中。\",\"dWBrJX\":\"線下支付失敗。請重試或聯繫活動組織者。\",\"fcnqjw\":\"離線付款說明\",\"+eZ7dp\":\"線下支付\",\"ojDQlR\":\"線下支付信息\",\"u5oO/W\":\"線下支付設置\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"銷售中\",\"Ug4SfW\":\"創建事件後,您就可以在這裏看到它。\",\"ZxnK5C\":\"一旦開始收集數據,您將在這裏看到。\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"持續進行\",\"z+nuVJ\":\"線上活動\",\"WKHW0N\":\"在線活動詳情\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"開啟簽到頁面\",\"OdnLE4\":\"打開側邊欄\",\"ZZEYpT\":[\"方案 \",[\"i\"]],\"oPknTP\":\"所有發票上顯示的可選附加信息(例如,付款條款、逾期付款費用、退貨政策)\",\"OrXJBY\":\"發票編號的可選前綴(例如,INV-)\",\"0zpgxV\":\"選項\",\"BzEFor\":\"或\",\"UYUgdb\":\"訂購\",\"mm+eaX\":\"訂單 #\",\"B3gPuX\":\"取消訂單\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"訂購日期\",\"Tol4BF\":\"訂購詳情\",\"WbImlQ\":\"訂單已取消,並已通知訂單所有者。\",\"nAn4Oe\":\"訂單已標記為已支付\",\"uzEfRz\":\"訂單備註\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"訂購參考\",\"acIJ41\":\"訂單狀態\",\"GX6dZv\":\"訂單摘要\",\"tDTq0D\":\"訂單超時\",\"1h+RBg\":\"訂單\",\"3y+V4p\":\"組織地址\",\"GVcaW6\":\"組織詳細信息\",\"nfnm9D\":\"組織名稱\",\"G5RhpL\":\"主辦方\",\"mYygCM\":\"需要組織者\",\"Pa6G7v\":\"組織者姓名\",\"l894xP\":\"組織者只能管理活動和產品。他們無法管理用户、賬户設置或賬單信息。\",\"fdjq4c\":\"內邊距\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"頁面未找到\",\"QbrUIo\":\"頁面瀏覽量\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"付訖\",\"HVW65c\":\"付費產品\",\"ZfxaB4\":\"部分退款\",\"8ZsakT\":\"密碼\",\"TUJAyx\":\"密碼必須至少包含 8 個字符\",\"vwGkYB\":\"密碼必須至少包含 8 個字符\",\"BLTZ42\":\"密碼重置成功。請使用新密碼登錄。\",\"f7SUun\":\"密碼不一樣\",\"aEDp5C\":\"將此貼上到您希望小工具顯示的位置。\",\"+23bI/\":\"帕特里克\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"付款方式\",\"Lg+ewC\":\"支付和發票\",\"DZjk8u\":\"支付和發票設置\",\"lflimf\":\"付款期限\",\"JhtZAK\":\"付款失敗\",\"JEdsvQ\":\"支付説明\",\"bLB3MJ\":\"支付方式\",\"QzmQBG\":\"支付提供商\",\"lsxOPC\":\"已收到付款\",\"wJTzyi\":\"支付狀態\",\"xgav5v\":\"付款成功!\",\"R29lO5\":\"付款條款\",\"/roQKz\":\"百分比\",\"vPJ1FI\":\"百分比 金額\",\"xdA9ud\":\"將此放置在您網站的 中。\",\"blK94r\":\"請至少添加一個選項\",\"FJ9Yat\":\"請檢查所提供的信息是否正確\",\"TkQVup\":\"請檢查您的電子郵件和密碼並重試\",\"sMiGXD\":\"請檢查您的電子郵件是否有效\",\"Ajavq0\":\"請檢查您的電子郵件以確認您的電子郵件地址\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"請在新標籤頁中繼續\",\"hcX103\":\"請創建一個產品\",\"cdR8d6\":\"請創建一張票\",\"x2mjl4\":\"請輸入指向圖像的有效圖片網址。\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"請注意\",\"C63rRe\":\"請返回活動頁面重新開始。\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"請選擇至少一個產品\",\"igBrCH\":\"請驗證您的電子郵件地址,以訪問所有功能\",\"/IzmnP\":\"請稍候,我們正在準備您的發票...\",\"MOERNx\":\"葡萄牙語\",\"qCJyMx\":\"結賬後信息\",\"g2UNkE\":\"技術支持\",\"Rs7IQv\":\"結賬前信息\",\"rdUucN\":\"預覽\",\"a7u1N9\":\"價格\",\"CmoB9j\":\"價格顯示模式\",\"BI7D9d\":\"未設置價格\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"價格類型\",\"6RmHKN\":\"主色調\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"主要文字顏色\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"打印所有門票\",\"DKwDdj\":\"打印票\",\"K47k8R\":\"產品\",\"1JwlHk\":\"產品類別\",\"U61sAj\":\"產品類別更新成功。\",\"1USFWA\":\"產品刪除成功\",\"4Y2FZT\":\"產品價格類型\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"產品銷售\",\"U/R4Ng\":\"產品等級\",\"sJsr1h\":\"產品類型\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"產品\",\"N0qXpE\":\"產品\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"已售產品\",\"/u4DIx\":\"已售產品\",\"DJQEZc\":\"產品排序成功\",\"vERlcd\":\"簡介\",\"kUlL8W\":\"成功更新個人資料\",\"cl5WYc\":[\"已使用促銷 \",[\"promo_code\"],\" 代碼\"],\"P5sgAk\":\"促銷代碼\",\"yKWfjC\":\"促銷代碼頁面\",\"RVb8Fo\":\"促銷代碼\",\"BZ9GWa\":\"促銷代碼可用於提供折扣、預售權限或為您的活動提供特殊權限。\",\"OP094m\":\"促銷代碼報告\",\"4kyDD5\":\"為此問題提供額外背景或指示。可用此欄位加入條款及細則、指引或參加者作答前需要知道的重要資訊。\",\"toutGW\":\"二維碼\",\"LkMOWF\":\"可用數量\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"問題已刪除\",\"avf0gk\":\"問題描述\",\"oQvMPn\":\"問題標題\",\"enzGAL\":\"問題\",\"ROv2ZT\":\"問與答\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"無線電選項\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"受援國\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"退款失敗\",\"n10yGu\":\"退款訂單\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"退款處理中\",\"xHpVRl\":\"退款狀態\",\"/BI0y9\":\"退款\",\"fgLNSM\":\"註冊\",\"9+8Vez\":\"剩餘使用次數\",\"tasfos\":\"去除\",\"t/YqKh\":\"移除\",\"t9yxlZ\":\"報告\",\"prZGMe\":\"要求賬單地址\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"重新發送電子郵件確認\",\"wIa8Qe\":\"重新發送邀請\",\"VeKsnD\":\"重新發送訂單電子郵件\",\"dFuEhO\":\"重新發送門票電郵\",\"o6+Y6d\":\"重新發送...\",\"OfhWJH\":\"重置\",\"RfwZxd\":\"重置密碼\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"恢復活動\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"返回活動頁面\",\"8YBH95\":\"收入\",\"PO/sOY\":\"撤銷邀請\",\"GDvlUT\":\"角色\",\"ELa4O9\":\"銷售結束日期\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"銷售開始日期\",\"hBsw5C\":\"銷售結束\",\"kpAzPe\":\"銷售開始\",\"P/wEOX\":\"舊金山\",\"tfDRzk\":\"保存\",\"IUwGEM\":\"保存更改\",\"U65fiW\":\"保存組織器\",\"UGT5vp\":\"保存設置\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"按與會者姓名、電子郵件或訂單號搜索...\",\"+pr/FY\":\"按活動名稱搜索...\",\"3zRbWw\":\"按姓名、電子郵件或訂單號搜索...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"按名稱搜索...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"搜索容量分配...\",\"r9M1hc\":\"搜索簽到列表...\",\"+0Yy2U\":\"搜索產品\",\"YIix5Y\":\"搜索...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"次要顏色\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"次要文字顏色\",\"02ePaq\":[\"選擇 \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"選擇類別...\",\"kWI/37\":\"選擇組織者\",\"ixIx1f\":\"選擇產品\",\"3oSV95\":\"選擇產品等級\",\"C4Y1hA\":\"選擇產品\",\"hAjDQy\":\"選擇狀態\",\"QYARw/\":\"選擇機票\",\"OMX4tH\":\"選擇票\",\"DrwwNd\":\"選擇時間段\",\"O/7I0o\":\"選擇...\",\"JlFcis\":\"發送\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"發送信息\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"發送消息\",\"D7ZemV\":\"發送訂單確認和票務電子郵件\",\"v1rRtW\":\"發送測試\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"搜索引擎優化説明\",\"/SIY6o\":\"搜索引擎優化關鍵詞\",\"GfWoKv\":\"搜索引擎優化設置\",\"rXngLf\":\"搜索引擎優化標題\",\"/jZOZa\":\"服務費\",\"Bj/QGQ\":\"設定最低價格,用户可選擇支付更高的價格\",\"L0pJmz\":\"設置發票編號的起始編號。一旦發票生成,就無法更改。\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"設置\",\"Z8lGw6\":\"分享\",\"B2V3cA\":\"分享活動\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"顯示可用產品數量\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"顯示更多\",\"izwOOD\":\"單獨顯示税費\",\"1SbbH8\":\"結賬後顯示給客户,在訂單摘要頁面。\",\"YfHZv0\":\"在顧客結賬前向他們展示\",\"CBBcly\":\"顯示常用地址字段,包括國家\",\"yTnnYg\":\"辛普森\",\"TNaCfq\":\"單行文本框\",\"+P0Cn2\":\"跳過此步驟\",\"YSEnLE\":\"史密斯\",\"lgFfeO\":\"售罄\",\"Mi1rVn\":\"售罄\",\"nwtY4N\":\"出了點問題\",\"GRChTw\":\"刪除税費時出了問題\",\"YHFrbe\":\"出錯了!請重試\",\"kf83Ld\":\"出問題了\",\"fWsBTs\":\"出錯了。請重試。\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"對不起,此優惠代碼不可用\",\"65A04M\":\"西班牙語\",\"mFuBqb\":\"固定價格的標準產品\",\"D3iCkb\":\"開始日期\",\"/2by1f\":\"州或地區\",\"uAQUqI\":\"狀態\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"此活動未啟用 Stripe 支付。\",\"UJmAAK\":\"主題\",\"X2rrlw\":\"小計\",\"zzDlyQ\":\"成功\",\"b0HJ45\":[\"成功!\",[\"0\"],\" 將很快收到一封電子郵件。\"],\"BJIEiF\":[\"成功 \",[\"0\"],\" 參會者\"],\"OtgNFx\":\"成功確認電子郵件地址\",\"IKwyaF\":\"成功確認電子郵件更改\",\"zLmvhE\":\"成功創建與會者\",\"gP22tw\":\"產品創建成功\",\"9mZEgt\":\"成功創建促銷代碼\",\"aIA9C4\":\"成功創建問題\",\"J3RJSZ\":\"成功更新與會者\",\"3suLF0\":\"容量分配更新成功\",\"Z+rnth\":\"簽到列表更新成功\",\"vzJenu\":\"成功更新電子郵件設置\",\"7kOMfV\":\"成功更新活動\",\"G0KW+e\":\"成功更新主頁設計\",\"k9m6/E\":\"成功更新主頁設置\",\"y/NR6s\":\"成功更新位置\",\"73nxDO\":\"成功更新雜項設置\",\"4H80qv\":\"訂單更新成功\",\"6xCBVN\":\"支付和發票設置已成功更新\",\"1Ycaad\":\"成功更新產品\",\"70dYC8\":\"成功更新促銷代碼\",\"F+pJnL\":\"成功更新搜索引擎設置\",\"DXZRk5\":\"100 號套房\",\"GNcfRk\":\"支持電子郵件\",\"uRfugr\":\"T恤衫\",\"JpohL9\":\"税收\",\"geUFpZ\":\"税費\",\"dFHcIn\":\"税務詳情\",\"wQzCPX\":\"所有發票底部顯示的税務信息(例如,增值税號、税務註冊號)\",\"0RXCDo\":\"成功刪除税費\",\"ZowkxF\":\"税收\",\"qu6/03\":\"税費\",\"gypigA\":\"促銷代碼無效\",\"5ShqeM\":\"您查找的簽到列表不存在。\",\"QXlz+n\":\"事件的默認貨幣。\",\"mnafgQ\":\"事件的默認時區。\",\"o7s5FA\":\"與會者接收電子郵件的語言。\",\"NlfnUd\":\"您點擊的鏈接無效。\",\"HsFnrk\":[[\"0\"],\"的最大產品數量是\",[\"1\"]],\"TSAiPM\":\"您要查找的頁面不存在\",\"MSmKHn\":\"顯示給客户的價格將包括税費。\",\"6zQOg1\":\"顯示給客户的價格不包括税費。税費將單獨顯示\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"活動標題,將顯示在搜索引擎結果中,並在社交媒體上分享時顯示。默認情況下,將使用事件標題\",\"wDx3FF\":\"此活動沒有可用產品\",\"pNgdBv\":\"此類別中沒有可用產品\",\"rMcHYt\":\"退款正在處理中。請等待退款完成後再申請退款。\",\"F89D36\":\"標記訂單為已支付時出錯\",\"68Axnm\":\"處理您的請求時出現錯誤。請重試。\",\"mVKOW6\":\"發送信息時出現錯誤\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"此參與者有未付款的訂單。\",\"mf3FrP\":\"此類別尚無任何產品。\",\"8QH2Il\":\"此類別對公眾隱藏\",\"xxv3BZ\":\"此簽到列表已過期\",\"Sa7w7S\":\"此簽到列表已過期,不再可用於簽到。\",\"Uicx2U\":\"此簽到列表已激活\",\"1k0Mp4\":\"此簽到列表尚未激活\",\"K6fmBI\":\"此簽到列表尚未激活,不能用於簽到。\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"這些信息將顯示在支付頁面、訂單摘要頁面和訂單確認電子郵件中。\",\"XAHqAg\":\"這是一種常規產品,例如T恤或杯子。不發行門票\",\"CNk/ro\":\"這是一項在線活動\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"此信息將包含在本次活動發送的所有電子郵件的頁腳中\",\"55i7Fa\":\"此消息僅在訂單成功完成後顯示。等待付款的訂單不會顯示此消息。\",\"RjwlZt\":\"此訂單已付款。\",\"5K8REg\":\"此訂單已退款。\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"此訂單已取消。\",\"Q0zd4P\":\"此訂單已過期。請重新開始。\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"此訂單已完成。\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"此訂購頁面已不可用。\",\"i0TtkR\":\"這將覆蓋所有可見性設置,並將該產品對所有客户隱藏。\",\"cRRc+F\":\"此產品無法刪除,因為它與訂單關聯。您可以將其隱藏。\",\"3Kzsk7\":\"此產品為門票。購買後買家將收到門票\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"此重置密碼鏈接無效或已過期。\",\"IV9xTT\":\"該用户未激活,因為他們沒有接受邀請。\",\"5AnPaO\":\"入場券\",\"kjAL4v\":\"門票\",\"dtGC3q\":\"門票電子郵件已重新發送給與會者\",\"54q0zp\":\"門票\",\"xN9AhL\":[[\"0\"],\"級\"],\"jZj9y9\":\"分層產品\",\"8wITQA\":\"分層產品允許您為同一產品提供多種價格選項。這非常適合早鳥產品,或為不同人羣提供不同的價格選項。\\\" # zh-cn\",\"nn3mSR\":\"剩餘時間:\",\"s/0RpH\":\"使用次數\",\"y55eMd\":\"使用次數\",\"40Gx0U\":\"時區\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"工具\",\"72c5Qo\":\"總計\",\"YXx+fG\":\"折扣前總計\",\"NRWNfv\":\"折扣總金額\",\"BxsfMK\":\"總費用\",\"2bR+8v\":\"總銷售額\",\"mpB/d9\":\"訂單總額\",\"m3FM1g\":\"退款總額\",\"jEbkcB\":\"退款總額\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"總税額\",\"+zy2Nq\":\"類型\",\"FMdMfZ\":\"無法簽到參與者\",\"bPWBLL\":\"無法簽退參與者\",\"9+P7zk\":\"無法創建產品。請檢查您的詳細信息\",\"WLxtFC\":\"無法創建產品。請檢查您的詳細信息\",\"/cSMqv\":\"無法創建問題。請檢查您的詳細信息\",\"MH/lj8\":\"無法更新問題。請檢查您的詳細信息\",\"nnfSdK\":\"獨立客户\",\"Mqy/Zy\":\"美國\",\"NIuIk1\":\"無限制\",\"/p9Fhq\":\"無限供應\",\"E0q9qH\":\"允許無限次使用\",\"h10Wm5\":\"未付款訂單\",\"ia8YsC\":\"即將推出\",\"TlEeFv\":\"即將舉行的活動\",\"L/gNNk\":[\"更新 \",[\"0\"]],\"+qqX74\":\"更新活動名稱、説明和日期\",\"vXPSuB\":\"更新個人資料\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"鏈接\",\"UtDm3q\":\"複製到剪貼板的 URL\",\"e5lF64\":\"使用範例\",\"fiV0xj\":\"使用限制\",\"sGEOe4\":\"使用封面圖片的模糊版本作為背景\",\"OadMRm\":\"使用封面圖片\",\"7PzzBU\":\"用户\",\"yDOdwQ\":\"用户管理\",\"Sxm8rQ\":\"用户\",\"VEsDvU\":\"用户可在 <0>\\\"配置文件設置\\\" 中更改自己的電子郵件\",\"vgwVkd\":\"世界協調時\",\"khBZkl\":\"增值税\",\"E/9LUk\":\"地點名稱\",\"jpctdh\":\"查看\",\"Pte1Hv\":\"查看參會者詳情\",\"/5PEQz\":\"查看活動頁面\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"在谷歌地圖上查看\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP簽到列表\",\"tF+VVr\":\"貴賓票\",\"2q/Q7x\":\"可見性\",\"vmOFL/\":\"我們無法處理您的付款。請重試或聯繫技術支持。\",\"45Srzt\":\"我們無法刪除該類別。請再試一次。\",\"/DNy62\":[\"我們找不到與\",[\"0\"],\"匹配的任何門票\"],\"1E0vyy\":\"我們無法加載數據。請重試。\",\"NmpGKr\":\"我們無法重新排序類別。請再試一次。\",\"BJtMTd\":\"我們建議尺寸為 2160px x 1080px,文件大小不超過 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"我們無法確認您的付款。請重試或聯繫技術支持。\",\"Gspam9\":\"我們正在處理您的訂單。請稍候...\",\"LuY52w\":\"歡迎加入!請登錄以繼續。\",\"dVxpp5\":[\"歡迎回來\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"什麼是分層產品?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"什麼是類別?\",\"gxeWAU\":\"此代碼適用於哪些產品?\",\"hFHnxR\":\"此代碼適用於哪些產品?(默認適用於所有產品)\",\"AeejQi\":\"此容量應適用於哪些產品?\",\"Rb0XUE\":\"您什麼時候抵達?\",\"5N4wLD\":\"這是什麼類型的問題?\",\"gyLUYU\":\"啟用後,將為票務訂單生成發票。發票將隨訂單確認郵件一起發送。參與\",\"D3opg4\":\"啟用線下支付後,用户可以完成訂單並收到門票。他們的門票將清楚地顯示訂單未支付,簽到工具會通知簽到工作人員訂單是否需要支付。\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"哪些票應與此簽到列表關聯?\",\"S+OdxP\":\"這項活動由誰組織?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"這個問題應該問誰?\",\"VxFvXQ\":\"嵌入小部件\",\"v1P7Gm\":\"小工具設定\",\"b4itZn\":\"工作\",\"hqmXmc\":\"工作...\",\"+G/XiQ\":\"年度至今\",\"l75CjT\":\"是\",\"QcwyCh\":\"是的,移除它們\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"您正在將電子郵件更改為 <0>\",[\"0\"],\"。\"],\"gGhBmF\":\"您處於離線狀態\",\"sdB7+6\":\"您可以創建一個促銷代碼,針對該產品\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"您無法更改產品類型,因為有與該產品關聯的參會者。\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"您無法為未支付訂單的與會者簽到。此設置可在活動設置中更改。\",\"c9Evkd\":\"您不能刪除最後一個類別。\",\"6uwAvx\":\"您無法刪除此價格層,因為此層已有售出的產品。您可以將其隱藏。\",\"tFbRKJ\":\"不能編輯賬户所有者的角色或狀態。\",\"fHfiEo\":\"您不能退還手動創建的訂單。\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"您可以訪問多個賬户。請選擇一個繼續。\",\"Z6q0Vl\":\"您已接受此邀請。請登錄以繼續。\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"您沒有待處理的電子郵件更改。\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"您已超時,未能完成訂單。\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"您必須確認此電子郵件並非促銷郵件\",\"3ZI8IL\":\"您必須同意條款和條件\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"必須先創建機票,然後才能手動添加與會者。\",\"jE4Z8R\":\"您必須至少有一個價格等級\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"您必須手動將訂單標記為已支付。這可以在訂單管理頁面上完成。\",\"L/+xOk\":\"在創建簽到列表之前,您需要先獲得票。\",\"Djl45M\":\"在您創建容量分配之前,您需要一個產品。\",\"y3qNri\":\"您需要至少一個產品才能開始。免費、付費或讓用户決定支付金額。\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"您的賬户名稱會在活動頁面和電子郵件中使用。\",\"veessc\":\"與會者註冊參加活動後,就會出現在這裏。您也可以手動添加與會者。\",\"Eh5Wrd\":\"您的精彩網站 🎉\",\"lkMK2r\":\"您的詳細信息\",\"3ENYTQ\":[\"您要求將電子郵件更改為<0>\",[\"0\"],\"的申請正在處理中。請檢查您的電子郵件以確認\"],\"yZfBoy\":\"您的信息已發送\",\"KSQ8An\":\"您的訂單\",\"Jwiilf\":\"您的訂單已被取消\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"您的訂單一旦開始滾動,就會出現在這裏。\",\"9TO8nT\":\"您的密碼\",\"P8hBau\":\"您的付款正在處理中。\",\"UdY1lL\":\"您的付款未成功,請重試。\",\"fzuM26\":\"您的付款未成功。請重試。\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"您的退款正在處理中。\",\"IFHV2p\":\"您的入場券\",\"x1PPdr\":\"郵政編碼\",\"BM/KQm\":\"郵政編碼\",\"+LtVBt\":\"郵政編碼\",\"25QDJ1\":\"- 點擊發布\",\"WOyJmc\":\"- 點擊取消發布\",\"ncwQad\":\"(空)\",\"B/gRsg\":\"(無)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" 已簽到\"],\"3beCx0\":[[\"0\"],\" <0>已簽到\"],\"S4PqS9\":[[\"0\"],\" 個活動的 Webhook\"],\"6MIiOI\":[\"剩餘 \",[\"0\"]],\"COnw8D\":[[\"0\"],\" 標誌\"],\"xG9N0H\":[[\"1\"],\" 個座位中已佔用 \",[\"0\"],\" 個。\"],\"B7pZfX\":[[\"0\"],\" 位主辦單位\"],\"rZTf6P\":[\"剩餘 \",[\"0\"],\" 個名額\"],\"/HkCs4\":[[\"0\"],\"張門票\"],\"dtXkP9\":[[\"0\"],\" 個即將舉行的日期\"],\"30bTiU\":[\"已啟用 \",[\"activeCount\"],\" 個\"],\"jTs4am\":[[\"appName\"],\" 標誌\"],\"gbJOk9\":[[\"attendeeCount\"],\" 位參加者已登記此場次。\"],\"TjbIUI\":[[\"totalCount\"],\" 中有 \",[\"availableCount\"],\" 可用\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" 已簽到\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" 小時前\"],\"NRSLBe\":[[\"diffMin\"],\" 分鐘前\"],\"iYfwJE\":[[\"diffSec\"],\" 秒前\"],\"OJnhhX\":[[\"eventCount\"],\" 個事件\"],\"mhZbzw\":[\"受影響的場次共有 \",[\"loadedAffectedAttendees\"],\" 位參加者已登記。\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" 種門票類型\"],\"0cLzoF\":[[\"totalOccurrences\"],\" 個日期\"],\"AEGc4t\":[[\"totalOccurrences\"],\" 個場次,分佈於 \",[\"0\"],\" 個日期(每日 \",[\"1\",\"plural\",{\"one\":[\"#\",\" 個場次\"],\"other\":[\"#\",\" 個場次\"]}],\")\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+稅/費\",\"B1St2O\":\"<0>簽到列表幫助您按日期、區域或票務類型管理活動入場。您可以將票務連結到特定列表,如VIP區域或第1天通行證,並與工作人員共享安全的簽到連結。無需帳戶。簽到適用於移動裝置、桌面或平板電腦,使用裝置相機或HID USB掃描器。 \",\"v9VSIS\":\"<0>設定單一總參加人數限制,同時適用於多種門票類型。<1>例如,如果您連結 <2>日票 和 <3>整個週末 門票,它們將從同一個名額池中抽取。一旦達到限制,所有連結的門票將自動停止銷售。\",\"vKXqag\":\"<0>此為所有日期的預設數量。每個日期的容量可在 <1>場次日程頁面 進一步限制。\",\"ZnVt5v\":\"<0>Webhooks 可在事件發生時立即通知外部服務,例如,在註冊時將新與會者添加到您的 CRM 或郵件列表,確保無縫自動化。<1>使用第三方服務,如 <2>Zapier、<3>IFTTT 或 <4>Make 來創建自定義工作流並自動化任務。\",\"xFTHZ5\":[\"≈ \",[\"0\"],\"(按目前匯率)\"],\"M2DyLc\":\"1 個活動的 Webhook\",\"6hIk/x\":\"受影響的場次共有 1 位參加者已登記。\",\"qOyE2U\":\"1 位參加者已登記此場次。\",\"943BwI\":\"結束日期後1天\",\"yj3N+g\":\"開始日期後1天\",\"Z3etYG\":\"活動前1天\",\"szSnlj\":\"活動前1小時\",\"yTsaLw\":\"1張門票\",\"nz96Ue\":\"1 種門票類型\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"活動前1週\",\"09VFYl\":\"提供 12 張門票\",\"HR/cvw\":\"示例街123號\",\"dgKxZ5\":\"支援 135+ 種貨幣及 40+ 種付款方式\",\"kMU5aM\":\"取消通知已發送至\",\"o++0qa\":\"時長變更\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"新嘅驗證碼已經發送到你嘅電郵\",\"sr2Je0\":\"開始/結束時間調整\",\"/z/bH1\":\"您主辦單位的簡短描述,將會顯示給您的使用者。\",\"aS0jtz\":\"已放棄\",\"uyJsf6\":\"關於\",\"JvuLls\":\"承擔費用\",\"lk74+I\":\"承擔費用\",\"1uJlG9\":\"強調色\",\"g3UF2V\":\"接受\",\"K5+3xg\":\"接受邀請\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"賬戶 · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"帳戶資訊\",\"EHNORh\":\"找不到帳戶\",\"bPwFdf\":\"賬戶\",\"AhwTa1\":\"需要操作:需提供增值稅資料\",\"APyAR/\":\"活躍活動\",\"kCl6ja\":\"啟用的付款方式\",\"XJOV1Y\":\"活動記錄\",\"0YEoxS\":\"新增日期\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"新增單一日期\",\"CjvTPJ\":\"新增時間\",\"0XCduh\":\"至少新增一個時間\",\"/chGpa\":\"為線上活動添加連接詳情。\",\"UWWRyd\":\"新增自訂問題以在結帳時收集額外資訊\",\"Z/dcxc\":\"新增日期\",\"Q219NT\":\"新增日期\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"新增地點\",\"VX6WUv\":\"新增地點\",\"GCQlV2\":\"如果一日內舉行多場場次,可新增多個時間。\",\"7JF9w9\":\"新增問題\",\"NLbIb6\":\"仍然新增此參加者(覆蓋容量限制)\",\"6PNlRV\":\"將此活動添加到您的日曆\",\"BGD9Yt\":\"添加機票\",\"uIv4Op\":\"在您的公開活動頁面及主辦方主頁加入追蹤像素。當追蹤啟用時,會向訪客顯示 Cookie 同意橫額。\",\"QN2F+7\":\"添加 Webhook\",\"NsWqSP\":\"新增您的社交媒體帳號及網站網址。這些資訊將會顯示在您的公開主辦單位頁面。\",\"bVjDs9\":\"額外費用\",\"MKqSg4\":\"需要管理員存取權限\",\"0Zypnp\":\"管理儀表板\",\"YAV57v\":\"推廣夥伴\",\"I+utEq\":\"推廣碼無法更改\",\"/jHBj5\":\"推廣夥伴建立成功\",\"uCFbG2\":\"推廣夥伴刪除成功\",\"ld8I+f\":\"聯盟計劃\",\"a41PKA\":\"將會追蹤推廣夥伴銷售\",\"mJJh2s\":\"唔會追蹤推廣夥伴銷售。呢個會停用該推廣夥伴。\",\"jabmnm\":\"推廣夥伴更新成功\",\"CPXP5Z\":\"合作夥伴\",\"9Wh+ug\":\"推廣夥伴已匯出\",\"3cqmut\":\"推廣夥伴幫助你追蹤合作夥伴同KOL產生嘅銷售。建立推廣碼並分享以監控表現。\",\"z7GAMJ\":\"全部\",\"N40H+G\":\"全部\",\"7rLTkE\":\"所有已封存活動\",\"gKq1fa\":\"所有參與者\",\"63gRoO\":\"所選場次的所有參加者\",\"uWxIoH\":\"此場次的所有參加者\",\"pMLul+\":\"所有貨幣\",\"sgUdRZ\":\"所有日期\",\"e4q4uO\":\"所有日期\",\"ZS/D7f\":\"所有已結束活動\",\"QsYjci\":\"所有活動\",\"31KB8w\":\"所有失敗任務已刪除\",\"D2g7C7\":\"所有任務已排隊等待重試\",\"B4RFBk\":\"所有符合的日期\",\"F1/VgK\":\"所有場次\",\"OpWjMq\":\"所有場次\",\"Sxm1lO\":\"所有狀態\",\"dr7CWq\":\"所有即將舉行的活動\",\"GpT6Uf\":\"允許參與者通過訂單確認電郵中的安全連結更新他們的門票資訊(姓名、電郵)。\",\"F3mW5G\":\"允許客戶在該產品售罄時加入候補名單\",\"c4uJfc\":\"快完成了!我們正在等待您的付款處理。這只需要幾秒鐘。\",\"ocS8eq\":[\"已有帳戶?<0>\",[\"0\"],\"\"],\"uCuEqI\":\"已入場\",\"/H326L\":\"已退款\",\"USEpOK\":\"已在其他主辦者上使用 Stripe?重複使用該連接。\",\"RtxQTF\":\"同時取消此訂單\",\"jkNgQR\":\"同時退款此訂單\",\"xYqsHg\":\"總是可用\",\"Wvrz79\":\"支付金額\",\"Zkymb9\":\"同呢個推廣夥伴關聯嘅電郵。推廣夥伴唔會收到通知。\",\"vRznIT\":\"檢查導出狀態時發生錯誤。\",\"eusccx\":\"顯示在突出產品上的可選訊息,例如「熱賣中 🔥」或「最佳價值」\",\"5GJuNp\":[\"及另外 \",[\"0\"],\" 個...\"],\"QNrkms\":\"答案更新成功。\",\"+qygei\":\"回答\",\"GK7Lnt\":\"結賬時提供的回答(例如餐點選擇)\",\"lE8PgT\":\"您手動自訂的日期將會保留。\",\"vP3Nzg\":[\"適用於目前頁面已載入的 \",[\"0\"],\" 個未取消的日期。\"],\"kkVyZZ\":\"適用於未登入打開簽到連結的人。已登入的團隊成員始終可以看到全部。\",\"je4muG\":[\"適用於此活動內每個 \",[\"0\"],\" 未取消的日期 — 包括目前未載入的日期。\"],\"YIIQtt\":\"套用變更\",\"NzWX1Y\":\"套用至\",\"Ps5oDT\":\"套用至所有門票\",\"261RBr\":\"批准訊息\",\"naCW6Z\":\"四月\",\"B495Gs\":\"封存\",\"5sNliy\":\"封存活動\",\"BrwnrJ\":\"封存主辦方\",\"E5eghW\":\"封存此活動以向公眾隱藏。您可以稍後還原它。\",\"eqFkeI\":\"封存此主辦方。這也將封存屬於此主辦方的所有活動。\",\"BzcxWv\":\"已封存的主辦方\",\"9cQBd6\":\"您確定要封存此活動嗎?它將不再對公眾可見。\",\"Trnl3E\":\"您確定要封存此主辦方嗎?這也將封存屬於此主辦方的所有活動。\",\"wOvn+e\":[\"確定要取消 \",[\"count\"],\" 個日期嗎?受影響的參加者會收到電郵通知。\"],\"GTxE0U\":\"確定要取消此日期嗎?受影響的參加者會收到電郵通知。\",\"VkSk/i\":\"您確定要取消此定時訊息嗎?\",\"0aVEBY\":\"您確定要刪除所有失敗的任務嗎?\",\"LchiNd\":\"你確定要刪除呢個推廣夥伴嗎?呢個操作無法撤銷。\",\"vPeW/6\":\"您確定要刪除此配置嗎?這可能會影響使用它的帳戶。\",\"h42Hc/\":\"確定要刪除此日期嗎?此操作無法復原。\",\"JmVITJ\":\"確定要刪除此範本嗎?此操作無法復原,郵件將回退到預設範本。\",\"aLS+A6\":\"確定要刪除此範本嗎?此操作無法復原,郵件將回退到組織者或預設範本。\",\"5H3Z78\":\"您確定要刪除此 Webhook 嗎?\",\"147G4h\":\"您確定要離開嗎?\",\"VDWChT\":\"您確定要將此主辦單位設為草稿嗎?這將使該頁面對公眾隱藏。\",\"pWtQJM\":\"您確定要將此主辦單位設為公開嗎?這將使該頁面對公眾可見。\",\"EOqL/A\":\"您確定要向此人提供名額嗎?他們將收到電子郵件通知。\",\"yAXqWW\":\"確定要永久刪除此日期嗎?此操作無法復原。\",\"WFHOlF\":\"你確定要發佈呢個活動嗎?一旦發佈,將會對公眾可見。\",\"4TNVdy\":\"你確定要發佈呢個主辦方資料嗎?一旦發佈,將會對公眾可見。\",\"8x0pUg\":\"您確定要從候補名單中移除此條目嗎?\",\"cDtoWq\":[\"您確定要將訂單確認重新發送到 \",[\"0\"],\" 嗎?\"],\"xeIaKw\":[\"您確定要將門票重新發送到 \",[\"0\"],\" 嗎?\"],\"BjbocR\":\"您確定要還原此活動嗎?\",\"7MjfcR\":\"您確定要還原此主辦方嗎?\",\"ExDt3P\":\"你確定要取消發佈呢個活動嗎?佢將唔再對公眾可見。\",\"5Qmxo/\":\"你確定要取消發佈呢個主辦方資料嗎?佢將唔再對公眾可見。\",\"Uqefyd\":\"您在歐盟註冊了增值稅嗎?\",\"+QARA4\":\"藝術\",\"tLf3yJ\":\"由於您的業務位於愛爾蘭,愛爾蘭增值稅(23%)將自動套用於所有平台費用。\",\"tMeVa/\":\"為每張購買的門票詢問姓名和電郵\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"指派方案\",\"xdiER7\":\"分配的級別\",\"F2rX0R\":\"必須選擇至少一種事件類型\",\"BCmibk\":\"嘗試次數\",\"6PecK3\":\"所有活動的出席率和簽到率\",\"K2tp3v\":\"參加者\",\"AJ4rvK\":\"與會者已取消\",\"qvylEK\":\"與會者已創建\",\"Aspq3b\":\"參與者資料收集\",\"fpb0rX\":\"參與者資料已從訂單複製\",\"0R3Y+9\":\"參會者電郵\",\"94aQMU\":\"參與者資訊\",\"KkrBiR\":\"參加者資料收集\",\"av+gjP\":\"參會者姓名\",\"sjPjOg\":\"參加者備註\",\"cosfD8\":\"參與者狀態\",\"D2qlBU\":\"與會者已更新\",\"22BOve\":\"參與者更新成功\",\"x8Vnvf\":\"參與者的票不包含在此列表中\",\"/Ywywr\":\"參加者\",\"zLRobu\":\"位參加者已簽到\",\"k3Tngl\":\"與會者已導出\",\"UoIRW8\":\"已註冊參加者\",\"5UbY+B\":\"持有特定門票的與會者\",\"4HVzhV\":\"參與者:\",\"HVkhy2\":\"歸因分析\",\"dMMjeD\":\"歸因細分\",\"1oPDuj\":\"歸因值\",\"DBHTm/\":\"八月\",\"JgREph\":\"自動提供已啟用\",\"V7Tejz\":\"自動處理候補名單\",\"PZ7FTW\":\"根據背景顏色自動檢測,但可以覆蓋\",\"zlnTuI\":\"當有名額時,自動向候補名單中的下一位提供門票。如停用,您可以從候補名單頁面手動處理。\",\"csDS2L\":\"可用\",\"clF06r\":\"可退款\",\"NB5+UG\":\"可用標記\",\"L+wGOG\":\"待處理\",\"qcw2OD\":\"待付款\",\"kNmmvE\":\"Awesome Events 有限公司\",\"iH8pgl\":\"返回\",\"TeSaQO\":\"返回帳戶\",\"X7Q/iM\":\"返回日曆\",\"kYqM1A\":\"返回活動\",\"s5QRF3\":\"返回訊息\",\"td/bh+\":\"返回報告\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"基本價格\",\"hviJef\":\"根據以上的全域銷售期,並非按個別日期\",\"jIPNJG\":\"基本資料\",\"UabgBd\":\"正文是必需的\",\"HWXuQK\":\"收藏此頁面,隨時管理您的訂單。\",\"CUKVDt\":\"使用自訂標誌、顏色和頁腳訊息打造您的門票品牌。\",\"4BZj5p\":\"內置防詐騙保護\",\"cr7kGH\":\"批量編輯\",\"1Fbd6n\":\"批量編輯日期\",\"Eq6Tu9\":\"批量更新失敗。\",\"9N+p+g\":\"商務\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"公司名稱\",\"bv6RXK\":\"按鈕標籤\",\"ChDLlO\":\"按鈕文字\",\"BUe8Wj\":\"買家支付\",\"qF1qbA\":\"買家看到的是淨價。平台費用將從您的付款中扣除。\",\"dg05rc\":\"加入追蹤像素即表示您確認您與本平台為所收集數據的共同控制者。您有責任確保根據適用的私隱法(GDPR、CCPA 等)擁有合法依據處理數據。\",\"DFqasq\":[\"繼續即表示您同意 <0>\",[\"0\"],\" 服務條款\"],\"wVSa+U\":\"按月內日期\",\"0MnNgi\":\"按星期\",\"CetOZE\":\"按票種\",\"lFdbRS\":\"繞過應用費用\",\"AjVXBS\":\"日曆\",\"alkXJ5\":\"日曆檢視\",\"2VLZwd\":\"行動號召按鈕\",\"rT2cV+\":\"相機\",\"7hYa9y\":\"相機權限被拒絕。<0>再次請求權限,或在瀏覽器設定中授予此頁面相機存取權。\",\"D02dD9\":\"活動\",\"RRPA79\":\"無法簽到\",\"OcVwAd\":[\"取消 \",[\"count\"],\" 個日期\"],\"H4nE+E\":\"取消所有產品並釋放回可用池\",\"Py78q9\":\"取消日期\",\"tOXAdc\":\"取消將取消與此訂單關聯的所有參與者,並將門票釋放回可用池。\",\"vev1Jl\":\"取消\",\"Ha17hq\":[\"已取消 \",[\"0\"],\" 個日期\"],\"01sEfm\":\"無法刪除系統預設配置\",\"VsM1HH\":\"容量分配\",\"9bIMVF\":\"容量管理\",\"H7K8og\":\"容量必須為 0 或以上\",\"nzao08\":\"容量更新\",\"4cp9NP\":\"已用容量\",\"K7tIrx\":\"類別\",\"o+XJ9D\":\"更改\",\"kJkjoB\":\"更改時長\",\"J0KExZ\":\"更改參加者上限\",\"CIHJJf\":\"更改等候名單設定\",\"B5icLR\":[\"已更改 \",[\"count\"],\" 個日期的時長\"],\"Kb+0BT\":\"收款\",\"2tbLdK\":\"慈善\",\"BPWGKn\":\"簽到\",\"6uFFoY\":\"取消簽到\",\"FjAlwK\":[\"睇睇呢個活動:\",[\"0\"]],\"v4fiSg\":\"查看你嘅電郵\",\"51AsAN\":\"請檢查您的收件箱!如果此郵箱有關聯的票,您將收到查看連結。\",\"Y3FYXy\":\"簽到\",\"udRwQs\":\"簽到已創建\",\"F4SRy3\":\"簽到已刪除\",\"as6XfO\":[\"已撤銷 \",[\"0\"],\" 的簽到\"],\"9s/wrQ\":\"簽到記錄\",\"Wwztk4\":\"簽到名單\",\"9gPPUY\":\"簽到名單已建立!\",\"dwjiJt\":\"簽到列表資訊\",\"7od0PV\":\"簽到名單\",\"f2vU9t\":\"簽到列表\",\"XprdTn\":\"簽到導覽\",\"5tV1in\":\"簽到進度\",\"SHJwyq\":\"簽到率\",\"qCqdg6\":\"簽到狀態\",\"cKj6OE\":\"簽到摘要\",\"7B5M35\":\"簽到\",\"VrmydS\":\"已簽到\",\"DM4gBB\":\"中文(繁體)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"選擇其他操作\",\"fkb+y3\":\"選擇要應用的已儲存地點。\",\"Zok1Gx\":\"選擇一個主辦者\",\"pkk46Q\":\"選擇一個主辦單位\",\"Crr3pG\":\"選擇日曆\",\"LAW8Vb\":\"為新活動選擇預設設置。這可以針對單個活動進行覆蓋。\",\"pjp2n5\":\"選擇誰支付平台費用。這不會影響您在帳戶設置中配置的額外費用。\",\"xCJdfg\":\"清除\",\"QyOWu9\":\"清除地點 — 使用活動預設地點\",\"V8yTm6\":\"清除搜尋\",\"kmnKnX\":\"清除會移除任何針對個別場次的覆蓋設定。受影響的場次將使用活動的預設地點。\",\"/o+aQX\":\"點擊以取消\",\"gD7WGV\":\"點擊以重新開放銷售\",\"CySr+W\":\"點擊查看備註\",\"RG3szS\":\"關閉\",\"RWw9Lg\":\"關閉視窗\",\"XwdMMg\":\"代碼只可以包含字母、數字、連字號同底線\",\"+yMJb7\":\"必須填寫代碼\",\"m9SD3V\":\"代碼至少需要3個字元\",\"V1krgP\":\"代碼唔可以超過20個字元\",\"psqIm5\":\"與您的團隊合作,一起創造精彩活動。\",\"4bUH9i\":\"為每張購買的門票收集參加者詳情。\",\"TkfG8v\":\"按訂單收集資料\",\"96ryID\":\"按門票收集資料\",\"FpsvqB\":\"顏色模式\",\"jEu4bB\":\"欄位\",\"CWk59I\":\"喜劇\",\"rPA+Gc\":\"通訊偏好\",\"zFT5rr\":\"已完成\",\"bUQMpb\":\"完成 Stripe 設定\",\"744BMm\":\"完成您的訂單以確保獲得門票。此優惠有時間限制,請盡快完成。\",\"5YrKW7\":\"完成付款以確保您的門票。\",\"xGU92i\":\"完成您的個人資料以加入團隊。\",\"QOhkyl\":\"撰寫\",\"ih35UP\":\"會議中心\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"已指派配置\",\"X1zdE7\":\"配置建立成功\",\"mLBUMQ\":\"配置刪除成功\",\"UIENhw\":\"配置名稱對最終用戶可見。固定費用將按當前匯率轉換為訂單貨幣。\",\"eeZdaB\":\"配置更新成功\",\"3cKoxx\":\"配置\",\"8v2LRU\":\"設定活動詳情、地點、結帳選項和電郵通知。\",\"raw09+\":\"設定結帳時如何收集參與者資料\",\"FI60XC\":\"配置稅費\",\"av6ukY\":\"設定此場次提供哪些產品,並可選擇調整價格。\",\"NGXKG/\":\"確認電子郵件地址\",\"JRQitQ\":\"確認新密碼\",\"Auz0Mz\":\"請確認您的電郵地址以使用所有功能。\",\"7+grte\":\"確認電郵已發送!請檢查您的收件匣。\",\"n/7+7Q\":\"確認已發送至\",\"x3wVFc\":\"恭喜!您的活動現已對公眾可見。\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"連接 Stripe 以啟用電子郵件範本編輯\",\"LmvZ+E\":\"連接 Stripe 以啟用消息功能\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"聯絡\",\"LOFgda\":[\"聯絡 \",[\"0\"]],\"41BQ3k\":\"聯絡電郵\",\"KcXRN+\":\"支援聯絡電郵\",\"m8WD6t\":\"繼續設置\",\"0GwUT4\":\"繼續結帳\",\"sBV87H\":\"繼續建立活動\",\"nKtyYu\":\"繼續下一步\",\"F3/nus\":\"繼續付款\",\"p2FRHj\":\"控制此活動的平台費用如何處理\",\"NqfabH\":\"控制誰可參加此日期\",\"fmYxZx\":\"控制誰在何時入場\",\"1JnTgU\":\"從上方複製\",\"FxVG/l\":\"已複製到剪貼簿\",\"PiH3UR\":\"已複製!\",\"4i7smN\":\"複製賬戶 ID\",\"uUPbPg\":\"複製推廣連結\",\"iVm46+\":\"複製代碼\",\"cF2ICc\":\"複製顧客連結\",\"+2ZJ7N\":\"將詳情複製到第一位參與者\",\"ZN1WLO\":\"複製郵箱\",\"y1eoq1\":\"複製連結\",\"tUGbi8\":\"複製我的資料到:\",\"y22tv0\":\"複製此連結以便隨處分享\",\"/4gGIX\":\"複製到剪貼簿\",\"e0f4yB\":\"無法刪除地點\",\"vkiDx2\":\"無法準備批量更新。\",\"KOavaU\":\"無法取得地址詳情\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"無法儲存日期\",\"eeLExK\":\"無法儲存地點\",\"P0rbCt\":\"封面圖片\",\"60u+dQ\":\"封面圖片將顯示在活動頁面頂部\",\"2NLjA6\":\"封面圖片將顯示在您的主辦單位頁面頂部\",\"GkrqoY\":\"涵蓋所有門票\",\"zg4oSu\":[\"建立\",[\"0\"],\"範本\"],\"RKKhnW\":\"建立自訂小工具以在您的網站上銷售門票。\",\"6sk7PP\":\"建立固定數量\",\"PhioFp\":\"為有效的場次建立新的簽到名單,如果您認為這是錯誤,請聯絡主辦方。\",\"yIRev4\":\"建立密碼\",\"j7xZ7J\":\"建立額外的主辦方以在一個帳戶下管理獨立的品牌、部門或活動系列。每個主辦方都有自己的活動、設定和公開頁面。\",\"xfKgwv\":\"建立推廣夥伴\",\"tudG8q\":\"建立並設定待售門票和商品。\",\"YAl9Hg\":\"建立配置\",\"BTne9e\":\"為此活動建立自定義郵件範本以覆蓋組織者預設設置\",\"YIDzi/\":\"建立自定義範本\",\"tsGqx5\":\"建立日期\",\"Nc3l/D\":\"建立折扣、隱藏門票的存取碼和特別優惠。\",\"GP6jMV\":\"create event →\",\"ZhXo4F\":\"為此日期建立\",\"eWEV9G\":\"建立新密碼\",\"wl2iai\":\"建立日程\",\"8AiKIu\":\"建立門票或商品\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"建立可追蹤連結以獎勵推廣您活動的合作夥伴。\",\"dkAPxi\":\"創建 Webhook\",\"5slqwZ\":\"建立您的活動\",\"JQNMrj\":\"建立你嘅第一個活動\",\"ZCSSd+\":\"建立您自己的活動\",\"67NsZP\":\"建立緊活動...\",\"H34qcM\":\"建立緊主辦方...\",\"1YMS+X\":\"建立緊你嘅活動,請稍候\",\"yiy8Jt\":\"建立緊你嘅主辦方資料,請稍候\",\"lfLHNz\":\"CTA標籤是必需的\",\"0xLR6W\":\"目前已指派\",\"iTvh6I\":\"目前可供購買\",\"A42Dqn\":\"自訂品牌\",\"Guo0lU\":\"自訂日期和時間\",\"mimF6c\":\"結帳後自訂訊息\",\"WDMdn8\":\"自訂問題\",\"O6mra8\":\"自訂問題\",\"axv/Mi\":\"自定義範本\",\"2YeVGY\":\"顧客連結已複製到剪貼簿\",\"QMHSMS\":\"客戶將收到確認退款的電子郵件\",\"L/Qc+w\":\"客戶電郵地址\",\"wpfWhJ\":\"客戶名字\",\"GIoqtA\":\"客戶姓氏\",\"NihQNk\":\"客戶\",\"7gsjkI\":\"使用Liquid範本自定義發送給客戶的郵件。這些範本將用作您組織中所有活動的預設範本。\",\"xJaTUK\":\"自訂活動首頁的版面配置、顏色和品牌。\",\"MXZfGN\":\"自訂結帳時提出的問題,以從參與者那裡收集重要資訊。\",\"iX6SLo\":\"自訂繼續按鈕上顯示的文字\",\"pxNIxa\":\"使用Liquid範本自定義您的郵件範本\",\"3trPKm\":\"自訂主辦單位頁面外觀\",\"U0sC6H\":\"每日\",\"/gWrVZ\":\"所有活動的每日收入、稅費和退款\",\"zgCHnE\":\"每日銷售報告\",\"nHm0AI\":\"每日銷售、税費和費用明細\",\"1aPnDT\":\"舞蹈\",\"pvnfJD\":\"深色\",\"MaB9wW\":\"日期取消\",\"e6cAxJ\":\"已取消日期\",\"81jBnC\":\"成功取消日期\",\"a/C/6R\":\"成功建立日期\",\"IW7Q+u\":\"已刪除日期\",\"rngCAz\":\"成功刪除日期\",\"lnYE59\":\"活動日期\",\"gnBreG\":\"下單日期\",\"vHbfoQ\":\"已重新啟用日期\",\"hvah+S\":\"日期已重新開放銷售\",\"Ez0YsD\":\"成功更新日期\",\"VTsZuy\":\"日期及時間可於此管理:\",\"/ITcnz\":\"日\",\"H7OUPr\":\"日\",\"JtHrX9\":\"月內第幾日\",\"J/Upwb\":\"日\",\"vDVA2I\":\"月內日期\",\"rDLvlL\":\"星期幾\",\"r6zgGo\":\"十二月\",\"jbq7j2\":\"拒絕\",\"ovBPCi\":\"預設\",\"JtI4vj\":\"預設參加者資料收集\",\"ULjv90\":\"每個日期的預設容量\",\"3R/Tu2\":\"預設費用處理\",\"1bZAZA\":\"將使用預設範本\",\"HNlEFZ\":\"刪除\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"刪除已選取的 \",[\"count\"],\" 個日期?已有訂單的日期會略過。此操作無法復原。\"],\"vu7gDm\":\"刪除推廣夥伴\",\"KZN4Lc\":\"全部刪除\",\"6EkaOO\":\"刪除日期\",\"io0G93\":\"刪除活動\",\"+jw/c1\":\"刪除圖片\",\"hdyeZ0\":\"刪除任務\",\"xxjZeP\":\"刪除地點\",\"sY3tIw\":\"刪除主辦方\",\"UBv8UK\":\"永久刪除\",\"dPyJ15\":\"刪除範本\",\"mxsm1o\":\"刪除此問題?此操作無法復原。\",\"snMaH4\":\"刪除 Webhook\",\"LIZZLY\":[\"已刪除 \",[\"0\"],\" 個日期\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"取消全選\",\"NvuEhl\":\"設計元素\",\"H8kMHT\":\"收唔到驗證碼?\",\"G8KNgd\":\"不同地點\",\"E/QGRL\":\"已停用\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"關閉此訊息\",\"BREO0S\":\"顯示一個複選框,允許客戶選擇接收此活動組織者的營銷通訊。\",\"pfa8F0\":\"顯示名稱\",\"Kdpf90\":\"別忘了!\",\"352VU2\":\"沒有帳戶?<0>註冊\",\"AXXqG+\":\"捐款\",\"DPfwMq\":\"完成\",\"JoPiZ2\":\"門口工作人員指引\",\"2+O9st\":\"下載所有已完成訂單的銷售、參與者和財務報告。\",\"eneWvv\":\"草稿\",\"Ts8hhq\":\"由於垃圾郵件風險高,您必須先連接 Stripe 帳戶才能修改電子郵件範本。這是為了確保所有活動主辦方都經過驗證並負責。\",\"TnzbL+\":\"由於垃圾訊息風險高,您必須先連接 Stripe 賬戶,方可向參加者發送訊息。\\n這是為了確保所有活動主辦方均經過驗證並承擔責任。\",\"euc6Ns\":\"複製\",\"YueC+F\":\"複製日期\",\"KRmTkx\":\"複製產品\",\"Jd3ymG\":\"時長必須至少為 1 分鐘。\",\"KIjvtr\":\"荷蘭語\",\"22xieU\":\"例如 180(3小時)\",\"/zajIE\":\"例如:早上場次\",\"SPKbfM\":\"例如:取得門票,立即註冊\",\"fc7wGW\":\"例如:關於您門票的重要更新\",\"54MPqC\":\"例如:標準版、進階版、企業版\",\"3RQ81z\":\"每位人士將收到一封包含預留名額的電子郵件,以完成購買。\",\"5oD9f/\":\"較早\",\"LTzmgK\":[\"編輯\",[\"0\"],\"範本\"],\"v4+lcZ\":\"編輯推廣夥伴\",\"2iZEz7\":\"編輯答案\",\"t2bbp8\":\"編輯參與者\",\"etaWtB\":\"編輯參與者詳情\",\"+guao5\":\"編輯配置\",\"1Mp/A4\":\"編輯日期\",\"m0ZqOT\":\"編輯地點\",\"8oivFT\":\"編輯地點\",\"vRWOrM\":\"編輯訂單詳情\",\"fW5sSv\":\"編輯 Webhook\",\"nP7CdQ\":\"編輯 Webhook\",\"MRZxAn\":\"已編輯\",\"uBAxNB\":\"編輯器\",\"aqxYLv\":\"教育\",\"iiWXDL\":\"資格失敗\",\"zPiC+q\":\"符合條件的簽到列表\",\"SiVstt\":\"電郵與排定訊息\",\"V2sk3H\":\"電子郵件和模板\",\"hbwCKE\":\"郵箱地址已複製到剪貼板\",\"dSyJj6\":\"電子郵件地址不匹配\",\"elW7Tn\":\"郵件正文\",\"ZsZeV2\":\"必須填寫電郵\",\"Be4gD+\":\"郵件預覽\",\"6IwNUc\":\"郵件範本\",\"H/UMUG\":\"需要電郵驗證\",\"L86zy2\":\"電郵驗證成功!\",\"FSN4TS\":\"嵌入小工具\",\"z9NkYY\":\"可嵌入小工具\",\"Qj0GKe\":\"啟用參與者自助服務\",\"hEtQsg\":\"預設啟用參與者自助服務\",\"Upeg/u\":\"啟用此範本發送郵件\",\"7dSOhU\":\"啟用候補名單\",\"RxzN1M\":\"已啟用\",\"xDr/ct\":\"結束\",\"sGjBEq\":\"結束日期與時間(可選)\",\"PKXt9R\":\"結束日期必須在開始日期之後\",\"UmzbPa\":\"場次的結束日期\",\"ZayGC7\":\"在某個日期結束\",\"48Y16Q\":\"結束時間(選填)\",\"jpNdOC\":\"場次的結束時間\",\"TbaYrr\":[\"已於 \",[\"0\"],\" 結束\"],\"CFgwiw\":[\"於 \",[\"0\"],\" 結束\"],\"SqOIQU\":\"輸入容量值或選擇無限制。\",\"h37gRz\":\"輸入標籤或選擇移除。\",\"7YZofi\":\"輸入主題和正文以查看預覽\",\"khyScF\":\"輸入要調整的時間。\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"輸入推廣夥伴電郵(選填)\",\"ARkzso\":\"輸入推廣夥伴名稱\",\"ej4L8b\":\"輸入容量\",\"6KnyG0\":\"輸入電郵\",\"INDKM9\":\"輸入郵件主題...\",\"xUgUTh\":\"輸入名字\",\"9/1YKL\":\"輸入姓氏\",\"VpwcSk\":\"輸入新密碼\",\"kWg31j\":\"輸入獨特推廣碼\",\"C3nD/1\":\"輸入您的電郵地址\",\"VmXiz4\":\"輸入您的電子郵件,我們將向您發送重置密碼的說明。\",\"n9V+ps\":\"輸入您的姓名\",\"IdULhL\":\"輸入您的增值稅號碼,包括國家代碼,不含空格(例如:IE1234567A、DE123456789)\",\"o21Y+P\":\"項\",\"X88/6w\":\"當客戶加入已售罄產品的候補名單時,條目將顯示在此處。\",\"LslKhj\":\"加載日誌時出錯\",\"VCNHvW\":\"活動已封存\",\"ZD0XSb\":\"活動已成功封存\",\"WgD6rb\":\"活動類別\",\"b46pt5\":\"活動封面圖片\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"活動已建立\",\"1Hzev4\":\"活動自定義範本\",\"7u9/DO\":\"活動已成功刪除\",\"imgKgl\":\"活動描述\",\"kJDmsI\":\"活動詳情\",\"m/N7Zq\":\"活動完整地址\",\"Nl1ZtM\":\"活動地點\",\"PYs3rP\":\"活動名稱\",\"HhwcTQ\":\"活動名稱\",\"WZZzB6\":\"必須填寫活動名稱\",\"Wd5CDM\":\"活動名稱應少於 150 個字元\",\"4JzCvP\":\"活動不可用\",\"Gh9Oqb\":\"活動組織者姓名\",\"mImacG\":\"活動頁面\",\"Hk9Ki/\":\"活動已成功還原\",\"JyD0LH\":\"活動設定\",\"cOePZk\":\"活動時間\",\"e8WNln\":\"活動時區\",\"GeqWgj\":\"活動時區\",\"XVLu2v\":\"活動標題\",\"OfmsI9\":\"活動太新\",\"4SILkp\":\"活動總計\",\"YDVUVl\":\"事件類型\",\"+HeiVx\":\"活動已更新\",\"4K2OjV\":\"活動場地\",\"19j6uh\":\"活動表現\",\"PC3/fk\":\"未來 24 小時內開始的活動\",\"nwiZdc\":[\"每 \",[\"0\"]],\"2LJU4o\":[\"每 \",[\"0\"],\" 日\"],\"yLiYx+\":[\"每 \",[\"0\"],\" 個月\"],\"nn9ice\":[\"每 \",[\"0\"],\" 星期\"],\"Cdr8f9\":[\"每 \",[\"0\"],\" 星期,於 \",[\"1\"]],\"GVEHRk\":[\"每 \",[\"0\"],\" 年\"],\"fTFfOK\":\"每個郵件範本都必須包含一個連結到相應頁面的行動號召按鈕\",\"BVinvJ\":\"例子:「您是如何得知我們的?」、「發票公司名稱」\",\"2hGPQG\":\"例子:「T恤尺碼」、「餐飲偏好」、「職位」\",\"qNuTh3\":\"異常\",\"M1RnFv\":\"已過期\",\"kF8HQ7\":\"匯出答案\",\"2KAI4N\":\"匯出CSV\",\"JKfSAv\":\"導出失敗。請重試。\",\"SVOEsu\":\"導出已開始。正在準備文件...\",\"wuyaZh\":\"匯出成功\",\"9bpUSo\":\"匯出緊推廣夥伴\",\"jtrqH9\":\"正在導出與會者\",\"R4Oqr8\":\"導出完成。正在下載文件...\",\"UlAK8E\":\"正在導出訂單\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"失敗\",\"8uOlgz\":\"失敗時間\",\"tKcbYd\":\"失敗任務\",\"SsI9v/\":\"放棄訂單失敗。請重試。\",\"LdPKPR\":\"指派配置失敗\",\"PO0cfn\":\"取消日期失敗\",\"YUX+f+\":\"取消日期失敗\",\"SIHgVQ\":\"取消訊息失敗\",\"cEFg3R\":\"建立推廣夥伴失敗\",\"dVgNF1\":\"建立配置失敗\",\"fAoRRJ\":\"建立日程失敗\",\"U66oUa\":\"建立範本失敗\",\"aFk48v\":\"刪除配置失敗\",\"n1CYMH\":\"刪除日期失敗\",\"KXv+Qn\":\"刪除日期失敗。該日期可能已有訂單。\",\"JJ0uRo\":\"刪除日期失敗\",\"rgoBnv\":\"刪除活動失敗\",\"Zw6LWb\":\"刪除任務失敗\",\"tq0abZ\":\"刪除任務失敗\",\"2mkc3c\":\"刪除主辦方失敗\",\"vKMKnu\":\"刪除問題失敗\",\"xFj7Yj\":\"刪除範本失敗\",\"jo3Gm6\":\"匯出推廣夥伴失敗\",\"Jjw03p\":\"導出與會者失敗\",\"ZPwFnN\":\"導出訂單失敗\",\"zGE3CH\":\"匯出報告失敗。請重試。\",\"lS9/aZ\":\"載入收件人失敗\",\"X4o0MX\":\"加載 Webhook 失敗\",\"ETcU7q\":\"提供名額失敗\",\"5670b9\":\"提供票券失敗\",\"e5KIbI\":\"重新啟用日期失敗\",\"7zyx8a\":\"從候補名單移除失敗\",\"A/P7PX\":\"移除覆寫失敗\",\"ogWc1z\":\"重新開放日期失敗\",\"0+iwE5\":\"重新排序問題失敗\",\"EJPAcd\":\"重新發送訂單確認失敗\",\"DjSbj3\":\"重新發送門票失敗\",\"YQ3QSS\":\"重新發送驗證碼失敗\",\"wDioLj\":\"重試任務失敗\",\"DKYTWG\":\"重試任務失敗\",\"WRREqF\":\"儲存覆寫失敗\",\"sj/eZA\":\"儲存價格覆寫失敗\",\"780n8A\":\"儲存產品設定失敗\",\"zTkTF3\":\"儲存範本失敗\",\"l6acRV\":\"儲存增值稅設定失敗。請重試。\",\"T6B2gk\":\"發送訊息失敗。請再試一次。\",\"lKh069\":\"無法啟動導出任務\",\"t/KVOk\":\"無法開始模擬。請重試。\",\"QXgjH0\":\"無法停止模擬。請重試。\",\"i0QKrm\":\"更新推廣夥伴失敗\",\"NNc33d\":\"更新答案失敗。\",\"E9jY+o\":\"更新參與者失敗\",\"uQynyf\":\"更新配置失敗\",\"i2PFQJ\":\"更新活動狀態失敗\",\"EhlbcI\":\"更新訊息級別失敗\",\"rpGMzC\":\"更新訂單失敗\",\"T2aCOV\":\"更新主辦方狀態失敗\",\"Eeo/Gy\":\"更新設定失敗\",\"kqA9lY\":\"更新增值稅設定失敗\",\"7/9RFs\":\"上傳圖片失敗。\",\"nkNfWu\":\"圖片上傳失敗。請再試一次。\",\"rxy0tG\":\"驗證電郵失敗\",\"QRUpCk\":\"親子\",\"5LO38w\":\"快速匯款到你的銀行\",\"4lgLew\":\"二月\",\"9bHCo2\":\"費用貨幣\",\"/sV91a\":\"費用處理\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"費用已繞過\",\"cf35MA\":\"節慶\",\"pAey+4\":\"檔案過大。最大大小為 5MB。\",\"VejKUM\":\"請先在上方填寫您的詳細信息\",\"/n6q8B\":\"電影\",\"L1qbUx\":\"篩選參加者\",\"8OvVZZ\":\"篩選參與者\",\"N/H3++\":\"按日期篩選\",\"mvrlBO\":\"按活動篩選\",\"g+xRXP\":\"完成 Stripe 設定\",\"LHH461\":\"Finish setup\",\"wq184+\":\"finish setup to start selling\",\"syyeb9\":\"第一\",\"1vBhpG\":\"第一位參與者\",\"4pwejF\":\"名字為必填項\",\"3lkYdQ\":\"固定費用\",\"6bBh3/\":\"固定費用\",\"zWqUyJ\":\"每筆交易收取的固定費用\",\"LWL3Bs\":\"固定費用必須為 0 或更高\",\"0RI8m4\":\"閃光燈關閉\",\"q0923e\":\"閃光燈開啟\",\"lWxAUo\":\"飲食\",\"nFm+5u\":\"頁腳文字\",\"a8nooQ\":\"第四\",\"mob/am\":\"五\",\"wtuVU4\":\"頻率\",\"xVhQZV\":\"星期五\",\"39y5bn\":\"星期五\",\"f5UbZ0\":\"完整資料擁有權\",\"MY2SVM\":\"全額退款\",\"UsIfa8\":\"完整解析地址\",\"PGQLdy\":\"未來\",\"8N/j1s\":\"只限未來日期\",\"yRx/6K\":\"未來日期將被複製,容量會重置為零\",\"T02gNN\":\"一般入場\",\"3ep0Gx\":\"關於您主辦單位的一般資訊\",\"ziAjHi\":\"產生\",\"exy8uo\":\"產生代碼\",\"4CETZY\":\"取得路線\",\"pjkEcB\":\"獲得付款\",\"lGYzP6\":\"透過 Stripe 收款\",\"ZDIydz\":\"開始使用\",\"u6FPxT\":\"購票\",\"8KDgYV\":\"準備好您的活動\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"返回\",\"oNL5vN\":\"前往活動頁面\",\"gHSuV/\":\"返回主頁\",\"8+Cj55\":\"前往日程\",\"6nDzTl\":\"良好的可讀性\",\"76gPWk\":\"知道了\",\"aGWZUr\":\"總收入\",\"n8IUs7\":\"總收入\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"賓客管理\",\"NUsTc4\":\"進行中\",\"kTSQej\":[\"您好 \",[\"0\"],\",從這裡管理您的平台。\"],\"dORAcs\":\"以下是與您郵箱關聯的所有票。\",\"g+2103\":\"呢個係你嘅推廣連結\",\"bVsnqU\":\"您好,\",\"/iE8xx\":\"Hi.Events 費用\",\"zppscQ\":\"Hi.Events 平台費用及每筆交易的增值稅明細\",\"D+zLDD\":\"已隱藏\",\"DRErHC\":\"對參與者隱藏 - 僅主辦方可見\",\"NNnsM0\":\"隱藏進階選項\",\"P+5Pbo\":\"隱藏答案\",\"VMlRqi\":\"隱藏詳情\",\"FmogyU\":\"隱藏選項\",\"gtEbeW\":\"突出顯示\",\"NF8sdv\":\"突出顯示訊息\",\"MXSqmS\":\"突出顯示此產品\",\"7ER2sc\":\"已突出顯示\",\"sq7vjE\":\"突出顯示的產品將具有不同的背景色,使其在活動頁面上脫穎而出。\",\"1+WSY1\":\"嗜好\",\"yY8wAv\":\"小時\",\"sy9anN\":\"客戶收到報價後完成購買的時限。留空表示無時間限制。\",\"n2ilNh\":\"日程持續多久?\",\"DMr2XN\":\"幾耐一次?\",\"AVpmAa\":\"如何離線付款\",\"cceMns\":\"我們向您收取的平台費用如何套用增值稅。\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"匈牙利語\",\"8Wgd41\":\"我確認本人作為資料控制者的責任\",\"O8m7VA\":\"我同意接收與此活動相關的電子郵件通知\",\"YLgdk5\":\"我確認這是與此活動相關的交易訊息\",\"4/kP5a\":\"如果未自動開啟新分頁,請點擊下方按鈕繼續結帳。\",\"W/eN+G\":\"如果留空,地址將用於生成 Google 地圖連結\",\"iIEaNB\":\"如果您在我們這裡有帳戶,您將收到一封電子郵件,其中包含如何重置密碼的說明。\",\"an5hVd\":\"圖片\",\"tSVr6t\":\"模擬\",\"TWXU0c\":\"模擬用戶\",\"5LAZwq\":\"模擬已開始\",\"IMwcdR\":\"模擬已停止\",\"0I0Hac\":\"重要通知\",\"yD3avI\":\"重要提示:更改您的電郵地址將更新存取此訂單的連結。儲存後,您將被重新導向至新的訂單連結。\",\"jT142F\":[[\"diffHours\"],\" 小時後\"],\"OoSyqO\":[[\"diffMinutes\"],\" 分鐘後\"],\"PdMhEx\":[\"最近 \",[\"0\"],\" 分鐘\"],\"u7r0G5\":\"實地 — 設定場地\",\"Ip0hl5\":\"in_person、online、unset 或 mixed\",\"F1Xp97\":\"個人與會者\",\"85e6zs\":\"插入Liquid標記\",\"38KFY0\":\"插入變數\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Stripe 即時付款\",\"nbfdhU\":\"整合\",\"I8eJ6/\":\"參加者票券上的內部備註\",\"B2Tpo0\":\"無效電郵\",\"5tT0+u\":\"電郵格式無效\",\"f9WRpE\":\"無效的檔案類型。請上傳圖片。\",\"tnL+GP\":\"無效的Liquid語法。請更正後再試。\",\"N9JsFT\":\"無效的增值稅號碼格式\",\"g+lLS9\":\"邀請團隊成員\",\"1z26sk\":\"邀請團隊成員\",\"KR0679\":\"邀請團隊成員\",\"aH6ZIb\":\"邀請您的團隊\",\"IuMGvq\":\"發票\",\"Lj7sBL\":\"意大利語\",\"F5/CBH\":\"項目\",\"BzfzPK\":\"項目\",\"rjyWPb\":\"一月\",\"KmWyx0\":\"任務\",\"o5r6b2\":\"任務已刪除\",\"cd0jIM\":\"任務詳情\",\"ruJO57\":\"任務名稱\",\"YZi+Hu\":\"任務已排隊等待重試\",\"nCywLA\":\"隨時隨地加入\",\"SNzppu\":\"加入候補名單\",\"dLouFI\":[\"加入 \",[\"productDisplayName\"],\" 的候補名單\"],\"2gMuHR\":\"已加入\",\"u4ex5r\":\"七月\",\"zeEQd/\":\"六月\",\"MxjCqk\":\"只是在找您的票?\",\"xOTzt5\":\"剛剛\",\"0RihU9\":\"剛結束\",\"lB2hSG\":[\"讓我隨時了解來自 \",[\"0\"],\" 的新聞和活動\"],\"ioFA9i\":\"保留利潤。\",\"4Sffp7\":\"場次的標籤\",\"o66QSP\":\"標籤更新\",\"RtKKbA\":\"最後\",\"DruLRc\":\"過去14天\",\"ve9JTU\":\"姓氏為必填項\",\"h0Q9Iw\":\"最新響應\",\"gw3Ur5\":\"最近觸發\",\"FIq1Ba\":\"稍後\",\"xvnLMP\":\"最新簽到\",\"pzAivY\":\"解析位置的緯度\",\"N5TErv\":\"留空表示無限制\",\"L/hDDD\":\"留空以將此簽到名單套用至所有場次\",\"9Pf3wk\":\"保持啟用以涵蓋活動的所有門票。關閉以選擇特定門票。\",\"Hq2BzX\":\"通知佢哋呢個變更\",\"+uexiy\":\"通知佢哋呢啲變更\",\"exYcTF\":\"圖書館\",\"1njn7W\":\"淺色\",\"1qY5Ue\":\"連結已過期或無效\",\"+zSD/o\":\"活動主頁連結\",\"psosdY\":\"訂單詳情連結\",\"6JzK4N\":\"門票連結\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"允許連結\",\"2BBAbc\":\"清單\",\"5NZpX8\":\"清單檢視\",\"dF6vP6\":\"已上線\",\"fpMs2Z\":\"直播\",\"D9zTjx\":\"直播活動\",\"C33p4q\":\"已載入的日期\",\"WdmJIX\":\"載入預覽中...\",\"IoDI2o\":\"載入標記中...\",\"G3Ge9Z\":\"正在載入 Webhook 日誌...\",\"NFxlHW\":\"正在加載 Webhook\",\"E0DoRM\":\"已刪除地點\",\"NtLHT3\":\"地點格式化地址\",\"h4vxDc\":\"地點緯度\",\"f2TMhR\":\"地點經度\",\"lnCo2f\":\"地點模式\",\"8pmGFk\":\"地點名稱\",\"7w8lJU\":\"已儲存地點\",\"YsRXDD\":\"已更新地點\",\"A/kIva\":\"地點更新\",\"VppBoU\":\"地點\",\"iG7KNr\":\"標誌\",\"vu7ZGG\":\"標誌與封面\",\"gddQe0\":\"您主辦單位的標誌與封面圖片\",\"TBEnp1\":\"標誌將顯示於頁首\",\"Jzu30R\":\"標誌將顯示在門票上\",\"zKTMTg\":\"解析位置的經度\",\"PSRm6/\":\"查找我的門票\",\"yJFu/X\":\"主要辦公室\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"管理 \",[\"0\"]],\"wZJfA8\":\"管理您循環活動的日期及時間\",\"RlzPUE\":\"在 Stripe 上管理\",\"6NXJRK\":\"管理日程\",\"zXuaxY\":\"管理活動的候補名單、檢視統計,並向參加者提供門票。\",\"BWTzAb\":\"手動\",\"g2npA5\":\"手動提供\",\"hg6l4j\":\"三月\",\"pqRBOz\":\"標記為已驗證(管理員覆寫)\",\"2L3vle\":\"最大訊息數 / 24小時\",\"Qp4HWD\":\"最大收件人數 / 訊息\",\"3JzsDb\":\"五月\",\"agPptk\":\"媒介\",\"xDAtGP\":\"訊息\",\"bECJqy\":\"訊息批准成功\",\"1jRD0v\":\"向與會者發送特定門票的信息\",\"uQLXbS\":\"訊息已取消\",\"48rf3i\":\"訊息不能超過5000個字符\",\"ZPj0Q8\":\"訊息詳情\",\"Vjat/X\":\"必須填寫訊息\",\"0/yJtP\":\"向具有特定產品的訂單所有者發送消息\",\"saG4At\":\"訊息已排程\",\"mFdA+i\":\"訊息級別\",\"v7xKtM\":\"訊息級別更新成功\",\"H9HlDe\":\"分鐘\",\"agRWc1\":\"分鐘\",\"YYzBv9\":\"一\",\"zz/Wd/\":\"模式\",\"fpMgHS\":\"星期一\",\"hty0d5\":\"星期一\",\"JbIgPz\":\"貨幣金額是所有貨幣的大致總和\",\"qvF+MT\":\"監控和管理失敗的後台任務\",\"kY2ll9\":\"月\",\"HajiZl\":\"月\",\"+8Nek/\":\"每月\",\"1LkxnU\":\"每月模式\",\"6jefe3\":\"個月\",\"f8jrkd\":\"更多\",\"JcD7qf\":\"更多操作\",\"w36OkR\":\"最多瀏覽活動(過去14天)\",\"+Y/na7\":\"將所有日期提前或延後\",\"3DIpY0\":\"多個地點\",\"g9cQCP\":\"多種門票類型\",\"GfaxEk\":\"音樂\",\"oVGCGh\":\"我的票\",\"8/brI5\":\"必須填寫名稱\",\"sFFArG\":\"名稱必須少於 255 個字元\",\"sCV5Yc\":\"活動名稱\",\"xxU3NX\":\"淨收入\",\"7I8LlL\":\"新容量\",\"n1GRql\":\"新標籤\",\"y0Fcpd\":\"新地點\",\"ArHT/C\":\"新註冊\",\"uK7xWf\":\"新時間:\",\"veT5Br\":\"下個場次\",\"WXtl5X\":[\"下次:\",[\"nextFormatted\"]],\"eWRECP\":\"夜生活\",\"HSw5l3\":\"否 - 我是個人或非增值稅註冊企業\",\"VHfLAW\":\"無帳戶\",\"+jIeoh\":\"未找到賬戶\",\"074+X8\":\"沒有活動的 Webhook\",\"zxnup4\":\"冇推廣夥伴可顯示\",\"Dwf4dR\":\"暫無參與者問題\",\"th7rdT\":\"沒有參加者\",\"PKySlW\":\"此日期暫無參加者。\",\"/UC6qk\":\"未找到歸因數據\",\"E2vYsO\":\"Stripe 尚未報告任何功能。\",\"amMkpL\":\"無容量\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"此活動沒有可用的簽到列表。\",\"wG+knX\":\"暫無簽到\",\"+dAKxg\":\"找不到配置\",\"LiLk8u\":\"沒有可用的連接\",\"eb47T5\":\"未找到所選篩選條件的數據。請嘗試調整日期範圍或貨幣。\",\"lFVUyx\":\"沒有針對此日期的簽到名單\",\"I8mtzP\":\"本月沒有可用日期。請瀏覽其他月份。\",\"yDukIL\":\"沒有日期符合目前的篩選條件。\",\"B7phdj\":\"沒有日期符合您的篩選條件\",\"/ZB4Um\":\"沒有日期符合您的搜尋\",\"gEdNe8\":\"尚未安排日期\",\"27GYXJ\":\"尚未安排日期。\",\"pZNOT9\":\"沒有結束日期\",\"dW40Uz\":\"未找到活動\",\"8pQ3NJ\":\"未來 24 小時內沒有活動開始\",\"VieNOC\":\"No events yet —\",\"Yc5YW6\":\"沒有失敗的任務\",\"EpvBAp\":\"無發票\",\"XZkeaI\":\"未找到日誌\",\"nrSs2u\":\"未找到訊息\",\"Rj99yx\":\"沒有可用場次\",\"IFU1IG\":\"此日期沒有場次\",\"OVFwlg\":\"暫無訂單問題\",\"EJ7bVz\":\"找不到訂單\",\"kAaP1p\":\"No orders yet — they'll appear here when customers buy tickets.\",\"a77B6w\":\"此日期暫無訂單。\",\"wUv5xQ\":\"過去14天沒有主辦方活動\",\"vLd1tV\":\"無可用的主辦方資料。\",\"B7w4KY\":\"沒有其他可用的主辦單位\",\"PChXMe\":\"無付費訂單\",\"6jYQGG\":\"沒有過往活動\",\"CHzaTD\":\"過去14天沒有熱門活動\",\"zK/+ef\":\"沒有可供選擇的產品\",\"M1/lXs\":\"此活動未設定任何產品。\",\"kY7XDn\":\"沒有產品有等候名單條目\",\"wYiAtV\":\"沒有最近的帳戶註冊\",\"UW90md\":\"未找到收件人\",\"QoAi8D\":\"無響應\",\"JeO7SI\":\"未回覆\",\"EK/G11\":\"尚無響應\",\"7J5OKy\":\"尚未儲存任何地點\",\"wpCjcf\":\"尚未儲存任何地點。當您建立含地址的活動後,地點便會在此顯示。\",\"mPdY6W\":\"沒有建議\",\"3sRuiW\":\"未找到票\",\"k2C0ZR\":\"沒有即將舉行的日期\",\"yM5c0q\":\"沒有即將舉行的活動\",\"qpC74J\":\"未找到用戶\",\"8wgkoi\":\"過去14天沒有瀏覽的活動\",\"Arzxc1\":\"沒有候補名單條目\",\"n5vdm2\":\"此端點尚未記錄任何 Webhook 事件。事件觸發後將顯示在此處。\",\"4GhX3c\":\"沒有 Webhooks\",\"4+am6b\":\"否,保留在此\",\"4JVMUi\":\"未編輯\",\"Itw24Q\":\"未簽到\",\"x5+Lcz\":\"未簽到\",\"8n10sz\":\"不符合條件\",\"kLvU3F\":\"通知參加者並停止銷售\",\"t9QlBd\":\"十一月\",\"kAREMN\":\"建立日期數量\",\"6u1B3O\":\"場次\",\"mmoE62\":\"場次已取消\",\"UYWXdN\":\"場次結束日期\",\"k7dZT5\":\"場次結束時間\",\"Opinaj\":\"場次標籤\",\"V9flmL\":\"場次日程\",\"NUTUUs\":\"場次日程頁面\",\"AT8UKD\":\"場次開始日期\",\"Um8bvD\":\"場次開始時間\",\"Kh3WO8\":\"場次摘要\",\"byXCTu\":\"場次\",\"KATw3p\":\"場次(只限未來)\",\"85rTR2\":\"建立後可設定場次\",\"dzQfDY\":\"十月\",\"BwJKBw\":\"共\",\"9h7RDh\":\"提供\",\"EfK2O6\":\"提供名額\",\"3sVRey\":\"提供門票\",\"2O7Ybb\":\"報價逾時\",\"1jUg5D\":\"已提供\",\"l+/HS6\":[\"報價將在 \",[\"timeoutHours\"],\" 小時後過期。\"],\"lQgMLn\":\"辦公室或場地名稱\",\"6Aih4U\":\"離線\",\"Z6gBGW\":\"離線付款\",\"nO3VbP\":[\"正在銷售 \",[\"0\"]],\"oXOSPE\":\"線上\",\"aqmy5k\":\"線上 — 提供連接詳情\",\"LuZBbx\":\"線上及線下\",\"IXuOqt\":\"線上及線下 — 請參閱日程\",\"w3DG44\":\"線上連線詳情\",\"WjSpu5\":\"線上活動\",\"TP6jss\":\"線上活動連線詳情\",\"NdOxqr\":\"只有帳戶管理員可以刪除或封存活動。請聯絡您的帳戶管理員尋求協助。\",\"rnoDMF\":\"只有帳戶管理員可以刪除或封存主辦方。請聯絡您的帳戶管理員尋求協助。\",\"bU7oUm\":\"僅發送給具有這些狀態的訂單\",\"M2w1ni\":\"僅使用促銷代碼時可見\",\"y8Bm7C\":\"開啟簽到\",\"RLz7P+\":\"開啟場次\",\"cDSdPb\":\"可選暱稱,會顯示於選擇器,例如「總部會議室」\",\"HXMJxH\":\"免責聲明、聯繫信息或感謝說明的可選文本(僅單行)\",\"L565X2\":\"選項\",\"8m9emP\":\"或新增單一日期\",\"dSeVIm\":\"訂單\",\"c/TIyD\":\"訂單及門票\",\"H5qWhm\":\"訂單已取消\",\"b6+Y+n\":\"訂單完成\",\"x4MLWE\":\"訂單確認\",\"CsTTH0\":\"訂單確認重新發送成功\",\"ppuQR4\":\"訂單已創建\",\"0UZTSq\":\"訂單貨幣\",\"xtQzag\":\"訂單詳情\",\"HdmwrI\":\"訂單電郵\",\"bwBlJv\":\"訂單名字\",\"vrSW9M\":\"訂單已取消並退款。訂單所有者已收到通知。\",\"rzw+wS\":\"訂單持有人\",\"oI/hGR\":\"訂單編號\",\"Pc729f\":\"訂單等待線下支付\",\"F4NXOl\":\"訂單姓氏\",\"RQCXz6\":\"訂單限制\",\"SO9AEF\":\"已設定訂單限制\",\"5RDEEn\":\"訂單語言\",\"vu6Arl\":\"訂單標記為已支付\",\"sLbJQz\":\"未找到訂單\",\"kvYpYu\":\"找不到訂單\",\"i8VBuv\":\"訂單號\",\"eJ8SvM\":\"訂單號、購買日期、購買者電郵\",\"FaPYw+\":\"訂單所有者\",\"eB5vce\":\"具有特定產品的訂單所有者\",\"CxLoxM\":\"具有產品的訂單所有者\",\"DoH3fD\":\"訂單付款待處理\",\"UkHo4c\":\"訂單參考\",\"EZy55F\":\"訂單已退款\",\"6eSHqs\":\"訂單狀態\",\"oW5877\":\"訂單總額\",\"e7eZuA\":\"訂單已更新\",\"1SQRYo\":\"訂單更新成功\",\"KndP6g\":\"訂單連結\",\"3NT0Ck\":\"訂單已被取消\",\"V5khLm\":\"訂單\",\"sd5IMt\":\"已完成訂單\",\"5It1cQ\":\"訂單已導出\",\"tlKX/S\":\"跨越多個日期的訂單將會被標記以待人工審核。\",\"UQ0ACV\":\"訂單總額\",\"B/EBQv\":\"訂單:\",\"qtGTNu\":\"自然帳戶\",\"ucgZ0o\":\"組織\",\"P/JHA4\":\"主辦方已成功封存\",\"S3CZ5M\":\"主辦單位儀表板\",\"GzjTd0\":\"主辦方已成功刪除\",\"Uu0hZq\":\"組織者郵箱\",\"Gy7BA3\":\"組織者電子郵件地址\",\"SQqJd8\":\"找不到主辦單位\",\"HF8Bxa\":\"主辦方已成功還原\",\"wpj63n\":\"主辦單位設定\",\"o1my93\":\"更新主辦單位狀態失敗。請稍後再試。\",\"rLHma1\":\"主辦單位狀態已更新\",\"LqBITi\":\"將使用組織者/預設範本\",\"q4zH+l\":\"主辦方\",\"/IX/7x\":\"其他\",\"RsiDDQ\":\"其他列表(不包含此票)\",\"aDfajK\":\"戶外\",\"qMASRF\":\"發出的訊息\",\"iCOVQO\":\"覆寫\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"覆寫價格\",\"cnVIpl\":\"已移除覆寫\",\"6/dCYd\":\"總覽\",\"6WdDG7\":\"頁面\",\"8uqsE5\":\"頁面不再可用\",\"QkLf4H\":\"頁面網址\",\"sF+Xp9\":\"頁面瀏覽量\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"付費帳戶\",\"5F7SYw\":\"部分退款\",\"fFYotW\":[\"部分退款:\",[\"0\"]],\"i8day5\":\"將費用轉嫁給買家\",\"k4FLBQ\":\"轉嫁給買家\",\"Ff0Dor\":\"過去\",\"BFjW8X\":\"逾期\",\"xTPjSy\":\"過往活動\",\"/l/ckQ\":\"貼上網址\",\"URAE3q\":\"已暫停\",\"4fL/V7\":\"付款\",\"OZK07J\":\"付款解鎖\",\"c2/9VE\":\"負載數據\",\"5cxUwd\":\"付款日期\",\"ENEPLY\":\"付款方式\",\"8Lx2X7\":\"已收到付款\",\"fx8BTd\":\"付款不可用\",\"C+ylwF\":\"提款\",\"UbRKMZ\":\"待處理\",\"UkM20g\":\"待審核\",\"dPYu1F\":\"每位參與者\",\"mQV/nJ\":\"每分鐘\",\"VlXNyK\":\"每份訂單\",\"hauDFf\":\"每張門票\",\"mnF83a\":\"百分比費用\",\"TNLuRD\":\"百分比費用 (%)\",\"MixU2P\":\"百分比必須介於 0 到 100 之間\",\"MkuVAZ\":\"交易金額的百分比\",\"/Bh+7r\":\"表現\",\"fIp56F\":\"永久刪除此活動及其所有相關資料。\",\"nJeeX7\":\"永久刪除此主辦方及其所有活動。\",\"wfCTgK\":\"永久移除此日期\",\"6kPk3+\":\"個人資料\",\"zmwvG2\":\"電話\",\"SdM+Q1\":\"選擇地點\",\"tSR/oe\":\"選擇結束日期\",\"e8kzpp\":\"至少選擇一個月內日期\",\"35C8QZ\":\"至少選擇一個星期\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"下單\",\"wBJR8i\":\"計劃舉辦活動?\",\"J3lhKT\":\"平台費用\",\"RD51+P\":[\"從您的付款中扣除 \",[\"0\"],\" 的平台費用\"],\"br3Y/y\":\"平台費用\",\"3buiaw\":\"平台費用報告\",\"kv9dM4\":\"平台收入\",\"PJ3Ykr\":\"請查閱您的門票以取得更新時間。您的門票仍然有效 — 除非新時間不適合您,否則無需任何行動。如有疑問,請回覆此電郵。\",\"OtjenF\":\"請輸入有效的電子郵件地址\",\"jEw0Mr\":\"請輸入有效的 URL\",\"n8+Ng/\":\"請輸入5位數驗證碼\",\"r+lQXT\":\"請輸入您的增值稅號碼\",\"Dvq0wf\":\"請提供圖片。\",\"2cUopP\":\"請重新開始結賬流程。\",\"GoXxOA\":\"請選擇日期及時間\",\"8KmsFa\":\"請選擇日期範圍\",\"EFq6EG\":\"請選擇圖片。\",\"fuwKpE\":\"請再試一次。\",\"klWBeI\":\"請等一陣再申請新嘅驗證碼\",\"hfHhaa\":\"請稍候,我哋準備緊匯出你嘅推廣夥伴...\",\"o+tJN/\":\"請稍候,我們正在準備導出您的與會者...\",\"+5Mlle\":\"請稍候,我們正在準備導出您的訂單...\",\"trnWaw\":\"波蘭語\",\"luHAJY\":\"熱門活動(過去14天)\",\"p/78dY\":\"位置\",\"TjX7xL\":\"結帳後訊息\",\"OESu7I\":\"透過在多種門票類型之間共享庫存來防止超賣。\",\"NgVUL2\":\"預覽結帳表單\",\"cs5muu\":\"預覽活動頁面\",\"+4yRWM\":\"門票價格\",\"Jm2AC3\":\"價格層級\",\"a5jvSX\":\"價格等級\",\"ReihZ7\":\"列印預覽\",\"JnuPvH\":\"列印門票\",\"tYF4Zq\":\"列印為PDF\",\"LcET2C\":\"私隱政策\",\"8z6Y5D\":\"處理退款\",\"JcejNJ\":\"處理訂單中\",\"EWCLpZ\":\"產品已創建\",\"XkFYVB\":\"產品已刪除\",\"YMwcbR\":\"產品銷售、收入和税費明細\",\"ls0mTC\":\"已取消的日期無法編輯產品設定。\",\"2339ej\":\"成功儲存產品設定\",\"ldVIlB\":\"產品已更新\",\"CP3D8G\":\"進度\",\"JoKGiJ\":\"優惠碼\",\"k3wH7i\":\"促銷碼使用情況及折扣明細\",\"tZqL0q\":\"促銷代碼\",\"oCHiz3\":\"促銷代碼\",\"uEhdRh\":\"僅限促銷\",\"dLm8V5\":\"促銷電子郵件可能導致帳戶被暫停\",\"XoEWtl\":\"請為新地點提供至少一個地址欄位。\",\"2W/7Gz\":\"請在 Stripe 下次審核前提供以下資料,以維持提款。\",\"aemBRq\":\"供應商\",\"EEYbdt\":\"發佈\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"已購買\",\"JunetL\":\"購買者\",\"phmeUH\":\"購買者電郵\",\"ywR4ZL\":\"QR 碼簽到\",\"oWXNE5\":\"數量\",\"biEyJ4\":\"問題回答\",\"k/bJj0\":\"問題已重新排序\",\"b24kPi\":\"隊列\",\"lTPqpM\":\"貼士\",\"fqDzSu\":\"費率\",\"mnUGVC\":\"超出速率限制。請稍後再試。\",\"t41hVI\":\"重新提供名額\",\"TNclgc\":\"重新啟用此日期?將會重新開放未來銷售。\",\"uqoRbb\":\"即時數據分析\",\"xzRvs4\":[\"接收 \",[\"0\"],\" 的產品更新。\"],\"pLXbi8\":\"最近帳戶註冊\",\"3kJ0gv\":\"最近參加者\",\"qhfiwV\":\"最近簽到\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"最近訂單\",\"7hPBBn\":\"位收件人\",\"jp5bq8\":\"位收件人\",\"yPrbsy\":\"收件人\",\"E1F5Ji\":\"收件人在訊息發送後可用\",\"wuhHPE\":\"循環\",\"asLqwt\":\"循環活動\",\"D0tAMe\":\"循環活動\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"正在重定向到 Stripe...\",\"pnoTN5\":\"推薦帳戶\",\"ACKu03\":\"刷新預覽\",\"vuFYA6\":\"為這些日期的所有訂單退款\",\"4cRUK3\":\"為此日期的所有訂單退款\",\"fKn/k6\":\"退款金額\",\"qY4rpA\":\"退款失敗\",\"TspTcZ\":\"已發出退款\",\"FaK/8G\":[\"退款訂單 \",[\"0\"]],\"MGbi9P\":\"退款待處理\",\"BDSRuX\":[\"已退款:\",[\"0\"]],\"bU4bS1\":\"退款\",\"rYXfOA\":\"地區設定\",\"5tl0Bp\":\"註冊問題\",\"ZNo5k1\":\"剩餘\",\"EMnuA4\":\"已排定提醒\",\"Bjh87R\":\"從所有日期移除標籤\",\"KkJtVK\":\"重新開放銷售\",\"XJwWJp\":\"重新開放此日期進行銷售?之前已取消的票券將不會被恢復 — 受影響的參加者保持已取消狀態,已發放的退款亦不會被撤銷。\",\"bAwDQs\":\"重複間隔\",\"CQeZT8\":\"未找到報告\",\"JEPMXN\":\"請求新連結\",\"TMLAx2\":\"必填\",\"mdeIOH\":\"重新發送驗證碼\",\"sQxe68\":\"重新發送確認\",\"bxoWpz\":\"重新發送確認電郵\",\"G42SNI\":\"重新發送電郵\",\"TTpXL3\":[[\"resendCooldown\"],\"秒後重新發送\"],\"5CiNPm\":\"重新發送門票\",\"Uwsg2F\":\"已預留\",\"8wUjGl\":\"保留至\",\"a5z8mb\":\"重設為基本價格\",\"kCn6wb\":\"重置中...\",\"404zLK\":\"已解析的地點或場地名稱\",\"ZlCDf+\":\"回覆\",\"bsydMp\":\"回覆詳情\",\"yKu/3Y\":\"還原\",\"RokrZf\":\"還原活動\",\"/JyMGh\":\"還原主辦方\",\"HFvFRb\":\"還原此活動以使其再次可見。\",\"DDIcqy\":\"還原此主辦方並使其重新活躍。\",\"mO8KLE\":\"結果\",\"6gRgw8\":\"重試\",\"1BG8ga\":\"全部重試\",\"rDC+T6\":\"重試任務\",\"CbnrWb\":\"返回活動\",\"mdQ0zb\":\"可重用的活動場地。從自動完成建立的地點會自動儲存於此。\",\"XFOPle\":\"重複使用\",\"1Zehp4\":\"重複使用此帳戶下其他主辦者的 Stripe 連接。\",\"Oo/PLb\":\"收入摘要\",\"O/8Ceg\":\"今日收益\",\"CfuueU\":\"撤回優惠\",\"RIgKv+\":\"執行至指定日期\",\"JYRqp5\":\"六\",\"dFFW9L\":[\"銷售已於 \",[\"0\"],\" 結束\"],\"loCKGB\":[\"銷售於 \",[\"0\"],\" 結束\"],\"wlfBad\":\"銷售期間\",\"qi81Jg\":\"銷售期日期適用於日程中所有日期。如要控制個別日期的定價及上架情況,請使用<0>場次日程頁面的覆寫設定。\",\"5CDM6r\":\"已設定銷售期間\",\"ftzaMf\":\"銷售期間、訂單限制、可見性\",\"zpekWp\":[\"銷售於 \",[\"0\"],\" 開始\"],\"mUv9U4\":\"銷售\",\"9KnRdL\":\"銷售已暫停\",\"JC3J0k\":\"每個場次的銷售、出席及簽到詳情\",\"3VnlS9\":\"所有活動的銷售、訂單和表現指標\",\"3Q1AWe\":\"銷售額:\",\"LeuERW\":\"與活動相同\",\"B4nE3N\":\"示例票價\",\"8BRPoH\":\"示例場地\",\"PiK6Ld\":\"星期六\",\"+5kO8P\":\"星期六\",\"zJiuDn\":\"儲存費用覆寫\",\"NB8Uxt\":\"儲存日程\",\"KZrfYJ\":\"儲存社交連結\",\"9Y3hAT\":\"儲存範本\",\"C8ne4X\":\"儲存門票設計\",\"cTI8IK\":\"儲存增值稅設定\",\"6/TNCd\":\"儲存增值稅設定\",\"4RvD9q\":\"已儲存地點\",\"cgw0cL\":\"已儲存地點\",\"lvSrsT\":\"已儲存地點\",\"Fbqm/I\":\"如果目前使用系統預設,儲存覆寫會為此主辦方建立專屬配置。\",\"I+FvbD\":\"掃描\",\"0zd6Nm\":\"掃描票券以為參加者簽到\",\"bQG7Qk\":\"掃描的票券將顯示於此\",\"WDYSLJ\":\"掃描模式\",\"gmB6oO\":\"日程\",\"j6NnBq\":\"成功建立日程\",\"YP7frt\":\"日程結束於\",\"QS1Nla\":\"稍後發送\",\"NAzVVw\":\"排程訊息\",\"Fz09JP\":\"排程開始日期\",\"4ba0NE\":\"已排程\",\"qcP/8K\":\"排程時間\",\"A1taO8\":\"搜尋\",\"ftNXma\":\"搜尋推廣夥伴...\",\"VMU+zM\":\"搜尋參加者\",\"VY+Bdn\":\"按賬戶名稱或電子郵件搜尋...\",\"VX+B3I\":\"按活動標題或主辦方搜索...\",\"R0wEyA\":\"按任務名稱或異常搜索...\",\"VT+urE\":\"按姓名或電子郵件搜尋...\",\"GHdjuo\":\"按姓名、電子郵件或帳戶搜索...\",\"4mBFO7\":\"按姓名、訂單、票號或電郵搜尋\",\"20ce0U\":\"按訂單編號、客戶姓名或電子郵件搜尋...\",\"4DSz7Z\":\"按主題、活動或賬戶搜索...\",\"nQC7Z9\":\"搜尋日期...\",\"iRtEpV\":\"搜尋日期…\",\"JRM7ao\":\"搜尋地址\",\"BWF1kC\":\"搜尋訊息...\",\"3aD3GF\":\"季節性\",\"ku//5b\":\"第二\",\"Mck5ht\":\"安全結帳\",\"s7tXqF\":\"查看日程\",\"JFap6u\":\"查看 Stripe 還需要什麼\",\"p7xUrt\":\"選擇類別\",\"hTKQwS\":\"選擇日期及時間\",\"e4L7bF\":\"選擇一則訊息查看其內容\",\"zPRPMf\":\"選擇級別\",\"uqpVri\":\"選擇時間\",\"BFRSTT\":\"選擇帳戶\",\"wgNoIs\":\"全選\",\"mCB6Je\":\"全選\",\"aCEysm\":[\"選取 \",[\"0\"],\" 的全部\"],\"a6+167\":\"選擇活動\",\"CFbaPk\":\"選擇參加者群組\",\"88a49s\":\"選擇相機\",\"tVW/yo\":\"選擇貨幣\",\"SJQM1I\":\"選擇日期\",\"n9ZhRa\":\"選擇結束日期與時間\",\"gTN6Ws\":\"選擇結束時間\",\"0U6E9W\":\"選擇活動類別\",\"j9cPeF\":\"選擇事件類型\",\"ypTjHL\":\"選擇場次\",\"KizCK7\":\"選擇開始日期與時間\",\"dJZTv2\":\"選擇開始時間\",\"x8XMsJ\":\"為此帳戶選擇訊息級別。這控制訊息限制和連結權限。\",\"aT3jZX\":\"選擇時區\",\"TxfvH2\":\"選擇哪些參加者應該收到此訊息\",\"Ropvj0\":\"選擇哪些事件將觸發此 Webhook\",\"+6YAwo\":\"已選取\",\"ylXj1N\":\"已選擇\",\"uq3CXQ\":\"活動售罄。\",\"j9b/iy\":\"熱賣中 🔥\",\"73qYgo\":\"作為測試發送\",\"HMAqFK\":\"向參與者、持票人或訂單擁有者發送電子郵件。訊息可以立即發送或安排稍後發送。\",\"22Itl6\":\"發送副本給我\",\"NpEm3p\":\"立即發送\",\"nOBvex\":\"將即時訂單和參與者資料傳送到您的外部系統。\",\"1lNPhX\":\"發送退款通知郵件\",\"eaUTwS\":\"發送重置連結\",\"5cV4PY\":\"傳送至所有場次,或選擇特定場次\",\"QEQlnV\":\"發送您的第一則訊息\",\"3nMAVT\":\"將於 2 日 4 小時後發送\",\"IoAuJG\":\"發送中...\",\"h69WC6\":\"已發送\",\"BVu2Hz\":\"發送者\",\"ZFa8wv\":\"當已排定的日期取消時發送給參加者\",\"SPdzrs\":\"客戶下訂時發送\",\"LxSN5F\":\"發送給每位參會者及其門票詳情\",\"hgvbYY\":\"九月\",\"5sN96e\":\"場次已取消\",\"89xaFU\":\"為此主辦方創建的新活動設置預設平台費用設置。\",\"eXssj5\":\"為此主辦單位下創建的新活動設定預設設定。\",\"uPe5p8\":\"設定每個日期的時長\",\"xNsRxU\":\"設定日期數量\",\"ODuUEi\":\"設定或清除日期標籤\",\"buHACR\":\"將每個日期的結束時間設定為開始時間之後這段時間。\",\"TaeFgl\":\"設為無限制(移除上限)\",\"pd6SSe\":\"設定循環日程以自動建立日期,或逐個新增。\",\"s0FkEx\":\"為不同的入口、場次或日期設定簽到列表。\",\"TaWVGe\":\"設定付款\",\"gzXY7l\":\"設定日程\",\"xMO+Ao\":\"設定你嘅機構\",\"h/9JiC\":\"設定您的日程\",\"ETC76A\":\"設定、更改或移除該場次的地點或線上詳情\",\"C3htzi\":\"設定已更新\",\"Ohn74G\":\"設定與設計\",\"1W5XyZ\":\"設定只需幾分鐘——你不需要既有的 Stripe 帳戶。Stripe 會處理信用卡、電子錢包、地區性付款方式及防詐騙保護,讓你專心籌備活動。\",\"GG7qDw\":\"分享推廣連結\",\"hL7sDJ\":\"分享主辦單位頁面\",\"jy6QDF\":\"共享容量管理\",\"jDNHW4\":\"調整時間\",\"tPfIaW\":[\"已調整 \",[\"count\"],\" 個日期的時間\"],\"WwlM8F\":\"顯示進階選項\",\"cMW+gm\":[\"顯示所有平台(另有 \",[\"0\"],\" 個有內容)\"],\"wXi9pZ\":\"向未登入員工顯示備註\",\"UVPI5D\":\"顯示較少平台\",\"Eu/N/d\":\"顯示營銷訂閱複選框\",\"SXzpzO\":\"預設顯示營銷訂閱複選框\",\"57tTk5\":\"顯示更多日期\",\"b33PL9\":\"顯示更多平台\",\"Eut7p9\":\"向未登入員工顯示訂單詳情\",\"+RoWKN\":\"向未登入員工顯示回答\",\"t1LIQW\":[\"顯示 \",[\"0\"],\" / \",[\"totalRows\"],\" 條記錄\"],\"E717U9\":[\"顯示 \",[\"2\"],\" 個中的 \",[\"0\"],\"–\",[\"1\"]],\"5rzhBQ\":[\"顯示 \",[\"totalAvailable\"],\" 個日期中的 \",[\"MAX_VISIBLE\"],\" 個。輸入以搜尋。\"],\"WSt3op\":[\"顯示前 \",[\"0\"],\" 個 — 訊息傳送時仍會發送至其餘 \",[\"1\"],\" 個場次。\"],\"OJLTEL\":\"員工首次開啟簽到頁時顯示。\",\"jVRHeq\":\"註冊時間\",\"5C7J+P\":\"單一活動\",\"E//btK\":\"略過手動編輯的日期\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"社交\",\"d0rUsW\":\"社交連結\",\"j/TOB3\":\"社交連結與網站\",\"s9KGXU\":\"已售出\",\"iACSrw\":\"部分資料對公眾訪問隱藏。登入即可查看全部。\",\"KTxc6k\":\"出現問題,請重試,或在問題持續時聯繫客服\",\"lkE00/\":\"出了點問題。請稍後再試。\",\"wdxz7K\":\"來源\",\"fDG2by\":\"靈性\",\"oPaRES\":\"按日期、區域或票種劃分簽到。將連結分享給員工 — 無需帳號。\",\"7JFNej\":\"體育\",\"/bfV1Y\":\"員工指引\",\"tXkhj/\":\"開始\",\"JcQp9p\":\"開始日期同時間\",\"0m/ekX\":\"開始日期與時間\",\"izRfYP\":\"必須填寫開始日期\",\"tuO4fV\":\"場次的開始日期\",\"2R1+Rv\":\"活動開始時間\",\"2Olov3\":\"場次的開始時間\",\"n9ZrDo\":\"開始輸入場地或地址...\",\"qeFVhN\":[[\"diffDays\"],\" 日後開始\"],\"AOqtxN\":[[\"diffMinutes\"],\" 分鐘後開始\"],\"Otg8Oh\":[[\"h\"],\" 小時 \",[\"m\"],\" 分鐘後開始\"],\"Lo49in\":[[\"seconds\"],\" 秒後開始\"],\"NqChgF\":\"明日開始\",\"2NbyY/\":\"統計數據\",\"GVUxAX\":\"統計數據基於帳戶創建日期\",\"29Hx9U\":\"統計\",\"5ia+r6\":\"仍需提供\",\"wuV0bK\":\"停止模擬\",\"s/KaDb\":\"Stripe 已連接\",\"Bk06QI\":\"Stripe 已連接\",\"akZMv8\":[\"已從 \",[\"0\"],\" 複製 Stripe 連接。\"],\"v0aRY1\":\"Stripe 沒有回傳設定連結,請再試一次。\",\"aKtF0O\":\"Stripe未連接\",\"9i0++A\":\"Stripe 付款 ID\",\"R1lIMV\":\"Stripe 很快會需要更多資料\",\"FzcCHA\":\"Stripe 會帶你回答幾個簡短的問題以完成設定。\",\"eYbd7b\":\"日\",\"ii0qn/\":\"主題是必需的\",\"M7Uapz\":\"主題將顯示在這裏\",\"6aXq+t\":\"主題:\",\"JwTmB6\":\"產品複製成功\",\"WUOCgI\":\"已成功提供名額\",\"IvxA4G\":[\"已成功向 \",[\"count\"],\" 人提供門票\"],\"kKpkzy\":\"已成功向 1 人提供門票\",\"Zi3Sbw\":\"已成功從候補名單中移除\",\"RuaKfn\":\"地址更新成功\",\"kzx0uD\":\"成功更新活動預設值\",\"5n+Wwp\":\"主辦單位更新成功\",\"DMCX/I\":\"平台費用預設設置更新成功\",\"URUYHc\":\"平台費用設置更新成功\",\"0Dk/l8\":\"SEO 設定已成功更新\",\"S8Tua9\":\"設定更新成功\",\"MhOoLQ\":\"社交連結更新成功\",\"CNSSfp\":\"成功更新追蹤設定\",\"kj7zYe\":\"Webhook 更新成功\",\"dXoieq\":\"摘要\",\"/RfJXt\":[\"夏日音樂節 \",[\"0\"]],\"CWOPIK\":\"2025夏季音樂節\",\"D89zck\":\"星期日\",\"DBC3t5\":\"星期日\",\"UaISq3\":\"瑞典語\",\"JZTQI0\":\"切換主辦單位\",\"9YHrNC\":\"系統預設\",\"lruQkA\":\"點擊螢幕以繼續掃描\",\"TJUrME\":[\"向 \",[\"0\"],\" 個已選場次的參加者發送。\"],\"yT6dQ8\":\"按稅種和活動分組的已收稅款\",\"Ye321X\":\"稅種名稱\",\"WyCBRt\":\"稅務摘要\",\"GkH0Pq\":\"已套用稅項及費用\",\"Rwiyt2\":\"已配置稅項\",\"iQZff7\":\"稅項、費用、可見性、銷售期間、產品重點和訂單限制\",\"SXvRWU\":\"團隊協作\",\"vlf/In\":\"科技\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"讓人們知道您的活動有什麼內容\",\"NiIUyb\":\"請告訴我們您的活動\",\"DovcfC\":\"話俾我哋知你嘅機構資料。呢啲資料會顯示喺你嘅活動頁面。\",\"69GWRq\":\"話我哋知您嘅活動幾耐重複一次,我哋會幫您建立所有日期。\",\"mXPbwY\":\"請告訴我們你的增值稅註冊狀態,以便我們對平台費用套用正確的稅務處理。\",\"7wtpH5\":\"範本已啟用\",\"QHhZeE\":\"範本建立成功\",\"xrWdPR\":\"範本刪除成功\",\"G04Zjt\":\"範本儲存成功\",\"xowcRf\":\"服務條款\",\"6K0GjX\":\"文字可能難以閱讀\",\"u0F1Ey\":\"四\",\"nm3Iz/\":\"感謝您的參與!\",\"pYwj0k\":\"謝謝,\",\"k3IitN\":\"活動結束\",\"KfmPRW\":\"頁面的背景顏色。使用封面圖片時,這會作為覆蓋層應用。\",\"MDNyJz\":\"驗證碼會喺10分鐘後過期。如果你搵唔到電郵,請檢查垃圾郵件資料夾。\",\"AIF7J2\":\"定義固定費用的貨幣。結帳時將轉換為訂單貨幣。\",\"MJm4Tq\":\"訂單的貨幣\",\"cDHM1d\":\"電郵地址已更改。參與者將在更新後的電郵地址收到新門票。\",\"I/NNtI\":\"活動場地\",\"tXadb0\":\"您查找的活動目前不可用。它可能已被刪除、過期或 URL 不正確。\",\"5fPdZe\":\"此排程將從此日期開始生成。\",\"EBzPwC\":\"活動的完整地址\",\"sxKqBm\":\"訂單全額將退款至客戶的原始付款方式。\",\"KgDp6G\":\"您嘗試存取的連結已過期或不再有效。請檢查您的電郵以獲取管理訂單的更新連結。\",\"5OmEal\":\"客戶的語言\",\"Np4eLs\":[\"上限為 \",[\"MAX_PREVIEW\"],\" 個場次。請減少日期範圍、頻率或每日場次數量。\"],\"sYLeDq\":\"找不到您正在尋找的主辦單位。頁面可能已被移動、刪除,或網址不正確。\",\"PCr4zw\":\"覆寫已記錄於訂單稽核日誌。\",\"C4nQe5\":\"平台費用會添加到票價中。買家支付更多,但您會收到完整的票價。\",\"HxxXZO\":\"用於按鈕和突出顯示的主要品牌顏色\",\"z0KrIG\":\"排程時間為必填項\",\"EWErQh\":\"排程時間必須是將來的時間\",\"UNd0OU\":[\"「\",[\"title\"],\"」原定於 \",[\"0\"],\" 舉行的場次已重新安排。\"],\"DEcpfp\":\"模板正文包含無效的Liquid語法。請更正後再試。\",\"injXD7\":\"無法驗證增值稅號碼。請檢查號碼並重試。\",\"A4UmDy\":\"劇場\",\"tDwYhx\":\"主題與顏色\",\"O7g4eR\":\"此活動沒有即將舉行的日期\",\"HrIl0p\":[\"此日期沒有專屬的簽到名單。「\",[\"0\"],\"」名單涵蓋所有日期 — 即使工作人員掃描其他日期的門票仍然成功。\"],\"dt3TwA\":\"以下為所有日期的預設價格及數量。層級的銷售日期適用於全域。您可以在<0>場次日程頁面為個別日期覆寫價格及數量。\",\"062KsE\":\"這些詳情只會顯示在此日期的參加者門票及訂單摘要上。\",\"5Eu+tn\":\"這些詳情只會在訂單成功完成後顯示。\",\"jQjwR+\":\"這些資料將取代受影響場次上現有的地點,並顯示於參加者門票上。\",\"QP3gP+\":\"這些設定僅適用於複製的嵌入代碼,不會被儲存。\",\"HirZe8\":\"這些範本將用作您組織中所有活動的預設範本。單個活動可以用自己的自定義版本覆蓋這些範本。\",\"lzAaG5\":\"這些範本將僅覆蓋此活動的組織者預設設置。如果這裏沒有設置自定義範本,將使用組織者範本。\",\"UlykKR\":\"第三\",\"wkP5FM\":\"此設定適用於活動內每個符合的日期,包括目前未顯示的日期。更新完成後,這些日期上已登記的參加者皆可透過訊息撰寫器聯絡。\",\"SOmGDa\":\"此簽到名單針對的場次已被取消,因此無法再用於簽到。\",\"XBNC3E\":\"呢個代碼會用嚟追蹤銷售。只可以用字母、數字、連字號同底線。\",\"AaP0M+\":\"對某些使用者來說,此顏色組合可能難以閱讀\",\"o1phK/\":[\"此日期有 \",[\"orderCount\"],\" 張訂單會受影響。\"],\"F/UtGt\":\"此日期已被取消。您仍可刪除以永久移除。\",\"BLZ7pX\":\"此日期已過。日期仍會建立,但不會在即將舉行日期中顯示給參加者。\",\"7IIY0z\":\"此日期標示為售罄。\",\"bddWMP\":\"此日期已不再可用。請選擇其他日期。\",\"RzEvf5\":\"此活動已結束\",\"YClrdK\":\"呢個活動未發佈\",\"dFJnia\":\"這是將會顯示給使用者的主辦單位名稱。\",\"vt7jiq\":\"簽名密鑰僅顯示一次。請立即複製並妥善保存。\",\"L7dIM7\":\"此連結無效或已過期。\",\"MR5ygV\":\"此連結不再有效\",\"9LEqK0\":\"此名稱對最終用戶可見\",\"QdUMM9\":\"此場次已滿額\",\"j5FdeA\":\"此訂單正在處理中。\",\"sjNPMw\":\"此訂單已被放棄。您可以隨時開始新的訂單。\",\"OhCesD\":\"此訂單已被取消。您可以隨時開始新訂單。\",\"lyD7rQ\":\"呢個主辦方資料未發佈\",\"9b5956\":\"此預覽顯示您的郵件使用示例資料的外觀。實際郵件將使用真實值。\",\"uM9Alj\":\"此產品在活動頁面上突出顯示\",\"RqSKdX\":\"此產品已售罄\",\"W12OdJ\":\"此報告僅供參考。在將此數據用於會計或稅務目的之前,請務必諮詢稅務專業人士。請與您的Stripe儀表板進行交叉驗證,因為Hi.Events可能缺少歷史數據。\",\"0Ew0uk\":\"此門票剛剛被掃描。請等待後再次掃描。\",\"FYXq7k\":[\"此操作將影響 \",[\"loadedAffectedCount\"],\" 個日期。\"],\"kvpxIU\":\"這將用於通知和與使用者的溝通。\",\"rhsath\":\"呢個唔會俾客戶睇到,但可以幫你識別推廣夥伴。\",\"hV6FeJ\":\"速度\",\"+FjWgX\":\"星期四\",\"kkDQ8m\":\"星期四\",\"0GSPnc\":\"門票設計\",\"EZC/Cu\":\"門票設計儲存成功\",\"bbslmb\":\"門票設計器\",\"1BPctx\":\"門票:\",\"bgqf+K\":\"持票人電郵\",\"oR7zL3\":\"持票人姓名\",\"HGuXjF\":\"票務持有人\",\"CMUt3Y\":\"票務持有人\",\"awHmAT\":\"門票 ID\",\"6czJik\":\"門票標誌\",\"OkRZ4Z\":\"門票名稱\",\"t79rDv\":\"找不到門票\",\"6tmWch\":\"票券或產品\",\"1tfWrD\":\"門票預覽:\",\"KnjoUA\":\"票價\",\"tGCY6d\":\"門票價格\",\"pGZOcL\":\"門票重新發送成功\",\"8jLPgH\":\"門票類型\",\"X26cQf\":\"門票連結\",\"8qsbZ5\":\"票務與銷售\",\"zNECqg\":\"門票\",\"6GQNLE\":\"門票\",\"NRhrIB\":\"票券與產品\",\"OrWHoZ\":\"當有空餘名額時,門票將自動提供給候補名單中的客戶。\",\"EUnesn\":\"門票有售\",\"AGRilS\":\"已售票數\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"時間\",\"dMtLDE\":\"至\",\"/jQctM\":\"收件人\",\"tiI71C\":\"要提高您的限制,請聯繫我們\",\"ecUA8p\":\"今日\",\"W428WC\":\"切換欄位\",\"BRMXj0\":\"明日\",\"UBSG1X\":\"頂級主辦方(過去14天)\",\"3sZ0xx\":\"總賬戶數\",\"EaAPbv\":\"支付總金額\",\"SMDzqJ\":\"總參與人數\",\"orBECM\":\"總收款\",\"k5CU8c\":\"總條目\",\"4B7oCp\":\"總費用\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"總用戶數\",\"oJjplO\":\"總瀏覽量\",\"rBZ9pz\":\"旅遊\",\"orluER\":\"按歸因來源追蹤帳戶增長和表現\",\"YwKzpH\":\"追蹤與分析\",\"uKOFO5\":\"如果是離線付款則為真\",\"9GsDR2\":\"如果付款待處理則為真\",\"GUA0Jy\":\"試試其他搜尋或篩選\",\"2P/OWN\":\"嘗試調整篩選條件以查看更多日期。\",\"ouM5IM\":\"嘗試其他郵箱\",\"3DZvE7\":\"免費試用Hi.Events\",\"7P/9OY\":\"二\",\"vq2WxD\":\"星期二\",\"G3myU+\":\"星期二\",\"Kz91g/\":\"土耳其語\",\"GdOhw6\":\"關閉聲音\",\"KUOhTy\":\"開啟聲音\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"輸入\\\"刪除\\\"以確認\",\"XxecLm\":\"門票類型\",\"IrVSu+\":\"無法複製產品。請檢查您的詳細信息\",\"Vx2J6x\":\"無法擷取參與者資料\",\"h0dx5e\":\"無法加入候補名單\",\"DaE0Hg\":\"無法載入參加者詳情。\",\"GlnD5Y\":\"無法載入此日期的產品。請重試。\",\"17VbmV\":\"無法撤銷簽到\",\"n57zCW\":\"未歸因帳戶\",\"9uI/rE\":\"撤銷\",\"b9SN9q\":\"唯一訂單參考\",\"Ef7StM\":\"未知\",\"ZBAScj\":\"未知參會者\",\"MEIAzV\":\"未命名\",\"K6L5Mx\":\"未命名地點\",\"X13xGn\":\"不受信任\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"更新推廣夥伴\",\"59qHrb\":\"更新容量\",\"Gaem9v\":\"更新活動名稱及描述\",\"7EhE4k\":\"更新標籤\",\"NPQWj8\":\"更新地點\",\"75+lpR\":[\"更新:\",[\"subjectTitle\"],\" — 日程變更\"],\"UOGHdA\":[\"更新:\",[\"subjectTitle\"],\" — 場次時間變更\"],\"ogoTrw\":[\"已更新 \",[\"count\"],\" 個日期\"],\"dDuona\":[\"已更新 \",[\"count\"],\" 個日期的容量\"],\"FT3LSc\":[\"已更新 \",[\"count\"],\" 個日期的標籤\"],\"8EcY1g\":[\"已更新 \",[\"count\"],\" 個場次的地點\"],\"gJQsLv\":\"上傳主辦單位的封面圖片\",\"4kEGqW\":\"上傳主辦單位的標誌\",\"lnCMdg\":\"上傳圖片\",\"29w7p6\":\"正在上傳圖片...\",\"HtrFfw\":\"URL 是必填項\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB 掃描器運作中\",\"dyTklH\":\"USB 掃描器已暫停\",\"OHJXlK\":\"使用 <0>Liquid 模板 個性化您的郵件\",\"g0WJMu\":\"使用所有日期名單\",\"0k4cdb\":\"為所有參加者使用訂單詳情。參加者姓名和電郵將與買家資料相符。\",\"MKK5oI\":\"使用所有日期名單,還是為此日期建立名單?\",\"bA31T4\":\"為所有參與者使用購買者的資料\",\"rnoQsz\":\"用於邊框、高亮和二維碼樣式\",\"BV4L/Q\":\"UTM 分析\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"正在驗證您的增值稅號碼...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"增值稅號碼\",\"pnVh83\":\"增值稅號碼\",\"CabI04\":\"增值稅號碼不得包含空格\",\"PMhxAR\":\"增值稅號碼必須以 2 個字母的國家代碼開頭,後跟 8-15 個字母數字字元(例如:DE123456789)\",\"gPgdNV\":\"增值稅號碼驗證成功\",\"RUMiLy\":\"增值稅號碼驗證失敗\",\"vqji3Y\":\"增值稅號碼驗證失敗。請檢查您的增值稅號碼。\",\"8dENF9\":\"費用增值稅\",\"ZutOKU\":\"增值稅率\",\"+KJZt3\":\"已登記增值稅\",\"Nfbg76\":\"增值稅設定已成功儲存\",\"UvYql/\":\"增值稅設定已儲存。我們正在後台驗證您的增值稅號碼。\",\"bXn1Jz\":\"已更新增值稅設定\",\"tJylUv\":\"平台費用的增值稅處理\",\"FlGprQ\":\"平台費用的增值稅處理:歐盟增值稅註冊企業可使用反向收費機制(0% - 增值稅指令 2006/112/EC 第 196 條)。非增值稅註冊企業將收取 23% 的愛爾蘭增值稅。\",\"516oLj\":\"增值稅驗證服務暫時無法使用\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"增值稅:未登記\",\"AdWhjZ\":\"驗證碼\",\"QDEWii\":\"已驗證\",\"wCKkSr\":\"驗證電郵\",\"/IBv6X\":\"驗證您的電郵\",\"e/cvV1\":\"驗證緊...\",\"fROFIL\":\"越南語\",\"p5nYkr\":\"全部檢視\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"查看全部功能\",\"RnvnDc\":\"查看平台上發送的所有訊息\",\"+WFMis\":\"查看和下載所有活動的報告。僅包含已完成的訂單。\",\"c7VN/A\":\"查看答案\",\"SZw9tS\":\"查看詳情\",\"9+84uW\":[\"查看 \",[\"0\"],\" \",[\"1\"],\" 詳情\"],\"FCVmuU\":\"查看活動\",\"c6SXHN\":\"查看活動頁面\",\"n6EaWL\":\"查看日誌\",\"OaKTzt\":\"查看地圖\",\"zNZNMs\":\"查看訊息\",\"67OJ7t\":\"查看訂單\",\"tKKZn0\":\"查看訂單詳情\",\"KeCXJu\":\"查看訂單詳情、退款和重新傳送確認。\",\"9jnAcN\":\"查看主辦單位主頁\",\"1J/AWD\":\"查看門票\",\"N9FyyW\":\"查看、編輯和匯出您的已註冊參與者。\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"等待中\",\"quR8Qp\":\"等待付款\",\"KrurBH\":\"等待掃描…\",\"u0n+wz\":\"候補名單\",\"3RXFtE\":\"已啟用候補名單\",\"TwnTPy\":\"候補名單優惠已過期\",\"NzIvKm\":\"已觸發候補名單\",\"aUi/Dz\":\"警告:這是系統預設配置。變更將影響所有未分配特定配置的帳戶。\",\"qeygIa\":\"三\",\"aT/44s\":\"無法複製該 Stripe 連接,請再試一次。\",\"RRZDED\":\"我們找不到與此郵箱關聯的訂單。\",\"2RZK9x\":\"我們找不到您要查找的訂單。連結可能已過期或訂單詳情可能已更改。\",\"nefMIK\":\"我們找不到您要查找的門票。連結可能已過期或門票詳情可能已更改。\",\"miysJh\":\"我們找不到此訂單。它可能已被刪除。\",\"ADsQ23\":\"暫時無法連接到 Stripe,請稍後再試。\",\"HJKdzP\":\"載入此頁面時遇到問題。請重試。\",\"jegrvW\":\"我們與 Stripe 合作,把款項直接匯入你的銀行帳戶。\",\"IfN2Qo\":\"我們建議使用最小尺寸為200x200像素的方形標誌\",\"wJzo/w\":\"我們建議尺寸為 400x400 像素,檔案大小不超過 5MB\",\"KRCDqH\":\"我們使用 Cookie 來協助了解網站的使用情況並改善您的體驗。\",\"x8rEDQ\":\"我們在多次嘗試後無法驗證您的增值稅號碼。我們將繼續在後台嘗試。請稍後再查看。\",\"iy+M+c\":[\"當 \",[\"productDisplayName\"],\" 有名額時,我們會以電郵通知您。\"],\"McuGND\":\"儲存後會打開一個已預填範本的訊息撰寫器。由您檢閱及發送 — 不會自動發送。\",\"q1BizZ\":\"我們將把您的門票發送到此郵箱\",\"ZOmUYW\":\"我們將在後台驗證您的增值稅號碼。如果有任何問題,我們會通知您。\",\"LKjHr4\":[\"我們已就「\",[\"title\"],\"」的日程作出變更 — \",[\"description\"],\",影響 \",[\"affectedCount\"],\" 個場次。\"],\"Fq/Nx7\":\"我哋已經將5位數驗證碼發送到:\",\"GdWB+V\":\"Webhook 創建成功\",\"2X4ecw\":\"Webhook 刪除成功\",\"ndBv0v\":\"Webhook 整合\",\"CThMKa\":\"Webhook 日誌\",\"I0adYQ\":\"Webhook 簽名密鑰\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook 不會發送通知\",\"FSaY52\":\"Webhook 將發送通知\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"網站\",\"0f7U0k\":\"星期三\",\"VAcXNz\":\"星期三\",\"64X6l4\":\"週\",\"4XSc4l\":\"每週\",\"IAUiSh\":\"週\",\"vKLEXy\":\"微博\",\"9eF5oV\":\"歡迎回來\",\"QDWsl9\":[\"歡迎嚟到 \",[\"0\"],\",\",[\"1\"],\" 👋\"],\"LETnBR\":[\"歡迎嚟到 \",[\"0\"],\",呢度係你所有活動嘅列表\"],\"DDbx7K\":\"健康\",\"ywRaYa\":\"幾時?\",\"FaSXqR\":\"咩類型嘅活動?\",\"0WyYF4\":\"未認證員工可見的內容\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"當簽到被刪除時\",\"RPe6bE\":\"當循環活動的日期被取消時\",\"Gmd0hv\":\"當新與會者被創建時\",\"zyIyPe\":\"當建立新活動時\",\"Lc18qn\":\"當新訂單被創建時\",\"dfkQIO\":\"當新產品被創建時\",\"8OhzyY\":\"當產品被刪除時\",\"tRXdQ9\":\"當產品被更新時\",\"9L9/28\":\"當產品售罄時,顧客可加入候補名單,於有名額時收到通知。\",\"Q7CWxp\":\"當與會者被取消時\",\"IuUoyV\":\"當與會者簽到時\",\"nBVOd7\":\"當與會者被更新時\",\"t7cuMp\":\"當活動被封存時\",\"gtoSzE\":\"當活動被更新時\",\"ny2r8d\":\"當訂單被取消時\",\"c9RYbv\":\"當訂單被標記為已支付時\",\"ejMDw1\":\"當訂單被退款時\",\"fVPt0F\":\"當訂單被更新時\",\"bcYlvb\":\"簽到何時關閉\",\"XIG669\":\"簽到何時開放\",\"403wpZ\":\"啟用後,新活動將允許參與者通過安全連結管理自己的門票詳情。這可以按活動覆蓋。\",\"blXLKj\":\"啟用後,新活動將在結帳時顯示營銷訂閱複選框。此設置可以針對每個活動單獨覆蓋。\",\"Kj0Txn\":\"啟用後,Stripe Connect交易將不收取應用費用。用於不支持應用費用的國家。\",\"tMqezN\":\"是否正在處理退款\",\"uchB0M\":\"小工具預覽\",\"uvIqcj\":\"工作坊\",\"EpknJA\":\"請在此輸入您的訊息...\",\"nhtR6Y\":\"X(Twitter)\",\"7qI8sJ\":\"年\",\"zkWmBh\":\"每年\",\"+BGee5\":\"年\",\"X/azM1\":\"是 - 我有有效的歐盟增值稅註冊號碼\",\"Tz5oXG\":\"是,取消我的訂單\",\"QlSZU0\":[\"您正在模擬 <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"您正在發出部分退款。客戶將獲得 \",[\"0\"],\" \",[\"1\"],\" 的退款。\"],\"o7LgX6\":\"您可以在帳戶設置中配置額外的服務費和稅費。\",\"rj3A7+\":\"您之後可以為個別日期覆寫此設定。\",\"paWwQ0\":\"如有需要,您仍然可以手動提供門票。\",\"jTDzpA\":\"您無法封存帳戶中最後一個活躍的主辦方。\",\"5VGIlq\":\"您已達到訊息限制。\",\"casL1O\":\"您已向免費產品添加了税費。您想要刪除它們嗎?\",\"9jJNZY\":\"您必須先確認您的責任才可儲存\",\"pCLes8\":\"您必須同意接收訊息\",\"FVTVBy\":\"在更新主辦單位狀態之前,您必須先驗證您的電郵地址。\",\"ze4bi/\":\"您必須先建立至少一個場次,才可為此循環活動新增參加者。\",\"w65ZgF\":\"您需要驗證您的帳戶電子郵件才能修改電子郵件範本。\",\"FRl8Jv\":\"您需要驗證您的帳户電子郵件才能發送消息。\",\"88cUW+\":\"您收到\",\"O6/3cu\":\"您可以在下一步設定日期、日程及循環規則。\",\"zKAheG\":\"您正在更改場次時間\",\"MNFIxz\":[\"您將參加 \",[\"0\"],\"!\"],\"qGZz0m\":\"您已加入候補名單!\",\"/5HL6k\":\"您已獲得一個名額!\",\"gbjFFH\":\"您已更改場次時間\",\"p/Sa0j\":\"您的帳戶有訊息限制。要提高您的限制,請聯繫我們\",\"x/xjzn\":\"你嘅推廣夥伴已經成功匯出。\",\"TF37u6\":\"您的與會者已成功導出。\",\"79lXGw\":\"您的簽到名單已成功建立。與您的簽到工作人員共享以下連結。\",\"BnlG9U\":\"您當前的訂單將丟失。\",\"nBqgQb\":\"您的電子郵件\",\"GG1fRP\":\"您的活動已上線!\",\"ifRqmm\":\"你嘅訊息已經成功發送!\",\"0/+Nn9\":\"您的訊息將顯示在此處\",\"/Rj5P4\":\"您的姓名\",\"PFjJxY\":\"您的新密碼必須至少為 8 個字元。\",\"gzrCuN\":\"您的訂單詳情已更新。確認電郵已發送到新的電郵地址。\",\"naQW82\":\"您的訂單已被取消。\",\"bhlHm/\":\"您的訂單正在等待付款\",\"XeNum6\":\"您的訂單已成功導出。\",\"Xd1R1a\":\"您主辦單位的地址\",\"WWYHKD\":\"您的付款受到銀行級加密保護\",\"5b3QLi\":\"您的計劃\",\"N4Zkqc\":\"您儲存的日期篩選器已不再可用 — 顯示所有日期。\",\"FNO5uZ\":\"您的門票仍然有效 — 除非新時間不適合您,否則無需任何行動。如有疑問,請回覆此電郵。\",\"CnZ3Ou\":\"您的門票已確認。\",\"EmFsMZ\":\"您的增值稅號碼已排隊等待驗證\",\"QBlhh4\":\"保存時將驗證您的增值稅號碼\",\"fT9VLt\":\"您的候補名單優惠已過期,我們無法完成您的訂單。請重新加入候補名單,以便有更多名額時收到通知。\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"暫時冇嘢可以顯示\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>簽退成功\"],\"KMgp2+\":[[\"0\"],\"可用\"],\"Pmr5xp\":[\"成功創建 \",[\"0\"]],\"FImCSc\":[[\"0\"],\"更新成功\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" 天, \",[\"hours\"],\" 小時, \",[\"minutes\"],\" 分鐘, 和 \",[\"seconds\"],\" 秒\"],\"f3RdEk\":[[\"hours\"],\" 小時, \",[\"minutes\"],\" 分鐘, 和 \",[\"seconds\"],\" 秒\"],\"fyE7Au\":[[\"分\"],\"分鐘和\",[\"秒\"],\"秒鐘\"],\"NlQ0cx\":[[\"組織者名稱\"],\"的首次活動\"],\"Ul6IgC\":\"<0>Capacity assignments let you manage capacity across tickets or an entire event. Ideal for multi-day events, workshops, and more, where controlling attendance is crucial.<1>For instance, you can associate a capacity assignment with <2>Day One and <3>All Days ticket. Once the capacity is reached, both tickets will automatically stop being available for sale.\",\"Exjbj7\":\"<0>Check-in lists help manage attendee entry for your event. You can associate multiple tickets with a check-in list and ensure only those with valid tickets can enter.\",\"OXku3b\":\"<0>https://your-website.com\",\"qnSLLW\":\"<0>請輸入不含税費的價格。<1>税費可以在下方添加。\",\"ZjMs6e\":\"<0>該產品的可用數量<1>如果該產品有相關的<2>容量限制,此值可以被覆蓋。\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"4kSf7w\":\"🎟️ Add products\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 分 0 秒\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"緬因街 123 號\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"日期輸入字段。非常適合詢問出生日期等。\",\"6euFZ/\":[\"默認的\",[\"type\"],\"會自動應用於所有新產品。您可以為每個產品單獨覆蓋此設置。\"],\"SMUbbQ\":\"下拉式輸入法只允許一個選擇\",\"qv4bfj\":\"費用,如預訂費或服務費\",\"POT0K/\":\"每個產品的固定金額。例如,每個產品$0.50\",\"f4vJgj\":\"多行文本輸入\",\"OIPtI5\":\"產品價格的百分比。例如,3.5%的產品價格\",\"ZthcdI\":\"無折扣的促銷代碼可以用來顯示隱藏的產品。\",\"AG/qmQ\":\"單選題有多個選項,但只能選擇一個。\",\"h179TP\":\"活動的簡短描述,將顯示在搜索引擎結果中,並在社交媒體上分享時顯示。默認情況下,將使用活動描述\",\"WKMnh4\":\"單行文本輸入\",\"BHZbFy\":\"每個訂單一個問題。例如,您的送貨地址是什麼?\",\"Fuh+dI\":\"每個產品一個問題。例如,您的T恤尺碼是多少?\",\"RlJmQg\":\"標準税,如增值税或消費税\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"接受銀行轉賬、支票或其他線下支付方式\",\"hrvLf4\":\"通過 Stripe 接受信用卡支付\",\"bfXQ+N\":\"接受邀請\",\"AeXO77\":\"賬户\",\"lkNdiH\":\"賬户名稱\",\"Puv7+X\":\"賬户設置\",\"OmylXO\":\"賬户更新成功\",\"7L01XJ\":\"操作\",\"FQBaXG\":\"激活\",\"5T2HxQ\":\"激活日期\",\"F6pfE9\":\"活躍\",\"/PN1DA\":\"為此簽到列表添加描述\",\"0/vPdA\":\"添加有關與會者的任何備註。這些將不會對與會者可見。\",\"Or1CPR\":\"添加有關與會者的任何備註...\",\"l3sZO1\":\"添加關於訂單的備註。這些信息不會對客户可見。\",\"xMekgu\":\"添加關於訂單的備註...\",\"PGPGsL\":\"添加描述\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"添加線下支付的説明(例如,銀行轉賬詳情、支票寄送地址、付款截止日期)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"添加新內容\",\"TZxnm8\":\"添加選項\",\"24l4x6\":\"添加產品\",\"8q0EdE\":\"將產品添加到類別\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"加税或費用\",\"goOKRY\":\"增加層級\",\"oZW/gT\":\"添加到日曆\",\"pn5qSs\":\"附加信息\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"地址\",\"NY/x1b\":\"地址第 1 行\",\"POdIrN\":\"地址 1\",\"cormHa\":\"地址第 2 行\",\"gwk5gg\":\"地址第 2 行\",\"U3pytU\":\"管理員\",\"HLDaLi\":\"管理員用户可以完全訪問事件和賬户設置。\",\"W7AfhC\":\"本次活動的所有與會者\",\"cde2hc\":\"所有產品\",\"5CQ+r0\":\"允許與未支付訂單關聯的參與者簽到\",\"ipYKgM\":\"允許搜索引擎索引\",\"LRbt6D\":\"允許搜索引擎索引此事件\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"令人驚歎, 活動, 關鍵詞...\",\"hehnjM\":\"金額\",\"R2O9Rg\":[\"支付金額 (\",[\"0\"],\")\"],\"V7MwOy\":\"加載頁面時出現錯誤\",\"Q7UCEH\":\"An error occurred while sorting the questions. Please try again or refresh the page\",\"jD/OCQ\":\"An event is the actual event you are hosting. You can add more details later.\",\"oBkF+i\":\"An organizer is the company or person who is hosting the event\",\"W5A0Ly\":\"出現意外錯誤。\",\"byKna+\":\"出現意外錯誤。請重試。\",\"ubdMGz\":\"產品持有者的任何查詢都將發送到此電子郵件地址。此地址還將用作從此活動發送的所有電子郵件的“回覆至”地址\",\"aAIQg2\":\"外觀\",\"Ym1gnK\":\"應用\",\"sy6fss\":[\"適用於\",[\"0\"],\"個產品\"],\"kadJKg\":\"適用於1個產品\",\"DB8zMK\":\"應用\",\"GctSSm\":\"應用促銷代碼\",\"ARBThj\":[\"將此\",[\"type\"],\"應用於所有新產品\"],\"S0ctOE\":\"歸檔活動\",\"TdfEV7\":\"已歸檔\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"您確定要激活該與會者嗎?\",\"TvkW9+\":\"您確定要歸檔此活動嗎?\",\"/CV2x+\":\"您確定要取消該與會者嗎?這將使其門票作廢\",\"YgRSEE\":\"您確定要刪除此促銷代碼嗎?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"您確定要將此活動設為草稿嗎?這將使公眾無法看到該活動\",\"mEHQ8I\":\"您確定要將此事件公開嗎?這將使事件對公眾可見\",\"s4JozW\":\"您確定要恢復此活動嗎?它將作為草稿恢復。\",\"vJuISq\":\"您確定要刪除此容量分配嗎?\",\"baHeCz\":\"您確定要刪除此簽到列表嗎?\",\"LBLOqH\":\"每份訂單詢問一次\",\"wu98dY\":\"每個產品詢問一次\",\"ss9PbX\":\"參加者\",\"m0CFV2\":\"與會者詳情\",\"QKim6l\":\"未找到參與者\",\"R5IT/I\":\"與會者備註\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"參會者票\",\"9SZT4E\":\"參與者\",\"iPBfZP\":\"註冊的參會者\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"自動調整大小\",\"vZ5qKF\":\"根據內容自動調整小工具高度。停用時,小工具將填滿容器的高度。\",\"4lVaWA\":\"等待線下付款\",\"2rHwhl\":\"等待線下付款\",\"3wF4Q/\":\"等待付款\",\"ioG+xt\":\"等待付款\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"返回活動頁面\",\"VCoEm+\":\"返回登錄\",\"k1bLf+\":\"背景顏色\",\"I7xjqg\":\"背景類型\",\"1mwMl+\":\"Before you send!\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"ze6ETw\":\"Begin selling products in minutes\",\"8rE61T\":\"賬單地址\",\"/xC/im\":\"賬單設置\",\"rp/zaT\":\"巴西葡萄牙語\",\"whqocw\":\"註冊即表示您同意我們的<0>服務條款和<1>隱私政策。\",\"bcCn6r\":\"計算類型\",\"+8bmSu\":\"加利福尼亞州\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission again, or if this doesn't work, you will need to <1>grant this page access to your camera in your browser settings.\",\"dEgA5A\":\"取消\",\"Gjt/py\":\"取消更改電子郵件\",\"tVJk4q\":\"取消訂單\",\"Os6n2a\":\"取消訂單\",\"Mz7Ygx\":[\"取消訂單 \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"已取消\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"容量\",\"V6Q5RZ\":\"容量分配創建成功\",\"k5p8dz\":\"容量分配刪除成功\",\"nDBs04\":\"容量管理\",\"ddha3c\":\"類別允許您將產品分組。例如,您可以有一個“門票”類別和另一個“商品”類別。\",\"iS0wAT\":\"類別幫助您組織產品。此標題將在公共活動頁面上顯示。\",\"eorM7z\":\"類別重新排序成功。\",\"3EXqwa\":\"類別創建成功\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"更改密碼\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"簽到 \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"簽到並標記訂單為已付款\",\"QYLpB4\":\"僅簽到\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"看看這個活動吧!\",\"gXcPxc\":\"簽到\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"簽到列表刪除成功\",\"+hBhWk\":\"簽到列表已過期\",\"mBsBHq\":\"簽到列表未激活\",\"vPqpQG\":\"未找到簽到列表\",\"tejfAy\":\"簽到列表\",\"hD1ocH\":\"簽到鏈接已複製到剪貼板\",\"CNafaC\":\"複選框選項允許多重選擇\",\"SpabVf\":\"複選框\",\"CRu4lK\":\"已簽到\",\"znIg+z\":\"結賬\",\"1WnhCL\":\"結賬設置\",\"6imsQS\":\"簡體中文\",\"JjkX4+\":\"選擇背景顏色\",\"/Jizh9\":\"選擇賬户\",\"3wV73y\":\"城市\",\"FG98gC\":\"清除搜索文本\",\"EYeuMv\":\"click here\",\"sby+1/\":\"點擊複製\",\"yz7wBu\":\"關閉\",\"62Ciis\":\"關閉側邊欄\",\"EWPtMO\":\"代碼\",\"ercTDX\":\"代碼長度必須在 3 至 50 個字符之間\",\"oqr9HB\":\"當活動頁面初始加載時摺疊此產品\",\"jZlrte\":\"顏色\",\"Vd+LC3\":\"顏色必須是有效的十六進制顏色代碼。例如#ffffff\",\"1HfW/F\":\"顏色\",\"VZeG/A\":\"即將推出\",\"yPI7n9\":\"以逗號分隔的描述活動的關鍵字。搜索引擎將使用這些關鍵字來幫助對活動進行分類和索引\",\"NPZqBL\":\"完整訂單\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"完成付款\",\"qqWcBV\":\"已完成\",\"6HK5Ct\":\"已完成訂單\",\"NWVRtl\":\"已完成訂單\",\"DwF9eH\":\"組件代碼\",\"Tf55h7\":\"已配置折扣\",\"7VpPHA\":\"確認\",\"ZaEJZM\":\"確認電子郵件更改\",\"yjkELF\":\"確認新密碼\",\"xnWESi\":\"確認密碼\",\"p2/GCq\":\"確認密碼\",\"wnDgGj\":\"確認電子郵件地址...\",\"pbAk7a\":\"連接條紋\",\"UMGQOh\":\"與 Stripe 連接\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"連接詳情\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"繼續\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"繼續按鈕文字\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"複製的\",\"T5rdis\":\"複製到剪貼板\",\"he3ygx\":\"複製\",\"r2B2P8\":\"複製簽到鏈接\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"複製鏈接\",\"E6nRW7\":\"複製 URL\",\"JNCzPW\":\"國家\",\"IF7RiR\":\"封面\",\"hYgDIe\":\"創建\",\"b9XOHo\":[\"創建 \",[\"0\"]],\"k9RiLi\":\"創建一個產品\",\"6kdXbW\":\"創建促銷代碼\",\"n5pRtF\":\"創建票單\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"創建一個組織者\",\"ipP6Ue\":\"創建與會者\",\"VwdqVy\":\"創建容量分配\",\"EwoMtl\":\"創建類別\",\"XletzW\":\"創建類別\",\"WVbTwK\":\"創建簽到列表\",\"uN355O\":\"創建活動\",\"BOqY23\":\"創建新的\",\"kpJAeS\":\"創建組織器\",\"a0EjD+\":\"創建產品\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"創建促銷代碼\",\"B3Mkdt\":\"創建問題\",\"UKfi21\":\"創建税費\",\"d+F6q9\":\"已建立\",\"Q2lUR2\":\"貨幣\",\"DCKkhU\":\"當前密碼\",\"uIElGP\":\"自定義地圖 URL\",\"UEqXyt\":\"自定義範圍\",\"876pfE\":\"客户\",\"QOg2Sf\":\"自定義此事件的電子郵件和通知設置\",\"Y9Z/vP\":\"定製活動主頁和結賬信息\",\"2E2O5H\":\"自定義此事件的其他設置\",\"iJhSxe\":\"自定義此事件的搜索引擎優化設置\",\"KIhhpi\":\"Customize your event page\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"危險區\",\"ZQKLI1\":\"危險區\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"日期\",\"JvUngl\":\"日期和時間\",\"JJhRbH\":\"第一天容量\",\"cnGeoo\":\"刪除\",\"jRJZxD\":\"刪除容量\",\"VskHIx\":\"刪除類別\",\"Qrc8RZ\":\"刪除簽到列表\",\"WHf154\":\"刪除代碼\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"説明\",\"YC3oXa\":\"簽到工作人員的描述\",\"URmyfc\":\"詳細信息\",\"1lRT3t\":\"禁用此容量將跟蹤銷售情況,但不會在達到限制時停止銷售\",\"H6Ma8Z\":\"折扣\",\"ypJ62C\":\"折扣率\",\"3LtiBI\":[[\"0\"],\"中的折扣\"],\"C8JLas\":\"折扣類型\",\"1QfxQT\":\"關閉\",\"DZlSLn\":\"文檔標籤\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"捐贈 / 自由定價產品\",\"OvNbls\":\"下載 .ics\",\"kodV18\":\"下載 CSV\",\"CELKku\":\"下載發票\",\"LQrXcu\":\"下載發票\",\"QIodqd\":\"下載二維碼\",\"yhjU+j\":\"正在下載發票\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"下拉選擇\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"複製活動\",\"3ogkAk\":\"複製活動\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"複製選項\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"早起的鳥兒\",\"ePK91l\":\"編輯\",\"N6j2JH\":[\"編輯 \",[\"0\"]],\"kBkYSa\":\"編輯容量\",\"oHE9JT\":\"編輯容量分配\",\"j1Jl7s\":\"編輯類別\",\"FU1gvP\":\"編輯簽到列表\",\"iFgaVN\":\"編輯代碼\",\"jrBSO1\":\"編輯組織器\",\"tdD/QN\":\"編輯產品\",\"n143Tq\":\"編輯產品類別\",\"9BdS63\":\"編輯促銷代碼\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"編輯問題\",\"poTr35\":\"編輯用户\",\"GTOcxw\":\"編輯用户\",\"pqFrv2\":\"例如2.50 換 2.50\",\"3yiej1\":\"例如23.5 表示 23.5%\",\"O3oNi5\":\"電子郵件\",\"VxYKoK\":\"電子郵件和通知設置\",\"ATGYL1\":\"電子郵件地址\",\"hzKQCy\":\"電子郵件地址\",\"HqP6Qf\":\"電子郵件更改已成功取消\",\"mISwW1\":\"電子郵件更改待定\",\"APuxIE\":\"重新發送電子郵件確認\",\"YaCgdO\":\"成功重新發送電子郵件確認\",\"jyt+cx\":\"電子郵件頁腳信息\",\"I6F3cp\":\"電子郵件未經驗證\",\"NTZ/NX\":\"嵌入代碼\",\"4rnJq4\":\"嵌入腳本\",\"8oPbg1\":\"啟用發票功能\",\"j6w7d/\":\"啟用此容量以在達到限制時停止產品銷售\",\"VFv2ZC\":\"結束日期\",\"237hSL\":\"完工\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"英語\",\"MhVoma\":\"輸入不含税費的金額。\",\"SlfejT\":\"錯誤\",\"3Z223G\":\"確認電子郵件地址出錯\",\"a6gga1\":\"確認更改電子郵件時出錯\",\"5/63nR\":\"歐元\",\"0pC/y6\":\"活動\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"活動日期\",\"0Zptey\":\"事件默認值\",\"QcCPs8\":\"活動詳情\",\"6fuA9p\":\"事件成功複製\",\"AEuj2m\":\"活動主頁\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"活動地點和場地詳情\",\"OopDbA\":\"Event page\",\"4/If97\":\"活動狀態更新失敗。請稍後再試\",\"btxLWj\":\"事件狀態已更新\",\"nMU2d3\":\"活動網址\",\"tst44n\":\"活動\",\"sZg7s1\":\"過期日期\",\"KnN1Tu\":\"到期\",\"uaSvqt\":\"有效期\",\"GS+Mus\":\"出口\",\"9xAp/j\":\"取消與會者失敗\",\"ZpieFv\":\"取消訂單失敗\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"下載發票失敗。請重試。\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"加載簽到列表失敗\",\"ZQ15eN\":\"重新發送票據電子郵件失敗\",\"ejXy+D\":\"產品排序失敗\",\"PLUB/s\":\"費用\",\"/mfICu\":\"費用\",\"LyFC7X\":\"篩選訂單\",\"cSev+j\":\"篩選器\",\"CVw2MU\":[\"篩選器 (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"第一張發票號碼\",\"V1EGGU\":\"姓名\",\"kODvZJ\":\"姓名\",\"S+tm06\":\"名字必須在 1 至 50 個字符之間\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"首次使用\",\"TpqW74\":\"固定式\",\"irpUxR\":\"固定金額\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"忘記密碼?\",\"2POOFK\":\"免費\",\"P/OAYJ\":\"免費產品\",\"vAbVy9\":\"免費產品,無需付款信息\",\"nLC6tu\":\"法語\",\"Weq9zb\":\"常規\",\"DDcvSo\":\"德國\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"返回個人資料\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"谷歌日曆\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"銷售總額\",\"yRg26W\":\"總銷售額\",\"R4r4XO\":\"賓客\",\"26pGvx\":\"有促銷代碼嗎?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"這是如何在應用程式中使用該組件的範例。\",\"Y1SSqh\":\"這是您可以用來在應用程式中嵌入小工具的 React 組件。\",\"QuhVpV\":[\"你好 \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"隱藏於公眾視線之外\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"隱藏問題只有活動組織者可以看到,客户看不到。\",\"vLyv1R\":\"隱藏\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"在銷售結束日期後隱藏產品\",\"06s3w3\":\"在銷售開始日期前隱藏產品\",\"axVMjA\":\"除非用户有適用的促銷代碼,否則隱藏產品\",\"ySQGHV\":\"售罄時隱藏產品\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"對客户隱藏此產品\",\"Da29Y6\":\"隱藏此問題\",\"fvDQhr\":\"向用户隱藏此層級\",\"lNipG+\":\"隱藏產品將防止用户在活動頁面上看到它。\",\"ZOBwQn\":\"主頁設計\",\"PRuBTd\":\"首頁設計器\",\"YjVNGZ\":\"主頁預覽\",\"c3E/kw\":\"荷馬\",\"8k8Njd\":\"客户有多少分鐘來完成訂單。我們建議至少 15 分鐘\",\"ySxKZe\":\"這個代碼可以使用多少次?\",\"dZsDbK\":[\"HTML字符限制已超出:\",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"我同意<0>條款和條件。\",\"sd6lr7\":\"I would like to pay using an offline method\",\"SdFlIP\":\"I would like to pay using an online method (credit card etc.)\",\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"If blank, the address will be used to generate a Google Mapa link\",\"UYT+c8\":\"如果啟用,登記工作人員可以將與會者標記為已登記或將訂單標記為已支付並登記與會者。如果禁用,關聯未支付訂單的與會者無法登記。\",\"muXhGi\":\"如果啟用,當有新訂單時,組織者將收到電子郵件通知\",\"6fLyj/\":\"如果您沒有要求更改密碼,請立即更改密碼。\",\"n/ZDCz\":\"圖像已成功刪除\",\"Mfbc2v\":\"Image dimensions must be between 4000px by 4000px. With a max height of 4000px and max width of 4000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"圖片上傳成功\",\"VyUuZb\":\"圖片網址\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"不活動\",\"T0K0yl\":\"非活動用户無法登錄。\",\"kO44sp\":\"包含您的在線活動的連接詳細信息。這些信息將在訂單摘要頁面和參會者門票頁面顯示。\",\"FlQKnG\":\"價格中包含税費\",\"Vi+BiW\":[\"包括\",[\"0\"],\"個產品\"],\"lpm0+y\":\"包括1個產品\",\"UiAk5P\":\"插入圖片\",\"OyLdaz\":\"再次發出邀請!\",\"HE6KcK\":\"撤銷邀請!\",\"SQKPvQ\":\"邀請用户\",\"bKOYkd\":\"發票下載成功\",\"alD1+n\":\"發票備註\",\"kOtCs2\":\"發票編號\",\"UZ2GSZ\":\"發票設置\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"項目\",\"KFXip/\":\"約翰\",\"XcgRvb\":\"約翰遜\",\"87a/t/\":\"標籤\",\"vXIe7J\":\"語言\",\"2LMsOq\":\"過去 12 個月\",\"vfe90m\":\"過去 14 天\",\"aK4uBd\":\"過去 24 小時\",\"uq2BmQ\":\"過去 30 天\",\"bB6Ram\":\"過去 48 小時\",\"VlnB7s\":\"過去 6 個月\",\"ct2SYD\":\"過去 7 天\",\"XgOuA7\":\"過去 90 天\",\"I3yitW\":\"最後登錄\",\"1ZaQUH\":\"姓氏\",\"UXBCwc\":\"姓氏\",\"tKCBU0\":\"最近一次使用\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"留空以使用默認詞“發票”\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"加載中...\",\"wJijgU\":\"地點\",\"sQia9P\":\"登錄\",\"zUDyah\":\"登錄\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"註銷\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"在結賬時強制要求填寫賬單地址\",\"MU3ijv\":\"將此問題作為必答題\",\"wckWOP\":\"管理\",\"onpJrA\":\"管理與會者\",\"n4SpU5\":\"管理活動\",\"WVgSTy\":\"管理訂單\",\"1MAvUY\":\"管理此活動的支付和發票設置。\",\"cQrNR3\":\"管理簡介\",\"AtXtSw\":\"管理可以應用於您的產品的税費\",\"ophZVW\":\"管理機票\",\"DdHfeW\":\"管理賬户詳情和默認設置\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"管理用户及其權限\",\"1m+YT2\":\"在顧客結賬前,必須回答必填問題。\",\"Dim4LO\":\"手動添加與會者\",\"e4KdjJ\":\"手動添加與會者\",\"vFjEnF\":\"標記為已支付\",\"g9dPPQ\":\"每份訂單的最高限額\",\"l5OcwO\":\"與會者留言\",\"Gv5AMu\":\"留言參與者\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"留言買家\",\"tNZzFb\":\"訊息內容\",\"lYDV/s\":\"給個別與會者留言\",\"V7DYWd\":\"發送的信息\",\"t7TeQU\":\"信息\",\"xFRMlO\":\"每次訂購的最低數量\",\"QYcUEf\":\"最低價格\",\"RDie0n\":\"其他\",\"mYLhkl\":\"雜項設置\",\"KYveV8\":\"多行文本框\",\"VD0iA7\":\"多種價格選項。非常適合早鳥產品等。\",\"/bhMdO\":\"我的精彩活動描述\",\"vX8/tc\":\"我的精彩活動標題...\",\"hKtWk2\":\"我的簡介\",\"fj5byd\":\"不適用\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"名稱\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"導航至與會者\",\"qqeAJM\":\"從不\",\"7vhWI8\":\"新密碼\",\"1UzENP\":\"否\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"沒有可顯示的已歸檔活動。\",\"q2LEDV\":\"未找到此訂單的參會者。\",\"zlHa5R\":\"尚未向此訂單添加參會者。\",\"Wjz5KP\":\"無與會者\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"沒有容量分配\",\"a/gMx2\":\"沒有簽到列表\",\"tMFDem\":\"無可用數據\",\"6Z/F61\":\"無數據顯示。請選擇日期範圍\",\"fFeCKc\":\"無折扣\",\"HFucK5\":\"沒有可顯示的已結束活動。\",\"yAlJXG\":\"無事件顯示\",\"GqvPcv\":\"沒有可用篩選器\",\"KPWxKD\":\"無信息顯示\",\"J2LkP8\":\"無訂單顯示\",\"RBXXtB\":\"當前沒有可用的支付方式。請聯繫活動組織者以獲取幫助。\",\"ZWEfBE\":\"無需支付\",\"ZPoHOn\":\"此參會者沒有關聯的產品。\",\"Ya1JhR\":\"此類別中沒有可用的產品。\",\"FTfObB\":\"尚無產品\",\"+Y976X\":\"無促銷代碼顯示\",\"MAavyl\":\"此與會者未回答任何問題。\",\"SnlQeq\":\"此訂單尚未提出任何問題。\",\"Ev2r9A\":\"無結果\",\"gk5uwN\":\"沒有搜索結果\",\"RHyZUL\":\"沒有搜索結果。\",\"RY2eP1\":\"未加收任何税費。\",\"EdQY6l\":\"無\",\"OJx3wK\":\"不詳\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"備註\",\"jtrY3S\":\"暫無顯示內容\",\"hFwWnI\":\"通知設置\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"將新訂單通知組織者\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"允許支付的天數(留空以從發票中省略付款條款)\",\"n86jmj\":\"號碼前綴\",\"mwe+2z\":\"線下訂單在標記為已支付之前不會反映在活動統計中。\",\"dWBrJX\":\"線下支付失敗。請重試或聯繫活動組織者。\",\"fcnqjw\":\"離線付款說明\",\"+eZ7dp\":\"線下支付\",\"ojDQlR\":\"線下支付信息\",\"u5oO/W\":\"線下支付設置\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"銷售中\",\"Ug4SfW\":\"創建事件後,您就可以在這裏看到它。\",\"ZxnK5C\":\"一旦開始收集數據,您將在這裏看到。\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"持續進行\",\"z+nuVJ\":\"線上活動\",\"WKHW0N\":\"在線活動詳情\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"Qqqrwa\":\"開啟簽到頁面\",\"OdnLE4\":\"打開側邊欄\",\"ZZEYpT\":[\"方案 \",[\"i\"]],\"oPknTP\":\"所有發票上顯示的可選附加信息(例如,付款條款、逾期付款費用、退貨政策)\",\"OrXJBY\":\"發票編號的可選前綴(例如,INV-)\",\"0zpgxV\":\"選項\",\"BzEFor\":\"或\",\"UYUgdb\":\"訂購\",\"mm+eaX\":\"訂單 #\",\"B3gPuX\":\"取消訂單\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"訂購日期\",\"Tol4BF\":\"訂購詳情\",\"WbImlQ\":\"訂單已取消,並已通知訂單所有者。\",\"nAn4Oe\":\"訂單已標記為已支付\",\"uzEfRz\":\"訂單備註\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"訂購參考\",\"acIJ41\":\"訂單狀態\",\"GX6dZv\":\"訂單摘要\",\"tDTq0D\":\"訂單超時\",\"1h+RBg\":\"訂單\",\"3y+V4p\":\"組織地址\",\"GVcaW6\":\"組織詳細信息\",\"nfnm9D\":\"組織名稱\",\"G5RhpL\":\"主辦方\",\"mYygCM\":\"需要組織者\",\"Pa6G7v\":\"組織者姓名\",\"l894xP\":\"組織者只能管理活動和產品。他們無法管理用户、賬户設置或賬單信息。\",\"fdjq4c\":\"內邊距\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"頁面未找到\",\"QbrUIo\":\"頁面瀏覽量\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"付訖\",\"HVW65c\":\"付費產品\",\"ZfxaB4\":\"部分退款\",\"8ZsakT\":\"密碼\",\"TUJAyx\":\"密碼必須至少包含 8 個字符\",\"vwGkYB\":\"密碼必須至少包含 8 個字符\",\"BLTZ42\":\"密碼重置成功。請使用新密碼登錄。\",\"f7SUun\":\"密碼不一樣\",\"aEDp5C\":\"將此貼上到您希望小工具顯示的位置。\",\"+23bI/\":\"帕特里克\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"付款方式\",\"Lg+ewC\":\"支付和發票\",\"DZjk8u\":\"支付和發票設置\",\"lflimf\":\"付款期限\",\"JhtZAK\":\"付款失敗\",\"JEdsvQ\":\"支付説明\",\"bLB3MJ\":\"支付方式\",\"QzmQBG\":\"支付提供商\",\"lsxOPC\":\"已收到付款\",\"wJTzyi\":\"支付狀態\",\"xgav5v\":\"付款成功!\",\"R29lO5\":\"付款條款\",\"/roQKz\":\"百分比\",\"vPJ1FI\":\"百分比 金額\",\"xdA9ud\":\"將此放置在您網站的 中。\",\"blK94r\":\"請至少添加一個選項\",\"FJ9Yat\":\"請檢查所提供的信息是否正確\",\"TkQVup\":\"請檢查您的電子郵件和密碼並重試\",\"sMiGXD\":\"請檢查您的電子郵件是否有效\",\"Ajavq0\":\"請檢查您的電子郵件以確認您的電子郵件地址\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"請在新標籤頁中繼續\",\"hcX103\":\"請創建一個產品\",\"cdR8d6\":\"請創建一張票\",\"x2mjl4\":\"請輸入指向圖像的有效圖片網址。\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"請注意\",\"C63rRe\":\"請返回活動頁面重新開始。\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"請選擇至少一個產品\",\"igBrCH\":\"請驗證您的電子郵件地址,以訪問所有功能\",\"/IzmnP\":\"請稍候,我們正在準備您的發票...\",\"MOERNx\":\"葡萄牙語\",\"qCJyMx\":\"結賬後信息\",\"g2UNkE\":\"技術支持\",\"Rs7IQv\":\"結賬前信息\",\"rdUucN\":\"預覽\",\"a7u1N9\":\"價格\",\"CmoB9j\":\"價格顯示模式\",\"BI7D9d\":\"未設置價格\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"價格類型\",\"6RmHKN\":\"主色調\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"主要文字顏色\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"打印所有門票\",\"DKwDdj\":\"打印票\",\"K47k8R\":\"產品\",\"1JwlHk\":\"產品類別\",\"U61sAj\":\"產品類別更新成功。\",\"1USFWA\":\"產品刪除成功\",\"4Y2FZT\":\"產品價格類型\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"產品銷售\",\"U/R4Ng\":\"產品等級\",\"sJsr1h\":\"產品類型\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"產品\",\"N0qXpE\":\"產品\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"已售產品\",\"/u4DIx\":\"已售產品\",\"DJQEZc\":\"產品排序成功\",\"vERlcd\":\"簡介\",\"kUlL8W\":\"成功更新個人資料\",\"cl5WYc\":[\"已使用促銷 \",[\"promo_code\"],\" 代碼\"],\"P5sgAk\":\"促銷代碼\",\"yKWfjC\":\"促銷代碼頁面\",\"RVb8Fo\":\"促銷代碼\",\"BZ9GWa\":\"促銷代碼可用於提供折扣、預售權限或為您的活動提供特殊權限。\",\"OP094m\":\"促銷代碼報告\",\"4kyDD5\":\"為此問題提供額外背景或指示。可用此欄位加入條款及細則、指引或參加者作答前需要知道的重要資訊。\",\"toutGW\":\"二維碼\",\"LkMOWF\":\"可用數量\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"問題已刪除\",\"avf0gk\":\"問題描述\",\"oQvMPn\":\"問題標題\",\"enzGAL\":\"問題\",\"ROv2ZT\":\"問與答\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"無線電選項\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"受援國\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"退款失敗\",\"n10yGu\":\"退款訂單\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"退款處理中\",\"xHpVRl\":\"退款狀態\",\"/BI0y9\":\"退款\",\"fgLNSM\":\"註冊\",\"9+8Vez\":\"剩餘使用次數\",\"tasfos\":\"去除\",\"t/YqKh\":\"移除\",\"t9yxlZ\":\"報告\",\"prZGMe\":\"要求賬單地址\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"重新發送電子郵件確認\",\"wIa8Qe\":\"重新發送邀請\",\"VeKsnD\":\"重新發送訂單電子郵件\",\"dFuEhO\":\"重新發送門票電郵\",\"o6+Y6d\":\"重新發送...\",\"OfhWJH\":\"重置\",\"RfwZxd\":\"重置密碼\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"恢復活動\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"返回活動頁面\",\"8YBH95\":\"收入\",\"PO/sOY\":\"撤銷邀請\",\"GDvlUT\":\"角色\",\"ELa4O9\":\"銷售結束日期\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"銷售開始日期\",\"hBsw5C\":\"銷售結束\",\"kpAzPe\":\"銷售開始\",\"P/wEOX\":\"舊金山\",\"tfDRzk\":\"保存\",\"IUwGEM\":\"保存更改\",\"U65fiW\":\"保存組織器\",\"UGT5vp\":\"保存設置\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"按與會者姓名、電子郵件或訂單號搜索...\",\"+pr/FY\":\"按活動名稱搜索...\",\"3zRbWw\":\"按姓名、電子郵件或訂單號搜索...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"按名稱搜索...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"搜索容量分配...\",\"r9M1hc\":\"搜索簽到列表...\",\"+0Yy2U\":\"搜索產品\",\"YIix5Y\":\"搜索...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"次要顏色\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"次要文字顏色\",\"02ePaq\":[\"選擇 \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"選擇類別...\",\"kWI/37\":\"選擇組織者\",\"ixIx1f\":\"選擇產品\",\"3oSV95\":\"選擇產品等級\",\"C4Y1hA\":\"選擇產品\",\"hAjDQy\":\"選擇狀態\",\"QYARw/\":\"選擇機票\",\"OMX4tH\":\"選擇票\",\"DrwwNd\":\"選擇時間段\",\"O/7I0o\":\"選擇...\",\"JlFcis\":\"發送\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"發送信息\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"發送消息\",\"D7ZemV\":\"發送訂單確認和票務電子郵件\",\"v1rRtW\":\"發送測試\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"搜索引擎優化説明\",\"/SIY6o\":\"搜索引擎優化關鍵詞\",\"GfWoKv\":\"搜索引擎優化設置\",\"rXngLf\":\"搜索引擎優化標題\",\"/jZOZa\":\"服務費\",\"Bj/QGQ\":\"設定最低價格,用户可選擇支付更高的價格\",\"L0pJmz\":\"設置發票編號的起始編號。一旦發票生成,就無法更改。\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"設置\",\"Z8lGw6\":\"分享\",\"B2V3cA\":\"分享活動\",\"17Fd7X\":\"Share to Facebook\",\"x7i6H+\":\"Share to LinkedIn\",\"zziQd8\":\"Share to Pinterest\",\"/TgBEk\":\"Share to Reddit\",\"0Wlk5F\":\"Share to Social\",\"on+mNS\":\"Share to Telegram\",\"PcmR+m\":\"Share to WhatsApp\",\"/5b1iZ\":\"Share to X\",\"n/T2KI\":\"Share via Email\",\"8vETh9\":\"Show\",\"V0SbFp\":\"顯示可用產品數量\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"顯示更多\",\"izwOOD\":\"單獨顯示税費\",\"1SbbH8\":\"結賬後顯示給客户,在訂單摘要頁面。\",\"YfHZv0\":\"在顧客結賬前向他們展示\",\"CBBcly\":\"顯示常用地址字段,包括國家\",\"yTnnYg\":\"辛普森\",\"TNaCfq\":\"單行文本框\",\"+P0Cn2\":\"跳過此步驟\",\"YSEnLE\":\"史密斯\",\"lgFfeO\":\"售罄\",\"Mi1rVn\":\"售罄\",\"nwtY4N\":\"出了點問題\",\"GRChTw\":\"刪除税費時出了問題\",\"YHFrbe\":\"出錯了!請重試\",\"kf83Ld\":\"出問題了\",\"fWsBTs\":\"出錯了。請重試。\",\"F6YahU\":\"Sorry, something has gone wrong. Please restart the checkout process.\",\"KWgppI\":\"Sorry, something went wrong loading this page.\",\"/TCOIK\":\"Sorry, this order no longer exists.\",\"6a/UJE\":\"對不起,此優惠代碼不可用\",\"65A04M\":\"西班牙語\",\"mFuBqb\":\"固定價格的標準產品\",\"D3iCkb\":\"開始日期\",\"/2by1f\":\"州或地區\",\"uAQUqI\":\"狀態\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"此活動未啟用 Stripe 支付。\",\"UJmAAK\":\"主題\",\"X2rrlw\":\"小計\",\"zzDlyQ\":\"成功\",\"b0HJ45\":[\"成功!\",[\"0\"],\" 將很快收到一封電子郵件。\"],\"BJIEiF\":[\"成功 \",[\"0\"],\" 參會者\"],\"OtgNFx\":\"成功確認電子郵件地址\",\"IKwyaF\":\"成功確認電子郵件更改\",\"zLmvhE\":\"成功創建與會者\",\"gP22tw\":\"產品創建成功\",\"9mZEgt\":\"成功創建促銷代碼\",\"aIA9C4\":\"成功創建問題\",\"J3RJSZ\":\"成功更新與會者\",\"3suLF0\":\"容量分配更新成功\",\"Z+rnth\":\"簽到列表更新成功\",\"vzJenu\":\"成功更新電子郵件設置\",\"7kOMfV\":\"成功更新活動\",\"G0KW+e\":\"成功更新主頁設計\",\"k9m6/E\":\"成功更新主頁設置\",\"y/NR6s\":\"成功更新位置\",\"73nxDO\":\"成功更新雜項設置\",\"4H80qv\":\"訂單更新成功\",\"6xCBVN\":\"支付和發票設置已成功更新\",\"1Ycaad\":\"成功更新產品\",\"70dYC8\":\"成功更新促銷代碼\",\"F+pJnL\":\"成功更新搜索引擎設置\",\"DXZRk5\":\"100 號套房\",\"GNcfRk\":\"支持電子郵件\",\"uRfugr\":\"T恤衫\",\"JpohL9\":\"税收\",\"geUFpZ\":\"税費\",\"dFHcIn\":\"税務詳情\",\"wQzCPX\":\"所有發票底部顯示的税務信息(例如,增值税號、税務註冊號)\",\"0RXCDo\":\"成功刪除税費\",\"ZowkxF\":\"税收\",\"qu6/03\":\"税費\",\"gypigA\":\"促銷代碼無效\",\"5ShqeM\":\"您查找的簽到列表不存在。\",\"QXlz+n\":\"事件的默認貨幣。\",\"mnafgQ\":\"事件的默認時區。\",\"o7s5FA\":\"與會者接收電子郵件的語言。\",\"NlfnUd\":\"您點擊的鏈接無效。\",\"HsFnrk\":[[\"0\"],\"的最大產品數量是\",[\"1\"]],\"TSAiPM\":\"您要查找的頁面不存在\",\"MSmKHn\":\"顯示給客户的價格將包括税費。\",\"6zQOg1\":\"顯示給客户的價格不包括税費。税費將單獨顯示\",\"ne/9Ur\":\"The styling settings you choose apply only to copied HTML and won't be stored.\",\"vQkyB3\":\"The taxes and fees to apply to this product. You can create new taxes and fees on the\",\"esY5SG\":\"活動標題,將顯示在搜索引擎結果中,並在社交媒體上分享時顯示。默認情況下,將使用事件標題\",\"wDx3FF\":\"此活動沒有可用產品\",\"pNgdBv\":\"此類別中沒有可用產品\",\"rMcHYt\":\"退款正在處理中。請等待退款完成後再申請退款。\",\"F89D36\":\"標記訂單為已支付時出錯\",\"68Axnm\":\"處理您的請求時出現錯誤。請重試。\",\"mVKOW6\":\"發送信息時出現錯誤\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"此參與者有未付款的訂單。\",\"mf3FrP\":\"此類別尚無任何產品。\",\"8QH2Il\":\"此類別對公眾隱藏\",\"xxv3BZ\":\"此簽到列表已過期\",\"Sa7w7S\":\"此簽到列表已過期,不再可用於簽到。\",\"Uicx2U\":\"此簽到列表已激活\",\"1k0Mp4\":\"此簽到列表尚未激活\",\"K6fmBI\":\"此簽到列表尚未激活,不能用於簽到。\",\"t/ePFj\":\"This description will be shown to the check-in staff\",\"MLTkH7\":\"This email is not promotional and is directly related to the event.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"這些信息將顯示在支付頁面、訂單摘要頁面和訂單確認電子郵件中。\",\"XAHqAg\":\"這是一種常規產品,例如T恤或杯子。不發行門票\",\"CNk/ro\":\"這是一項在線活動\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"此信息將包含在本次活動發送的所有電子郵件的頁腳中\",\"55i7Fa\":\"此消息僅在訂單成功完成後顯示。等待付款的訂單不會顯示此消息。\",\"RjwlZt\":\"此訂單已付款。\",\"5K8REg\":\"此訂單已退款。\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"此訂單已取消。\",\"Q0zd4P\":\"此訂單已過期。請重新開始。\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"此訂單已完成。\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"此訂購頁面已不可用。\",\"i0TtkR\":\"這將覆蓋所有可見性設置,並將該產品對所有客户隱藏。\",\"cRRc+F\":\"此產品無法刪除,因為它與訂單關聯。您可以將其隱藏。\",\"3Kzsk7\":\"此產品為門票。購買後買家將收到門票\",\"0fT4x3\":\"This product is hidden from public view\",\"Y/x1MZ\":\"This product is hidden unless targeted by a Promo Code\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"此重置密碼鏈接無效或已過期。\",\"IV9xTT\":\"該用户未激活,因為他們沒有接受邀請。\",\"5AnPaO\":\"入場券\",\"kjAL4v\":\"門票\",\"dtGC3q\":\"門票電子郵件已重新發送給與會者\",\"54q0zp\":\"門票\",\"xN9AhL\":[[\"0\"],\"級\"],\"jZj9y9\":\"分層產品\",\"8wITQA\":\"分層產品允許您為同一產品提供多種價格選項。這非常適合早鳥產品,或為不同人羣提供不同的價格選項。\\\" # zh-cn\",\"nn3mSR\":\"剩餘時間:\",\"s/0RpH\":\"使用次數\",\"y55eMd\":\"使用次數\",\"40Gx0U\":\"時區\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"工具\",\"72c5Qo\":\"總計\",\"YXx+fG\":\"折扣前總計\",\"NRWNfv\":\"折扣總金額\",\"BxsfMK\":\"總費用\",\"2bR+8v\":\"總銷售額\",\"mpB/d9\":\"訂單總額\",\"m3FM1g\":\"退款總額\",\"jEbkcB\":\"退款總額\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"總税額\",\"+zy2Nq\":\"類型\",\"FMdMfZ\":\"無法簽到參與者\",\"bPWBLL\":\"無法簽退參與者\",\"9+P7zk\":\"無法創建產品。請檢查您的詳細信息\",\"WLxtFC\":\"無法創建產品。請檢查您的詳細信息\",\"/cSMqv\":\"無法創建問題。請檢查您的詳細信息\",\"MH/lj8\":\"無法更新問題。請檢查您的詳細信息\",\"nnfSdK\":\"獨立客户\",\"Mqy/Zy\":\"美國\",\"NIuIk1\":\"無限制\",\"/p9Fhq\":\"無限供應\",\"E0q9qH\":\"允許無限次使用\",\"h10Wm5\":\"未付款訂單\",\"ia8YsC\":\"即將推出\",\"TlEeFv\":\"即將舉行的活動\",\"L/gNNk\":[\"更新 \",[\"0\"]],\"+qqX74\":\"更新活動名稱、説明和日期\",\"vXPSuB\":\"更新個人資料\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"鏈接\",\"UtDm3q\":\"複製到剪貼板的 URL\",\"e5lF64\":\"使用範例\",\"fiV0xj\":\"使用限制\",\"sGEOe4\":\"使用封面圖片的模糊版本作為背景\",\"OadMRm\":\"使用封面圖片\",\"7PzzBU\":\"用户\",\"yDOdwQ\":\"用户管理\",\"Sxm8rQ\":\"用户\",\"VEsDvU\":\"用户可在 <0>\\\"配置文件設置\\\" 中更改自己的電子郵件\",\"vgwVkd\":\"世界協調時\",\"khBZkl\":\"增值税\",\"E/9LUk\":\"地點名稱\",\"jpctdh\":\"查看\",\"Pte1Hv\":\"查看參會者詳情\",\"/5PEQz\":\"查看活動頁面\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"在谷歌地圖上查看\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP簽到列表\",\"tF+VVr\":\"貴賓票\",\"2q/Q7x\":\"可見性\",\"vmOFL/\":\"我們無法處理您的付款。請重試或聯繫技術支持。\",\"45Srzt\":\"我們無法刪除該類別。請再試一次。\",\"/DNy62\":[\"我們找不到與\",[\"0\"],\"匹配的任何門票\"],\"1E0vyy\":\"我們無法加載數據。請重試。\",\"NmpGKr\":\"我們無法重新排序類別。請再試一次。\",\"BJtMTd\":\"我們建議尺寸為 2160px x 1080px,文件大小不超過 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"我們無法確認您的付款。請重試或聯繫技術支持。\",\"Gspam9\":\"我們正在處理您的訂單。請稍候...\",\"LuY52w\":\"歡迎加入!請登錄以繼續。\",\"dVxpp5\":[\"歡迎回來\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"什麼是分層產品?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"什麼是類別?\",\"gxeWAU\":\"此代碼適用於哪些產品?\",\"hFHnxR\":\"此代碼適用於哪些產品?(默認適用於所有產品)\",\"AeejQi\":\"此容量應適用於哪些產品?\",\"Rb0XUE\":\"您什麼時候抵達?\",\"5N4wLD\":\"這是什麼類型的問題?\",\"gyLUYU\":\"啟用後,將為票務訂單生成發票。發票將隨訂單確認郵件一起發送。參與\",\"D3opg4\":\"啟用線下支付後,用户可以完成訂單並收到門票。他們的門票將清楚地顯示訂單未支付,簽到工具會通知簽到工作人員訂單是否需要支付。\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"哪些票應與此簽到列表關聯?\",\"S+OdxP\":\"這項活動由誰組織?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"這個問題應該問誰?\",\"VxFvXQ\":\"嵌入小部件\",\"v1P7Gm\":\"小工具設定\",\"b4itZn\":\"工作\",\"hqmXmc\":\"工作...\",\"+G/XiQ\":\"年度至今\",\"l75CjT\":\"是\",\"QcwyCh\":\"是的,移除它們\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"您正在將電子郵件更改為 <0>\",[\"0\"],\"。\"],\"gGhBmF\":\"您處於離線狀態\",\"sdB7+6\":\"您可以創建一個促銷代碼,針對該產品\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"您無法更改產品類型,因為有與該產品關聯的參會者。\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"您無法為未支付訂單的與會者簽到。此設置可在活動設置中更改。\",\"c9Evkd\":\"您不能刪除最後一個類別。\",\"6uwAvx\":\"您無法刪除此價格層,因為此層已有售出的產品。您可以將其隱藏。\",\"tFbRKJ\":\"不能編輯賬户所有者的角色或狀態。\",\"fHfiEo\":\"您不能退還手動創建的訂單。\",\"hK9c7R\":\"You created a hidden question but disabled the option to show hidden questions. It has been enabled.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"您可以訪問多個賬户。請選擇一個繼續。\",\"Z6q0Vl\":\"您已接受此邀請。請登錄以繼續。\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"您沒有待處理的電子郵件更改。\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"您已超時,未能完成訂單。\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders.\",\"R6i9o9\":\"您必須確認此電子郵件並非促銷郵件\",\"3ZI8IL\":\"您必須同意條款和條件\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"必須先創建機票,然後才能手動添加與會者。\",\"jE4Z8R\":\"您必須至少有一個價格等級\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"您必須手動將訂單標記為已支付。這可以在訂單管理頁面上完成。\",\"L/+xOk\":\"在創建簽到列表之前,您需要先獲得票。\",\"Djl45M\":\"在您創建容量分配之前,您需要一個產品。\",\"y3qNri\":\"您需要至少一個產品才能開始。免費、付費或讓用户決定支付金額。\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"您的賬户名稱會在活動頁面和電子郵件中使用。\",\"veessc\":\"與會者註冊參加活動後,就會出現在這裏。您也可以手動添加與會者。\",\"Eh5Wrd\":\"您的精彩網站 🎉\",\"lkMK2r\":\"您的詳細信息\",\"3ENYTQ\":[\"您要求將電子郵件更改為<0>\",[\"0\"],\"的申請正在處理中。請檢查您的電子郵件以確認\"],\"yZfBoy\":\"您的信息已發送\",\"KSQ8An\":\"您的訂單\",\"Jwiilf\":\"您的訂單已被取消\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"您的訂單一旦開始滾動,就會出現在這裏。\",\"9TO8nT\":\"您的密碼\",\"P8hBau\":\"您的付款正在處理中。\",\"UdY1lL\":\"您的付款未成功,請重試。\",\"fzuM26\":\"您的付款未成功。請重試。\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"您的退款正在處理中。\",\"IFHV2p\":\"您的入場券\",\"x1PPdr\":\"郵政編碼\",\"BM/KQm\":\"郵政編碼\",\"+LtVBt\":\"郵政編碼\",\"25QDJ1\":\"- 點擊發布\",\"WOyJmc\":\"- 點擊取消發布\",\"ncwQad\":\"(空)\",\"B/gRsg\":\"(無)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" 已簽到\"],\"3beCx0\":[[\"0\"],\" <0>已簽到\"],\"S4PqS9\":[[\"0\"],\" 個活動的 Webhook\"],\"6MIiOI\":[\"剩餘 \",[\"0\"]],\"COnw8D\":[[\"0\"],\" 標誌\"],\"xG9N0H\":[[\"1\"],\" 個座位中已佔用 \",[\"0\"],\" 個。\"],\"B7pZfX\":[[\"0\"],\" 位主辦單位\"],\"rZTf6P\":[\"剩餘 \",[\"0\"],\" 個名額\"],\"/HkCs4\":[[\"0\"],\"張門票\"],\"dtXkP9\":[[\"0\"],\" 個即將舉行的日期\"],\"30bTiU\":[\"已啟用 \",[\"activeCount\"],\" 個\"],\"jTs4am\":[[\"appName\"],\" 標誌\"],\"gbJOk9\":[[\"attendeeCount\"],\" 位參加者已登記此場次。\"],\"TjbIUI\":[[\"totalCount\"],\" 中有 \",[\"availableCount\"],\" 可用\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" 已簽到\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\" 小時前\"],\"NRSLBe\":[[\"diffMin\"],\" 分鐘前\"],\"iYfwJE\":[[\"diffSec\"],\" 秒前\"],\"OJnhhX\":[[\"eventCount\"],\" 個事件\"],\"mhZbzw\":[\"受影響的場次共有 \",[\"loadedAffectedAttendees\"],\" 位參加者已登記。\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"3IEF7U\":[[\"totalCount\"],\" 種門票類型\"],\"0cLzoF\":[[\"totalOccurrences\"],\" 個日期\"],\"AEGc4t\":[[\"totalOccurrences\"],\" 個場次,分佈於 \",[\"0\"],\" 個日期(每日 \",[\"1\",\"plural\",{\"one\":[\"#\",\" 個場次\"],\"other\":[\"#\",\" 個場次\"]}],\")\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+稅/費\",\"B1St2O\":\"<0>簽到列表幫助您按日期、區域或票務類型管理活動入場。您可以將票務連結到特定列表,如VIP區域或第1天通行證,並與工作人員共享安全的簽到連結。無需帳戶。簽到適用於移動裝置、桌面或平板電腦,使用裝置相機或HID USB掃描器。 \",\"v9VSIS\":\"<0>設定單一總參加人數限制,同時適用於多種門票類型。<1>例如,如果您連結 <2>日票 和 <3>整個週末 門票,它們將從同一個名額池中抽取。一旦達到限制,所有連結的門票將自動停止銷售。\",\"vKXqag\":\"<0>此為所有日期的預設數量。每個日期的容量可在 <1>場次日程頁面 進一步限制。\",\"ZnVt5v\":\"<0>Webhooks 可在事件發生時立即通知外部服務,例如,在註冊時將新與會者添加到您的 CRM 或郵件列表,確保無縫自動化。<1>使用第三方服務,如 <2>Zapier、<3>IFTTT 或 <4>Make 來創建自定義工作流並自動化任務。\",\"xFTHZ5\":[\"≈ \",[\"0\"],\"(按目前匯率)\"],\"M2DyLc\":\"1 個活動的 Webhook\",\"6hIk/x\":\"受影響的場次共有 1 位參加者已登記。\",\"qOyE2U\":\"1 位參加者已登記此場次。\",\"943BwI\":\"結束日期後1天\",\"yj3N+g\":\"開始日期後1天\",\"Z3etYG\":\"活動前1天\",\"szSnlj\":\"活動前1小時\",\"yTsaLw\":\"1張門票\",\"nz96Ue\":\"1 種門票類型\",\"InX5ad\":\"1 ticket type configured\",\"cGtUz6\":\"活動前1週\",\"09VFYl\":\"提供 12 張門票\",\"HR/cvw\":\"示例街123號\",\"dgKxZ5\":\"支援 135+ 種貨幣及 40+ 種付款方式\",\"kMU5aM\":\"取消通知已發送至\",\"o++0qa\":\"時長變更\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"V53XzQ\":\"新嘅驗證碼已經發送到你嘅電郵\",\"sr2Je0\":\"開始/結束時間調整\",\"/z/bH1\":\"您主辦單位的簡短描述,將會顯示給您的使用者。\",\"aS0jtz\":\"已放棄\",\"uyJsf6\":\"關於\",\"JvuLls\":\"承擔費用\",\"lk74+I\":\"承擔費用\",\"1uJlG9\":\"強調色\",\"g3UF2V\":\"接受\",\"K5+3xg\":\"接受邀請\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"賬戶 · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"帳戶資訊\",\"EHNORh\":\"找不到帳戶\",\"bPwFdf\":\"賬戶\",\"AhwTa1\":\"需要操作:需提供增值稅資料\",\"APyAR/\":\"活躍活動\",\"kCl6ja\":\"啟用的付款方式\",\"XJOV1Y\":\"活動記錄\",\"eJ0IJA\":\"Add a cover image and theme to match your brand\",\"0YEoxS\":\"新增日期\",\"ybegUq\":\"Add a description and venue so attendees know what to expect\",\"nOZl6j\":\"新增單一日期\",\"CjvTPJ\":\"新增時間\",\"0XCduh\":\"至少新增一個時間\",\"/chGpa\":\"為線上活動添加連接詳情。\",\"UWWRyd\":\"新增自訂問題以在結帳時收集額外資訊\",\"Z/dcxc\":\"新增日期\",\"Q219NT\":\"新增日期\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"zfXn+r\":\"新增地點\",\"VX6WUv\":\"新增地點\",\"GCQlV2\":\"如果一日內舉行多場場次,可新增多個時間。\",\"7JF9w9\":\"新增問題\",\"NLbIb6\":\"仍然新增此參加者(覆蓋容量限制)\",\"6PNlRV\":\"將此活動添加到您的日曆\",\"BGD9Yt\":\"添加機票\",\"uIv4Op\":\"在您的公開活動頁面及主辦方主頁加入追蹤像素。當追蹤啟用時,會向訪客顯示 Cookie 同意橫額。\",\"QN2F+7\":\"添加 Webhook\",\"NsWqSP\":\"新增您的社交媒體帳號及網站網址。這些資訊將會顯示在您的公開主辦單位頁面。\",\"bVjDs9\":\"額外費用\",\"MKqSg4\":\"需要管理員存取權限\",\"0Zypnp\":\"管理儀表板\",\"YAV57v\":\"推廣夥伴\",\"I+utEq\":\"推廣碼無法更改\",\"/jHBj5\":\"推廣夥伴建立成功\",\"uCFbG2\":\"推廣夥伴刪除成功\",\"ld8I+f\":\"聯盟計劃\",\"a41PKA\":\"將會追蹤推廣夥伴銷售\",\"mJJh2s\":\"唔會追蹤推廣夥伴銷售。呢個會停用該推廣夥伴。\",\"jabmnm\":\"推廣夥伴更新成功\",\"CPXP5Z\":\"合作夥伴\",\"9Wh+ug\":\"推廣夥伴已匯出\",\"3cqmut\":\"推廣夥伴幫助你追蹤合作夥伴同KOL產生嘅銷售。建立推廣碼並分享以監控表現。\",\"z7GAMJ\":\"全部\",\"N40H+G\":\"全部\",\"7rLTkE\":\"所有已封存活動\",\"gKq1fa\":\"所有參與者\",\"63gRoO\":\"所選場次的所有參加者\",\"uWxIoH\":\"此場次的所有參加者\",\"pMLul+\":\"所有貨幣\",\"sgUdRZ\":\"所有日期\",\"e4q4uO\":\"所有日期\",\"ZS/D7f\":\"所有已結束活動\",\"QsYjci\":\"所有活動\",\"31KB8w\":\"所有失敗任務已刪除\",\"D2g7C7\":\"所有任務已排隊等待重試\",\"B4RFBk\":\"所有符合的日期\",\"F1/VgK\":\"所有場次\",\"OpWjMq\":\"所有場次\",\"Sxm1lO\":\"所有狀態\",\"dr7CWq\":\"所有即將舉行的活動\",\"GpT6Uf\":\"允許參與者通過訂單確認電郵中的安全連結更新他們的門票資訊(姓名、電郵)。\",\"F3mW5G\":\"允許客戶在該產品售罄時加入候補名單\",\"c4uJfc\":\"快完成了!我們正在等待您的付款處理。這只需要幾秒鐘。\",\"ocS8eq\":[\"已有帳戶?<0>\",[\"0\"],\"\"],\"uCuEqI\":\"已入場\",\"/H326L\":\"已退款\",\"USEpOK\":\"已在其他主辦者上使用 Stripe?重複使用該連接。\",\"RtxQTF\":\"同時取消此訂單\",\"jkNgQR\":\"同時退款此訂單\",\"xYqsHg\":\"總是可用\",\"Wvrz79\":\"支付金額\",\"Zkymb9\":\"同呢個推廣夥伴關聯嘅電郵。推廣夥伴唔會收到通知。\",\"vRznIT\":\"檢查導出狀態時發生錯誤。\",\"eusccx\":\"顯示在突出產品上的可選訊息,例如「熱賣中 🔥」或「最佳價值」\",\"5GJuNp\":[\"及另外 \",[\"0\"],\" 個...\"],\"QNrkms\":\"答案更新成功。\",\"+qygei\":\"回答\",\"GK7Lnt\":\"結賬時提供的回答(例如餐點選擇)\",\"lE8PgT\":\"您手動自訂的日期將會保留。\",\"vP3Nzg\":[\"適用於目前頁面已載入的 \",[\"0\"],\" 個未取消的日期。\"],\"kkVyZZ\":\"適用於未登入打開簽到連結的人。已登入的團隊成員始終可以看到全部。\",\"je4muG\":[\"適用於此活動內每個 \",[\"0\"],\" 未取消的日期 — 包括目前未載入的日期。\"],\"YIIQtt\":\"套用變更\",\"NzWX1Y\":\"套用至\",\"Ps5oDT\":\"套用至所有門票\",\"261RBr\":\"批准訊息\",\"naCW6Z\":\"四月\",\"B495Gs\":\"封存\",\"5sNliy\":\"封存活動\",\"BrwnrJ\":\"封存主辦方\",\"E5eghW\":\"封存此活動以向公眾隱藏。您可以稍後還原它。\",\"eqFkeI\":\"封存此主辦方。這也將封存屬於此主辦方的所有活動。\",\"BzcxWv\":\"已封存的主辦方\",\"9cQBd6\":\"您確定要封存此活動嗎?它將不再對公眾可見。\",\"Trnl3E\":\"您確定要封存此主辦方嗎?這也將封存屬於此主辦方的所有活動。\",\"wOvn+e\":[\"確定要取消 \",[\"count\"],\" 個日期嗎?受影響的參加者會收到電郵通知。\"],\"GTxE0U\":\"確定要取消此日期嗎?受影響的參加者會收到電郵通知。\",\"VkSk/i\":\"您確定要取消此定時訊息嗎?\",\"0aVEBY\":\"您確定要刪除所有失敗的任務嗎?\",\"LchiNd\":\"你確定要刪除呢個推廣夥伴嗎?呢個操作無法撤銷。\",\"vPeW/6\":\"您確定要刪除此配置嗎?這可能會影響使用它的帳戶。\",\"h42Hc/\":\"確定要刪除此日期嗎?此操作無法復原。\",\"JmVITJ\":\"確定要刪除此範本嗎?此操作無法復原,郵件將回退到預設範本。\",\"aLS+A6\":\"確定要刪除此範本嗎?此操作無法復原,郵件將回退到組織者或預設範本。\",\"5H3Z78\":\"您確定要刪除此 Webhook 嗎?\",\"147G4h\":\"您確定要離開嗎?\",\"VDWChT\":\"您確定要將此主辦單位設為草稿嗎?這將使該頁面對公眾隱藏。\",\"pWtQJM\":\"您確定要將此主辦單位設為公開嗎?這將使該頁面對公眾可見。\",\"EOqL/A\":\"您確定要向此人提供名額嗎?他們將收到電子郵件通知。\",\"yAXqWW\":\"確定要永久刪除此日期嗎?此操作無法復原。\",\"WFHOlF\":\"你確定要發佈呢個活動嗎?一旦發佈,將會對公眾可見。\",\"4TNVdy\":\"你確定要發佈呢個主辦方資料嗎?一旦發佈,將會對公眾可見。\",\"8x0pUg\":\"您確定要從候補名單中移除此條目嗎?\",\"cDtoWq\":[\"您確定要將訂單確認重新發送到 \",[\"0\"],\" 嗎?\"],\"xeIaKw\":[\"您確定要將門票重新發送到 \",[\"0\"],\" 嗎?\"],\"BjbocR\":\"您確定要還原此活動嗎?\",\"7MjfcR\":\"您確定要還原此主辦方嗎?\",\"ExDt3P\":\"你確定要取消發佈呢個活動嗎?佢將唔再對公眾可見。\",\"5Qmxo/\":\"你確定要取消發佈呢個主辦方資料嗎?佢將唔再對公眾可見。\",\"Uqefyd\":\"您在歐盟註冊了增值稅嗎?\",\"+QARA4\":\"藝術\",\"tLf3yJ\":\"由於您的業務位於愛爾蘭,愛爾蘭增值稅(23%)將自動套用於所有平台費用。\",\"tMeVa/\":\"為每張購買的門票詢問姓名和電郵\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"指派方案\",\"xdiER7\":\"分配的級別\",\"F2rX0R\":\"必須選擇至少一種事件類型\",\"BCmibk\":\"嘗試次數\",\"6PecK3\":\"所有活動的出席率和簽到率\",\"K2tp3v\":\"參加者\",\"AJ4rvK\":\"與會者已取消\",\"qvylEK\":\"與會者已創建\",\"Aspq3b\":\"參與者資料收集\",\"fpb0rX\":\"參與者資料已從訂單複製\",\"0R3Y+9\":\"參會者電郵\",\"94aQMU\":\"參與者資訊\",\"KkrBiR\":\"參加者資料收集\",\"av+gjP\":\"參會者姓名\",\"sjPjOg\":\"參加者備註\",\"cosfD8\":\"參與者狀態\",\"D2qlBU\":\"與會者已更新\",\"22BOve\":\"參與者更新成功\",\"x8Vnvf\":\"參與者的票不包含在此列表中\",\"/Ywywr\":\"參加者\",\"zLRobu\":\"位參加者已簽到\",\"k3Tngl\":\"與會者已導出\",\"UoIRW8\":\"已註冊參加者\",\"5UbY+B\":\"持有特定門票的與會者\",\"4HVzhV\":\"參與者:\",\"HVkhy2\":\"歸因分析\",\"dMMjeD\":\"歸因細分\",\"1oPDuj\":\"歸因值\",\"DBHTm/\":\"八月\",\"JgREph\":\"自動提供已啟用\",\"V7Tejz\":\"自動處理候補名單\",\"PZ7FTW\":\"根據背景顏色自動檢測,但可以覆蓋\",\"zlnTuI\":\"當有名額時,自動向候補名單中的下一位提供門票。如停用,您可以從候補名單頁面手動處理。\",\"csDS2L\":\"可用\",\"clF06r\":\"可退款\",\"NB5+UG\":\"可用標記\",\"L+wGOG\":\"待處理\",\"qcw2OD\":\"待付款\",\"kNmmvE\":\"Awesome Events 有限公司\",\"iH8pgl\":\"返回\",\"TeSaQO\":\"返回帳戶\",\"X7Q/iM\":\"返回日曆\",\"kYqM1A\":\"返回活動\",\"s5QRF3\":\"返回訊息\",\"td/bh+\":\"返回報告\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"基本價格\",\"hviJef\":\"根據以上的全域銷售期,並非按個別日期\",\"jIPNJG\":\"基本資料\",\"UabgBd\":\"正文是必需的\",\"HWXuQK\":\"收藏此頁面,隨時管理您的訂單。\",\"CUKVDt\":\"使用自訂標誌、顏色和頁腳訊息打造您的門票品牌。\",\"4BZj5p\":\"內置防詐騙保護\",\"cr7kGH\":\"批量編輯\",\"1Fbd6n\":\"批量編輯日期\",\"Eq6Tu9\":\"批量更新失敗。\",\"9N+p+g\":\"商務\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"公司名稱\",\"bv6RXK\":\"按鈕標籤\",\"ChDLlO\":\"按鈕文字\",\"BUe8Wj\":\"買家支付\",\"qF1qbA\":\"買家看到的是淨價。平台費用將從您的付款中扣除。\",\"dg05rc\":\"加入追蹤像素即表示您確認您與本平台為所收集數據的共同控制者。您有責任確保根據適用的私隱法(GDPR、CCPA 等)擁有合法依據處理數據。\",\"DFqasq\":[\"繼續即表示您同意 <0>\",[\"0\"],\" 服務條款\"],\"wVSa+U\":\"按月內日期\",\"0MnNgi\":\"按星期\",\"CetOZE\":\"按票種\",\"lFdbRS\":\"繞過應用費用\",\"AjVXBS\":\"日曆\",\"alkXJ5\":\"日曆檢視\",\"2VLZwd\":\"行動號召按鈕\",\"rT2cV+\":\"相機\",\"7hYa9y\":\"相機權限被拒絕。<0>再次請求權限,或在瀏覽器設定中授予此頁面相機存取權。\",\"D02dD9\":\"活動\",\"RRPA79\":\"無法簽到\",\"OcVwAd\":[\"取消 \",[\"count\"],\" 個日期\"],\"H4nE+E\":\"取消所有產品並釋放回可用池\",\"Py78q9\":\"取消日期\",\"tOXAdc\":\"取消將取消與此訂單關聯的所有參與者,並將門票釋放回可用池。\",\"vev1Jl\":\"取消\",\"Ha17hq\":[\"已取消 \",[\"0\"],\" 個日期\"],\"01sEfm\":\"無法刪除系統預設配置\",\"VsM1HH\":\"容量分配\",\"9bIMVF\":\"容量管理\",\"H7K8og\":\"容量必須為 0 或以上\",\"nzao08\":\"容量更新\",\"4cp9NP\":\"已用容量\",\"K7tIrx\":\"類別\",\"o+XJ9D\":\"更改\",\"kJkjoB\":\"更改時長\",\"J0KExZ\":\"更改參加者上限\",\"CIHJJf\":\"更改等候名單設定\",\"B5icLR\":[\"已更改 \",[\"count\"],\" 個日期的時長\"],\"Kb+0BT\":\"收款\",\"2tbLdK\":\"慈善\",\"BPWGKn\":\"簽到\",\"6uFFoY\":\"取消簽到\",\"FjAlwK\":[\"睇睇呢個活動:\",[\"0\"]],\"v4fiSg\":\"查看你嘅電郵\",\"51AsAN\":\"請檢查您的收件箱!如果此郵箱有關聯的票,您將收到查看連結。\",\"Y3FYXy\":\"簽到\",\"udRwQs\":\"簽到已創建\",\"F4SRy3\":\"簽到已刪除\",\"as6XfO\":[\"已撤銷 \",[\"0\"],\" 的簽到\"],\"9s/wrQ\":\"簽到記錄\",\"Wwztk4\":\"簽到名單\",\"9gPPUY\":\"簽到名單已建立!\",\"dwjiJt\":\"簽到列表資訊\",\"7od0PV\":\"簽到名單\",\"f2vU9t\":\"簽到列表\",\"XprdTn\":\"簽到導覽\",\"5tV1in\":\"簽到進度\",\"SHJwyq\":\"簽到率\",\"qCqdg6\":\"簽到狀態\",\"cKj6OE\":\"簽到摘要\",\"7B5M35\":\"簽到\",\"VrmydS\":\"已簽到\",\"DM4gBB\":\"中文(繁體)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"選擇其他操作\",\"fkb+y3\":\"選擇要應用的已儲存地點。\",\"Zok1Gx\":\"選擇一個主辦者\",\"pkk46Q\":\"選擇一個主辦單位\",\"Crr3pG\":\"選擇日曆\",\"LAW8Vb\":\"為新活動選擇預設設置。這可以針對單個活動進行覆蓋。\",\"pjp2n5\":\"選擇誰支付平台費用。這不會影響您在帳戶設置中配置的額外費用。\",\"xCJdfg\":\"清除\",\"QyOWu9\":\"清除地點 — 使用活動預設地點\",\"V8yTm6\":\"清除搜尋\",\"kmnKnX\":\"清除會移除任何針對個別場次的覆蓋設定。受影響的場次將使用活動的預設地點。\",\"/o+aQX\":\"點擊以取消\",\"gD7WGV\":\"點擊以重新開放銷售\",\"CySr+W\":\"點擊查看備註\",\"RG3szS\":\"關閉\",\"RWw9Lg\":\"關閉視窗\",\"XwdMMg\":\"代碼只可以包含字母、數字、連字號同底線\",\"+yMJb7\":\"必須填寫代碼\",\"m9SD3V\":\"代碼至少需要3個字元\",\"V1krgP\":\"代碼唔可以超過20個字元\",\"psqIm5\":\"與您的團隊合作,一起創造精彩活動。\",\"4bUH9i\":\"為每張購買的門票收集參加者詳情。\",\"TkfG8v\":\"按訂單收集資料\",\"96ryID\":\"按門票收集資料\",\"FpsvqB\":\"顏色模式\",\"jEu4bB\":\"欄位\",\"CWk59I\":\"喜劇\",\"rPA+Gc\":\"通訊偏好\",\"zFT5rr\":\"已完成\",\"bUQMpb\":\"完成 Stripe 設定\",\"744BMm\":\"完成您的訂單以確保獲得門票。此優惠有時間限制,請盡快完成。\",\"5YrKW7\":\"完成付款以確保您的門票。\",\"xGU92i\":\"完成您的個人資料以加入團隊。\",\"QOhkyl\":\"撰寫\",\"ih35UP\":\"會議中心\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"已指派配置\",\"X1zdE7\":\"配置建立成功\",\"mLBUMQ\":\"配置刪除成功\",\"UIENhw\":\"配置名稱對最終用戶可見。固定費用將按當前匯率轉換為訂單貨幣。\",\"eeZdaB\":\"配置更新成功\",\"3cKoxx\":\"配置\",\"8v2LRU\":\"設定活動詳情、地點、結帳選項和電郵通知。\",\"raw09+\":\"設定結帳時如何收集參與者資料\",\"FI60XC\":\"配置稅費\",\"av6ukY\":\"設定此場次提供哪些產品,並可選擇調整價格。\",\"NGXKG/\":\"確認電子郵件地址\",\"JRQitQ\":\"確認新密碼\",\"Auz0Mz\":\"請確認您的電郵地址以使用所有功能。\",\"7+grte\":\"確認電郵已發送!請檢查您的收件匣。\",\"n/7+7Q\":\"確認已發送至\",\"x3wVFc\":\"恭喜!您的活動現已對公眾可見。\",\"0W2NQP\":\"Connect bank\",\"nQI4H5\":\"連接 Stripe 以啟用電子郵件範本編輯\",\"LmvZ+E\":\"連接 Stripe 以啟用消息功能\",\"peBIO+\":\"Connect Stripe to receive ticket payments directly to your bank account.\",\"DNeN8t\":\"Connect your bank to receive ticket sales straight to your account\",\"X1y8JF\":\"Connection details are required for online dates\",\"fjfBOm\":\"Connection details are required for online events\",\"jfC/xh\":\"聯絡\",\"LOFgda\":[\"聯絡 \",[\"0\"]],\"41BQ3k\":\"聯絡電郵\",\"KcXRN+\":\"支援聯絡電郵\",\"m8WD6t\":\"繼續設置\",\"0GwUT4\":\"繼續結帳\",\"sBV87H\":\"繼續建立活動\",\"nKtyYu\":\"繼續下一步\",\"F3/nus\":\"繼續付款\",\"p2FRHj\":\"控制此活動的平台費用如何處理\",\"NqfabH\":\"控制誰可參加此日期\",\"fmYxZx\":\"控制誰在何時入場\",\"1JnTgU\":\"從上方複製\",\"FxVG/l\":\"已複製到剪貼簿\",\"PiH3UR\":\"已複製!\",\"4i7smN\":\"複製賬戶 ID\",\"uUPbPg\":\"複製推廣連結\",\"iVm46+\":\"複製代碼\",\"cF2ICc\":\"複製顧客連結\",\"+2ZJ7N\":\"將詳情複製到第一位參與者\",\"ZN1WLO\":\"複製郵箱\",\"y1eoq1\":\"複製連結\",\"tUGbi8\":\"複製我的資料到:\",\"y22tv0\":\"複製此連結以便隨處分享\",\"/4gGIX\":\"複製到剪貼簿\",\"e0f4yB\":\"無法刪除地點\",\"vkiDx2\":\"無法準備批量更新。\",\"KOavaU\":\"無法取得地址詳情\",\"xxwKSW\":\"Could not save address\",\"/lq4oO\":\"無法儲存日期\",\"eeLExK\":\"無法儲存地點\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"P0rbCt\":\"封面圖片\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"封面圖片將顯示在活動頁面頂部\",\"2NLjA6\":\"封面圖片將顯示在您的主辦單位頁面頂部\",\"GkrqoY\":\"涵蓋所有門票\",\"zg4oSu\":[\"建立\",[\"0\"],\"範本\"],\"RKKhnW\":\"建立自訂小工具以在您的網站上銷售門票。\",\"6sk7PP\":\"建立固定數量\",\"PhioFp\":\"為有效的場次建立新的簽到名單,如果您認為這是錯誤,請聯絡主辦方。\",\"yIRev4\":\"建立密碼\",\"j7xZ7J\":\"建立額外的主辦方以在一個帳戶下管理獨立的品牌、部門或活動系列。每個主辦方都有自己的活動、設定和公開頁面。\",\"xfKgwv\":\"建立推廣夥伴\",\"tudG8q\":\"建立並設定待售門票和商品。\",\"YAl9Hg\":\"建立配置\",\"BTne9e\":\"為此活動建立自定義郵件範本以覆蓋組織者預設設置\",\"YIDzi/\":\"建立自定義範本\",\"tsGqx5\":\"建立日期\",\"Nc3l/D\":\"建立折扣、隱藏門票的存取碼和特別優惠。\",\"PybJS2\":\"Create event\",\"ZhXo4F\":\"為此日期建立\",\"eWEV9G\":\"建立新密碼\",\"wl2iai\":\"建立日程\",\"8AiKIu\":\"建立門票或商品\",\"CirOY8\":\"Create ticket types so people can buy them\",\"/HGmW9\":\"建立可追蹤連結以獎勵推廣您活動的合作夥伴。\",\"dkAPxi\":\"創建 Webhook\",\"5slqwZ\":\"建立您的活動\",\"JQNMrj\":\"建立你嘅第一個活動\",\"CCjxOC\":\"Create your first event to start selling tickets and managing attendees.\",\"ZCSSd+\":\"建立您自己的活動\",\"67NsZP\":\"建立緊活動...\",\"H34qcM\":\"建立緊主辦方...\",\"1YMS+X\":\"建立緊你嘅活動,請稍候\",\"yiy8Jt\":\"建立緊你嘅主辦方資料,請稍候\",\"lfLHNz\":\"CTA標籤是必需的\",\"0xLR6W\":\"目前已指派\",\"iTvh6I\":\"目前可供購買\",\"A42Dqn\":\"自訂品牌\",\"Guo0lU\":\"自訂日期和時間\",\"mimF6c\":\"結帳後自訂訊息\",\"WDMdn8\":\"自訂問題\",\"O6mra8\":\"自訂問題\",\"axv/Mi\":\"自定義範本\",\"2YeVGY\":\"顧客連結已複製到剪貼簿\",\"QMHSMS\":\"客戶將收到確認退款的電子郵件\",\"L/Qc+w\":\"客戶電郵地址\",\"wpfWhJ\":\"客戶名字\",\"GIoqtA\":\"客戶姓氏\",\"NihQNk\":\"客戶\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"使用Liquid範本自定義發送給客戶的郵件。這些範本將用作您組織中所有活動的預設範本。\",\"xJaTUK\":\"自訂活動首頁的版面配置、顏色和品牌。\",\"MXZfGN\":\"自訂結帳時提出的問題,以從參與者那裡收集重要資訊。\",\"iX6SLo\":\"自訂繼續按鈕上顯示的文字\",\"pxNIxa\":\"使用Liquid範本自定義您的郵件範本\",\"3trPKm\":\"自訂主辦單位頁面外觀\",\"U0sC6H\":\"每日\",\"/gWrVZ\":\"所有活動的每日收入、稅費和退款\",\"zgCHnE\":\"每日銷售報告\",\"nHm0AI\":\"每日銷售、税費和費用明細\",\"1aPnDT\":\"舞蹈\",\"pvnfJD\":\"深色\",\"MaB9wW\":\"日期取消\",\"e6cAxJ\":\"已取消日期\",\"81jBnC\":\"成功取消日期\",\"a/C/6R\":\"成功建立日期\",\"IW7Q+u\":\"已刪除日期\",\"rngCAz\":\"成功刪除日期\",\"lnYE59\":\"活動日期\",\"gnBreG\":\"下單日期\",\"vHbfoQ\":\"已重新啟用日期\",\"hvah+S\":\"日期已重新開放銷售\",\"Ez0YsD\":\"成功更新日期\",\"VTsZuy\":\"日期及時間可於此管理:\",\"/ITcnz\":\"日\",\"H7OUPr\":\"日\",\"JtHrX9\":\"月內第幾日\",\"J/Upwb\":\"日\",\"vDVA2I\":\"月內日期\",\"rDLvlL\":\"星期幾\",\"r6zgGo\":\"十二月\",\"jbq7j2\":\"拒絕\",\"ovBPCi\":\"預設\",\"JtI4vj\":\"預設參加者資料收集\",\"ULjv90\":\"每個日期的預設容量\",\"3R/Tu2\":\"預設費用處理\",\"1bZAZA\":\"將使用預設範本\",\"HNlEFZ\":\"刪除\",\"vloEnh\":[\"Delete \\\"\",[\"0\"],\"\\\"? Locations referenced by events, occurrences, or set as an organizer's address can't be deleted.\"],\"BlII4o\":[\"刪除已選取的 \",[\"count\"],\" 個日期?已有訂單的日期會略過。此操作無法復原。\"],\"vu7gDm\":\"刪除推廣夥伴\",\"KZN4Lc\":\"全部刪除\",\"6EkaOO\":\"刪除日期\",\"io0G93\":\"刪除活動\",\"+jw/c1\":\"刪除圖片\",\"hdyeZ0\":\"刪除任務\",\"xxjZeP\":\"刪除地點\",\"sY3tIw\":\"刪除主辦方\",\"UBv8UK\":\"永久刪除\",\"dPyJ15\":\"刪除範本\",\"mxsm1o\":\"刪除此問題?此操作無法復原。\",\"snMaH4\":\"刪除 Webhook\",\"LIZZLY\":[\"已刪除 \",[\"0\"],\" 個日期\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"取消全選\",\"NvuEhl\":\"設計元素\",\"H8kMHT\":\"收唔到驗證碼?\",\"G8KNgd\":\"不同地點\",\"E/QGRL\":\"已停用\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"關閉此訊息\",\"BREO0S\":\"顯示一個複選框,允許客戶選擇接收此活動組織者的營銷通訊。\",\"pfa8F0\":\"顯示名稱\",\"Kdpf90\":\"別忘了!\",\"352VU2\":\"沒有帳戶?<0>註冊\",\"AXXqG+\":\"捐款\",\"DPfwMq\":\"完成\",\"JoPiZ2\":\"門口工作人員指引\",\"2+O9st\":\"下載所有已完成訂單的銷售、參與者和財務報告。\",\"eneWvv\":\"草稿\",\"Ts8hhq\":\"由於垃圾郵件風險高,您必須先連接 Stripe 帳戶才能修改電子郵件範本。這是為了確保所有活動主辦方都經過驗證並負責。\",\"TnzbL+\":\"由於垃圾訊息風險高,您必須先連接 Stripe 賬戶,方可向參加者發送訊息。\\n這是為了確保所有活動主辦方均經過驗證並承擔責任。\",\"euc6Ns\":\"複製\",\"YueC+F\":\"複製日期\",\"KRmTkx\":\"複製產品\",\"Jd3ymG\":\"時長必須至少為 1 分鐘。\",\"KIjvtr\":\"荷蘭語\",\"22xieU\":\"例如 180(3小時)\",\"/zajIE\":\"例如:早上場次\",\"SPKbfM\":\"例如:取得門票,立即註冊\",\"fc7wGW\":\"例如:關於您門票的重要更新\",\"54MPqC\":\"例如:標準版、進階版、企業版\",\"3RQ81z\":\"每位人士將收到一封包含預留名額的電子郵件,以完成購買。\",\"5oD9f/\":\"較早\",\"LTzmgK\":[\"編輯\",[\"0\"],\"範本\"],\"v4+lcZ\":\"編輯推廣夥伴\",\"2iZEz7\":\"編輯答案\",\"t2bbp8\":\"編輯參與者\",\"etaWtB\":\"編輯參與者詳情\",\"+guao5\":\"編輯配置\",\"1Mp/A4\":\"編輯日期\",\"m0ZqOT\":\"編輯地點\",\"8oivFT\":\"編輯地點\",\"vRWOrM\":\"編輯訂單詳情\",\"fW5sSv\":\"編輯 Webhook\",\"nP7CdQ\":\"編輯 Webhook\",\"MRZxAn\":\"已編輯\",\"uBAxNB\":\"編輯器\",\"aqxYLv\":\"教育\",\"iiWXDL\":\"資格失敗\",\"zPiC+q\":\"符合條件的簽到列表\",\"SiVstt\":\"電郵與排定訊息\",\"V2sk3H\":\"電子郵件和模板\",\"hbwCKE\":\"郵箱地址已複製到剪貼板\",\"dSyJj6\":\"電子郵件地址不匹配\",\"elW7Tn\":\"郵件正文\",\"ZsZeV2\":\"必須填寫電郵\",\"Be4gD+\":\"郵件預覽\",\"6IwNUc\":\"郵件範本\",\"H/UMUG\":\"需要電郵驗證\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"電郵驗證成功!\",\"FSN4TS\":\"嵌入小工具\",\"z9NkYY\":\"可嵌入小工具\",\"Qj0GKe\":\"啟用參與者自助服務\",\"hEtQsg\":\"預設啟用參與者自助服務\",\"Upeg/u\":\"啟用此範本發送郵件\",\"7dSOhU\":\"啟用候補名單\",\"RxzN1M\":\"已啟用\",\"xDr/ct\":\"結束\",\"sGjBEq\":\"結束日期與時間(可選)\",\"PKXt9R\":\"結束日期必須在開始日期之後\",\"UmzbPa\":\"場次的結束日期\",\"ZayGC7\":\"在某個日期結束\",\"48Y16Q\":\"結束時間(選填)\",\"jpNdOC\":\"場次的結束時間\",\"TbaYrr\":[\"已於 \",[\"0\"],\" 結束\"],\"CFgwiw\":[\"於 \",[\"0\"],\" 結束\"],\"SqOIQU\":\"輸入容量值或選擇無限制。\",\"h37gRz\":\"輸入標籤或選擇移除。\",\"7YZofi\":\"輸入主題和正文以查看預覽\",\"khyScF\":\"輸入要調整的時間。\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"3bR1r4\":\"輸入推廣夥伴電郵(選填)\",\"ARkzso\":\"輸入推廣夥伴名稱\",\"ej4L8b\":\"輸入容量\",\"6KnyG0\":\"輸入電郵\",\"INDKM9\":\"輸入郵件主題...\",\"xUgUTh\":\"輸入名字\",\"9/1YKL\":\"輸入姓氏\",\"VpwcSk\":\"輸入新密碼\",\"kWg31j\":\"輸入獨特推廣碼\",\"C3nD/1\":\"輸入您的電郵地址\",\"VmXiz4\":\"輸入您的電子郵件,我們將向您發送重置密碼的說明。\",\"n9V+ps\":\"輸入您的姓名\",\"IdULhL\":\"輸入您的增值稅號碼,包括國家代碼,不含空格(例如:IE1234567A、DE123456789)\",\"o21Y+P\":\"項\",\"X88/6w\":\"當客戶加入已售罄產品的候補名單時,條目將顯示在此處。\",\"LslKhj\":\"加載日誌時出錯\",\"VCNHvW\":\"活動已封存\",\"ZD0XSb\":\"活動已成功封存\",\"WgD6rb\":\"活動類別\",\"b46pt5\":\"活動封面圖片\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"活動已建立\",\"1Hzev4\":\"活動自定義範本\",\"7u9/DO\":\"活動已成功刪除\",\"imgKgl\":\"活動描述\",\"kJDmsI\":\"活動詳情\",\"m/N7Zq\":\"活動完整地址\",\"IzR/Fc\":\"Event lifetime\",\"Nl1ZtM\":\"活動地點\",\"PYs3rP\":\"活動名稱\",\"HhwcTQ\":\"活動名稱\",\"WZZzB6\":\"必須填寫活動名稱\",\"Wd5CDM\":\"活動名稱應少於 150 個字元\",\"4JzCvP\":\"活動不可用\",\"Gh9Oqb\":\"活動組織者姓名\",\"mImacG\":\"活動頁面\",\"Hk9Ki/\":\"活動已成功還原\",\"JyD0LH\":\"活動設定\",\"cOePZk\":\"活動時間\",\"e8WNln\":\"活動時區\",\"GeqWgj\":\"活動時區\",\"XVLu2v\":\"活動標題\",\"OfmsI9\":\"活動太新\",\"4SILkp\":\"活動總計\",\"YDVUVl\":\"事件類型\",\"+HeiVx\":\"活動已更新\",\"4K2OjV\":\"活動場地\",\"19j6uh\":\"活動表現\",\"PC3/fk\":\"未來 24 小時內開始的活動\",\"nwiZdc\":[\"每 \",[\"0\"]],\"2LJU4o\":[\"每 \",[\"0\"],\" 日\"],\"yLiYx+\":[\"每 \",[\"0\"],\" 個月\"],\"nn9ice\":[\"每 \",[\"0\"],\" 星期\"],\"Cdr8f9\":[\"每 \",[\"0\"],\" 星期,於 \",[\"1\"]],\"GVEHRk\":[\"每 \",[\"0\"],\" 年\"],\"fTFfOK\":\"每個郵件範本都必須包含一個連結到相應頁面的行動號召按鈕\",\"BVinvJ\":\"例子:「您是如何得知我們的?」、「發票公司名稱」\",\"2hGPQG\":\"例子:「T恤尺碼」、「餐飲偏好」、「職位」\",\"qNuTh3\":\"異常\",\"M1RnFv\":\"已過期\",\"kF8HQ7\":\"匯出答案\",\"2KAI4N\":\"匯出CSV\",\"JKfSAv\":\"導出失敗。請重試。\",\"SVOEsu\":\"導出已開始。正在準備文件...\",\"wuyaZh\":\"匯出成功\",\"9bpUSo\":\"匯出緊推廣夥伴\",\"jtrqH9\":\"正在導出與會者\",\"R4Oqr8\":\"導出完成。正在下載文件...\",\"UlAK8E\":\"正在導出訂單\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"失敗\",\"8uOlgz\":\"失敗時間\",\"tKcbYd\":\"失敗任務\",\"SsI9v/\":\"放棄訂單失敗。請重試。\",\"LdPKPR\":\"指派配置失敗\",\"PO0cfn\":\"取消日期失敗\",\"YUX+f+\":\"取消日期失敗\",\"SIHgVQ\":\"取消訊息失敗\",\"cEFg3R\":\"建立推廣夥伴失敗\",\"dVgNF1\":\"建立配置失敗\",\"fAoRRJ\":\"建立日程失敗\",\"U66oUa\":\"建立範本失敗\",\"aFk48v\":\"刪除配置失敗\",\"n1CYMH\":\"刪除日期失敗\",\"KXv+Qn\":\"刪除日期失敗。該日期可能已有訂單。\",\"JJ0uRo\":\"刪除日期失敗\",\"rgoBnv\":\"刪除活動失敗\",\"Zw6LWb\":\"刪除任務失敗\",\"tq0abZ\":\"刪除任務失敗\",\"2mkc3c\":\"刪除主辦方失敗\",\"vKMKnu\":\"刪除問題失敗\",\"xFj7Yj\":\"刪除範本失敗\",\"jo3Gm6\":\"匯出推廣夥伴失敗\",\"Jjw03p\":\"導出與會者失敗\",\"ZPwFnN\":\"導出訂單失敗\",\"zGE3CH\":\"匯出報告失敗。請重試。\",\"lS9/aZ\":\"載入收件人失敗\",\"X4o0MX\":\"加載 Webhook 失敗\",\"ETcU7q\":\"提供名額失敗\",\"5670b9\":\"提供票券失敗\",\"e5KIbI\":\"重新啟用日期失敗\",\"7zyx8a\":\"從候補名單移除失敗\",\"A/P7PX\":\"移除覆寫失敗\",\"ogWc1z\":\"重新開放日期失敗\",\"0+iwE5\":\"重新排序問題失敗\",\"EJPAcd\":\"重新發送訂單確認失敗\",\"DjSbj3\":\"重新發送門票失敗\",\"YQ3QSS\":\"重新發送驗證碼失敗\",\"wDioLj\":\"重試任務失敗\",\"DKYTWG\":\"重試任務失敗\",\"WRREqF\":\"儲存覆寫失敗\",\"sj/eZA\":\"儲存價格覆寫失敗\",\"780n8A\":\"儲存產品設定失敗\",\"zTkTF3\":\"儲存範本失敗\",\"l6acRV\":\"儲存增值稅設定失敗。請重試。\",\"T6B2gk\":\"發送訊息失敗。請再試一次。\",\"lKh069\":\"無法啟動導出任務\",\"t/KVOk\":\"無法開始模擬。請重試。\",\"QXgjH0\":\"無法停止模擬。請重試。\",\"i0QKrm\":\"更新推廣夥伴失敗\",\"NNc33d\":\"更新答案失敗。\",\"E9jY+o\":\"更新參與者失敗\",\"uQynyf\":\"更新配置失敗\",\"i2PFQJ\":\"更新活動狀態失敗\",\"EhlbcI\":\"更新訊息級別失敗\",\"rpGMzC\":\"更新訂單失敗\",\"T2aCOV\":\"更新主辦方狀態失敗\",\"Eeo/Gy\":\"更新設定失敗\",\"kqA9lY\":\"更新增值稅設定失敗\",\"7/9RFs\":\"上傳圖片失敗。\",\"nkNfWu\":\"圖片上傳失敗。請再試一次。\",\"rxy0tG\":\"驗證電郵失敗\",\"QRUpCk\":\"親子\",\"5LO38w\":\"快速匯款到你的銀行\",\"4lgLew\":\"二月\",\"9bHCo2\":\"費用貨幣\",\"/sV91a\":\"費用處理\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"費用已繞過\",\"cf35MA\":\"節慶\",\"pAey+4\":\"檔案過大。最大大小為 5MB。\",\"VejKUM\":\"請先在上方填寫您的詳細信息\",\"/n6q8B\":\"電影\",\"L1qbUx\":\"篩選參加者\",\"8OvVZZ\":\"篩選參與者\",\"N/H3++\":\"按日期篩選\",\"mvrlBO\":\"按活動篩選\",\"g+xRXP\":\"完成 Stripe 設定\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"第一\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"第一位參與者\",\"4pwejF\":\"名字為必填項\",\"3lkYdQ\":\"固定費用\",\"6bBh3/\":\"固定費用\",\"zWqUyJ\":\"每筆交易收取的固定費用\",\"LWL3Bs\":\"固定費用必須為 0 或更高\",\"0RI8m4\":\"閃光燈關閉\",\"q0923e\":\"閃光燈開啟\",\"lWxAUo\":\"飲食\",\"nFm+5u\":\"頁腳文字\",\"a8nooQ\":\"第四\",\"mob/am\":\"五\",\"wtuVU4\":\"頻率\",\"xVhQZV\":\"星期五\",\"39y5bn\":\"星期五\",\"f5UbZ0\":\"完整資料擁有權\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"全額退款\",\"UsIfa8\":\"完整解析地址\",\"PGQLdy\":\"未來\",\"8N/j1s\":\"只限未來日期\",\"yRx/6K\":\"未來日期將被複製,容量會重置為零\",\"T02gNN\":\"一般入場\",\"3ep0Gx\":\"關於您主辦單位的一般資訊\",\"ziAjHi\":\"產生\",\"exy8uo\":\"產生代碼\",\"4CETZY\":\"取得路線\",\"pjkEcB\":\"獲得付款\",\"lGYzP6\":\"透過 Stripe 收款\",\"ZDIydz\":\"開始使用\",\"u6FPxT\":\"購票\",\"8KDgYV\":\"準備好您的活動\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"返回\",\"oNL5vN\":\"前往活動頁面\",\"gHSuV/\":\"返回主頁\",\"8+Cj55\":\"前往日程\",\"6nDzTl\":\"良好的可讀性\",\"76gPWk\":\"知道了\",\"aGWZUr\":\"總收入\",\"n8IUs7\":\"總收入\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"賓客管理\",\"NUsTc4\":\"進行中\",\"kTSQej\":[\"您好 \",[\"0\"],\",從這裡管理您的平台。\"],\"dORAcs\":\"以下是與您郵箱關聯的所有票。\",\"g+2103\":\"呢個係你嘅推廣連結\",\"bVsnqU\":\"您好,\",\"/iE8xx\":\"Hi.Events 費用\",\"zppscQ\":\"Hi.Events 平台費用及每筆交易的增值稅明細\",\"D+zLDD\":\"已隱藏\",\"DRErHC\":\"對參與者隱藏 - 僅主辦方可見\",\"NNnsM0\":\"隱藏進階選項\",\"P+5Pbo\":\"隱藏答案\",\"VMlRqi\":\"隱藏詳情\",\"FmogyU\":\"隱藏選項\",\"gtEbeW\":\"突出顯示\",\"NF8sdv\":\"突出顯示訊息\",\"MXSqmS\":\"突出顯示此產品\",\"7ER2sc\":\"已突出顯示\",\"sq7vjE\":\"突出顯示的產品將具有不同的背景色,使其在活動頁面上脫穎而出。\",\"1+WSY1\":\"嗜好\",\"yY8wAv\":\"小時\",\"sy9anN\":\"客戶收到報價後完成購買的時限。留空表示無時間限制。\",\"n2ilNh\":\"日程持續多久?\",\"DMr2XN\":\"幾耐一次?\",\"AVpmAa\":\"如何離線付款\",\"cceMns\":\"我們向您收取的平台費用如何套用增值稅。\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"匈牙利語\",\"8Wgd41\":\"我確認本人作為資料控制者的責任\",\"O8m7VA\":\"我同意接收與此活動相關的電子郵件通知\",\"YLgdk5\":\"我確認這是與此活動相關的交易訊息\",\"4/kP5a\":\"如果未自動開啟新分頁,請點擊下方按鈕繼續結帳。\",\"W/eN+G\":\"如果留空,地址將用於生成 Google 地圖連結\",\"iIEaNB\":\"如果您在我們這裡有帳戶,您將收到一封電子郵件,其中包含如何重置密碼的說明。\",\"an5hVd\":\"圖片\",\"tSVr6t\":\"模擬\",\"TWXU0c\":\"模擬用戶\",\"5LAZwq\":\"模擬已開始\",\"IMwcdR\":\"模擬已停止\",\"0I0Hac\":\"重要通知\",\"yD3avI\":\"重要提示:更改您的電郵地址將更新存取此訂單的連結。儲存後,您將被重新導向至新的訂單連結。\",\"jT142F\":[[\"diffHours\"],\" 小時後\"],\"OoSyqO\":[[\"diffMinutes\"],\" 分鐘後\"],\"PdMhEx\":[\"最近 \",[\"0\"],\" 分鐘\"],\"u7r0G5\":\"實地 — 設定場地\",\"Ip0hl5\":\"in_person、online、unset 或 mixed\",\"F1Xp97\":\"個人與會者\",\"85e6zs\":\"插入Liquid標記\",\"38KFY0\":\"插入變數\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Stripe 即時付款\",\"nbfdhU\":\"整合\",\"I8eJ6/\":\"參加者票券上的內部備註\",\"B2Tpo0\":\"無效電郵\",\"5tT0+u\":\"電郵格式無效\",\"f9WRpE\":\"無效的檔案類型。請上傳圖片。\",\"tnL+GP\":\"無效的Liquid語法。請更正後再試。\",\"N9JsFT\":\"無效的增值稅號碼格式\",\"g+lLS9\":\"邀請團隊成員\",\"1z26sk\":\"邀請團隊成員\",\"KR0679\":\"邀請團隊成員\",\"aH6ZIb\":\"邀請您的團隊\",\"IuMGvq\":\"發票\",\"Lj7sBL\":\"意大利語\",\"F5/CBH\":\"項目\",\"BzfzPK\":\"項目\",\"rjyWPb\":\"一月\",\"KmWyx0\":\"任務\",\"o5r6b2\":\"任務已刪除\",\"cd0jIM\":\"任務詳情\",\"ruJO57\":\"任務名稱\",\"YZi+Hu\":\"任務已排隊等待重試\",\"nCywLA\":\"隨時隨地加入\",\"SNzppu\":\"加入候補名單\",\"dLouFI\":[\"加入 \",[\"productDisplayName\"],\" 的候補名單\"],\"2gMuHR\":\"已加入\",\"u4ex5r\":\"七月\",\"zeEQd/\":\"六月\",\"MxjCqk\":\"只是在找您的票?\",\"xOTzt5\":\"剛剛\",\"0RihU9\":\"剛結束\",\"lB2hSG\":[\"讓我隨時了解來自 \",[\"0\"],\" 的新聞和活動\"],\"ioFA9i\":\"保留利潤。\",\"4Sffp7\":\"場次的標籤\",\"o66QSP\":\"標籤更新\",\"RtKKbA\":\"最後\",\"DruLRc\":\"過去14天\",\"ve9JTU\":\"姓氏為必填項\",\"h0Q9Iw\":\"最新響應\",\"gw3Ur5\":\"最近觸發\",\"FIq1Ba\":\"稍後\",\"xvnLMP\":\"最新簽到\",\"pzAivY\":\"解析位置的緯度\",\"N5TErv\":\"留空表示無限制\",\"L/hDDD\":\"留空以將此簽到名單套用至所有場次\",\"9Pf3wk\":\"保持啟用以涵蓋活動的所有門票。關閉以選擇特定門票。\",\"Hq2BzX\":\"通知佢哋呢個變更\",\"+uexiy\":\"通知佢哋呢啲變更\",\"exYcTF\":\"圖書館\",\"1njn7W\":\"淺色\",\"1qY5Ue\":\"連結已過期或無效\",\"+zSD/o\":\"活動主頁連結\",\"psosdY\":\"訂單詳情連結\",\"6JzK4N\":\"門票連結\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"允許連結\",\"2BBAbc\":\"清單\",\"5NZpX8\":\"清單檢視\",\"dF6vP6\":\"已上線\",\"fpMs2Z\":\"直播\",\"D9zTjx\":\"直播活動\",\"C33p4q\":\"已載入的日期\",\"WdmJIX\":\"載入預覽中...\",\"IoDI2o\":\"載入標記中...\",\"G3Ge9Z\":\"正在載入 Webhook 日誌...\",\"NFxlHW\":\"正在加載 Webhook\",\"E0DoRM\":\"已刪除地點\",\"NtLHT3\":\"地點格式化地址\",\"h4vxDc\":\"地點緯度\",\"f2TMhR\":\"地點經度\",\"lnCo2f\":\"地點模式\",\"8pmGFk\":\"地點名稱\",\"7w8lJU\":\"已儲存地點\",\"YsRXDD\":\"已更新地點\",\"A/kIva\":\"地點更新\",\"VppBoU\":\"地點\",\"iG7KNr\":\"標誌\",\"vu7ZGG\":\"標誌與封面\",\"gddQe0\":\"您主辦單位的標誌與封面圖片\",\"TBEnp1\":\"標誌將顯示於頁首\",\"Jzu30R\":\"標誌將顯示在門票上\",\"zKTMTg\":\"解析位置的經度\",\"PSRm6/\":\"查找我的門票\",\"yJFu/X\":\"主要辦公室\",\"v5nFPh\":\"Make it visible so people can buy tickets\",\"cdY2at\":[\"管理 \",[\"0\"]],\"wZJfA8\":\"管理您循環活動的日期及時間\",\"RlzPUE\":\"在 Stripe 上管理\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"管理日程\",\"zXuaxY\":\"管理活動的候補名單、檢視統計,並向參加者提供門票。\",\"BWTzAb\":\"手動\",\"g2npA5\":\"手動提供\",\"hg6l4j\":\"三月\",\"pqRBOz\":\"標記為已驗證(管理員覆寫)\",\"2L3vle\":\"最大訊息數 / 24小時\",\"Qp4HWD\":\"最大收件人數 / 訊息\",\"3JzsDb\":\"五月\",\"agPptk\":\"媒介\",\"xDAtGP\":\"訊息\",\"bECJqy\":\"訊息批准成功\",\"1jRD0v\":\"向與會者發送特定門票的信息\",\"uQLXbS\":\"訊息已取消\",\"48rf3i\":\"訊息不能超過5000個字符\",\"ZPj0Q8\":\"訊息詳情\",\"Vjat/X\":\"必須填寫訊息\",\"0/yJtP\":\"向具有特定產品的訂單所有者發送消息\",\"saG4At\":\"訊息已排程\",\"mFdA+i\":\"訊息級別\",\"v7xKtM\":\"訊息級別更新成功\",\"H9HlDe\":\"分鐘\",\"agRWc1\":\"分鐘\",\"YYzBv9\":\"一\",\"zz/Wd/\":\"模式\",\"fpMgHS\":\"星期一\",\"hty0d5\":\"星期一\",\"JbIgPz\":\"貨幣金額是所有貨幣的大致總和\",\"qvF+MT\":\"監控和管理失敗的後台任務\",\"kY2ll9\":\"月\",\"HajiZl\":\"月\",\"+8Nek/\":\"每月\",\"1LkxnU\":\"每月模式\",\"6jefe3\":\"個月\",\"f8jrkd\":\"更多\",\"JcD7qf\":\"更多操作\",\"w36OkR\":\"最多瀏覽活動(過去14天)\",\"+Y/na7\":\"將所有日期提前或延後\",\"3DIpY0\":\"多個地點\",\"g9cQCP\":\"多種門票類型\",\"GfaxEk\":\"音樂\",\"oVGCGh\":\"我的票\",\"8/brI5\":\"必須填寫名稱\",\"sFFArG\":\"名稱必須少於 255 個字元\",\"sCV5Yc\":\"活動名稱\",\"xxU3NX\":\"淨收入\",\"7I8LlL\":\"新容量\",\"n1GRql\":\"新標籤\",\"y0Fcpd\":\"新地點\",\"ArHT/C\":\"新註冊\",\"uK7xWf\":\"新時間:\",\"veT5Br\":\"下個場次\",\"WXtl5X\":[\"下次:\",[\"nextFormatted\"]],\"eWRECP\":\"夜生活\",\"HSw5l3\":\"否 - 我是個人或非增值稅註冊企業\",\"VHfLAW\":\"無帳戶\",\"+jIeoh\":\"未找到賬戶\",\"074+X8\":\"沒有活動的 Webhook\",\"zxnup4\":\"冇推廣夥伴可顯示\",\"Dwf4dR\":\"暫無參與者問題\",\"th7rdT\":\"沒有參加者\",\"PKySlW\":\"此日期暫無參加者。\",\"/UC6qk\":\"未找到歸因數據\",\"E2vYsO\":\"Stripe 尚未報告任何功能。\",\"amMkpL\":\"無容量\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"此活動沒有可用的簽到列表。\",\"wG+knX\":\"暫無簽到\",\"+dAKxg\":\"找不到配置\",\"LiLk8u\":\"沒有可用的連接\",\"eb47T5\":\"未找到所選篩選條件的數據。請嘗試調整日期範圍或貨幣。\",\"lFVUyx\":\"沒有針對此日期的簽到名單\",\"I8mtzP\":\"本月沒有可用日期。請瀏覽其他月份。\",\"yDukIL\":\"沒有日期符合目前的篩選條件。\",\"B7phdj\":\"沒有日期符合您的篩選條件\",\"/ZB4Um\":\"沒有日期符合您的搜尋\",\"gEdNe8\":\"尚未安排日期\",\"27GYXJ\":\"尚未安排日期。\",\"pZNOT9\":\"沒有結束日期\",\"dW40Uz\":\"未找到活動\",\"8pQ3NJ\":\"未來 24 小時內沒有活動開始\",\"8zCZQf\":\"No events yet\",\"Yc5YW6\":\"沒有失敗的任務\",\"EpvBAp\":\"無發票\",\"XZkeaI\":\"未找到日誌\",\"nrSs2u\":\"未找到訊息\",\"Rj99yx\":\"沒有可用場次\",\"IFU1IG\":\"此日期沒有場次\",\"OVFwlg\":\"暫無訂單問題\",\"EJ7bVz\":\"找不到訂單\",\"NEmyqy\":\"No orders yet\",\"a77B6w\":\"此日期暫無訂單。\",\"wUv5xQ\":\"過去14天沒有主辦方活動\",\"vLd1tV\":\"無可用的主辦方資料。\",\"B7w4KY\":\"沒有其他可用的主辦單位\",\"PChXMe\":\"無付費訂單\",\"6jYQGG\":\"沒有過往活動\",\"CHzaTD\":\"過去14天沒有熱門活動\",\"zK/+ef\":\"沒有可供選擇的產品\",\"M1/lXs\":\"此活動未設定任何產品。\",\"kY7XDn\":\"沒有產品有等候名單條目\",\"wYiAtV\":\"沒有最近的帳戶註冊\",\"UW90md\":\"未找到收件人\",\"QoAi8D\":\"無響應\",\"JeO7SI\":\"未回覆\",\"EK/G11\":\"尚無響應\",\"7J5OKy\":\"尚未儲存任何地點\",\"wpCjcf\":\"尚未儲存任何地點。當您建立含地址的活動後,地點便會在此顯示。\",\"mPdY6W\":\"沒有建議\",\"3sRuiW\":\"未找到票\",\"k2C0ZR\":\"沒有即將舉行的日期\",\"yM5c0q\":\"沒有即將舉行的活動\",\"qpC74J\":\"未找到用戶\",\"8wgkoi\":\"過去14天沒有瀏覽的活動\",\"Arzxc1\":\"沒有候補名單條目\",\"n5vdm2\":\"此端點尚未記錄任何 Webhook 事件。事件觸發後將顯示在此處。\",\"4GhX3c\":\"沒有 Webhooks\",\"4+am6b\":\"否,保留在此\",\"4JVMUi\":\"未編輯\",\"Itw24Q\":\"未簽到\",\"x5+Lcz\":\"未簽到\",\"8n10sz\":\"不符合條件\",\"kLvU3F\":\"通知參加者並停止銷售\",\"t9QlBd\":\"十一月\",\"kAREMN\":\"建立日期數量\",\"6u1B3O\":\"場次\",\"mmoE62\":\"場次已取消\",\"UYWXdN\":\"場次結束日期\",\"k7dZT5\":\"場次結束時間\",\"Opinaj\":\"場次標籤\",\"V9flmL\":\"場次日程\",\"NUTUUs\":\"場次日程頁面\",\"AT8UKD\":\"場次開始日期\",\"Um8bvD\":\"場次開始時間\",\"Kh3WO8\":\"場次摘要\",\"byXCTu\":\"場次\",\"KATw3p\":\"場次(只限未來)\",\"85rTR2\":\"建立後可設定場次\",\"dzQfDY\":\"十月\",\"BwJKBw\":\"共\",\"9h7RDh\":\"提供\",\"EfK2O6\":\"提供名額\",\"3sVRey\":\"提供門票\",\"2O7Ybb\":\"報價逾時\",\"1jUg5D\":\"已提供\",\"l+/HS6\":[\"報價將在 \",[\"timeoutHours\"],\" 小時後過期。\"],\"lQgMLn\":\"辦公室或場地名稱\",\"6Aih4U\":\"離線\",\"Z6gBGW\":\"離線付款\",\"nO3VbP\":[\"正在銷售 \",[\"0\"]],\"oXOSPE\":\"線上\",\"aqmy5k\":\"線上 — 提供連接詳情\",\"LuZBbx\":\"線上及線下\",\"IXuOqt\":\"線上及線下 — 請參閱日程\",\"w3DG44\":\"線上連線詳情\",\"WjSpu5\":\"線上活動\",\"TP6jss\":\"線上活動連線詳情\",\"NdOxqr\":\"只有帳戶管理員可以刪除或封存活動。請聯絡您的帳戶管理員尋求協助。\",\"rnoDMF\":\"只有帳戶管理員可以刪除或封存主辦方。請聯絡您的帳戶管理員尋求協助。\",\"bU7oUm\":\"僅發送給具有這些狀態的訂單\",\"M2w1ni\":\"僅使用促銷代碼時可見\",\"y8Bm7C\":\"開啟簽到\",\"RLz7P+\":\"開啟場次\",\"cDSdPb\":\"可選暱稱,會顯示於選擇器,例如「總部會議室」\",\"HXMJxH\":\"免責聲明、聯繫信息或感謝說明的可選文本(僅單行)\",\"L565X2\":\"選項\",\"8m9emP\":\"或新增單一日期\",\"dSeVIm\":\"訂單\",\"c/TIyD\":\"訂單及門票\",\"H5qWhm\":\"訂單已取消\",\"b6+Y+n\":\"訂單完成\",\"x4MLWE\":\"訂單確認\",\"CsTTH0\":\"訂單確認重新發送成功\",\"ppuQR4\":\"訂單已創建\",\"0UZTSq\":\"訂單貨幣\",\"xtQzag\":\"訂單詳情\",\"HdmwrI\":\"訂單電郵\",\"bwBlJv\":\"訂單名字\",\"vrSW9M\":\"訂單已取消並退款。訂單所有者已收到通知。\",\"rzw+wS\":\"訂單持有人\",\"oI/hGR\":\"訂單編號\",\"Pc729f\":\"訂單等待線下支付\",\"F4NXOl\":\"訂單姓氏\",\"RQCXz6\":\"訂單限制\",\"SO9AEF\":\"已設定訂單限制\",\"5RDEEn\":\"訂單語言\",\"vu6Arl\":\"訂單標記為已支付\",\"sLbJQz\":\"未找到訂單\",\"kvYpYu\":\"找不到訂單\",\"i8VBuv\":\"訂單號\",\"eJ8SvM\":\"訂單號、購買日期、購買者電郵\",\"FaPYw+\":\"訂單所有者\",\"eB5vce\":\"具有特定產品的訂單所有者\",\"CxLoxM\":\"具有產品的訂單所有者\",\"DoH3fD\":\"訂單付款待處理\",\"UkHo4c\":\"訂單參考\",\"EZy55F\":\"訂單已退款\",\"6eSHqs\":\"訂單狀態\",\"oW5877\":\"訂單總額\",\"e7eZuA\":\"訂單已更新\",\"1SQRYo\":\"訂單更新成功\",\"KndP6g\":\"訂單連結\",\"3NT0Ck\":\"訂單已被取消\",\"V5khLm\":\"訂單\",\"sd5IMt\":\"已完成訂單\",\"5It1cQ\":\"訂單已導出\",\"tlKX/S\":\"跨越多個日期的訂單將會被標記以待人工審核。\",\"UQ0ACV\":\"訂單總額\",\"B/EBQv\":\"訂單:\",\"qtGTNu\":\"自然帳戶\",\"ucgZ0o\":\"組織\",\"P/JHA4\":\"主辦方已成功封存\",\"S3CZ5M\":\"主辦單位儀表板\",\"GzjTd0\":\"主辦方已成功刪除\",\"Uu0hZq\":\"組織者郵箱\",\"Gy7BA3\":\"組織者電子郵件地址\",\"SQqJd8\":\"找不到主辦單位\",\"HF8Bxa\":\"主辦方已成功還原\",\"wpj63n\":\"主辦單位設定\",\"o1my93\":\"更新主辦單位狀態失敗。請稍後再試。\",\"rLHma1\":\"主辦單位狀態已更新\",\"LqBITi\":\"將使用組織者/預設範本\",\"q4zH+l\":\"主辦方\",\"/IX/7x\":\"其他\",\"RsiDDQ\":\"其他列表(不包含此票)\",\"aDfajK\":\"戶外\",\"qMASRF\":\"發出的訊息\",\"iCOVQO\":\"覆寫\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"覆寫價格\",\"cnVIpl\":\"已移除覆寫\",\"6/dCYd\":\"總覽\",\"6WdDG7\":\"頁面\",\"8uqsE5\":\"頁面不再可用\",\"QkLf4H\":\"頁面網址\",\"sF+Xp9\":\"頁面瀏覽量\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"付費帳戶\",\"5F7SYw\":\"部分退款\",\"fFYotW\":[\"部分退款:\",[\"0\"]],\"i8day5\":\"將費用轉嫁給買家\",\"k4FLBQ\":\"轉嫁給買家\",\"Ff0Dor\":\"過去\",\"BFjW8X\":\"逾期\",\"xTPjSy\":\"過往活動\",\"/l/ckQ\":\"貼上網址\",\"URAE3q\":\"已暫停\",\"4fL/V7\":\"付款\",\"OZK07J\":\"付款解鎖\",\"c2/9VE\":\"負載數據\",\"5cxUwd\":\"付款日期\",\"ENEPLY\":\"付款方式\",\"8Lx2X7\":\"已收到付款\",\"fx8BTd\":\"付款不可用\",\"C+ylwF\":\"提款\",\"UbRKMZ\":\"待處理\",\"UkM20g\":\"待審核\",\"dPYu1F\":\"每位參與者\",\"mQV/nJ\":\"每分鐘\",\"VlXNyK\":\"每份訂單\",\"hauDFf\":\"每張門票\",\"mnF83a\":\"百分比費用\",\"TNLuRD\":\"百分比費用 (%)\",\"MixU2P\":\"百分比必須介於 0 到 100 之間\",\"MkuVAZ\":\"交易金額的百分比\",\"/Bh+7r\":\"表現\",\"fIp56F\":\"永久刪除此活動及其所有相關資料。\",\"nJeeX7\":\"永久刪除此主辦方及其所有活動。\",\"wfCTgK\":\"永久移除此日期\",\"6kPk3+\":\"個人資料\",\"zmwvG2\":\"電話\",\"SdM+Q1\":\"選擇地點\",\"tSR/oe\":\"選擇結束日期\",\"e8kzpp\":\"至少選擇一個月內日期\",\"35C8QZ\":\"至少選擇一個星期\",\"zFIMat\":\"Pinterest\",\"XqdYDH\":\"下單\",\"wBJR8i\":\"計劃舉辦活動?\",\"J3lhKT\":\"平台費用\",\"RD51+P\":[\"從您的付款中扣除 \",[\"0\"],\" 的平台費用\"],\"br3Y/y\":\"平台費用\",\"3buiaw\":\"平台費用報告\",\"kv9dM4\":\"平台收入\",\"PJ3Ykr\":\"請查閱您的門票以取得更新時間。您的門票仍然有效 — 除非新時間不適合您,否則無需任何行動。如有疑問,請回覆此電郵。\",\"OtjenF\":\"請輸入有效的電子郵件地址\",\"jEw0Mr\":\"請輸入有效的 URL\",\"n8+Ng/\":\"請輸入5位數驗證碼\",\"r+lQXT\":\"請輸入您的增值稅號碼\",\"Dvq0wf\":\"請提供圖片。\",\"2cUopP\":\"請重新開始結賬流程。\",\"GoXxOA\":\"請選擇日期及時間\",\"8KmsFa\":\"請選擇日期範圍\",\"EFq6EG\":\"請選擇圖片。\",\"fuwKpE\":\"請再試一次。\",\"klWBeI\":\"請等一陣再申請新嘅驗證碼\",\"hfHhaa\":\"請稍候,我哋準備緊匯出你嘅推廣夥伴...\",\"o+tJN/\":\"請稍候,我們正在準備導出您的與會者...\",\"+5Mlle\":\"請稍候,我們正在準備導出您的訂單...\",\"trnWaw\":\"波蘭語\",\"luHAJY\":\"熱門活動(過去14天)\",\"p/78dY\":\"位置\",\"TjX7xL\":\"結帳後訊息\",\"OESu7I\":\"透過在多種門票類型之間共享庫存來防止超賣。\",\"NgVUL2\":\"預覽結帳表單\",\"cs5muu\":\"預覽活動頁面\",\"+4yRWM\":\"門票價格\",\"Jm2AC3\":\"價格層級\",\"a5jvSX\":\"價格等級\",\"ReihZ7\":\"列印預覽\",\"JnuPvH\":\"列印門票\",\"tYF4Zq\":\"列印為PDF\",\"LcET2C\":\"私隱政策\",\"8z6Y5D\":\"處理退款\",\"JcejNJ\":\"處理訂單中\",\"EWCLpZ\":\"產品已創建\",\"XkFYVB\":\"產品已刪除\",\"YMwcbR\":\"產品銷售、收入和税費明細\",\"ls0mTC\":\"已取消的日期無法編輯產品設定。\",\"2339ej\":\"成功儲存產品設定\",\"ldVIlB\":\"產品已更新\",\"CP3D8G\":\"進度\",\"JoKGiJ\":\"優惠碼\",\"k3wH7i\":\"促銷碼使用情況及折扣明細\",\"tZqL0q\":\"促銷代碼\",\"oCHiz3\":\"促銷代碼\",\"uEhdRh\":\"僅限促銷\",\"dLm8V5\":\"促銷電子郵件可能導致帳戶被暫停\",\"XoEWtl\":\"請為新地點提供至少一個地址欄位。\",\"2W/7Gz\":\"請在 Stripe 下次審核前提供以下資料,以維持提款。\",\"aemBRq\":\"供應商\",\"EEYbdt\":\"發佈\",\"2zEfOd\":\"Publish your event\",\"dsFmM+\":\"已購買\",\"JunetL\":\"購買者\",\"phmeUH\":\"購買者電郵\",\"ywR4ZL\":\"QR 碼簽到\",\"oWXNE5\":\"數量\",\"biEyJ4\":\"問題回答\",\"k/bJj0\":\"問題已重新排序\",\"b24kPi\":\"隊列\",\"lTPqpM\":\"貼士\",\"fqDzSu\":\"費率\",\"mnUGVC\":\"超出速率限制。請稍後再試。\",\"t41hVI\":\"重新提供名額\",\"TNclgc\":\"重新啟用此日期?將會重新開放未來銷售。\",\"uqoRbb\":\"即時數據分析\",\"xzRvs4\":[\"接收 \",[\"0\"],\" 的產品更新。\"],\"pLXbi8\":\"最近帳戶註冊\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"最近參加者\",\"qhfiwV\":\"最近簽到\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"最近訂單\",\"7hPBBn\":\"位收件人\",\"jp5bq8\":\"位收件人\",\"yPrbsy\":\"收件人\",\"E1F5Ji\":\"收件人在訊息發送後可用\",\"wuhHPE\":\"循環\",\"asLqwt\":\"循環活動\",\"D0tAMe\":\"循環活動\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"正在重定向到 Stripe...\",\"pnoTN5\":\"推薦帳戶\",\"ACKu03\":\"刷新預覽\",\"vuFYA6\":\"為這些日期的所有訂單退款\",\"4cRUK3\":\"為此日期的所有訂單退款\",\"fKn/k6\":\"退款金額\",\"qY4rpA\":\"退款失敗\",\"TspTcZ\":\"已發出退款\",\"FaK/8G\":[\"退款訂單 \",[\"0\"]],\"MGbi9P\":\"退款待處理\",\"BDSRuX\":[\"已退款:\",[\"0\"]],\"bU4bS1\":\"退款\",\"rYXfOA\":\"地區設定\",\"5tl0Bp\":\"註冊問題\",\"ZNo5k1\":\"剩餘\",\"EMnuA4\":\"已排定提醒\",\"Bjh87R\":\"從所有日期移除標籤\",\"KkJtVK\":\"重新開放銷售\",\"XJwWJp\":\"重新開放此日期進行銷售?之前已取消的票券將不會被恢復 — 受影響的參加者保持已取消狀態,已發放的退款亦不會被撤銷。\",\"bAwDQs\":\"重複間隔\",\"CQeZT8\":\"未找到報告\",\"JEPMXN\":\"請求新連結\",\"TMLAx2\":\"必填\",\"mdeIOH\":\"重新發送驗證碼\",\"sQxe68\":\"重新發送確認\",\"bxoWpz\":\"重新發送確認電郵\",\"G42SNI\":\"重新發送電郵\",\"TTpXL3\":[[\"resendCooldown\"],\"秒後重新發送\"],\"5CiNPm\":\"重新發送門票\",\"Uwsg2F\":\"已預留\",\"8wUjGl\":\"保留至\",\"a5z8mb\":\"重設為基本價格\",\"kCn6wb\":\"重置中...\",\"404zLK\":\"已解析的地點或場地名稱\",\"ZlCDf+\":\"回覆\",\"bsydMp\":\"回覆詳情\",\"yKu/3Y\":\"還原\",\"RokrZf\":\"還原活動\",\"/JyMGh\":\"還原主辦方\",\"HFvFRb\":\"還原此活動以使其再次可見。\",\"DDIcqy\":\"還原此主辦方並使其重新活躍。\",\"mO8KLE\":\"結果\",\"6gRgw8\":\"重試\",\"1BG8ga\":\"全部重試\",\"rDC+T6\":\"重試任務\",\"CbnrWb\":\"返回活動\",\"mdQ0zb\":\"可重用的活動場地。從自動完成建立的地點會自動儲存於此。\",\"XFOPle\":\"重複使用\",\"1Zehp4\":\"重複使用此帳戶下其他主辦者的 Stripe 連接。\",\"Oo/PLb\":\"收入摘要\",\"O/8Ceg\":\"今日收益\",\"CfuueU\":\"撤回優惠\",\"RIgKv+\":\"執行至指定日期\",\"JYRqp5\":\"六\",\"dFFW9L\":[\"銷售已於 \",[\"0\"],\" 結束\"],\"loCKGB\":[\"銷售於 \",[\"0\"],\" 結束\"],\"wlfBad\":\"銷售期間\",\"qi81Jg\":\"銷售期日期適用於日程中所有日期。如要控制個別日期的定價及上架情況,請使用<0>場次日程頁面的覆寫設定。\",\"5CDM6r\":\"已設定銷售期間\",\"ftzaMf\":\"銷售期間、訂單限制、可見性\",\"zpekWp\":[\"銷售於 \",[\"0\"],\" 開始\"],\"mUv9U4\":\"銷售\",\"9KnRdL\":\"銷售已暫停\",\"JC3J0k\":\"每個場次的銷售、出席及簽到詳情\",\"3VnlS9\":\"所有活動的銷售、訂單和表現指標\",\"3Q1AWe\":\"銷售額:\",\"LeuERW\":\"與活動相同\",\"B4nE3N\":\"示例票價\",\"8BRPoH\":\"示例場地\",\"PiK6Ld\":\"星期六\",\"+5kO8P\":\"星期六\",\"zJiuDn\":\"儲存費用覆寫\",\"NB8Uxt\":\"儲存日程\",\"KZrfYJ\":\"儲存社交連結\",\"9Y3hAT\":\"儲存範本\",\"C8ne4X\":\"儲存門票設計\",\"cTI8IK\":\"儲存增值稅設定\",\"6/TNCd\":\"儲存增值稅設定\",\"4RvD9q\":\"已儲存地點\",\"cgw0cL\":\"已儲存地點\",\"lvSrsT\":\"已儲存地點\",\"Fbqm/I\":\"如果目前使用系統預設,儲存覆寫會為此主辦方建立專屬配置。\",\"I+FvbD\":\"掃描\",\"0zd6Nm\":\"掃描票券以為參加者簽到\",\"bQG7Qk\":\"掃描的票券將顯示於此\",\"WDYSLJ\":\"掃描模式\",\"gmB6oO\":\"日程\",\"qQTaVm\":\"Schedule added\",\"j6NnBq\":\"成功建立日程\",\"YP7frt\":\"日程結束於\",\"QS1Nla\":\"稍後發送\",\"NAzVVw\":\"排程訊息\",\"Fz09JP\":\"排程開始日期\",\"4ba0NE\":\"已排程\",\"qcP/8K\":\"排程時間\",\"A1taO8\":\"搜尋\",\"ftNXma\":\"搜尋推廣夥伴...\",\"VMU+zM\":\"搜尋參加者\",\"VY+Bdn\":\"按賬戶名稱或電子郵件搜尋...\",\"VX+B3I\":\"按活動標題或主辦方搜索...\",\"R0wEyA\":\"按任務名稱或異常搜索...\",\"VT+urE\":\"按姓名或電子郵件搜尋...\",\"GHdjuo\":\"按姓名、電子郵件或帳戶搜索...\",\"4mBFO7\":\"按姓名、訂單、票號或電郵搜尋\",\"20ce0U\":\"按訂單編號、客戶姓名或電子郵件搜尋...\",\"4DSz7Z\":\"按主題、活動或賬戶搜索...\",\"nQC7Z9\":\"搜尋日期...\",\"iRtEpV\":\"搜尋日期…\",\"JRM7ao\":\"搜尋地址\",\"BWF1kC\":\"搜尋訊息...\",\"3aD3GF\":\"季節性\",\"ku//5b\":\"第二\",\"Mck5ht\":\"安全結帳\",\"s7tXqF\":\"查看日程\",\"JFap6u\":\"查看 Stripe 還需要什麼\",\"p7xUrt\":\"選擇類別\",\"hTKQwS\":\"選擇日期及時間\",\"e4L7bF\":\"選擇一則訊息查看其內容\",\"zPRPMf\":\"選擇級別\",\"uqpVri\":\"選擇時間\",\"BFRSTT\":\"選擇帳戶\",\"wgNoIs\":\"全選\",\"mCB6Je\":\"全選\",\"aCEysm\":[\"選取 \",[\"0\"],\" 的全部\"],\"a6+167\":\"選擇活動\",\"CFbaPk\":\"選擇參加者群組\",\"88a49s\":\"選擇相機\",\"tVW/yo\":\"選擇貨幣\",\"SJQM1I\":\"選擇日期\",\"n9ZhRa\":\"選擇結束日期與時間\",\"gTN6Ws\":\"選擇結束時間\",\"0U6E9W\":\"選擇活動類別\",\"j9cPeF\":\"選擇事件類型\",\"ypTjHL\":\"選擇場次\",\"KizCK7\":\"選擇開始日期與時間\",\"dJZTv2\":\"選擇開始時間\",\"x8XMsJ\":\"為此帳戶選擇訊息級別。這控制訊息限制和連結權限。\",\"aT3jZX\":\"選擇時區\",\"TxfvH2\":\"選擇哪些參加者應該收到此訊息\",\"Ropvj0\":\"選擇哪些事件將觸發此 Webhook\",\"+6YAwo\":\"已選取\",\"ylXj1N\":\"已選擇\",\"uq3CXQ\":\"活動售罄。\",\"j9b/iy\":\"熱賣中 🔥\",\"73qYgo\":\"作為測試發送\",\"HMAqFK\":\"向參與者、持票人或訂單擁有者發送電子郵件。訊息可以立即發送或安排稍後發送。\",\"22Itl6\":\"發送副本給我\",\"NpEm3p\":\"立即發送\",\"nOBvex\":\"將即時訂單和參與者資料傳送到您的外部系統。\",\"1lNPhX\":\"發送退款通知郵件\",\"eaUTwS\":\"發送重置連結\",\"5cV4PY\":\"傳送至所有場次,或選擇特定場次\",\"QEQlnV\":\"發送您的第一則訊息\",\"3nMAVT\":\"將於 2 日 4 小時後發送\",\"IoAuJG\":\"發送中...\",\"h69WC6\":\"已發送\",\"BVu2Hz\":\"發送者\",\"ZFa8wv\":\"當已排定的日期取消時發送給參加者\",\"SPdzrs\":\"客戶下訂時發送\",\"LxSN5F\":\"發送給每位參會者及其門票詳情\",\"hgvbYY\":\"九月\",\"5sN96e\":\"場次已取消\",\"89xaFU\":\"為此主辦方創建的新活動設置預設平台費用設置。\",\"eXssj5\":\"為此主辦單位下創建的新活動設定預設設定。\",\"uPe5p8\":\"設定每個日期的時長\",\"xNsRxU\":\"設定日期數量\",\"ODuUEi\":\"設定或清除日期標籤\",\"buHACR\":\"將每個日期的結束時間設定為開始時間之後這段時間。\",\"TaeFgl\":\"設為無限制(移除上限)\",\"pd6SSe\":\"設定循環日程以自動建立日期,或逐個新增。\",\"s0FkEx\":\"為不同的入口、場次或日期設定簽到列表。\",\"TaWVGe\":\"設定付款\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"設定日程\",\"xMO+Ao\":\"設定你嘅機構\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"設定您的日程\",\"ETC76A\":\"設定、更改或移除該場次的地點或線上詳情\",\"C3htzi\":\"設定已更新\",\"Ohn74G\":\"設定與設計\",\"1W5XyZ\":\"設定只需幾分鐘——你不需要既有的 Stripe 帳戶。Stripe 會處理信用卡、電子錢包、地區性付款方式及防詐騙保護,讓你專心籌備活動。\",\"GG7qDw\":\"分享推廣連結\",\"hL7sDJ\":\"分享主辦單位頁面\",\"jy6QDF\":\"共享容量管理\",\"jDNHW4\":\"調整時間\",\"tPfIaW\":[\"已調整 \",[\"count\"],\" 個日期的時間\"],\"WwlM8F\":\"顯示進階選項\",\"cMW+gm\":[\"顯示所有平台(另有 \",[\"0\"],\" 個有內容)\"],\"wXi9pZ\":\"向未登入員工顯示備註\",\"UVPI5D\":\"顯示較少平台\",\"Eu/N/d\":\"顯示營銷訂閱複選框\",\"SXzpzO\":\"預設顯示營銷訂閱複選框\",\"57tTk5\":\"顯示更多日期\",\"b33PL9\":\"顯示更多平台\",\"Eut7p9\":\"向未登入員工顯示訂單詳情\",\"+RoWKN\":\"向未登入員工顯示回答\",\"t1LIQW\":[\"顯示 \",[\"0\"],\" / \",[\"totalRows\"],\" 條記錄\"],\"E717U9\":[\"顯示 \",[\"2\"],\" 個中的 \",[\"0\"],\"–\",[\"1\"]],\"5rzhBQ\":[\"顯示 \",[\"totalAvailable\"],\" 個日期中的 \",[\"MAX_VISIBLE\"],\" 個。輸入以搜尋。\"],\"WSt3op\":[\"顯示前 \",[\"0\"],\" 個 — 訊息傳送時仍會發送至其餘 \",[\"1\"],\" 個場次。\"],\"OJLTEL\":\"員工首次開啟簽到頁時顯示。\",\"jVRHeq\":\"註冊時間\",\"5C7J+P\":\"單一活動\",\"E//btK\":\"略過手動編輯的日期\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"社交\",\"d0rUsW\":\"社交連結\",\"j/TOB3\":\"社交連結與網站\",\"s9KGXU\":\"已售出\",\"iACSrw\":\"部分資料對公眾訪問隱藏。登入即可查看全部。\",\"KTxc6k\":\"出現問題,請重試,或在問題持續時聯繫客服\",\"lkE00/\":\"出了點問題。請稍後再試。\",\"wdxz7K\":\"來源\",\"fDG2by\":\"靈性\",\"oPaRES\":\"按日期、區域或票種劃分簽到。將連結分享給員工 — 無需帳號。\",\"7JFNej\":\"體育\",\"/bfV1Y\":\"員工指引\",\"tXkhj/\":\"開始\",\"JcQp9p\":\"開始日期同時間\",\"0m/ekX\":\"開始日期與時間\",\"izRfYP\":\"必須填寫開始日期\",\"tuO4fV\":\"場次的開始日期\",\"2R1+Rv\":\"活動開始時間\",\"2Olov3\":\"場次的開始時間\",\"n9ZrDo\":\"開始輸入場地或地址...\",\"qeFVhN\":[[\"diffDays\"],\" 日後開始\"],\"AOqtxN\":[[\"diffMinutes\"],\" 分鐘後開始\"],\"Otg8Oh\":[[\"h\"],\" 小時 \",[\"m\"],\" 分鐘後開始\"],\"Lo49in\":[[\"seconds\"],\" 秒後開始\"],\"NqChgF\":\"明日開始\",\"2NbyY/\":\"統計數據\",\"GVUxAX\":\"統計數據基於帳戶創建日期\",\"29Hx9U\":\"統計\",\"5ia+r6\":\"仍需提供\",\"wuV0bK\":\"停止模擬\",\"s/KaDb\":\"Stripe 已連接\",\"Bk06QI\":\"Stripe 已連接\",\"akZMv8\":[\"已從 \",[\"0\"],\" 複製 Stripe 連接。\"],\"v0aRY1\":\"Stripe 沒有回傳設定連結,請再試一次。\",\"aKtF0O\":\"Stripe未連接\",\"9i0++A\":\"Stripe 付款 ID\",\"R1lIMV\":\"Stripe 很快會需要更多資料\",\"FzcCHA\":\"Stripe 會帶你回答幾個簡短的問題以完成設定。\",\"eYbd7b\":\"日\",\"ii0qn/\":\"主題是必需的\",\"M7Uapz\":\"主題將顯示在這裏\",\"6aXq+t\":\"主題:\",\"JwTmB6\":\"產品複製成功\",\"WUOCgI\":\"已成功提供名額\",\"IvxA4G\":[\"已成功向 \",[\"count\"],\" 人提供門票\"],\"kKpkzy\":\"已成功向 1 人提供門票\",\"Zi3Sbw\":\"已成功從候補名單中移除\",\"RuaKfn\":\"地址更新成功\",\"kzx0uD\":\"成功更新活動預設值\",\"5n+Wwp\":\"主辦單位更新成功\",\"DMCX/I\":\"平台費用預設設置更新成功\",\"URUYHc\":\"平台費用設置更新成功\",\"0Dk/l8\":\"SEO 設定已成功更新\",\"S8Tua9\":\"設定更新成功\",\"MhOoLQ\":\"社交連結更新成功\",\"CNSSfp\":\"成功更新追蹤設定\",\"kj7zYe\":\"Webhook 更新成功\",\"dXoieq\":\"摘要\",\"/RfJXt\":[\"夏日音樂節 \",[\"0\"]],\"CWOPIK\":\"2025夏季音樂節\",\"D89zck\":\"星期日\",\"DBC3t5\":\"星期日\",\"UaISq3\":\"瑞典語\",\"JZTQI0\":\"切換主辦單位\",\"9YHrNC\":\"系統預設\",\"lruQkA\":\"點擊螢幕以繼續掃描\",\"TJUrME\":[\"向 \",[\"0\"],\" 個已選場次的參加者發送。\"],\"yT6dQ8\":\"按稅種和活動分組的已收稅款\",\"Ye321X\":\"稅種名稱\",\"WyCBRt\":\"稅務摘要\",\"GkH0Pq\":\"已套用稅項及費用\",\"Rwiyt2\":\"已配置稅項\",\"iQZff7\":\"稅項、費用、可見性、銷售期間、產品重點和訂單限制\",\"SXvRWU\":\"團隊協作\",\"vlf/In\":\"科技\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"讓人們知道您的活動有什麼內容\",\"NiIUyb\":\"請告訴我們您的活動\",\"DovcfC\":\"話俾我哋知你嘅機構資料。呢啲資料會顯示喺你嘅活動頁面。\",\"69GWRq\":\"話我哋知您嘅活動幾耐重複一次,我哋會幫您建立所有日期。\",\"mXPbwY\":\"請告訴我們你的增值稅註冊狀態,以便我們對平台費用套用正確的稅務處理。\",\"7wtpH5\":\"範本已啟用\",\"QHhZeE\":\"範本建立成功\",\"xrWdPR\":\"範本刪除成功\",\"G04Zjt\":\"範本儲存成功\",\"xowcRf\":\"服務條款\",\"6K0GjX\":\"文字可能難以閱讀\",\"u0F1Ey\":\"四\",\"nm3Iz/\":\"感謝您的參與!\",\"pYwj0k\":\"謝謝,\",\"k3IitN\":\"活動結束\",\"KfmPRW\":\"頁面的背景顏色。使用封面圖片時,這會作為覆蓋層應用。\",\"MDNyJz\":\"驗證碼會喺10分鐘後過期。如果你搵唔到電郵,請檢查垃圾郵件資料夾。\",\"AIF7J2\":\"定義固定費用的貨幣。結帳時將轉換為訂單貨幣。\",\"MJm4Tq\":\"訂單的貨幣\",\"cDHM1d\":\"電郵地址已更改。參與者將在更新後的電郵地址收到新門票。\",\"I/NNtI\":\"活動場地\",\"tXadb0\":\"您查找的活動目前不可用。它可能已被刪除、過期或 URL 不正確。\",\"5fPdZe\":\"此排程將從此日期開始生成。\",\"EBzPwC\":\"活動的完整地址\",\"sxKqBm\":\"訂單全額將退款至客戶的原始付款方式。\",\"KgDp6G\":\"您嘗試存取的連結已過期或不再有效。請檢查您的電郵以獲取管理訂單的更新連結。\",\"5OmEal\":\"客戶的語言\",\"Np4eLs\":[\"上限為 \",[\"MAX_PREVIEW\"],\" 個場次。請減少日期範圍、頻率或每日場次數量。\"],\"sYLeDq\":\"找不到您正在尋找的主辦單位。頁面可能已被移動、刪除,或網址不正確。\",\"PCr4zw\":\"覆寫已記錄於訂單稽核日誌。\",\"C4nQe5\":\"平台費用會添加到票價中。買家支付更多,但您會收到完整的票價。\",\"HxxXZO\":\"用於按鈕和突出顯示的主要品牌顏色\",\"z0KrIG\":\"排程時間為必填項\",\"EWErQh\":\"排程時間必須是將來的時間\",\"UNd0OU\":[\"「\",[\"title\"],\"」原定於 \",[\"0\"],\" 舉行的場次已重新安排。\"],\"DEcpfp\":\"模板正文包含無效的Liquid語法。請更正後再試。\",\"injXD7\":\"無法驗證增值稅號碼。請檢查號碼並重試。\",\"A4UmDy\":\"劇場\",\"tDwYhx\":\"主題與顏色\",\"O7g4eR\":\"此活動沒有即將舉行的日期\",\"HrIl0p\":[\"此日期沒有專屬的簽到名單。「\",[\"0\"],\"」名單涵蓋所有日期 — 即使工作人員掃描其他日期的門票仍然成功。\"],\"dt3TwA\":\"以下為所有日期的預設價格及數量。層級的銷售日期適用於全域。您可以在<0>場次日程頁面為個別日期覆寫價格及數量。\",\"062KsE\":\"這些詳情只會顯示在此日期的參加者門票及訂單摘要上。\",\"5Eu+tn\":\"這些詳情只會在訂單成功完成後顯示。\",\"jQjwR+\":\"這些資料將取代受影響場次上現有的地點,並顯示於參加者門票上。\",\"QP3gP+\":\"這些設定僅適用於複製的嵌入代碼,不會被儲存。\",\"HirZe8\":\"這些範本將用作您組織中所有活動的預設範本。單個活動可以用自己的自定義版本覆蓋這些範本。\",\"lzAaG5\":\"這些範本將僅覆蓋此活動的組織者預設設置。如果這裏沒有設置自定義範本,將使用組織者範本。\",\"UlykKR\":\"第三\",\"wkP5FM\":\"此設定適用於活動內每個符合的日期,包括目前未顯示的日期。更新完成後,這些日期上已登記的參加者皆可透過訊息撰寫器聯絡。\",\"SOmGDa\":\"此簽到名單針對的場次已被取消,因此無法再用於簽到。\",\"XBNC3E\":\"呢個代碼會用嚟追蹤銷售。只可以用字母、數字、連字號同底線。\",\"AaP0M+\":\"對某些使用者來說,此顏色組合可能難以閱讀\",\"o1phK/\":[\"此日期有 \",[\"orderCount\"],\" 張訂單會受影響。\"],\"F/UtGt\":\"此日期已被取消。您仍可刪除以永久移除。\",\"BLZ7pX\":\"此日期已過。日期仍會建立,但不會在即將舉行日期中顯示給參加者。\",\"7IIY0z\":\"此日期標示為售罄。\",\"bddWMP\":\"此日期已不再可用。請選擇其他日期。\",\"RzEvf5\":\"此活動已結束\",\"YClrdK\":\"呢個活動未發佈\",\"dFJnia\":\"這是將會顯示給使用者的主辦單位名稱。\",\"vt7jiq\":\"簽名密鑰僅顯示一次。請立即複製並妥善保存。\",\"L7dIM7\":\"此連結無效或已過期。\",\"MR5ygV\":\"此連結不再有效\",\"9LEqK0\":\"此名稱對最終用戶可見\",\"QdUMM9\":\"此場次已滿額\",\"j5FdeA\":\"此訂單正在處理中。\",\"sjNPMw\":\"此訂單已被放棄。您可以隨時開始新的訂單。\",\"OhCesD\":\"此訂單已被取消。您可以隨時開始新訂單。\",\"lyD7rQ\":\"呢個主辦方資料未發佈\",\"9b5956\":\"此預覽顯示您的郵件使用示例資料的外觀。實際郵件將使用真實值。\",\"uM9Alj\":\"此產品在活動頁面上突出顯示\",\"RqSKdX\":\"此產品已售罄\",\"W12OdJ\":\"此報告僅供參考。在將此數據用於會計或稅務目的之前,請務必諮詢稅務專業人士。請與您的Stripe儀表板進行交叉驗證,因為Hi.Events可能缺少歷史數據。\",\"0Ew0uk\":\"此門票剛剛被掃描。請等待後再次掃描。\",\"FYXq7k\":[\"此操作將影響 \",[\"loadedAffectedCount\"],\" 個日期。\"],\"kvpxIU\":\"這將用於通知和與使用者的溝通。\",\"rhsath\":\"呢個唔會俾客戶睇到,但可以幫你識別推廣夥伴。\",\"hV6FeJ\":\"速度\",\"+FjWgX\":\"星期四\",\"kkDQ8m\":\"星期四\",\"0GSPnc\":\"門票設計\",\"EZC/Cu\":\"門票設計儲存成功\",\"bbslmb\":\"門票設計器\",\"1BPctx\":\"門票:\",\"bgqf+K\":\"持票人電郵\",\"oR7zL3\":\"持票人姓名\",\"HGuXjF\":\"票務持有人\",\"CMUt3Y\":\"票務持有人\",\"awHmAT\":\"門票 ID\",\"6czJik\":\"門票標誌\",\"OkRZ4Z\":\"門票名稱\",\"t79rDv\":\"找不到門票\",\"6tmWch\":\"票券或產品\",\"1tfWrD\":\"門票預覽:\",\"KnjoUA\":\"票價\",\"tGCY6d\":\"門票價格\",\"pGZOcL\":\"門票重新發送成功\",\"o02GZM\":\"此活動的門票銷售已結束\",\"8jLPgH\":\"門票類型\",\"X26cQf\":\"門票連結\",\"8qsbZ5\":\"票務與銷售\",\"zNECqg\":\"門票\",\"6GQNLE\":\"門票\",\"NRhrIB\":\"票券與產品\",\"OrWHoZ\":\"當有空餘名額時,門票將自動提供給候補名單中的客戶。\",\"EUnesn\":\"門票有售\",\"AGRilS\":\"已售票數\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"時間\",\"dMtLDE\":\"至\",\"/jQctM\":\"收件人\",\"tiI71C\":\"要提高您的限制,請聯繫我們\",\"ecUA8p\":\"今日\",\"W428WC\":\"切換欄位\",\"BRMXj0\":\"明日\",\"UBSG1X\":\"頂級主辦方(過去14天)\",\"3sZ0xx\":\"總賬戶數\",\"EaAPbv\":\"支付總金額\",\"SMDzqJ\":\"總參與人數\",\"orBECM\":\"總收款\",\"k5CU8c\":\"總條目\",\"4B7oCp\":\"總費用\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"總用戶數\",\"oJjplO\":\"總瀏覽量\",\"rBZ9pz\":\"旅遊\",\"orluER\":\"按歸因來源追蹤帳戶增長和表現\",\"YwKzpH\":\"追蹤與分析\",\"uKOFO5\":\"如果是離線付款則為真\",\"9GsDR2\":\"如果付款待處理則為真\",\"GUA0Jy\":\"試試其他搜尋或篩選\",\"2P/OWN\":\"嘗試調整篩選條件以查看更多日期。\",\"ouM5IM\":\"嘗試其他郵箱\",\"3DZvE7\":\"免費試用Hi.Events\",\"7P/9OY\":\"二\",\"vq2WxD\":\"星期二\",\"G3myU+\":\"星期二\",\"Kz91g/\":\"土耳其語\",\"GdOhw6\":\"關閉聲音\",\"KUOhTy\":\"開啟聲音\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"輸入\\\"刪除\\\"以確認\",\"XxecLm\":\"門票類型\",\"IrVSu+\":\"無法複製產品。請檢查您的詳細信息\",\"Vx2J6x\":\"無法擷取參與者資料\",\"h0dx5e\":\"無法加入候補名單\",\"DaE0Hg\":\"無法載入參加者詳情。\",\"GlnD5Y\":\"無法載入此日期的產品。請重試。\",\"17VbmV\":\"無法撤銷簽到\",\"n57zCW\":\"未歸因帳戶\",\"9uI/rE\":\"撤銷\",\"b9SN9q\":\"唯一訂單參考\",\"Ef7StM\":\"未知\",\"ZBAScj\":\"未知參會者\",\"MEIAzV\":\"未命名\",\"K6L5Mx\":\"未命名地點\",\"X13xGn\":\"不受信任\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"更新推廣夥伴\",\"59qHrb\":\"更新容量\",\"Gaem9v\":\"更新活動名稱及描述\",\"7EhE4k\":\"更新標籤\",\"NPQWj8\":\"更新地點\",\"75+lpR\":[\"更新:\",[\"subjectTitle\"],\" — 日程變更\"],\"UOGHdA\":[\"更新:\",[\"subjectTitle\"],\" — 場次時間變更\"],\"ogoTrw\":[\"已更新 \",[\"count\"],\" 個日期\"],\"dDuona\":[\"已更新 \",[\"count\"],\" 個日期的容量\"],\"FT3LSc\":[\"已更新 \",[\"count\"],\" 個日期的標籤\"],\"8EcY1g\":[\"已更新 \",[\"count\"],\" 個場次的地點\"],\"gJQsLv\":\"上傳主辦單位的封面圖片\",\"4kEGqW\":\"上傳主辦單位的標誌\",\"lnCMdg\":\"上傳圖片\",\"29w7p6\":\"正在上傳圖片...\",\"HtrFfw\":\"URL 是必填項\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB 掃描器運作中\",\"dyTklH\":\"USB 掃描器已暫停\",\"OHJXlK\":\"使用 <0>Liquid 模板 個性化您的郵件\",\"g0WJMu\":\"使用所有日期名單\",\"0k4cdb\":\"為所有參加者使用訂單詳情。參加者姓名和電郵將與買家資料相符。\",\"MKK5oI\":\"使用所有日期名單,還是為此日期建立名單?\",\"bA31T4\":\"為所有參與者使用購買者的資料\",\"rnoQsz\":\"用於邊框、高亮和二維碼樣式\",\"BV4L/Q\":\"UTM 分析\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"正在驗證您的增值稅號碼...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"增值稅號碼\",\"pnVh83\":\"增值稅號碼\",\"CabI04\":\"增值稅號碼不得包含空格\",\"PMhxAR\":\"增值稅號碼必須以 2 個字母的國家代碼開頭,後跟 8-15 個字母數字字元(例如:DE123456789)\",\"gPgdNV\":\"增值稅號碼驗證成功\",\"RUMiLy\":\"增值稅號碼驗證失敗\",\"vqji3Y\":\"增值稅號碼驗證失敗。請檢查您的增值稅號碼。\",\"8dENF9\":\"費用增值稅\",\"ZutOKU\":\"增值稅率\",\"+KJZt3\":\"已登記增值稅\",\"Nfbg76\":\"增值稅設定已成功儲存\",\"UvYql/\":\"增值稅設定已儲存。我們正在後台驗證您的增值稅號碼。\",\"bXn1Jz\":\"已更新增值稅設定\",\"tJylUv\":\"平台費用的增值稅處理\",\"FlGprQ\":\"平台費用的增值稅處理:歐盟增值稅註冊企業可使用反向收費機制(0% - 增值稅指令 2006/112/EC 第 196 條)。非增值稅註冊企業將收取 23% 的愛爾蘭增值稅。\",\"516oLj\":\"增值稅驗證服務暫時無法使用\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"增值稅:未登記\",\"AdWhjZ\":\"驗證碼\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"已驗證\",\"wCKkSr\":\"驗證電郵\",\"/IBv6X\":\"驗證您的電郵\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"驗證緊...\",\"fROFIL\":\"越南語\",\"p5nYkr\":\"全部檢視\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"查看全部功能\",\"RnvnDc\":\"查看平台上發送的所有訊息\",\"+WFMis\":\"查看和下載所有活動的報告。僅包含已完成的訂單。\",\"c7VN/A\":\"查看答案\",\"SZw9tS\":\"查看詳情\",\"9+84uW\":[\"查看 \",[\"0\"],\" \",[\"1\"],\" 詳情\"],\"FCVmuU\":\"查看活動\",\"c6SXHN\":\"查看活動頁面\",\"n6EaWL\":\"查看日誌\",\"OaKTzt\":\"查看地圖\",\"zNZNMs\":\"查看訊息\",\"67OJ7t\":\"查看訂單\",\"tKKZn0\":\"查看訂單詳情\",\"KeCXJu\":\"查看訂單詳情、退款和重新傳送確認。\",\"9jnAcN\":\"查看主辦單位主頁\",\"1J/AWD\":\"查看門票\",\"N9FyyW\":\"查看、編輯和匯出您的已註冊參與者。\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"等待中\",\"quR8Qp\":\"等待付款\",\"KrurBH\":\"等待掃描…\",\"u0n+wz\":\"候補名單\",\"3RXFtE\":\"已啟用候補名單\",\"TwnTPy\":\"候補名單優惠已過期\",\"NzIvKm\":\"已觸發候補名單\",\"aUi/Dz\":\"警告:這是系統預設配置。變更將影響所有未分配特定配置的帳戶。\",\"qeygIa\":\"三\",\"aT/44s\":\"無法複製該 Stripe 連接,請再試一次。\",\"RRZDED\":\"我們找不到與此郵箱關聯的訂單。\",\"2RZK9x\":\"我們找不到您要查找的訂單。連結可能已過期或訂單詳情可能已更改。\",\"nefMIK\":\"我們找不到您要查找的門票。連結可能已過期或門票詳情可能已更改。\",\"miysJh\":\"我們找不到此訂單。它可能已被刪除。\",\"ADsQ23\":\"暫時無法連接到 Stripe,請稍後再試。\",\"HJKdzP\":\"載入此頁面時遇到問題。請重試。\",\"jegrvW\":\"我們與 Stripe 合作,把款項直接匯入你的銀行帳戶。\",\"IfN2Qo\":\"我們建議使用最小尺寸為200x200像素的方形標誌\",\"wJzo/w\":\"我們建議尺寸為 400x400 像素,檔案大小不超過 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"我們使用 Cookie 來協助了解網站的使用情況並改善您的體驗。\",\"x8rEDQ\":\"我們在多次嘗試後無法驗證您的增值稅號碼。我們將繼續在後台嘗試。請稍後再查看。\",\"iy+M+c\":[\"當 \",[\"productDisplayName\"],\" 有名額時,我們會以電郵通知您。\"],\"McuGND\":\"儲存後會打開一個已預填範本的訊息撰寫器。由您檢閱及發送 — 不會自動發送。\",\"q1BizZ\":\"我們將把您的門票發送到此郵箱\",\"ZOmUYW\":\"我們將在後台驗證您的增值稅號碼。如果有任何問題,我們會通知您。\",\"LKjHr4\":[\"我們已就「\",[\"title\"],\"」的日程作出變更 — \",[\"description\"],\",影響 \",[\"affectedCount\"],\" 個場次。\"],\"Fq/Nx7\":\"我哋已經將5位數驗證碼發送到:\",\"GdWB+V\":\"Webhook 創建成功\",\"2X4ecw\":\"Webhook 刪除成功\",\"ndBv0v\":\"Webhook 整合\",\"CThMKa\":\"Webhook 日誌\",\"I0adYQ\":\"Webhook 簽名密鑰\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook 不會發送通知\",\"FSaY52\":\"Webhook 將發送通知\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"網站\",\"0f7U0k\":\"星期三\",\"VAcXNz\":\"星期三\",\"64X6l4\":\"週\",\"4XSc4l\":\"每週\",\"IAUiSh\":\"週\",\"vKLEXy\":\"微博\",\"9eF5oV\":\"歡迎回來\",\"QDWsl9\":[\"歡迎嚟到 \",[\"0\"],\",\",[\"1\"],\" 👋\"],\"LETnBR\":[\"歡迎嚟到 \",[\"0\"],\",呢度係你所有活動嘅列表\"],\"DDbx7K\":\"健康\",\"ywRaYa\":\"幾時?\",\"FaSXqR\":\"咩類型嘅活動?\",\"0WyYF4\":\"未認證員工可見的內容\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"當簽到被刪除時\",\"RPe6bE\":\"當循環活動的日期被取消時\",\"Gmd0hv\":\"當新與會者被創建時\",\"zyIyPe\":\"當建立新活動時\",\"Lc18qn\":\"當新訂單被創建時\",\"dfkQIO\":\"當新產品被創建時\",\"8OhzyY\":\"當產品被刪除時\",\"tRXdQ9\":\"當產品被更新時\",\"9L9/28\":\"當產品售罄時,顧客可加入候補名單,於有名額時收到通知。\",\"Q7CWxp\":\"當與會者被取消時\",\"IuUoyV\":\"當與會者簽到時\",\"nBVOd7\":\"當與會者被更新時\",\"t7cuMp\":\"當活動被封存時\",\"gtoSzE\":\"當活動被更新時\",\"ny2r8d\":\"當訂單被取消時\",\"c9RYbv\":\"當訂單被標記為已支付時\",\"ejMDw1\":\"當訂單被退款時\",\"fVPt0F\":\"當訂單被更新時\",\"bcYlvb\":\"簽到何時關閉\",\"XIG669\":\"簽到何時開放\",\"de6HLN\":\"When customers purchase tickets, their orders will appear here.\",\"403wpZ\":\"啟用後,新活動將允許參與者通過安全連結管理自己的門票詳情。這可以按活動覆蓋。\",\"blXLKj\":\"啟用後,新活動將在結帳時顯示營銷訂閱複選框。此設置可以針對每個活動單獨覆蓋。\",\"Kj0Txn\":\"啟用後,Stripe Connect交易將不收取應用費用。用於不支持應用費用的國家。\",\"tMqezN\":\"是否正在處理退款\",\"uchB0M\":\"小工具預覽\",\"uvIqcj\":\"工作坊\",\"EpknJA\":\"請在此輸入您的訊息...\",\"nhtR6Y\":\"X(Twitter)\",\"7qI8sJ\":\"年\",\"zkWmBh\":\"每年\",\"+BGee5\":\"年\",\"X/azM1\":\"是 - 我有有效的歐盟增值稅註冊號碼\",\"Tz5oXG\":\"是,取消我的訂單\",\"QlSZU0\":[\"您正在模擬 <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"您正在發出部分退款。客戶將獲得 \",[\"0\"],\" \",[\"1\"],\" 的退款。\"],\"o7LgX6\":\"您可以在帳戶設置中配置額外的服務費和稅費。\",\"rj3A7+\":\"您之後可以為個別日期覆寫此設定。\",\"paWwQ0\":\"如有需要,您仍然可以手動提供門票。\",\"jTDzpA\":\"您無法封存帳戶中最後一個活躍的主辦方。\",\"5VGIlq\":\"您已達到訊息限制。\",\"casL1O\":\"您已向免費產品添加了税費。您想要刪除它們嗎?\",\"9jJNZY\":\"您必須先確認您的責任才可儲存\",\"pCLes8\":\"您必須同意接收訊息\",\"FVTVBy\":\"在更新主辦單位狀態之前,您必須先驗證您的電郵地址。\",\"ze4bi/\":\"您必須先建立至少一個場次,才可為此循環活動新增參加者。\",\"w65ZgF\":\"您需要驗證您的帳戶電子郵件才能修改電子郵件範本。\",\"FRl8Jv\":\"您需要驗證您的帳户電子郵件才能發送消息。\",\"88cUW+\":\"您收到\",\"O6/3cu\":\"您可以在下一步設定日期、日程及循環規則。\",\"zKAheG\":\"您正在更改場次時間\",\"MNFIxz\":[\"您將參加 \",[\"0\"],\"!\"],\"qGZz0m\":\"您已加入候補名單!\",\"/5HL6k\":\"您已獲得一個名額!\",\"gbjFFH\":\"您已更改場次時間\",\"p/Sa0j\":\"您的帳戶有訊息限制。要提高您的限制,請聯繫我們\",\"x/xjzn\":\"你嘅推廣夥伴已經成功匯出。\",\"TF37u6\":\"您的與會者已成功導出。\",\"79lXGw\":\"您的簽到名單已成功建立。與您的簽到工作人員共享以下連結。\",\"BnlG9U\":\"您當前的訂單將丟失。\",\"nBqgQb\":\"您的電子郵件\",\"GG1fRP\":\"您的活動已上線!\",\"ifRqmm\":\"你嘅訊息已經成功發送!\",\"0/+Nn9\":\"您的訊息將顯示在此處\",\"/Rj5P4\":\"您的姓名\",\"PFjJxY\":\"您的新密碼必須至少為 8 個字元。\",\"gzrCuN\":\"您的訂單詳情已更新。確認電郵已發送到新的電郵地址。\",\"naQW82\":\"您的訂單已被取消。\",\"bhlHm/\":\"您的訂單正在等待付款\",\"XeNum6\":\"您的訂單已成功導出。\",\"Xd1R1a\":\"您主辦單位的地址\",\"WWYHKD\":\"您的付款受到銀行級加密保護\",\"5b3QLi\":\"您的計劃\",\"N4Zkqc\":\"您儲存的日期篩選器已不再可用 — 顯示所有日期。\",\"FNO5uZ\":\"您的門票仍然有效 — 除非新時間不適合您,否則無需任何行動。如有疑問,請回覆此電郵。\",\"CnZ3Ou\":\"您的門票已確認。\",\"EmFsMZ\":\"您的增值稅號碼已排隊等待驗證\",\"QBlhh4\":\"保存時將驗證您的增值稅號碼\",\"fT9VLt\":\"您的候補名單優惠已過期,我們無法完成您的訂單。請重新加入候補名單,以便有更多名額時收到通知。\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/zh-hk.po b/frontend/src/locales/zh-hk.po index 1ef4b74de2..db0fd87c92 100644 --- a/frontend/src/locales/zh-hk.po +++ b/frontend/src/locales/zh-hk.po @@ -60,7 +60,7 @@ msgstr "{0} <0>簽退成功" msgid "{0} Active Webhooks" msgstr "{0} 個活動的 Webhook" -#: src/components/routes/product-widget/SelectProducts/index.tsx:626 +#: src/components/routes/product-widget/SelectProducts/index.tsx:648 msgid "{0} available" msgstr "{0}可用" @@ -78,7 +78,7 @@ msgstr "剩餘 {0}" msgid "{0} logo" msgstr "{0} 標誌" -#: src/components/modals/CreateAttendeeModal/index.tsx:279 +#: src/components/modals/CreateAttendeeModal/index.tsx:278 msgid "{0} of {1} seats are taken." msgstr "{1} 個座位中已佔用 {0} 個。" @@ -90,7 +90,7 @@ msgstr "{0} 位主辦單位" msgid "{0} spots left" msgstr "剩餘 {0} 個名額" -#: src/components/routes/product-widget/CollectInformation/index.tsx:600 +#: src/components/routes/product-widget/CollectInformation/index.tsx:601 msgid "{0} tickets" msgstr "{0}張門票" @@ -114,7 +114,7 @@ msgstr "{appName} 標誌" msgid "{attendeeCount} attendees are registered for this session." msgstr "{attendeeCount} 位參加者已登記此場次。" -#: src/components/common/EventCard/index.tsx:145 +#: src/components/common/EventCard/index.tsx:146 msgid "{availableCount} of {totalCount} available" msgstr "{totalCount} 中有 {availableCount} 可用" @@ -122,7 +122,7 @@ msgstr "{totalCount} 中有 {availableCount} 可用" msgid "{checkedIn} / {total} checked in" msgstr "{checkedIn} / {total} 已簽到" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:158 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:220 msgid "{completedCount} of {totalCount} steps complete" msgstr "" @@ -151,7 +151,7 @@ msgstr "{eventCount} 個事件" msgid "{hours} hours, {minutes} minutes, and {seconds} seconds" msgstr "{hours} 小時, {minutes} 分鐘, 和 {seconds} 秒" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:287 msgid "{loadedAffectedAttendees} attendees are registered across the affected sessions." msgstr "受影響的場次共有 {loadedAffectedAttendees} 位參加者已登記。" @@ -163,11 +163,11 @@ msgstr "{分}分鐘和{秒}秒鐘" msgid "{organizerName}'s first event" msgstr "{組織者名稱}的首次活動" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:99 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:128 msgid "{productCount} ticket types configured" msgstr "" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "{totalCount} ticket types" msgstr "{totalCount} 種門票類型" @@ -230,7 +230,7 @@ msgstr "0 分 0 秒" msgid "1 Active Webhook" msgstr "1 個活動的 Webhook" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:285 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:286 msgid "1 attendee is registered across the affected sessions." msgstr "受影響的場次共有 1 位參加者已登記。" @@ -238,35 +238,35 @@ msgstr "受影響的場次共有 1 位參加者已登記。" msgid "1 attendee is registered for this session." msgstr "1 位參加者已登記此場次。" -#: src/components/modals/SendMessageModal/index.tsx:135 +#: src/components/modals/SendMessageModal/index.tsx:136 msgid "1 day after end date" msgstr "結束日期後1天" -#: src/components/modals/SendMessageModal/index.tsx:129 +#: src/components/modals/SendMessageModal/index.tsx:130 msgid "1 day after start date" msgstr "開始日期後1天" -#: src/components/modals/SendMessageModal/index.tsx:127 +#: src/components/modals/SendMessageModal/index.tsx:128 msgid "1 day before event" msgstr "活動前1天" -#: src/components/modals/SendMessageModal/index.tsx:128 +#: src/components/modals/SendMessageModal/index.tsx:129 msgid "1 hour before event" msgstr "活動前1小時" -#: src/components/routes/product-widget/CollectInformation/index.tsx:599 +#: src/components/routes/product-widget/CollectInformation/index.tsx:600 msgid "1 ticket" msgstr "1張門票" -#: src/components/common/EventCard/index.tsx:141 +#: src/components/common/EventCard/index.tsx:142 msgid "1 ticket type" msgstr "1 種門票類型" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:98 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:127 msgid "1 ticket type configured" msgstr "" -#: src/components/modals/SendMessageModal/index.tsx:126 +#: src/components/modals/SendMessageModal/index.tsx:127 msgid "1 week before event" msgstr "活動前1週" @@ -301,7 +301,7 @@ msgstr "94103" msgid "A cancellation notice has been sent to" msgstr "取消通知已發送至" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:324 msgid "a change in duration" msgstr "時長變更" @@ -321,7 +321,7 @@ msgstr "下拉式輸入法只允許一個選擇" msgid "A fee, like a booking fee or a service fee" msgstr "費用,如預訂費或服務費" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:209 msgid "A few quick steps and you're ready to start selling." msgstr "" @@ -349,7 +349,7 @@ msgstr "無折扣的促銷代碼可以用來顯示隱藏的產品。" msgid "A Radio option has multiple options but only one can be selected." msgstr "單選題有多個選項,但只能選擇一個。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:322 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:323 msgid "a shift in start/end times" msgstr "開始/結束時間調整" @@ -465,7 +465,7 @@ msgstr "賬户更新成功" msgid "Accounts" msgstr "賬戶" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:44 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:36 msgid "Action Required: VAT Information Needed" msgstr "需要操作:需提供增值稅資料" @@ -493,10 +493,10 @@ msgstr "激活日期" #: src/components/common/AttendeeTable/index.tsx:303 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:167 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:21 #: src/components/forms/CapaciyAssigmentForm/index.tsx:19 -#: src/components/modals/EditUserModal/index.tsx:110 +#: src/components/modals/EditUserModal/index.tsx:111 #: src/components/routes/event/attendees.tsx:29 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:212 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:20 @@ -516,11 +516,15 @@ msgstr "啟用的付款方式" msgid "Activity" msgstr "活動記錄" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:157 +msgid "Add a cover image and theme to match your brand" +msgstr "" + #: src/components/routes/event/OccurrencesTab/CalendarView/index.tsx:142 msgid "Add a date" msgstr "新增日期" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:147 msgid "Add a description and venue so attendees know what to expect" msgstr "" @@ -556,7 +560,7 @@ msgstr "添加關於訂單的備註..." msgid "Add at least one time" msgstr "至少新增一個時間" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:166 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:167 msgid "Add connection details for the online event." msgstr "為線上活動添加連接詳情。" @@ -572,15 +576,19 @@ msgstr "新增日期" msgid "Add Dates" msgstr "新增日期" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:137 +msgid "Add dates and times for your recurring event" +msgstr "" + #: src/components/forms/QuestionForm/index.tsx:202 msgid "Add description" msgstr "添加描述" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:111 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:150 msgid "Add details" msgstr "" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:107 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:146 msgid "Add event details" msgstr "" @@ -626,7 +634,7 @@ msgstr "新增問題" msgid "Add Tax or Fee" msgstr "加税或費用" -#: src/components/modals/CreateAttendeeModal/index.tsx:283 +#: src/components/modals/CreateAttendeeModal/index.tsx:282 msgid "Add this attendee anyway (override capacity)" msgstr "仍然新增此參加者(覆蓋容量限制)" @@ -634,8 +642,8 @@ msgstr "仍然新增此參加者(覆蓋容量限制)" msgid "Add this event to your calendar" msgstr "將此活動添加到您的日曆" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:95 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:101 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:124 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:130 msgid "Add tickets" msgstr "添加機票" @@ -649,7 +657,7 @@ msgstr "增加層級" msgid "Add to Calendar" msgstr "添加到日曆" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:173 msgid "Add tracking pixels to your public event pages and organizer homepage. A cookie consent banner will be shown to visitors when tracking is active." msgstr "在您的公開活動頁面及主辦方主頁加入追蹤像素。當追蹤啟用時,會向訪客顯示 Cookie 同意橫額。" @@ -685,12 +693,12 @@ msgid "Address line 1" msgstr "地址第 1 行" #: src/components/modals/LocationEditModal/index.tsx:114 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:558 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:545 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:243 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:172 -#: src/components/routes/product-widget/CollectInformation/index.tsx:523 #: src/components/routes/product-widget/CollectInformation/index.tsx:524 +#: src/components/routes/product-widget/CollectInformation/index.tsx:525 msgid "Address Line 1" msgstr "地址 1" @@ -699,23 +707,23 @@ msgid "Address line 2" msgstr "地址第 2 行" #: src/components/modals/LocationEditModal/index.tsx:115 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:559 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:560 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:546 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:248 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:177 -#: src/components/routes/product-widget/CollectInformation/index.tsx:528 #: src/components/routes/product-widget/CollectInformation/index.tsx:529 +#: src/components/routes/product-widget/CollectInformation/index.tsx:530 msgid "Address Line 2" msgstr "地址第 2 行" #: src/components/layouts/Admin/index.tsx:12 -#: src/components/modals/EditUserModal/index.tsx:49 +#: src/components/modals/EditUserModal/index.tsx:50 #: src/components/modals/InviteUserModal/index.tsx:41 msgid "Admin" msgstr "管理員" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:70 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:76 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:71 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:77 msgid "Admin Access Required" msgstr "需要管理員存取權限" @@ -725,7 +733,7 @@ msgstr "需要管理員存取權限" msgid "Admin Dashboard" msgstr "管理儀表板" -#: src/components/modals/EditUserModal/index.tsx:51 +#: src/components/modals/EditUserModal/index.tsx:52 #: src/components/modals/InviteUserModal/index.tsx:43 msgid "Admin users have full access to events and account settings." msgstr "管理員用户可以完全訪問事件和賬户設置。" @@ -776,7 +784,7 @@ msgstr "推廣夥伴已匯出" msgid "Affiliates help you track sales generated by partners and influencers. Create affiliate codes and share them to monitor performance." msgstr "推廣夥伴幫助你追蹤合作夥伴同KOL產生嘅銷售。建立推廣碼並分享以監控表現。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:315 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:316 msgid "all" msgstr "全部" @@ -790,19 +798,19 @@ msgid "All Archived Events" msgstr "所有已封存活動" #: src/components/common/MessageList/index.tsx:29 -#: src/components/routes/product-widget/CollectInformation/index.tsx:505 +#: src/components/routes/product-widget/CollectInformation/index.tsx:506 msgid "All attendees" msgstr "所有參與者" -#: src/components/modals/SendMessageModal/index.tsx:397 +#: src/components/modals/SendMessageModal/index.tsx:392 msgid "All attendees of the selected sessions" msgstr "所選場次的所有參加者" -#: src/components/modals/SendMessageModal/index.tsx:400 +#: src/components/modals/SendMessageModal/index.tsx:395 msgid "All attendees of this event" msgstr "本次活動的所有與會者" -#: src/components/modals/SendMessageModal/index.tsx:399 +#: src/components/modals/SendMessageModal/index.tsx:394 msgid "All attendees of this occurrence" msgstr "此場次的所有參加者" @@ -838,12 +846,12 @@ msgstr "所有失敗任務已刪除" msgid "All jobs queued for retry" msgstr "所有任務已排隊等待重試" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:370 msgid "All matching dates" msgstr "所有符合的日期" #: src/components/forms/CheckInListForm/index.tsx:136 -#: src/components/modals/SendMessageModal/index.tsx:378 +#: src/components/modals/SendMessageModal/index.tsx:373 msgid "All occurrences" msgstr "所有場次" @@ -897,7 +905,7 @@ msgstr "已有帳戶?<0>{0}" msgid "Already in" msgstr "已入場" -#: src/components/modals/RefundOrderModal/index.tsx:85 +#: src/components/modals/RefundOrderModal/index.tsx:86 msgid "Already Refunded" msgstr "已退款" @@ -905,11 +913,11 @@ msgstr "已退款" msgid "Already use Stripe on another organizer? Reuse that connection." msgstr "已在其他主辦者上使用 Stripe?重複使用該連接。" -#: src/components/modals/RefundOrderModal/index.tsx:131 +#: src/components/modals/RefundOrderModal/index.tsx:132 msgid "Also cancel this order" msgstr "同時取消此訂單" -#: src/components/modals/CancelOrderModal/index.tsx:76 +#: src/components/modals/CancelOrderModal/index.tsx:75 msgid "Also refund this order" msgstr "同時退款此訂單" @@ -932,7 +940,7 @@ msgstr "金額" msgid "Amount Paid" msgstr "支付金額" -#: src/components/modals/CreateAttendeeModal/index.tsx:296 +#: src/components/modals/CreateAttendeeModal/index.tsx:295 msgid "Amount paid ({0})" msgstr "支付金額 ({0})" @@ -952,7 +960,7 @@ msgstr "加載頁面時出現錯誤" msgid "An optional message to display on the highlighted product, e.g. \"Selling fast 🔥\" or \"Best value\"" msgstr "顯示在突出產品上的可選訊息,例如「熱賣中 🔥」或「最佳價值」" -#: src/components/forms/StripeCheckoutForm/index.tsx:40 +#: src/components/forms/StripeCheckoutForm/index.tsx:68 msgid "An unexpected error occurred." msgstr "出現意外錯誤。" @@ -988,7 +996,7 @@ msgstr "產品持有者的任何查詢都將發送到此電子郵件地址。此 msgid "Appearance" msgstr "外觀" -#: src/components/routes/product-widget/SelectProducts/index.tsx:728 +#: src/components/routes/product-widget/SelectProducts/index.tsx:750 msgid "applied" msgstr "應用" @@ -996,7 +1004,7 @@ msgstr "應用" msgid "Applies to {0} products" msgstr "適用於{0}個產品" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:389 msgid "Applies to {0}, non-cancelled dates currently loaded on this page." msgstr "適用於目前頁面已載入的 {0} 個未取消的日期。" @@ -1008,7 +1016,7 @@ msgstr "適用於1個產品" msgid "Applies to anyone opening the shared check-in link without being signed in. Logged-in team members always see everything." msgstr "適用於未登入打開簽到連結的人。已登入的團隊成員始終可以看到全部。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:387 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:388 msgid "Applies to every {0}, non-cancelled date in this event — including dates not currently loaded." msgstr "適用於此活動內每個 {0} 未取消的日期 — 包括目前未載入的日期。" @@ -1016,11 +1024,11 @@ msgstr "適用於此活動內每個 {0} 未取消的日期 — 包括目前未 msgid "Apply" msgstr "應用" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:597 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:598 msgid "Apply Changes" msgstr "套用變更" -#: src/components/routes/product-widget/SelectProducts/index.tsx:756 +#: src/components/routes/product-widget/SelectProducts/index.tsx:778 msgid "Apply Promo Code" msgstr "應用促銷代碼" @@ -1028,7 +1036,7 @@ msgstr "應用促銷代碼" msgid "Apply this {type} to all new products" msgstr "將此{type}應用於所有新產品" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:362 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:363 msgid "Apply to" msgstr "套用至" @@ -1044,36 +1052,35 @@ msgstr "批准訊息" msgid "April" msgstr "四月" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Archive" msgstr "封存" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Archive event" msgstr "歸檔活動" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Archive Event" msgstr "封存活動" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Archive Organizer" msgstr "封存主辦方" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:127 msgid "Archive this event to hide it from the public. You can restore it later." msgstr "封存此活動以向公眾隱藏。您可以稍後還原它。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:135 msgid "Archive this organizer. This will also archive all events belonging to this organizer." msgstr "封存此主辦方。這也將封存屬於此主辦方的所有活動。" -#: src/components/common/EventCard/index.tsx:81 +#: src/components/common/EventCard/index.tsx:82 #: src/components/common/EventsDashboardStatusButtons/index.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:457 msgid "Archived" msgstr "已歸檔" @@ -1085,15 +1092,15 @@ msgstr "已封存的主辦方" msgid "Are you sure you want to activate this attendee?" msgstr "您確定要激活該與會者嗎?" -#: src/components/common/EventCard/index.tsx:61 +#: src/components/common/EventCard/index.tsx:62 msgid "Are you sure you want to archive this event?" msgstr "您確定要歸檔此活動嗎?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:48 msgid "Are you sure you want to archive this event? It will no longer be visible to the public." msgstr "您確定要封存此活動嗎?它將不再對公眾可見。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:54 msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "您確定要封存此主辦方嗎?這也將封存屬於此主辦方的所有活動。" @@ -1123,7 +1130,7 @@ msgstr "您確定要刪除所有失敗的任務嗎?" msgid "Are you sure you want to delete this affiliate? This action cannot be undone." msgstr "你確定要刪除呢個推廣夥伴嗎?呢個操作無法撤銷。" -#: src/components/routes/admin/Configurations/index.tsx:39 +#: src/components/routes/admin/Configurations/index.tsx:40 msgid "Are you sure you want to delete this configuration? This may affect accounts using it." msgstr "您確定要刪除此配置嗎?這可能會影響使用它的帳戶。" @@ -1137,11 +1144,11 @@ msgstr "確定要刪除此日期嗎?此操作無法復原。" msgid "Are you sure you want to delete this promo code?" msgstr "您確定要刪除此促銷代碼嗎?" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:111 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the default template." msgstr "確定要刪除此範本嗎?此操作無法復原,郵件將回退到預設範本。" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:109 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:110 msgid "Are you sure you want to delete this template? This action cannot be undone and emails will fall back to the organizer or default template." msgstr "確定要刪除此範本嗎?此操作無法復原,郵件將回退到組織者或預設範本。" @@ -1150,17 +1157,17 @@ msgstr "確定要刪除此範本嗎?此操作無法復原,郵件將回退到 msgid "Are you sure you want to delete this webhook?" msgstr "您確定要刪除此 Webhook 嗎?" -#: src/components/layouts/Checkout/index.tsx:319 +#: src/components/layouts/Checkout/index.tsx:417 msgid "Are you sure you want to leave?" msgstr "您確定要離開嗎?" #: src/components/layouts/Event/index.tsx:178 -#: src/components/routes/event/EventDashboard/index.tsx:104 +#: src/components/routes/event/EventDashboard/index.tsx:121 msgid "Are you sure you want to make this event draft? This will make the event invisible to the public" msgstr "您確定要將此活動設為草稿嗎?這將使公眾無法看到該活動" #: src/components/layouts/Event/index.tsx:179 -#: src/components/routes/event/EventDashboard/index.tsx:105 +#: src/components/routes/event/EventDashboard/index.tsx:122 msgid "Are you sure you want to make this event public? This will make the event visible to the public" msgstr "您確定要將此事件公開嗎?這將使事件對公眾可見" @@ -1200,15 +1207,15 @@ msgstr "您確定要將訂單確認重新發送到 {0} 嗎?" msgid "Are you sure you want to resend the ticket to {0}?" msgstr "您確定要將門票重新發送到 {0} 嗎?" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:46 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:47 msgid "Are you sure you want to restore this event?" msgstr "您確定要還原此活動嗎?" -#: src/components/common/EventCard/index.tsx:62 +#: src/components/common/EventCard/index.tsx:63 msgid "Are you sure you want to restore this event? It will be restored as a draft event." msgstr "您確定要恢復此活動嗎?它將作為草稿恢復。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:52 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:53 msgid "Are you sure you want to restore this organizer?" msgstr "您確定要還原此主辦方嗎?" @@ -1229,7 +1236,7 @@ msgstr "您確定要刪除此容量分配嗎?" msgid "Are you sure you would like to delete this Check-In List?" msgstr "您確定要刪除此簽到列表嗎?" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:196 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:194 msgid "Are you VAT registered in the EU?" msgstr "您在歐盟註冊了增值稅嗎?" @@ -1237,7 +1244,7 @@ msgstr "您在歐盟註冊了增值稅嗎?" msgid "Art" msgstr "藝術" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 msgid "As your business is based in Ireland, Irish VAT at 23% applies automatically to all platform fees." msgstr "由於您的業務位於愛爾蘭,愛爾蘭增值稅(23%)將自動套用於所有平台費用。" @@ -1270,7 +1277,7 @@ msgstr "分配的級別" msgid "At least one event type must be selected" msgstr "必須選擇至少一種事件類型" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:98 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:96 msgid "Attempts" msgstr "嘗試次數" @@ -1279,7 +1286,6 @@ msgid "Attendance and check-in rates across all events" msgstr "所有活動的出席率和簽到率" #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendee" msgstr "參加者" @@ -1287,7 +1293,7 @@ msgstr "參加者" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:74 #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:75 #: src/components/common/QuestionsTable/index.tsx:461 -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Attendee" msgstr "參加者" @@ -1345,7 +1351,7 @@ msgid "Attendee Status" msgstr "參與者狀態" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:98 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:211 #: src/components/modals/ManageAttendeeModal/index.tsx:172 msgid "Attendee Ticket" msgstr "參會者票" @@ -1364,13 +1370,13 @@ msgstr "參與者的票不包含在此列表中" #: src/components/routes/event/attendees.tsx:250 #: src/components/routes/event/EventDashboard/NextOccurrenceHero/index.tsx:209 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:392 msgid "attendees" msgstr "參加者" -#: src/components/common/EventCard/index.tsx:266 +#: src/components/common/EventCard/index.tsx:256 +#: src/components/common/EventCard/index.tsx:357 #: src/components/common/ProductsTable/SortableProduct/index.tsx:382 -#: src/components/common/StatBoxes/index.tsx:54 +#: src/components/common/StatBoxes/index.tsx:73 #: src/components/layouts/Event/index.tsx:129 #: src/components/modals/ManageOccurrenceModal/index.tsx:158 #: src/components/modals/ManageOrderModal/index.tsx:126 @@ -1379,9 +1385,9 @@ msgstr "參加者" #: src/components/routes/event/attendees.tsx:205 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:55 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:278 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:119 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:145 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:279 msgid "Attendees" msgstr "參與者" @@ -1393,16 +1399,16 @@ msgstr "位參加者已簽到" msgid "Attendees Exported" msgstr "與會者已導出" -#: src/components/common/EventCard/index.tsx:263 +#: src/components/common/EventCard/index.tsx:354 msgid "Attendees registered" msgstr "已註冊參加者" -#: src/components/routes/event/EventDashboard/index.tsx:247 +#: src/components/routes/event/EventDashboard/index.tsx:297 #: src/components/routes/event/OccurrenceDetail/index.tsx:196 msgid "Attendees Registered" msgstr "註冊的參會者" -#: src/components/modals/SendMessageModal/index.tsx:392 +#: src/components/modals/SendMessageModal/index.tsx:387 msgid "Attendees with a specific ticket" msgstr "持有特定門票的與會者" @@ -1454,7 +1460,7 @@ msgstr "根據內容自動調整小工具高度。停用時,小工具將填滿 msgid "Available" msgstr "可用" -#: src/components/modals/RefundOrderModal/index.tsx:92 +#: src/components/modals/RefundOrderModal/index.tsx:93 msgid "Available to Refund" msgstr "可退款" @@ -1467,7 +1473,7 @@ msgid "Awaiting" msgstr "待處理" #: src/components/common/OrderStatusBadge/index.tsx:15 -#: src/components/modals/SendMessageModal/index.tsx:444 +#: src/components/modals/SendMessageModal/index.tsx:439 msgid "Awaiting offline payment" msgstr "等待線下付款" @@ -1482,7 +1488,7 @@ msgstr "待付款" #: src/components/layouts/CheckIn/AttendeeDetailSheet.tsx:123 #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:230 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:447 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:434 msgid "Awaiting payment" msgstr "等待付款" @@ -1513,14 +1519,14 @@ msgstr "返回帳戶" msgid "Back to calendar" msgstr "返回日曆" -#: src/components/forms/StripeCheckoutForm/index.tsx:108 -#: src/components/routes/product-widget/CollectInformation/index.tsx:334 -#: src/components/routes/product-widget/CollectInformation/index.tsx:364 -#: src/components/routes/product-widget/CollectInformation/index.tsx:393 +#: src/components/forms/StripeCheckoutForm/index.tsx:141 +#: src/components/routes/product-widget/CollectInformation/index.tsx:335 +#: src/components/routes/product-widget/CollectInformation/index.tsx:365 +#: src/components/routes/product-widget/CollectInformation/index.tsx:394 msgid "Back to Event" msgstr "返回活動" -#: src/components/layouts/Checkout/index.tsx:207 +#: src/components/layouts/Checkout/index.tsx:301 msgid "Back to event page" msgstr "返回活動頁面" @@ -1548,7 +1554,7 @@ msgstr "背景顏色" msgid "Background Type" msgstr "背景類型" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:87 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:116 msgid "Bank account connected" msgstr "" @@ -1566,7 +1572,7 @@ msgstr "根據以上的全域銷售期,並非按個別日期" msgid "Basic Information" msgstr "基本資料" -#: src/components/routes/product-widget/CollectInformation/index.tsx:517 +#: src/components/routes/product-widget/CollectInformation/index.tsx:518 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:289 msgid "Billing Address" msgstr "賬單地址" @@ -1599,11 +1605,11 @@ msgstr "內置防詐騙保護" msgid "Bulk Edit" msgstr "批量編輯" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:332 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:333 msgid "Bulk Edit Dates" msgstr "批量編輯日期" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:255 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:256 msgid "Bulk update failed." msgstr "批量更新失敗。" @@ -1635,11 +1641,11 @@ msgstr "買家支付" msgid "Buyers see a clean price. The platform fee is deducted from your payout." msgstr "買家看到的是淨價。平台費用將從您的付款中扣除。" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:245 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:246 msgid "By adding tracking pixels, you acknowledge that you and this platform are joint controllers of the data collected. You are responsible for ensuring you have a lawful basis for this processing under applicable privacy laws (GDPR, CCPA, etc.)." msgstr "加入追蹤像素即表示您確認您與本平台為所收集數據的共同控制者。您有責任確保根據適用的私隱法(GDPR、CCPA 等)擁有合法依據處理數據。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:720 +#: src/components/routes/product-widget/CollectInformation/index.tsx:721 #: src/components/routes/product-widget/Payment/index.tsx:152 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "繼續即表示您同意 <0>{0} 服務條款" @@ -1660,7 +1666,7 @@ msgstr "註冊即表示您同意我們的<0>服務條款和<1>隱私政策terms and conditions" msgstr "我同意<0>條款和條件。" -#: src/components/modals/SendMessageModal/index.tsx:549 +#: src/components/modals/SendMessageModal/index.tsx:544 msgid "I confirm this is a transactional message related to this event" msgstr "我確認這是與此活動相關的交易訊息" -#: src/components/routes/product-widget/SelectProducts/index.tsx:452 +#: src/components/routes/product-widget/SelectProducts/index.tsx:474 msgid "If a new tab did not open automatically, please click the button below to continue to checkout." msgstr "如果未自動開啟新分頁,請點擊下方按鈕繼續結帳。" @@ -5325,7 +5369,7 @@ msgstr "如果啟用,登記工作人員可以將與會者標記為已登記或 msgid "If enabled, the organizer will receive an email notification when a new order is placed" msgstr "如果啟用,當有新訂單時,組織者將收到電子郵件通知" -#: src/components/routes/profile/ManageProfile/index.tsx:132 +#: src/components/routes/profile/ManageProfile/index.tsx:133 msgid "If you did not request this change, please immediately change your password." msgstr "如果您沒有要求更改密碼,請立即更改密碼。" @@ -5370,11 +5414,11 @@ msgstr "模擬已開始" msgid "Impersonation stopped" msgstr "模擬已停止" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:114 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:112 msgid "Important Notice" msgstr "重要通知" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:77 msgid "Important: Changing your email address will update the link to access this order. You will be redirected to the new order link after saving." msgstr "重要提示:更改您的電郵地址將更新存取此訂單的連結。儲存後,您將被重新導向至新的訂單連結。" @@ -5390,7 +5434,7 @@ msgstr "{diffMinutes} 分鐘後" msgid "in last {0} min" msgstr "最近 {0} 分鐘" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:496 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 msgid "In person — set a venue" msgstr "實地 — 設定場地" @@ -5401,15 +5445,15 @@ msgstr "in_person、online、unset 或 mixed" #: src/components/common/AffiliateTable/index.tsx:131 #: src/components/common/CheckInListList/index.tsx:114 #: src/components/common/CheckInListTable/index.tsx:172 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:278 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:279 #: src/components/forms/AffiliateForm/index.tsx:27 #: src/components/forms/CapaciyAssigmentForm/index.tsx:25 -#: src/components/modals/EditUserModal/index.tsx:111 +#: src/components/modals/EditUserModal/index.tsx:112 #: src/components/routes/organizer/Payments/CapabilityList.tsx:62 msgid "Inactive" msgstr "不活動" -#: src/components/modals/EditUserModal/index.tsx:107 +#: src/components/modals/EditUserModal/index.tsx:108 msgid "Inactive users cannot log in." msgstr "非活動用户無法登錄。" @@ -5483,12 +5527,12 @@ msgstr "電郵格式無效" msgid "Invalid file type. Please upload an image." msgstr "無效的檔案類型。請上傳圖片。" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:153 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:184 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 msgid "Invalid Liquid syntax. Please correct it and try again." msgstr "無效的Liquid語法。請更正後再試。" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:155 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:153 msgid "Invalid VAT number format" msgstr "無效的增值稅號碼格式" @@ -5525,7 +5569,7 @@ msgid "Invoice" msgstr "發票" #: src/components/common/OrdersTable/index.tsx:105 -#: src/components/layouts/Checkout/index.tsx:99 +#: src/components/layouts/Checkout/index.tsx:186 msgid "Invoice downloaded successfully" msgstr "發票下載成功" @@ -5545,7 +5589,7 @@ msgstr "發票設置" msgid "Italian" msgstr "意大利語" -#: src/components/routes/product-widget/CollectInformation/index.tsx:631 +#: src/components/routes/product-widget/CollectInformation/index.tsx:632 msgid "Item" msgstr "項目" @@ -5628,7 +5672,7 @@ msgstr "剛剛" msgid "Just wrapped" msgstr "剛結束" -#: src/components/routes/product-widget/CollectInformation/index.tsx:571 +#: src/components/routes/product-widget/CollectInformation/index.tsx:572 msgid "Keep me updated on news and events from {0}" msgstr "讓我隨時了解來自 {0} 的新聞和活動" @@ -5647,13 +5691,13 @@ msgstr "標籤" msgid "Label for the occurrence" msgstr "場次的標籤" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:325 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 msgid "label updates" msgstr "標籤更新" #: src/components/common/AttendeeDetails/index.tsx:38 #: src/components/modals/CreateAttendeeModal/index.tsx:241 -#: src/components/routes/profile/ManageProfile/index.tsx:196 +#: src/components/routes/profile/ManageProfile/index.tsx:197 msgid "Language" msgstr "語言" @@ -5681,7 +5725,7 @@ msgid "Last 24 hours" msgstr "過去 24 小時" #: src/components/common/OrganizerReportTable/index.tsx:56 -#: src/components/common/PeriodSelector/index.tsx:28 +#: src/components/common/PeriodSelector/index.tsx:34 #: src/components/common/ReportTable/index.tsx:51 msgid "Last 30 days" msgstr "過去 30 天" @@ -5697,13 +5741,13 @@ msgid "Last 6 months" msgstr "過去 6 個月" #: src/components/common/OrganizerReportTable/index.tsx:54 -#: src/components/common/PeriodSelector/index.tsx:26 +#: src/components/common/PeriodSelector/index.tsx:32 #: src/components/common/ReportTable/index.tsx:49 msgid "Last 7 days" msgstr "過去 7 天" #: src/components/common/OrganizerReportTable/index.tsx:57 -#: src/components/common/PeriodSelector/index.tsx:30 +#: src/components/common/PeriodSelector/index.tsx:36 #: src/components/common/ReportTable/index.tsx:52 msgid "Last 90 days" msgstr "過去 90 天" @@ -5719,18 +5763,18 @@ msgid "Last name" msgstr "姓氏" #: src/components/common/QuestionsTable/index.tsx:252 -#: src/components/modals/EditUserModal/index.tsx:72 +#: src/components/modals/EditUserModal/index.tsx:73 #: src/components/modals/InviteUserModal/index.tsx:58 #: src/components/modals/JoinWaitlistModal/index.tsx:168 #: src/components/routes/auth/AcceptInvitation/index.tsx:102 #: src/components/routes/auth/Register/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:444 #: src/components/routes/product-widget/CollectInformation/index.tsx:445 -#: src/components/routes/product-widget/CollectInformation/index.tsx:656 +#: src/components/routes/product-widget/CollectInformation/index.tsx:446 #: src/components/routes/product-widget/CollectInformation/index.tsx:657 +#: src/components/routes/product-widget/CollectInformation/index.tsx:658 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:60 #: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:60 -#: src/components/routes/profile/ManageProfile/index.tsx:154 +#: src/components/routes/profile/ManageProfile/index.tsx:155 msgid "Last Name" msgstr "姓氏" @@ -5753,7 +5797,7 @@ msgstr "最近觸發" msgid "Last Used" msgstr "最近一次使用" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:403 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:404 msgid "Later" msgstr "稍後" @@ -5786,7 +5830,7 @@ msgstr "保持啟用以涵蓋活動的所有門票。關閉以選擇特定門票 msgid "Let them know about the change" msgstr "通知佢哋呢個變更" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 msgid "Let them know about the changes" msgstr "通知佢哋呢啲變更" @@ -5830,12 +5874,11 @@ msgstr "清單" msgid "List view" msgstr "清單檢視" -#: src/components/common/EventCard/index.tsx:90 +#: src/components/common/EventCard/index.tsx:91 #: src/components/layouts/AuthLayout/index.tsx:78 #: src/components/layouts/Event/index.tsx:217 #: src/components/layouts/OrganizerLayout/index.tsx:214 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:77 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:465 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:106 msgid "Live" msgstr "已上線" @@ -5848,7 +5891,7 @@ msgstr "直播" msgid "Live Events" msgstr "直播活動" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:368 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:369 msgid "Loaded dates" msgstr "已載入的日期" @@ -5872,8 +5915,8 @@ msgstr "正在加載 Webhook" #: src/components/common/OrganizerReportTable/index.tsx:265 #: src/components/common/ReportTable/index.tsx:225 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:87 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:93 msgid "Loading..." msgstr "加載中..." @@ -5926,7 +5969,7 @@ msgstr "已儲存地點" msgid "Location updated" msgstr "已更新地點" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:327 msgid "location updates" msgstr "地點更新" @@ -5990,7 +6033,7 @@ msgstr "主要辦公室" msgid "Make billing address mandatory during checkout" msgstr "在結賬時強制要求填寫賬單地址" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:76 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:105 msgid "Make it visible so people can buy tickets" msgstr "" @@ -6023,7 +6066,7 @@ msgstr "管理與會者" msgid "Manage dates and times for your recurring event" msgstr "管理您循環活動的日期及時間" -#: src/components/common/EventCard/index.tsx:158 +#: src/components/common/EventCard/index.tsx:159 msgid "Manage event" msgstr "管理活動" @@ -6039,10 +6082,14 @@ msgstr "管理訂單" msgid "Manage payment and invoicing settings for this event." msgstr "管理此活動的支付和發票設置。" -#: src/components/routes/profile/ManageProfile/index.tsx:111 +#: src/components/routes/profile/ManageProfile/index.tsx:112 msgid "Manage Profile" msgstr "管理簡介" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Manage schedule" +msgstr "" + #: src/components/routes/event/EventDashboard/UpcomingOccurrences/index.tsx:45 msgid "Manage Schedule" msgstr "管理日程" @@ -6124,7 +6171,7 @@ msgstr "媒介" #: src/components/common/AttendeeTable/index.tsx:197 #: src/components/common/ContactOrganizerModal/index.tsx:88 #: src/components/common/OrdersTable/index.tsx:256 -#: src/components/modals/SendMessageModal/index.tsx:463 +#: src/components/modals/SendMessageModal/index.tsx:458 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:57 msgid "Message" msgstr "訊息" @@ -6141,7 +6188,7 @@ msgstr "與會者留言" msgid "Message Attendees" msgstr "留言參與者" -#: src/components/modals/SendMessageModal/index.tsx:420 +#: src/components/modals/SendMessageModal/index.tsx:415 msgid "Message attendees with specific tickets" msgstr "向與會者發送特定門票的信息" @@ -6165,7 +6212,7 @@ msgstr "訊息內容" msgid "Message Details" msgstr "訊息詳情" -#: src/components/modals/SendMessageModal/index.tsx:108 +#: src/components/modals/SendMessageModal/index.tsx:109 msgid "Message individual attendees" msgstr "給個別與會者留言" @@ -6173,15 +6220,15 @@ msgstr "給個別與會者留言" msgid "Message is required" msgstr "必須填寫訊息" -#: src/components/modals/SendMessageModal/index.tsx:432 +#: src/components/modals/SendMessageModal/index.tsx:427 msgid "Message order owners with specific products" msgstr "向具有特定產品的訂單所有者發送消息" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Scheduled" msgstr "訊息已排程" -#: src/components/modals/SendMessageModal/index.tsx:255 +#: src/components/modals/SendMessageModal/index.tsx:256 msgid "Message Sent" msgstr "發送的信息" @@ -6212,8 +6259,8 @@ msgstr "最低價格" msgid "minutes" msgstr "分鐘" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:417 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:441 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:418 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:442 msgid "Minutes" msgstr "分鐘" @@ -6229,7 +6276,7 @@ msgstr "雜項設置" msgid "Mo" msgstr "一" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:491 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:492 msgid "Mode" msgstr "模式" @@ -6282,7 +6329,7 @@ msgstr "更多操作" msgid "Most Viewed Events (Last 14 Days)" msgstr "最多瀏覽活動(過去14天)" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Move all dates earlier or later" msgstr "將所有日期提前或延後" @@ -6290,7 +6337,7 @@ msgstr "將所有日期提前或延後" msgid "Multi line text box" msgstr "多行文本框" -#: src/components/common/EventCard/index.tsx:114 +#: src/components/common/EventCard/index.tsx:115 #: src/components/layouts/EventHomepage/index.tsx:170 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:61 msgid "Multiple locations" @@ -6343,7 +6390,7 @@ msgstr "Nam placerat elementum..." #: src/components/forms/TaxAndFeeForm/index.tsx:61 #: src/components/modals/DuplicateEventModal/index.tsx:112 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:63 -#: src/components/routes/admin/Configurations/index.tsx:219 +#: src/components/routes/admin/Configurations/index.tsx:220 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:78 #: src/components/routes/organizer/Locations/index.tsx:89 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:232 @@ -6353,11 +6400,11 @@ msgstr "名稱" #: src/components/common/ContactOrganizerModal/index.tsx:32 #: src/components/modals/CreateAffiliateModal/index.tsx:28 #: src/components/modals/EditAffiliateModal/index.tsx:33 -#: src/components/routes/admin/Configurations/index.tsx:168 +#: src/components/routes/admin/Configurations/index.tsx:169 msgid "Name is required" msgstr "必須填寫名稱" -#: src/components/routes/admin/Configurations/index.tsx:169 +#: src/components/routes/admin/Configurations/index.tsx:170 msgid "Name must be less than 255 characters" msgstr "名稱必須少於 255 個字元" @@ -6384,21 +6431,21 @@ msgstr "淨收入" msgid "Never" msgstr "從不" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:456 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:457 msgid "New capacity" msgstr "新容量" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:475 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:476 msgid "New label" msgstr "新標籤" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:510 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:496 msgid "New location" msgstr "新地點" #: src/components/routes/auth/ResetPassword/index.tsx:64 -#: src/components/routes/profile/ManageProfile/index.tsx:232 +#: src/components/routes/profile/ManageProfile/index.tsx:233 msgid "New Password" msgstr "新密碼" @@ -6426,7 +6473,7 @@ msgstr "夜生活" msgid "No" msgstr "否" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:202 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:200 msgid "No - I'm an individual or non-VAT registered business" msgstr "否 - 我是個人或非增值稅註冊企業" @@ -6492,7 +6539,7 @@ msgid "No Capacity Assignments" msgstr "沒有容量分配" #: src/components/common/KpiGrid/index.tsx:57 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:211 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:212 msgid "No change" msgstr "" @@ -6509,7 +6556,7 @@ msgstr "此活動沒有可用的簽到列表。" msgid "No check-ins yet" msgstr "暫無簽到" -#: src/components/routes/admin/Configurations/index.tsx:126 +#: src/components/routes/admin/Configurations/index.tsx:127 msgid "No configurations found" msgstr "找不到配置" @@ -6537,7 +6584,7 @@ msgstr "沒有針對此日期的簽到名單" msgid "No dates available this month. Try navigating to another month." msgstr "本月沒有可用日期。請瀏覽其他月份。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:106 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:107 msgid "No dates match the current filters." msgstr "沒有日期符合目前的篩選條件。" @@ -6582,8 +6629,8 @@ msgstr "未來 24 小時內沒有活動開始" msgid "No events to show" msgstr "無事件顯示" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:410 -msgid "No events yet —" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:393 +msgid "No events yet" msgstr "" #: src/components/routes/admin/FailedJobs/index.tsx:155 @@ -6631,8 +6678,8 @@ msgstr "找不到訂單" msgid "No orders to show" msgstr "無訂單顯示" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:354 -msgid "No orders yet — they'll appear here when customers buy tickets." +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:364 +msgid "No orders yet" msgstr "" #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:90 @@ -6643,7 +6690,7 @@ msgstr "此日期暫無訂單。" msgid "No organizer activity in the last 14 days" msgstr "過去14天沒有主辦方活動" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:194 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:195 msgid "No organizer context available." msgstr "無可用的主辦方資料。" @@ -6733,7 +6780,7 @@ msgstr "尚無響應" msgid "No results" msgstr "無結果" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "No saved locations yet" msgstr "尚未儲存任何地點" @@ -6793,16 +6840,16 @@ msgstr "此端點尚未記錄任何 Webhook 事件。事件觸發後將顯示在 msgid "No Webhooks" msgstr "沒有 Webhooks" -#: src/components/layouts/Checkout/index.tsx:329 +#: src/components/layouts/Checkout/index.tsx:427 msgid "No, keep me here" msgstr "否,保留在此" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:317 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:318 msgid "non-edited" msgstr "未編輯" #: src/components/common/PromoCodeTable/index.tsx:82 -#: src/components/routes/product-widget/CollectInformation/index.tsx:503 +#: src/components/routes/product-widget/CollectInformation/index.tsx:504 msgid "None" msgstr "無" @@ -6870,7 +6917,7 @@ msgstr "號碼前綴" #: src/components/common/OrderDetails/index.tsx:57 #: src/components/forms/CheckInListForm/index.tsx:134 #: src/components/modals/CreateAttendeeModal/index.tsx:259 -#: src/components/modals/SendMessageModal/index.tsx:376 +#: src/components/modals/SendMessageModal/index.tsx:371 msgid "Occurrence" msgstr "場次" @@ -7005,7 +7052,7 @@ msgstr "線下支付信息" msgid "Offline Payments Settings" msgstr "線下支付設置" -#: src/components/common/EventCard/index.tsx:92 +#: src/components/common/EventCard/index.tsx:93 #: src/components/common/ProductsTable/SortableProduct/index.tsx:93 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:32 msgid "On Sale" @@ -7028,7 +7075,7 @@ msgstr "一旦開始收集數據,您將在這裏看到。" msgid "Ongoing" msgstr "持續進行" -#: src/components/common/EventCard/index.tsx:113 +#: src/components/common/EventCard/index.tsx:114 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:60 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:485 #: src/components/routes/my-tickets/index.tsx:56 @@ -7036,11 +7083,11 @@ msgstr "持續進行" msgid "Online" msgstr "線上" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:498 msgid "Online — provide connection details" msgstr "線上 — 提供連接詳情" -#: src/components/common/EventCard/index.tsx:112 +#: src/components/common/EventCard/index.tsx:113 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:59 msgid "Online & in-person" msgstr "線上及線下" @@ -7070,15 +7117,15 @@ msgstr "線上活動連線詳情" msgid "Online Event Details" msgstr "在線活動詳情" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:72 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:73 msgid "Only account administrators can delete or archive events. Contact your account admin for assistance." msgstr "只有帳戶管理員可以刪除或封存活動。請聯絡您的帳戶管理員尋求協助。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:78 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:79 msgid "Only account administrators can delete or archive organizers. Contact your account admin for assistance." msgstr "只有帳戶管理員可以刪除或封存主辦方。請聯絡您的帳戶管理員尋求協助。" -#: src/components/modals/SendMessageModal/index.tsx:440 +#: src/components/modals/SendMessageModal/index.tsx:435 msgid "Only send to orders with these statuses" msgstr "僅發送給具有這些狀態的訂單" @@ -7173,7 +7220,7 @@ msgstr "訂單及門票" msgid "Order #" msgstr "訂單 #" -#: src/components/routes/product-widget/CollectInformation/index.tsx:361 +#: src/components/routes/product-widget/CollectInformation/index.tsx:362 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:386 msgid "Order cancelled" msgstr "訂單已取消" @@ -7182,13 +7229,13 @@ msgstr "訂單已取消" msgid "Order Cancelled" msgstr "取消訂單" -#: src/components/routes/product-widget/CollectInformation/index.tsx:351 +#: src/components/routes/product-widget/CollectInformation/index.tsx:352 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:396 msgid "Order complete" msgstr "訂單完成" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:97 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:209 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:210 msgid "Order Confirmation" msgstr "訂單確認" @@ -7273,7 +7320,7 @@ msgstr "訂單已標記為已支付" msgid "Order Marked as Paid" msgstr "訂單標記為已支付" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Order not found" msgstr "未找到訂單" @@ -7297,7 +7344,7 @@ msgstr "訂單號、購買日期、購買者電郵" msgid "Order owner" msgstr "訂單所有者" -#: src/components/modals/SendMessageModal/index.tsx:404 +#: src/components/modals/SendMessageModal/index.tsx:399 msgid "Order owners with a specific product" msgstr "具有特定產品的訂單所有者" @@ -7327,7 +7374,7 @@ msgstr "訂單已退款" msgid "Order Status" msgstr "訂單狀態" -#: src/components/modals/SendMessageModal/index.tsx:441 +#: src/components/modals/SendMessageModal/index.tsx:436 msgid "Order statuses" msgstr "訂單狀態" @@ -7341,7 +7388,7 @@ msgid "Order timeout" msgstr "訂單超時" #: src/components/common/Editor/Controls/InsertLiquidVariableControl.tsx:39 -#: src/components/modals/RefundOrderModal/index.tsx:78 +#: src/components/modals/RefundOrderModal/index.tsx:79 msgid "Order Total" msgstr "訂單總額" @@ -7357,7 +7404,7 @@ msgstr "訂單更新成功" msgid "Order URL" msgstr "訂單連結" -#: src/components/routes/product-widget/CollectInformation/index.tsx:331 +#: src/components/routes/product-widget/CollectInformation/index.tsx:332 msgid "Order was cancelled" msgstr "訂單已被取消" @@ -7374,8 +7421,8 @@ msgstr "訂單" #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:56 #: src/components/routes/event/orders.tsx:154 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:78 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:117 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:118 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:144 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:103 #: src/components/routes/organizer/Reports/RevenueSummaryReport/index.tsx:60 #: src/components/routes/organizer/Reports/TaxSummaryReport/index.tsx:55 @@ -7434,7 +7481,7 @@ msgstr "組織名稱" #: src/components/common/AdminEventsTable/index.tsx:87 #: src/components/common/AttendeeTicket/index.tsx:101 #: src/components/layouts/EventHomepage/index.tsx:616 -#: src/components/modals/EditUserModal/index.tsx:55 +#: src/components/modals/EditUserModal/index.tsx:56 #: src/components/modals/InviteUserModal/index.tsx:47 #: src/components/routes/admin/Dashboard/index.tsx:257 #: src/components/routes/admin/Dashboard/index.tsx:306 @@ -7444,17 +7491,17 @@ msgstr "組織名稱" msgid "Organizer" msgstr "主辦方" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer archived successfully" msgstr "主辦方已成功封存" #: src/components/layouts/Event/index.tsx:95 #: src/components/layouts/OrganizerLayout/index.tsx:91 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:154 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:155 msgid "Organizer Dashboard" msgstr "主辦單位儀表板" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:40 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:41 msgid "Organizer deleted successfully" msgstr "主辦方已成功刪除" @@ -7486,7 +7533,7 @@ msgstr "組織者姓名" msgid "Organizer Not Found" msgstr "找不到主辦單位" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:60 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:61 msgid "Organizer restored successfully" msgstr "主辦方已成功還原" @@ -7504,7 +7551,7 @@ msgstr "更新主辦單位狀態失敗。請稍後再試。" msgid "Organizer status updated" msgstr "主辦單位狀態已更新" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:223 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:224 msgid "Organizer/default template will be used" msgstr "將使用組織者/預設範本" @@ -7512,7 +7559,7 @@ msgstr "將使用組織者/預設範本" msgid "Organizers" msgstr "主辦方" -#: src/components/modals/EditUserModal/index.tsx:57 +#: src/components/modals/EditUserModal/index.tsx:58 #: src/components/modals/InviteUserModal/index.tsx:49 msgid "Organizers can only manage events and products. They cannot manage users, account settings or billing information." msgstr "組織者只能管理活動和產品。他們無法管理用户、賬户設置或賬單信息。" @@ -7563,7 +7610,7 @@ msgstr "內邊距" msgid "Page" msgstr "頁面" -#: src/components/forms/StripeCheckoutForm/index.tsx:106 +#: src/components/forms/StripeCheckoutForm/index.tsx:139 msgid "Page no longer available" msgstr "頁面不再可用" @@ -7575,7 +7622,7 @@ msgstr "頁面未找到" msgid "Page URL" msgstr "頁面網址" -#: src/components/common/StatBoxes/index.tsx:82 +#: src/components/common/StatBoxes/index.tsx:101 msgid "Page views" msgstr "頁面瀏覽量" @@ -7583,11 +7630,11 @@ msgstr "頁面瀏覽量" msgid "Page Views" msgstr "頁面瀏覽量" -#: src/components/modals/CreateAttendeeModal/index.tsx:311 +#: src/components/modals/CreateAttendeeModal/index.tsx:310 msgid "paid" msgstr "付訖" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:444 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:431 msgid "Paid" msgstr "" @@ -7599,7 +7646,7 @@ msgstr "付費帳戶" msgid "Paid Product" msgstr "付費產品" -#: src/components/modals/RefundOrderModal/index.tsx:109 +#: src/components/modals/RefundOrderModal/index.tsx:110 msgid "Partial refund" msgstr "部分退款" @@ -7623,7 +7670,7 @@ msgstr "轉嫁給買家" #: src/components/routes/auth/AcceptInvitation/index.tsx:127 #: src/components/routes/auth/Login/index.tsx:98 #: src/components/routes/auth/Register/index.tsx:112 -#: src/components/routes/profile/ManageProfile/index.tsx:119 +#: src/components/routes/profile/ManageProfile/index.tsx:120 msgid "Password" msgstr "密碼" @@ -7694,7 +7741,7 @@ msgstr "負載數據" #: src/components/common/OrdersTable/index.tsx:387 #: src/components/common/ProgressStepper/index.tsx:19 -#: src/components/forms/StripeCheckoutForm/index.tsx:127 +#: src/components/forms/StripeCheckoutForm/index.tsx:160 msgid "Payment" msgstr "付款方式" @@ -7735,7 +7782,7 @@ msgstr "支付方式" msgid "Payment provider" msgstr "支付提供商" -#: src/components/forms/StripeCheckoutForm/index.tsx:94 +#: src/components/forms/StripeCheckoutForm/index.tsx:127 msgid "Payment received" msgstr "已收到付款" @@ -7747,7 +7794,7 @@ msgstr "已收到付款" msgid "Payment Status" msgstr "支付狀態" -#: src/components/forms/StripeCheckoutForm/index.tsx:60 +#: src/components/forms/StripeCheckoutForm/index.tsx:93 msgid "Payment succeeded!" msgstr "付款成功!" @@ -7761,11 +7808,11 @@ msgstr "付款不可用" #: src/components/routes/organizer/Settings/index.tsx:90 #: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:352 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:407 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:406 msgid "Payouts" msgstr "提款" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:450 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:437 #: src/components/routes/organizer/Payments/CapabilityList.tsx:60 msgid "Pending" msgstr "待處理" @@ -7801,8 +7848,8 @@ msgstr "百分比" msgid "Percentage Amount" msgstr "百分比 金額" -#: src/components/routes/admin/Configurations/index.tsx:100 -#: src/components/routes/admin/Configurations/index.tsx:246 +#: src/components/routes/admin/Configurations/index.tsx:101 +#: src/components/routes/admin/Configurations/index.tsx:247 msgid "Percentage Fee" msgstr "百分比費用" @@ -7810,11 +7857,11 @@ msgstr "百分比費用" msgid "Percentage fee (%)" msgstr "百分比費用 (%)" -#: src/components/routes/admin/Configurations/index.tsx:174 +#: src/components/routes/admin/Configurations/index.tsx:175 msgid "Percentage must be between 0 and 100" msgstr "百分比必須介於 0 到 100 之間" -#: src/components/routes/admin/Configurations/index.tsx:247 +#: src/components/routes/admin/Configurations/index.tsx:248 msgid "Percentage of transaction amount" msgstr "交易金額的百分比" @@ -7822,11 +7869,11 @@ msgstr "交易金額的百分比" msgid "Performance" msgstr "表現" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:85 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:86 msgid "Permanently delete this event and all its associated data." msgstr "永久刪除此活動及其所有相關資料。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:91 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:92 msgid "Permanently delete this organizer and all its events." msgstr "永久刪除此主辦方及其所有活動。" @@ -7834,7 +7881,7 @@ msgstr "永久刪除此主辦方及其所有活動。" msgid "Permanently remove this date" msgstr "永久移除此日期" -#: src/components/routes/profile/ManageProfile/index.tsx:147 +#: src/components/routes/profile/ManageProfile/index.tsx:148 msgid "Personal Information" msgstr "個人資料" @@ -7842,7 +7889,7 @@ msgstr "個人資料" msgid "Phone" msgstr "電話" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:518 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:504 msgid "Pick a location" msgstr "選擇地點" @@ -7892,7 +7939,7 @@ msgstr "從您的付款中扣除 {0} 的平台費用" msgid "Platform Fees" msgstr "平台費用" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:134 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:129 msgid "Platform Fees Report" msgstr "平台費用報告" @@ -7918,7 +7965,7 @@ msgstr "請檢查您的電子郵件和密碼並重試" msgid "Please check your email is valid" msgstr "請檢查您的電子郵件是否有效" -#: src/components/routes/profile/ManageProfile/index.tsx:170 +#: src/components/routes/profile/ManageProfile/index.tsx:171 msgid "Please check your email to confirm your email address" msgstr "請檢查您的電子郵件以確認您的電子郵件地址" @@ -7926,7 +7973,7 @@ msgstr "請檢查您的電子郵件以確認您的電子郵件地址" msgid "Please check your ticket for the updated time. Your tickets are still valid — no action is needed unless the new times don't work for you. Reply to this email if you have any questions." msgstr "請查閱您的門票以取得更新時間。您的門票仍然有效 — 除非新時間不適合您,否則無需任何行動。如有疑問,請回覆此電郵。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:443 +#: src/components/routes/product-widget/SelectProducts/index.tsx:465 msgid "Please continue in the new tab" msgstr "請在新標籤頁中繼續" @@ -7955,7 +8002,7 @@ msgstr "請輸入有效的 URL" msgid "Please enter the 5-digit code" msgstr "請輸入5位數驗證碼" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:147 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:145 msgid "Please enter your VAT number" msgstr "請輸入您的增值稅號碼" @@ -7971,11 +8018,11 @@ msgstr "請提供圖片。" msgid "Please restart the checkout process." msgstr "請重新開始結賬流程。" -#: src/components/layouts/Checkout/index.tsx:298 +#: src/components/layouts/Checkout/index.tsx:396 msgid "Please return to the event page to start over." msgstr "請返回活動頁面重新開始。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:344 +#: src/components/routes/product-widget/SelectProducts/index.tsx:359 msgid "Please select a date and time" msgstr "請選擇日期及時間" @@ -7987,7 +8034,7 @@ msgstr "請選擇日期範圍" msgid "Please select an image." msgstr "請選擇圖片。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:366 +#: src/components/routes/product-widget/SelectProducts/index.tsx:381 msgid "Please select at least one product" msgstr "請選擇至少一個產品" @@ -7998,7 +8045,7 @@ msgstr "請選擇至少一個產品" msgid "Please try again." msgstr "請再試一次。" -#: src/components/routes/profile/ManageProfile/index.tsx:160 +#: src/components/routes/profile/ManageProfile/index.tsx:161 msgid "Please verify your email address to access all features" msgstr "請驗證您的電子郵件地址,以訪問所有功能" @@ -8015,7 +8062,7 @@ msgid "Please wait while we prepare your attendees for export..." msgstr "請稍候,我們正在準備導出您的與會者..." #: src/components/common/OrdersTable/index.tsx:101 -#: src/components/layouts/Checkout/index.tsx:95 +#: src/components/layouts/Checkout/index.tsx:182 msgid "Please wait while we prepare your invoice..." msgstr "請稍候,我們正在準備您的發票..." @@ -8124,7 +8171,7 @@ msgstr "列印預覽" msgid "Print Ticket" msgstr "列印門票" -#: src/components/layouts/Checkout/index.tsx:255 +#: src/components/layouts/Checkout/index.tsx:350 #: src/components/routes/my-tickets/index.tsx:136 msgid "Print Tickets" msgstr "打印票" @@ -8139,7 +8186,7 @@ msgstr "列印為PDF" msgid "Privacy Policy" msgstr "私隱政策" -#: src/components/modals/RefundOrderModal/index.tsx:150 +#: src/components/modals/RefundOrderModal/index.tsx:151 msgid "Process Refund" msgstr "處理退款" @@ -8180,7 +8227,7 @@ msgstr "產品刪除成功" msgid "Product Price Type" msgstr "產品價格類型" -#: src/components/routes/event/EventDashboard/index.tsx:225 +#: src/components/routes/event/EventDashboard/index.tsx:275 #: src/components/routes/event/OccurrenceDetail/index.tsx:179 #: src/components/routes/event/Reports/index.tsx:19 msgid "Product Sales" @@ -8221,14 +8268,14 @@ msgstr "產品" msgid "Products" msgstr "產品" -#: src/components/common/StatBoxes/index.tsx:61 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:271 +#: src/components/common/StatBoxes/index.tsx:80 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:272 msgid "Products sold" msgstr "已售產品" #: src/components/routes/admin/Dashboard/index.tsx:258 #: src/components/routes/admin/Dashboard/index.tsx:355 -#: src/components/routes/event/EventDashboard/index.tsx:246 +#: src/components/routes/event/EventDashboard/index.tsx:296 #: src/components/routes/event/OccurrenceDetail/index.tsx:195 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:73 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:68 @@ -8239,11 +8286,11 @@ msgstr "已售產品" msgid "Products sorted successfully" msgstr "產品排序成功" -#: src/components/routes/profile/ManageProfile/index.tsx:116 +#: src/components/routes/profile/ManageProfile/index.tsx:117 msgid "Profile" msgstr "簡介" -#: src/components/routes/profile/ManageProfile/index.tsx:69 +#: src/components/routes/profile/ManageProfile/index.tsx:70 msgid "Profile updated successfully" msgstr "成功更新個人資料" @@ -8251,7 +8298,7 @@ msgstr "成功更新個人資料" msgid "Progress" msgstr "進度" -#: src/components/routes/product-widget/SelectProducts/index.tsx:290 +#: src/components/routes/product-widget/SelectProducts/index.tsx:305 msgid "Promo {promo_code} code applied" msgstr "已使用促銷 {promo_code} 代碼" @@ -8298,7 +8345,7 @@ msgstr "促銷代碼報告" msgid "Promo Only" msgstr "僅限促銷" -#: src/components/modals/SendMessageModal/index.tsx:593 +#: src/components/modals/SendMessageModal/index.tsx:588 msgid "Promotional emails may result in account suspension" msgstr "促銷電子郵件可能導致帳戶被暫停" @@ -8308,11 +8355,11 @@ msgid "" "and conditions, guidelines, or any important information that attendees need to know before answering." msgstr "為此問題提供額外背景或指示。可用此欄位加入條款及細則、指引或參加者作答前需要知道的重要資訊。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:200 msgid "Provide at least one address field for the new location." msgstr "請為新地點提供至少一個地址欄位。" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:384 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:383 msgid "Provide the following before Stripe's next review to keep payouts flowing." msgstr "請在 Stripe 下次審核前提供以下資料,以維持提款。" @@ -8321,11 +8368,11 @@ msgid "Provider" msgstr "供應商" #: src/components/common/StatusToggle/index.tsx:97 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:79 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:108 msgid "Publish" msgstr "發佈" -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:75 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:104 msgid "Publish your event" msgstr "" @@ -8429,7 +8476,7 @@ msgstr "即時數據分析" #: src/components/routes/auth/AcceptInvitation/index.tsx:157 #: src/components/routes/auth/Register/index.tsx:133 -#: src/components/routes/profile/ManageProfile/index.tsx:209 +#: src/components/routes/profile/ManageProfile/index.tsx:210 msgid "Receive product updates from {0}." msgstr "接收 {0} 的產品更新。" @@ -8437,6 +8484,10 @@ msgstr "接收 {0} 的產品更新。" msgid "Recent Account Signups" msgstr "最近帳戶註冊" +#: src/components/common/PeriodSelector/index.tsx:111 +msgid "Recent activity" +msgstr "" + #: src/components/common/OccurrenceAttendeesAndOrders/index.tsx:59 msgid "Recent Attendees" msgstr "最近參加者" @@ -8445,7 +8496,7 @@ msgstr "最近參加者" msgid "Recent check-ins" msgstr "最近簽到" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:308 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:309 msgid "Recent orders" msgstr "" @@ -8457,7 +8508,7 @@ msgstr "最近訂單" msgid "recipient" msgstr "位收件人" -#: src/components/modals/SendMessageModal/index.tsx:74 +#: src/components/modals/SendMessageModal/index.tsx:75 msgid "Recipient" msgstr "受援國" @@ -8466,7 +8517,7 @@ msgid "recipients" msgstr "位收件人" #: src/components/modals/MessageRecipientsModal/index.tsx:38 -#: src/components/modals/SendMessageModal/index.tsx:407 +#: src/components/modals/SendMessageModal/index.tsx:402 #: src/components/routes/admin/Messages/index.tsx:166 #: src/components/routes/admin/Messages/index.tsx:299 msgid "Recipients" @@ -8476,7 +8527,8 @@ msgstr "收件人" msgid "Recipients are available after the message is sent" msgstr "收件人在訊息發送後可用" -#: src/components/common/EventCard/index.tsx:234 +#: src/components/common/EventCard/index.tsx:218 +#: src/components/common/EventCard/index.tsx:325 msgid "Recurring" msgstr "循環" @@ -8515,7 +8567,7 @@ msgstr "為這些日期的所有訂單退款" msgid "Refund all orders for this date" msgstr "為此日期的所有訂單退款" -#: src/components/modals/RefundOrderModal/index.tsx:107 +#: src/components/modals/RefundOrderModal/index.tsx:108 msgid "Refund amount" msgstr "退款金額" @@ -8535,7 +8587,7 @@ msgstr "已發出退款" msgid "Refund order" msgstr "退款訂單" -#: src/components/modals/RefundOrderModal/index.tsx:198 +#: src/components/modals/RefundOrderModal/index.tsx:192 msgid "Refund Order {0}" msgstr "退款訂單 {0}" @@ -8553,9 +8605,9 @@ msgid "Refund Status" msgstr "退款狀態" #: src/components/common/OrderSummary/index.tsx:92 -#: src/components/common/StatBoxes/index.tsx:68 +#: src/components/common/StatBoxes/index.tsx:87 #: src/components/routes/event/orders.tsx:32 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:441 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:428 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:71 msgid "Refunded" msgstr "退款" @@ -8569,7 +8621,7 @@ msgstr "已退款:{0}" msgid "Refunds" msgstr "退款" -#: src/components/routes/profile/ManageProfile/index.tsx:178 +#: src/components/routes/profile/ManageProfile/index.tsx:179 msgid "Regional Settings" msgstr "地區設定" @@ -8596,18 +8648,18 @@ msgstr "剩餘使用次數" msgid "Reminder scheduled" msgstr "已排定提醒" -#: src/components/routes/product-widget/SelectProducts/index.tsx:732 +#: src/components/routes/product-widget/SelectProducts/index.tsx:754 msgid "remove" msgstr "去除" #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:146 #: src/components/common/WaitlistTable/index.tsx:79 #: src/components/common/WaitlistTable/index.tsx:114 -#: src/components/routes/product-widget/SelectProducts/index.tsx:733 +#: src/components/routes/product-widget/SelectProducts/index.tsx:755 msgid "Remove" msgstr "移除" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:482 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:483 msgid "Remove label from all dates" msgstr "從所有日期移除標籤" @@ -8659,10 +8711,11 @@ msgid "Resend Confirmation Email" msgstr "重新發送確認電郵" #: src/components/layouts/Event/index.tsx:283 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:172 msgid "Resend email" msgstr "重新發送電郵" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resend email confirmation" msgstr "重新發送電子郵件確認" @@ -8686,7 +8739,7 @@ msgstr "重新發送門票" msgid "Resend ticket email" msgstr "重新發送門票電郵" -#: src/components/routes/profile/ManageProfile/index.tsx:162 +#: src/components/routes/profile/ManageProfile/index.tsx:163 msgid "Resending..." msgstr "重新發送..." @@ -8727,30 +8780,30 @@ msgstr "回覆" msgid "Response Details" msgstr "回覆詳情" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:61 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:67 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:62 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:68 msgid "Restore" msgstr "還原" -#: src/components/common/EventCard/index.tsx:168 +#: src/components/common/EventCard/index.tsx:169 msgid "Restore event" msgstr "恢復活動" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:122 -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:136 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:123 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:137 msgid "Restore Event" msgstr "還原活動" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:128 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:145 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:129 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:146 msgid "Restore Organizer" msgstr "還原主辦方" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:125 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:126 msgid "Restore this event to make it visible again." msgstr "還原此活動以使其再次可見。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:131 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:132 msgid "Restore this organizer and make it active again." msgstr "還原此主辦方並使其重新活躍。" @@ -8775,7 +8828,7 @@ msgstr "重試任務" msgid "Return to Event" msgstr "返回活動" -#: src/components/layouts/Checkout/index.tsx:305 +#: src/components/layouts/Checkout/index.tsx:403 msgid "Return to Event Page" msgstr "返回活動頁面" @@ -8792,9 +8845,10 @@ msgid "Reuse a Stripe connection from another organizer in this account." msgstr "重複使用此帳戶下其他主辦者的 Stripe 連接。" #: src/components/common/AffiliateTable/index.tsx:157 -#: src/components/common/EventCard/index.tsx:274 +#: src/components/common/EventCard/index.tsx:260 +#: src/components/common/EventCard/index.tsx:365 #: src/components/routes/admin/Attribution/index.tsx:137 -#: src/components/routes/event/EventDashboard/index.tsx:257 +#: src/components/routes/event/EventDashboard/index.tsx:307 #: src/components/routes/event/OccurrenceDetail/index.tsx:206 msgid "Revenue" msgstr "收入" @@ -8816,7 +8870,7 @@ msgstr "撤銷邀請" msgid "Revoke Offer" msgstr "撤回優惠" -#: src/components/modals/EditUserModal/index.tsx:93 +#: src/components/modals/EditUserModal/index.tsx:94 #: src/components/modals/InviteUserModal/index.tsx:64 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:155 msgid "Role" @@ -8870,7 +8924,7 @@ msgid "Sale starts {0}" msgstr "銷售於 {0} 開始" #: src/components/common/AffiliateTable/index.tsx:145 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:142 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:143 msgid "Sales" msgstr "銷售" @@ -8928,7 +8982,7 @@ msgstr "星期六" #: src/components/common/PlatformFeesSettings/index.tsx:249 #: src/components/common/QuestionAndAnswerList/index.tsx:142 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:296 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:297 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:317 #: src/components/routes/event/Settings/Sections/EmailSettings/GeneralEmailSettings.tsx:81 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:148 @@ -8942,16 +8996,16 @@ msgstr "星期六" #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:132 #: src/components/routes/organizer/Settings/Sections/EventDefaults/index.tsx:103 #: src/components/routes/organizer/Settings/Sections/SeoSettings/index.tsx:85 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:261 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:88 -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:88 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:262 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:86 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditOrderModal/index.tsx:86 msgid "Save" msgstr "保存" #: src/components/modals/LocationEditModal/index.tsx:132 #: src/components/modals/ManageAttendeeModal/index.tsx:231 #: src/components/modals/ManageOrderModal/index.tsx:175 -#: src/components/routes/admin/Configurations/index.tsx:268 +#: src/components/routes/admin/Configurations/index.tsx:269 #: src/components/routes/event/HomepageDesigner/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:593 #: src/components/routes/event/OccurrencesTab/PriceOverrideForm/index.tsx:250 @@ -8991,16 +9045,16 @@ msgstr "儲存門票設計" msgid "Save VAT settings" msgstr "儲存增值稅設定" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:241 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:239 msgid "Save VAT Settings" msgstr "儲存增值稅設定" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:508 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:509 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:495 msgid "Saved location" msgstr "已儲存地點" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:516 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:517 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 msgid "Saved locations" msgstr "已儲存地點" @@ -9013,7 +9067,7 @@ msgstr "已儲存地點" msgid "Saving an override creates a dedicated configuration for this organizer if it's currently on the system default." msgstr "如果目前使用系統預設,儲存覆寫會為此主辦方建立專屬配置。" -#: src/components/layouts/CheckIn/BottomNav.tsx:14 +#: src/components/layouts/CheckIn/BottomNav.tsx:15 msgid "Scan" msgstr "掃描" @@ -9033,6 +9087,10 @@ msgstr "掃描模式" msgid "Schedule" msgstr "日程" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:138 +msgid "Schedule added" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:539 msgid "Schedule created successfully" msgstr "成功建立日程" @@ -9041,11 +9099,11 @@ msgstr "成功建立日程" msgid "Schedule ends on" msgstr "日程結束於" -#: src/components/modals/SendMessageModal/index.tsx:491 +#: src/components/modals/SendMessageModal/index.tsx:486 msgid "Schedule for later" msgstr "稍後發送" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Schedule Message" msgstr "排程訊息" @@ -9059,11 +9117,11 @@ msgstr "排程開始日期" msgid "Scheduled" msgstr "已排程" -#: src/components/modals/SendMessageModal/index.tsx:521 +#: src/components/modals/SendMessageModal/index.tsx:516 msgid "Scheduled time" msgstr "排程時間" -#: src/components/layouts/CheckIn/BottomNav.tsx:15 +#: src/components/layouts/CheckIn/BottomNav.tsx:16 msgid "Search" msgstr "搜尋" @@ -9226,11 +9284,11 @@ msgstr "全選" msgid "Select all on {0}" msgstr "選取 {0} 的全部" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:124 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:119 msgid "Select an event" msgstr "選擇活動" -#: src/components/modals/SendMessageModal/index.tsx:409 +#: src/components/modals/SendMessageModal/index.tsx:404 msgid "Select attendee group" msgstr "選擇參加者群組" @@ -9284,7 +9342,7 @@ msgid "Select Product Tier" msgstr "選擇產品等級" #: src/components/forms/CapaciyAssigmentForm/index.tsx:49 -#: src/components/modals/SendMessageModal/index.tsx:433 +#: src/components/modals/SendMessageModal/index.tsx:428 msgid "Select products" msgstr "選擇產品" @@ -9296,7 +9354,7 @@ msgstr "選擇開始日期與時間" msgid "Select start time" msgstr "選擇開始時間" -#: src/components/modals/EditUserModal/index.tsx:104 +#: src/components/modals/EditUserModal/index.tsx:105 msgid "Select status" msgstr "選擇狀態" @@ -9309,7 +9367,7 @@ msgid "Select Ticket" msgstr "選擇機票" #: src/components/forms/CheckInListForm/index.tsx:124 -#: src/components/modals/SendMessageModal/index.tsx:421 +#: src/components/modals/SendMessageModal/index.tsx:416 msgid "Select tickets" msgstr "選擇票" @@ -9323,7 +9381,7 @@ msgstr "選擇時間段" msgid "Select timezone" msgstr "選擇時區" -#: src/components/modals/SendMessageModal/index.tsx:408 +#: src/components/modals/SendMessageModal/index.tsx:403 msgid "Select which attendees should receive this message" msgstr "選擇哪些參加者應該收到此訊息" @@ -9357,11 +9415,11 @@ msgstr "熱賣中 🔥" msgid "Send" msgstr "發送" -#: src/components/modals/SendMessageModal/index.tsx:283 +#: src/components/modals/SendMessageModal/index.tsx:284 msgid "Send a message" msgstr "發送信息" -#: src/components/modals/SendMessageModal/index.tsx:578 +#: src/components/modals/SendMessageModal/index.tsx:573 msgid "Send as test" msgstr "作為測試發送" @@ -9369,20 +9427,20 @@ msgstr "作為測試發送" msgid "Send emails to attendees, ticket holders, or order owners. Messages can be sent immediately or scheduled for later." msgstr "向參與者、持票人或訂單擁有者發送電子郵件。訊息可以立即發送或安排稍後發送。" -#: src/components/modals/SendMessageModal/index.tsx:586 +#: src/components/modals/SendMessageModal/index.tsx:581 msgid "Send me a copy" msgstr "發送副本給我" #: src/components/common/ContactOrganizerModal/index.tsx:112 -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Message" msgstr "發送消息" -#: src/components/modals/SendMessageModal/index.tsx:483 +#: src/components/modals/SendMessageModal/index.tsx:478 msgid "Send now" msgstr "立即發送" -#: src/components/modals/CreateAttendeeModal/index.tsx:323 +#: src/components/modals/CreateAttendeeModal/index.tsx:322 msgid "Send order confirmation and ticket email" msgstr "發送訂單確認和票務電子郵件" @@ -9390,7 +9448,7 @@ msgstr "發送訂單確認和票務電子郵件" msgid "Send real-time order and attendee data to your external systems." msgstr "將即時訂單和參與者資料傳送到您的外部系統。" -#: src/components/modals/RefundOrderModal/index.tsx:124 +#: src/components/modals/RefundOrderModal/index.tsx:125 msgid "Send refund notification email" msgstr "發送退款通知郵件" @@ -9398,11 +9456,11 @@ msgstr "發送退款通知郵件" msgid "Send reset link" msgstr "發送重置連結" -#: src/components/modals/SendMessageModal/index.tsx:560 +#: src/components/modals/SendMessageModal/index.tsx:555 msgid "Send Test" msgstr "發送測試" -#: src/components/modals/SendMessageModal/index.tsx:377 +#: src/components/modals/SendMessageModal/index.tsx:372 msgid "Send to all occurrences, or choose a specific one" msgstr "傳送至所有場次,或選擇特定場次" @@ -9427,15 +9485,15 @@ msgstr "已發送" msgid "Sent By" msgstr "發送者" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:218 msgid "Sent to attendees when a scheduled date is cancelled" msgstr "當已排定的日期取消時發送給參加者" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:215 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 msgid "Sent to customers when they place an order" msgstr "客戶下訂時發送" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:216 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:217 msgid "Sent to each attendee with their ticket details" msgstr "發送給每位參會者及其門票詳情" @@ -9488,7 +9546,7 @@ msgstr "為此主辦方創建的新活動設置預設平台費用設置。" msgid "Set default settings for new events created under this organizer." msgstr "為此主辦單位下創建的新活動設定預設設定。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 msgid "Set how long each date lasts" msgstr "設定每個日期的時長" @@ -9496,11 +9554,11 @@ msgstr "設定每個日期的時長" msgid "Set number of dates" msgstr "設定日期數量" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Set or clear the date label" msgstr "設定或清除日期標籤" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:430 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:431 msgid "Set the end time of each date to be this long after its start time." msgstr "將每個日期的結束時間設定為開始時間之後這段時間。" @@ -9508,7 +9566,7 @@ msgstr "將每個日期的結束時間設定為開始時間之後這段時間。 msgid "Set the starting number for invoice numbering. This cannot be changed once invoices have been generated." msgstr "設置發票編號的起始編號。一旦發票生成,就無法更改。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:464 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:465 msgid "Set to unlimited (remove limit)" msgstr "設為無限制(移除上限)" @@ -9521,10 +9579,14 @@ msgid "Set up check-in lists for different entrances, sessions, or days." msgstr "為不同的入口、場次或日期設定簽到列表。" #: src/components/layouts/OrganizerLayout/index.tsx:85 -#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:85 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:114 msgid "Set up payouts" msgstr "設定付款" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:140 +msgid "Set up schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/index.tsx:543 #: src/components/routes/event/OccurrencesTab/index.tsx:597 msgid "Set Up Schedule" @@ -9534,11 +9596,15 @@ msgstr "設定日程" msgid "Set up your organization" msgstr "設定你嘅機構" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:136 +msgid "Set up your schedule" +msgstr "" + #: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:588 msgid "Set Up Your Schedule" msgstr "設定您的日程" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Set, change, or remove the date's location or online details" msgstr "設定、更改或移除該場次的地點或線上詳情" @@ -9597,11 +9663,11 @@ msgstr "分享主辦單位頁面" msgid "Shared Capacity Management" msgstr "共享容量管理" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:34 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:35 msgid "Shift times" msgstr "調整時間" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:231 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:232 msgid "Shifted times for {count} date(s)" msgstr "已調整 {count} 個日期的時間" @@ -9633,8 +9699,8 @@ msgstr "顯示營銷訂閱複選框" msgid "Show marketing opt-in checkbox by default" msgstr "預設顯示營銷訂閱複選框" -#: src/components/routes/product-widget/SelectProducts/index.tsx:574 -#: src/components/routes/product-widget/SelectProducts/index.tsx:675 +#: src/components/routes/product-widget/SelectProducts/index.tsx:596 +#: src/components/routes/product-widget/SelectProducts/index.tsx:697 msgid "Show more" msgstr "顯示更多" @@ -9671,7 +9737,7 @@ msgstr "顯示 {2} 個中的 {0}–{1}" msgid "Showing {MAX_VISIBLE} of {totalAvailable} dates. Type to search." msgstr "顯示 {totalAvailable} 個日期中的 {MAX_VISIBLE} 個。輸入以搜尋。" -#: src/components/modals/SendMessageModal/index.tsx:368 +#: src/components/modals/SendMessageModal/index.tsx:363 msgid "Showing the first {0} — the remaining {1} session(s) will still be targeted when the message is sent." msgstr "顯示前 {0} 個 — 訊息傳送時仍會發送至其餘 {1} 個場次。" @@ -9708,7 +9774,7 @@ msgstr "單一活動" msgid "Single line text box" msgstr "單行文本框" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:381 msgid "Skip manually edited dates" msgstr "略過手動編輯的日期" @@ -9743,7 +9809,7 @@ msgstr "社交連結與網站" msgid "Sold" msgstr "已售出" -#: src/components/common/EventCard/index.tsx:137 +#: src/components/common/EventCard/index.tsx:138 #: src/components/common/ProductPriceAvailability/index.tsx:20 #: src/components/common/ProductPriceAvailability/index.tsx:52 msgid "Sold out" @@ -9764,7 +9830,7 @@ msgstr "部分資料對公眾訪問隱藏。登入即可查看全部。" #: src/components/common/ErrorDisplay/index.tsx:15 #: src/components/routes/auth/AcceptInvitation/index.tsx:48 -#: src/components/routes/product-widget/CollectInformation/index.tsx:390 +#: src/components/routes/product-widget/CollectInformation/index.tsx:391 #: src/components/routes/product-widget/Payment/PaymentMethods/Stripe/index.tsx:64 msgid "Something went wrong" msgstr "出了點問題" @@ -9782,7 +9848,7 @@ msgstr "出現問題,請重試,或在問題持續時聯繫客服" msgid "Something went wrong! Please try again" msgstr "出錯了!請重試" -#: src/components/forms/StripeCheckoutForm/index.tsx:69 +#: src/components/forms/StripeCheckoutForm/index.tsx:102 msgid "Something went wrong." msgstr "出問題了" @@ -9794,12 +9860,12 @@ msgstr "出了點問題。請稍後再試。" #: src/components/layouts/OrganizerLayout/index.tsx:122 #: src/components/routes/auth/Login/index.tsx:72 #: src/components/routes/my-tickets/index.tsx:162 -#: src/components/routes/profile/ManageProfile/index.tsx:90 -#: src/components/routes/profile/ManageProfile/index.tsx:104 +#: src/components/routes/profile/ManageProfile/index.tsx:91 +#: src/components/routes/profile/ManageProfile/index.tsx:105 msgid "Something went wrong. Please try again." msgstr "出錯了。請重試。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:375 +#: src/components/routes/product-widget/SelectProducts/index.tsx:390 msgid "Sorry, this promo code is not recognized" msgstr "對不起,此優惠代碼不可用" @@ -9895,12 +9961,12 @@ msgstr "明日開始" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/modals/LocationEditModal/index.tsx:119 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:563 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:564 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:550 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:260 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:189 -#: src/components/routes/product-widget/CollectInformation/index.tsx:543 #: src/components/routes/product-widget/CollectInformation/index.tsx:544 +#: src/components/routes/product-widget/CollectInformation/index.tsx:545 msgid "State or Region" msgstr "州或地區" @@ -9912,7 +9978,7 @@ msgstr "統計數據" msgid "Statistics are based on account creation date" msgstr "統計數據基於帳戶創建日期" -#: src/components/layouts/CheckIn/BottomNav.tsx:16 +#: src/components/layouts/CheckIn/BottomNav.tsx:17 msgid "Stats" msgstr "統計" @@ -9929,7 +9995,7 @@ msgstr "統計" #: src/components/forms/AffiliateForm/index.tsx:98 #: src/components/forms/CapaciyAssigmentForm/index.tsx:56 #: src/components/forms/WebhookForm/index.tsx:163 -#: src/components/modals/EditUserModal/index.tsx:103 +#: src/components/modals/EditUserModal/index.tsx:104 #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:157 #: src/components/routes/admin/Dashboard/index.tsx:405 #: src/components/routes/admin/Messages/index.tsx:120 @@ -9984,7 +10050,7 @@ msgstr "Stripe 付款 ID" msgid "Stripe payments are not enabled for this event." msgstr "此活動未啟用 Stripe 支付。" -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:380 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:379 msgid "Stripe will need a few more details soon" msgstr "Stripe 很快會需要更多資料" @@ -9997,7 +10063,7 @@ msgid "Su" msgstr "日" #: src/components/common/EmailTemplateEditor/EmailTemplateEditor.tsx:131 -#: src/components/modals/SendMessageModal/index.tsx:457 +#: src/components/modals/SendMessageModal/index.tsx:452 #: src/components/routes/admin/Messages/index.tsx:162 #: src/components/routes/admin/Messages/index.tsx:272 msgid "Subject" @@ -10011,7 +10077,7 @@ msgstr "主題是必需的" msgid "Subject will appear here" msgstr "主題將顯示在這裏" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:266 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:267 msgid "Subject:" msgstr "主題:" @@ -10022,11 +10088,11 @@ msgstr "小計" #: src/components/common/OrdersTable/index.tsx:104 #: src/components/common/OrganizerWebhookTable/index.tsx:149 -#: src/components/layouts/Checkout/index.tsx:98 +#: src/components/layouts/Checkout/index.tsx:185 msgid "Success" msgstr "成功" -#: src/components/modals/EditUserModal/index.tsx:40 +#: src/components/modals/EditUserModal/index.tsx:41 #: src/components/modals/InviteUserModal/index.tsx:32 msgid "Success! {0} will receive an email shortly." msgstr "成功!{0} 將很快收到一封電子郵件。" @@ -10171,7 +10237,7 @@ msgstr "設定更新成功" msgid "Successfully Updated Social Links" msgstr "社交連結更新成功" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:158 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:159 msgid "Successfully Updated Tracking Settings" msgstr "成功更新追蹤設定" @@ -10224,7 +10290,7 @@ msgstr "瑞典語" msgid "Switch Organizer" msgstr "切換主辦單位" -#: src/components/routes/admin/Configurations/index.tsx:85 +#: src/components/routes/admin/Configurations/index.tsx:86 msgid "System Default" msgstr "系統預設" @@ -10236,7 +10302,7 @@ msgstr "T恤衫" msgid "Tap this screen to resume scanning" msgstr "點擊螢幕以繼續掃描" -#: src/components/modals/SendMessageModal/index.tsx:354 +#: src/components/modals/SendMessageModal/index.tsx:349 msgid "Targeting attendees across {0} selected sessions." msgstr "向 {0} 個已選場次的參加者發送。" @@ -10334,7 +10400,7 @@ msgstr "話俾我哋知你嘅機構資料。呢啲資料會顯示喺你嘅活動 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "話我哋知您嘅活動幾耐重複一次,我哋會幫您建立所有日期。" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:46 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:37 msgid "Tell us your VAT registration status so we apply the correct VAT treatment to platform fees." msgstr "請告訴我們你的增值稅註冊狀態,以便我們對平台費用套用正確的稅務處理。" @@ -10342,15 +10408,15 @@ msgstr "請告訴我們你的增值稅註冊狀態,以便我們對平台費用 msgid "Template Active" msgstr "範本已啟用" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:173 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:174 msgid "Template created successfully" msgstr "範本建立成功" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:121 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:122 msgid "Template deleted successfully" msgstr "範本刪除成功" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:142 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:143 msgid "Template saved successfully" msgstr "範本儲存成功" @@ -10376,8 +10442,8 @@ msgstr "感謝您的參與!" msgid "Thanks," msgstr "謝謝," -#: src/components/routes/product-widget/SelectProducts/index.tsx:197 -#: src/components/routes/product-widget/SelectProducts/index.tsx:298 +#: src/components/routes/product-widget/SelectProducts/index.tsx:212 +#: src/components/routes/product-widget/SelectProducts/index.tsx:313 msgid "That promo code is invalid" msgstr "促銷代碼無效" @@ -10397,7 +10463,7 @@ msgstr "您查找的簽到列表不存在。" msgid "The code will expire in 10 minutes. Check your spam folder if you don't see the email." msgstr "驗證碼會喺10分鐘後過期。如果你搵唔到電郵,請檢查垃圾郵件資料夾。" -#: src/components/routes/admin/Configurations/index.tsx:228 +#: src/components/routes/admin/Configurations/index.tsx:229 msgid "The currency in which the fixed fee is defined. It will be converted to the order currency at checkout." msgstr "定義固定費用的貨幣。結帳時將轉換為訂單貨幣。" @@ -10415,7 +10481,7 @@ msgstr "事件的默認貨幣。" msgid "The default timezone for your events." msgstr "事件的默認時區。" -#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:78 +#: src/components/routes/product-widget/OrderSummaryAndProducts/EditAttendeeModal/index.tsx:77 msgid "The email address has been changed. The attendee will receive a new ticket at the updated email address." msgstr "電郵地址已更改。參與者將在更新後的電郵地址收到新門票。" @@ -10440,7 +10506,7 @@ msgstr "此排程將從此日期開始生成。" msgid "The full event address" msgstr "活動的完整地址" -#: src/components/modals/CancelOrderModal/index.tsx:77 +#: src/components/modals/CancelOrderModal/index.tsx:76 msgid "The full order amount will be refunded to the customer's original payment method." msgstr "訂單全額將退款至客戶的原始付款方式。" @@ -10464,7 +10530,7 @@ msgstr "客戶的語言" msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "上限為 {MAX_PREVIEW} 個場次。請減少日期範圍、頻率或每日場次數量。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:660 +#: src/components/routes/product-widget/SelectProducts/index.tsx:682 msgid "The maximum number of products for {0}is {1}" msgstr "{0}的最大產品數量是{1}" @@ -10473,7 +10539,7 @@ msgstr "{0}的最大產品數量是{1}" msgid "The organizer you're looking for could not be found. The page may have been moved, deleted, or the URL might be incorrect." msgstr "找不到您正在尋找的主辦單位。頁面可能已被移動、刪除,或網址不正確。" -#: src/components/modals/CreateAttendeeModal/index.tsx:284 +#: src/components/modals/CreateAttendeeModal/index.tsx:283 msgid "The override is recorded in the order audit log." msgstr "覆寫已記錄於訂單稽核日誌。" @@ -10497,11 +10563,11 @@ msgstr "顯示給客户的價格不包括税費。税費將單獨顯示" msgid "The primary brand color used for buttons and highlights" msgstr "用於按鈕和突出顯示的主要品牌顏色" -#: src/components/modals/SendMessageModal/index.tsx:221 +#: src/components/modals/SendMessageModal/index.tsx:222 msgid "The scheduled time is required" msgstr "排程時間為必填項" -#: src/components/modals/SendMessageModal/index.tsx:222 +#: src/components/modals/SendMessageModal/index.tsx:223 msgid "The scheduled time must be in the future" msgstr "排程時間必須是將來的時間" @@ -10509,8 +10575,8 @@ msgstr "排程時間必須是將來的時間" msgid "The session for \"{title}\" originally scheduled for {0} has been rescheduled." msgstr "「{title}」原定於 {0} 舉行的場次已重新安排。" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:154 -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:185 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:155 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:186 msgid "The template body contains invalid Liquid syntax. Please correct it and try again." msgstr "模板正文包含無效的Liquid語法。請更正後再試。" @@ -10519,7 +10585,7 @@ msgstr "模板正文包含無效的Liquid語法。請更正後再試。" msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" msgstr "活動標題,將顯示在搜索引擎結果中,並在社交媒體上分享時顯示。默認情況下,將使用事件標題" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:85 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:83 msgid "The VAT number could not be validated. Please check the number and try again." msgstr "無法驗證增值稅號碼。請檢查號碼並重試。" @@ -10532,19 +10598,19 @@ msgstr "劇場" msgid "Theme & Colors" msgstr "主題與顏色" -#: src/components/routes/product-widget/SelectProducts/index.tsx:402 +#: src/components/routes/product-widget/SelectProducts/index.tsx:417 msgid "There are no products available for this event" msgstr "此活動沒有可用產品" -#: src/components/routes/product-widget/SelectProducts/index.tsx:583 +#: src/components/routes/product-widget/SelectProducts/index.tsx:605 msgid "There are no products available in this category" msgstr "此類別中沒有可用產品" -#: src/components/routes/product-widget/SelectProducts/index.tsx:409 +#: src/components/routes/product-widget/SelectProducts/index.tsx:424 msgid "There are no upcoming dates for this event" msgstr "此活動沒有即將舉行的日期" -#: src/components/modals/RefundOrderModal/index.tsx:181 +#: src/components/modals/RefundOrderModal/index.tsx:175 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." msgstr "退款正在處理中。請等待退款完成後再申請退款。" @@ -10576,7 +10642,7 @@ msgstr "這些詳情只會顯示在此日期的參加者門票及訂單摘要上 msgid "These details will only be shown if the order is completed successfully." msgstr "這些詳情只會在訂單成功完成後顯示。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:578 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:579 msgid "These details will replace any existing location on the affected dates and show on attendee tickets." msgstr "這些資料將取代受影響場次上現有的地點,並顯示於參加者門票上。" @@ -10584,11 +10650,11 @@ msgstr "這些資料將取代受影響場次上現有的地點,並顯示於參 msgid "These settings apply only to copied embed code and won't be stored." msgstr "這些設定僅適用於複製的嵌入代碼,不會被儲存。" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:337 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:338 msgid "These templates will be used as defaults for all events in your organization. Individual events can override these templates with their own custom versions." msgstr "這些範本將用作您組織中所有活動的預設範本。單個活動可以用自己的自定義版本覆蓋這些範本。" -#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:330 +#: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:331 msgid "These templates will override the organizer defaults for this event only. If no custom template is set here, the organizer template will be used instead." msgstr "這些範本將僅覆蓋此活動的組織者預設設置。如果這裏沒有設置自定義範本,將使用組織者範本。" @@ -10596,11 +10662,11 @@ msgstr "這些範本將僅覆蓋此活動的組織者預設設置。如果這裏 msgid "Third" msgstr "第三" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:283 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:284 msgid "This applies to every matching date in the event, including dates not currently visible. Attendees registered on any of those dates will be reachable via the message composer once the update finishes." msgstr "此設定適用於活動內每個符合的日期,包括目前未顯示的日期。更新完成後,這些日期上已登記的參加者皆可透過訊息撰寫器聯絡。" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:35 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:33 msgid "This attendee has an unpaid order." msgstr "此參與者有未付款的訂單。" @@ -10658,11 +10724,11 @@ msgstr "此日期已被取消。您仍可刪除以永久移除。" msgid "This date is in the past. It will be created but won't be visible to attendees under upcoming dates." msgstr "此日期已過。日期仍會建立,但不會在即將舉行日期中顯示給參加者。" -#: src/components/modals/CreateAttendeeModal/index.tsx:280 +#: src/components/modals/CreateAttendeeModal/index.tsx:279 msgid "This date is marked sold out." msgstr "此日期標示為售罄。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:350 +#: src/components/routes/product-widget/SelectProducts/index.tsx:365 msgid "This date is no longer available. Please select another date." msgstr "此日期已不再可用。請選擇其他日期。" @@ -10711,19 +10777,19 @@ msgstr "此信息將包含在本次活動發送的所有電子郵件的頁腳中 msgid "This message will only be shown if order is completed successfully. Orders awaiting payment will not show this message" msgstr "此消息僅在訂單成功完成後顯示。等待付款的訂單不會顯示此消息。" -#: src/components/routes/admin/Configurations/index.tsx:220 +#: src/components/routes/admin/Configurations/index.tsx:221 msgid "This name is visible to end users" msgstr "此名稱對最終用戶可見" -#: src/components/modals/CreateAttendeeModal/index.tsx:274 +#: src/components/modals/CreateAttendeeModal/index.tsx:273 msgid "This occurrence is at capacity" msgstr "此場次已滿額" -#: src/components/forms/StripeCheckoutForm/index.tsx:95 +#: src/components/forms/StripeCheckoutForm/index.tsx:128 msgid "This order has already been paid." msgstr "此訂單已付款。" -#: src/components/modals/RefundOrderModal/index.tsx:185 +#: src/components/modals/RefundOrderModal/index.tsx:179 msgid "This order has already been refunded." msgstr "此訂單已退款。" @@ -10731,7 +10797,7 @@ msgstr "此訂單已退款。" msgid "This order has been cancelled." msgstr "此訂單已取消。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:319 +#: src/components/routes/product-widget/CollectInformation/index.tsx:320 msgid "This order has expired. Please start again." msgstr "此訂單已過期。請重新開始。" @@ -10743,15 +10809,15 @@ msgstr "此訂單正在處理中。" msgid "This order is complete." msgstr "此訂單已完成。" -#: src/components/forms/StripeCheckoutForm/index.tsx:107 +#: src/components/forms/StripeCheckoutForm/index.tsx:140 msgid "This order page is no longer available." msgstr "此訂購頁面已不可用。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:332 +#: src/components/routes/product-widget/CollectInformation/index.tsx:333 msgid "This order was abandoned. You can start a new order anytime." msgstr "此訂單已被放棄。您可以隨時開始新的訂單。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:362 +#: src/components/routes/product-widget/CollectInformation/index.tsx:363 msgid "This order was cancelled. You can start a new order anytime." msgstr "此訂單已被取消。您可以隨時開始新訂單。" @@ -10783,7 +10849,7 @@ msgstr "此產品在活動頁面上突出顯示" msgid "This product is sold out" msgstr "此產品已售罄" -#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:118 +#: src/components/routes/organizer/Reports/PlatformFeesReport/index.tsx:113 msgid "This report is for informational purposes only. Always consult with a tax professional before using this data for accounting or tax purposes. Please cross-reference with your Stripe dashboard as Hi.Events may be missing historical data." msgstr "此報告僅供參考。在將此數據用於會計或稅務目的之前,請務必諮詢稅務專業人士。請與您的Stripe儀表板進行交叉驗證,因為Hi.Events可能缺少歷史數據。" @@ -10795,11 +10861,11 @@ msgstr "此重置密碼鏈接無效或已過期。" msgid "This ticket was just scanned. Please wait before scanning again." msgstr "此門票剛剛被掃描。請等待後再次掃描。" -#: src/components/modals/EditUserModal/index.tsx:65 +#: src/components/modals/EditUserModal/index.tsx:66 msgid "This user is not active, as they have not accepted their invitation." msgstr "該用户未激活,因為他們沒有接受邀請。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:391 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:392 msgid "This will affect {loadedAffectedCount} date(s)." msgstr "此操作將影響 {loadedAffectedCount} 個日期。" @@ -10911,6 +10977,10 @@ msgstr "門票價格" msgid "Ticket resent successfully" msgstr "門票重新發送成功" +#: src/components/routes/product-widget/SelectProducts/index.tsx:431 +msgid "Ticket sales have ended for this event" +msgstr "此活動的門票銷售已結束" + #: src/components/common/AttendeeTicket/index.tsx:127 #: src/components/routes/event/attendees.tsx:75 msgid "Ticket Type" @@ -10973,7 +11043,7 @@ msgstr "TikTok" msgid "Time" msgstr "時間" -#: src/components/layouts/Checkout/index.tsx:231 +#: src/components/layouts/Checkout/index.tsx:326 msgid "Time left:" msgstr "剩餘時間:" @@ -10992,7 +11062,7 @@ msgstr "使用次數" #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:143 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:125 #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:359 -#: src/components/routes/profile/ManageProfile/index.tsx:187 +#: src/components/routes/profile/ManageProfile/index.tsx:188 msgid "Timezone" msgstr "時區" @@ -11009,7 +11079,7 @@ msgid "To increase your limits, contact us at" msgstr "要提高您的限制,請聯繫我們" #: src/components/common/OccurrenceSelect/index.tsx:148 -#: src/components/common/PeriodSelector/index.tsx:24 +#: src/components/common/PeriodSelector/index.tsx:30 #: src/components/layouts/CheckIn/OccurrenceFilterPill.tsx:120 #: src/components/routes/event/OccurrencesTab/GroupedOccurrenceTable/index.tsx:43 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:88 @@ -11038,6 +11108,7 @@ msgstr "頂級主辦方(過去14天)" #: src/components/common/InlineOrderSummary/index.tsx:219 #: src/components/common/OrderSummary/index.tsx:104 #: src/components/layouts/CheckIn/tabs/StatsTab.tsx:105 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:352 msgid "Total" msgstr "總計" @@ -11073,11 +11144,11 @@ msgstr "總條目" msgid "Total Fee" msgstr "總費用" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:298 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:299 msgid "Total fees" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:283 +#: src/components/routes/event/EventDashboard/index.tsx:333 #: src/components/routes/event/OccurrenceDetail/index.tsx:225 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:97 msgid "Total Fees" @@ -11091,7 +11162,7 @@ msgstr "總銷售額" msgid "Total order amount" msgstr "訂單總額" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:285 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:286 msgid "Total orders" msgstr "" @@ -11099,16 +11170,16 @@ msgstr "" msgid "Total refunded" msgstr "退款總額" -#: src/components/routes/event/EventDashboard/index.tsx:286 +#: src/components/routes/event/EventDashboard/index.tsx:336 #: src/components/routes/event/OccurrenceDetail/index.tsx:228 msgid "Total Refunded" msgstr "退款總額" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:292 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:293 msgid "Total tax" msgstr "" -#: src/components/routes/event/EventDashboard/index.tsx:285 +#: src/components/routes/event/EventDashboard/index.tsx:335 #: src/components/routes/event/OccurrenceDetail/index.tsx:227 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:91 msgid "Total Tax" @@ -11131,7 +11202,7 @@ msgid "Track account growth and performance by attribution source" msgstr "按歸因來源追蹤帳戶增長和表現" #: src/components/routes/organizer/Settings/index.tsx:73 -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:171 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:172 msgid "Tracking & Analytics" msgstr "追蹤與分析" @@ -11198,8 +11269,8 @@ msgstr "Twitch" msgid "Type" msgstr "類型" -#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:98 -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:104 +#: src/components/routes/event/Settings/Sections/DangerZoneSettings/index.tsx:99 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:105 msgid "Type \"delete\" to confirm" msgstr "輸入\"刪除\"以確認" @@ -11220,7 +11291,7 @@ msgstr "無法簽退參與者" msgid "Unable to create product. Please check the your details" msgstr "無法創建產品。請檢查您的詳細信息" -#: src/components/routes/product-widget/SelectProducts/index.tsx:184 +#: src/components/routes/product-widget/SelectProducts/index.tsx:198 msgid "Unable to create product. Please check your details" msgstr "無法創建產品。請檢查您的詳細信息" @@ -11244,7 +11315,7 @@ msgstr "無法加入候補名單" msgid "Unable to load attendee details." msgstr "無法載入參加者詳情。" -#: src/components/routes/product-widget/SelectProducts/index.tsx:230 +#: src/components/routes/product-widget/SelectProducts/index.tsx:245 msgid "Unable to load products for this date. Please try again." msgstr "無法載入此日期的產品。請重試。" @@ -11282,7 +11353,7 @@ msgstr "美國" #: src/components/common/MessageList/index.tsx:49 #: src/components/routes/event/messages.tsx:27 #: src/components/routes/event/messages.tsx:66 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:452 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:439 msgid "Unknown" msgstr "未知" @@ -11302,7 +11373,7 @@ msgstr "未知參會者" msgid "Unlimited" msgstr "無限制" -#: src/components/routes/product-widget/SelectProducts/index.tsx:621 +#: src/components/routes/product-widget/SelectProducts/index.tsx:643 msgid "Unlimited available" msgstr "無限供應" @@ -11314,12 +11385,12 @@ msgstr "允許無限次使用" msgid "Unnamed" msgstr "未命名" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:521 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:522 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:508 msgid "Unnamed location" msgstr "未命名地點" -#: src/components/common/CheckIn/CheckInOptionsModal.tsx:34 +#: src/components/common/CheckIn/CheckInOptionsModal.tsx:32 msgid "Unpaid Order" msgstr "未付款訂單" @@ -11335,7 +11406,7 @@ msgstr "不受信任" msgid "Upcoming" msgstr "即將推出" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:361 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:375 msgid "Upcoming events" msgstr "" @@ -11351,7 +11422,7 @@ msgstr "更新 {0}" msgid "Update Affiliate" msgstr "更新推廣夥伴" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:36 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 msgid "Update capacity" msgstr "更新容量" @@ -11363,15 +11434,15 @@ msgstr "更新活動名稱及描述" msgid "Update event name, description and dates" msgstr "更新活動名稱、説明和日期" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:37 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 msgid "Update label" msgstr "更新標籤" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:38 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:39 msgid "Update location" msgstr "更新地點" -#: src/components/routes/profile/ManageProfile/index.tsx:214 +#: src/components/routes/profile/ManageProfile/index.tsx:215 msgid "Update profile" msgstr "更新個人資料" @@ -11383,19 +11454,19 @@ msgstr "更新:{subjectTitle} — 日程變更" msgid "Update: {subjectTitle} — session time changed" msgstr "更新:{subjectTitle} — 場次時間變更" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:237 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:238 msgid "Updated {count} date(s)" msgstr "已更新 {count} 個日期" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:233 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 msgid "Updated capacity for {count} date(s)" msgstr "已更新 {count} 個日期的容量" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:234 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 msgid "Updated label for {count} date(s)" msgstr "已更新 {count} 個日期的標籤" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:236 msgid "Updated location for {count} date(s)" msgstr "已更新 {count} 個場次的地點" @@ -11505,14 +11576,14 @@ msgstr "用户管理" msgid "Users" msgstr "用户" -#: src/components/modals/EditUserModal/index.tsx:81 +#: src/components/modals/EditUserModal/index.tsx:82 msgid "Users can change their email in <0>Profile Settings" msgstr "用户可在 <0>\"配置文件設置\" 中更改自己的電子郵件" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:83 #: src/components/routes/event/Settings/Sections/EventDetailsForm/index.tsx:144 #: src/components/routes/organizer/Settings/Sections/BasicSettings/index.tsx:126 -#: src/components/routes/profile/ManageProfile/index.tsx:188 +#: src/components/routes/profile/ManageProfile/index.tsx:189 msgid "UTC" msgstr "世界協調時" @@ -11524,13 +11595,13 @@ msgstr "UTM 分析" msgid "UUID" msgstr "UUID" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:69 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:67 msgid "Validating your VAT number..." msgstr "正在驗證您的增值稅號碼..." #: src/components/forms/TaxAndFeeForm/index.tsx:62 #: src/components/routes/admin/Accounts/AccountDetail/OrganizerAdminModal.tsx:101 -#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:393 +#: src/components/routes/organizer/Settings/Sections/PayoutsSettings/index.tsx:392 msgid "VAT" msgstr "增值税" @@ -11542,28 +11613,28 @@ msgstr "" msgid "VAT number" msgstr "增值稅號碼" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:214 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:212 msgid "VAT Number" msgstr "增值稅號碼" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:22 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:23 msgid "VAT number must not contain spaces" msgstr "增值稅號碼不得包含空格" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:30 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:31 msgid "VAT number must start with a 2-letter country code followed by 8-15 alphanumeric characters (e.g., DE123456789)" msgstr "增值稅號碼必須以 2 個字母的國家代碼開頭,後跟 8-15 個字母數字字元(例如:DE123456789)" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:53 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:52 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 msgid "VAT number validated successfully" msgstr "增值稅號碼驗證成功" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:82 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:80 msgid "VAT number validation failed" msgstr "增值稅號碼驗證失敗" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:169 msgid "VAT number validation failed. Please check your VAT number." msgstr "增值稅號碼驗證失敗。請檢查您的增值稅號碼。" @@ -11579,12 +11650,12 @@ msgstr "增值稅率" msgid "VAT registered" msgstr "已登記增值稅" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:167 -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:175 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:165 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 msgid "VAT settings saved successfully" msgstr "增值稅設定已成功儲存" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:173 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:171 msgid "VAT settings saved. We're validating your VAT number in the background." msgstr "增值稅設定已儲存。我們正在後台驗證您的增值稅號碼。" @@ -11592,15 +11663,15 @@ msgstr "增值稅設定已儲存。我們正在後台驗證您的增值稅號碼 msgid "VAT settings updated" msgstr "已更新增值稅設定" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:28 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:27 msgid "VAT Treatment for Platform Fees" msgstr "平台費用的增值稅處理" -#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:53 +#: src/components/routes/organizer/Payments/Vat/VatSettings.tsx:43 msgid "VAT treatment for platform fees: EU VAT-registered businesses can use the reverse charge mechanism (0% - Article 196 of VAT Directive 2006/112/EC). Non-VAT registered businesses are charged Irish VAT at 23%." msgstr "平台費用的增值稅處理:歐盟增值稅註冊企業可使用反向收費機制(0% - 增值稅指令 2006/112/EC 第 196 條)。非增值稅註冊企業將收取 23% 的愛爾蘭增值稅。" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:94 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:92 msgid "VAT validation service temporarily unavailable" msgstr "增值稅驗證服務暫時無法使用" @@ -11613,7 +11684,7 @@ msgid "VAT: not registered" msgstr "增值稅:未登記" #: src/components/modals/LocationEditModal/index.tsx:110 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:555 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:541 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:237 msgid "Venue Name" @@ -11623,6 +11694,10 @@ msgstr "地點名稱" msgid "Verification code" msgstr "驗證碼" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:91 +msgid "Verification email sent. Check your inbox." +msgstr "" + #: src/components/routes/admin/Attribution/index.tsx:136 #: src/components/routes/admin/Dashboard/index.tsx:421 msgid "Verified" @@ -11633,9 +11708,14 @@ msgid "Verify Email" msgstr "驗證電郵" #: src/components/layouts/Event/index.tsx:280 +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:166 msgid "Verify your email" msgstr "驗證您的電郵" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:169 +msgid "Verify your email so attendees can receive tickets" +msgstr "" + #: src/components/routes/welcome/index.tsx:187 msgid "Verifying..." msgstr "驗證緊..." @@ -11653,8 +11733,7 @@ msgstr "查看" msgid "View All" msgstr "全部檢視" -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:313 -#: src/components/routes/organizer/OrganizerDashboard/index.tsx:366 +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:380 msgid "View all →" msgstr "" @@ -11694,7 +11773,7 @@ msgstr "查看 {0} {1} 詳情" msgid "View Event" msgstr "查看活動" -#: src/components/common/EventCard/index.tsx:153 +#: src/components/common/EventCard/index.tsx:154 msgid "View event page" msgstr "查看活動頁面" @@ -11727,8 +11806,8 @@ msgstr "在谷歌地圖上查看" msgid "View Order" msgstr "查看訂單" -#: src/components/forms/StripeCheckoutForm/index.tsx:96 -#: src/components/routes/product-widget/CollectInformation/index.tsx:354 +#: src/components/forms/StripeCheckoutForm/index.tsx:129 +#: src/components/routes/product-widget/CollectInformation/index.tsx:355 msgid "View Order Details" msgstr "查看訂單詳情" @@ -11778,7 +11857,7 @@ msgstr "VK" msgid "Waiting" msgstr "等待中" -#: src/components/routes/product-widget/CollectInformation/index.tsx:341 +#: src/components/routes/product-widget/CollectInformation/index.tsx:342 msgid "Waiting for payment" msgstr "等待付款" @@ -11798,7 +11877,7 @@ msgstr "候補名單" msgid "Waitlist Enabled" msgstr "已啟用候補名單" -#: src/components/routes/product-widget/CollectInformation/index.tsx:376 +#: src/components/routes/product-widget/CollectInformation/index.tsx:377 msgid "Waitlist offer expired" msgstr "候補名單優惠已過期" @@ -11806,7 +11885,7 @@ msgstr "候補名單優惠已過期" msgid "Waitlist triggered" msgstr "已觸發候補名單" -#: src/components/routes/admin/Configurations/index.tsx:212 +#: src/components/routes/admin/Configurations/index.tsx:213 msgid "Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned." msgstr "警告:這是系統預設配置。變更將影響所有未分配特定配置的帳戶。" @@ -11842,7 +11921,7 @@ msgstr "我們找不到您要查找的訂單。連結可能已過期或訂單詳 msgid "We couldn't find the ticket you're looking for. The link may have expired or the ticket details may have changed." msgstr "我們找不到您要查找的門票。連結可能已過期或門票詳情可能已更改。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:379 +#: src/components/routes/product-widget/CollectInformation/index.tsx:380 msgid "We couldn't find this order. It may have been removed." msgstr "我們找不到此訂單。它可能已被刪除。" @@ -11858,7 +11937,7 @@ msgstr "暫時無法連接到 Stripe,請稍後再試。" msgid "We couldn't reorder the categories. Please try again." msgstr "我們無法重新排序類別。請再試一次。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:391 +#: src/components/routes/product-widget/CollectInformation/index.tsx:392 msgid "We hit a snag loading this page. Please try again." msgstr "載入此頁面時遇到問題。請重試。" @@ -11879,6 +11958,10 @@ msgstr "我們建議尺寸為 2160px x 1080px,文件大小不超過 5MB" msgid "We recommend dimensions of 400px by 400px, and a maximum file size of 5MB" msgstr "我們建議尺寸為 400x400 像素,檔案大小不超過 5MB" +#: src/components/routes/event/EventDashboard/SetupChecklist.tsx:168 +msgid "We sent a verification link to {0}" +msgstr "" + #: src/components/common/CookieConsentBanner/index.tsx:18 msgid "We use cookies to help us understand how the site is used and to improve your experience." msgstr "我們使用 Cookie 來協助了解網站的使用情況並改善您的體驗。" @@ -11887,7 +11970,7 @@ msgstr "我們使用 Cookie 來協助了解網站的使用情況並改善您的 msgid "We were unable to confirm your payment. Please try again or contact support." msgstr "我們無法確認您的付款。請重試或聯繫技術支持。" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:97 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:95 msgid "We were unable to validate your VAT number after multiple attempts. We'll continue trying in the background. Please check back later." msgstr "我們在多次嘗試後無法驗證您的增值稅號碼。我們將繼續在後台嘗試。請稍後再查看。" @@ -11895,16 +11978,16 @@ msgstr "我們在多次嘗試後無法驗證您的增值稅號碼。我們將繼 msgid "We'll notify you by email if a spot becomes available for {productDisplayName}." msgstr "當 {productDisplayName} 有名額時,我們會以電郵通知您。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:291 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:292 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:312 msgid "We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically." msgstr "儲存後會打開一個已預填範本的訊息撰寫器。由您檢閱及發送 — 不會自動發送。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:431 +#: src/components/routes/product-widget/CollectInformation/index.tsx:432 msgid "We'll send your tickets to this email" msgstr "我們將把您的門票發送到此郵箱" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:73 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:71 msgid "We'll validate your VAT number in the background. If there are any issues, we'll let you know." msgstr "我們將在後台驗證您的增值稅號碼。如果有任何問題,我們會通知您。" @@ -12001,7 +12084,7 @@ msgstr "歡迎加入!請登錄以繼續。" msgid "Welcome back" msgstr "歡迎回來" -#: src/components/routes/event/EventDashboard/index.tsx:169 +#: src/components/routes/event/EventDashboard/index.tsx:212 msgid "Welcome back{0} 👋" msgstr "歡迎回來{0} 👋" @@ -12021,7 +12104,7 @@ msgstr "健康" msgid "What are Tiered Products?" msgstr "什麼是分層產品?" -#: src/components/modals/CreateProductCategoryModal/index.tsx:53 +#: src/components/modals/CreateProductCategoryModal/index.tsx:51 msgid "What is a Category?" msgstr "什麼是類別?" @@ -12141,6 +12224,10 @@ msgstr "簽到何時關閉" msgid "When check-in opens" msgstr "簽到何時開放" +#: src/components/routes/organizer/OrganizerDashboard/index.tsx:367 +msgid "When customers purchase tickets, their orders will appear here." +msgstr "" + #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:182 msgid "When enabled, invoices will be generated for ticket orders. Invoices will sent along with the order confirmation email. Attendees can also download their invoices from the order confirmation page." msgstr "啟用後,將為票務訂單生成發票。發票將隨訂單確認郵件一起發送。參與" @@ -12153,7 +12240,7 @@ msgstr "啟用後,新活動將允許參與者通過安全連結管理自己的 msgid "When enabled, new events will display a marketing opt-in checkbox during checkout. This can be overridden per event." msgstr "啟用後,新活動將在結帳時顯示營銷訂閱複選框。此設置可以針對每個活動單獨覆蓋。" -#: src/components/routes/admin/Configurations/index.tsx:259 +#: src/components/routes/admin/Configurations/index.tsx:260 msgid "When enabled, no application fees will be charged on Stripe Connect transactions. Use this for countries where application fees are not supported." msgstr "啟用後,Stripe Connect交易將不收取應用費用。用於不支持應用費用的國家。" @@ -12189,11 +12276,11 @@ msgstr "小工具預覽" msgid "Widget Settings" msgstr "小工具設定" -#: src/components/modals/CreateAttendeeModal/index.tsx:327 +#: src/components/modals/CreateAttendeeModal/index.tsx:326 msgid "Working" msgstr "工作" -#: src/components/modals/CreateProductCategoryModal/index.tsx:60 +#: src/components/modals/CreateProductCategoryModal/index.tsx:56 #: src/components/modals/CreateProductModal/index.tsx:89 #: src/components/modals/CreatePromoCodeModal/index.tsx:56 #: src/components/modals/CreateQuestionModal/index.tsx:75 @@ -12227,7 +12314,7 @@ msgid "year" msgstr "年" #: src/components/common/OrganizerReportTable/index.tsx:59 -#: src/components/common/PeriodSelector/index.tsx:32 +#: src/components/common/PeriodSelector/index.tsx:38 #: src/components/common/ReportTable/index.tsx:54 msgid "Year to date" msgstr "年度至今" @@ -12245,11 +12332,11 @@ msgstr "年" msgid "Yes" msgstr "是" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:206 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:204 msgid "Yes - I have a valid EU VAT registration number" msgstr "是 - 我有有效的歐盟增值稅註冊號碼" -#: src/components/layouts/Checkout/index.tsx:337 +#: src/components/layouts/Checkout/index.tsx:435 msgid "Yes, cancel my order" msgstr "是,取消我的訂單" @@ -12265,7 +12352,7 @@ msgstr "您正在將電子郵件更改為 <0>{0}。" msgid "You are impersonating <0>{0} ({1})" msgstr "您正在模擬 <0>{0} ({1})" -#: src/components/modals/RefundOrderModal/index.tsx:139 +#: src/components/modals/RefundOrderModal/index.tsx:140 msgid "You are issuing a partial refund. The customer will be refunded {0} {1}." msgstr "您正在發出部分退款。客戶將獲得 {0} {1} 的退款。" @@ -12290,7 +12377,7 @@ msgstr "您之後可以為個別日期覆寫此設定。" msgid "You can still manually offer tickets if needed." msgstr "如有需要,您仍然可以手動提供門票。" -#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:133 +#: src/components/routes/organizer/Settings/Sections/DangerZoneSettings/index.tsx:134 msgid "You cannot archive the last active organizer on your account." msgstr "您無法封存帳戶中最後一個活躍的主辦方。" @@ -12311,11 +12398,11 @@ msgstr "您不能刪除最後一個類別。" msgid "You cannot delete this price tier because there are already products sold for this tier. You can hide it instead." msgstr "您無法刪除此價格層,因為此層已有售出的產品。您可以將其隱藏。" -#: src/components/modals/EditUserModal/index.tsx:88 +#: src/components/modals/EditUserModal/index.tsx:89 msgid "You cannot edit the role or status of the account owner." msgstr "不能編輯賬户所有者的角色或狀態。" -#: src/components/modals/RefundOrderModal/index.tsx:176 +#: src/components/modals/RefundOrderModal/index.tsx:170 msgid "You cannot refund a manually created order." msgstr "您不能退還手動創建的訂單。" @@ -12331,11 +12418,11 @@ msgstr "您已接受此邀請。請登錄以繼續。" msgid "You have no pending email change." msgstr "您沒有待處理的電子郵件更改。" -#: src/components/modals/SendMessageModal/index.tsx:261 +#: src/components/modals/SendMessageModal/index.tsx:262 msgid "You have reached your messaging limit." msgstr "您已達到訊息限制。" -#: src/components/layouts/Checkout/index.tsx:295 +#: src/components/layouts/Checkout/index.tsx:393 msgid "You have run out of time to complete your order." msgstr "您已超時,未能完成訂單。" @@ -12343,11 +12430,11 @@ msgstr "您已超時,未能完成訂單。" msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" msgstr "您已向免費產品添加了税費。您想要刪除它們嗎?" -#: src/components/modals/SendMessageModal/index.tsx:217 +#: src/components/modals/SendMessageModal/index.tsx:218 msgid "You must acknowledge that this email is not promotional" msgstr "您必須確認此電子郵件並非促銷郵件" -#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:144 +#: src/components/routes/organizer/Settings/Sections/TrackingPixelSettings/index.tsx:145 msgid "You must acknowledge your responsibilities before saving" msgstr "您必須先確認您的責任才可儲存" @@ -12407,7 +12494,7 @@ msgstr "在您創建容量分配之前,您需要一個產品。" msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." msgstr "您需要至少一個產品才能開始。免費、付費或讓用户決定支付金額。" -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:278 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:279 msgid "You're changing session times" msgstr "您正在更改場次時間" @@ -12419,7 +12506,7 @@ msgstr "您將參加 {0}!" msgid "You're on the waitlist!" msgstr "您已加入候補名單!" -#: src/components/routes/product-widget/CollectInformation/index.tsx:414 +#: src/components/routes/product-widget/CollectInformation/index.tsx:415 msgid "You've been offered a spot!" msgstr "您已獲得一個名額!" @@ -12427,7 +12514,7 @@ msgstr "您已獲得一個名額!" msgid "You've changed the session time" msgstr "您已更改場次時間" -#: src/components/modals/SendMessageModal/index.tsx:343 +#: src/components/modals/SendMessageModal/index.tsx:338 msgid "Your account has messaging limits. To increase your limits, contact us at" msgstr "您的帳戶有訊息限制。要提高您的限制,請聯繫我們" @@ -12455,11 +12542,11 @@ msgstr "您的精彩網站 🎉" msgid "Your check-in list has been created successfully. Share the link below with your check-in staff." msgstr "您的簽到名單已成功建立。與您的簽到工作人員共享以下連結。" -#: src/components/layouts/Checkout/index.tsx:322 +#: src/components/layouts/Checkout/index.tsx:420 msgid "Your current order will be lost." msgstr "您當前的訂單將丟失。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:428 +#: src/components/routes/product-widget/CollectInformation/index.tsx:429 msgid "Your Details" msgstr "您的詳細信息" @@ -12467,7 +12554,7 @@ msgstr "您的詳細信息" msgid "Your Email" msgstr "您的電子郵件" -#: src/components/routes/profile/ManageProfile/index.tsx:128 +#: src/components/routes/profile/ManageProfile/index.tsx:129 msgid "Your email request change to <0>{0} is pending. Please check your email to confirm" msgstr "您要求將電子郵件更改為<0>{0}的申請正在處理中。請檢查您的電子郵件以確認" @@ -12495,7 +12582,7 @@ msgstr "您的姓名" msgid "Your new password must be at least 8 characters long." msgstr "您的新密碼必須至少為 8 個字元。" -#: src/components/layouts/Checkout/index.tsx:224 +#: src/components/layouts/Checkout/index.tsx:319 msgid "Your Order" msgstr "您的訂單" @@ -12507,7 +12594,7 @@ msgstr "您的訂單詳情已更新。確認電郵已發送到新的電郵地址 msgid "Your order has been cancelled" msgstr "您的訂單已被取消" -#: src/components/layouts/Checkout/index.tsx:120 +#: src/components/layouts/Checkout/index.tsx:207 msgid "Your order has been cancelled." msgstr "您的訂單已被取消。" @@ -12532,7 +12619,7 @@ msgstr "您主辦單位的地址" msgid "Your password" msgstr "您的密碼" -#: src/components/forms/StripeCheckoutForm/index.tsx:63 +#: src/components/forms/StripeCheckoutForm/index.tsx:96 msgid "Your payment is processing." msgstr "您的付款正在處理中。" @@ -12540,11 +12627,11 @@ msgstr "您的付款正在處理中。" msgid "Your payment is protected with bank-level encryption" msgstr "您的付款受到銀行級加密保護" -#: src/components/forms/StripeCheckoutForm/index.tsx:66 +#: src/components/forms/StripeCheckoutForm/index.tsx:99 msgid "Your payment was not successful, please try again." msgstr "您的付款未成功,請重試。" -#: src/components/forms/StripeCheckoutForm/index.tsx:130 +#: src/components/forms/StripeCheckoutForm/index.tsx:163 msgid "Your payment was unsuccessful. Please try again." msgstr "您的付款未成功。請重試。" @@ -12552,7 +12639,7 @@ msgstr "您的付款未成功。請重試。" msgid "Your Plan" msgstr "您的計劃" -#: src/components/modals/RefundOrderModal/index.tsx:58 +#: src/components/modals/RefundOrderModal/index.tsx:59 msgid "Your refund is processing." msgstr "您的退款正在處理中。" @@ -12568,19 +12655,19 @@ msgstr "您的入場券" msgid "Your ticket is still valid — no action is needed unless the new time doesn't work for you. Please reply to this email if you have any questions." msgstr "您的門票仍然有效 — 除非新時間不適合您,否則無需任何行動。如有疑問,請回覆此電郵。" -#: src/components/routes/product-widget/CollectInformation/index.tsx:352 +#: src/components/routes/product-widget/CollectInformation/index.tsx:353 msgid "Your tickets have been confirmed." msgstr "您的門票已確認。" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:70 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:68 msgid "Your VAT number is queued for validation" msgstr "您的增值稅號碼已排隊等待驗證" -#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:245 +#: src/components/routes/organizer/Payments/Vat/VatSettingsForm.tsx:243 msgid "Your VAT number will be validated when you save" msgstr "保存時將驗證您的增值稅號碼" -#: src/components/routes/product-widget/CollectInformation/index.tsx:378 +#: src/components/routes/product-widget/CollectInformation/index.tsx:379 msgid "Your waitlist offer has expired and we were unable to complete your order. Please rejoin the waitlist to be notified when more spots become available." msgstr "您的候補名單優惠已過期,我們無法完成您的訂單。請重新加入候補名單,以便有更多名額時收到通知。" @@ -12588,19 +12675,19 @@ msgstr "您的候補名單優惠已過期,我們無法完成您的訂單。請 msgid "YouTube" msgstr "YouTube" -#: src/components/routes/product-widget/CollectInformation/index.tsx:552 +#: src/components/routes/product-widget/CollectInformation/index.tsx:553 msgid "ZIP / Postal Code" msgstr "郵政編碼" #: src/components/common/CheckoutQuestion/index.tsx:170 #: src/components/modals/LocationEditModal/index.tsx:122 -#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:566 +#: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:567 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:553 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:267 #: src/components/routes/organizer/Settings/Sections/AddressSettings/index.tsx:196 msgid "Zip or Postal Code" msgstr "郵政編碼" -#: src/components/routes/product-widget/CollectInformation/index.tsx:553 +#: src/components/routes/product-widget/CollectInformation/index.tsx:554 msgid "ZIP or Postal Code" msgstr "郵政編碼" diff --git a/frontend/src/queries/useGetOrderPublic.ts b/frontend/src/queries/useGetOrderPublic.ts index 77dfb12850..e48c4517e6 100644 --- a/frontend/src/queries/useGetOrderPublic.ts +++ b/frontend/src/queries/useGetOrderPublic.ts @@ -1,26 +1,23 @@ import {useQuery} from "@tanstack/react-query"; +import {AxiosError} from "axios"; import {orderClientPublic} from "../api/order.client.ts"; import {IdParam, Order} from "../types.ts"; import {useMemo} from "react"; -import {isSsr} from "../utilites/helpers.ts"; +import {getCheckoutSessionIdentifier} from "../utilites/checkoutSession.ts"; export const GET_ORDER_PUBLIC_QUERY_KEY = "getOrderPublic"; -const getSessionIdentifierFromUrl = (): string | null => { - if (isSsr()) return null; - - const url = new URL(window.location.href); - return url.searchParams.get("session_identifier"); -}; - export const useGetOrderPublic = ( eventId: IdParam, orderShortId: IdParam, includes: string[] = [] ) => { - const sessionIdentifier = useMemo(getSessionIdentifierFromUrl, []); + const sessionIdentifier = useMemo( + () => getCheckoutSessionIdentifier(String(orderShortId)), + [orderShortId] + ); - return useQuery({ + return useQuery({ queryKey: [ GET_ORDER_PUBLIC_QUERY_KEY, eventId, @@ -31,8 +28,7 @@ export const useGetOrderPublic = ( const {data} = await orderClientPublic.findByShortId( Number(eventId), String(orderShortId), - includes, - sessionIdentifier ?? undefined + includes ); return data; }, diff --git a/frontend/src/utilites/checkoutSession.ts b/frontend/src/utilites/checkoutSession.ts new file mode 100644 index 0000000000..85ca76ed62 --- /dev/null +++ b/frontend/src/utilites/checkoutSession.ts @@ -0,0 +1,26 @@ +import {isSsr, safeSessionStorageGet, safeSessionStorageSet} from "./helpers.ts"; + +const SESSION_KEY_PREFIX = 'hievents.checkout.session.'; + +const readSessionIdentifierFromUrl = (): string | null => { + if (isSsr()) return null; + try { + return new URL(window.location.href).searchParams.get('session_identifier'); + } catch { + return null; + } +}; + +export const setCheckoutSessionIdentifier = (orderShortId: string, token: string): void => { + safeSessionStorageSet(SESSION_KEY_PREFIX + orderShortId, token); +}; + +export const getCheckoutSessionIdentifier = (orderShortId: string): string | null => { + const fromUrl = readSessionIdentifierFromUrl(); + if (fromUrl) { + setCheckoutSessionIdentifier(orderShortId, fromUrl); + return fromUrl; + } + + return safeSessionStorageGet(SESSION_KEY_PREFIX + orderShortId); +}; diff --git a/frontend/src/utilites/dates.ts b/frontend/src/utilites/dates.ts index 7b8727300c..7a5acdfe6c 100644 --- a/frontend/src/utilites/dates.ts +++ b/frontend/src/utilites/dates.ts @@ -117,6 +117,10 @@ export const isDateInFuture = (date: string): boolean => { return dayjs.utc(date).diff(dayjs()) > 0; }; +export const utcDateToEpochMs = (date: string): number => { + return dayjs.utc(date).valueOf(); +}; + export const isDateInPast = (date: string): boolean => { return dayjs.utc(date).diff(dayjs()) < 0; } diff --git a/frontend/src/utilites/helpers.ts b/frontend/src/utilites/helpers.ts index 02ee5a8648..482ae74b60 100644 --- a/frontend/src/utilites/helpers.ts +++ b/frontend/src/utilites/helpers.ts @@ -93,6 +93,51 @@ export const formatNumber = (number: number) => { export const isSsr = () => import.meta.env.SSR; +export const safeSessionStorageGet = (key: string): string | null => { + if (isSsr()) return null; + try { + return window.sessionStorage.getItem(key); + } catch { + return null; + } +}; + +export const safeSessionStorageSet = (key: string, value: string): void => { + if (isSsr()) return; + try { + window.sessionStorage.setItem(key, value); + } catch { + return; + } +}; + +export const safeLocalStorageGet = (key: string): string | null => { + if (isSsr()) return null; + try { + return window.localStorage.getItem(key); + } catch { + return null; + } +}; + +export const safeLocalStorageSet = (key: string, value: string): void => { + if (isSsr()) return; + try { + window.localStorage.setItem(key, value); + } catch { + return; + } +}; + +export const safeLocalStorageRemove = (key: string): void => { + if (isSsr()) return; + try { + window.localStorage.removeItem(key); + } catch { + return; + } +}; + /** * (c) Hi.Events Ltd 2025 * diff --git a/frontend/src/utilites/iframeResize.ts b/frontend/src/utilites/iframeResize.ts new file mode 100644 index 0000000000..f7ad44baca --- /dev/null +++ b/frontend/src/utilites/iframeResize.ts @@ -0,0 +1,60 @@ +import {isSsr, safeSessionStorageGet, safeSessionStorageSet} from "./helpers.ts"; + +const IFRAME_ID_KEY = 'hievents.checkout.iframeId'; +const PARENT_URL_KEY = 'hievents.checkout.parentUrl'; +const EMBED_MODE_KEY = 'hievents.checkout.embedMode'; + +let cachedIframeId: string | null = null; +let cachedParentUrl: string | null = null; +let cachedEmbedMode: string | null = null; + +const resolveParam = (urlParam: string, storageKey: string, cached: string | null): string | null => { + if (isSsr()) return null; + if (cached) return cached; + + const fromUrl = new URLSearchParams(window.location.search).get(urlParam); + if (fromUrl) { + safeSessionStorageSet(storageKey, fromUrl); + return fromUrl; + } + + return safeSessionStorageGet(storageKey); +}; + +const getIframeId = (): string | null => { + cachedIframeId = resolveParam('iframeId', IFRAME_ID_KEY, cachedIframeId); + return cachedIframeId; +}; + +export const getEmbedParentUrl = (): string | null => { + cachedParentUrl = resolveParam('parentUrl', PARENT_URL_KEY, cachedParentUrl); + return cachedParentUrl; +}; + +export const getEmbedMode = (): string | null => { + cachedEmbedMode = resolveParam('embed', EMBED_MODE_KEY, cachedEmbedMode); + return cachedEmbedMode; +}; + +export const getParentOrigin = (): string | null => { + const parentUrl = getEmbedParentUrl(); + if (!parentUrl) return null; + try { + return new URL(parentUrl).origin; + } catch { + return null; + } +}; + +export const sendHeightToParent = (height?: number): void => { + if (isSsr()) return; + + const iframeId = getIframeId(); + if (!iframeId) return; + + window.parent.postMessage({ + type: 'resize', + height: height ?? document.documentElement.scrollHeight, + iframeId, + }, '*'); +};